summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2023-11-30 18:47:54 -0500
committercyfraeviolae <cyfraeviolae>2023-11-30 18:47:54 -0500
commit27f01fe7ab0e4264b76539f95c5d9c178ebd77c4 (patch)
tree9acce4e5f8474ee4c5aa44c7cc98dd047dc49a03
parent874d6321c955b2be037ac20d7f6b895d3d53be25 (diff)
new words
-rw-r--r--generators/datageneration.ipynb470
-rw-r--r--static/corpus.js2
2 files changed, 47 insertions, 425 deletions
diff --git a/generators/datageneration.ipynb b/generators/datageneration.ipynb
index 85c6e02..9bb1407 100644
--- a/generators/datageneration.ipynb
+++ b/generators/datageneration.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
- "execution_count": 1,
+ "execution_count": 38,
"id": "e1b17564-0abb-41c5-8cf4-7200b014550f",
"metadata": {},
"outputs": [
@@ -25,18 +25,9 @@
"nltk.download('wordnet')\n",
"from nltk.corpus import words\n",
"nltk.download('words')\n",
- "ww = words.words()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "id": "8fe45bc7-a41a-49db-9067-700254f388c0",
- "metadata": {},
- "outputs": [],
- "source": [
- "def format(s):\n",
- " return ' '.join(s.split('_'))"
+ "ww = words.words()\n",
+ "import pandas as pd \n",
+ "import string"
]
},
{
@@ -46,16 +37,26 @@
"metadata": {},
"outputs": [],
"source": [
+ "def format(s):\n",
+ " return ' '.join(s.split('_'))\n",
"from collections import defaultdict\n",
"lexnames = set()\n",
"lexname_blacklist = {\n",
" 'noun.plant',\n",
" 'noun.animal',\n",
- " 'noun.person'\n",
+ " 'noun.person',\n",
+ " 'noun.state',\n",
+ " 'noun.body',\n",
+ " #'noun.location',\n",
+ " #'noun.group',\n",
"}\n",
+ "def is_proper(w):\n",
+ " return w[0] in string.ascii_uppercase\n",
"def groups_for_pos(pos='as'):\n",
" dsynonyms = []\n",
" for word in wn.words():\n",
+ " if is_proper(word):\n",
+ " continue\n",
" synsets = wn.synsets(word)\n",
" synonymss = wn.synonyms(word)\n",
" syns = set()\n",
@@ -63,20 +64,11 @@
" if synset.lexname() in lexname_blacklist:\n",
" continue\n",
" if synset.pos() in pos:\n",
- " syns |= set(synonyms)\n",
+ " syns |= set(syn for syn in synonyms if not is_proper(syn))\n",
" if len(syns) >= 4:\n",
" clues = [format(clue) for clue in syns]\n",
" clues.append(format(word))\n",
" dsynonyms.append(dict(answer=word, hint=f'synonyms for {format(word)}', clues=clues))\n",
- " \"\"\" \n",
- " ok = True\n",
- " for clue in clues:\n",
- " if clue in dsynonyms:\n",
- " ok = False\n",
- " if ok:\n",
- " clues.append(format(word))\n",
- " dsynonyms[word] = dict(group=f'synonyms for {format(word)}', clues=clues)\n",
- " \"\"\"\n",
" return dsynonyms"
]
},
@@ -95,218 +87,14 @@
},
{
"cell_type": "code",
- "execution_count": 30,
- "id": "7e552fc8-03b2-4b8f-b6f6-072d580702bc",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "(3976, 7141, 19563, 490)"
- ]
- },
- "execution_count": 30,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "len(dadj), len(dverb), len(dnoun), len(dadverb)"
- ]
- },
- {
- "cell_type": "code",
"execution_count": 62,
- "id": "8d780210-38a4-4f8d-ae2e-b4631cb06368",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "(3976, 7141, 13824, 490)"
- ]
- },
- "execution_count": 62,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "len(dadj), len(dverb), len(dnoun), len(dadverb)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 33,
- "id": "48233554-2634-4a5e-9013-4e45c6f7d3d9",
- "metadata": {},
- "outputs": [],
- "source": [
- "# flag button for reporting, definitions in webcollectionscollections"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "1464f8df-180a-4334-b123-d76303140a03",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "f4eb0f95-901d-43d8-8ba7-6103b3a0f6be",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": 57,
- "id": "bdcb3a19-a5cf-48e9-ab6f-aaeed50e2c31",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'adj.all',\n",
- " 'adj.pert',\n",
- " 'adj.ppl',\n",
- " 'adv.all',\n",
- " 'noun.Tops',\n",
- " 'noun.act',\n",
- " 'noun.animal',\n",
- " 'noun.artifact',\n",
- " 'noun.attribute',\n",
- " 'noun.body',\n",
- " 'noun.cognition',\n",
- " 'noun.communication',\n",
- " 'noun.event',\n",
- " 'noun.feeling',\n",
- " 'noun.food',\n",
- " 'noun.group',\n",
- " 'noun.location',\n",
- " 'noun.motive',\n",
- " 'noun.object',\n",
- " 'noun.person',\n",
- " 'noun.phenomenon',\n",
- " 'noun.plant',\n",
- " 'noun.possession',\n",
- " 'noun.process',\n",
- " 'noun.quantity',\n",
- " 'noun.relation',\n",
- " 'noun.shape',\n",
- " 'noun.state',\n",
- " 'noun.substance',\n",
- " 'noun.time',\n",
- " 'verb.body',\n",
- " 'verb.change',\n",
- " 'verb.cognition',\n",
- " 'verb.communication',\n",
- " 'verb.competition',\n",
- " 'verb.consumption',\n",
- " 'verb.contact',\n",
- " 'verb.creation',\n",
- " 'verb.emotion',\n",
- " 'verb.motion',\n",
- " 'verb.perception',\n",
- " 'verb.possession',\n",
- " 'verb.social',\n",
- " 'verb.stative',\n",
- " 'verb.weather'}"
- ]
- },
- "execution_count": 57,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": 50,
- "id": "d3a0f1e9-99e5-4aa2-bd72-d1d200bf2b40",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "'noun.plant'"
- ]
- },
- "execution_count": 50,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "syn.lexname()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "64ad6047-a09b-41c3-85b6-65476d8dba0e",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "88a4aeab-8123-435e-9b44-3e568102f0b1",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "b6459fdf-fe4e-4dcf-81ef-1688de01be95",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "id": "e588bdf3-d648-48b3-ab6b-027a07194292",
- "metadata": {},
- "outputs": [],
- "source": [
- "import pandas as pd"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "id": "b27aa837-73d2-4b10-826b-990e12a3f7e2",
- "metadata": {},
- "outputs": [],
- "source": [
- "df = pd.read_csv('LADECv1-2019.csv', index_col=0)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "id": "176e2790-560c-4daf-b436-a1771611c4bf",
- "metadata": {},
- "outputs": [],
- "source": [
- "df = df.drop(df[df.correctParse == 'no'].index)\n",
- "df = df.drop(df[df.isCommonstim == 0].index)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
"id": "64ccaf3d-9743-49ed-b10b-d7b3e70e0235",
"metadata": {},
"outputs": [],
"source": [
+ "df = pd.read_csv('LADECv1-2019.csv', index_col=0)\n",
+ "df = df.drop(df[df.correctParse == 'no'].index)\n",
+ "df = df.drop(df[df.isCommonstim == 0].index)\n",
"prefixes = df.groupby('c1').groups\n",
"suffixes = df.groupby('c2').groups\n",
"dprefix = []\n",
@@ -321,15 +109,7 @@
},
{
"cell_type": "code",
- "execution_count": null,
- "id": "86c69c9f-bc6a-4dd1-9eb3-ab37ad766586",
- "metadata": {},
- "outputs": [],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": 10,
+ "execution_count": 63,
"id": "def43999-d789-4e5c-bb27-4fd29074c875",
"metadata": {},
"outputs": [],
@@ -346,85 +126,6 @@
" pass\n",
" #print(a, b, r)\n",
" return r >= .85\n",
- "\"\"\"\n",
- "Skip to Main\n",
- "datageneration\n",
- "Last Checkpoint: 11 days ago\n",
- "[Python 3 (ipykernel)]\n",
- "import json\n",
- "import nltk\n",
- "from nltk.corpus import wordnet as wn\n",
- "from nltk.stem.wordnet import WordNetLemmatizer\n",
- "nltk.download('wordnet')\n",
- "from nltk.corpus import words\n",
- "nltk.download('words')\n",
- "ww = words.words()\n",
- "\n",
- "[nltk_data] Downloading package wordnet to /home/sy/nltk_data...\n",
- "[nltk_data] Package wordnet is already up-to-date!\n",
- "[nltk_data] Downloading package words to /home/sy/nltk_data...\n",
- "[nltk_data] Package words is already up-to-date!\n",
- "\n",
- "def format(s):\n",
- " return ' '.join(s.split('_'))\n",
- "from collections import defaultdict\n",
- "\n",
- "def groups_for_pos(pos='as'):\n",
- " dsynonyms = []\n",
- " for word in wn.words():\n",
- " synsets = wn.synsets(word)\n",
- " synonymss = wn.synonyms(word)\n",
- " syns = set()\n",
- " for synset, synonyms in zip(synsets, synonymss):\n",
- " if synset.pos() in pos: # 'as'\n",
- " syns |= set(synonyms)\n",
- " if len(syns) >= 4:\n",
- " clues = [format(clue) for clue in syns]\n",
- " \n",
- " clues.append(format(word))\n",
- " dsynonyms.append(dict(answer=word, hint=f'synonyms for {format(word)}', clues=clues))\n",
- " \n",
- " ok = True\n",
- " for clue in clues:\n",
- " if clue in dsynonyms:\n",
- " ok = False\n",
- " if ok:\n",
- " clues.append(format(word))\n",
- " dsynonyms[word] = dict(group=f'synonyms for {format(word)}', clues=clues)\n",
- " \n",
- " return dsynonyms\n",
- "\n",
- "dadj = groups_for_pos('as')\n",
- "dverb = groups_for_pos('v')\n",
- "dnoun = groups_for_pos('n')\n",
- "dadverb = groups_for_pos('r')\n",
- "len(dadj), len(dverb), len(dnoun), len(dadverb)\n",
- "\n",
- "(3976, 7141, 19563, 490)\n",
- "\n",
- "\n",
- "# flag button for reporting\n",
- "\n",
- "\n",
- "import pandas as pd\n",
- "df = pd.read_csv('LADECv1-2019.csv', index_col=0)\n",
- "df = df.drop(df[df.correctParse == 'no'].index)\n",
- "df = df.drop(df[df.isCommonstim == 0].index)\n",
- "prefixes = df.groupby('c1').groups\n",
- "suffixes = df.groupby('c2').groups\n",
- "dprefix = []\n",
- "for prefix, ids in prefixes.items():\n",
- " if len(ids) >= 4:\n",
- " dprefix.append(dict(answer=prefix, hint=f'{prefix} _', clues=list(df.loc[list(ids)].c2)))\n",
- "dsuffix = []\n",
- "for suffix, ids in suffixes.items():\n",
- " if len(ids) >= 4:\n",
- " dsuffix.append(dict(answer=suffix, hint=f'_ {suffix}', clues=list(df.loc[list(ids)].c1)))\n",
- "\n",
- ":\n",
- " return True\n",
- " # Then, print everything between .8 and .9 to see whats the best cutoff\n",
- "\"\"\"\n",
"def filter_duplicates(group):\n",
" if not group:\n",
" return []\n",
@@ -440,21 +141,12 @@
},
{
"cell_type": "code",
- "execution_count": 11,
- "id": "6a3c04eb-79a6-47f5-846e-93258db65921",
- "metadata": {},
- "outputs": [],
- "source": [
- "blacklist = ['man', 'men', 'woman', 'women']"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 63,
- "id": "dfb38b21-3dc4-495a-8805-446b2e9e8483",
+ "execution_count": 64,
+ "id": "1c8175f2-817e-45ab-af0b-5ea7ee7a5dc9",
"metadata": {},
"outputs": [],
"source": [
+ "blacklist = ['man', 'men', 'woman', 'women']\n",
"def process_groups(groups):\n",
" new = []\n",
" for group in groups:\n",
@@ -464,16 +156,7 @@
" if len(clues) < 4:\n",
" continue\n",
" new.append(dict(answer=group['answer'], hint=group['hint'], clues=clues))\n",
- " return new"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 64,
- "id": "1c8175f2-817e-45ab-af0b-5ea7ee7a5dc9",
- "metadata": {},
- "outputs": [],
- "source": [
+ " return new\n",
"corpus = [\n",
" dict(name='suffixes', groups=process_groups(dsuffix), portion=.9),\n",
" dict(name='prefixes', groups=process_groups(dprefix), portion=.8),\n",
@@ -487,80 +170,61 @@
{
"cell_type": "code",
"execution_count": 65,
- "id": "b35092c5-17db-4257-bf45-83e8c3973da4",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "[Synset('basil_thyme.n.01')]"
- ]
- },
- "execution_count": 65,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "wn.synsets('satureja_acinos')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 66,
- "id": "8025664c-e116-481a-9609-d58200f773ec",
+ "id": "1f2cca38-5d1a-421e-9bcc-09d68880c6f1",
"metadata": {},
"outputs": [],
"source": [
- "# Can lemmatize/singularize and compare levenshtein based on that, but don't use lemma itself for the group as it may bed wrong"
+ "with open('../static/corpus.js', 'w') as f:\n",
+ " f.write('var corpus = ')\n",
+ " json.dump(corpus, f)"
]
},
{
"cell_type": "code",
- "execution_count": 67,
- "id": "77256802-04ef-4908-9b39-e9381f6abac5",
+ "execution_count": 66,
+ "id": "589f6645-3a52-40ad-9899-717ea7614d00",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
- "(13824, 3976, 490, 7141, 226, 196)"
+ "'noun.group'"
]
},
- "execution_count": 67,
+ "execution_count": 66,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "len(dnoun), len(dadj), len(dadverb), len(dverb), len(dprefix), len(dsuffix)"
+ "wn.synsets('Islamic_jihad')[0].lexname()"
]
},
{
"cell_type": "code",
- "execution_count": 68,
- "id": "66256c50-fcbc-42ad-a17b-057fd0d7dea1",
+ "execution_count": 67,
+ "id": "8faeb5ee-e1ff-4571-91bf-178cdc7d29f7",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
- "25853"
+ "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"
]
},
- "execution_count": 68,
+ "execution_count": 67,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "sum((len(dnoun), len(dadj), len(dadverb), len(dverb), len(dprefix), len(dsuffix)))"
+ " string.ascii_uppercase"
]
},
{
"cell_type": "code",
"execution_count": null,
- "id": "635b6a6c-c084-4584-a63f-cde4221e0ad9",
+ "id": "b8d12e1a-757f-4d87-9374-e7eb656f30d4",
"metadata": {},
"outputs": [],
"source": []
@@ -568,73 +232,31 @@
{
"cell_type": "code",
"execution_count": null,
- "id": "f48e2eec-2ab1-4398-a862-172398c413a0",
+ "id": "68f254d5-7a96-488a-b1a8-6a82dce44271",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
- "execution_count": 70,
- "id": "1f2cca38-5d1a-421e-9bcc-09d68880c6f1",
- "metadata": {},
- "outputs": [],
- "source": [
- "with open('../static/corpus.js', 'w') as f:\n",
- " f.write('var corpus = ')\n",
- " json.dump(corpus, f)"
- ]
- },
- {
- "cell_type": "code",
"execution_count": null,
- "id": "551ce71f-0d75-4e41-8387-808db1e5e20f",
+ "id": "091e0422-99be-4b20-a20d-17ac296990b6",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
- "execution_count": 38,
- "id": "19589357-f1ca-4d10-8574-3639bd05173f",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "26388"
- ]
- },
- "execution_count": 38,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": []
- },
- {
- "cell_type": "code",
- "execution_count": 39,
- "id": "dd927be9-a77c-4606-984a-b3cf555b2618",
+ "execution_count": null,
+ "id": "ff46e8c4-b806-43f6-8cf9-d4260bad1ba8",
"metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "195"
- ]
- },
- "execution_count": 39,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
+ "outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
- "id": "f598354d-3f52-4952-a8c0-69c480ebe8b1",
+ "id": "668b25f4-6992-41a3-881c-3a6a72ba0d77",
"metadata": {},
"outputs": [],
"source": []
@@ -642,7 +264,7 @@
{
"cell_type": "code",
"execution_count": null,
- "id": "77cb04f6-846e-454b-98e1-4feb575d2332",
+ "id": "1a0ae159-2a40-4ca5-915a-6ca40df3080f",
"metadata": {},
"outputs": [],
"source": []
diff --git a/static/corpus.js b/static/corpus.js
index bccd8a2..171bcef 100644
--- a/static/corpus.js
+++ b/static/corpus.js
@@ -1 +1 @@
-var corpus = [{"name": "suffixes", "groups": [{"answer": "about", "hint": "_ about", "clues": ["gad", "knock", "turn", "walk", "run", "round", "roust", "lay"]}, {"answer": "ache", "hint": "_ ache", "clues": ["head", "belly", "heart", "ear", "back", "stomach", "tooth"]}, {"answer": "all", "hint": "_ all", "clues": ["catch", "carry", "cover", "hold"]}, {"answer": "away", "hint": "_ away", "clues": ["break", "stow", "straight", "get", "cast", "throw", "tear", "take", "cut", "run", "give", "hide", "walk"]}, {"answer": "back", "hint": "_ back", "clues": ["razor", "sling", "throw", "canvas", "paper", "feed", "hump", "full", "kick", "flash", "half", "green", "fat", "buy", "tie", "hard", "hunch", "quarter", "out", "fall", "cut", "roll", "horse", "draw", "hatch", "call", "diamond", "piggy", "pay", "hog", "tail", "set", "moss", "pull", "soft"]}, {"answer": "bag", "hint": "_ bag", "clues": ["school", "bean", "gas", "feed", "money", "hand", "saddle", "carpet", "sand", "flea", "wind", "mail", "post", "rag", "nose"]}, {"answer": "ball", "hint": "_ ball", "clues": ["hard", "butter", "goof", "base", "basket", "racquet", "hand", "eye", "pin", "hair", "moth", "fire", "spit", "fast", "foot", "net", "odd", "volley", "puff", "meat", "paint", "cannon", "high", "screw", "track", "snow", "black", "soft"]}, {"answer": "band", "hint": "_ band", "clues": ["neck", "waist", "arm", "sweat", "head", "hat", "wave", "watch", "wrist"]}, {"answer": "bar", "hint": "_ bar", "clues": ["cross", "sand", "side", "handle", "crow"]}, {"answer": "beam", "hint": "_ beam", "clues": ["horn", "sun", "moon", "cross"]}, {"answer": "beat", "hint": "_ beat", "clues": ["down", "heart", "drum", "dead"]}, {"answer": "bed", "hint": "_ bed", "clues": ["sea", "day", "flat", "sick", "flower", "death", "river", "hot", "seed", "road"]}, {"answer": "bell", "hint": "_ bell", "clues": ["cow", "door", "hare", "bar", "dumb", "blue"]}, {"answer": "berry", "hint": "_ berry", "clues": ["bay", "bar", "dew", "elder", "blue", "straw", "rasp", "black", "goose"]}, {"answer": "bill", "hint": "_ bill", "clues": ["spoon", "hand", "way", "play", "duck"]}, {"answer": "bird", "hint": "_ bird", "clues": ["sea", "blue", "love", "black", "song", "cow", "lady", "jail", "whirly", "cat", "jay", "oven", "water", "lyre", "dicky", "snow", "red", "mocking", "humming", "shore"]}, {"answer": "board", "hint": "_ board", "clues": ["lap", "paste", "floor", "shuffle", "cup", "paper", "score", "spring", "clapper", "finger", "side", "cheese", "bill", "mold", "plaster", "weather", "buck", "sound", "chalk", "tail", "black", "head", "dart", "key", "drain", "switch", "snow", "skate", "chip", "hard", "dash", "sign", "checker", "sea", "card", "bread", "star", "wall", "surf", "clip", "peg", "base", "fiber", "center", "wash", "chess", "mortar"]}, {"answer": "boarding", "hint": "_ boarding", "clues": ["skate", "surf", "snow", "weather"]}, {"answer": "boat", "hint": "_ boat", "clues": ["flat", "ferry", "gun", "show", "speed", "life", "cat", "whale", "motor", "power", "house", "ice", "sail", "row", "tug", "tow", "steam", "long"]}, {"answer": "body", "hint": "_ body", "clues": ["home", "dogs", "some", "busy"]}, {"answer": "bone", "hint": "_ bone", "clues": ["whale", "hip", "back", "breast", "collar", "jaw", "herring", "shin", "ankle", "wish", "cheek", "thigh"]}, {"answer": "book", "hint": "_ book", "clues": ["year", "cook", "prayer", "bank", "text", "pass", "log", "hand", "guide", "check", "word", "hymn", "song", "story", "stud", "school", "case", "scrap", "note", "work", "copy", "match", "play", "pocket", "sketch"]}, {"answer": "box", "hint": "_ box", "clues": ["juke", "band", "tool", "soap", "match", "paint", "horse", "hot", "post", "tinder", "sand", "mail", "hat", "ice", "pill", "chatter", "gear", "snuff", "shoe", "strong", "fire", "salt", "bread"]}, {"answer": "boy", "hint": "_ boy", "clues": ["bell", "school", "page", "home", "news", "cow", "paper", "play", "tall", "low", "high", "bus", "choir", "tom"]}, {"answer": "bread", "hint": "_ bread", "clues": ["corn", "sweet", "short", "ginger", "bee"]}, {"answer": "break", "hint": "_ break", "clues": ["fire", "jail", "day", "heart", "wind", "gaol"]}, {"answer": "breaker", "hint": "_ breaker", "clues": ["strike", "ice", "jaw", "law", "house", "wind", "tie"]}, {"answer": "brow", "hint": "_ brow", "clues": ["middle", "high", "eye", "low"]}, {"answer": "brush", "hint": "_ brush", "clues": ["tooth", "paint", "sage", "nail", "hair", "under"]}, {"answer": "bug", "hint": "_ bug", "clues": ["bed", "fire", "lady", "litter", "mealy", "doodle", "jitter", "shutter"]}, {"answer": "cake", "hint": "_ cake", "clues": ["cheese", "hot", "oat", "hoe", "griddle", "coffee", "johnny", "cup", "pan", "fruit", "short", "fried", "tea", "beef"]}, {"answer": "cap", "hint": "_ cap", "clues": ["sky", "ice", "mad", "hub", "night", "knee", "skull", "toe", "fools", "red", "white"]}, {"answer": "car", "hint": "_ car", "clues": ["tram", "box", "motor", "hand", "side", "flat", "street"]}, {"answer": "care", "hint": "_ care", "clues": ["after", "child", "skin", "hair", "day"]}, {"answer": "cart", "hint": "_ cart", "clues": ["apple", "push", "dust", "hand", "dog"]}, {"answer": "case", "hint": "_ case", "clues": ["crank", "upper", "brief", "seed", "show", "book", "suit", "pillow", "lower", "nut", "stair"]}, {"answer": "cast", "hint": "_ cast", "clues": ["down", "over", "sports", "broad", "news", "rough"]}, {"answer": "cat", "hint": "_ cat", "clues": ["hell", "tom", "bob", "wild", "pole", "pussy", "copy"]}, {"answer": "chair", "hint": "_ chair", "clues": ["high", "push", "arm", "wheel"]}, {"answer": "child", "hint": "_ child", "clues": ["god", "school", "step", "grand", "brain"]}, {"answer": "cloth", "hint": "_ cloth", "clues": ["hair", "table", "back", "oil", "sack", "broad", "dish", "terry", "cheese", "sail", "wash", "loin"]}, {"answer": "coat", "hint": "_ coat", "clues": ["rain", "waist", "red", "under", "turn", "over", "house", "tail", "top", "great"]}, {"answer": "cock", "hint": "_ cock", "clues": ["pet", "hay", "ball", "pea", "game", "wood", "shuttle", "weather", "stop"]}, {"answer": "comb", "hint": "_ comb", "clues": ["honey", "cox", "curry", "cocks"]}, {"answer": "craft", "hint": "_ craft", "clues": ["needle", "wood", "hand", "water", "air", "hover", "witch", "space", "state", "stage"]}, {"answer": "cut", "hint": "_ cut", "clues": ["wood", "under", "hair", "cross", "upper", "short"]}, {"answer": "day", "hint": "_ day", "clues": ["mid", "pay", "week", "noon", "dooms", "work", "wash", "birth"]}, {"answer": "dog", "hint": "_ dog", "clues": ["watch", "sheep", "under", "bull", "hot", "lap"]}, {"answer": "down", "hint": "_ down", "clues": ["melt", "touch", "count", "knock", "crack", "clamp", "rub", "shut", "let", "spell", "slow", "show", "break", "run", "come", "splash", "eider", "sun", "shake", "thistle"]}, {"answer": "drop", "hint": "_ drop", "clues": ["back", "dew", "gum", "snow", "rain", "air", "tear"]}, {"answer": "eye", "hint": "_ eye", "clues": ["wall", "shut", "buck", "pink"]}, {"answer": "face", "hint": "_ face", "clues": ["coal", "pale", "bold", "type"]}, {"answer": "fall", "hint": "_ fall", "clues": ["night", "water", "pit", "short", "snow", "rain", "foot", "wind", "land", "down", "prat"]}, {"answer": "field", "hint": "_ field", "clues": ["hay", "coal", "out", "gold", "corn", "snow", "mid", "back", "oil", "mine", "air", "battle"]}, {"answer": "fight", "hint": "_ fight", "clues": ["cock", "dog", "gun", "fist", "bull", "prize"]}, {"answer": "finder", "hint": "_ finder", "clues": ["range", "view", "fault", "path"]}, {"answer": "fire", "hint": "_ fire", "clues": ["cross", "hell", "spit", "camp", "wild", "back", "gun"]}, {"answer": "fish", "hint": "_ fish", "clues": ["sail", "sun", "spear", "weak", "cat", "dog", "star", "gold", "lung", "sword", "flat", "cuttle", "white", "shell", "jelly", "gar", "angel", "silver", "cod", "blue"]}, {"answer": "flower", "hint": "_ flower", "clues": ["corn", "may", "wall", "sun", "wild", "wind", "passion"]}, {"answer": "fly", "hint": "_ fly", "clues": ["house", "blow", "butter", "fire", "gad", "saw", "green", "may", "damsel", "dragon", "horse"]}, {"answer": "fold", "hint": "_ fold", "clues": ["bill", "sheep", "center", "blind"]}, {"answer": "foot", "hint": "_ foot", "clues": ["crow", "hot", "flat", "club", "tender", "splay", "web"]}, {"answer": "front", "hint": "_ front", "clues": ["ocean", "water", "lake", "beach", "wave", "battle", "shirt", "sea", "store", "shop"]}, {"answer": "girl", "hint": "_ girl", "clues": ["cow", "show", "sales", "school"]}, {"answer": "glass", "hint": "_ glass", "clues": ["hour", "spy", "eye", "fiber", "wine"]}, {"answer": "goer", "hint": "_ goer", "clues": ["church", "play", "theater", "movie"]}, {"answer": "ground", "hint": "_ ground", "clues": ["play", "camp", "fore", "under", "fair", "back", "battle"]}, {"answer": "guard", "hint": "_ guard", "clues": ["coast", "black", "body", "fire", "rear", "safe", "van", "life", "mud"]}, {"answer": "gun", "hint": "_ gun", "clues": ["flash", "shot", "blow", "air", "hand", "pop"]}, {"answer": "hand", "hint": "_ hand", "clues": ["long", "cow", "short", "stage", "deck", "farm", "back"]}, {"answer": "head", "hint": "_ head", "clues": ["skin", "fat", "bull", "block", "well", "sore", "big", "dead", "maiden", "bridge", "logger", "black", "beach", "figure", "air", "mast", "fore", "hot", "egg", "hammer", "over", "copper", "letter", "pit", "hogs", "arrow", "bone", "fountain", "war", "knuckle", "bulk", "spear", "thunder", "red", "white", "pin", "pot", "sleepy", "tow"]}, {"answer": "hill", "hint": "_ hill", "clues": ["dung", "down", "foot", "ant", "mole"]}, {"answer": "hold", "hint": "_ hold", "clues": ["toe", "hand", "foot", "strangle", "strong", "lease", "house", "free"]}, {"answer": "holder", "hint": "_ holder", "clues": ["lease", "land", "house", "pot", "card", "free", "bond", "share", "policy", "job", "stock", "place", "stake", "small", "slave", "office"]}, {"answer": "hole", "hint": "_ hole", "clues": ["worm", "bung", "fox", "arm", "sink", "cubby", "plug", "spy", "button", "pigeon", "knot", "loop", "pin", "pot", "peep", "blow", "key", "chuck", "hell"]}, {"answer": "hook", "hint": "_ hook", "clues": ["fish", "bill", "tenter", "pot"]}, {"answer": "horn", "hint": "_ horn", "clues": ["prong", "fog", "big", "long", "green", "bull", "short", "shoe"]}, {"answer": "horse", "hint": "_ horse", "clues": ["sea", "clothes", "hobby", "cart", "pack", "work", "war", "race", "saw"]}, {"answer": "hound", "hint": "_ hound", "clues": ["wolf", "blood", "fox", "grey"]}, {"answer": "house", "hint": "_ house", "clues": ["bake", "porter", "whore", "summer", "club", "custom", "ware", "bird", "green", "glass", "block", "cook", "flop", "nut", "steak", "play", "boat", "fire", "bath", "slaughter", "jail", "mad", "poor", "light", "chop", "coffee", "meeting", "guard", "gate", "road", "store", "pilot", "ale", "guest", "doll", "court", "packing", "farm", "work", "wheel", "power", "doss", "round", "dog", "boarding", "hot", "school", "smoke"]}, {"answer": "jack", "hint": "_ jack", "clues": ["apple", "cracker", "steeple", "flap", "lumber", "black"]}, {"answer": "keeper", "hint": "_ keeper", "clues": ["bee", "time", "grounds", "book", "game", "store", "inn", "gate", "peace", "door", "house", "shop", "bar", "score", "goal"]}, {"answer": "keeping", "hint": "_ keeping", "clues": ["house", "safe", "book", "bee", "time", "peace"]}, {"answer": "land", "hint": "_ land", "clues": ["mid", "hinter", "waste", "swamp", "heart", "park", "pasture", "moor", "heath", "dream", "high", "fairy", "marsh", "timber", "wood", "table", "wet", "wonder", "fen", "head", "home", "grass", "main", "mother", "farm", "tide", "father", "low", "border", "gang"]}, {"answer": "leg", "hint": "_ leg", "clues": ["black", "dog", "boot", "bow"]}, {"answer": "life", "hint": "_ life", "clues": ["night", "wild", "after", "low"]}, {"answer": "light", "hint": "_ light", "clues": ["torch", "high", "candle", "star", "gas", "flash", "stop", "head", "lime", "day", "sky", "sun", "lamp", "fan", "fire", "street", "tail", "moon", "search", "spot", "side", "flood", "pen"]}, {"answer": "lighter", "hint": "_ lighter", "clues": ["lamp", "fire", "moon", "high"]}, {"answer": "line", "hint": "_ line", "clues": ["hem", "air", "clothes", "dead", "side", "bread", "shore", "under", "base", "guide", "pipe", "neck", "bow", "date", "border", "waist", "tape", "head", "coast", "life", "timber", "story", "sky", "bee", "water", "blood", "touch", "tow"]}, {"answer": "liner", "hint": "_ liner", "clues": ["jet", "hard", "head", "air", "eye"]}, {"answer": "load", "hint": "_ load", "clues": ["car", "boat", "pay", "bus", "work", "over", "train", "ship"]}, {"answer": "lock", "hint": "_ lock", "clues": ["dead", "grid", "match", "pad", "row", "wed", "air", "oar", "flint", "hammer", "head"]}, {"answer": "maid", "hint": "_ maid", "clues": ["brides", "milk", "hand", "chamber", "bar", "nurse", "dairy", "parlor", "house"]}, {"answer": "maker", "hint": "_ maker", "clues": ["cabinet", "wine", "book", "king", "law", "steel", "dress", "holiday", "match", "merry", "peace", "noise", "home", "watch", "rain", "clock", "money", "film", "auto", "trouble", "tool", "shoe"]}, {"answer": "making", "hint": "_ making", "clues": ["cabinet", "love", "rain", "law", "hay", "dress", "merry", "home", "money", "print", "match"]}, {"answer": "man", "hint": "_ man", "clues": ["wood", "horse", "towns", "grounds", "aircraft", "bats", "grooms", "sales", "cow", "brake", "muscle", "cattle", "line", "news", "select", "dales", "crafts", "bogey", "police", "law", "guards", "bands", "strong", "coach", "signal", "country", "house", "backwoods", "militia", "ice", "church", "service", "bush", "cavalry", "snow", "milk", "handy", "midship", "clans", "bonds", "gentle", "ferry", "rifle", "heads", "door", "plow", "yachts", "work", "chair", "sports", "freed", "infantry", "herds", "dust", "marks", "committee", "lands", "spokes", "warehouse", "jury", "watch", "newspaper", "drafts", "cave", "train", "patrol", "fire", "fisher", "water", "clergy", "council", "alder", "hang", "laundry", "mail", "states", "link", "husband", "assembly", "tax", "fresh", "bow", "hunts", "chess", "repair", "noble", "dairy", "sand", "lumber", "garbage", "mad", "anchor", "air", "space", "crew", "middle", "swords", "gun", "pen", "business", "pitch", "plains", "barge", "oars", "post", "oil", "frog", "bell", "press", "camera", "livery", "fields", "trencher", "kins", "stable", "helms", "congress", "boat", "merchant", "foot", "highway", "artillery", "bar", "frontiers", "vestry", "gas", "lay", "show", "steers", "motor", "yard", "nursery", "trades", "weather", "longshore", "journey", "sea", "railway"]}, {"answer": "mark", "hint": "_ mark", "clues": ["bench", "trade", "pock", "birth", "post", "book", "tide", "finger", "water", "land", "ear", "hall"]}, {"answer": "mast", "hint": "_ mast", "clues": ["top", "main", "mizzen", "fore"]}, {"answer": "master", "hint": "_ master", "clues": ["pay", "choir", "station", "task", "quarter", "spy", "toast", "school", "scout", "house", "grand", "web", "post", "band", "head", "ring", "yard"]}, {"answer": "mate", "hint": "_ mate", "clues": ["room", "school", "check", "house", "mess", "class", "ship", "stable", "work", "team", "flat", "play", "help"]}, {"answer": "meter", "hint": "_ meter", "clues": ["taxi", "audio", "volt", "ohm"]}, {"answer": "mill", "hint": "_ mill", "clues": ["grist", "wind", "saw", "tread"]}, {"answer": "mistress", "hint": "_ mistress", "clues": ["head", "task", "post", "school"]}, {"answer": "monger", "hint": "_ monger", "clues": ["scare", "iron", "war", "rumor", "scandal", "fish", "hate"]}, {"answer": "mother", "hint": "_ mother", "clues": ["grand", "step", "house", "god"]}, {"answer": "mouth", "hint": "_ mouth", "clues": ["motor", "loud", "cotton", "goal", "blabber"]}, {"answer": "nail", "hint": "_ nail", "clues": ["hob", "hang", "thumb", "finger", "door", "toe"]}, {"answer": "neck", "hint": "_ neck", "clues": ["leather", "bottle", "rough", "rubber", "red", "turtle", "crook"]}, {"answer": "nut", "hint": "_ nut", "clues": ["beech", "chest", "butter", "coco", "cob", "hazel", "pea", "ground"]}, {"answer": "off", "hint": "_ off", "clues": ["cut", "play", "run", "take", "kick", "blast", "turn", "lift", "stand", "knock", "fall"]}, {"answer": "out", "hint": "_ out", "clues": ["check", "buy", "cut", "put", "wash", "take", "hold", "blow", "fade", "lay", "break", "walk", "work", "turn", "knock", "close", "black", "strike", "fall", "drop", "print", "look", "shoot", "hide", "cook", "shake", "shut", "white", "hand", "hang", "sell", "fold", "dug", "lock", "try"]}, {"answer": "over", "hint": "_ over", "clues": ["change", "lay", "make", "walk", "cross", "push", "stop", "pull", "left", "fly", "pop", "roll", "sleep", "spill", "hand", "hang", "turn", "hold", "take"]}, {"answer": "pad", "hint": "_ pad", "clues": ["key", "launch", "note", "scratch"]}, {"answer": "pan", "hint": "_ pan", "clues": ["bed", "dust", "dish", "sauce", "skid"]}, {"answer": "paper", "hint": "_ paper", "clues": ["note", "wall", "news", "sand", "fly"]}, {"answer": "pence", "hint": "_ pence", "clues": ["eight", "four", "two", "nine", "six", "three"]}, {"answer": "person", "hint": "_ person", "clues": ["anchor", "chair", "lay", "spokes", "business", "sales"]}, {"answer": "phone", "hint": "_ phone", "clues": ["cell", "head", "ear", "speaker"]}, {"answer": "piece", "hint": "_ piece", "clues": ["altar", "show", "mantel", "eye", "cod", "time", "mouth", "hair", "tail", "center", "head", "master", "work", "ear"]}, {"answer": "pin", "hint": "_ pin", "clues": ["ten", "stick", "nine", "hat", "hair", "push", "king", "tie", "head", "clothes"]}, {"answer": "pipe", "hint": "_ pipe", "clues": ["blow", "bag", "hose", "tail", "drain", "wind", "stand", "stove", "horn"]}, {"answer": "pit", "hint": "_ pit", "clues": ["flea", "cock", "arm", "sand"]}, {"answer": "place", "hint": "_ place", "clues": ["birth", "market", "common", "show", "fire", "work"]}, {"answer": "plane", "hint": "_ plane", "clues": ["war", "tail", "air", "sail", "sea"]}, {"answer": "plate", "hint": "_ plate", "clues": ["breast", "name", "book", "face", "copper", "foot", "door", "hot", "tin", "boiler", "number"]}, {"answer": "point", "hint": "_ point", "clues": ["stand", "blue", "check", "pin", "gun", "end", "needle", "ball", "view", "mid"]}, {"answer": "pole", "hint": "_ pole", "clues": ["ridge", "flag", "may", "tad"]}, {"answer": "post", "hint": "_ post", "clues": ["bed", "mile", "gate", "guide", "door", "lamp", "goal", "sign"]}, {"answer": "pot", "hint": "_ pot", "clues": ["crack", "tea", "flower", "fuss", "chamber", "honey", "jack", "sex", "stock", "hot", "coffee"]}, {"answer": "power", "hint": "_ power", "clues": ["brain", "will", "candle", "horse", "fire"]}, {"answer": "print", "hint": "_ print", "clues": ["foot", "finger", "thumb", "blue", "off", "news", "over"]}, {"answer": "rest", "hint": "_ rest", "clues": ["back", "arm", "foot", "head"]}, {"answer": "roll", "hint": "_ roll", "clues": ["jelly", "pay", "bank", "bed"]}, {"answer": "room", "hint": "_ room", "clues": ["work", "store", "green", "bed", "school", "board", "sick", "class", "ball", "bar", "wash", "lunch", "sales", "club", "home", "tap", "bath", "head", "ward", "back", "play", "tea", "news", "house", "stock", "pool", "dark", "guard", "state", "show", "rest", "coat", "cloak", "court", "check", "guest", "strong"]}, {"answer": "saw", "hint": "_ saw", "clues": ["rip", "jig", "chain", "see", "hack", "hand", "buck", "fret", "whip"]}, {"answer": "screen", "hint": "_ screen", "clues": ["wind", "sun", "silk", "smoke", "touch"]}, {"answer": "seed", "hint": "_ seed", "clues": ["rape", "bird", "cotton", "oil", "hay"]}, {"answer": "set", "hint": "_ set", "clues": ["head", "mind", "off", "sun", "hand"]}, {"answer": "shed", "hint": "_ shed", "clues": ["cow", "water", "wood", "blood"]}, {"answer": "sheet", "hint": "_ sheet", "clues": ["work", "ground", "spread", "broad"]}, {"answer": "shell", "hint": "_ shell", "clues": ["sea", "cockle", "tortoise", "egg", "nut", "bomb"]}, {"answer": "shift", "hint": "_ shift", "clues": ["gear", "down", "make", "red"]}, {"answer": "ship", "hint": "_ ship", "clues": ["troop", "showman", "flag", "swordsman", "battle", "light", "space", "chairman", "war", "horseman", "steam", "air"]}, {"answer": "shoe", "hint": "_ shoe", "clues": ["gum", "horse", "snow", "over"]}, {"answer": "shop", "hint": "_ shop", "clues": ["barber", "book", "pawn", "bake", "toy", "work", "sweat", "tea"]}, {"answer": "shot", "hint": "_ shot", "clues": ["hot", "buck", "sling", "mug", "pot", "grape", "ear", "gun", "snap"]}, {"answer": "sickness", "hint": "_ sickness", "clues": ["home", "air", "heart", "sea"]}, {"answer": "side", "hint": "_ side", "clues": ["lake", "curb", "near", "fire", "under", "top", "sea", "dock", "way", "country", "river", "back", "hill", "bed", "road", "down", "ring", "mountain", "off", "water"]}, {"answer": "skin", "hint": "_ skin", "clues": ["sheep", "doe", "oil", "buck", "goat", "coon", "seal", "deer", "onion", "kid", "wine", "lamb", "pig", "calf", "bear", "shark", "mole"]}, {"answer": "slip", "hint": "_ slip", "clues": ["land", "gym", "pay", "cow"]}, {"answer": "smith", "hint": "_ smith", "clues": ["gold", "lock", "tin", "word", "silver", "black", "gun"]}, {"answer": "song", "hint": "_ song", "clues": ["bird", "plain", "sing", "even", "folk"]}, {"answer": "space", "hint": "_ space", "clues": ["back", "crawl", "air", "work"]}, {"answer": "spring", "hint": "_ spring", "clues": ["hand", "well", "hair", "off", "main"]}, {"answer": "stand", "hint": "_ stand", "clues": ["hand", "kick", "head", "cab", "ink", "news", "band", "grand", "wash"]}, {"answer": "step", "hint": "_ step", "clues": ["quick", "lock", "foot", "door", "side"]}, {"answer": "stick", "hint": "_ stick", "clues": ["dip", "joy", "night", "candle", "drum", "gear", "yard", "match", "chop", "slap", "lip", "broom"]}, {"answer": "stock", "hint": "_ stock", "clues": ["feed", "blood", "live", "head", "root", "laughing"]}, {"answer": "stone", "hint": "_ stone", "clues": ["sand", "lime", "blood", "gall", "whet", "hail", "tomb", "mile", "grind", "head", "cap", "gem", "brown", "soap", "moon", "mill", "cobble", "lode", "touch", "grave", "flag", "hearth", "key", "free", "curb", "corner", "silt"]}, {"answer": "storm", "hint": "_ storm", "clues": ["brain", "thunder", "hail", "snow", "sand", "fire", "wind"]}, {"answer": "stream", "hint": "_ stream", "clues": ["air", "blood", "main", "slip", "mid"]}, {"answer": "string", "hint": "_ string", "clues": ["ham", "draw", "shoe", "bow"]}, {"answer": "stroke", "hint": "_ stroke", "clues": ["breast", "heat", "master", "side", "sun", "back", "key"]}, {"answer": "suit", "hint": "_ suit", "clues": ["sweat", "law", "swim", "space", "pant", "snow", "jump"]}, {"answer": "table", "hint": "_ table", "clues": ["time", "work", "turn", "round"]}, {"answer": "tail", "hint": "_ tail", "clues": ["cat", "cock", "horse", "bob", "wag", "fan", "white", "swallow", "dove", "shirt", "pony", "cotton", "pig"]}, {"answer": "tale", "hint": "_ tale", "clues": ["tattle", "fairy", "tell", "folk"]}, {"answer": "time", "hint": "_ time", "clues": ["over", "tea", "lunch", "life", "meal", "play", "night", "bed", "dinner", "spring", "summer", "show", "peace", "mean", "winter", "rag", "half", "supper", "day", "war", "down"]}, {"answer": "top", "hint": "_ top", "clues": ["flat", "hill", "tree", "hard", "house", "tip", "desk", "black", "lap", "table", "roof"]}, {"answer": "trap", "hint": "_ trap", "clues": ["clap", "fire", "mouse", "death", "sun", "rat"]}, {"answer": "walk", "hint": "_ walk", "clues": ["side", "board", "cat", "moon", "cake", "cross"]}, {"answer": "walker", "hint": "_ walker", "clues": ["floor", "sleep", "jay", "street"]}, {"answer": "wall", "hint": "_ wall", "clues": ["sea", "side", "fire", "dry"]}, {"answer": "ware", "hint": "_ ware", "clues": ["dish", "flat", "china", "cook", "iron", "glass", "kitchen", "firm", "table", "free", "hard", "tin", "oven", "dinner", "earthen", "group", "silver", "stone", "share", "enamel", "soft"]}, {"answer": "wash", "hint": "_ wash", "clues": ["white", "back", "mouth", "eye", "hog"]}, {"answer": "water", "hint": "_ water", "clues": ["rain", "break", "salt", "white", "tide", "sea", "back", "fresh", "dish", "fire"]}, {"answer": "way", "hint": "_ way", "clues": ["walk", "hatch", "race", "head", "express", "gate", "road", "slip", "companion", "speed", "air", "spill", "entry", "rail", "passage", "run", "path", "cause", "mid", "drive", "high", "tram", "arch", "lee", "door", "stair", "carriage", "sea", "motor", "taxi", "fly", "tide", "water", "free", "gang", "belt", "hall", "alley", "clear", "park"]}, {"answer": "wear", "hint": "_ wear", "clues": ["swim", "knit", "beach", "sports", "night", "foot", "under", "outer", "sleep"]}, {"answer": "weed", "hint": "_ weed", "clues": ["rag", "duck", "bind", "chick", "sea", "loco", "milk", "tumble"]}, {"answer": "weight", "hint": "_ weight", "clues": ["bantam", "light", "middle", "fly", "feather", "penny", "paper", "hundred", "over", "make", "welter", "heavy"]}, {"answer": "wheel", "hint": "_ wheel", "clues": ["cog", "cart", "free", "pin", "water", "fly"]}, {"answer": "wife", "hint": "_ wife", "clues": ["fish", "ale", "house", "mid"]}, {"answer": "wind", "hint": "_ wind", "clues": ["cross", "head", "whirl", "tail", "wood"]}, {"answer": "woman", "hint": "_ woman", "clues": ["bond", "congress", "spokes", "frontiers", "states", "jury", "oars", "clans", "business", "air", "news", "committee", "kins", "chair", "council", "sales", "country", "sports", "mad", "washer", "newspaper", "yachts", "laundry", "gentle", "noble", "horse", "assembly", "police", "needle"]}, {"answer": "wood", "hint": "_ wood", "clues": ["match", "cotton", "brush", "beech", "box", "pulp", "rose", "dog", "soft", "iron", "hard", "dead", "drift", "sap", "green", "red", "bass", "ply", "worm", "satin", "button", "bent", "fire", "heart", "sandal"]}, {"answer": "word", "hint": "_ word", "clues": ["loan", "swear", "head", "buzz", "cross", "watch", "catch", "pass"]}, {"answer": "work", "hint": "_ work", "clues": ["course", "fancy", "school", "case", "ground", "busy", "lace", "clock", "crewel", "brick", "class", "house", "lattice", "paper", "art", "body", "cabinet", "field", "iron", "team", "stone", "life", "wax", "fire", "earth", "guess", "fret", "pipe", "needle", "breast", "plaster", "wicker", "patch", "spade", "over", "home", "frame", "net", "hand", "brush", "bridge", "metal", "hack", "wood", "piece", "foot", "open"]}, {"answer": "worker", "hint": "_ worker", "clues": ["steel", "case", "field", "metal", "dock", "wood"]}, {"answer": "works", "hint": "_ works", "clues": ["water", "steel", "gas", "iron"]}, {"answer": "worm", "hint": "_ worm", "clues": ["ring", "cut", "earth", "angle", "round", "tape", "hook", "book", "silk", "glow", "blood", "inch", "wood", "flat"]}, {"answer": "worthiness", "hint": "_ worthiness", "clues": ["trust", "air", "credit", "praise", "sea"]}, {"answer": "wright", "hint": "_ wright", "clues": ["play", "ship", "mill", "wain", "wheel"]}, {"answer": "writer", "hint": "_ writer", "clues": ["sports", "teletype", "song", "ghost", "under", "copy", "screen", "speech", "script", "type"]}, {"answer": "yard", "hint": "_ yard", "clues": ["back", "church", "lumber", "grave", "junk", "barn", "court", "door", "dock", "brick", "school", "vine", "stock", "farm", "boat", "steel", "ship"]}], "portion": 0.9}, {"name": "prefixes", "groups": [{"answer": "after", "hint": "after _", "clues": ["birth", "burner", "care", "effect", "glow", "image", "life", "math", "noon", "shock", "taste", "thought"]}, {"answer": "air", "hint": "air _", "clues": ["brush", "bus", "craft", "crew", "drome", "drop", "fare", "field", "flow", "foil", "frame", "gun", "head", "lift", "line", "lock", "mail", "plane", "port", "ship", "sickness", "space", "speed", "stream", "strip", "way", "worthiness"]}, {"answer": "arm", "hint": "arm _", "clues": ["band", "chair", "hole", "pit", "rest"]}, {"answer": "back", "hint": "back _", "clues": ["ache", "bench", "biter", "board", "bone", "chat", "cloth", "door", "drop", "field", "fire", "gammon", "ground", "hand", "hoe", "lash", "log", "pack", "packer", "rest", "room", "seat", "side", "slapper", "slider", "sliding", "space", "spin", "stage", "stairs", "stop", "stroke", "talk", "wash", "water", "woods", "yard"]}, {"answer": "ball", "hint": "ball _", "clues": ["cock", "game", "park", "player", "point", "room"]}, {"answer": "band", "hint": "band _", "clues": ["box", "leader", "master", "stand", "wagon", "width"]}, {"answer": "bar", "hint": "bar _", "clues": ["bell", "berry", "keep", "keeper", "maid", "room", "tender"]}, {"answer": "bath", "hint": "bath _", "clues": ["house", "robe", "room", "tub"]}, {"answer": "battle", "hint": "battle _", "clues": ["field", "front", "ground", "ship"]}, {"answer": "beach", "hint": "beach _", "clues": ["comber", "front", "head", "wear"]}, {"answer": "bed", "hint": "bed _", "clues": ["bug", "chamber", "clothes", "fellow", "pan", "post", "rock", "roll", "room", "side", "sit", "sitter", "sore", "spread", "stead", "time"]}, {"answer": "bee", "hint": "bee _", "clues": ["bread", "hive", "keeper", "keeping", "line"]}, {"answer": "beef", "hint": "beef _", "clues": ["burger", "cake", "eater", "steak"]}, {"answer": "bird", "hint": "bird _", "clues": ["bath", "brain", "cage", "house", "lime", "seed", "song"]}, {"answer": "birth", "hint": "birth _", "clues": ["day", "mark", "place", "rate", "right"]}, {"answer": "black", "hint": "black _", "clues": ["ball", "berry", "bird", "board", "guard", "head", "jack", "leg", "list", "mail", "mailer", "out", "smith", "snake", "thorn", "top", "topping"]}, {"answer": "blood", "hint": "blood _", "clues": ["bath", "hound", "letting", "line", "mobile", "shed", "stain", "stock", "stone", "stream", "sucker", "worm"]}, {"answer": "blow", "hint": "blow _", "clues": ["fly", "gun", "hard", "hole", "lamp", "out", "pipe", "torch"]}, {"answer": "blue", "hint": "blue _", "clues": ["bell", "berry", "bird", "bonnet", "bottle", "fish", "gill", "grass", "jacket", "nose", "point", "print", "stocking"]}, {"answer": "boat", "hint": "boat _", "clues": ["house", "load", "swain", "yard"]}, {"answer": "bob", "hint": "bob _", "clues": ["cat", "sled", "sledding", "sleigh", "tail", "white"]}, {"answer": "body", "hint": "body _", "clues": ["builder", "building", "guard", "work"]}, {"answer": "book", "hint": "book _", "clues": ["binder", "binding", "case", "end", "keeper", "keeping", "maker", "mark", "mobile", "plate", "seller", "shelf", "shop", "stall", "store", "worm"]}, {"answer": "boot", "hint": "boot _", "clues": ["black", "lace", "leg", "legging", "strap"]}, {"answer": "bow", "hint": "bow _", "clues": ["leg", "line", "sprit", "string"]}, {"answer": "brain", "hint": "brain _", "clues": ["child", "power", "storm", "washing", "wave"]}, {"answer": "bread", "hint": "bread _", "clues": ["basket", "board", "box", "crumb", "fruit", "line", "winner"]}, {"answer": "break", "hint": "break _", "clues": ["away", "down", "fast", "out", "through", "water"]}, {"answer": "breast", "hint": "breast _", "clues": ["bone", "plate", "stroke", "work"]}, {"answer": "brick", "hint": "brick _", "clues": ["bat", "layer", "laying", "work", "yard"]}, {"answer": "broad", "hint": "broad _", "clues": ["cast", "caster", "cloth", "loom", "sheet", "side", "sword"]}, {"answer": "buck", "hint": "buck _", "clues": ["board", "eye", "saw", "shot", "skin", "tooth", "wheat"]}, {"answer": "bull", "hint": "bull _", "clues": ["dog", "dozer", "fight", "fighter", "finch", "frog", "head", "horn", "pen", "ring"]}, {"answer": "butter", "hint": "butter _", "clues": ["ball", "cup", "fat", "fingers", "fly", "milk", "nut", "scotch"]}, {"answer": "candle", "hint": "candle _", "clues": ["light", "power", "stick", "wick"]}, {"answer": "car", "hint": "car _", "clues": ["fare", "hop", "jacking", "load", "port"]}, {"answer": "card", "hint": "card _", "clues": ["board", "holder", "sharp", "sharper"]}, {"answer": "cat", "hint": "cat _", "clues": ["bird", "boat", "call", "fish", "gut", "nap", "nip", "tail", "walk"]}, {"answer": "check", "hint": "check _", "clues": ["book", "list", "mate", "out", "point", "room"]}, {"answer": "cheese", "hint": "cheese _", "clues": ["board", "burger", "cake", "cloth"]}, {"answer": "cock", "hint": "cock _", "clues": ["crow", "fight", "pit", "roach", "tail"]}, {"answer": "cook", "hint": "cook _", "clues": ["book", "house", "out", "ware"]}, {"answer": "copy", "hint": "copy _", "clues": ["book", "cat", "right", "writer"]}, {"answer": "corn", "hint": "corn _", "clues": ["bread", "cob", "crake", "field", "flour", "flower", "meal", "stalk", "starch"]}, {"answer": "cotton", "hint": "cotton _", "clues": ["mouth", "seed", "tail", "wood"]}, {"answer": "cow", "hint": "cow _", "clues": ["bell", "bird", "boy", "catcher", "girl", "hand", "herd", "hide", "lick", "poke", "pox", "puncher", "shed", "slip"]}, {"answer": "cross", "hint": "cross _", "clues": ["bar", "beam", "bones", "bow", "breed", "check", "cut", "fire", "hatch", "over", "patch", "road", "talk", "walk", "wind", "word"]}, {"answer": "cut", "hint": "cut _", "clues": ["away", "back", "off", "out", "throat", "worm"]}, {"answer": "day", "hint": "day _", "clues": ["bed", "break", "care", "dream", "dreamer", "light", "time"]}, {"answer": "dead", "hint": "dead _", "clues": ["beat", "bolt", "head", "line", "lock", "wood"]}, {"answer": "death", "hint": "death _", "clues": ["bed", "blow", "trap", "watch"]}, {"answer": "dish", "hint": "dish _", "clues": ["cloth", "pan", "rag", "towel", "ware", "washer", "water"]}, {"answer": "dog", "hint": "dog _", "clues": ["cart", "fight", "fish", "house", "leg", "sled", "trot", "wood"]}, {"answer": "door", "hint": "door _", "clues": ["bell", "jamb", "keeper", "knob", "knocker", "mat", "nail", "plate", "post", "step", "stop", "way", "yard"]}, {"answer": "down", "hint": "down _", "clues": ["beat", "cast", "draft", "fall", "grade", "hill", "pour", "shift", "side", "sizing", "stage", "swing", "time", "town", "turn"]}, {"answer": "ear", "hint": "ear _", "clues": ["ache", "drum", "lobe", "mark", "muff", "phone", "piece", "plug", "ring", "shot", "wax", "wig"]}, {"answer": "egg", "hint": "egg _", "clues": ["beater", "cup", "head", "nog", "plant", "shell"]}, {"answer": "eye", "hint": "eye _", "clues": ["ball", "brow", "glass", "lash", "lid", "liner", "piece", "shadow", "sight", "sore", "strain", "tooth", "wash", "witness"]}, {"answer": "farm", "hint": "farm _", "clues": ["hand", "house", "land", "stead", "yard"]}, {"answer": "feed", "hint": "feed _", "clues": ["back", "bag", "lot", "stock"]}, {"answer": "finger", "hint": "finger _", "clues": ["board", "mark", "nail", "print", "tip"]}, {"answer": "fire", "hint": "fire _", "clues": ["arm", "ball", "bomb", "box", "brand", "break", "brick", "bug", "cracker", "damp", "fighter", "fly", "guard", "house", "light", "place", "plug", "power", "side", "storm", "trap", "wall", "water", "wood", "work"]}, {"answer": "fish", "hint": "fish _", "clues": ["bowl", "hook", "monger", "net", "pond", "wife"]}, {"answer": "flag", "hint": "flag _", "clues": ["pole", "ship", "staff", "stone"]}, {"answer": "flash", "hint": "flash _", "clues": ["back", "bulb", "card", "gun", "light"]}, {"answer": "flat", "hint": "flat _", "clues": ["bed", "boat", "car", "fish", "foot", "iron", "mate", "top", "ware", "worm"]}, {"answer": "fly", "hint": "fly _", "clues": ["catcher", "leaf", "over", "paper", "past", "speck", "swatter", "way", "weight", "wheel"]}, {"answer": "foot", "hint": "foot _", "clues": ["ball", "bridge", "fall", "hill", "hold", "lights", "locker", "note", "path", "plate", "print", "race", "rest", "step", "stool", "wear", "work"]}, {"answer": "fore", "hint": "fore _", "clues": ["ground", "head", "mast", "name", "runner"]}, {"answer": "four", "hint": "four _", "clues": ["pence", "score", "some", "square"]}, {"answer": "fox", "hint": "fox _", "clues": ["glove", "hole", "hound", "hunt", "trot"]}, {"answer": "free", "hint": "free _", "clues": ["hold", "holder", "lance", "loader", "masonry", "stone", "style", "thinker", "thinking", "ware", "way", "wheel"]}, {"answer": "gate", "hint": "gate _", "clues": ["crasher", "house", "keeper", "post", "way"]}, {"answer": "goal", "hint": "goal _", "clues": ["keeper", "mouth", "post", "tender"]}, {"answer": "god", "hint": "god _", "clues": ["child", "daughter", "father", "mother", "parent", "send", "son"]}, {"answer": "gold", "hint": "gold _", "clues": ["brick", "field", "finch", "fish", "mine", "smith"]}, {"answer": "grand", "hint": "grand _", "clues": ["aunt", "child", "dad", "daddy", "daughter", "father", "master", "mother", "nephew", "niece", "parent", "son", "stand", "uncle"]}, {"answer": "green", "hint": "green _", "clues": ["back", "belt", "fly", "gage", "grocer", "horn", "house", "mail", "room", "sward", "wood"]}, {"answer": "ground", "hint": "ground _", "clues": ["breaking", "hog", "nut", "sheet", "work"]}, {"answer": "gun", "hint": "gun _", "clues": ["boat", "fight", "fire", "metal", "point", "powder", "runner", "running", "shot", "slinger", "smith", "wale"]}, {"answer": "hair", "hint": "hair _", "clues": ["ball", "brush", "care", "cloth", "cut", "dresser", "dressing", "grip", "line", "net", "piece", "pin", "splitter", "splitting", "spring", "style", "stylist"]}, {"answer": "half", "hint": "half _", "clues": ["back", "penny", "time", "tone"]}, {"answer": "hand", "hint": "hand _", "clues": ["bag", "ball", "barrow", "basin", "bill", "book", "car", "clasp", "craft", "cuff", "gun", "hold", "kerchief", "maid", "maiden", "out", "over", "rail", "saw", "set", "shake", "shaking", "spring", "stand", "work", "writing"]}, {"answer": "hard", "hint": "hard _", "clues": ["back", "ball", "board", "cover", "liner", "tack", "top", "ware", "wood"]}, {"answer": "hay", "hint": "hay _", "clues": ["cock", "field", "loft", "making", "mow", "rick", "seed", "stack", "wire"]}, {"answer": "head", "hint": "head _", "clues": ["ache", "band", "board", "cheese", "count", "dress", "gear", "hunter", "lamp", "land", "light", "line", "lock", "master", "mastership", "mistress", "phone", "piece", "pin", "quarters", "rest", "room", "scarf", "set", "stall", "stand", "stock", "stone", "waiter", "way", "wind", "word"]}, {"answer": "heart", "hint": "heart _", "clues": ["ache", "beat", "break", "burn", "land", "sickness", "strings", "throb", "wood"]}, {"answer": "high", "hint": "high _", "clues": ["ball", "boy", "brow", "chair", "land", "light", "lighter", "road", "way"]}, {"answer": "home", "hint": "home _", "clues": ["body", "coming", "land", "maker", "making", "owner", "page", "room", "sickness", "spun", "stead", "stretch", "town", "work"]}, {"answer": "honey", "hint": "honey _", "clues": ["bee", "comb", "dew", "moon", "pot", "suckle"]}, {"answer": "horse", "hint": "horse _", "clues": ["back", "box", "flesh", "fly", "hair", "hide", "laugh", "play", "power", "radish", "shoe", "tail", "whip", "whipping"]}, {"answer": "hot", "hint": "hot _", "clues": ["bed", "box", "cake", "dog", "foot", "head", "house", "plate", "pot", "shot"]}, {"answer": "house", "hint": "house _", "clues": ["boat", "breaker", "breaking", "cleaning", "coat", "fly", "hold", "holder", "husband", "keeper", "keeping", "lights", "maid", "master", "mate", "mother", "plant", "room", "top", "warming", "wife", "work"]}, {"answer": "ice", "hint": "ice _", "clues": ["berg", "boat", "box", "breaker", "cap", "pick"]}, {"answer": "iron", "hint": "iron _", "clues": ["clad", "monger", "ware", "wood", "work"]}, {"answer": "jack", "hint": "jack _", "clues": ["ass", "boot", "hammer", "knife", "pot", "rabbit", "straw"]}, {"answer": "key", "hint": "key _", "clues": ["board", "hole", "note", "pad", "stone", "stroke"]}, {"answer": "knock", "hint": "knock _", "clues": ["about", "down", "off", "out"]}, {"answer": "lady", "hint": "lady _", "clues": ["bird", "bug", "finger", "love"]}, {"answer": "lamp", "hint": "lamp _", "clues": ["black", "light", "lighter", "post", "shade"]}, {"answer": "land", "hint": "land _", "clues": ["fall", "fill", "holder", "holding", "lady", "lord", "lubber", "mark", "mass", "owner", "scape", "slide", "slip"]}, {"answer": "lap", "hint": "lap _", "clues": ["board", "dog", "top", "wing"]}, {"answer": "law", "hint": "law _", "clues": ["breaker", "giver", "maker", "making", "suit"]}, {"answer": "lay", "hint": "lay _", "clues": ["about", "off", "out", "over", "person"]}, {"answer": "life", "hint": "life _", "clues": ["blood", "boat", "guard", "line", "saver", "saving", "span", "style", "time", "work"]}, {"answer": "lock", "hint": "lock _", "clues": ["jaw", "out", "smith", "step"]}, {"answer": "long", "hint": "long _", "clues": ["boat", "bow", "hand", "horn", "ways"]}, {"answer": "low", "hint": "low _", "clues": ["boy", "brow", "land", "life"]}, {"answer": "main", "hint": "main _", "clues": ["frame", "land", "mast", "sail", "spring", "stay", "stream"]}, {"answer": "man", "hint": "man _", "clues": ["drill", "hole", "hunt", "kind", "power", "servant", "slaughter", "trap"]}, {"answer": "match", "hint": "match _", "clues": ["book", "box", "lock", "maker", "making", "stick", "wood"]}, {"answer": "mid", "hint": "mid _", "clues": ["air", "day", "field", "land", "night", "point", "rib", "section", "stream", "summer", "term", "way", "week", "wife", "winter"]}, {"answer": "milk", "hint": "milk _", "clues": ["maid", "shake", "sop", "weed"]}, {"answer": "mill", "hint": "mill _", "clues": ["pond", "race", "stone", "wright"]}, {"answer": "money", "hint": "money _", "clues": ["bag", "lender", "maker", "making"]}, {"answer": "moon", "hint": "moon _", "clues": ["beam", "light", "lighter", "shine", "stone", "walk"]}, {"answer": "motor", "hint": "motor _", "clues": ["bike", "boat", "car", "cycle", "cycling", "cyclist", "mouth", "way"]}, {"answer": "neck", "hint": "neck _", "clues": ["band", "lace", "line", "tie"]}, {"answer": "news", "hint": "news _", "clues": ["agent", "boy", "cast", "caster", "dealer", "flash", "letter", "paper", "print", "reader", "reel", "room", "stand"]}, {"answer": "night", "hint": "night _", "clues": ["cap", "clothes", "club", "dress", "fall", "gown", "hawk", "life", "mare", "shade", "shirt", "spot", "stick", "time", "wear"]}, {"answer": "nose", "hint": "nose _", "clues": ["bag", "bleed", "dive", "gay"]}, {"answer": "nut", "hint": "nut _", "clues": ["case", "cracker", "hatch", "house", "shell"]}, {"answer": "off", "hint": "off _", "clues": ["print", "set", "side", "spring", "stage"]}, {"answer": "oil", "hint": "oil _", "clues": ["can", "cloth", "field", "seed", "skin"]}, {"answer": "out", "hint": "out _", "clues": ["back", "field", "fitter", "skirts", "station"]}, {"answer": "over", "hint": "over _", "clues": ["abundance", "achiever", "acting", "age", "all", "bid", "bite", "burden", "cast", "charge", "coat", "confidence", "draft", "drive", "eating", "emphasis", "estimate", "estimation", "exertion", "exposure", "feeding", "flight", "flow", "growth", "hang", "haul", "head", "indulgence", "kill", "lap", "lapping", "lay", "load", "look", "lord", "much", "pass", "payment", "population", "pressure", "print", "production", "rating", "reaction", "ride", "run", "seer", "shoe", "shoot", "sight", "spill", "statement", "supply", "taking", "throw", "time", "tone", "turn", "use", "valuation", "view", "weight", "work"]}, {"answer": "paper", "hint": "paper _", "clues": ["back", "board", "boy", "clip", "hanger", "hanging", "weight", "work"]}, {"answer": "para", "hint": "para _", "clues": ["gliding", "medic", "trooper", "troops"]}, {"answer": "pay", "hint": "pay _", "clues": ["back", "check", "day", "load", "master", "off", "roll", "slip"]}, {"answer": "pea", "hint": "pea _", "clues": ["cock", "fowl", "hen", "nut"]}, {"answer": "peace", "hint": "peace _", "clues": ["keeper", "keeping", "maker", "time"]}, {"answer": "pig", "hint": "pig _", "clues": ["pen", "skin", "sty", "swill", "tail"]}, {"answer": "pin", "hint": "pin _", "clues": ["ball", "cushion", "head", "hole", "point", "prick", "stripe", "wheel"]}, {"answer": "play", "hint": "play _", "clues": ["acting", "back", "bill", "book", "boy", "fellow", "goer", "ground", "house", "mate", "off", "pen", "room", "school", "thing", "time", "wright"]}, {"answer": "post", "hint": "post _", "clues": ["bag", "box", "card", "code", "mark", "master", "mistress"]}, {"answer": "pot", "hint": "pot _", "clues": ["ash", "belly", "boiler", "head", "herb", "holder", "hole", "hook", "luck", "pie", "sherd", "shot"]}, {"answer": "push", "hint": "push _", "clues": ["cart", "chair", "over", "pin"]}, {"answer": "quarter", "hint": "quarter _", "clues": ["back", "deck", "final", "master", "staff"]}, {"answer": "quick", "hint": "quick _", "clues": ["lime", "sand", "silver", "step"]}, {"answer": "race", "hint": "race _", "clues": ["course", "horse", "track", "way"]}, {"answer": "rag", "hint": "rag _", "clues": ["bag", "tag", "time", "weed", "wort"]}, {"answer": "rain", "hint": "rain _", "clues": ["bow", "coat", "drop", "fall", "maker", "making", "storm", "water"]}, {"answer": "red", "hint": "red _", "clues": ["bird", "breast", "cap", "coat", "head", "neck", "shift", "wood"]}, {"answer": "ring", "hint": "ring _", "clues": ["leader", "master", "side", "worm"]}, {"answer": "road", "hint": "road _", "clues": ["bed", "block", "house", "kill", "runner", "side", "way"]}, {"answer": "round", "hint": "round _", "clues": ["about", "house", "table", "worm"]}, {"answer": "run", "hint": "run _", "clues": ["about", "away", "down", "off"]}, {"answer": "sail", "hint": "sail _", "clues": ["boat", "cloth", "fish", "plane"]}, {"answer": "sales", "hint": "sales _", "clues": ["clerk", "girl", "lady", "person", "room"]}, {"answer": "salt", "hint": "salt _", "clues": ["box", "cellar", "peter", "shaker", "water"]}, {"answer": "sand", "hint": "sand _", "clues": ["bag", "bank", "bar", "blast", "blaster", "box", "lot", "paper", "piper", "pit", "stone", "storm"]}, {"answer": "saw", "hint": "saw _", "clues": ["bones", "buck", "dust", "fly", "horse", "mill", "tooth"]}, {"answer": "school", "hint": "school _", "clues": ["bag", "book", "boy", "child", "days", "fellow", "friend", "girl", "house", "master", "mate", "mistress", "room", "teacher", "work", "yard"]}, {"answer": "sea", "hint": "sea _", "clues": ["bed", "bird", "board", "coast", "faring", "food", "front", "gull", "horse", "plane", "port", "scape", "shell", "shore", "sickness", "side", "wall", "water", "way", "weed", "worthiness"]}, {"answer": "share", "hint": "share _", "clues": ["cropper", "holder", "holding", "ware"]}, {"answer": "sheep", "hint": "sheep _", "clues": ["dog", "fold", "herder", "skin"]}, {"answer": "ship", "hint": "ship _", "clues": ["builder", "building", "load", "mate", "owner", "wreck", "wright", "yard"]}, {"answer": "shirt", "hint": "shirt _", "clues": ["front", "sleeve", "tail", "waist"]}, {"answer": "shoe", "hint": "shoe _", "clues": ["box", "horn", "lace", "maker", "shine", "string", "tree"]}, {"answer": "shop", "hint": "shop _", "clues": ["front", "keeper", "lifter", "lifting"]}, {"answer": "short", "hint": "short _", "clues": ["bread", "cake", "coming", "cut", "fall", "hand", "horn", "list", "stop"]}, {"answer": "show", "hint": "show _", "clues": ["boat", "case", "down", "girl", "jumping", "piece", "place", "room", "stopper", "time"]}, {"answer": "side", "hint": "side _", "clues": ["bar", "board", "car", "kick", "light", "line", "saddle", "show", "step", "stroke", "swipe", "track", "walk", "wall", "winder"]}, {"answer": "sky", "hint": "sky _", "clues": ["cap", "diver", "diving", "lark", "light", "line", "rocket", "scraper", "writing"]}, {"answer": "sleep", "hint": "sleep _", "clues": ["over", "walker", "walking", "wear"]}, {"answer": "slip", "hint": "slip _", "clues": ["cover", "knot", "stream", "way"]}, {"answer": "snow", "hint": "snow _", "clues": ["ball", "bank", "bird", "board", "boarder", "drift", "drop", "fall", "field", "flake", "mobile", "plough", "plow", "shoe", "storm", "suit"]}, {"answer": "soft", "hint": "soft _", "clues": ["back", "ball", "ware", "wood"]}, {"answer": "south", "hint": "south _", "clues": ["east", "easter", "paw", "west", "wester"]}, {"answer": "space", "hint": "space _", "clues": ["craft", "flight", "ship", "suit"]}, {"answer": "sports", "hint": "sports _", "clues": ["cast", "caster", "wear", "writer"]}, {"answer": "stand", "hint": "stand _", "clues": ["off", "pipe", "point", "still"]}, {"answer": "star", "hint": "star _", "clues": ["board", "dust", "fish", "gazer", "gazing", "light"]}, {"answer": "steam", "hint": "steam _", "clues": ["boat", "fitter", "roller", "ship"]}, {"answer": "steel", "hint": "steel _", "clues": ["maker", "worker", "works", "yard"]}, {"answer": "stock", "hint": "stock _", "clues": ["broker", "holder", "pile", "piling", "pot", "room", "taking", "yard"]}, {"answer": "stone", "hint": "stone _", "clues": ["mason", "walling", "ware", "work"]}, {"answer": "stop", "hint": "stop _", "clues": ["cock", "gap", "light", "over", "watch"]}, {"answer": "store", "hint": "store _", "clues": ["front", "house", "keeper", "room"]}, {"answer": "sun", "hint": "sun _", "clues": ["bather", "beam", "block", "bonnet", "burn", "burst", "dial", "down", "dress", "fish", "flower", "glasses", "hat", "lamp", "light", "rise", "roof", "screen", "set", "shade", "shine", "spot", "stroke", "tan", "trap"]}, {"answer": "sweat", "hint": "sweat _", "clues": ["band", "pants", "shirt", "shop", "suit"]}, {"answer": "sweet", "hint": "sweet _", "clues": ["bread", "brier", "heart", "meat"]}, {"answer": "table", "hint": "table _", "clues": ["cloth", "land", "spoon", "spoonful", "top", "ware"]}, {"answer": "tail", "hint": "tail _", "clues": ["back", "board", "coat", "gate", "light", "piece", "pipe", "plane", "spin", "wind"]}, {"answer": "take", "hint": "take _", "clues": ["away", "off", "out", "over"]}, {"answer": "tea", "hint": "tea _", "clues": ["cake", "cup", "cupful", "kettle", "pot", "room", "shop", "spoon", "spoonful", "time"]}, {"answer": "tear", "hint": "tear _", "clues": ["away", "drop", "gas", "jerker"]}, {"answer": "thumb", "hint": "thumb _", "clues": ["nail", "print", "screw", "tack"]}, {"answer": "thunder", "hint": "thunder _", "clues": ["bolt", "clap", "cloud", "head", "shower", "storm"]}, {"answer": "tide", "hint": "tide _", "clues": ["land", "mark", "water", "way"]}, {"answer": "time", "hint": "time _", "clues": ["keeper", "keeping", "piece", "server", "table"]}, {"answer": "tin", "hint": "tin _", "clues": ["foil", "plate", "smith", "ware"]}, {"answer": "tooth", "hint": "tooth _", "clues": ["ache", "brush", "paste", "pick"]}, {"answer": "top", "hint": "top _", "clues": ["coat", "knot", "mast", "sail", "side", "soil", "spin"]}, {"answer": "touch", "hint": "touch _", "clues": ["down", "line", "screen", "stone"]}, {"answer": "tow", "hint": "tow _", "clues": ["boat", "head", "line", "path", "rope"]}, {"answer": "turn", "hint": "turn _", "clues": ["about", "around", "buckle", "coat", "key", "off", "out", "over", "pike", "stile", "table"]}, {"answer": "type", "hint": "type _", "clues": ["face", "script", "setter", "writer", "writing"]}, {"answer": "under", "hint": "under _", "clues": ["achiever", "belly", "brush", "carriage", "charge", "class", "clothes", "clothing", "coat", "current", "cut", "dog", "estimate", "estimation", "exposure", "frame", "fur", "garment", "grad", "graduate", "ground", "growth", "lay", "line", "ling", "lip", "pants", "part", "pass", "payment", "production", "rating", "score", "secretary", "shirt", "side", "skirt", "standing", "statement", "study", "taker", "taking", "tone", "tow", "valuation", "wear", "world", "writer"]}, {"answer": "video", "hint": "video _", "clues": ["cassette", "disc", "disk", "tape"]}, {"answer": "walk", "hint": "walk _", "clues": ["about", "away", "out", "over"]}, {"answer": "wall", "hint": "wall _", "clues": ["board", "eye", "flower", "paper"]}, {"answer": "war", "hint": "war _", "clues": ["fare", "head", "horse", "lord", "monger", "path", "plane", "ship", "time"]}, {"answer": "wash", "hint": "wash _", "clues": ["basin", "board", "bowl", "cloth", "day", "out", "rag", "room", "stand", "tub"]}, {"answer": "watch", "hint": "watch _", "clues": ["band", "dog", "maker", "strap", "tower", "word"]}, {"answer": "water", "hint": "water _", "clues": ["bird", "color", "course", "craft", "cress", "fall", "fowl", "front", "line", "mark", "melon", "proof", "shed", "side", "spout", "way", "wheel", "works"]}, {"answer": "wave", "hint": "wave _", "clues": ["band", "form", "front", "guide", "length"]}, {"answer": "weather", "hint": "weather _", "clues": ["board", "cock", "strip", "stripping"]}, {"answer": "wheel", "hint": "wheel _", "clues": ["barrow", "base", "chair", "house", "wright"]}, {"answer": "white", "hint": "white _", "clues": ["bait", "cap", "fish", "head", "out", "tail", "wash", "water"]}, {"answer": "wild", "hint": "wild _", "clues": ["cat", "fire", "flower", "fowl", "life"]}, {"answer": "wind", "hint": "wind _", "clues": ["bag", "break", "breaker", "burn", "cheater", "fall", "flower", "jammer", "mill", "pipe", "screen", "shield", "sock", "storm"]}, {"answer": "wood", "hint": "wood _", "clues": ["carver", "carving", "chuck", "cock", "craft", "cut", "cutter", "land", "louse", "pecker", "pile", "shed", "wind", "work", "worker", "worm"]}, {"answer": "work", "hint": "work _", "clues": ["basket", "bench", "book", "day", "force", "horse", "house", "load", "mate", "out", "piece", "place", "room", "sheet", "shop", "space", "station", "table", "week"]}], "portion": 0.8}, {"name": "verbs", "groups": [{"answer": "abandoned", "hint": "synonyms for abandoned", "clues": ["abandon", "vacate", "empty", "desert", "desolate", "give up", "forsake"]}, {"answer": "abbreviated", "hint": "synonyms for abbreviated", "clues": ["contract", "abbreviate", "shorten", "foreshorten", "cut", "reduce", "abridge"]}, {"answer": "abducting", "hint": "synonyms for abducting", "clues": ["kidnap", "snatch", "nobble", "abduct"]}, {"answer": "abiding", "hint": "synonyms for abiding", "clues": ["support", "bide", "stomach", "put up", "stay", "bear", "tolerate", "brook", "digest", "stand", "endure", "stick out", "suffer", "abiding"]}, {"answer": "abridged", "hint": "synonyms for abridged", "clues": ["contract", "abbreviate", "shorten", "foreshorten", "cut", "reduce", "abridge"]}, {"answer": "absolved", "hint": "synonyms for absolved", "clues": ["justify", "absolve", "shrive", "free"]}, {"answer": "absorbed", "hint": "synonyms for absorbed", "clues": ["take up", "engulf", "immerse", "steep", "engross", "draw", "take in", "assimilate", "plunge", "soak up", "sop up", "suck", "imbibe", "absorb", "take over", "suck up", "ingest", "engage", "occupy"]}, {"answer": "absorbing", "hint": "synonyms for absorbing", "clues": ["take up", "engulf", "immerse", "steep", "engross", "draw", "take in", "assimilate", "plunge", "soak up", "sop up", "suck", "imbibe", "absorb", "take over", "suck up", "ingest", "engage", "occupy"]}, {"answer": "abstract", "hint": "synonyms for abstract", "clues": ["lift", "pilfer", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage", "abstract"]}, {"answer": "abstracted", "hint": "synonyms for abstracted", "clues": ["lift", "abstract", "pilfer", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage"]}, {"answer": "abused", "hint": "synonyms for abused", "clues": ["step", "misuse", "pervert", "maltreat", "blackguard", "abuse", "clapperclaw", "ill-use", "ill-treat", "mistreat", "shout"]}, {"answer": "accelerated", "hint": "synonyms for accelerated", "clues": ["accelerate", "quicken", "speed up", "speed"]}, {"answer": "accented", "hint": "synonyms for accented", "clues": ["accent", "stress", "accentuate", "emphasise", "punctuate"]}, {"answer": "accepted", "hint": "synonyms for accepted", "clues": ["swallow", "take", "take over", "go for", "admit", "assume", "live with", "accept", "bear", "take on", "have", "consent"]}, {"answer": "accepting", "hint": "synonyms for accepting", "clues": ["swallow", "take", "take over", "go for", "admit", "assume", "live with", "accept", "bear", "take on", "have", "consent"]}, {"answer": "accommodating", "hint": "synonyms for accommodating", "clues": ["oblige", "reconcile", "fit", "admit", "conciliate", "lodge", "adapt", "suit", "hold", "accommodate", "accommodating"]}, {"answer": "accompanied", "hint": "synonyms for accompanied", "clues": ["attach to", "follow", "companion", "company", "play along", "come with", "go with", "keep company", "accompanied"]}, {"answer": "accompanying", "hint": "synonyms for accompanying", "clues": ["attach to", "follow", "companion", "company", "play along", "come with", "go with", "keep company", "accompanying"]}, {"answer": "accomplished", "hint": "synonyms for accomplished", "clues": ["fulfill", "carry out", "action", "carry through", "execute", "accomplish", "achieve", "reach", "attain"]}, {"answer": "according", "hint": "synonyms for according", "clues": ["consort", "harmonize", "allot", "agree", "concord", "accord", "fit in", "grant"]}, {"answer": "accumulated", "hint": "synonyms for accumulated", "clues": ["roll up", "accumulate", "amass", "collect", "hoard", "conglomerate", "gather", "compile", "pile up"]}, {"answer": "accursed", "hint": "synonyms for accursed", "clues": ["anathematize", "anathemise", "accurse", "execrate", "comminate"]}, {"answer": "accusing", "hint": "synonyms for accusing", "clues": ["accuse", "criminate", "charge", "impeach", "accusing"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["pass with flying colors", "sail through", "breeze through", "nail", "sweep through", "ace"]}, {"answer": "aching", "hint": "synonyms for aching", "clues": ["languish", "hurt", "pine", "yearn", "ache", "smart", "yen", "suffer", "aching"]}, {"answer": "acknowledged", "hint": "synonyms for acknowledged", "clues": ["notice", "recognize", "know", "admit", "acknowledge", "receipt"]}, {"answer": "acquainted", "hint": "synonyms for acquainted", "clues": ["familiarise", "introduce", "present", "acquaint"]}, {"answer": "acquired", "hint": "synonyms for acquired", "clues": ["win", "grow", "take", "acquire", "adopt", "learn", "evolve", "gain", "take on", "produce", "develop", "get", "assume"]}, {"answer": "acquitted", "hint": "synonyms for acquitted", "clues": ["exonerate", "assoil", "exculpate", "carry", "behave", "conduct", "bear", "acquit", "comport", "deport", "discharge", "clear", "acquitted"]}, {"answer": "acting", "hint": "synonyms for acting", "clues": ["do", "pretend", "represent", "act as", "work", "move", "play", "act", "roleplay", "behave", "dissemble", "playact"]}, {"answer": "activated", "hint": "synonyms for activated", "clues": ["trigger off", "trigger", "aerate", "set off", "spark", "touch off", "activate", "actuate", "trip", "spark off"]}, {"answer": "activating", "hint": "synonyms for activating", "clues": ["trigger off", "trigger", "aerate", "set off", "spark", "touch off", "activate", "actuate", "trip", "spark off", "activating"]}, {"answer": "actuated", "hint": "synonyms for actuated", "clues": ["trigger off", "motivate", "trigger", "move", "set off", "incite", "spark", "touch off", "activate", "actuate", "propel", "trip", "spark off", "prompt"]}, {"answer": "actuating", "hint": "synonyms for actuating", "clues": ["trigger off", "motivate", "trigger", "move", "set off", "incite", "spark", "touch off", "activate", "actuate", "propel", "trip", "spark off", "prompt", "actuating"]}, {"answer": "adapted", "hint": "synonyms for adapted", "clues": ["adjust", "conform", "accommodate", "adapt", "adapted"]}, {"answer": "addressed", "hint": "synonyms for addressed", "clues": ["handle", "call", "direct", "treat", "deal", "plow", "address", "cover", "turn to", "come up to", "speak", "accost"]}, {"answer": "adjusted", "hint": "synonyms for adjusted", "clues": ["align", "conform", "set", "correct", "adapt", "line up", "adjust", "aline"]}, {"answer": "admonishing", "hint": "synonyms for admonishing", "clues": ["reprove", "discourage", "caution", "warn", "admonish"]}, {"answer": "adopted", "hint": "synonyms for adopted", "clues": ["take up", "take", "take over", "follow", "adopt", "acquire", "espouse", "dramatize", "sweep up", "take on", "embrace", "borrow", "assume", "adopted"]}, {"answer": "adorned", "hint": "synonyms for adorned", "clues": ["decorate", "embellish", "clothe", "invest", "ornament", "beautify", "adorn", "deck", "grace", "adorned"]}, {"answer": "adulterate", "hint": "synonyms for adulterate", "clues": ["debase", "stretch", "load", "dilute", "adulterate"]}, {"answer": "adulterated", "hint": "synonyms for adulterated", "clues": ["stretch", "adulterate", "load", "debase", "dilute"]}, {"answer": "adulterating", "hint": "synonyms for adulterating", "clues": ["stretch", "adulterate", "load", "debase", "dilute", "adulterating"]}, {"answer": "advance", "hint": "synonyms for advance", "clues": ["promote", "go on", "move on", "boost", "march on", "bring forward", "supercharge", "progress", "pull ahead", "encourage", "gain", "upgrade", "win", "pass on", "gain ground", "make headway", "shape up", "set ahead", "get on", "get along", "raise", "further", "kick upstairs", "elevate", "come along", "come on", "throw out", "advance"]}, {"answer": "advanced", "hint": "synonyms for advanced", "clues": ["promote", "go on", "move on", "advance", "march on", "bring forward", "throw out", "supercharge", "progress", "gain", "encourage", "pull ahead", "upgrade", "win", "pass on", "gain ground", "make headway", "shape up", "set ahead", "get on", "get along", "raise", "further", "kick upstairs", "elevate", "come along", "come on", "boost"]}, {"answer": "advancing", "hint": "synonyms for advancing", "clues": ["promote", "go on", "move on", "advance", "march on", "bring forward", "throw out", "supercharge", "progress", "gain", "encourage", "pull ahead", "upgrade", "win", "pass on", "gain ground", "make headway", "shape up", "set ahead", "get on", "get along", "raise", "further", "kick upstairs", "elevate", "come along", "come on", "boost", "advancing"]}, {"answer": "advertised", "hint": "synonyms for advertised", "clues": ["promote", "publicise", "push", "advertize", "advertised"]}, {"answer": "advised", "hint": "synonyms for advised", "clues": ["give notice", "propose", "suggest", "counsel", "advise", "apprise", "rede", "send word", "notify"]}, {"answer": "aerated", "hint": "synonyms for aerated", "clues": ["activate", "oxygenate", "oxygenise", "aerate", "air out", "air"]}, {"answer": "affected", "hint": "synonyms for affected", "clues": ["touch on", "regard", "bear upon", "pretend", "involve", "strike", "move", "feign", "impact", "affect", "touch", "dissemble", "impress", "sham"]}, {"answer": "affecting", "hint": "synonyms for affecting", "clues": ["touch on", "regard", "bear upon", "pretend", "involve", "strike", "move", "feign", "impact", "affect", "touch", "dissemble", "impress", "sham"]}, {"answer": "affiliated", "hint": "synonyms for affiliated", "clues": ["consort", "assort", "affiliate", "associate"]}, {"answer": "affixed", "hint": "synonyms for affixed", "clues": ["supplement", "stick on", "add on", "append", "affix", "affixed"]}, {"answer": "aged", "hint": "synonyms for aged", "clues": ["age", "maturate", "senesce", "get on"]}, {"answer": "ageing", "hint": "synonyms for ageing", "clues": ["age", "maturate", "senesce", "get on"]}, {"answer": "aggravated", "hint": "synonyms for aggravated", "clues": ["exasperate", "worsen", "exacerbate", "aggravate"]}, {"answer": "aggravating", "hint": "synonyms for aggravating", "clues": ["exasperate", "worsen", "exacerbate", "aggravate", "aggravating"]}, {"answer": "aging", "hint": "synonyms for aging", "clues": ["age", "maturate", "senesce", "get on", "aging"]}, {"answer": "agitated", "hint": "synonyms for agitated", "clues": ["commove", "campaign", "shake", "disturb", "excite", "foment", "vex", "charge up", "agitate", "charge", "shake up", "push", "rouse", "raise up", "fight", "crusade", "budge", "turn on", "press", "stir", "stir up", "shift"]}, {"answer": "agitating", "hint": "synonyms for agitating", "clues": ["commove", "campaign", "shake", "disturb", "excite", "foment", "vex", "charge up", "agitate", "charge", "shake up", "push", "rouse", "raise up", "fight", "crusade", "budge", "turn on", "press", "stir", "stir up", "shift", "agitating"]}, {"answer": "agreed", "hint": "synonyms for agreed", "clues": ["correspond", "consort", "harmonize", "fit", "jibe", "match", "tally", "agree", "hold", "concord", "accord", "gibe", "concur", "fit in", "check"]}, {"answer": "aired", "hint": "synonyms for aired", "clues": ["vent", "publicise", "aerate", "beam", "bare", "air out", "broadcast", "send", "ventilate", "transmit", "air", "aired"]}, {"answer": "alarmed", "hint": "synonyms for alarmed", "clues": ["alert", "dismay", "appall", "horrify", "alarm", "alarmed"]}, {"answer": "alarming", "hint": "synonyms for alarming", "clues": ["alert", "dismay", "appall", "horrify", "alarm"]}, {"answer": "alienated", "hint": "synonyms for alienated", "clues": ["disaffect", "alien", "estrange", "alienate"]}, {"answer": "alienating", "hint": "synonyms for alienating", "clues": ["disaffect", "alien", "estrange", "alienate", "alienating"]}, {"answer": "aligned", "hint": "synonyms for aligned", "clues": ["array", "align", "line up", "adjust", "aline", "ordinate", "aligned"]}, {"answer": "aligning", "hint": "synonyms for aligning", "clues": ["array", "align", "line up", "adjust", "aline", "ordinate"]}, {"answer": "alleviated", "hint": "synonyms for alleviated", "clues": ["palliate", "ease", "relieve", "assuage", "facilitate", "alleviate"]}, {"answer": "allotted", "hint": "synonyms for allotted", "clues": ["deal out", "deal", "assign", "shell out", "portion", "accord", "grant", "distribute", "lot", "mete out", "allot", "dole out", "dispense", "parcel out", "administer", "dish out", "allotted"]}, {"answer": "altered", "hint": "synonyms for altered", "clues": ["alter", "change", "vary", "spay", "castrate", "neuter", "falsify", "interpolate", "modify", "altered"]}, {"answer": "alternate", "hint": "synonyms for alternate", "clues": ["jump", "flip", "take turns", "understudy", "flip-flop", "switch", "tack", "interchange", "alternate"]}, {"answer": "alternating", "hint": "synonyms for alternating", "clues": ["jump", "flip", "flip-flop", "switch", "tack", "interchange", "take turns", "understudy", "alternate", "alternating"]}, {"answer": "amalgamate", "hint": "synonyms for amalgamate", "clues": ["mingle", "commix", "unify", "mix", "amalgamate"]}, {"answer": "amalgamated", "hint": "synonyms for amalgamated", "clues": ["commix", "unify", "mingle", "mix", "amalgamate"]}, {"answer": "amazed", "hint": "synonyms for amazed", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "astonish", "perplex", "beat", "baffle", "astound", "flummox", "get"]}, {"answer": "amazing", "hint": "synonyms for amazing", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "astonish", "perplex", "beat", "baffle", "astound", "flummox", "get", "amazing"]}, {"answer": "ameliorating", "hint": "synonyms for ameliorating", "clues": ["improve", "amend", "better", "ameliorate", "ameliorating"]}, {"answer": "amended", "hint": "synonyms for amended", "clues": ["improve", "rectify", "amend", "better", "remediate", "repair", "remedy", "ameliorate", "amended"]}, {"answer": "analyzed", "hint": "synonyms for analyzed", "clues": ["canvas", "dissect", "psychoanalyze", "analyse", "study", "take apart", "break down", "examine", "analyzed"]}, {"answer": "angled", "hint": "synonyms for angled", "clues": ["angle", "weight", "tilt", "fish", "lean", "tip", "slant"]}, {"answer": "animate", "hint": "synonyms for animate", "clues": ["recreate", "renovate", "liven", "exalt", "reanimate", "invigorate", "liven up", "quicken", "vivify", "enliven", "inspire", "repair", "revive", "animize"]}, {"answer": "animated", "hint": "synonyms for animated", "clues": ["recreate", "renovate", "liven", "exalt", "reanimate", "invigorate", "liven up", "quicken", "vivify", "enliven", "inspire", "repair", "revive", "animize", "animated"]}, {"answer": "animating", "hint": "synonyms for animating", "clues": ["recreate", "renovate", "liven", "exalt", "reanimate", "invigorate", "liven up", "quicken", "vivify", "enliven", "inspire", "repair", "revive", "animize", "animating"]}, {"answer": "annihilated", "hint": "synonyms for annihilated", "clues": ["annihilate", "extinguish", "eliminate", "wipe out", "carry off", "decimate", "eradicate"]}, {"answer": "annihilating", "hint": "synonyms for annihilating", "clues": ["annihilate", "extinguish", "eliminate", "wipe out", "carry off", "decimate", "eradicate", "annihilating"]}, {"answer": "announced", "hint": "synonyms for announced", "clues": ["foretell", "announce", "harbinger", "denote", "herald", "annunciate", "declare"]}, {"answer": "annoyed", "hint": "synonyms for annoyed", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "annoyed"]}, {"answer": "annoying", "hint": "synonyms for annoying", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle"]}, {"answer": "answering", "hint": "synonyms for answering", "clues": ["do", "resolve", "suffice", "reply", "serve", "respond", "answer"]}, {"answer": "anticipated", "hint": "synonyms for anticipated", "clues": ["foretell", "call", "promise", "forebode", "look to", "forestall", "prognosticate", "look for", "counter", "previse", "predict", "foresee", "expect", "anticipate", "foreknow"]}, {"answer": "appalled", "hint": "synonyms for appalled", "clues": ["offend", "dismay", "shock", "appall", "scandalize", "horrify", "alarm", "outrage"]}, {"answer": "appalling", "hint": "synonyms for appalling", "clues": ["offend", "dismay", "shock", "appall", "scandalize", "horrify", "alarm", "outrage"]}, {"answer": "appareled", "hint": "synonyms for appareled", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "appeasing", "hint": "synonyms for appeasing", "clues": ["quell", "lenify", "placate", "propitiate", "assuage", "conciliate", "mollify", "appease", "pacify", "stay", "gruntle", "gentle", "appeasing"]}, {"answer": "applied", "hint": "synonyms for applied", "clues": ["employ", "go for", "utilize", "lend oneself", "implement", "give", "hold", "enforce", "practice", "put on", "apply", "use", "applied"]}, {"answer": "appointed", "hint": "synonyms for appointed", "clues": ["name", "appoint", "nominate", "charge", "constitute"]}, {"answer": "apportioned", "hint": "synonyms for apportioned", "clues": ["apportion", "allocate", "portion out", "deal", "divvy up", "share"]}, {"answer": "appraising", "hint": "synonyms for appraising", "clues": ["value", "survey", "evaluate", "appraise", "assess", "measure", "appraising"]}, {"answer": "appreciated", "hint": "synonyms for appreciated", "clues": ["appreciate", "take account", "treasure", "value", "revalue", "apprize", "prize"]}, {"answer": "apprehended", "hint": "synonyms for apprehended", "clues": ["nab", "grok", "collar", "comprehend", "grasp", "get the picture", "pick up", "quail at", "arrest", "savvy", "compass", "apprehend", "cop", "nail", "dig"]}, {"answer": "approaching", "hint": "synonyms for approaching", "clues": ["draw near", "border on", "near", "go up", "come on", "come near", "set about", "go about", "draw close", "approach"]}, {"answer": "appropriate", "hint": "synonyms for appropriate", "clues": ["allow", "earmark", "set aside", "capture", "conquer", "reserve", "seize", "appropriate"]}, {"answer": "approved", "hint": "synonyms for approved", "clues": ["sanction", "okay", "approve", "O.K."]}, {"answer": "approving", "hint": "synonyms for approving", "clues": ["sanction", "okay", "approve", "O.K.", "approving"]}, {"answer": "approximate", "hint": "synonyms for approximate", "clues": ["come close", "judge", "guess", "estimate", "gauge", "approximate"]}, {"answer": "armed", "hint": "synonyms for armed", "clues": ["build up", "gird", "fortify", "arm", "armed"]}, {"answer": "aroused", "hint": "synonyms for aroused", "clues": ["put forward", "energize", "fire", "invoke", "excite", "kindle", "stimulate", "wind up", "awake", "perk up", "wake up", "come alive", "conjure", "conjure up", "bring up", "brace", "rouse", "provoke", "raise", "evoke", "turn on", "sex", "stir", "call down", "elicit", "waken", "call forth", "aroused"]}, {"answer": "arranged", "hint": "synonyms for arranged", "clues": ["do", "coif", "fix up", "coiffure", "set up", "set", "put", "format", "arrange", "order", "dress", "stage"]}, {"answer": "arrayed", "hint": "synonyms for arrayed", "clues": ["array", "align", "range", "set out", "lay out", "arrayed"]}, {"answer": "arresting", "hint": "synonyms for arresting", "clues": ["turn back", "halt", "get", "collar", "stop", "hold back", "hold", "catch", "pick up", "contain", "arrest", "cop", "nail", "apprehend", "nab", "check"]}, {"answer": "articulate", "hint": "synonyms for articulate", "clues": ["vocalise", "phrase", "formulate", "enunciate", "enounce", "sound out", "give voice", "joint", "say", "pronounce", "word", "articulate"]}, {"answer": "articulated", "hint": "synonyms for articulated", "clues": ["vocalise", "phrase", "formulate", "enunciate", "enounce", "sound out", "articulate", "give voice", "joint", "say", "pronounce", "word"]}, {"answer": "ascending", "hint": "synonyms for ascending", "clues": ["climb up", "uprise", "go up", "ascend", "come up", "rise", "move up"]}, {"answer": "ascertained", "hint": "synonyms for ascertained", "clues": ["insure", "control", "ensure", "see", "see to it", "learn", "assure", "check", "find", "determine", "find out", "ascertain", "watch"]}, {"answer": "asphyxiated", "hint": "synonyms for asphyxiated", "clues": ["stifle", "choke", "smother", "suffocate", "asphyxiate"]}, {"answer": "asphyxiating", "hint": "synonyms for asphyxiating", "clues": ["stifle", "choke", "smother", "suffocate", "asphyxiate", "asphyxiating"]}, {"answer": "aspiring", "hint": "synonyms for aspiring", "clues": ["shoot for", "draw a bead on", "aim", "aspire", "aspiring"]}, {"answer": "asserted", "hint": "synonyms for asserted", "clues": ["avow", "verify", "aver", "put forward", "swan", "maintain", "asseverate", "affirm", "insist", "swear", "assert"]}, {"answer": "asserting", "hint": "synonyms for asserting", "clues": ["avow", "verify", "aver", "put forward", "swan", "maintain", "asseverate", "affirm", "insist", "swear", "assert"]}, {"answer": "assigned", "hint": "synonyms for assigned", "clues": ["depute", "allot", "specify", "set apart", "arrogate", "delegate", "designate", "assign", "put", "portion", "impute", "attribute", "ascribe"]}, {"answer": "assimilating", "hint": "synonyms for assimilating", "clues": ["imbibe", "absorb", "ingest", "take in", "assimilate", "assimilating"]}, {"answer": "assisted", "hint": "synonyms for assisted", "clues": ["serve", "wait on", "help", "attend", "aid", "attend to", "assist"]}, {"answer": "associate", "hint": "synonyms for associate", "clues": ["consort", "link up", "connect", "consociate", "link", "colligate", "tie in", "affiliate", "assort", "relate", "associate"]}, {"answer": "assorted", "hint": "synonyms for assorted", "clues": ["sort", "sort out", "consort", "separate", "class", "associate", "classify", "assort", "affiliate"]}, {"answer": "assumed", "hint": "synonyms for assumed", "clues": ["take up", "wear", "strike", "adopt", "arrogate", "feign", "accept", "don", "sham", "take on", "usurp", "take", "take over", "take for granted", "acquire", "seize", "simulate", "presume", "bear", "get into", "put on", "assume"]}, {"answer": "assuming", "hint": "synonyms for assuming", "clues": ["take up", "wear", "strike", "adopt", "arrogate", "feign", "accept", "don", "sham", "take on", "usurp", "take", "take over", "take for granted", "acquire", "seize", "simulate", "presume", "bear", "get into", "put on", "assume", "assuming"]}, {"answer": "assured", "hint": "synonyms for assured", "clues": ["insure", "ascertain", "secure", "ensure", "control", "see", "see to it", "promise", "assure", "guarantee", "tell", "check"]}, {"answer": "assuring", "hint": "synonyms for assuring", "clues": ["insure", "ascertain", "secure", "ensure", "control", "see", "see to it", "promise", "assure", "guarantee", "tell", "check", "assuring"]}, {"answer": "attached", "hint": "synonyms for attached", "clues": ["tie", "attach", "seize", "bond", "bind", "confiscate", "sequester", "impound"]}, {"answer": "attacking", "hint": "synonyms for attacking", "clues": ["assail", "assault", "attack", "set on", "aggress", "round", "lash out", "snipe"]}, {"answer": "attained", "hint": "synonyms for attained", "clues": ["happen upon", "make", "strike", "chance upon", "come upon", "gain", "achieve", "accomplish", "discover", "attain", "light upon", "come across", "arrive at", "hit", "fall upon", "reach"]}, {"answer": "attempted", "hint": "synonyms for attempted", "clues": ["set about", "seek", "essay", "assay", "undertake", "attempt", "try"]}, {"answer": "attended", "hint": "synonyms for attended", "clues": ["look", "see", "serve", "wait on", "attend", "give ear", "attend to", "take care", "assist", "hang", "advert", "go to", "pay heed"]}, {"answer": "attested", "hint": "synonyms for attested", "clues": ["certify", "demonstrate", "take the stand", "testify", "evidence", "attest", "bear witness", "manifest"]}, {"answer": "attired", "hint": "synonyms for attired", "clues": ["trick out", "fancy up", "deck up", "attire", "fig up", "deck out", "tog out", "rig out", "tog up", "prink", "get up", "trick up", "overdress", "gussy up", "dress up"]}, {"answer": "authorised", "hint": "synonyms for authorised", "clues": ["pass", "empower", "authorise", "clear"]}, {"answer": "authorized", "hint": "synonyms for authorized", "clues": ["pass", "empower", "authorise", "clear", "authorized"]}, {"answer": "avowed", "hint": "synonyms for avowed", "clues": ["avow", "verify", "aver", "avouch", "swan", "affirm", "swear", "assert", "avowed"]}, {"answer": "awaited", "hint": "synonyms for awaited", "clues": ["look", "wait", "expect", "awaited"]}, {"answer": "awake", "hint": "synonyms for awake", "clues": ["come alive", "arouse", "wake up", "wake", "awaken"]}, {"answer": "awakened", "hint": "synonyms for awakened", "clues": ["come alive", "rouse", "awake", "wake up", "waken", "awakened"]}, {"answer": "back", "hint": "synonyms for back", "clues": ["support", "plump for", "indorse", "gage", "game", "stake", "bet on", "back up", "punt", "second", "plunk for", "back"]}, {"answer": "backed", "hint": "synonyms for backed", "clues": ["support", "plump for", "indorse", "gage", "game", "stake", "bet on", "back up", "punt", "back", "second", "plunk for", "backed"]}, {"answer": "baffled", "hint": "synonyms for baffled", "clues": ["pose", "nonplus", "scotch", "dumbfound", "cross", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "thwart", "mystify", "spoil", "queer", "perplex", "beat", "baffle", "frustrate", "bilk", "regulate", "foil", "flummox", "get"]}, {"answer": "baffling", "hint": "synonyms for baffling", "clues": ["pose", "nonplus", "scotch", "dumbfound", "cross", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "thwart", "mystify", "spoil", "queer", "perplex", "beat", "baffle", "frustrate", "bilk", "regulate", "foil", "flummox", "get", "baffling"]}, {"answer": "balanced", "hint": "synonyms for balanced", "clues": ["equilibrize", "balance", "poise", "equilibrate"]}, {"answer": "banging", "hint": "synonyms for banging", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "slam", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "spang", "have sex", "sleep together"]}, {"answer": "banned", "hint": "synonyms for banned", "clues": ["cast out", "shun", "censor", "ostracize", "banish", "blackball", "ban", "banned"]}, {"answer": "bantering", "hint": "synonyms for bantering", "clues": ["jolly", "josh", "kid", "banter", "chaff"]}, {"answer": "bare", "hint": "synonyms for bare", "clues": ["denude", "publicise", "strip", "air", "bare"]}, {"answer": "bared", "hint": "synonyms for bared", "clues": ["denude", "publicise", "strip", "bare", "debar", "block up", "exclude", "air", "blockade", "block off", "block", "stop", "relegate", "banish", "barricade"]}, {"answer": "barred", "hint": "synonyms for barred", "clues": ["blockade", "block off", "block", "debar", "bar", "block up", "stop", "relegate", "banish", "barricade", "exclude", "barred"]}, {"answer": "barricaded", "hint": "synonyms for barricaded", "clues": ["blockade", "block off", "block", "bar", "block up", "stop", "barricado", "barricaded"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["free-base", "found", "ground", "establish", "base"]}, {"answer": "based", "hint": "synonyms for based", "clues": ["base", "ground", "free-base", "found", "establish"]}, {"answer": "bated", "hint": "synonyms for bated", "clues": ["bat", "thrash", "lick", "flutter", "clobber", "drub", "cream", "bated"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["bat", "thrash", "lick", "flutter", "clobber", "drub", "cream"]}, {"answer": "battered", "hint": "synonyms for battered", "clues": ["dinge", "knock about", "clobber", "batter", "baste", "buffet"]}, {"answer": "beaming", "hint": "synonyms for beaming", "clues": ["radiate", "beam", "shine", "broadcast", "send", "glow", "transmit", "air"]}, {"answer": "bearing", "hint": "synonyms for bearing", "clues": ["wear", "deport", "deliver", "give birth", "carry", "put up", "abide", "accept", "hold", "acquit", "expect", "endure", "turn out", "yield", "pay", "birth", "support", "suffer", "take over", "stomach", "have a bun in the oven", "behave", "gestate", "conduct", "bear", "tolerate", "brook", "digest", "contain", "stand", "comport", "have", "stick out", "assume"]}, {"answer": "beat", "hint": "synonyms for beat", "clues": ["pose", "wash up", "drum", "dumbfound", "flummox", "bunk", "puzzle", "vex", "gravel", "stupefy", "beat out", "bewilder", "outfox", "ticktock", "thrum", "baffle", "tucker out", "circumvent", "overreach", "scramble", "vanquish", "nonplus", "pound", "flap", "thump", "beat up", "work over", "pulsate", "stick", "outwit", "amaze", "mystify", "crush", "tucker", "perplex", "exhaust", "outsmart", "quiver", "shell", "get", "trounce", "beat"]}, {"answer": "beaten", "hint": "synonyms for beaten", "clues": ["pose", "wash up", "drum", "dumbfound", "flummox", "bunk", "puzzle", "vex", "gravel", "stupefy", "beat out", "bewilder", "outfox", "ticktock", "thrum", "baffle", "tucker out", "circumvent", "overreach", "scramble", "vanquish", "nonplus", "pound", "flap", "thump", "beat up", "work over", "pulsate", "stick", "outwit", "amaze", "mystify", "crush", "tucker", "perplex", "beat", "exhaust", "outsmart", "quiver", "shell", "get", "trounce", "beaten"]}, {"answer": "beatified", "hint": "synonyms for beatified", "clues": ["thrill", "exhilarate", "tickle pink", "inebriate", "beatify", "exalt", "beatified"]}, {"answer": "becoming", "hint": "synonyms for becoming", "clues": ["suit", "go", "become", "turn", "get", "becoming"]}, {"answer": "bedded", "hint": "synonyms for bedded", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "kip down", "have a go at it", "make love", "roll in the hay", "retire", "have it away", "fuck", "make out", "lie with", "go to bed", "crawl in", "love", "be intimate", "hit the sack", "have it off", "have intercourse", "go to sleep", "screw", "know", "jazz", "sack out", "hump", "turn in", "eff", "do it", "bang", "hit the hay", "have sex", "sleep together", "bedded"]}, {"answer": "bedimmed", "hint": "synonyms for bedimmed", "clues": ["obscure", "bedim", "overcloud", "benight", "bedimmed"]}, {"answer": "befogged", "hint": "synonyms for befogged", "clues": ["obscure", "haze over", "mist", "becloud", "obnubilate", "fog", "befog", "cloud", "befogged"]}, {"answer": "befouled", "hint": "synonyms for befouled", "clues": ["befoul", "maculate", "foul", "defile"]}, {"answer": "befuddled", "hint": "synonyms for befuddled", "clues": ["throw", "confuse", "befuddle", "discombobulate", "bedevil", "confound", "fox"]}, {"answer": "beginning", "hint": "synonyms for beginning", "clues": ["set out", "begin", "start out", "start", "lead off", "commence", "get", "get down", "beginning"]}, {"answer": "begotten", "hint": "synonyms for begotten", "clues": ["engender", "mother", "sire", "father", "beget", "generate", "bring forth", "get", "begotten"]}, {"answer": "begrimed", "hint": "synonyms for begrimed", "clues": ["soil", "colly", "grime", "begrime", "bemire", "dirty"]}, {"answer": "beguiled", "hint": "synonyms for beguiled", "clues": ["enchant", "captivate", "fascinate", "capture", "beguile", "catch", "becharm", "enamour", "charm", "juggle", "entrance", "hoodwink", "bewitch"]}, {"answer": "beguiling", "hint": "synonyms for beguiling", "clues": ["enchant", "captivate", "fascinate", "capture", "beguile", "catch", "becharm", "enamour", "charm", "juggle", "entrance", "hoodwink", "bewitch", "beguiling"]}, {"answer": "belittled", "hint": "synonyms for belittled", "clues": ["diminish", "belittle", "minimize", "denigrate", "pick at", "disparage", "derogate"]}, {"answer": "belittling", "hint": "synonyms for belittling", "clues": ["diminish", "belittle", "minimize", "denigrate", "pick at", "disparage", "derogate", "belittling"]}, {"answer": "bemused", "hint": "synonyms for bemused", "clues": ["discombobulate", "bemuse", "bewilder", "throw"]}, {"answer": "bended", "hint": "synonyms for bended", "clues": ["turn away", "flex", "twist", "deform", "stoop", "bend", "bow", "crouch", "turn", "deflect", "bended"]}, {"answer": "bent", "hint": "synonyms for bent", "clues": ["turn away", "flex", "twist", "deform", "stoop", "bend", "bow", "crouch", "turn", "deflect", "bent"]}, {"answer": "benumbed", "hint": "synonyms for benumbed", "clues": ["dull", "blunt", "numb", "benumb"]}, {"answer": "beseeching", "hint": "synonyms for beseeching", "clues": ["conjure", "entreat", "beseech", "press", "adjure", "bid"]}, {"answer": "besieged", "hint": "synonyms for besieged", "clues": ["beleaguer", "hem in", "circumvent", "besiege", "surround"]}, {"answer": "bespoke", "hint": "synonyms for bespoke", "clues": ["bespeak", "quest", "request", "call for", "indicate", "betoken", "point", "signal", "bespoke"]}, {"answer": "bespoken", "hint": "synonyms for bespoken", "clues": ["bespeak", "quest", "request", "call for", "indicate", "betoken", "point", "signal", "bespoken"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["outdo", "outflank", "trump", "scoop", "best"]}, {"answer": "betrothed", "hint": "synonyms for betrothed", "clues": ["betroth", "engage", "plight", "affiance"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["break", "improve", "amend", "ameliorate", "better"]}, {"answer": "bettering", "hint": "synonyms for bettering", "clues": ["break", "improve", "amend", "better", "ameliorate"]}, {"answer": "betting", "hint": "synonyms for betting", "clues": ["look", "bet", "play", "reckon", "wager", "depend", "count", "calculate", "betting"]}, {"answer": "bewildered", "hint": "synonyms for bewildered", "clues": ["pose", "bemuse", "nonplus", "dumbfound", "discombobulate", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "throw", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "bewitched", "hint": "synonyms for bewitched", "clues": ["enchant", "captivate", "fascinate", "capture", "hex", "magnetise", "beguile", "catch", "becharm", "enamour", "charm", "mesmerise", "witch", "entrance", "glamour", "jinx", "spellbind", "bewitch"]}, {"answer": "bewitching", "hint": "synonyms for bewitching", "clues": ["enchant", "captivate", "fascinate", "capture", "hex", "magnetise", "beguile", "catch", "becharm", "enamour", "charm", "mesmerise", "witch", "entrance", "glamour", "jinx", "spellbind", "bewitch"]}, {"answer": "billowing", "hint": "synonyms for billowing", "clues": ["balloon", "inflate", "heave", "surge", "wallow", "billow"]}, {"answer": "binding", "hint": "synonyms for binding", "clues": ["tie", "stick to", "attach", "oblige", "tie down", "bond", "bind", "adhere", "constipate", "hold", "hold fast", "tie up", "truss", "stick", "bandage"]}, {"answer": "biting", "hint": "synonyms for biting", "clues": ["seize with teeth", "burn", "sting", "bite", "prick", "biting"]}, {"answer": "black", "hint": "synonyms for black", "clues": ["melanise", "blacken", "nigrify", "black"]}, {"answer": "blackened", "hint": "synonyms for blackened", "clues": ["sear", "black", "nigrify", "melanize", "char", "blacken", "scorch"]}, {"answer": "blame", "hint": "synonyms for blame", "clues": ["find fault", "charge", "fault", "pick", "blame"]}, {"answer": "blamed", "hint": "synonyms for blamed", "clues": ["fault", "pick", "find fault", "charge", "blame"]}, {"answer": "blanched", "hint": "synonyms for blanched", "clues": ["blanch", "pale", "parboil", "blench"]}, {"answer": "blaring", "hint": "synonyms for blaring", "clues": ["toot", "blast", "beep", "honk", "claxon", "blare", "blaring"]}, {"answer": "blasted", "hint": "synonyms for blasted", "clues": ["blast", "shoot", "crucify", "knock down", "smash", "boom", "pillory", "nail", "shell", "blare", "savage", "blasted"]}, {"answer": "blasting", "hint": "synonyms for blasting", "clues": ["blast", "shoot", "crucify", "knock down", "smash", "boom", "pillory", "nail", "shell", "blare", "savage"]}, {"answer": "bleached", "hint": "synonyms for bleached", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "blemished", "hint": "synonyms for blemished", "clues": ["disfigure", "blemish", "spot", "deface", "flaw"]}, {"answer": "blended", "hint": "synonyms for blended", "clues": ["go", "fuse", "mix", "combine", "intermix", "immingle", "blend", "intermingle", "coalesce", "flux", "blend in", "commingle", "conflate", "immix", "merge", "meld", "blended"]}, {"answer": "blessed", "hint": "synonyms for blessed", "clues": ["bless", "hallow", "sanctify", "consecrate", "sign", "blessed"]}, {"answer": "blest", "hint": "synonyms for blest", "clues": ["bless", "hallow", "sanctify", "consecrate", "sign", "blest"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["winkle", "blink away", "flash", "blink", "wink", "nictate"]}, {"answer": "blistering", "hint": "synonyms for blistering", "clues": ["whip", "blister", "scald", "vesicate"]}, {"answer": "blockaded", "hint": "synonyms for blockaded", "clues": ["blockade", "seal off", "block off", "stymie", "block", "stymy", "bar", "block up", "stop", "obstruct", "embarrass", "hinder", "barricade"]}, {"answer": "blockading", "hint": "synonyms for blockading", "clues": ["blockade", "seal off", "block off", "stymie", "block", "stymy", "bar", "block up", "stop", "obstruct", "embarrass", "hinder", "barricade", "blockading"]}, {"answer": "blocked", "hint": "synonyms for blocked", "clues": ["freeze", "kibosh", "halt", "occlude", "draw a blank", "stymie", "stuff", "blank out", "bar", "stymy", "block up", "obstruct", "jam", "immobilize", "embarrass", "obturate", "deflect", "blockade", "block off", "block", "forget", "choke up", "impede", "stop", "close up", "parry", "lug", "hinder", "barricade", "blocked"]}, {"answer": "blown", "hint": "synonyms for blown", "clues": ["swash", "fuck up", "louse up", "blow out", "muff", "drift", "bollix up", "boast", "be adrift", "bollocks", "shove off", "botch", "bumble", "fluff", "fumble", "vaunt", "mishandle", "squander", "bollocks up", "foul up", "go down on", "gasconade", "bungle", "bollix", "bobble", "gas", "ball up", "screw up", "float", "bodge", "mess up", "shoot a line", "suck", "flub", "blow", "spoil", "shove along", "fellate", "bluster", "burn out", "brag", "botch up", "tout", "waste"]}, {"answer": "blunt", "hint": "synonyms for blunt", "clues": ["deaden", "dull", "numb", "benumb", "blunt"]}, {"answer": "blunted", "hint": "synonyms for blunted", "clues": ["dull", "numb", "deaden", "blunt", "benumb", "blunted"]}, {"answer": "blurred", "hint": "synonyms for blurred", "clues": ["film over", "obscure", "confuse", "smear", "slur", "blear", "glaze over", "dim", "smutch", "obnubilate", "smudge", "blur", "blurred"]}, {"answer": "blushing", "hint": "synonyms for blushing", "clues": ["redden", "blush", "crimson", "flush"]}, {"answer": "blustering", "hint": "synonyms for blustering", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "swagger", "gasconade", "brag", "tout", "shoot a line", "gas"]}, {"answer": "boiled", "hint": "synonyms for boiled", "clues": ["churn", "seethe", "boil", "moil", "roil", "boiled"]}, {"answer": "bone", "hint": "synonyms for bone", "clues": ["get up", "mug up", "drum", "debone", "swot", "swot up", "grind away", "bone up", "cram", "bone"]}, {"answer": "boned", "hint": "synonyms for boned", "clues": ["bone", "get up", "mug up", "drum", "debone", "swot", "swot up", "grind away", "bone up", "cram"]}, {"answer": "booming", "hint": "synonyms for booming", "clues": ["thrive", "blast", "expand", "boom out", "thunder", "smash", "boom", "flourish", "nail", "din"]}, {"answer": "bootlicking", "hint": "synonyms for bootlicking", "clues": ["kowtow", "suck up", "toady", "truckle", "bootlick", "fawn"]}, {"answer": "bordered", "hint": "synonyms for bordered", "clues": ["butt on", "frame in", "abut", "ring", "butt", "march", "adjoin", "butt against", "skirt", "bound", "frame", "edge", "surround", "border", "environ"]}, {"answer": "born", "hint": "synonyms for born", "clues": ["wear", "deport", "deliver", "give birth", "carry", "put up", "abide", "accept", "hold", "acquit", "expect", "endure", "turn out", "yield", "pay", "birth", "support", "suffer", "take over", "stomach", "have a bun in the oven", "behave", "gestate", "conduct", "bear", "tolerate", "brook", "digest", "contain", "stand", "comport", "have", "stick out", "assume", "born"]}, {"answer": "bosomed", "hint": "synonyms for bosomed", "clues": ["bosom", "embrace", "squeeze", "hug", "bosomed"]}, {"answer": "botched", "hint": "synonyms for botched", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "botched"]}, {"answer": "bothered", "hint": "synonyms for bothered", "clues": ["nark", "put out", "chafe", "rile", "bother", "annoy", "get to", "gravel", "vex", "rag", "get at", "nettle", "trouble", "inconvenience", "trouble oneself", "devil", "irritate", "incommode", "inconvenience oneself", "discommode", "disoblige"]}, {"answer": "bouncing", "hint": "synonyms for bouncing", "clues": ["recoil", "resile", "ricochet", "take a hop", "bound", "reverberate", "jounce", "bounce", "rebound", "spring", "bouncing"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["restrain", "throttle", "stick to", "recoil", "attach", "limit", "ricochet", "tie down", "trammel", "adhere", "hold", "take a hop", "hold fast", "reverberate", "truss", "bounce", "stick", "spring", "jump", "border", "tie", "tie up", "oblige", "restrict", "resile", "bond", "bind", "constipate", "leap", "confine", "rebound", "bandage"]}, {"answer": "bounded", "hint": "synonyms for bounded", "clues": ["restrain", "rebound", "throttle", "recoil", "limit", "ricochet", "trammel", "take a hop", "bound", "reverberate", "bounce", "spring", "jump", "restrict", "resile", "leap", "confine", "border", "bounded"]}, {"answer": "bowed", "hint": "synonyms for bowed", "clues": ["accede", "give in", "bow", "bow down", "bend", "stoop", "crouch", "submit", "defer", "bowed"]}, {"answer": "bowing", "hint": "synonyms for bowing", "clues": ["accede", "give in", "bow", "bow down", "bend", "stoop", "crouch", "submit", "defer"]}, {"answer": "braced", "hint": "synonyms for braced", "clues": ["steady", "brace", "stabilize", "energise", "arouse", "poise", "stimulate", "perk up"]}, {"answer": "bracing", "hint": "synonyms for bracing", "clues": ["steady", "brace", "stabilize", "energise", "arouse", "poise", "stimulate", "perk up", "bracing"]}, {"answer": "brag", "hint": "synonyms for brag", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "tout", "shoot a line", "gas", "brag"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "brag", "tout", "shoot a line", "gas", "bragging"]}, {"answer": "braided", "hint": "synonyms for braided", "clues": ["braid", "lace", "pleach", "plait", "braided"]}, {"answer": "branched", "hint": "synonyms for branched", "clues": ["branch", "fork", "furcate", "separate", "ramify"]}, {"answer": "branching", "hint": "synonyms for branching", "clues": ["branch", "fork", "furcate", "separate", "ramify"]}, {"answer": "branded", "hint": "synonyms for branded", "clues": ["denounce", "brandmark", "stigmatize", "mark", "brand", "trademark", "post", "branded"]}, {"answer": "breathed", "hint": "synonyms for breathed", "clues": ["take a breather", "breathe", "rest", "respire", "suspire", "emit", "catch one's breath", "pass off"]}, {"answer": "breathing", "hint": "synonyms for breathing", "clues": ["take a breather", "breathe", "rest", "respire", "suspire", "emit", "catch one's breath", "pass off", "breathing"]}, {"answer": "breeding", "hint": "synonyms for breeding", "clues": ["engender", "multiply", "breed", "cover", "spawn"]}, {"answer": "bristled", "hint": "synonyms for bristled", "clues": ["bristle", "uprise", "abound", "burst", "stand up"]}, {"answer": "broke", "hint": "synonyms for broke", "clues": ["break", "weaken", "break up", "wear", "cave in", "split up", "better", "infract", "burst", "pause", "come apart", "go against", "breach", "crack", "conk out", "die", "break-dance", "interrupt", "unwrap", "soften", "split", "expose", "demote", "damp", "part", "check", "intermit", "relegate", "recrudesce", "bring out", "give way", "wear out", "snap off", "violate", "kick downstairs", "break down", "give", "go", "give out", "go bad", "let on", "fall in", "break off", "reveal", "disclose", "divulge", "discover", "dampen", "bankrupt", "let out", "fall apart", "break in", "get around", "bump", "develop", "offend", "break away", "separate", "fracture", "discontinue", "break out", "smash", "stop", "collapse", "transgress", "ruin", "founder", "erupt", "fail", "broke"]}, {"answer": "broken", "hint": "synonyms for broken", "clues": ["break", "weaken", "break up", "wear", "cave in", "split up", "better", "infract", "burst", "pause", "come apart", "go against", "breach", "crack", "conk out", "die", "break-dance", "interrupt", "unwrap", "soften", "split", "expose", "demote", "damp", "part", "check", "intermit", "relegate", "recrudesce", "bring out", "give way", "wear out", "snap off", "violate", "kick downstairs", "break down", "give", "go", "give out", "go bad", "let on", "fall in", "break off", "reveal", "disclose", "divulge", "discover", "dampen", "bankrupt", "let out", "fall apart", "break in", "get around", "bump", "develop", "offend", "break away", "separate", "fracture", "discontinue", "break out", "smash", "stop", "collapse", "transgress", "ruin", "founder", "erupt", "fail", "broken"]}, {"answer": "brooding", "hint": "synonyms for brooding", "clues": ["grizzle", "stew", "hatch", "incubate", "sulk", "hover", "dwell", "bulk large", "pout", "cover", "brood", "loom"]}, {"answer": "bruising", "hint": "synonyms for bruising", "clues": ["contuse", "spite", "hurt", "offend", "wound", "bruise", "injure", "bruising"]}, {"answer": "bubbling", "hint": "synonyms for bubbling", "clues": ["burble", "gurgle", "belch", "bubble", "ripple", "eruct", "guggle", "babble", "burp", "bubbling"]}, {"answer": "buffeted", "hint": "synonyms for buffeted", "clues": ["knock about", "batter", "buff", "buffet"]}, {"answer": "bugged", "hint": "synonyms for bugged", "clues": ["beleaguer", "pester", "tap", "wiretap", "tease", "badger", "intercept", "bug", "bugged"]}, {"answer": "built", "hint": "synonyms for built", "clues": ["make", "establish", "build up", "progress", "construct", "ramp up", "work up", "build", "built"]}, {"answer": "bulging", "hint": "synonyms for bulging", "clues": ["protrude", "bag", "start", "bulge out", "pop out", "pop", "come out", "pouch", "bulge", "bulk", "bulging"]}, {"answer": "bully", "hint": "synonyms for bully", "clues": ["push around", "browbeat", "ballyrag", "boss around", "strong-arm", "swagger", "hector", "bully"]}, {"answer": "bullying", "hint": "synonyms for bullying", "clues": ["push around", "browbeat", "ballyrag", "boss around", "strong-arm", "swagger", "hector", "bully"]}, {"answer": "bum", "hint": "synonyms for bum", "clues": ["lounge around", "sponge", "loaf", "cadge", "bum about", "lounge about", "frig around", "arse about", "grub", "waste one's time", "bum around", "mooch", "loll around", "arse around", "loll", "fuck off", "bum"]}, {"answer": "bumbling", "hint": "synonyms for bumbling", "clues": ["fuck up", "louse up", "stammer", "ball up", "muff", "falter", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "stumble", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "stutter", "foul up", "bollix", "botch up", "bobble", "bumbling"]}, {"answer": "bungled", "hint": "synonyms for bungled", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble"]}, {"answer": "bungling", "hint": "synonyms for bungling", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "bungling"]}, {"answer": "burbling", "hint": "synonyms for burbling", "clues": ["burble", "guggle", "babble", "gurgle", "bubble", "ripple", "burbling"]}, {"answer": "burdened", "hint": "synonyms for burdened", "clues": ["saddle", "burthen", "weight", "weight down", "charge", "burden"]}, {"answer": "buried", "hint": "synonyms for buried", "clues": ["inhume", "swallow", "bury", "immerse", "sink", "forget", "entomb", "lay to rest", "eat up", "swallow up", "inter", "buried"]}, {"answer": "burned", "hint": "synonyms for burned", "clues": ["burn off", "cauterise", "incinerate", "cut", "burn down", "burn up", "bite", "burn", "fire", "combust", "glow", "sunburn", "sting", "burned"]}, {"answer": "burning", "hint": "synonyms for burning", "clues": ["burn off", "cauterise", "incinerate", "cut", "burn down", "burn up", "bite", "burn", "fire", "combust", "glow", "sunburn", "sting"]}, {"answer": "burnt", "hint": "synonyms for burnt", "clues": ["burn off", "cauterise", "incinerate", "cut", "burn down", "burn up", "bite", "burn", "fire", "combust", "glow", "sunburn", "sting"]}, {"answer": "bushwhacking", "hint": "synonyms for bushwhacking", "clues": ["ambush", "scupper", "lurk", "ambuscade", "lie in wait", "waylay", "bushwhack"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["break", "wear", "snap", "burst", "wear out", "raid", "rupture", "fall apart", "tear"]}, {"answer": "busted", "hint": "synonyms for busted", "clues": ["break", "wear", "snap", "burst", "wear out", "raid", "rupture", "fall apart", "tear", "busted"]}, {"answer": "buzzing", "hint": "synonyms for buzzing", "clues": ["buzz", "bombilate", "seethe", "hum"]}, {"answer": "bypast", "hint": "synonyms for bypast", "clues": ["short-circuit", "get around", "go around", "bypass", "bypast"]}, {"answer": "calculated", "hint": "synonyms for calculated", "clues": ["look", "bet", "direct", "cipher", "forecast", "aim", "estimate", "account", "count on", "depend", "count", "work out", "compute", "figure", "cypher", "reckon", "calculate"]}, {"answer": "calculating", "hint": "synonyms for calculating", "clues": ["look", "bet", "direct", "cipher", "forecast", "aim", "estimate", "account", "count on", "depend", "count", "work out", "compute", "figure", "cypher", "reckon", "calculate", "calculating"]}, {"answer": "calm", "hint": "synonyms for calm", "clues": ["quieten", "tranquilize", "cool it", "lull", "chill out", "still", "steady", "cool off", "calm down", "settle down", "sedate", "quiet", "becalm", "simmer down", "calm"]}, {"answer": "camp", "hint": "synonyms for camp", "clues": ["tent", "camp down", "encamp", "camp out", "bivouac", "camp"]}, {"answer": "cancelled", "hint": "synonyms for cancelled", "clues": ["invalidate", "delete", "scrub", "strike down", "cancel", "set off", "offset", "scratch", "call off", "cancelled"]}, {"answer": "canned", "hint": "synonyms for canned", "clues": ["displace", "give the axe", "terminate", "dismiss", "put up", "fire", "give the sack", "tin", "send away", "give notice", "force out", "can", "sack", "canned"]}, {"answer": "canted", "hint": "synonyms for canted", "clues": ["cant", "tilt", "pitch", "slant", "cant over", "canted"]}, {"answer": "captivated", "hint": "synonyms for captivated", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch"]}, {"answer": "captivating", "hint": "synonyms for captivating", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch", "captivating"]}, {"answer": "caring", "hint": "synonyms for caring", "clues": ["handle", "give care", "deal", "manage", "wish", "like", "worry", "care", "caring"]}, {"answer": "castrated", "hint": "synonyms for castrated", "clues": ["alter", "shorten", "demasculinise", "emasculate", "spay", "castrate", "bowdlerize", "neuter", "expurgate"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["view", "overtake", "hitch", "enchant", "captivate", "take hold of", "fascinate", "capture", "beguile", "catch", "pick up", "becharm", "enamour", "take in", "charm", "watch", "see", "trip up", "grab", "entrance", "overhear", "arrest", "catch up with", "get", "bewitch"]}, {"answer": "celebrated", "hint": "synonyms for celebrated", "clues": ["celebrate", "fete", "observe", "lionize", "keep"]}, {"answer": "center", "hint": "synonyms for center", "clues": ["rivet", "revolve about", "centre", "pore", "concentrate", "focus on", "focus", "revolve around", "center on", "center"]}, {"answer": "centered", "hint": "synonyms for centered", "clues": ["rivet", "revolve about", "centre", "pore", "center", "concentrate", "focus on", "focus", "revolve around", "center on"]}, {"answer": "certified", "hint": "synonyms for certified", "clues": ["certify", "license", "demonstrate", "indorse", "evidence", "attest", "manifest", "certified"]}, {"answer": "chafed", "hint": "synonyms for chafed", "clues": ["nark", "fray", "rub", "chafe", "rile", "excoriate", "annoy", "bother", "get to", "gravel", "vex", "rag", "get at", "nettle", "gall", "devil", "irritate", "scratch", "fret"]}, {"answer": "chagrined", "hint": "synonyms for chagrined", "clues": ["mortify", "humble", "abase", "chagrin", "humiliate"]}, {"answer": "challenging", "hint": "synonyms for challenging", "clues": ["take exception", "gainsay", "dispute", "challenge", "challenging"]}, {"answer": "chance", "hint": "synonyms for chance", "clues": ["risk", "encounter", "hazard", "gamble", "find", "happen", "take a chance", "run a risk", "adventure", "bump", "chance"]}, {"answer": "changed", "hint": "synonyms for changed", "clues": ["alter", "deepen", "transfer", "switch", "change", "vary", "convert", "commute", "interchange", "shift", "modify"]}, {"answer": "changing", "hint": "synonyms for changing", "clues": ["alter", "deepen", "transfer", "switch", "change", "vary", "convert", "commute", "interchange", "shift", "modify", "changing"]}, {"answer": "chanted", "hint": "synonyms for chanted", "clues": ["intonate", "chant", "cantillate", "tone", "chanted"]}, {"answer": "charged", "hint": "synonyms for charged", "clues": ["commove", "commit", "bear down", "send", "excite", "lodge", "saddle", "consign", "charge up", "agitate", "point", "charge", "institutionalise", "file", "blame", "buck", "shoot", "load", "bill", "rouse", "level", "turn on", "appoint", "accuse", "shoot down", "burden", "tear"]}, {"answer": "charmed", "hint": "synonyms for charmed", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "tempt", "charm", "influence", "bewitch", "charmed"]}, {"answer": "charming", "hint": "synonyms for charming", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "tempt", "charm", "influence", "bewitch"]}, {"answer": "chartered", "hint": "synonyms for chartered", "clues": ["hire", "take", "lease", "rent", "charter", "engage"]}, {"answer": "cheating", "hint": "synonyms for cheating", "clues": ["betray", "chouse", "cheat on", "cuckold", "chicane", "wander", "screw", "shaft", "cheat", "jockey", "rip off", "chisel"]}, {"answer": "checked", "hint": "synonyms for checked", "clues": ["break", "turn back", "control", "see to it", "discipline", "train", "determine", "crack", "delay", "mark off", "chequer", "condition", "correspond", "see", "fit", "mark", "tally", "agree", "check off", "arrest", "check out", "find out", "retard", "insure", "go over", "ascertain", "ensure", "checker", "moderate", "look into", "hold", "gibe", "suss out", "check over", "learn", "watch", "check up on", "chink", "curb", "tick", "jibe", "match", "assure", "hold in", "stop", "hold back", "contain", "check into", "check", "tick off"]}, {"answer": "cheering", "hint": "synonyms for cheering", "clues": ["recreate", "chirk up", "barrack", "urge", "pep up", "hearten", "exhort", "jolly up", "embolden", "inspire", "root on", "cheer", "urge on", "cheer up", "jolly along"]}, {"answer": "cherished", "hint": "synonyms for cherished", "clues": ["care for", "hold dear", "treasure", "cherish"]}, {"answer": "chinked", "hint": "synonyms for chinked", "clues": ["tinkle", "chink", "clink", "tink", "check", "chinked"]}, {"answer": "choked", "hint": "synonyms for choked", "clues": ["cash in one's chips", "throttle", "stifle", "gag", "clog", "choke off", "die", "croak", "buy the farm", "congest", "choke", "conk", "give-up the ghost", "pass away", "kick the bucket", "fret", "decease", "go", "pop off", "clog up", "expire", "foul", "strangle", "drop dead", "asphyxiate", "scrag", "exit", "back up", "suffocate", "perish", "snuff it", "pass"]}, {"answer": "churning", "hint": "synonyms for churning", "clues": ["boil", "moil", "roil", "churn"]}, {"answer": "circulating", "hint": "synonyms for circulating", "clues": ["distribute", "pass on", "circulate", "disperse", "circle", "spread", "go around", "broadcast", "circularise", "disseminate", "pass around", "mobilize", "diffuse", "propagate", "circulating"]}, {"answer": "civilised", "hint": "synonyms for civilised", "clues": ["school", "train", "cultivate", "civilize", "educate", "civilised"]}, {"answer": "civilized", "hint": "synonyms for civilized", "clues": ["school", "train", "cultivate", "civilize", "educate"]}, {"answer": "clad", "hint": "synonyms for clad", "clues": ["garment", "robe", "drape", "clothe", "invest", "tog", "cloak", "garb", "apparel", "adorn", "habilitate", "fit out", "dress", "raiment", "clad"]}, {"answer": "classified", "hint": "synonyms for classified", "clues": ["sort", "sort out", "relegate", "classify", "separate", "class", "assort", "classified"]}, {"answer": "clean", "hint": "synonyms for clean", "clues": ["clean house", "houseclean", "make clean", "strip", "scavenge", "cleanse", "pick", "clean"]}, {"answer": "clear", "hint": "synonyms for clear", "clues": ["brighten", "sort out", "exonerate", "make", "light up", "earn", "exculpate", "crystallize", "straighten out", "bring in", "gain", "realize", "acquit", "sack up", "take in", "shed light on", "elucidate", "discharge", "assoil", "pull in", "authorise", "top", "enlighten", "illuminate", "clear up", "net", "unclutter", "solve", "pass", "sack", "clear"]}, {"answer": "cleared", "hint": "synonyms for cleared", "clues": ["brighten", "light up", "earn", "crystallize", "gain", "acquit", "take in", "shed light on", "elucidate", "discharge", "pull in", "authorise", "clear", "sort out", "exonerate", "make", "exculpate", "straighten out", "bring in", "sack up", "assoil", "realise", "top", "enlighten", "illuminate", "net", "clear up", "unclutter", "solve", "pass", "sack", "cleared"]}, {"answer": "cleft", "hint": "synonyms for cleft", "clues": ["cling", "split", "cleave", "rive", "adhere", "cohere", "stick", "cleft"]}, {"answer": "clinking", "hint": "synonyms for clinking", "clues": ["tinkle", "clink", "chink", "tink"]}, {"answer": "clipped", "hint": "synonyms for clipped", "clues": ["clip", "nip", "trim", "cut back", "curtail", "snip off", "prune", "crop", "trot", "jog", "dress", "cut short", "lop", "clipped"]}, {"answer": "cloaked", "hint": "synonyms for cloaked", "clues": ["robe", "mask", "drape", "clothe", "cloak", "dissemble", "cloaked"]}, {"answer": "clogged", "hint": "synonyms for clogged", "clues": ["congest", "clog up", "choke", "back up", "foul", "constipate", "clot", "overload", "clog", "choke off", "clogged"]}, {"answer": "clogging", "hint": "synonyms for clogging", "clues": ["congest", "clog up", "choke", "back up", "foul", "constipate", "clot", "overload", "clog", "choke off", "clogging"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["fill up", "shut", "conclude", "come together", "close up", "close down", "shut down", "fold", "close"]}, {"answer": "closed", "hint": "synonyms for closed", "clues": ["fill up", "shut", "conclude", "close", "come together", "close up", "close down", "shut down", "fold"]}, {"answer": "closing", "hint": "synonyms for closing", "clues": ["fill up", "shut", "conclude", "close", "come together", "close up", "close down", "shut down", "fold", "closing"]}, {"answer": "clothed", "hint": "synonyms for clothed", "clues": ["garment", "robe", "drape", "clothe", "invest", "tog", "cloak", "garb", "apparel", "adorn", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "clotted", "hint": "synonyms for clotted", "clues": ["clabber", "clog", "curdle", "coagulate", "clot", "clotted"]}, {"answer": "clouded", "hint": "synonyms for clouded", "clues": ["sully", "overcast", "obscure", "haze over", "mist", "defile", "corrupt", "taint", "dapple", "mottle", "becloud", "obnubilate", "fog", "befog", "cloud", "clouded"]}, {"answer": "cloven", "hint": "synonyms for cloven", "clues": ["cling", "split", "cleave", "rive", "adhere", "cohere", "stick", "cloven"]}, {"answer": "clustered", "hint": "synonyms for clustered", "clues": ["clump", "bunch up", "bunch", "constellate", "cluster", "bundle", "flock"]}, {"answer": "co-ordinated", "hint": "synonyms for co-ordinated", "clues": ["organize", "align", "ordinate", "co-ordinated"]}, {"answer": "coalesced", "hint": "synonyms for coalesced", "clues": ["coalesce", "flux", "fuse", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend"]}, {"answer": "coalescing", "hint": "synonyms for coalescing", "clues": ["coalesce", "flux", "fuse", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend", "coalescing"]}, {"answer": "coaxing", "hint": "synonyms for coaxing", "clues": ["inveigle", "wheedle", "cajole", "sweet-talk", "blarney", "palaver", "coax"]}, {"answer": "cod", "hint": "synonyms for cod", "clues": ["befool", "slang", "bait", "ride", "put one over", "gull", "taunt", "tease", "rag", "take in", "put one across", "twit", "tantalize", "rally", "fool", "dupe", "razz", "put on", "cod"]}, {"answer": "coiled", "hint": "synonyms for coiled", "clues": ["handbuild", "gyrate", "coil", "curl", "loop", "spiral", "coiled"]}, {"answer": "coiling", "hint": "synonyms for coiling", "clues": ["handbuild", "gyrate", "coil", "curl", "loop", "spiral"]}, {"answer": "coinciding", "hint": "synonyms for coinciding", "clues": ["co-occur", "coincide", "concur", "coinciding"]}, {"answer": "collect", "hint": "synonyms for collect", "clues": ["roll up", "accumulate", "gather up", "amass", "pull in", "hoard", "gather", "call for", "pick up", "compile", "pile up", "garner", "take in", "pull together", "collect"]}, {"answer": "collected", "hint": "synonyms for collected", "clues": ["roll up", "accumulate", "gather up", "amass", "collect", "pull in", "hoard", "gather", "call for", "pick up", "compile", "pile up", "garner", "take in", "pull together"]}, {"answer": "color", "hint": "synonyms for color", "clues": ["discolour", "color in", "colourize", "gloss", "colorise", "distort", "emblazon", "tinge", "colour"]}, {"answer": "colored", "hint": "synonyms for colored", "clues": ["color", "discolour", "color in", "colourize", "gloss", "colorise", "distort", "emblazon", "tinge", "colored"]}, {"answer": "colour", "hint": "synonyms for colour", "clues": ["color", "discolour", "color in", "colourize", "colorise", "emblazon", "distort", "tinge", "gloss"]}, {"answer": "coloured", "hint": "synonyms for coloured", "clues": ["color", "discolour", "color in", "colourize", "colorise", "emblazon", "distort", "tinge", "gloss", "coloured"]}, {"answer": "combed", "hint": "synonyms for combed", "clues": ["comb", "ransack", "disentangle", "comb out", "combed"]}, {"answer": "combined", "hint": "synonyms for combined", "clues": ["aggregate", "unite", "coalesce", "flux", "fuse", "compound", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend"]}, {"answer": "comforted", "hint": "synonyms for comforted", "clues": ["soothe", "console", "ease", "solace", "comfort"]}, {"answer": "comforting", "hint": "synonyms for comforting", "clues": ["soothe", "console", "ease", "solace", "comfort"]}, {"answer": "coming", "hint": "synonyms for coming", "clues": ["do", "follow", "fare", "come up", "add up", "occur", "arrive", "hail", "amount", "make out", "descend", "fall", "total", "number", "come", "get along", "derive", "issue forth", "come in", "get", "coming"]}, {"answer": "commanding", "hint": "synonyms for commanding", "clues": ["control", "dominate", "overtop", "overlook", "command", "require"]}, {"answer": "commemorating", "hint": "synonyms for commemorating", "clues": ["memorialise", "mark", "immortalize", "remember", "record", "commemorate", "commemorating"]}, {"answer": "committed", "hint": "synonyms for committed", "clues": ["intrust", "dedicate", "commit", "send", "give", "trust", "place", "confide", "charge", "perpetrate", "institutionalize", "pull", "devote", "invest", "consecrate", "practice", "put", "committed"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["compress", "pack", "pack together", "constrict", "squeeze", "contract", "wad", "bundle", "press", "compact"]}, {"answer": "compassionate", "hint": "synonyms for compassionate", "clues": ["condole with", "pity", "sympathize with", "feel for", "compassionate"]}, {"answer": "compensated", "hint": "synonyms for compensated", "clues": ["even out", "correct", "repair", "make up", "recompense", "cover", "even up", "pay", "remunerate", "redress", "even off", "counterbalance", "indemnify", "right", "compensate", "overcompensate", "pay off"]}, {"answer": "complaining", "hint": "synonyms for complaining", "clues": ["quetch", "complain", "plain", "kvetch", "kick", "sound off"]}, {"answer": "complete", "hint": "synonyms for complete", "clues": ["fill out", "dispatch", "fill in", "make out", "nail", "finish", "discharge", "complete"]}, {"answer": "completed", "hint": "synonyms for completed", "clues": ["fill out", "dispatch", "fill in", "complete", "make out", "nail", "finish", "discharge"]}, {"answer": "completing", "hint": "synonyms for completing", "clues": ["fill out", "dispatch", "fill in", "complete", "make out", "nail", "finish", "discharge", "completing"]}, {"answer": "complicated", "hint": "synonyms for complicated", "clues": ["refine", "elaborate", "complicate", "perplex", "rarify"]}, {"answer": "composed", "hint": "synonyms for composed", "clues": ["draw up", "compile", "write", "compose", "frame", "indite", "pen"]}, {"answer": "compound", "hint": "synonyms for compound", "clues": ["deepen", "combine", "intensify", "heighten", "compound"]}, {"answer": "compounded", "hint": "synonyms for compounded", "clues": ["deepen", "combine", "intensify", "compound", "heighten"]}, {"answer": "comprehended", "hint": "synonyms for comprehended", "clues": ["grok", "perceive", "comprehend", "grasp", "get the picture", "encompass", "cover", "savvy", "apprehend", "embrace", "dig"]}, {"answer": "compressed", "hint": "synonyms for compressed", "clues": ["compress", "pack together", "constrict", "squeeze", "contract", "press", "compact"]}, {"answer": "concealed", "hint": "synonyms for concealed", "clues": ["hide", "conceal", "hold in", "hold back"]}, {"answer": "concealing", "hint": "synonyms for concealing", "clues": ["hide", "conceal", "hold in", "hold back"]}, {"answer": "concentrated", "hint": "synonyms for concentrated", "clues": ["rivet", "condense", "reduce", "centre", "centralize", "pore", "concentrate", "center", "contract", "decoct", "boil down", "focus", "digest"]}, {"answer": "concerned", "hint": "synonyms for concerned", "clues": ["touch on", "interest", "worry", "pertain", "have-to doe with", "touch", "occupy", "bear on", "come to", "refer", "concern", "relate"]}, {"answer": "concluded", "hint": "synonyms for concluded", "clues": ["resolve", "conclude", "close", "reason", "reason out"]}, {"answer": "concluding", "hint": "synonyms for concluding", "clues": ["resolve", "conclude", "close", "reason", "reason out", "concluding"]}, {"answer": "concurring", "hint": "synonyms for concurring", "clues": ["hold", "concord", "concur", "coincide", "agree", "concurring"]}, {"answer": "condemning", "hint": "synonyms for condemning", "clues": ["doom", "sentence", "objurgate", "condemn", "reprobate", "excoriate", "decry"]}, {"answer": "condescending", "hint": "synonyms for condescending", "clues": ["patronize", "lower oneself", "deign", "condescend", "descend", "stoop"]}, {"answer": "conditioned", "hint": "synonyms for conditioned", "clues": ["condition", "qualify", "specify", "train", "stipulate", "check", "discipline"]}, {"answer": "confiding", "hint": "synonyms for confiding", "clues": ["intrust", "trust", "commit", "confide", "confiding"]}, {"answer": "confined", "hint": "synonyms for confined", "clues": ["restrain", "throttle", "enclose", "restrict", "limit", "circumscribe", "trammel", "hold in", "detain", "hold", "confine", "bound"]}, {"answer": "confining", "hint": "synonyms for confining", "clues": ["restrain", "throttle", "enclose", "restrict", "limit", "circumscribe", "trammel", "hold in", "detain", "hold", "confine", "bound", "confining"]}, {"answer": "confirmed", "hint": "synonyms for confirmed", "clues": ["support", "confirm", "corroborate", "substantiate", "sustain", "reassert", "affirm"]}, {"answer": "confirming", "hint": "synonyms for confirming", "clues": ["support", "confirm", "corroborate", "substantiate", "sustain", "reassert", "affirm"]}, {"answer": "confiscate", "hint": "synonyms for confiscate", "clues": ["seize", "sequester", "attach", "impound", "confiscate"]}, {"answer": "conflicting", "hint": "synonyms for conflicting", "clues": ["infringe", "run afoul", "contravene", "conflict"]}, {"answer": "confounded", "hint": "synonyms for confounded", "clues": ["throw", "confuse", "befuddle", "discombobulate", "bedevil", "confound", "fox"]}, {"answer": "confounding", "hint": "synonyms for confounding", "clues": ["throw", "confuse", "befuddle", "discombobulate", "bedevil", "confound", "fox"]}, {"answer": "confused", "hint": "synonyms for confused", "clues": ["throw", "obscure", "confuse", "befuddle", "put off", "disconcert", "discombobulate", "bedevil", "obnubilate", "confound", "mix up", "blur", "fox", "jumble", "flurry"]}, {"answer": "confusing", "hint": "synonyms for confusing", "clues": ["throw", "obscure", "confuse", "befuddle", "put off", "disconcert", "discombobulate", "bedevil", "obnubilate", "confound", "mix up", "blur", "fox", "jumble", "flurry", "confusing"]}, {"answer": "congested", "hint": "synonyms for congested", "clues": ["congest", "clog up", "clog", "choke off", "choke", "back up", "foul"]}, {"answer": "conglomerate", "hint": "synonyms for conglomerate", "clues": ["gather", "accumulate", "pile up", "amass", "conglomerate"]}, {"answer": "conjoined", "hint": "synonyms for conjoined", "clues": ["hook up with", "conjoin", "marry", "wed", "espouse", "join", "get hitched with", "get married"]}, {"answer": "connected", "hint": "synonyms for connected", "clues": ["tie", "unite", "link up", "connect", "link", "associate", "join", "plug into", "colligate", "touch base", "tie in", "get in touch", "relate"]}, {"answer": "consecrate", "hint": "synonyms for consecrate", "clues": ["vow", "sanctify", "dedicate", "commit", "ordinate", "give", "bless", "hallow", "ordain", "order", "devote", "consecrate"]}, {"answer": "consecrated", "hint": "synonyms for consecrated", "clues": ["vow", "sanctify", "dedicate", "commit", "ordinate", "consecrate", "give", "bless", "hallow", "ordain", "order", "devote"]}, {"answer": "conserved", "hint": "synonyms for conserved", "clues": ["economise", "keep up", "maintain", "preserve", "conserve", "husband"]}, {"answer": "considered", "hint": "synonyms for considered", "clues": ["regard", "view", "deliberate", "moot", "deal", "debate", "think", "look at", "consider", "study", "conceive", "count", "weigh", "see", "take", "turn over", "reckon", "believe"]}, {"answer": "consoling", "hint": "synonyms for consoling", "clues": ["soothe", "console", "solace", "comfort", "consoling"]}, {"answer": "constituted", "hint": "synonyms for constituted", "clues": ["name", "form", "make", "comprise", "represent", "institute", "plant", "found", "establish", "appoint", "make up", "be", "nominate", "constitute"]}, {"answer": "constrained", "hint": "synonyms for constrained", "clues": ["restrain", "tighten", "tighten up", "stiffen", "encumber", "constrain"]}, {"answer": "constraining", "hint": "synonyms for constraining", "clues": ["restrain", "tighten", "tighten up", "stiffen", "encumber", "constrain"]}, {"answer": "constricted", "hint": "synonyms for constricted", "clues": ["narrow", "compress", "constringe", "constrict", "squeeze", "contract", "press", "compact"]}, {"answer": "constricting", "hint": "synonyms for constricting", "clues": ["narrow", "compress", "constringe", "constrict", "squeeze", "contract", "press", "compact"]}, {"answer": "consuming", "hint": "synonyms for consuming", "clues": ["devour", "down", "wipe out", "use up", "run through", "deplete", "take in", "go through", "take", "squander", "eat", "ware", "exhaust", "ingest", "eat up", "consume", "waste", "have", "consuming"]}, {"answer": "contained", "hint": "synonyms for contained", "clues": ["incorporate", "turn back", "control", "comprise", "take", "curb", "moderate", "carry", "hold in", "stop", "hold back", "hold", "bear", "contain", "arrest", "check"]}, {"answer": "continued", "hint": "synonyms for continued", "clues": ["go on", "continue", "keep", "uphold", "keep on", "remain", "cover", "carry on", "persist in", "bear on", "preserve", "retain", "go along", "stay", "stay on", "proceed", "go forward", "extend"]}, {"answer": "continuing", "hint": "synonyms for continuing", "clues": ["go on", "continue", "keep", "uphold", "keep on", "remain", "cover", "carry on", "persist in", "bear on", "preserve", "retain", "go along", "stay", "stay on", "proceed", "go forward", "extend", "continuing"]}, {"answer": "contorted", "hint": "synonyms for contorted", "clues": ["distort", "contort", "wring", "deform"]}, {"answer": "contracted", "hint": "synonyms for contracted", "clues": ["narrow", "compress", "foreshorten", "reduce", "shrink", "squeeze", "concentrate", "sign up", "abridge", "shorten", "take", "condense", "cut", "constrict", "sign", "contract", "abbreviate", "press", "sign on", "compact", "get", "undertake"]}, {"answer": "contributing", "hint": "synonyms for contributing", "clues": ["chip in", "lend", "contribute", "bestow", "kick in", "put up", "bring", "lead", "impart", "conduce", "give", "add", "contributing"]}, {"answer": "contrived", "hint": "synonyms for contrived", "clues": ["throw", "devise", "formulate", "plan", "contrive", "design", "excogitate", "cast", "project", "forge", "invent"]}, {"answer": "controlled", "hint": "synonyms for controlled", "clues": ["insure", "ascertain", "verify", "control", "ensure", "moderate", "see to it", "hold", "manipulate", "see", "curb", "assure", "hold in", "keep in line", "operate", "master", "command", "contain", "check", "controlled"]}, {"answer": "controlling", "hint": "synonyms for controlling", "clues": ["insure", "ascertain", "verify", "control", "ensure", "moderate", "see to it", "hold", "manipulate", "see", "curb", "assure", "hold in", "keep in line", "operate", "master", "command", "contain", "check", "controlling"]}, {"answer": "converted", "hint": "synonyms for converted", "clues": ["change", "convert", "commute", "win over", "convince", "change over"]}, {"answer": "convolute", "hint": "synonyms for convolute", "clues": ["convolve", "sophisticate", "twist around", "pervert", "twist", "convolute"]}, {"answer": "convoluted", "hint": "synonyms for convoluted", "clues": ["convolve", "sophisticate", "twist around", "convolute", "pervert", "twist"]}, {"answer": "cooked", "hint": "synonyms for cooked", "clues": ["manipulate", "make", "cook", "misrepresent", "prepare", "fake", "falsify", "fix", "wangle", "ready", "fudge", "cooked"]}, {"answer": "coordinated", "hint": "synonyms for coordinated", "clues": ["organize", "align", "ordinate", "coordinated"]}, {"answer": "coordinating", "hint": "synonyms for coordinating", "clues": ["organize", "align", "ordinate", "coordinating"]}, {"answer": "correct", "hint": "synonyms for correct", "clues": ["sort out", "even out", "discipline", "decline", "adjust", "make up", "even up", "redress", "even off", "right", "castigate", "rectify", "counterbalance", "slump", "compensate", "set", "chastise", "chasten", "objurgate", "correct"]}, {"answer": "corrected", "hint": "synonyms for corrected", "clues": ["sort out", "even out", "correct", "discipline", "decline", "adjust", "make up", "even up", "redress", "even off", "right", "rectify", "castigate", "counterbalance", "slump", "compensate", "set", "chastise", "chasten", "objurgate"]}, {"answer": "corresponding", "hint": "synonyms for corresponding", "clues": ["correspond", "represent", "fit", "jibe", "match", "equate", "tally", "agree", "gibe", "stand for", "check"]}, {"answer": "corrupt", "hint": "synonyms for corrupt", "clues": ["bribe", "sully", "deprave", "grease one's palms", "pervert", "defile", "spoil", "taint", "demoralize", "vitiate", "buy", "debauch", "misdirect", "profane", "subvert", "cloud", "debase", "corrupt"]}, {"answer": "corrupted", "hint": "synonyms for corrupted", "clues": ["sully", "deprave", "taint", "demoralize", "buy", "subvert", "cloud", "debase", "bribe", "grease one's palms", "pervert", "defile", "corrupt", "spoil", "vitiate", "debauch", "misdirect", "profane"]}, {"answer": "corrupting", "hint": "synonyms for corrupting", "clues": ["sully", "deprave", "taint", "demoralize", "buy", "subvert", "cloud", "debase", "bribe", "grease one's palms", "pervert", "defile", "corrupt", "spoil", "vitiate", "debauch", "misdirect", "profane"]}, {"answer": "counterbalanced", "hint": "synonyms for counterbalanced", "clues": ["counteract", "even out", "oppose", "even off", "counterbalance", "neutralize", "correct", "compensate", "countervail", "make up", "even up"]}, {"answer": "coupled", "hint": "synonyms for coupled", "clues": ["mate", "couple", "match", "partner off", "twin", "couple on", "couple up", "copulate", "pair", "pair off"]}, {"answer": "covered", "hint": "synonyms for covered", "clues": ["insure", "cut through", "overlay", "incubate", "continue", "deal", "cross", "spread over", "get across", "wrap up", "cut across", "pass over", "breed", "cover", "underwrite", "brood", "get over", "traverse", "track", "handle", "shroud", "hatch", "treat", "hide", "report", "compensate", "comprehend", "cover up", "encompass", "address", "overcompensate", "embrace", "plow", "extend", "covered"]}, {"answer": "crabbed", "hint": "synonyms for crabbed", "clues": ["beef", "grouse", "gripe", "squawk", "bitch", "bellyache", "crab", "holler", "crabbed"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["break", "break up", "crack up", "snap", "break through", "collapse", "check", "crack"]}, {"answer": "cracked", "hint": "synonyms for cracked", "clues": ["break", "break up", "crack up", "snap", "crack", "break through", "collapse", "check", "cracked"]}, {"answer": "cracking", "hint": "synonyms for cracking", "clues": ["break", "break up", "crack up", "snap", "crack", "break through", "collapse", "check"]}, {"answer": "crackle", "hint": "synonyms for crackle", "clues": ["crunch", "scranch", "crepitate", "crackle"]}, {"answer": "cramped", "hint": "synonyms for cramped", "clues": ["strangle", "hamper", "halter", "cramp", "cramped"]}, {"answer": "crashing", "hint": "synonyms for crashing", "clues": ["break up", "barge in", "gate-crash", "doss down", "doss", "go down", "dash", "break apart", "crash", "ram"]}, {"answer": "craved", "hint": "synonyms for craved", "clues": ["crave", "hunger", "starve", "thirst", "lust"]}, {"answer": "cringing", "hint": "synonyms for cringing", "clues": ["crawl", "recoil", "quail", "cower", "shrink", "cringe", "fawn", "wince", "funk", "creep", "squinch", "grovel", "flinch", "cringing"]}, {"answer": "crinkled", "hint": "synonyms for crinkled", "clues": ["scrunch", "rumple", "crinkle", "crisp", "ruckle", "crease", "scrunch up"]}, {"answer": "crisp", "hint": "synonyms for crisp", "clues": ["crinkle", "scrunch", "crease", "toast", "scrunch up", "crispen", "ruckle", "crisp"]}, {"answer": "cropped", "hint": "synonyms for cropped", "clues": ["cultivate", "range", "work", "clip", "trim", "browse", "pasture", "cut back", "graze", "prune", "crop", "dress", "snip", "lop", "cropped"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["cut through", "scotch", "get across", "crossbreed", "hybridize", "cut across", "pass over", "cover", "span", "traverse", "thwart", "track", "interbreed", "sweep", "spoil", "intersect", "queer", "frustrate", "baffle", "bilk", "foil", "get over", "cross"]}, {"answer": "crossbred", "hint": "synonyms for crossbred", "clues": ["interbreed", "crossbreed", "hybridize", "cross"]}, {"answer": "crossed", "hint": "synonyms for crossed", "clues": ["cut through", "scotch", "cross", "get across", "crossbreed", "hybridize", "cut across", "pass over", "cover", "span", "traverse", "track", "thwart", "interbreed", "sweep", "spoil", "intersect", "queer", "frustrate", "baffle", "bilk", "foil", "get over", "crossed"]}, {"answer": "crowded", "hint": "synonyms for crowded", "clues": ["push", "herd", "crowd", "crowd together", "crowded"]}, {"answer": "crumpled", "hint": "synonyms for crumpled", "clues": ["tumble", "cockle", "rumple", "crinkle", "crumble", "buckle", "knit", "crease", "collapse", "break down", "pucker"]}, {"answer": "crushed", "hint": "synonyms for crushed", "clues": ["vanquish", "mash", "crush", "beat out", "demolish", "suppress", "squelch", "squeeze", "shell", "beat", "oppress", "jam", "squash", "break down", "trounce", "crushed"]}, {"answer": "crushing", "hint": "synonyms for crushing", "clues": ["vanquish", "mash", "crush", "beat out", "demolish", "suppress", "squelch", "squeeze", "shell", "beat", "oppress", "jam", "squash", "break down", "trounce"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["hollo", "yell", "call", "scream", "outcry", "cry", "squall", "exclaim", "weep", "shout out", "call out", "cry out", "shout", "holler", "blazon out"]}, {"answer": "crystalised", "hint": "synonyms for crystalised", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "effloresce", "shed light on", "elucidate", "clear"]}, {"answer": "crystalized", "hint": "synonyms for crystalized", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "effloresce", "shed light on", "elucidate", "clear"]}, {"answer": "crystallised", "hint": "synonyms for crystallised", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "shed light on", "elucidate", "clear"]}, {"answer": "crystallized", "hint": "synonyms for crystallized", "clues": ["sort out", "crystallize", "straighten out", "shed light on", "elucidate", "enlighten", "illuminate", "clear up", "effloresce", "clear"]}, {"answer": "cultivated", "hint": "synonyms for cultivated", "clues": ["domesticate", "cultivate", "civilize", "work", "naturalize", "educate", "train", "crop", "school", "tame"]}, {"answer": "curled", "hint": "synonyms for curled", "clues": ["coil", "wave", "curl", "loop", "draw in", "kink", "curl up", "curve", "curled"]}, {"answer": "curling", "hint": "synonyms for curling", "clues": ["coil", "wave", "curl", "loop", "draw in", "kink", "curl up", "curve"]}, {"answer": "cursed", "hint": "synonyms for cursed", "clues": ["cuss", "damn", "beshrew", "excommunicate", "unchurch", "bedamn", "blaspheme", "anathemise", "curse", "swear", "maledict", "imprecate"]}, {"answer": "curst", "hint": "synonyms for curst", "clues": ["cuss", "damn", "beshrew", "excommunicate", "unchurch", "bedamn", "blaspheme", "anathemise", "curse", "swear", "maledict", "imprecate", "curst"]}, {"answer": "curved", "hint": "synonyms for curved", "clues": ["trend", "veer", "sheer", "wind", "cut", "twist", "arc", "crook", "curl", "slew", "swerve", "kink", "curve", "slue"]}, {"answer": "curving", "hint": "synonyms for curving", "clues": ["trend", "veer", "sheer", "wind", "cut", "twist", "arc", "crook", "curl", "slew", "swerve", "kink", "curve", "slue", "curving"]}, {"answer": "cussed", "hint": "synonyms for cussed", "clues": ["blaspheme", "imprecate", "curse", "swear", "cuss", "cussed"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["foreshorten", "issue", "rationalize", "dilute", "thin out", "make out", "cut off", "abridge", "skip", "burn", "prune", "bring down", "trim back", "contract", "disregard", "curve", "reduce", "turn off", "cut back", "edit out", "snub", "geld", "turn out", "trend", "shorten", "trim", "veer", "sheer", "hack", "ignore", "slew", "write out", "thin", "switch off", "cut down", "trim down", "swerve", "abbreviate", "tailor", "edit", "slue", "cut"]}, {"answer": "cut_off", "hint": "synonyms for cut off", "clues": ["interrupt", "break up", "cut", "chip", "disrupt", "lop off", "break off", "knap", "amputate", "cut out", "chop off", "cut off"]}, {"answer": "cut_up", "hint": "synonyms for cut up", "clues": ["mutilate", "carve", "compartmentalise", "mangle", "hack", "cut up"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["foreshorten", "issue", "rationalize", "dilute", "thin out", "make out", "cut off", "abridge", "skip", "burn", "prune", "bring down", "trim back", "contract", "disregard", "curve", "reduce", "turn off", "cut back", "edit out", "snub", "geld", "turn out", "trend", "shorten", "trim", "veer", "sheer", "cut", "hack", "ignore", "slew", "write out", "thin", "switch off", "cut down", "trim down", "swerve", "abbreviate", "tailor", "edit", "slue", "cutting"]}, {"answer": "dabbled", "hint": "synonyms for dabbled", "clues": ["paddle", "smatter", "play around", "splash around", "dabble"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["bedamn", "anathemise", "curse", "beshrew", "maledict", "imprecate", "damn"]}, {"answer": "damned", "hint": "synonyms for damned", "clues": ["damn", "beshrew", "maledict", "anathemise", "curse", "bedamn", "imprecate", "damned"]}, {"answer": "damning", "hint": "synonyms for damning", "clues": ["damn", "beshrew", "maledict", "anathemise", "curse", "bedamn", "imprecate"]}, {"answer": "damp", "hint": "synonyms for damp", "clues": ["break", "tone down", "soften", "weaken", "mute", "dull", "muffle", "dampen", "deaden", "damp"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["presume", "dare", "make bold", "defy", "daring"]}, {"answer": "dashed", "hint": "synonyms for dashed", "clues": ["flash", "shoot", "scud", "scoot", "dart", "scare away", "dash", "frighten off", "smash", "daunt", "scare", "pall", "frighten away", "crash", "scare off", "dashed"]}, {"answer": "dashing", "hint": "synonyms for dashing", "clues": ["flash", "shoot", "scud", "scoot", "dart", "scare away", "dash", "frighten off", "smash", "daunt", "scare", "pall", "frighten away", "crash", "scare off"]}, {"answer": "dated", "hint": "synonyms for dated", "clues": ["go steady", "see", "go out", "date stamp", "date"]}, {"answer": "daunted", "hint": "synonyms for daunted", "clues": ["scare away", "frighten off", "dash", "daunt", "scare", "pall", "frighten away", "scare off", "daunted"]}, {"answer": "daunting", "hint": "synonyms for daunting", "clues": ["scare away", "frighten off", "dash", "daunt", "scare", "pall", "frighten away", "scare off"]}, {"answer": "dazed", "hint": "synonyms for dazed", "clues": ["bedaze", "stun", "daze", "dazzle"]}, {"answer": "deadened", "hint": "synonyms for deadened", "clues": ["girdle", "dampen", "deaden", "blunt", "damp"]}, {"answer": "deadening", "hint": "synonyms for deadening", "clues": ["girdle", "dampen", "deaden", "blunt", "damp"]}, {"answer": "debased", "hint": "synonyms for debased", "clues": ["deprave", "stretch", "pervert", "adulterate", "corrupt", "load", "demoralize", "vitiate", "dilute", "debauch", "alloy", "misdirect", "profane", "subvert", "debase"]}, {"answer": "debasing", "hint": "synonyms for debasing", "clues": ["deprave", "stretch", "pervert", "adulterate", "corrupt", "load", "demoralize", "vitiate", "dilute", "debauch", "alloy", "misdirect", "profane", "subvert", "debase", "debasing"]}, {"answer": "debauched", "hint": "synonyms for debauched", "clues": ["deprave", "pervert", "corrupt", "demoralize", "vitiate", "debauch", "misdirect", "profane", "subvert", "debase"]}, {"answer": "decayed", "hint": "synonyms for decayed", "clues": ["crumble", "decompose", "dilapidate", "decay", "disintegrate", "decayed"]}, {"answer": "deceased", "hint": "synonyms for deceased", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away"]}, {"answer": "decided", "hint": "synonyms for decided", "clues": ["resolve", "adjudicate", "determine", "decide", "settle", "make up one's mind"]}, {"answer": "deciding", "hint": "synonyms for deciding", "clues": ["resolve", "adjudicate", "determine", "decide", "settle", "make up one's mind", "deciding"]}, {"answer": "deciphered", "hint": "synonyms for deciphered", "clues": ["trace", "decrypt", "decode", "decipher"]}, {"answer": "declared", "hint": "synonyms for declared", "clues": ["hold", "announce", "adjudge", "declare"]}, {"answer": "decorated", "hint": "synonyms for decorated", "clues": ["decorate", "embellish", "ornament", "beautify", "adorn", "deck", "dress", "grace"]}, {"answer": "decreased", "hint": "synonyms for decreased", "clues": ["diminish", "lessen", "decrease", "minify", "fall"]}, {"answer": "decreasing", "hint": "synonyms for decreasing", "clues": ["diminish", "lessen", "decrease", "minify", "fall", "decreasing"]}, {"answer": "dedicated", "hint": "synonyms for dedicated", "clues": ["dedicate", "commit", "devote", "consecrate", "give"]}, {"answer": "deepening", "hint": "synonyms for deepening", "clues": ["deepen", "change", "intensify", "compound", "heighten"]}, {"answer": "defeated", "hint": "synonyms for defeated", "clues": ["vote out", "vote down", "defeat", "overcome", "shoot down", "get the better of", "kill"]}, {"answer": "defending", "hint": "synonyms for defending", "clues": ["support", "fight down", "oppose", "defend", "represent", "fight back", "maintain", "fight", "champion", "hold", "fend for", "guard"]}, {"answer": "defiled", "hint": "synonyms for defiled", "clues": ["sully", "maculate", "defile", "corrupt", "taint", "befoul", "stain", "foul", "tarnish", "cloud"]}, {"answer": "defined", "hint": "synonyms for defined", "clues": ["specify", "delimit", "limit", "set", "define", "delimitate", "delineate", "determine", "fix"]}, {"answer": "deformed", "hint": "synonyms for deformed", "clues": ["change shape", "flex", "twist", "change form", "wring", "deform", "distort", "bend", "turn", "strain", "contort"]}, {"answer": "degraded", "hint": "synonyms for degraded", "clues": ["degrade", "cheapen", "disgrace", "take down", "put down", "demean"]}, {"answer": "degrading", "hint": "synonyms for degrading", "clues": ["degrade", "cheapen", "disgrace", "take down", "put down", "demean", "degrading"]}, {"answer": "dejected", "hint": "synonyms for dejected", "clues": ["dismay", "demoralize", "depress", "dispirit", "deject", "cast down", "get down"]}, {"answer": "delayed", "hint": "synonyms for delayed", "clues": ["hold up", "stay", "retard", "delay", "check", "detain", "delayed"]}, {"answer": "deliberate", "hint": "synonyms for deliberate", "clues": ["consider", "moot", "debate", "turn over", "deliberate"]}, {"answer": "delighted", "hint": "synonyms for delighted", "clues": ["please", "enchant", "enthral", "transport", "revel", "enrapture", "ravish", "delight", "enjoy"]}, {"answer": "delimited", "hint": "synonyms for delimited", "clues": ["specify", "delimit", "define", "demarcate", "delimitate", "delineate", "subtend"]}, {"answer": "delineate", "hint": "synonyms for delineate", "clues": ["specify", "delimit", "limn", "outline", "define", "line", "delimitate", "trace", "describe", "draw", "delineate"]}, {"answer": "delineated", "hint": "synonyms for delineated", "clues": ["specify", "delimit", "limn", "outline", "define", "line", "delimitate", "trace", "describe", "delineate", "draw"]}, {"answer": "demanding", "hint": "synonyms for demanding", "clues": ["ask", "necessitate", "need", "involve", "take", "exact", "postulate", "require", "call for", "demand"]}, {"answer": "demeaning", "hint": "synonyms for demeaning", "clues": ["degrade", "disgrace", "take down", "put down", "demean"]}, {"answer": "demolished", "hint": "synonyms for demolished", "clues": ["pulverize", "crush", "demolish", "destroy", "smash"]}, {"answer": "demonstrated", "hint": "synonyms for demonstrated", "clues": ["certify", "prove", "demonstrate", "attest", "shew", "establish", "evidence", "march", "show", "manifest", "exhibit", "present", "demo"]}, {"answer": "demoralised", "hint": "synonyms for demoralised", "clues": ["deprave", "demoralize", "dispirit", "depress", "subvert", "deject", "debase", "cast down", "pervert", "dismay", "corrupt", "vitiate", "debauch", "misdirect", "profane", "get down"]}, {"answer": "demoralising", "hint": "synonyms for demoralising", "clues": ["deprave", "demoralize", "dispirit", "depress", "subvert", "deject", "debase", "cast down", "pervert", "dismay", "corrupt", "vitiate", "debauch", "misdirect", "profane", "get down", "demoralising"]}, {"answer": "demoralized", "hint": "synonyms for demoralized", "clues": ["deprave", "demoralize", "dispirit", "depress", "subvert", "deject", "debase", "cast down", "pervert", "dismay", "corrupt", "vitiate", "debauch", "misdirect", "profane", "get down"]}, {"answer": "demoralizing", "hint": "synonyms for demoralizing", "clues": ["deprave", "demoralize", "dispirit", "depress", "subvert", "deject", "debase", "cast down", "pervert", "dismay", "corrupt", "vitiate", "debauch", "misdirect", "profane", "get down", "demoralizing"]}, {"answer": "denigrating", "hint": "synonyms for denigrating", "clues": ["sully", "belittle", "smear", "defame", "asperse", "calumniate", "derogate", "slander", "minimize", "denigrate", "besmirch", "denigrating"]}, {"answer": "departed", "hint": "synonyms for departed", "clues": ["quit", "go", "take off", "go away", "start out", "set forth", "vary", "depart", "leave", "take leave", "set out", "set off", "start", "part", "sidetrack", "deviate", "straggle", "pull up stakes", "digress", "diverge"]}, {"answer": "depicted", "hint": "synonyms for depicted", "clues": ["limn", "portray", "render", "describe", "picture", "show", "draw", "depict"]}, {"answer": "depleted", "hint": "synonyms for depleted", "clues": ["wipe out", "eat", "exhaust", "run through", "deplete", "eat up", "consume", "use up"]}, {"answer": "depraved", "hint": "synonyms for depraved", "clues": ["deprave", "pervert", "corrupt", "demoralize", "vitiate", "debauch", "misdirect", "profane", "subvert", "debase"]}, {"answer": "depreciating", "hint": "synonyms for depreciating", "clues": ["undervalue", "devalue", "depreciate", "vilipend", "depreciating"]}, {"answer": "depressed", "hint": "synonyms for depressed", "clues": ["dismay", "demoralize", "depress", "dispirit", "press down", "deject", "cast down", "lower", "get down"]}, {"answer": "depressing", "hint": "synonyms for depressing", "clues": ["dismay", "demoralize", "depress", "dispirit", "press down", "deject", "cast down", "lower", "get down"]}, {"answer": "deprived", "hint": "synonyms for deprived", "clues": ["impoverish", "strip", "deprive", "divest"]}, {"answer": "deranged", "hint": "synonyms for deranged", "clues": ["perturb", "unbalance", "derange", "throw out of kilter"]}, {"answer": "derived", "hint": "synonyms for derived", "clues": ["come", "educe", "derive", "gain", "deduct", "infer", "descend"]}, {"answer": "descending", "hint": "synonyms for descending", "clues": ["deign", "settle", "go down", "come down", "come", "condescend", "derive", "fall", "descend"]}, {"answer": "described", "hint": "synonyms for described", "clues": ["key", "identify", "name", "report", "line", "key out", "trace", "describe", "delineate", "draw", "discover", "account", "depict", "distinguish"]}, {"answer": "desecrated", "hint": "synonyms for desecrated", "clues": ["deconsecrate", "profane", "unhallow", "violate", "outrage", "desecrated"]}, {"answer": "deserted", "hint": "synonyms for deserted", "clues": ["abandon", "desert", "defect", "desolate", "forsake"]}, {"answer": "designate", "hint": "synonyms for designate", "clues": ["doom", "depute", "specify", "destine", "delegate", "denominate", "assign", "intend", "indicate", "fate", "show", "point", "designate"]}, {"answer": "designed", "hint": "synonyms for designed", "clues": ["plan", "contrive", "design", "project"]}, {"answer": "designing", "hint": "synonyms for designing", "clues": ["plan", "contrive", "design", "project"]}, {"answer": "desired", "hint": "synonyms for desired", "clues": ["want", "trust", "hope", "desire"]}, {"answer": "desolate", "hint": "synonyms for desolate", "clues": ["lay waste to", "depopulate", "devastate", "abandon", "scourge", "desert", "ravage", "waste", "forsake", "desolate"]}, {"answer": "despised", "hint": "synonyms for despised", "clues": ["despise", "scorn", "disdain", "contemn"]}, {"answer": "despoiled", "hint": "synonyms for despoiled", "clues": ["despoil", "rape", "spoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "violate", "ransack"]}, {"answer": "destined", "hint": "synonyms for destined", "clues": ["doom", "specify", "destine", "designate", "intend", "fate"]}, {"answer": "destroyed", "hint": "synonyms for destroyed", "clues": ["put down", "destruct", "demolish", "ruin", "destroy"]}, {"answer": "detected", "hint": "synonyms for detected", "clues": ["find", "notice", "observe", "discover", "detect"]}, {"answer": "determined", "hint": "synonyms for determined", "clues": ["specify", "limit", "define", "find", "determine", "fix", "mold", "make up one's mind", "influence", "learn", "watch", "decide", "square off", "settle", "see", "set", "check", "regulate", "shape", "find out", "ascertain", "square up"]}, {"answer": "determining", "hint": "synonyms for determining", "clues": ["specify", "limit", "define", "find", "determine", "fix", "mold", "make up one's mind", "influence", "learn", "watch", "decide", "square off", "settle", "see", "set", "check", "regulate", "shape", "find out", "ascertain", "square up", "determining"]}, {"answer": "devastating", "hint": "synonyms for devastating", "clues": ["scourge", "waste", "lay waste to", "desolate", "ravage", "devastate", "devastating"]}, {"answer": "developed", "hint": "synonyms for developed", "clues": ["break", "make grow", "formulate", "modernise", "uprise", "prepare", "train", "build up", "rise", "germinate", "explicate", "produce", "develop", "acquire", "get", "evolve", "spring up", "originate", "educate", "recrudesce", "grow"]}, {"answer": "developing", "hint": "synonyms for developing", "clues": ["break", "make grow", "formulate", "modernise", "uprise", "prepare", "train", "build up", "rise", "germinate", "explicate", "produce", "develop", "acquire", "get", "evolve", "spring up", "originate", "educate", "recrudesce", "grow"]}, {"answer": "deviate", "hint": "synonyms for deviate", "clues": ["vary", "diverge", "divert", "depart", "deviate"]}, {"answer": "devoted", "hint": "synonyms for devoted", "clues": ["dedicate", "commit", "pay", "devote", "consecrate", "give"]}, {"answer": "devouring", "hint": "synonyms for devouring", "clues": ["devour", "go through", "down", "guttle", "pig", "raven", "consume"]}, {"answer": "differentiated", "hint": "synonyms for differentiated", "clues": ["separate", "mark", "specialise", "differentiate", "severalize", "tell", "speciate", "secern", "secernate", "tell apart", "distinguish"]}, {"answer": "diffuse", "hint": "synonyms for diffuse", "clues": ["fan out", "disperse", "circulate", "pervade", "circularise", "disseminate", "permeate", "pass around", "spread out", "propagate", "imbue", "distribute", "spread", "broadcast", "penetrate", "riddle", "interpenetrate", "diffuse"]}, {"answer": "diffused", "hint": "synonyms for diffused", "clues": ["fan out", "circulate", "disperse", "pervade", "circularise", "disseminate", "permeate", "pass around", "spread out", "diffuse", "propagate", "imbue", "distribute", "spread", "broadcast", "penetrate", "riddle", "interpenetrate"]}, {"answer": "diffusing", "hint": "synonyms for diffusing", "clues": ["fan out", "circulate", "disperse", "pervade", "circularise", "disseminate", "permeate", "pass around", "spread out", "diffuse", "propagate", "imbue", "distribute", "spread", "broadcast", "penetrate", "riddle", "interpenetrate", "diffusing"]}, {"answer": "dilute", "hint": "synonyms for dilute", "clues": ["stretch", "reduce", "cut", "adulterate", "load", "thin", "thin out", "debase", "dilute"]}, {"answer": "diluted", "hint": "synonyms for diluted", "clues": ["stretch", "reduce", "cut", "adulterate", "load", "dilute", "thin", "thin out", "debase"]}, {"answer": "dim", "hint": "synonyms for dim", "clues": ["blur", "slur", "dip", "blind", "dim"]}, {"answer": "diminished", "hint": "synonyms for diminished", "clues": ["diminish", "belittle", "lessen", "decrease", "fall"]}, {"answer": "diminishing", "hint": "synonyms for diminishing", "clues": ["diminish", "belittle", "lessen", "decrease", "fall"]}, {"answer": "dimmed", "hint": "synonyms for dimmed", "clues": ["slur", "dip", "dim", "blur", "blind", "dimmed"]}, {"answer": "dipped", "hint": "synonyms for dipped", "clues": ["sink", "dip", "dim", "souse", "douse", "dunk", "duck", "plunge", "dipped"]}, {"answer": "direct", "hint": "synonyms for direct", "clues": ["maneuver", "send", "train", "lead", "aim", "place", "point", "channelise", "orchestrate", "take aim", "organize", "target", "take", "manoeuvre", "head", "steer", "guide", "conduct", "engineer", "mastermind", "address", "calculate", "direct"]}, {"answer": "directed", "hint": "synonyms for directed", "clues": ["maneuver", "direct", "send", "train", "lead", "aim", "place", "point", "channelise", "orchestrate", "take aim", "organize", "target", "take", "manoeuvre", "head", "steer", "guide", "conduct", "engineer", "mastermind", "address", "calculate"]}, {"answer": "directing", "hint": "synonyms for directing", "clues": ["maneuver", "direct", "send", "train", "lead", "aim", "place", "point", "channelise", "orchestrate", "take aim", "organize", "target", "take", "manoeuvre", "head", "steer", "guide", "conduct", "engineer", "mastermind", "address", "calculate"]}, {"answer": "dirty", "hint": "synonyms for dirty", "clues": ["soil", "colly", "grime", "begrime", "bemire", "dirty"]}, {"answer": "disabled", "hint": "synonyms for disabled", "clues": ["invalid", "handicap", "disenable", "incapacitate", "disabled"]}, {"answer": "disabling", "hint": "synonyms for disabling", "clues": ["invalid", "handicap", "disenable", "incapacitate", "disabling"]}, {"answer": "disaffected", "hint": "synonyms for disaffected", "clues": ["estrange", "disaffect", "alien", "alienate"]}, {"answer": "discarded", "hint": "synonyms for discarded", "clues": ["dispose", "put away", "cast away", "toss", "toss out", "chuck out", "toss away", "fling", "throw away", "cast aside", "throw out", "cast out", "discard"]}, {"answer": "discerning", "hint": "synonyms for discerning", "clues": ["recognize", "spot", "discern", "pick out", "make out", "tell apart", "distinguish"]}, {"answer": "discharged", "hint": "synonyms for discharged", "clues": ["exonerate", "eject", "dispatch", "exculpate", "fire", "expel", "drop off", "complete", "acquit", "drop", "unload", "discharge", "free", "assoil", "muster out", "put down", "exhaust", "empty", "set down", "release", "go off", "clear"]}, {"answer": "disciplined", "hint": "synonyms for disciplined", "clues": ["condition", "sort out", "train", "correct", "check", "discipline"]}, {"answer": "disclosed", "hint": "synonyms for disclosed", "clues": ["break", "unwrap", "expose", "give away", "let on", "reveal", "bring out", "disclose", "divulge", "discover", "let out"]}, {"answer": "discombobulated", "hint": "synonyms for discombobulated", "clues": ["throw", "bemuse", "confuse", "befuddle", "discombobulate", "bedevil", "confound", "bewilder", "fox"]}, {"answer": "discomfited", "hint": "synonyms for discomfited", "clues": ["discomfit", "untune", "discompose", "disconcert", "upset"]}, {"answer": "discomposed", "hint": "synonyms for discomposed", "clues": ["discomfit", "untune", "discompose", "disconcert", "upset"]}, {"answer": "disconcerted", "hint": "synonyms for disconcerted", "clues": ["discomfit", "untune", "confuse", "put off", "disconcert", "upset", "discompose", "flurry"]}, {"answer": "disconcerting", "hint": "synonyms for disconcerting", "clues": ["discomfit", "untune", "confuse", "put off", "disconcert", "upset", "discompose", "flurry"]}, {"answer": "discontinued", "hint": "synonyms for discontinued", "clues": ["quit", "break", "give up", "discontinue", "stop", "cease", "break off", "lay off"]}, {"answer": "discouraged", "hint": "synonyms for discouraged", "clues": ["admonish", "warn", "deter", "discourage"]}, {"answer": "discouraging", "hint": "synonyms for discouraging", "clues": ["admonish", "warn", "deter", "discourage", "discouraging"]}, {"answer": "discovered", "hint": "synonyms for discovered", "clues": ["break", "observe", "chance upon", "find", "detect", "attain", "light upon", "unwrap", "notice", "see", "expose", "describe", "bring out", "get a line", "find out", "get wind", "key", "happen upon", "name", "strike", "let on", "hear", "come upon", "reveal", "pick up", "disclose", "divulge", "discover", "let out", "key out", "learn", "distinguish", "come across", "identify", "give away", "get word", "fall upon"]}, {"answer": "discriminating", "hint": "synonyms for discriminating", "clues": ["know apart", "discriminate", "single out", "separate", "discriminating"]}, {"answer": "disentangled", "hint": "synonyms for disentangled", "clues": ["unwind", "comb", "extricate", "straighten out", "disencumber", "disentangle", "disembroil", "untangle", "unsnarl", "disinvolve", "comb out"]}, {"answer": "disgraced", "hint": "synonyms for disgraced", "clues": ["shame", "put down", "demean", "discredit", "dishonour", "degrade", "disgrace", "attaint", "take down"]}, {"answer": "disgusted", "hint": "synonyms for disgusted", "clues": ["revolt", "nauseate", "repel", "gross out", "disgust", "churn up", "sicken"]}, {"answer": "disgusting", "hint": "synonyms for disgusting", "clues": ["revolt", "nauseate", "repel", "gross out", "disgust", "churn up", "sicken"]}, {"answer": "dished", "hint": "synonyms for dished", "clues": ["serve up", "serve", "dish out", "dish", "dish up", "dished"]}, {"answer": "dishonored", "hint": "synonyms for dishonored", "clues": ["assault", "shame", "rape", "dishonour", "disgrace", "attaint", "ravish", "violate", "outrage", "dishonored"]}, {"answer": "disjoint", "hint": "synonyms for disjoint", "clues": ["disjoin", "disassociate", "divorce", "disunite", "disarticulate"]}, {"answer": "disjointed", "hint": "synonyms for disjointed", "clues": ["disarticulate", "dissociate", "disjoint", "divorce", "disunite"]}, {"answer": "dislocated", "hint": "synonyms for dislocated", "clues": ["luxate", "slip", "splay", "dislocate"]}, {"answer": "dismantled", "hint": "synonyms for dismantled", "clues": ["break up", "tear down", "raze", "rase", "level", "strip", "disassemble", "break apart", "pull down", "take down", "dismantle", "take apart"]}, {"answer": "dismayed", "hint": "synonyms for dismayed", "clues": ["dismay", "appall", "horrify", "demoralize", "depress", "dispirit", "deject", "cast down", "alarm", "get down"]}, {"answer": "dismaying", "hint": "synonyms for dismaying", "clues": ["dismay", "appall", "horrify", "demoralize", "depress", "dispirit", "deject", "cast down", "alarm", "get down"]}, {"answer": "dismissed", "hint": "synonyms for dismissed", "clues": ["terminate", "dismiss", "force out", "fire", "usher out", "give the sack", "drop", "send away", "send packing", "displace", "give the axe", "push aside", "discount", "brush off", "ignore", "dissolve", "disregard", "give notice", "throw out", "can", "sack"]}, {"answer": "disobliging", "hint": "synonyms for disobliging", "clues": ["bother", "incommode", "trouble", "inconvenience", "discommode", "put out", "disoblige", "disobliging"]}, {"answer": "disordered", "hint": "synonyms for disordered", "clues": ["cark", "trouble", "unhinge", "disarray", "distract", "disquiet", "perturb", "disorder"]}, {"answer": "dispensed", "hint": "synonyms for dispensed", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish out"]}, {"answer": "dispersed", "hint": "synonyms for dispersed", "clues": ["break up", "disperse", "circulate", "dispel", "circularise", "disseminate", "pass around", "spread out", "diffuse", "propagate", "sprinkle", "distribute", "dot", "broadcast", "spread", "dust", "dissipate", "scatter"]}, {"answer": "dispirited", "hint": "synonyms for dispirited", "clues": ["dismay", "demoralize", "depress", "dispirit", "deject", "cast down", "get down"]}, {"answer": "dispiriting", "hint": "synonyms for dispiriting", "clues": ["dismay", "demoralize", "depress", "dispirit", "deject", "cast down", "get down"]}, {"answer": "disposed", "hint": "synonyms for disposed", "clues": ["incline", "dispose", "put away", "cast out", "cast away", "toss", "toss out", "chuck out", "qualify", "throw away", "cast aside", "throw out", "discard", "fling", "toss away"]}, {"answer": "disputed", "hint": "synonyms for disputed", "clues": ["argufy", "altercate", "quarrel", "gainsay", "scrap", "dispute", "challenge"]}, {"answer": "disquieted", "hint": "synonyms for disquieted", "clues": ["cark", "trouble", "unhinge", "disquiet", "perturb", "disorder", "distract"]}, {"answer": "disquieting", "hint": "synonyms for disquieting", "clues": ["cark", "trouble", "unhinge", "disquiet", "perturb", "disorder", "distract"]}, {"answer": "disregarded", "hint": "synonyms for disregarded", "clues": ["push aside", "cut", "discount", "brush off", "dismiss", "ignore", "snub", "disregard", "neglect"]}, {"answer": "disrupted", "hint": "synonyms for disrupted", "clues": ["interrupt", "break up", "cut off", "disrupt"]}, {"answer": "dissected", "hint": "synonyms for dissected", "clues": ["dissect", "analyse", "take apart", "break down"]}, {"answer": "dissenting", "hint": "synonyms for dissenting", "clues": ["differ", "protest", "resist", "take issue", "disagree", "dissent"]}, {"answer": "dissipated", "hint": "synonyms for dissipated", "clues": ["break up", "fool away", "disperse", "shoot", "frivol away", "dispel", "fritter away", "fritter", "fool", "spread out", "dissipate", "scatter"]}, {"answer": "dissolved", "hint": "synonyms for dissolved", "clues": ["break up", "resolve", "dismiss", "unthaw", "disband", "fade out", "fade away", "unfreeze", "dethaw", "dissolve", "thaw", "melt"]}, {"answer": "distinguished", "hint": "synonyms for distinguished", "clues": ["key", "name", "differentiate", "tell", "secern", "discover", "make out", "key out", "distinguish", "recognise", "identify", "separate", "spot", "mark", "severalize", "discern", "signalise", "secernate", "pick out", "describe", "tell apart"]}, {"answer": "distorted", "hint": "synonyms for distorted", "clues": ["color", "twist", "garble", "wring", "deform", "distort", "falsify", "warp", "tinge", "strain", "contort", "twine"]}, {"answer": "distracted", "hint": "synonyms for distracted", "clues": ["cark", "trouble", "unhinge", "distract", "disquiet", "perturb", "disorder", "deflect"]}, {"answer": "distributed", "hint": "synonyms for distributed", "clues": ["give out", "deal out", "circulate", "disperse", "deal", "shell out", "circularise", "disseminate", "pass around", "hand out", "diffuse", "propagate", "distribute", "lot", "mete out", "pass on", "stagger", "allot", "pass out", "dole out", "spread", "broadcast", "parcel out", "administer", "dish out"]}, {"answer": "disturbed", "hint": "synonyms for disturbed", "clues": ["commove", "interrupt", "trouble", "disturb", "raise up", "upset", "touch", "vex", "agitate", "shake up", "stir up"]}, {"answer": "disturbing", "hint": "synonyms for disturbing", "clues": ["commove", "interrupt", "trouble", "disturb", "raise up", "upset", "touch", "vex", "agitate", "shake up", "stir up"]}, {"answer": "disunited", "hint": "synonyms for disunited", "clues": ["separate", "dissociate", "part", "disjoint", "divide", "divorce", "disunite"]}, {"answer": "diverging", "hint": "synonyms for diverging", "clues": ["deviate", "depart", "diverge", "vary", "diverging"]}, {"answer": "diversified", "hint": "synonyms for diversified", "clues": ["radiate", "broaden", "branch out", "diversify", "diversified"]}, {"answer": "diverted", "hint": "synonyms for diverted", "clues": ["disport", "deviate", "amuse", "hive off", "divert"]}, {"answer": "diverting", "hint": "synonyms for diverting", "clues": ["disport", "deviate", "amuse", "hive off", "divert"]}, {"answer": "divided", "hint": "synonyms for divided", "clues": ["split", "split up", "separate", "carve up", "part", "divide", "dissever", "fraction", "disunite"]}, {"answer": "divorced", "hint": "synonyms for divorced", "clues": ["disassociate", "divorce", "disunite", "split up", "disjoint"]}, {"answer": "doddering", "hint": "synonyms for doddering", "clues": ["coggle", "toddle", "waddle", "dodder", "paddle", "totter"]}, {"answer": "dogged", "hint": "synonyms for dogged", "clues": ["tail", "tag", "chase after", "go after", "give chase", "dog", "chase", "track", "dogged"]}, {"answer": "dogging", "hint": "synonyms for dogging", "clues": ["tail", "tag", "chase after", "go after", "give chase", "dog", "chase", "track", "dogging"]}, {"answer": "domesticated", "hint": "synonyms for domesticated", "clues": ["domesticate", "cultivate", "domesticise", "naturalize", "reclaim", "tame"]}, {"answer": "dominated", "hint": "synonyms for dominated", "clues": ["prevail", "reign", "overtop", "predominate", "master", "rule", "overshadow", "dominate", "eclipse", "overlook", "command"]}, {"answer": "dominating", "hint": "synonyms for dominating", "clues": ["prevail", "reign", "overtop", "predominate", "master", "rule", "overshadow", "dominate", "eclipse", "overlook", "command", "dominating"]}, {"answer": "done", "hint": "synonyms for done", "clues": ["do", "make", "suffice", "practise", "coiffure", "exercise", "fare", "execute", "make out", "dress", "coif", "serve", "act", "come", "set", "get along", "perform", "behave", "manage", "answer", "cause", "arrange", "done"]}, {"answer": "doomed", "hint": "synonyms for doomed", "clues": ["doom", "sentence", "fate", "destine", "condemn", "designate", "doomed"]}, {"answer": "doting", "hint": "synonyms for doting", "clues": ["disperse", "dot", "stud", "constellate", "dust", "scatter", "sprinkle"]}, {"answer": "dotted", "hint": "synonyms for dotted", "clues": ["disperse", "dot", "stud", "constellate", "dust", "scatter", "sprinkle", "dotted"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["reduplicate", "double over", "repeat", "double up", "double"]}, {"answer": "doubled", "hint": "synonyms for doubled", "clues": ["double", "duplicate", "double up", "repeat", "replicate", "double over"]}, {"answer": "down", "hint": "synonyms for down", "clues": ["devour", "fine-tune", "pour down", "belt down", "drink down", "pop", "pull down", "shoot down", "refine", "kill", "toss off", "go through", "polish", "knock down", "cut down", "land", "consume", "push down", "down"]}, {"answer": "dragging", "hint": "synonyms for dragging", "clues": ["drag on", "embroil", "drop back", "sweep up", "hale", "draw", "trail", "get behind", "haul", "drop behind", "cart", "hang back", "puff", "sweep", "tangle", "dredge", "drag out", "scuff", "drag", "dragging"]}, {"answer": "drained", "hint": "synonyms for drained", "clues": ["enfeeble", "run out", "drain", "debilitate", "drained"]}, {"answer": "draining", "hint": "synonyms for draining", "clues": ["enfeeble", "run out", "drain", "debilitate"]}, {"answer": "draped", "hint": "synonyms for draped", "clues": ["robe", "drape", "clothe", "cloak"]}, {"answer": "drawn", "hint": "synonyms for drawn", "clues": ["take up", "disembowel", "draw", "take in", "run", "pull out", "soak up", "withdraw", "pull", "imbibe", "absorb", "pull in", "reap", "describe", "take out", "suck up", "attract", "pull back", "draw and quarter", "thread", "force", "drag", "make", "draw off", "line", "string", "cast", "sop up", "suck", "tie", "puff", "get out", "quarter", "guide", "trace", "draw in", "delineate", "eviscerate", "pass", "depict", "get"]}, {"answer": "dreamed", "hint": "synonyms for dreamed", "clues": ["dream", "woolgather", "daydream", "stargaze", "dreamed"]}, {"answer": "drenched", "hint": "synonyms for drenched", "clues": ["dowse", "souse", "douse", "imbrue", "swamp", "soak", "sop", "drench"]}, {"answer": "dress", "hint": "synonyms for dress", "clues": ["garment", "do", "clip", "primp", "coiffure", "enclothe", "cut back", "tog", "apparel", "plume", "habilitate", "snip", "raiment", "get dressed", "decorate", "trim", "coif", "dress out", "preen", "set", "groom", "garnish", "garb", "prune", "crop", "line up", "curry", "fit out", "dress up", "arrange", "lop", "dress"]}, {"answer": "dressed", "hint": "synonyms for dressed", "clues": ["garment", "do", "clip", "primp", "coiffure", "enclothe", "cut back", "tog", "apparel", "plume", "habilitate", "dress", "snip", "raiment", "get dressed", "decorate", "trim", "coif", "dress out", "preen", "set", "groom", "garnish", "garb", "prune", "crop", "line up", "curry", "fit out", "dress up", "arrange", "lop", "dressed"]}, {"answer": "drifting", "hint": "synonyms for drifting", "clues": ["err", "freewheel", "ramble", "wander", "drift", "roll", "be adrift", "float", "tramp", "cast", "stray", "range", "rove", "blow", "swan", "vagabond", "roam"]}, {"answer": "drilled", "hint": "synonyms for drilled", "clues": ["drill", "practise", "exercise", "bore", "drilled"]}, {"answer": "driven", "hint": "synonyms for driven", "clues": ["labour", "take", "push", "repel", "motor", "get", "ride", "repulse", "force back", "push back", "aim", "ram", "force", "tug", "drive", "beat back"]}, {"answer": "driving", "hint": "synonyms for driving", "clues": ["labour", "take", "push", "repel", "motor", "get", "ride", "repulse", "force back", "push back", "aim", "ram", "force", "tug", "drive", "beat back", "driving"]}, {"answer": "drooping", "hint": "synonyms for drooping", "clues": ["swag", "flag", "wilt", "loll", "droop"]}, {"answer": "dropping", "hint": "synonyms for dropping", "clues": ["leave out", "drip", "strike down", "dismiss", "shed", "cast off", "drop off", "send away", "unload", "discharge", "sink", "overleap", "deteriorate", "dangle", "throw off", "pretermit", "devolve", "fell", "spend", "drop", "cast", "dribble", "throw away", "send packing", "neglect", "miss", "throw", "flatten", "degenerate", "omit", "swing", "knock off", "expend", "shake off", "put down", "set down", "drop down", "overlook", "dropping"]}, {"answer": "drudging", "hint": "synonyms for drudging", "clues": ["labour", "fag", "drudge", "grind", "travail", "moil", "toil", "dig", "drudging"]}, {"answer": "drunk", "hint": "synonyms for drunk", "clues": ["imbibe", "drink", "pledge", "drink in", "toast", "booze", "salute", "fuddle", "wassail", "tope", "drunk"]}, {"answer": "dull", "hint": "synonyms for dull", "clues": ["tone down", "mute", "damp", "pall", "numb", "muffle", "dampen", "blunt", "benumb", "dull"]}, {"answer": "dulled", "hint": "synonyms for dulled", "clues": ["tone down", "mute", "damp", "pall", "dull", "numb", "muffle", "dampen", "blunt", "benumb", "dulled"]}, {"answer": "dumbfounded", "hint": "synonyms for dumbfounded", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "dumbfounding", "hint": "synonyms for dumbfounding", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "dun", "hint": "synonyms for dun", "clues": ["crucify", "rag", "torment", "bedevil", "frustrate", "dun"]}, {"answer": "duplicate", "hint": "synonyms for duplicate", "clues": ["reduplicate", "double", "twin", "parallel", "repeat"]}, {"answer": "dying", "hint": "synonyms for dying", "clues": ["decease", "cash in one's chips", "go", "pop off", "break", "give out", "go bad", "become flat", "expire", "die out", "drop dead", "conk out", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "pall", "perish", "give way", "snuff it", "pass", "kick the bucket", "break down", "fail", "pass away", "dying"]}, {"answer": "earned", "hint": "synonyms for earned", "clues": ["make", "realise", "earn", "pull in", "bring in", "gain", "garner", "take in", "clear", "earned"]}, {"answer": "eased", "hint": "synonyms for eased", "clues": ["still", "ease", "relieve", "allay", "facilitate", "comfort", "alleviate"]}, {"answer": "echoing", "hint": "synonyms for echoing", "clues": ["recall", "echo", "resound", "ring", "reverberate", "repeat"]}, {"answer": "edged", "hint": "synonyms for edged", "clues": ["butt on", "inch", "abut", "butt", "march", "butt against", "edge", "border", "adjoin"]}, {"answer": "edited", "hint": "synonyms for edited", "clues": ["edit out", "blue-pencil", "delete", "cut", "edit", "redact", "edited"]}, {"answer": "educated", "hint": "synonyms for educated", "clues": ["cultivate", "civilize", "prepare", "train", "educate", "school", "develop"]}, {"answer": "effervescing", "hint": "synonyms for effervescing", "clues": ["froth", "form bubbles", "effervesce", "sparkle", "foam", "fizz", "effervescing"]}, {"answer": "elaborate", "hint": "synonyms for elaborate", "clues": ["expatiate", "expound", "lucubrate", "exposit", "dilate", "expand", "work out", "rarify", "refine", "complicate", "enlarge", "flesh out", "elaborate"]}, {"answer": "elaborated", "hint": "synonyms for elaborated", "clues": ["expatiate", "expound", "lucubrate", "dilate", "expand", "elaborate", "exposit", "work out", "rarify", "refine", "complicate", "enlarge", "flesh out"]}, {"answer": "elapsed", "hint": "synonyms for elapsed", "clues": ["elapse", "glide by", "go along", "go by", "slip away", "pass", "slip by"]}, {"answer": "elated", "hint": "synonyms for elated", "clues": ["uplift", "elate", "lift up", "pick up", "intoxicate"]}, {"answer": "elating", "hint": "synonyms for elating", "clues": ["uplift", "elate", "lift up", "pick up", "intoxicate", "elating"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["promote", "get up", "lift", "bring up", "advance", "raise", "kick upstairs", "elevate", "upgrade"]}, {"answer": "elicited", "hint": "synonyms for elicited", "clues": ["extract", "provoke", "draw out", "fire", "evoke", "raise", "kindle", "educe", "arouse", "elicit"]}, {"answer": "embarrassed", "hint": "synonyms for embarrassed", "clues": ["blockade", "block", "stymie", "stymy", "abash", "obstruct", "embarrass", "hinder"]}, {"answer": "embarrassing", "hint": "synonyms for embarrassing", "clues": ["blockade", "block", "stymie", "stymy", "abash", "obstruct", "embarrass", "hinder"]}, {"answer": "embedded", "hint": "synonyms for embedded", "clues": ["embed", "plant", "imbed", "implant", "engraft", "embedded"]}, {"answer": "embezzled", "hint": "synonyms for embezzled", "clues": ["peculate", "malversate", "misappropriate", "defalcate", "embezzle"]}, {"answer": "embodied", "hint": "synonyms for embodied", "clues": ["be", "personify", "substantiate", "body forth", "incarnate", "embody", "embodied"]}, {"answer": "emboldened", "hint": "synonyms for emboldened", "clues": ["recreate", "embolden", "hearten", "cheer"]}, {"answer": "embroiled", "hint": "synonyms for embroiled", "clues": ["tangle", "sweep up", "sweep", "embroil", "drag", "drag in"]}, {"answer": "emerging", "hint": "synonyms for emerging", "clues": ["go forth", "come out", "emerge", "egress", "come forth", "issue", "emerging"]}, {"answer": "emphasised", "hint": "synonyms for emphasised", "clues": ["accent", "stress", "punctuate", "underscore", "underline", "emphasise", "accentuate"]}, {"answer": "emphasized", "hint": "synonyms for emphasized", "clues": ["accent", "stress", "underscore", "accentuate", "underline", "emphasise", "punctuate", "emphasized"]}, {"answer": "employed", "hint": "synonyms for employed", "clues": ["utilise", "engage", "employ", "hire", "apply", "use"]}, {"answer": "empowered", "hint": "synonyms for empowered", "clues": ["invest", "gift", "endow", "indue", "empower", "authorise", "endue"]}, {"answer": "empty", "hint": "synonyms for empty", "clues": ["abandon", "vacate", "void", "discharge", "empty"]}, {"answer": "enamored", "hint": "synonyms for enamored", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch", "enamored"]}, {"answer": "enchanted", "hint": "synonyms for enchanted", "clues": ["enchant", "captivate", "fascinate", "capture", "hex", "beguile", "enrapture", "catch", "becharm", "enamour", "ravish", "delight", "charm", "enthrall", "witch", "entrance", "glamour", "jinx", "transport", "bewitch"]}, {"answer": "enchanting", "hint": "synonyms for enchanting", "clues": ["enchant", "captivate", "fascinate", "capture", "hex", "beguile", "enrapture", "catch", "becharm", "enamour", "ravish", "delight", "charm", "enthrall", "witch", "entrance", "glamour", "jinx", "transport", "bewitch"]}, {"answer": "enclosed", "hint": "synonyms for enclosed", "clues": ["close in", "wrap", "enclose", "enwrap", "put in", "insert", "enfold", "hold in", "introduce", "shut in", "envelop", "confine", "stick in"]}, {"answer": "encompassing", "hint": "synonyms for encompassing", "clues": ["comprehend", "embrace", "encompass", "cover"]}, {"answer": "encouraged", "hint": "synonyms for encouraged", "clues": ["promote", "encourage", "advance", "boost", "further"]}, {"answer": "encouraging", "hint": "synonyms for encouraging", "clues": ["promote", "encourage", "advance", "boost", "further", "encouraging"]}, {"answer": "encroaching", "hint": "synonyms for encroaching", "clues": ["infringe", "impinge", "entrench", "encroach"]}, {"answer": "encumbered", "hint": "synonyms for encumbered", "clues": ["restrain", "constrain", "cumber", "encumbered"]}, {"answer": "endangered", "hint": "synonyms for endangered", "clues": ["expose", "menace", "scupper", "jeopardize", "queer", "endanger", "peril", "threaten", "imperil"]}, {"answer": "ended", "hint": "synonyms for ended", "clues": ["terminate", "end", "finish", "cease", "stop", "ended"]}, {"answer": "endowed", "hint": "synonyms for endowed", "clues": ["dower", "endow", "indue", "empower", "invest", "endue", "gift", "endowed"]}, {"answer": "enduring", "hint": "synonyms for enduring", "clues": ["wear", "go", "hold out", "last", "put up", "abide", "die hard", "hold up", "survive", "run", "suffer", "support", "prevail", "persist", "stomach", "brave", "live on", "live", "weather", "bear", "tolerate", "brook", "digest", "stand", "brave out", "endure", "stick out", "enduring"]}, {"answer": "energising", "hint": "synonyms for energising", "clues": ["brace", "excite", "energise", "arouse", "stimulate", "perk up", "energising"]}, {"answer": "energizing", "hint": "synonyms for energizing", "clues": ["brace", "excite", "energise", "arouse", "stimulate", "perk up", "energizing"]}, {"answer": "enervated", "hint": "synonyms for enervated", "clues": ["unnerve", "faze", "unsettle", "enervate"]}, {"answer": "enervating", "hint": "synonyms for enervating", "clues": ["unnerve", "faze", "unsettle", "enervate", "enervating"]}, {"answer": "enforced", "hint": "synonyms for enforced", "clues": ["impose", "enforce", "implement", "apply"]}, {"answer": "engaged", "hint": "synonyms for engaged", "clues": ["employ", "engross", "lease", "pursue", "betroth", "charter", "lock", "plight", "absorb", "hire", "enlist", "take", "affiance", "prosecute", "operate", "rent", "engage", "wage", "mesh", "occupy"]}, {"answer": "engaging", "hint": "synonyms for engaging", "clues": ["employ", "engross", "lease", "pursue", "betroth", "charter", "lock", "plight", "absorb", "hire", "enlist", "take", "affiance", "prosecute", "operate", "rent", "engage", "wage", "mesh", "occupy", "engaging"]}, {"answer": "engorged", "hint": "synonyms for engorged", "clues": ["ingurgitate", "overeat", "binge", "stuff", "scarf out", "gourmandize", "overgorge", "overindulge", "englut", "pig out", "engorge", "glut", "satiate", "gorge"]}, {"answer": "engraved", "hint": "synonyms for engraved", "clues": ["grave", "scratch", "etch", "engrave", "inscribe"]}, {"answer": "engrossed", "hint": "synonyms for engrossed", "clues": ["engulf", "immerse", "steep", "absorb", "engross", "occupy", "engage", "plunge", "soak up"]}, {"answer": "engrossing", "hint": "synonyms for engrossing", "clues": ["engulf", "immerse", "steep", "absorb", "engross", "occupy", "engage", "plunge", "soak up"]}, {"answer": "enkindled", "hint": "synonyms for enkindled", "clues": ["inflame", "provoke", "fire", "evoke", "raise", "kindle", "arouse", "conflagrate", "elicit", "enkindled"]}, {"answer": "enlarged", "hint": "synonyms for enlarged", "clues": ["expatiate", "magnify", "expound", "lucubrate", "dilate", "expand", "elaborate", "exposit", "blow up", "enlarge", "flesh out"]}, {"answer": "enlightened", "hint": "synonyms for enlightened", "clues": ["sort out", "edify", "irradiate", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "shed light on", "elucidate", "clear"]}, {"answer": "enlightening", "hint": "synonyms for enlightening", "clues": ["sort out", "edify", "irradiate", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "shed light on", "elucidate", "clear"]}, {"answer": "enlivened", "hint": "synonyms for enlivened", "clues": ["liven", "exalt", "invigorate", "liven up", "inspire", "animate", "enliven"]}, {"answer": "enlivening", "hint": "synonyms for enlivening", "clues": ["liven", "exalt", "invigorate", "liven up", "inspire", "animate", "enliven"]}, {"answer": "ennobling", "hint": "synonyms for ennobling", "clues": ["dignify", "entitle", "ennoble", "gentle", "ennobling"]}, {"answer": "enraptured", "hint": "synonyms for enraptured", "clues": ["transport", "enchant", "enrapture", "enthral", "ravish", "delight"]}, {"answer": "entangled", "hint": "synonyms for entangled", "clues": ["mat", "snarl", "entangle", "mire"]}, {"answer": "entertained", "hint": "synonyms for entertained", "clues": ["harbour", "think of", "flirt with", "nurse", "think about", "entertain", "toy with", "hold"]}, {"answer": "entertaining", "hint": "synonyms for entertaining", "clues": ["harbour", "think of", "flirt with", "nurse", "think about", "entertain", "toy with", "hold"]}, {"answer": "enthralled", "hint": "synonyms for enthralled", "clues": ["enchant", "enthral", "transport", "enrapture", "ravish", "delight", "enthralled"]}, {"answer": "enthralling", "hint": "synonyms for enthralling", "clues": ["enchant", "enthral", "transport", "enrapture", "ravish", "delight", "enthralling"]}, {"answer": "entitled", "hint": "synonyms for entitled", "clues": ["title", "entitle", "gentle", "ennoble"]}, {"answer": "entranced", "hint": "synonyms for entranced", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "spellbind", "charm", "bewitch"]}, {"answer": "entrancing", "hint": "synonyms for entrancing", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "spellbind", "charm", "bewitch", "entrancing"]}, {"answer": "entrenched", "hint": "synonyms for entrenched", "clues": ["entrench", "impinge", "encroach", "dig in"]}, {"answer": "enveloping", "hint": "synonyms for enveloping", "clues": ["envelop", "wrap", "enclose", "enwrap", "enfold"]}, {"answer": "envisioned", "hint": "synonyms for envisioned", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "foresee", "project", "image"]}, {"answer": "enwrapped", "hint": "synonyms for enwrapped", "clues": ["envelop", "wrap", "enclose", "enwrap", "enfold", "enwrapped"]}, {"answer": "equal", "hint": "synonyms for equal", "clues": ["equate", "match", "touch", "be", "equalize", "rival", "equal"]}, {"answer": "equipped", "hint": "synonyms for equipped", "clues": ["outfit", "fit out", "fit", "equip", "equipped"]}, {"answer": "erect", "hint": "synonyms for erect", "clues": ["raise", "rear", "set up", "put up", "erect"]}, {"answer": "eroded", "hint": "synonyms for eroded", "clues": ["gnaw at", "gnaw", "wear away", "eat at", "erode", "eat away", "fret"]}, {"answer": "erring", "hint": "synonyms for erring", "clues": ["err", "stray", "slip", "mistake", "drift"]}, {"answer": "escaped", "hint": "synonyms for escaped", "clues": ["fly the coop", "head for the hills", "bunk", "get away", "break loose", "scat", "run", "get by", "miss", "elude", "escape", "break away", "hightail it", "get out", "turn tail", "get off", "scarper", "lam", "run away", "take to the woods"]}, {"answer": "established", "hint": "synonyms for established", "clues": ["base", "institute", "make", "demonstrate", "set up", "found", "shew", "constitute", "plant", "prove", "launch", "ground", "establish", "instal", "lay down", "show", "give", "build"]}, {"answer": "esteemed", "hint": "synonyms for esteemed", "clues": ["think of", "take to be", "prise", "repute", "respect", "value", "look on", "esteem", "prize", "regard as"]}, {"answer": "estranged", "hint": "synonyms for estranged", "clues": ["disaffect", "alien", "estrange", "alienate"]}, {"answer": "estranging", "hint": "synonyms for estranging", "clues": ["disaffect", "alien", "estrange", "alienate", "estranging"]}, {"answer": "evaporated", "hint": "synonyms for evaporated", "clues": ["evaporate", "disappear", "vaporise", "melt"]}, {"answer": "evidenced", "hint": "synonyms for evidenced", "clues": ["certify", "prove", "demonstrate", "testify", "evidence", "attest", "tell", "bear witness", "show", "manifest"]}, {"answer": "evoked", "hint": "synonyms for evoked", "clues": ["put forward", "fire", "educe", "invoke", "kindle", "paint a picture", "conjure", "kick up", "conjure up", "bring up", "extract", "provoke", "draw out", "suggest", "raise", "evoke", "arouse", "stir", "call down", "elicit", "call forth"]}, {"answer": "exacerbating", "hint": "synonyms for exacerbating", "clues": ["exasperate", "worsen", "exacerbate", "aggravate", "exacerbating"]}, {"answer": "exacting", "hint": "synonyms for exacting", "clues": ["claim", "exact", "demand", "take"]}, {"answer": "exaggerated", "hint": "synonyms for exaggerated", "clues": ["magnify", "hyperbolize", "overstate", "overdraw", "exaggerate", "amplify", "overdo"]}, {"answer": "exalted", "hint": "synonyms for exalted", "clues": ["thrill", "exhilarate", "proclaim", "beatify", "exalt", "extol", "invigorate", "laud", "inspire", "animate", "tickle pink", "inebriate", "enliven", "glorify", "exalted"]}, {"answer": "exalting", "hint": "synonyms for exalting", "clues": ["thrill", "exhilarate", "proclaim", "beatify", "exalt", "extol", "invigorate", "laud", "inspire", "animate", "tickle pink", "inebriate", "enliven", "glorify"]}, {"answer": "exasperated", "hint": "synonyms for exasperated", "clues": ["worsen", "exacerbate", "exasperate", "incense", "aggravate", "infuriate"]}, {"answer": "exasperating", "hint": "synonyms for exasperating", "clues": ["worsen", "exacerbate", "exasperate", "incense", "aggravate", "infuriate", "exasperating"]}, {"answer": "exceeding", "hint": "synonyms for exceeding", "clues": ["outmatch", "outstrip", "top", "go past", "exceed", "surmount", "transcend", "outgo", "surpass", "pass", "outdo", "overstep", "outperform"]}, {"answer": "exchanged", "hint": "synonyms for exchanged", "clues": ["substitute", "switch", "change", "convert", "interchange", "commute", "switch over", "replace", "exchanged"]}, {"answer": "excited", "hint": "synonyms for excited", "clues": ["commove", "shake", "energize", "rouse", "excite", "turn on", "stimulate", "sex", "charge up", "agitate", "stir", "wind up", "charge", "shake up"]}, {"answer": "exciting", "hint": "synonyms for exciting", "clues": ["commove", "shake", "energize", "rouse", "excite", "turn on", "stimulate", "sex", "charge up", "agitate", "stir", "wind up", "charge", "shake up", "exciting"]}, {"answer": "excruciating", "hint": "synonyms for excruciating", "clues": ["torment", "rack", "torture", "excruciate", "excruciating"]}, {"answer": "exculpated", "hint": "synonyms for exculpated", "clues": ["exonerate", "assoil", "acquit", "exculpate", "discharge", "clear"]}, {"answer": "excused", "hint": "synonyms for excused", "clues": ["exempt", "beg off", "apologise", "explain", "excuse", "rationalise", "condone", "justify", "relieve", "let off", "pardon"]}, {"answer": "executed", "hint": "synonyms for executed", "clues": ["do", "fulfill", "action", "carry out", "carry through", "execute", "run", "perform", "accomplish", "put to death"]}, {"answer": "exemplifying", "hint": "synonyms for exemplifying", "clues": ["exemplify", "represent", "illustrate", "instance"]}, {"answer": "exempt", "hint": "synonyms for exempt", "clues": ["excuse", "relieve", "let off", "free", "exempt"]}, {"answer": "exhausted", "hint": "synonyms for exhausted", "clues": ["eject", "wash up", "wipe out", "tire", "expel", "run through", "deplete", "play out", "run down", "discharge", "tucker", "sap", "beat", "exhaust", "tucker out", "release", "eat up", "consume", "use up"]}, {"answer": "exhausting", "hint": "synonyms for exhausting", "clues": ["eject", "wash up", "wipe out", "tire", "expel", "run through", "deplete", "play out", "run down", "discharge", "tucker", "sap", "beat", "exhaust", "tucker out", "release", "eat up", "consume", "use up"]}, {"answer": "exhilarated", "hint": "synonyms for exhilarated", "clues": ["thrill", "exhilarate", "tickle pink", "inebriate", "beatify", "exalt"]}, {"answer": "exhilarating", "hint": "synonyms for exhilarating", "clues": ["thrill", "exhilarate", "tickle pink", "inebriate", "beatify", "exalt", "exhilarating"]}, {"answer": "existing", "hint": "synonyms for existing", "clues": ["be", "live", "survive", "exist", "subsist"]}, {"answer": "exonerated", "hint": "synonyms for exonerated", "clues": ["exonerate", "assoil", "acquit", "exculpate", "discharge", "clear"]}, {"answer": "expanded", "hint": "synonyms for expanded", "clues": ["expatiate", "thrive", "expound", "lucubrate", "dilate", "expand", "inflate", "elaborate", "exposit", "blow up", "boom", "flourish", "spread out", "amplify", "enlarge", "extend", "flesh out"]}, {"answer": "expected", "hint": "synonyms for expected", "clues": ["look", "ask", "wait", "have a bun in the oven", "carry", "require", "gestate", "bear", "expect", "anticipate"]}, {"answer": "experienced", "hint": "synonyms for experienced", "clues": ["go through", "see", "know", "receive", "live", "experience", "feel", "have", "get"]}, {"answer": "expired", "hint": "synonyms for expired", "clues": ["decease", "cash in one's chips", "go", "pop off", "breathe out", "expire", "exhale", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "run out", "pass away"]}, {"answer": "exploded", "hint": "synonyms for exploded", "clues": ["explode", "irrupt", "set off", "detonate", "burst", "blow up", "break loose", "burst forth"]}, {"answer": "exploited", "hint": "synonyms for exploited", "clues": ["tap", "work", "overwork", "exploit"]}, {"answer": "exposed", "hint": "synonyms for exposed", "clues": ["break", "let on", "reveal", "disclose", "divulge", "discover", "endanger", "let out", "unwrap", "expose", "give away", "scupper", "queer", "uncover", "display", "bring out", "peril", "debunk", "exhibit"]}, {"answer": "express", "hint": "synonyms for express", "clues": ["press out", "extract", "carry", "give tongue to", "verbalise", "evince", "show", "utter", "convey", "state", "express"]}, {"answer": "expressed", "hint": "synonyms for expressed", "clues": ["press out", "extract", "express", "give tongue to", "carry", "verbalise", "evince", "show", "utter", "convey", "state"]}, {"answer": "expurgated", "hint": "synonyms for expurgated", "clues": ["castrate", "bowdlerize", "shorten", "expurgate"]}, {"answer": "extended", "hint": "synonyms for extended", "clues": ["poke out", "go", "stretch", "hold out", "expand", "continue", "put out", "prolong", "unfold", "carry", "lead", "stretch out", "cover", "reach out", "strain", "protract", "run", "gallop", "offer", "stretch forth", "exsert", "broaden", "draw out", "widen", "pass", "extend"]}, {"answer": "exterminated", "hint": "synonyms for exterminated", "clues": ["exterminate", "extirpate", "uproot", "kill off", "root out", "eradicate"]}, {"answer": "extinguished", "hint": "synonyms for extinguished", "clues": ["snuff out", "press out", "crush out", "blow out", "wipe out", "carry off", "decimate", "eradicate", "annihilate", "extinguish", "do away with", "eliminate", "stub out", "get rid of", "quench"]}, {"answer": "exulting", "hint": "synonyms for exulting", "clues": ["jubilate", "triumph", "exuberate", "rejoice", "jump for joy", "walk on air", "exult", "be on cloud nine"]}, {"answer": "fabricated", "hint": "synonyms for fabricated", "clues": ["fabricate", "manufacture", "construct", "make up", "cook up", "invent"]}, {"answer": "faced", "hint": "synonyms for faced", "clues": ["front", "look", "confront", "face", "present", "face up"]}, {"answer": "faded", "hint": "synonyms for faded", "clues": ["languish", "fleet", "wither", "melt", "evanesce", "blow over", "pass off", "pass", "fade"]}, {"answer": "fagged", "hint": "synonyms for fagged", "clues": ["wear", "labour", "tire out", "wear down", "jade", "outwear", "tire", "moil", "dig", "fag", "drudge", "grind", "fag out", "travail", "wear upon", "wear out", "fatigue", "toil", "fagged"]}, {"answer": "failing", "hint": "synonyms for failing", "clues": ["break", "go", "betray", "give out", "go bad", "miscarry", "conk out", "die", "neglect", "run out", "give way", "bomb", "flunk", "flush it", "break down", "fail", "go wrong"]}, {"answer": "fake", "hint": "synonyms for fake", "clues": ["manipulate", "bull", "cook", "bullshit", "counterfeit", "misrepresent", "falsify", "wangle", "talk through one's hat", "fudge", "forge", "fake"]}, {"answer": "fallen", "hint": "synonyms for fallen", "clues": ["strike", "come down", "lessen", "accrue", "hang", "devolve", "fall", "descend", "diminish", "precipitate", "light", "return", "settle", "go down", "come", "fall down", "flow", "shine", "pass", "decrease", "fallen"]}, {"answer": "falling", "hint": "synonyms for falling", "clues": ["strike", "come down", "lessen", "accrue", "hang", "devolve", "fall", "descend", "diminish", "precipitate", "light", "return", "settle", "go down", "come", "fall down", "flow", "shine", "pass", "decrease"]}, {"answer": "faltering", "hint": "synonyms for faltering", "clues": ["waver", "stutter", "stammer", "bumble", "falter", "stumble"]}, {"answer": "fancied", "hint": "synonyms for fancied", "clues": ["visualize", "see", "take to", "go for", "envision", "fancy", "figure", "picture", "project", "image", "fancied"]}, {"answer": "fancy", "hint": "synonyms for fancy", "clues": ["visualize", "see", "take to", "go for", "envision", "figure", "picture", "project", "image", "fancy"]}, {"answer": "farming", "hint": "synonyms for farming", "clues": ["raise", "farm", "produce", "grow"]}, {"answer": "fascinated", "hint": "synonyms for fascinated", "clues": ["enchant", "captivate", "fascinate", "capture", "beguile", "catch", "becharm", "enamour", "transfix", "charm", "intrigue", "entrance", "spellbind", "grip", "bewitch"]}, {"answer": "fascinating", "hint": "synonyms for fascinating", "clues": ["enchant", "captivate", "fascinate", "capture", "beguile", "catch", "becharm", "enamour", "transfix", "charm", "intrigue", "entrance", "spellbind", "grip", "bewitch", "fascinating"]}, {"answer": "fastened", "hint": "synonyms for fastened", "clues": ["secure", "fix", "tighten", "fasten"]}, {"answer": "fat", "hint": "synonyms for fat", "clues": ["fill out", "plump", "fatten", "plump out", "fatten up", "fatten out", "flesh out", "fat"]}, {"answer": "fated", "hint": "synonyms for fated", "clues": ["doom", "fill out", "plump", "fatten", "plump out", "destine", "fat", "fatten out", "designate", "fatten up", "flesh out", "fated"]}, {"answer": "fatigued", "hint": "synonyms for fatigued", "clues": ["wear", "tire out", "wear down", "jade", "tire", "outwear", "fag", "fag out", "pall", "wear upon", "wear out", "fatigue"]}, {"answer": "fattened", "hint": "synonyms for fattened", "clues": ["fill out", "plump", "fatten", "plump out", "fat", "fatten out", "fatten up", "flesh out"]}, {"answer": "fattening", "hint": "synonyms for fattening", "clues": ["fill out", "plump", "fatten", "plump out", "fat", "fatten out", "fatten up", "flesh out"]}, {"answer": "favored", "hint": "synonyms for favored", "clues": ["favour", "prefer", "privilege", "favored"]}, {"answer": "fawning", "hint": "synonyms for fawning", "clues": ["crawl", "cower", "truckle", "fawn", "cringe", "kowtow", "suck up", "creep", "toady", "bootlick", "grovel"]}, {"answer": "fazed", "hint": "synonyms for fazed", "clues": ["unnerve", "unsettle", "faze", "enervate"]}, {"answer": "featured", "hint": "synonyms for featured", "clues": ["sport", "have", "boast", "feature"]}, {"answer": "feigned", "hint": "synonyms for feigned", "clues": ["pretend", "feign", "affect", "dissemble", "simulate", "sham", "assume", "feigned"]}, {"answer": "fell", "hint": "synonyms for fell", "clues": ["strike", "strike down", "come down", "lessen", "accrue", "hang", "devolve", "drop", "descend", "fall", "diminish", "precipitate", "light", "fly", "return", "settle", "go down", "come", "fall down", "flow", "cut down", "shine", "pass", "decrease", "vanish", "fell"]}, {"answer": "felted", "hint": "synonyms for felted", "clues": ["matte up", "mat", "matt-up", "matte", "felt up", "felt", "felted"]}, {"answer": "fetching", "hint": "synonyms for fetching", "clues": ["bring", "get", "fetch", "convey", "bring in"]}, {"answer": "fiddling", "hint": "synonyms for fiddling", "clues": ["tamper", "shirk", "goldbrick", "play", "monkey", "tinker", "diddle", "fiddle", "toy", "shrink from", "fiddling"]}, {"answer": "fighting", "hint": "synonyms for fighting", "clues": ["fight down", "oppose", "defend", "campaign", "struggle", "fight back", "push", "fight", "contend", "crusade", "press", "agitate"]}, {"answer": "figured", "hint": "synonyms for figured", "clues": ["visualize", "cipher", "picture", "forecast", "estimate", "count on", "image", "see", "compute", "enter", "envision", "fancy", "work out", "figure", "cypher", "reckon", "project", "calculate"]}, {"answer": "filled", "hint": "synonyms for filled", "clues": ["fulfill", "fill up", "take", "satisfy", "sate", "make full", "meet", "replete", "fill", "satiate", "occupy", "filled"]}, {"answer": "finished", "hint": "synonyms for finished", "clues": ["terminate", "end", "polish off", "end up", "stop", "cease", "finish up", "wind up", "complete", "eat up", "finish", "land up", "fetch up"]}, {"answer": "fired", "hint": "synonyms for fired", "clues": ["terminate", "dismiss", "burn down", "fuel", "fire", "open fire", "kindle", "give the sack", "elicit", "send away", "discharge", "displace", "give the axe", "provoke", "burn", "raise", "evoke", "arouse", "give notice", "force out", "go off", "can", "sack"]}, {"answer": "fit", "hint": "synonyms for fit", "clues": ["go", "correspond", "outfit", "jibe", "match", "tally", "agree", "equip", "suit", "meet", "gibe", "fit out", "conform to", "accommodate", "check", "fit"]}, {"answer": "fitted", "hint": "synonyms for fitted", "clues": ["go", "correspond", "outfit", "fit", "jibe", "match", "tally", "agree", "equip", "suit", "meet", "gibe", "fit out", "conform to", "accommodate", "check", "fitted"]}, {"answer": "fitting", "hint": "synonyms for fitting", "clues": ["go", "correspond", "outfit", "fit", "jibe", "match", "tally", "agree", "equip", "suit", "meet", "gibe", "fit out", "conform to", "accommodate", "check", "fitting"]}, {"answer": "fixed", "hint": "synonyms for fixed", "clues": ["touch on", "sterilize", "limit", "gear up", "define", "prepare", "repair", "fix", "determine", "fixate", "deposit", "desexualise", "cook", "mend", "bushel", "fasten", "desex", "secure", "specify", "make", "unsex", "doctor", "set up", "restore", "situate", "posit", "furbish up", "set", "pay back", "ready", "pay off", "get", "fixed"]}, {"answer": "fizzing", "hint": "synonyms for fizzing", "clues": ["froth", "form bubbles", "effervesce", "sparkle", "foam", "fizz"]}, {"answer": "flagging", "hint": "synonyms for flagging", "clues": ["swag", "flag", "ease off", "slacken off", "ease up", "droop", "flagging"]}, {"answer": "flaring", "hint": "synonyms for flaring", "clues": ["flame", "flare out", "flare", "burn up", "break open", "blaze up", "flare up", "irrupt", "burst out", "erupt", "flaring"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["winkle", "ostentate", "swank", "show off", "blink", "shoot", "scud", "wink", "scoot", "dart", "dash", "flaunt", "flash"]}, {"answer": "flecked", "hint": "synonyms for flecked", "clues": ["blob", "spot", "blot", "fleck", "flecked"]}, {"answer": "fleet", "hint": "synonyms for fleet", "clues": ["fade", "dart", "evanesce", "flutter", "blow over", "pass off", "pass", "flit", "fleet"]}, {"answer": "fleeting", "hint": "synonyms for fleeting", "clues": ["fleet", "fade", "dart", "evanesce", "flutter", "blow over", "pass off", "pass", "flit"]}, {"answer": "flickering", "hint": "synonyms for flickering", "clues": ["waver", "flicker", "flick", "quiver", "flitter"]}, {"answer": "flip", "hint": "synonyms for flip", "clues": ["flip over", "leaf", "flip-flop", "pitch", "toss", "thumb", "twitch", "flick", "interchange", "riff", "flip out", "alternate", "throw", "sky", "riffle", "switch", "turn over", "tack", "flip"]}, {"answer": "floating", "hint": "synonyms for floating", "clues": ["float", "swim", "blow", "drift", "be adrift"]}, {"answer": "flooded", "hint": "synonyms for flooded", "clues": ["swamp", "deluge", "oversupply", "glut", "inundate", "flood", "flooded"]}, {"answer": "floored", "hint": "synonyms for floored", "clues": ["ball over", "take aback", "shock", "knock down", "floor", "dump", "blow out of the water", "deck", "coldcock", "floored"]}, {"answer": "flourishing", "hint": "synonyms for flourishing", "clues": ["thrive", "prosper", "expand", "fly high", "boom", "flourish", "brandish", "wave"]}, {"answer": "flowing", "hint": "synonyms for flowing", "clues": ["feed", "flux", "flow", "course", "hang", "run", "menstruate", "fall"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["redden", "even out", "purge", "crimson", "level", "even", "sluice", "scour", "blush", "flush"]}, {"answer": "flushed", "hint": "synonyms for flushed", "clues": ["redden", "even out", "purge", "crimson", "level", "flush", "even", "sluice", "scour", "blush", "flushed"]}, {"answer": "fly", "hint": "synonyms for fly", "clues": ["flee", "aviate", "pilot", "wing", "fell", "vanish", "take flight", "vaporize", "fly"]}, {"answer": "flying", "hint": "synonyms for flying", "clues": ["fly", "flee", "aviate", "pilot", "wing", "fell", "vanish", "take flight", "vaporize"]}, {"answer": "foaming", "hint": "synonyms for foaming", "clues": ["froth", "form bubbles", "effervesce", "sparkle", "foam", "fizz"]}, {"answer": "focused", "hint": "synonyms for focused", "clues": ["rivet", "focalise", "centre", "pore", "concentre", "center", "focus", "sharpen", "focused"]}, {"answer": "focussed", "hint": "synonyms for focussed", "clues": ["rivet", "focalise", "centre", "pore", "concentre", "center", "focus", "sharpen", "focussed"]}, {"answer": "fogged", "hint": "synonyms for fogged", "clues": ["obscure", "haze over", "mist", "becloud", "obnubilate", "fog", "befog", "cloud", "fogged"]}, {"answer": "foiled", "hint": "synonyms for foiled", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart", "foiled"]}, {"answer": "folding", "hint": "synonyms for folding", "clues": ["close", "close up", "close down", "shut down", "pen up", "turn up", "fold", "fold up"]}, {"answer": "following", "hint": "synonyms for following", "clues": ["stick to", "follow", "travel along", "adopt", "abide by", "observe", "keep an eye on", "keep abreast", "espouse", "keep up", "postdate", "stick with", "pursue", "conform to", "accompany", "watch", "watch over", "take after", "come after", "survey", "come", "play along", "fall out", "succeed", "trace", "be", "comply", "surveil"]}, {"answer": "fooling", "hint": "synonyms for fooling", "clues": ["frivol away", "befool", "slang", "fritter away", "put one over", "fool around", "gull", "fritter", "take in", "put one across", "fool away", "shoot", "cod", "horse around", "fool", "dupe", "put on", "dissipate"]}, {"answer": "footed", "hint": "synonyms for footed", "clues": ["leg it", "foot", "foot up", "hoof", "pick", "hoof it", "footed"]}, {"answer": "footless", "hint": "synonyms for footless", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about"]}, {"answer": "footling", "hint": "synonyms for footling", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about", "footling"]}, {"answer": "forbidden", "hint": "synonyms for forbidden", "clues": ["disallow", "veto", "forestall", "prevent", "preclude", "nix", "forbid", "proscribe", "foreclose", "prohibit", "interdict", "forbidden"]}, {"answer": "forbidding", "hint": "synonyms for forbidding", "clues": ["disallow", "veto", "forestall", "prevent", "preclude", "nix", "forbid", "proscribe", "foreclose", "prohibit", "interdict", "forbidding"]}, {"answer": "forced", "hint": "synonyms for forced", "clues": ["pull", "impel", "push", "squeeze", "hale", "draw", "storm", "wedge", "ram", "force", "pressure", "thrust", "drive", "coerce"]}, {"answer": "foreboding", "hint": "synonyms for foreboding", "clues": ["foretell", "call", "promise", "forebode", "predict", "anticipate", "prognosticate", "foreboding"]}, {"answer": "foregoing", "hint": "synonyms for foregoing", "clues": ["forgo", "foreswear", "throw overboard", "waive", "predate", "give up", "antecede", "precede", "relinquish", "forfeit", "dispense with", "antedate", "foregoing"]}, {"answer": "foregone", "hint": "synonyms for foregone", "clues": ["forgo", "foreswear", "throw overboard", "waive", "predate", "give up", "antecede", "precede", "relinquish", "forfeit", "dispense with", "antedate", "foregone"]}, {"answer": "foreshadowing", "hint": "synonyms for foreshadowing", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict"]}, {"answer": "forfeit", "hint": "synonyms for forfeit", "clues": ["forego", "throw overboard", "waive", "give up", "forfeit"]}, {"answer": "forfeited", "hint": "synonyms for forfeited", "clues": ["forego", "throw overboard", "waive", "give up", "forfeit"]}, {"answer": "forged", "hint": "synonyms for forged", "clues": ["form", "devise", "formulate", "work", "spurt", "hammer", "counterfeit", "contrive", "fake", "spirt", "mould", "excogitate", "fashion", "shape", "forge", "invent"]}, {"answer": "forgotten", "hint": "synonyms for forgotten", "clues": ["block", "bury", "draw a blank", "forget", "blank out", "leave", "forgotten"]}, {"answer": "forked", "hint": "synonyms for forked", "clues": ["branch", "ramify", "fork", "furcate", "separate", "pitchfork", "forked"]}, {"answer": "formed", "hint": "synonyms for formed", "clues": ["imprint", "form", "organize", "make", "work", "mould", "shape", "spring", "forge", "take shape", "constitute", "take form", "formed"]}, {"answer": "formulated", "hint": "synonyms for formulated", "clues": ["devise", "phrase", "formulate", "contrive", "word", "articulate", "give voice", "excogitate", "explicate", "forge", "develop", "invent"]}, {"answer": "fortified", "hint": "synonyms for fortified", "clues": ["gird", "spike", "build up", "fort", "beef up", "lace", "fortify", "arm", "strengthen", "fortified"]}, {"answer": "foul", "hint": "synonyms for foul", "clues": ["congest", "maculate", "clog up", "defile", "befoul", "choke", "back up", "choke off", "clog", "contaminate", "pollute", "foul"]}, {"answer": "fouled", "hint": "synonyms for fouled", "clues": ["congest", "maculate", "clog up", "defile", "befoul", "choke", "back up", "foul", "choke off", "clog", "contaminate", "pollute", "fouled"]}, {"answer": "found", "hint": "synonyms for found", "clues": ["base", "institute", "observe", "set up", "obtain", "come up", "find", "find oneself", "retrieve", "determine", "discover", "detect", "incur", "constitute", "bump", "get hold", "notice", "plant", "see", "launch", "encounter", "recover", "get", "regain", "ground", "establish", "receive", "happen", "line up", "rule", "feel", "find out", "ascertain", "witness", "chance", "found"]}, {"answer": "framed", "hint": "synonyms for framed", "clues": ["draw up", "frame up", "frame in", "compose", "set up", "couch", "redact", "entrap", "ensnare", "frame", "cast", "put", "border"]}, {"answer": "frayed", "hint": "synonyms for frayed", "clues": ["fray", "scratch", "frazzle", "rub", "chafe", "fret", "frayed"]}, {"answer": "free", "hint": "synonyms for free", "clues": ["dislodge", "give up", "absolve", "unfreeze", "loose", "justify", "unblock", "disembarrass", "liberate", "unloosen", "rid", "discharge", "exempt", "disengage", "resign", "relinquish", "relieve", "release", "free"]}, {"answer": "frequent", "hint": "synonyms for frequent", "clues": ["patronize", "haunt", "shop at", "shop", "sponsor", "buy at", "frequent"]}, {"answer": "fretted", "hint": "synonyms for fretted", "clues": ["niggle", "gag", "fray", "gall", "rub", "choke", "chafe", "eat into", "fuss", "rankle", "erode", "eat away", "scratch", "grate", "fret", "fretted"]}, {"answer": "frothing", "hint": "synonyms for frothing", "clues": ["froth", "form bubbles", "sparkle", "effervesce", "fizz", "suds", "foam", "spume"]}, {"answer": "frozen", "hint": "synonyms for frozen", "clues": ["freeze", "block", "freeze down", "freeze out", "stop dead", "suspend", "immobilize", "frozen"]}, {"answer": "frustrated", "hint": "synonyms for frustrated", "clues": ["dun", "scotch", "crucify", "spoil", "queer", "cross", "torment", "bedevil", "frustrate", "baffle", "bilk", "rag", "foil", "thwart"]}, {"answer": "frustrating", "hint": "synonyms for frustrating", "clues": ["dun", "scotch", "crucify", "spoil", "queer", "cross", "torment", "bedevil", "frustrate", "baffle", "bilk", "rag", "foil", "thwart", "frustrating"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together"]}, {"answer": "fuddled", "hint": "synonyms for fuddled", "clues": ["throw", "drink", "befuddle", "confuse", "booze", "discombobulate", "bedevil", "confound", "fox", "fuddled"]}, {"answer": "fulfilled", "hint": "synonyms for fulfilled", "clues": ["fulfill", "satisfy", "live up to", "carry out", "action", "carry through", "execute", "meet", "accomplish", "fill"]}, {"answer": "fumbling", "hint": "synonyms for fumbling", "clues": ["fuck up", "louse up", "ball up", "blunder", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "grope", "fumbling"]}, {"answer": "fumed", "hint": "synonyms for fumed", "clues": ["fume", "fumigate", "reek", "smoke"]}, {"answer": "functioning", "hint": "synonyms for functioning", "clues": ["go", "operate", "work", "serve", "officiate", "run", "function"]}, {"answer": "furnished", "hint": "synonyms for furnished", "clues": ["furnish", "provide", "render", "supply"]}, {"answer": "furrowed", "hint": "synonyms for furrowed", "clues": ["furrow", "groove", "chamfer", "crease", "rut", "wrinkle", "chase"]}, {"answer": "further", "hint": "synonyms for further", "clues": ["promote", "encourage", "advance", "boost", "foster", "further"]}, {"answer": "fused", "hint": "synonyms for fused", "clues": ["coalesce", "flux", "fuse", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend"]}, {"answer": "galled", "hint": "synonyms for galled", "clues": ["irk", "gall", "chafe", "fret", "galled"]}, {"answer": "galling", "hint": "synonyms for galling", "clues": ["irk", "gall", "chafe", "fret"]}, {"answer": "game", "hint": "synonyms for game", "clues": ["punt", "back", "gage", "stake", "bet on", "game"]}, {"answer": "gaping", "hint": "synonyms for gaping", "clues": ["yawn", "gawk", "gawp", "breach", "gape", "goggle", "gaping"]}, {"answer": "garbed", "hint": "synonyms for garbed", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment", "garbed"]}, {"answer": "garbled", "hint": "synonyms for garbled", "clues": ["distort", "falsify", "garble", "warp"]}, {"answer": "garmented", "hint": "synonyms for garmented", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "gasified", "hint": "synonyms for gasified", "clues": ["aerify", "vaporise", "gasify", "gasified"]}, {"answer": "gathered", "hint": "synonyms for gathered", "clues": ["cumulate", "forgather", "pucker", "amass", "collect", "get together", "tuck", "gather", "meet", "conglomerate", "gain", "pile up", "garner", "pull together", "assemble"]}, {"answer": "generalised", "hint": "synonyms for generalised", "clues": ["popularise", "generalize", "extrapolate", "vulgarize", "infer"]}, {"answer": "generalized", "hint": "synonyms for generalized", "clues": ["popularise", "generalize", "extrapolate", "vulgarize", "infer"]}, {"answer": "gentle", "hint": "synonyms for gentle", "clues": ["lenify", "placate", "entitle", "assuage", "conciliate", "mollify", "appease", "pacify", "gruntle", "ennoble", "gentle"]}, {"answer": "gifted", "hint": "synonyms for gifted", "clues": ["present", "invest", "gift", "endow", "indue", "empower", "give", "endue", "gifted"]}, {"answer": "given", "hint": "synonyms for given", "clues": ["break", "cave in", "commit", "contribute", "gift", "yield", "present", "pay", "feed", "establish", "reach", "give way", "impart", "ease up", "give", "have", "afford", "make", "dedicate", "move over", "fall in", "hand", "hold", "generate", "apply", "grant", "leave", "throw", "pass on", "chip in", "return", "open", "sacrifice", "kick in", "render", "turn over", "consecrate", "collapse", "pass", "founder", "devote"]}, {"answer": "giving", "hint": "synonyms for giving", "clues": ["break", "cave in", "commit", "contribute", "gift", "yield", "present", "pay", "feed", "establish", "reach", "give way", "impart", "ease up", "give", "have", "afford", "make", "dedicate", "move over", "fall in", "hand", "hold", "generate", "apply", "grant", "leave", "throw", "pass on", "chip in", "return", "open", "sacrifice", "kick in", "render", "turn over", "consecrate", "collapse", "pass", "founder", "devote", "giving"]}, {"answer": "glassed", "hint": "synonyms for glassed", "clues": ["glaze", "glass over", "glass in", "glaze over", "glass", "glassed"]}, {"answer": "glazed", "hint": "synonyms for glazed", "clues": ["candy", "glaze", "glass over", "sugarcoat", "glaze over", "glass"]}, {"answer": "gleaming", "hint": "synonyms for gleaming", "clues": ["gleam", "shine", "glisten", "glitter", "glint", "glimmer"]}, {"answer": "glinting", "hint": "synonyms for glinting", "clues": ["gleam", "glance", "shine", "glisten", "glitter", "peek", "glint"]}, {"answer": "glistening", "hint": "synonyms for glistening", "clues": ["gleam", "shine", "glisten", "glitter", "glint"]}, {"answer": "glittering", "hint": "synonyms for glittering", "clues": ["gleam", "shine", "glisten", "glitter", "glint"]}, {"answer": "glorified", "hint": "synonyms for glorified", "clues": ["laud", "transfigure", "spiritualize", "proclaim", "exalt", "glorify", "extol", "glorified"]}, {"answer": "glowering", "hint": "synonyms for glowering", "clues": ["frown", "glare", "glower", "lour"]}, {"answer": "glowing", "hint": "synonyms for glowing", "clues": ["radiate", "beam", "burn", "glow", "shine"]}, {"answer": "glutted", "hint": "synonyms for glutted", "clues": ["ingurgitate", "overeat", "binge", "stuff", "scarf out", "gourmandize", "overgorge", "overindulge", "englut", "pig out", "engorge", "flood", "oversupply", "glut", "satiate", "gorge", "glutted"]}, {"answer": "gnarled", "hint": "synonyms for gnarled", "clues": ["mutter", "gnarl", "murmur", "croak", "grumble", "gnarled"]}, {"answer": "go", "hint": "synonyms for go", "clues": ["break", "cash in one's chips", "run low", "go away", "work", "hold out", "belong", "last", "lead", "locomote", "conk out", "blend", "run", "die", "function", "croak", "buy the farm", "fit", "start", "choke", "conk", "rifle", "live", "give-up the ghost", "become", "operate", "proceed", "give way", "pass away", "kick the bucket", "break down", "decease", "pop off", "run short", "plump", "give out", "go bad", "expire", "hold up", "depart", "drop dead", "survive", "travel", "fail", "get going", "exit", "move", "sound", "blend in", "live on", "perish", "snuff it", "pass", "endure", "get", "extend", "go"]}, {"answer": "goaded", "hint": "synonyms for goaded", "clues": ["needle", "spur", "prick", "goad", "goaded"]}, {"answer": "going", "hint": "synonyms for going", "clues": ["break", "cash in one's chips", "run low", "go away", "work", "hold out", "belong", "last", "lead", "locomote", "conk out", "blend", "run", "die", "function", "croak", "buy the farm", "fit", "start", "choke", "conk", "rifle", "live", "give-up the ghost", "become", "operate", "proceed", "give way", "pass away", "kick the bucket", "break down", "decease", "go", "run short", "pop off", "plump", "give out", "go bad", "expire", "hold up", "depart", "drop dead", "survive", "travel", "fail", "get going", "exit", "move", "sound", "blend in", "live on", "perish", "snuff it", "pass", "endure", "get", "extend"]}, {"answer": "gone", "hint": "synonyms for gone", "clues": ["break", "cash in one's chips", "run low", "go away", "work", "hold out", "belong", "last", "lead", "locomote", "conk out", "blend", "run", "die", "function", "croak", "buy the farm", "fit", "start", "choke", "conk", "rifle", "live", "give-up the ghost", "become", "operate", "proceed", "give way", "pass away", "kick the bucket", "break down", "decease", "go", "run short", "pop off", "plump", "give out", "go bad", "expire", "hold up", "depart", "drop dead", "survive", "travel", "fail", "get going", "exit", "move", "sound", "blend in", "live on", "perish", "snuff it", "pass", "endure", "get", "extend", "gone"]}, {"answer": "governing", "hint": "synonyms for governing", "clues": ["rule", "regulate", "govern", "order", "regularize"]}, {"answer": "graded", "hint": "synonyms for graded", "clues": ["range", "rank", "rate", "mark", "score", "grade", "place", "order"]}, {"answer": "granted", "hint": "synonyms for granted", "clues": ["cede", "allot", "deed over", "concede", "award", "allow", "accord", "yield", "give", "grant", "granted"]}, {"answer": "grasping", "hint": "synonyms for grasping", "clues": ["hold on", "grok", "grasp", "comprehend", "get the picture", "savvy", "compass", "apprehend", "dig"]}, {"answer": "gratified", "hint": "synonyms for gratified", "clues": ["indulge", "satisfy", "gratify", "pander", "gratified"]}, {"answer": "gratifying", "hint": "synonyms for gratifying", "clues": ["indulge", "satisfy", "gratify", "pander"]}, {"answer": "grating", "hint": "synonyms for grating", "clues": ["scrape", "fret", "grind", "grate", "eat into", "rankle", "grating"]}, {"answer": "grave", "hint": "synonyms for grave", "clues": ["scratch", "engrave", "sculpt", "sculpture", "inscribe", "grave"]}, {"answer": "graven", "hint": "synonyms for graven", "clues": ["grave", "scratch", "engrave", "sculpt", "sculpture", "inscribe"]}, {"answer": "grazed", "hint": "synonyms for grazed", "clues": ["range", "browse", "pasture", "graze", "crop", "crease", "rake"]}, {"answer": "gripping", "hint": "synonyms for gripping", "clues": ["grapple", "spellbind", "transfix", "fascinate", "grip", "gripping"]}, {"answer": "grizzled", "hint": "synonyms for grizzled", "clues": ["grizzle", "yammer", "whine", "stew", "brood", "yawp"]}, {"answer": "groomed", "hint": "synonyms for groomed", "clues": ["neaten", "curry", "dress", "groom", "prepare", "train", "groomed"]}, {"answer": "groveling", "hint": "synonyms for groveling", "clues": ["crawl", "creep", "cower", "grovel", "fawn", "cringe"]}, {"answer": "grovelling", "hint": "synonyms for grovelling", "clues": ["crawl", "creep", "cower", "grovel", "fawn", "cringe", "grovelling"]}, {"answer": "growing", "hint": "synonyms for growing", "clues": ["maturate", "arise", "acquire", "uprise", "get", "farm", "spring up", "originate", "raise", "turn", "produce", "develop", "grow"]}, {"answer": "grown", "hint": "synonyms for grown", "clues": ["maturate", "arise", "acquire", "uprise", "get", "farm", "spring up", "originate", "raise", "turn", "produce", "develop", "grow"]}, {"answer": "grumbling", "hint": "synonyms for grumbling", "clues": ["mutter", "grouch", "grumble", "growl", "gnarl", "scold", "murmur", "croak", "grumbling"]}, {"answer": "guarded", "hint": "synonyms for guarded", "clues": ["hold", "ward", "defend", "guard", "guarded"]}, {"answer": "guided", "hint": "synonyms for guided", "clues": ["maneuver", "take", "direct", "manoeuvre", "head", "channelize", "steer", "guide", "conduct", "lead", "pass", "draw", "point", "run", "guide on"]}, {"answer": "guiding", "hint": "synonyms for guiding", "clues": ["maneuver", "take", "direct", "manoeuvre", "head", "channelize", "steer", "guide", "conduct", "lead", "pass", "draw", "point", "run", "guide on", "guiding"]}, {"answer": "gushing", "hint": "synonyms for gushing", "clues": ["rave", "jet", "spurt", "spirt", "spout", "gush"]}, {"answer": "hale", "hint": "synonyms for hale", "clues": ["coerce", "cart", "haul", "force", "pressure", "drag", "squeeze", "hale"]}, {"answer": "hallowed", "hint": "synonyms for hallowed", "clues": ["consecrate", "bless", "hallow", "sanctify"]}, {"answer": "halt", "hint": "synonyms for halt", "clues": ["staunch", "hold", "kibosh", "arrest", "block", "stem", "stop", "halt"]}, {"answer": "halting", "hint": "synonyms for halting", "clues": ["halt", "kibosh", "stanch", "block", "stop", "stem", "hold", "arrest"]}, {"answer": "handed", "hint": "synonyms for handed", "clues": ["pass on", "reach", "pass", "turn over", "give", "hand", "handed"]}, {"answer": "handicapped", "hint": "synonyms for handicapped", "clues": ["handicap", "disable", "hamper", "hinder", "invalid", "incapacitate", "handicapped"]}, {"answer": "handled", "hint": "synonyms for handled", "clues": ["wield", "handle", "treat", "deal", "manage", "address", "cover", "do by", "palm", "plow", "care"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["wield", "handle", "treat", "deal", "manage", "address", "cover", "do by", "palm", "plow", "care"]}, {"answer": "harassed", "hint": "synonyms for harassed", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "harry", "hassle", "plague", "beset"]}, {"answer": "hardened", "hint": "synonyms for hardened", "clues": ["temper", "inure", "indurate", "harden", "season"]}, {"answer": "harmonised", "hint": "synonyms for harmonised", "clues": ["consort", "harmonize", "reconcile", "chord", "agree", "concord", "accord", "fit in", "harmonised"]}, {"answer": "harmonized", "hint": "synonyms for harmonized", "clues": ["consort", "harmonize", "reconcile", "chord", "agree", "concord", "accord", "fit in"]}, {"answer": "harnessed", "hint": "synonyms for harnessed", "clues": ["harness", "tackle", "draw rein", "rein in", "rule", "rein"]}, {"answer": "harried", "hint": "synonyms for harried", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "harry", "hassle", "ravage", "plague", "beset", "harried"]}, {"answer": "hatched", "hint": "synonyms for hatched", "clues": ["think of", "hatch", "incubate", "concoct", "brood", "dream up", "cover", "think up", "hatched"]}, {"answer": "haunted", "hint": "synonyms for haunted", "clues": ["haunt", "ghost", "stalk", "obsess", "frequent", "haunted"]}, {"answer": "haunting", "hint": "synonyms for haunting", "clues": ["haunt", "ghost", "stalk", "obsess", "frequent"]}, {"answer": "headed", "hint": "synonyms for headed", "clues": ["maneuver", "direct", "manoeuvre", "head", "head up", "channelize", "steer", "guide", "lead", "point", "headed"]}, {"answer": "healed", "hint": "synonyms for healed", "clues": ["heal", "bring around", "cure", "mend", "healed"]}, {"answer": "healing", "hint": "synonyms for healing", "clues": ["heal", "bring around", "cure", "mend"]}, {"answer": "heard", "hint": "synonyms for heard", "clues": ["get wind", "see", "hear", "get word", "pick up", "get a line", "discover", "listen", "find out", "learn", "take heed", "try"]}, {"answer": "hearing", "hint": "synonyms for hearing", "clues": ["get wind", "see", "hear", "get word", "pick up", "get a line", "discover", "listen", "find out", "learn", "take heed", "try"]}, {"answer": "heartening", "hint": "synonyms for heartening", "clues": ["recreate", "embolden", "hearten", "cheer"]}, {"answer": "heated", "hint": "synonyms for heated", "clues": ["inflame", "ignite", "heat up", "hot up", "heat", "wake", "stir up", "fire up", "heated"]}, {"answer": "hedged", "hint": "synonyms for hedged", "clues": ["elude", "put off", "hedge in", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep"]}, {"answer": "heightening", "hint": "synonyms for heightening", "clues": ["deepen", "raise", "compound", "sharpen", "intensify", "enhance", "heighten"]}, {"answer": "held", "hint": "synonyms for held", "clues": ["restrain", "have got", "halt", "control", "defend", "maintain", "entertain", "admit", "obtain", "concord", "take for", "prevail", "harbour", "oblige", "go for", "withstand", "book", "bind", "agree", "arrest", "view as", "reserve", "sustain", "give", "have", "defy", "declare", "deem", "make", "nurse", "moderate", "keep", "carry", "hold", "hold up", "adjudge", "concur", "accommodate", "guard", "apply", "throw", "support", "take", "curb", "take hold", "hold in", "hold back", "bear", "confine", "contain", "keep back", "check", "held"]}, {"answer": "heralded", "hint": "synonyms for heralded", "clues": ["foretell", "announce", "harbinger", "hail", "acclaim", "herald", "annunciate"]}, {"answer": "hesitating", "hint": "synonyms for hesitating", "clues": ["waver", "waffle", "hesitate", "pause", "hesitating"]}, {"answer": "hex", "hint": "synonyms for hex", "clues": ["enchant", "witch", "glamour", "jinx", "bewitch", "hex"]}, {"answer": "hexed", "hint": "synonyms for hexed", "clues": ["enchant", "hex", "witch", "glamour", "jinx", "bewitch", "hexed"]}, {"answer": "hidden", "hint": "synonyms for hidden", "clues": ["obscure", "shroud", "hide out", "hide", "conceal", "veil", "cover", "blot out", "obliterate", "hidden"]}, {"answer": "hinder", "hint": "synonyms for hinder", "clues": ["blockade", "block", "stymie", "stymy", "impede", "obstruct", "handicap", "embarrass", "hamper", "hinder"]}, {"answer": "hindering", "hint": "synonyms for hindering", "clues": ["blockade", "block", "stymie", "stymy", "impede", "obstruct", "handicap", "embarrass", "hamper", "hinder"]}, {"answer": "hired", "hint": "synonyms for hired", "clues": ["employ", "hire", "take", "lease", "rent", "charter", "engage"]}, {"answer": "hollow", "hint": "synonyms for hollow", "clues": ["excavate", "hollow out", "core out", "dig", "hollow"]}, {"answer": "honored", "hint": "synonyms for honored", "clues": ["honour", "observe", "abide by", "reward", "respect", "honored"]}, {"answer": "hoofed", "hint": "synonyms for hoofed", "clues": ["leg it", "foot", "hoof", "hoof it", "hoofed"]}, {"answer": "hooked", "hint": "synonyms for hooked", "clues": ["pluck", "fleece", "solicit", "plume", "rob", "glom", "sneak", "purloin", "thieve", "surcharge", "cop", "swipe", "accost", "lift", "abstract", "pilfer", "addict", "pinch", "knock off", "overcharge", "filch", "snarf", "snare", "gazump", "soak", "nobble", "hook", "snitch", "crochet", "cabbage", "hooked"]}, {"answer": "horrified", "hint": "synonyms for horrified", "clues": ["dismay", "appall", "horrify", "alarm", "horrified"]}, {"answer": "horrifying", "hint": "synonyms for horrifying", "clues": ["dismay", "appall", "horrify", "alarm"]}, {"answer": "howling", "hint": "synonyms for howling", "clues": ["yowl", "yammer", "yaup", "wrawl", "yawl", "howl", "roar", "wail", "ululate"]}, {"answer": "hulking", "hint": "synonyms for hulking", "clues": ["loom", "predominate", "tower", "hulk"]}, {"answer": "humble", "hint": "synonyms for humble", "clues": ["humiliate", "mortify", "chagrin", "abase", "humble"]}, {"answer": "humbled", "hint": "synonyms for humbled", "clues": ["mortify", "chagrin", "abase", "humble", "humiliate"]}, {"answer": "humbling", "hint": "synonyms for humbling", "clues": ["mortify", "chagrin", "abase", "humble", "humiliate", "humbling"]}, {"answer": "humiliated", "hint": "synonyms for humiliated", "clues": ["mortify", "humble", "abase", "chagrin", "humiliate"]}, {"answer": "humiliating", "hint": "synonyms for humiliating", "clues": ["mortify", "humble", "abase", "chagrin", "humiliate", "humiliating"]}, {"answer": "humped", "hint": "synonyms for humped", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "hunch forward", "have it away", "fuck", "make out", "lie with", "hunch over", "hunch", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "humped"]}, {"answer": "hunched", "hint": "synonyms for hunched", "clues": ["hunch forward", "hunch", "hunch over", "hump", "hunched"]}, {"answer": "hunted", "hint": "synonyms for hunted", "clues": ["trace", "hunt down", "hunt", "track down", "hound", "run", "hunted"]}, {"answer": "hurried", "hint": "synonyms for hurried", "clues": ["look sharp", "rush", "travel rapidly", "speed", "festinate", "hurry", "zip", "hasten", "hurried"]}, {"answer": "hurrying", "hint": "synonyms for hurrying", "clues": ["look sharp", "rush", "travel rapidly", "speed", "festinate", "hurry", "zip", "hasten"]}, {"answer": "hurt", "hint": "synonyms for hurt", "clues": ["spite", "offend", "wound", "bruise", "anguish", "injure", "smart", "ache", "pain", "suffer", "hurt"]}, {"answer": "hushed", "hint": "synonyms for hushed", "clues": ["hush", "still", "quieten", "pipe down", "silence", "quiesce", "hush up", "shut up", "quiet", "quiet down", "hushed"]}, {"answer": "identified", "hint": "synonyms for identified", "clues": ["name", "identify", "key", "describe", "discover", "place", "key out", "distinguish", "identified"]}, {"answer": "idle", "hint": "synonyms for idle", "clues": ["laze", "tick over", "slug", "stagnate", "idle"]}, {"answer": "idolised", "hint": "synonyms for idolised", "clues": ["idolise", "worship", "hero-worship", "revere"]}, {"answer": "idolized", "hint": "synonyms for idolized", "clues": ["idolise", "worship", "hero-worship", "revere", "idolized"]}, {"answer": "ignited", "hint": "synonyms for ignited", "clues": ["light", "inflame", "ignite", "catch fire", "combust", "take fire", "conflagrate", "heat", "wake", "erupt", "stir up", "fire up"]}, {"answer": "ignored", "hint": "synonyms for ignored", "clues": ["push aside", "cut", "discount", "brush off", "dismiss", "ignore", "snub", "disregard", "neglect"]}, {"answer": "ill-treated", "hint": "synonyms for ill-treated", "clues": ["step", "ill-use", "ill-treat", "mistreat", "maltreat", "abuse"]}, {"answer": "ill-used", "hint": "synonyms for ill-used", "clues": ["step", "ill-use", "ill-treat", "mistreat", "maltreat", "abuse"]}, {"answer": "illuminated", "hint": "synonyms for illuminated", "clues": ["sort out", "illumine", "light up", "crystallize", "straighten out", "shed light on", "elucidate", "light", "enlighten", "clear up", "clear", "illuminated"]}, {"answer": "illuminating", "hint": "synonyms for illuminating", "clues": ["sort out", "illumine", "light up", "crystallize", "straighten out", "shed light on", "elucidate", "light", "enlighten", "clear up", "clear", "illuminating"]}, {"answer": "immunised", "hint": "synonyms for immunised", "clues": ["immunize", "vaccinate", "inoculate", "immunised"]}, {"answer": "impacted", "hint": "synonyms for impacted", "clues": ["touch on", "bear upon", "impact", "affect", "touch"]}, {"answer": "impaired", "hint": "synonyms for impaired", "clues": ["impair", "spoil", "mar", "vitiate", "deflower"]}, {"answer": "impeded", "hint": "synonyms for impeded", "clues": ["occlude", "block", "impede", "obstruct", "close up", "jam", "obturate", "hinder"]}, {"answer": "impeding", "hint": "synonyms for impeding", "clues": ["occlude", "block", "impede", "obstruct", "close up", "jam", "obturate", "hinder", "impeding"]}, {"answer": "implanted", "hint": "synonyms for implanted", "clues": ["embed", "plant", "imbed", "implant", "engraft"]}, {"answer": "implemented", "hint": "synonyms for implemented", "clues": ["go through", "implement", "carry out", "follow through", "put through", "follow up", "enforce", "follow out", "apply"]}, {"answer": "imposed", "hint": "synonyms for imposed", "clues": ["impose", "bring down", "enforce", "inflict", "visit", "levy"]}, {"answer": "imposing", "hint": "synonyms for imposing", "clues": ["impose", "bring down", "enforce", "inflict", "visit", "levy", "imposing"]}, {"answer": "impressed", "hint": "synonyms for impressed", "clues": ["instill", "yarn-dye", "strike", "print", "move", "shanghai", "affect", "impress", "ingrain", "imprint"]}, {"answer": "imprisoned", "hint": "synonyms for imprisoned", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison"]}, {"answer": "improved", "hint": "synonyms for improved", "clues": ["improve", "amend", "better", "ameliorate"]}, {"answer": "improving", "hint": "synonyms for improving", "clues": ["improve", "amend", "better", "ameliorate", "improving"]}, {"answer": "incapacitated", "hint": "synonyms for incapacitated", "clues": ["invalid", "handicap", "disenable", "incapacitate"]}, {"answer": "incapacitating", "hint": "synonyms for incapacitating", "clues": ["invalid", "handicap", "disenable", "incapacitate", "incapacitating"]}, {"answer": "incensed", "hint": "synonyms for incensed", "clues": ["cense", "exasperate", "thurify", "incense", "infuriate"]}, {"answer": "inclined", "hint": "synonyms for inclined", "clues": ["incline", "dispose", "be given", "pitch", "tend", "lean", "run", "slope"]}, {"answer": "incorporated", "hint": "synonyms for incorporated", "clues": ["incorporate", "comprise", "contain", "integrate"]}, {"answer": "incriminating", "hint": "synonyms for incriminating", "clues": ["inculpate", "accuse", "criminate", "imply", "impeach", "incriminating"]}, {"answer": "indisposed", "hint": "synonyms for indisposed", "clues": ["indispose", "unfit", "disincline", "disqualify"]}, {"answer": "induced", "hint": "synonyms for induced", "clues": ["induce", "make", "rush", "get", "induct", "stimulate", "bring on", "have", "cause", "hasten"]}, {"answer": "inebriated", "hint": "synonyms for inebriated", "clues": ["thrill", "exhilarate", "beatify", "exalt", "souse", "soak", "hit it up", "tickle pink", "inebriate", "intoxicate"]}, {"answer": "inflamed", "hint": "synonyms for inflamed", "clues": ["inflame", "ignite", "kindle", "wake", "conflagrate", "heat", "stir up", "fire up"]}, {"answer": "inflated", "hint": "synonyms for inflated", "clues": ["balloon", "inflate", "expand", "amplify", "billow", "blow up"]}, {"answer": "ingrained", "hint": "synonyms for ingrained", "clues": ["impress", "instill", "ingrain", "grain"]}, {"answer": "inhabited", "hint": "synonyms for inhabited", "clues": ["dwell", "populate", "inhabit", "live"]}, {"answer": "inhibited", "hint": "synonyms for inhibited", "clues": ["subdue", "bottle up", "curb", "suppress", "conquer", "stamp down", "inhibit"]}, {"answer": "inhumed", "hint": "synonyms for inhumed", "clues": ["inhume", "bury", "lay to rest", "entomb", "inter"]}, {"answer": "injured", "hint": "synonyms for injured", "clues": ["spite", "hurt", "offend", "wound", "bruise", "injure"]}, {"answer": "inquiring", "hint": "synonyms for inquiring", "clues": ["enquire", "ask", "investigate", "wonder", "inquiring"]}, {"answer": "inscribed", "hint": "synonyms for inscribed", "clues": ["enrol", "write in code", "engrave", "cipher", "enter", "code", "inscribe", "grave", "scratch", "cypher", "recruit", "encrypt", "autograph"]}, {"answer": "inspired", "hint": "synonyms for inspired", "clues": ["inhale", "urge", "exalt", "invigorate", "pep up", "exhort", "inspire", "urge on", "enliven", "barrack", "instigate", "revolutionize", "breathe in", "root on", "animate", "cheer", "prompt"]}, {"answer": "inspiring", "hint": "synonyms for inspiring", "clues": ["inhale", "urge", "exalt", "invigorate", "pep up", "exhort", "inspire", "urge on", "enliven", "barrack", "instigate", "revolutionize", "breathe in", "root on", "animate", "cheer", "prompt", "inspiring"]}, {"answer": "institutionalised", "hint": "synonyms for institutionalised", "clues": ["commit", "charge", "send", "institutionalise"]}, {"answer": "institutionalized", "hint": "synonyms for institutionalized", "clues": ["commit", "charge", "send", "institutionalise"]}, {"answer": "insured", "hint": "synonyms for insured", "clues": ["insure", "control", "ensure", "see", "secure", "see to it", "assure", "check", "guarantee", "underwrite", "cover", "ascertain"]}, {"answer": "integrated", "hint": "synonyms for integrated", "clues": ["incorporate", "desegregate", "integrate", "mix"]}, {"answer": "intended", "hint": "synonyms for intended", "clues": ["specify", "destine", "designate", "intend", "think", "mean", "signify", "stand for"]}, {"answer": "intensified", "hint": "synonyms for intensified", "clues": ["escalate", "deepen", "step up", "intensify", "compound", "heighten", "intensified"]}, {"answer": "intensifying", "hint": "synonyms for intensifying", "clues": ["escalate", "deepen", "step up", "intensify", "compound", "heighten"]}, {"answer": "interbred", "hint": "synonyms for interbred", "clues": ["interbreed", "crossbreed", "hybridize", "cross"]}, {"answer": "interested", "hint": "synonyms for interested", "clues": ["occupy", "interest", "worry", "matter to", "concern"]}, {"answer": "interesting", "hint": "synonyms for interesting", "clues": ["occupy", "interest", "worry", "matter to", "concern"]}, {"answer": "interfering", "hint": "synonyms for interfering", "clues": ["intervene", "interpose", "step in", "interfere", "interfering"]}, {"answer": "interlaced", "hint": "synonyms for interlaced", "clues": ["intertwine", "entwine", "interlock", "enlace", "interlace", "lace", "lock", "twine"]}, {"answer": "interlacing", "hint": "synonyms for interlacing", "clues": ["intertwine", "entwine", "interlock", "enlace", "interlace", "lace", "lock", "twine", "interlacing"]}, {"answer": "interlocking", "hint": "synonyms for interlocking", "clues": ["interlace", "interlock", "mesh", "lock"]}, {"answer": "intermediate", "hint": "synonyms for intermediate", "clues": ["mediate", "intercede", "arbitrate", "liaise", "intermediate"]}, {"answer": "interpreted", "hint": "synonyms for interpreted", "clues": ["construe", "see", "represent", "render", "interpret", "read", "translate", "rede", "understand"]}, {"answer": "interred", "hint": "synonyms for interred", "clues": ["inhume", "bury", "lay to rest", "entomb", "inter", "interred"]}, {"answer": "interrupted", "hint": "synonyms for interrupted", "clues": ["interrupt", "break up", "break", "disturb", "cut off", "disrupt"]}, {"answer": "intervening", "hint": "synonyms for intervening", "clues": ["intervene", "interfere", "interpose", "step in", "intervening"]}, {"answer": "intoned", "hint": "synonyms for intoned", "clues": ["intonate", "chant", "cantillate", "tone", "intoned"]}, {"answer": "intoxicated", "hint": "synonyms for intoxicated", "clues": ["uplift", "elate", "lift up", "pick up", "soak", "inebriate", "intoxicate"]}, {"answer": "intoxicating", "hint": "synonyms for intoxicating", "clues": ["uplift", "elate", "lift up", "pick up", "soak", "inebriate", "intoxicate", "intoxicating"]}, {"answer": "intriguing", "hint": "synonyms for intriguing", "clues": ["connive", "fascinate", "scheme", "intrigue", "intriguing"]}, {"answer": "intruding", "hint": "synonyms for intruding", "clues": ["intrude", "pry", "trespass", "nose", "poke", "horn in", "irrupt", "obtrude", "intruding"]}, {"answer": "inundated", "hint": "synonyms for inundated", "clues": ["swamp", "deluge", "submerge", "inundate", "flood"]}, {"answer": "invading", "hint": "synonyms for invading", "clues": ["intrude on", "encroach upon", "infest", "invade", "obtrude upon", "overrun", "occupy", "invading"]}, {"answer": "invalidated", "hint": "synonyms for invalidated", "clues": ["invalidate", "cancel", "vitiate", "void", "annul", "quash", "nullify"]}, {"answer": "invalidating", "hint": "synonyms for invalidating", "clues": ["invalidate", "cancel", "vitiate", "void", "annul", "quash", "nullify", "invalidating"]}, {"answer": "invigorated", "hint": "synonyms for invigorated", "clues": ["liven", "exalt", "quicken", "invigorate", "liven up", "inspire", "animate", "enliven"]}, {"answer": "invigorating", "hint": "synonyms for invigorating", "clues": ["liven", "exalt", "quicken", "invigorate", "liven up", "inspire", "animate", "enliven", "invigorating"]}, {"answer": "inviting", "hint": "synonyms for inviting", "clues": ["ask for", "receive", "call for", "pay for", "tempt", "ask over", "ask round", "take in", "ask in", "invite", "bid", "inviting"]}, {"answer": "involved", "hint": "synonyms for involved", "clues": ["regard", "ask", "necessitate", "need", "involve", "take", "postulate", "imply", "affect", "require", "call for", "demand"]}, {"answer": "irritated", "hint": "synonyms for irritated", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle"]}, {"answer": "irritating", "hint": "synonyms for irritating", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "irritating"]}, {"answer": "isolated", "hint": "synonyms for isolated", "clues": ["sequestrate", "isolate", "keep apart", "sequester", "set apart", "insulate"]}, {"answer": "isolating", "hint": "synonyms for isolating", "clues": ["sequestrate", "isolate", "keep apart", "sequester", "set apart", "insulate", "isolating"]}, {"answer": "jade", "hint": "synonyms for jade", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "tire", "outwear", "pall", "wear upon", "wear out", "fatigue", "jade"]}, {"answer": "jaded", "hint": "synonyms for jaded", "clues": ["wear", "tire out", "wear down", "jade", "tire", "outwear", "fag", "fag out", "pall", "wear upon", "wear out", "fatigue"]}, {"answer": "jailed", "hint": "synonyms for jailed", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison", "jailed"]}, {"answer": "jammed", "hint": "synonyms for jammed", "clues": ["occlude", "obstruct", "jam", "ram", "obturate", "jampack", "pile", "chock up", "block", "crush", "pack", "mob", "throng", "impede", "close up", "wad", "jammed"]}, {"answer": "jarring", "hint": "synonyms for jarring", "clues": ["clash", "collide", "bump around", "jar", "jolt", "shake up", "jarring"]}, {"answer": "jawed", "hint": "synonyms for jawed", "clues": ["chew up", "confab", "dress down", "manducate", "chew out", "call on the carpet", "berate", "claver", "chat", "yack away", "lambast", "rebuke", "chit-chat", "chaffer", "lecture", "masticate", "call down", "reprimand", "yack", "jaw", "remonstrate", "visit", "rattle on", "chatter", "gossip", "confabulate", "rag", "scold", "chew the fat", "take to task", "reproof", "natter", "have words", "bawl out", "shoot the breeze", "chide", "chew", "trounce", "yap away", "jawed"]}, {"answer": "jeering", "hint": "synonyms for jeering", "clues": ["jeer", "gibe", "barrack", "flout", "scoff"]}, {"answer": "jerking", "hint": "synonyms for jerking", "clues": ["flick", "yank", "buck", "hitch", "jerk", "twitch"]}, {"answer": "jinxed", "hint": "synonyms for jinxed", "clues": ["enchant", "hex", "witch", "glamour", "jinx", "bewitch", "jinxed"]}, {"answer": "joined", "hint": "synonyms for joined", "clues": ["unite", "conjoin", "link up", "connect", "fall in", "get together", "link", "join", "bring together", "joined"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["banter", "kid", "chaff", "josh", "jolly"]}, {"answer": "jumbled", "hint": "synonyms for jumbled", "clues": ["confuse", "throw together", "mix up", "mingle", "scramble", "jumble"]}, {"answer": "justified", "hint": "synonyms for justified", "clues": ["apologise", "warrant", "absolve", "excuse", "rationalise", "justify", "vindicate", "free", "justified"]}, {"answer": "jutting", "hint": "synonyms for jutting", "clues": ["protrude", "jut out", "project", "jut", "stick out", "jutting"]}, {"answer": "keeled", "hint": "synonyms for keeled", "clues": ["swag", "stagger", "careen", "keel", "reel", "lurch", "keeled"]}, {"answer": "kept", "hint": "synonyms for kept", "clues": ["restrain", "stay fresh", "go on", "celebrate", "observe", "maintain", "keep", "continue", "keep on", "prevent", "hold", "preserve", "hold on", "go along", "hold back", "proceed", "keep back", "sustain", "save", "kept"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["name", "identify", "describe", "discover", "key out", "distinguish", "key"]}, {"answer": "keyed", "hint": "synonyms for keyed", "clues": ["key", "identify", "name", "describe", "discover", "key out", "distinguish", "keyed"]}, {"answer": "killing", "hint": "synonyms for killing", "clues": ["vote out", "down", "toss off", "stamp out", "vote down", "wipe out", "belt down", "drink down", "defeat", "pop", "shoot down", "pour down", "obliterate", "kill"]}, {"answer": "kindled", "hint": "synonyms for kindled", "clues": ["inflame", "provoke", "fire", "evoke", "raise", "kindle", "arouse", "conflagrate", "elicit"]}, {"answer": "knitted", "hint": "synonyms for knitted", "clues": ["entwine", "knit", "cockle", "rumple", "pucker", "knitted"]}, {"answer": "knowing", "hint": "synonyms for knowing", "clues": ["bed", "get it on", "have a go at it", "make love", "have it away", "fuck", "make out", "love", "be intimate", "have it off", "know", "live", "eff", "acknowledge", "cognize", "sleep with", "get laid", "bonk", "roll in the hay", "lie with", "recognise", "have intercourse", "screw", "jazz", "hump", "experience", "do it", "bang", "have sex", "sleep together"]}, {"answer": "known", "hint": "synonyms for known", "clues": ["bed", "get it on", "have a go at it", "make love", "have it away", "fuck", "make out", "love", "be intimate", "have it off", "know", "live", "eff", "acknowledge", "cognize", "sleep with", "get laid", "bonk", "roll in the hay", "lie with", "recognise", "have intercourse", "screw", "jazz", "hump", "experience", "do it", "bang", "have sex", "sleep together"]}, {"answer": "labeled", "hint": "synonyms for labeled", "clues": ["label", "tag", "judge", "mark", "pronounce", "labeled"]}, {"answer": "labelled", "hint": "synonyms for labelled", "clues": ["label", "tag", "judge", "mark", "pronounce", "labelled"]}, {"answer": "labored", "hint": "synonyms for labored", "clues": ["labour", "push", "fag", "drudge", "grind", "travail", "tug", "moil", "toil", "drive", "dig", "labored"]}, {"answer": "laboring", "hint": "synonyms for laboring", "clues": ["labour", "push", "fag", "drudge", "grind", "travail", "tug", "moil", "toil", "drive", "dig", "laboring"]}, {"answer": "laboured", "hint": "synonyms for laboured", "clues": ["labour", "fag", "drudge", "grind", "push", "travail", "tug", "moil", "toil", "drive", "dig"]}, {"answer": "labouring", "hint": "synonyms for labouring", "clues": ["labour", "fag", "drudge", "grind", "push", "travail", "tug", "moil", "toil", "drive", "dig"]}, {"answer": "laced", "hint": "synonyms for laced", "clues": ["intertwine", "entwine", "braid", "enlace", "plait", "spike", "interlace", "lace up", "lace", "fortify", "twine"]}, {"answer": "lactating", "hint": "synonyms for lactating", "clues": ["give suck", "suck", "breastfeed", "suckle", "nurse", "wet-nurse", "lactate", "lactating"]}, {"answer": "laden", "hint": "synonyms for laden", "clues": ["load up", "ladle", "load", "laden"]}, {"answer": "ladened", "hint": "synonyms for ladened", "clues": ["laden", "load up", "ladle", "load", "ladened"]}, {"answer": "laid", "hint": "synonyms for laid", "clues": ["pose", "repose", "set", "put down", "lay", "put", "position", "place", "laid"]}, {"answer": "lamented", "hint": "synonyms for lamented", "clues": ["deplore", "keen", "lament", "bewail", "bemoan"]}, {"answer": "lamenting", "hint": "synonyms for lamenting", "clues": ["deplore", "keen", "lament", "bewail", "bemoan"]}, {"answer": "landed", "hint": "synonyms for landed", "clues": ["down", "put down", "shore", "land", "bring down", "bring", "shoot down", "set down", "set ashore", "landed"]}, {"answer": "lapsed", "hint": "synonyms for lapsed", "clues": ["sink", "fall back", "elapse", "glide by", "go along", "retrogress", "regress", "go by", "backslide", "slip away", "pass", "slip by", "recidivate", "lapsed"]}, {"answer": "lashing", "hint": "synonyms for lashing", "clues": ["lash", "flog", "whip", "lather", "welt", "strap", "trounce"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["go", "hold out", "live on", "live", "hold up", "survive", "endure", "last"]}, {"answer": "lasting", "hint": "synonyms for lasting", "clues": ["go", "hold out", "last", "live on", "live", "hold up", "survive", "endure"]}, {"answer": "lay", "hint": "synonyms for lay", "clues": ["pose", "repose", "lie", "set", "put down", "rest", "lie down", "dwell", "lie in", "place", "put", "consist", "position", "lay"]}, {"answer": "leaded", "hint": "synonyms for leaded", "clues": ["go", "direct", "moderate", "contribute", "chair", "precede", "lead", "result", "run", "leave", "take", "head", "top", "guide", "conduct", "pass", "extend", "leaded"]}, {"answer": "leading", "hint": "synonyms for leading", "clues": ["go", "direct", "moderate", "contribute", "chair", "precede", "lead", "result", "run", "leave", "take", "head", "top", "guide", "conduct", "pass", "extend"]}, {"answer": "leafed", "hint": "synonyms for leafed", "clues": ["flip", "flick", "leaf", "riff", "riffle", "thumb", "leafed"]}, {"answer": "lean", "hint": "synonyms for lean", "clues": ["incline", "angle", "be given", "tilt", "tend", "list", "tip", "run", "slant", "lean"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["incline", "angle", "be given", "tilt", "tend", "list", "lean", "tip", "run", "slant"]}, {"answer": "learned", "hint": "synonyms for learned", "clues": ["ascertain", "memorize", "hear", "instruct", "pick up", "determine", "discover", "study", "larn", "teach", "watch", "con", "see", "take", "acquire", "check", "get word", "read", "get a line", "find out", "get wind", "learned"]}, {"answer": "leased", "hint": "synonyms for leased", "clues": ["let", "hire", "take", "lease", "rent", "charter", "engage"]}, {"answer": "leaved", "hint": "synonyms for leaved", "clues": ["go away", "give", "leave behind", "allow", "lead", "result", "depart", "allow for", "go out", "will", "leave", "go forth", "leave alone", "pass on", "exit", "forget", "provide", "get out", "bequeath", "pull up stakes", "impart", "entrust"]}, {"answer": "left", "hint": "synonyms for left", "clues": ["go away", "give", "leave behind", "allow", "lead", "result", "depart", "allow for", "go out", "will", "leave", "go forth", "leave alone", "pass on", "exit", "forget", "provide", "get out", "bequeath", "pull up stakes", "impart", "entrust", "left"]}, {"answer": "legitimate", "hint": "synonyms for legitimate", "clues": ["decriminalize", "legitimatize", "legalise", "legitimise"]}, {"answer": "lessened", "hint": "synonyms for lessened", "clues": ["diminish", "subside", "lessen", "decrease", "minify", "fall"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["tear down", "raze", "rase", "even out", "flush", "even", "level off", "charge", "pull down", "take down", "point", "dismantle", "level"]}, {"answer": "liberated", "hint": "synonyms for liberated", "clues": ["set free", "unloose", "loose", "emancipate", "release", "liberate", "free"]}, {"answer": "licked", "hint": "synonyms for licked", "clues": ["bat", "work", "lap", "thrash", "lick", "work out", "puzzle out", "clobber", "solve", "lap up", "drub", "figure out", "cream", "licked"]}, {"answer": "lifted", "hint": "synonyms for lifted", "clues": ["countermand", "go up", "plagiarise", "come up", "reverse", "rise", "purloin", "rear", "swipe", "rescind", "overturn", "lift", "wind", "filch", "airlift", "elevate", "nobble", "annul", "cabbage", "uprise", "hoist", "sneak", "rustle", "get up", "abstract", "bring up", "pilfer", "pinch", "repeal", "snarf", "vacate", "hook", "face-lift", "move up", "revoke", "lifted"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["illumine", "alight", "light up", "perch", "ignite", "get off", "dismount", "get down", "unhorse", "fall", "fire up"]}, {"answer": "lighted", "hint": "synonyms for lighted", "clues": ["illumine", "light", "light up", "perch", "get down", "ignite", "get off", "dismount", "unhorse", "fall", "fire up", "lighted"]}, {"answer": "limited", "hint": "synonyms for limited", "clues": ["restrain", "throttle", "specify", "restrict", "limit", "circumscribe", "set", "define", "trammel", "confine", "determine", "bound", "fix", "limited"]}, {"answer": "limiting", "hint": "synonyms for limiting", "clues": ["restrain", "throttle", "specify", "restrict", "limit", "circumscribe", "set", "define", "trammel", "confine", "determine", "bound", "fix"]}, {"answer": "lined", "hint": "synonyms for lined", "clues": ["trace", "describe", "delineate", "draw", "line", "run along"]}, {"answer": "linked", "hint": "synonyms for linked", "clues": ["tie", "unite", "link up", "connect", "link", "associate", "join", "colligate", "tie in", "yoke", "relate", "linked"]}, {"answer": "liquefied", "hint": "synonyms for liquefied", "clues": ["flux", "liquefy", "liquidize", "liquefied"]}, {"answer": "liquified", "hint": "synonyms for liquified", "clues": ["flux", "liquefy", "liquidize", "liquified"]}, {"answer": "listed", "hint": "synonyms for listed", "clues": ["name", "number", "list", "lean", "heel", "listed"]}, {"answer": "lit", "hint": "synonyms for lit", "clues": ["illumine", "light", "light up", "perch", "get down", "ignite", "get off", "dismount", "unhorse", "fall", "fire up", "lit"]}, {"answer": "live", "hint": "synonyms for live", "clues": ["go", "hold out", "know", "populate", "last", "live on", "subsist", "dwell", "hold up", "experience", "be", "survive", "exist", "endure", "inhabit", "live"]}, {"answer": "living", "hint": "synonyms for living", "clues": ["go", "hold out", "know", "populate", "last", "live on", "live", "dwell", "hold up", "subsist", "experience", "be", "survive", "exist", "endure", "inhabit", "living"]}, {"answer": "loaded", "hint": "synonyms for loaded", "clues": ["stretch", "load", "adulterate", "dilute", "laden", "charge", "load up", "debase", "loaded"]}, {"answer": "localised", "hint": "synonyms for localised", "clues": ["focalise", "set", "place", "localize", "localised"]}, {"answer": "localized", "hint": "synonyms for localized", "clues": ["focalise", "set", "place", "localize"]}, {"answer": "located", "hint": "synonyms for located", "clues": ["site", "situate", "settle", "place", "turn up", "locate"]}, {"answer": "looking", "hint": "synonyms for looking", "clues": ["look", "bet", "see", "wait", "face", "attend", "front", "appear", "take care", "expect", "reckon", "search", "depend", "count", "calculate"]}, {"answer": "loose", "hint": "synonyms for loose", "clues": ["relax", "loosen", "let loose", "unloose", "unleash", "release", "liberate", "free"]}, {"answer": "loosened", "hint": "synonyms for loosened", "clues": ["relax", "loosen", "tease apart", "untie", "undo", "tease"]}, {"answer": "looted", "hint": "synonyms for looted", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack", "looted"]}, {"answer": "lost", "hint": "synonyms for lost", "clues": ["fall back", "turn a loss", "misplace", "fall behind", "drop off", "mislay", "lose", "suffer", "recede", "miss", "lost"]}, {"answer": "loved", "hint": "synonyms for loved", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "enjoy"]}, {"answer": "loving", "hint": "synonyms for loving", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "enjoy", "loving"]}, {"answer": "lowered", "hint": "synonyms for lowered", "clues": ["let down", "frown", "glower", "lour", "bring down", "depress", "turn down", "take down", "lowered"]}, {"answer": "lowering", "hint": "synonyms for lowering", "clues": ["let down", "frown", "glower", "lour", "bring down", "depress", "turn down", "take down", "lowering"]}, {"answer": "maculate", "hint": "synonyms for maculate", "clues": ["sully", "foul", "defile", "tarnish", "befoul", "stain", "maculate"]}, {"answer": "made", "hint": "synonyms for made", "clues": ["do", "induce", "form", "defecate", "wee-wee", "work", "earn", "wee", "prepare", "score", "pass water", "gain", "construct", "draw", "make up", "attain", "take in", "nominate", "fix", "pretend", "cook", "cause", "spend a penny", "ready", "pull in", "establish", "ca-ca", "lay down", "micturate", "seduce", "reach", "pee-pee", "urinate", "give", "have", "clear", "name", "make", "puddle", "bring in", "hold", "stimulate", "get to", "take a leak", "stool", "shit", "take a crap", "make believe", "produce", "constitute", "throw", "crap", "take", "realise", "arrive at", "get", "make water", "relieve oneself", "piddle", "progress to", "take a shit", "pee", "create", "piss", "build", "made"]}, {"answer": "magnetised", "hint": "synonyms for magnetised", "clues": ["spellbind", "mesmerize", "magnetize", "bewitch", "magnetised"]}, {"answer": "magnetized", "hint": "synonyms for magnetized", "clues": ["magnetize", "spellbind", "mesmerize", "bewitch"]}, {"answer": "magnified", "hint": "synonyms for magnified", "clues": ["magnify", "hyperbolize", "overstate", "blow up", "overdraw", "exaggerate", "amplify", "enlarge", "magnified"]}, {"answer": "mailed", "hint": "synonyms for mailed", "clues": ["post", "send", "get off", "mail", "mailed"]}, {"answer": "maintained", "hint": "synonyms for maintained", "clues": ["wield", "assert", "exert", "defend", "observe", "maintain", "keep", "uphold", "asseverate", "keep up", "hold", "sustain", "preserve", "conserve"]}, {"answer": "maledict", "hint": "synonyms for maledict", "clues": ["anathemise", "curse", "damn", "beshrew", "bedamn", "imprecate", "maledict"]}, {"answer": "maltreated", "hint": "synonyms for maltreated", "clues": ["step", "ill-use", "ill-treat", "mistreat", "maltreat", "abuse"]}, {"answer": "mangled", "hint": "synonyms for mangled", "clues": ["maul", "mutilate", "murder", "cut up", "mangle"]}, {"answer": "manifest", "hint": "synonyms for manifest", "clues": ["certify", "attest", "evidence", "demonstrate", "manifest"]}, {"answer": "manufactured", "hint": "synonyms for manufactured", "clues": ["fabricate", "manufacture", "construct", "make up", "cook up", "invent"]}, {"answer": "marked", "hint": "synonyms for marked", "clues": ["cross out", "denounce", "note", "stigmatize", "strike off", "differentiate", "score", "tag", "grade", "scar", "cross off", "mark off", "nock", "commemorate", "distinguish", "label", "strike out", "notice", "punctuate", "mark", "set", "tick", "pock", "brand", "pit", "check off", "check", "tick off", "marked"]}, {"answer": "marred", "hint": "synonyms for marred", "clues": ["mutilate", "impair", "spoil", "mar", "vitiate", "deflower", "marred"]}, {"answer": "married", "hint": "synonyms for married", "clues": ["tie", "hook up with", "conjoin", "splice", "marry", "wed", "espouse", "get hitched with", "get married", "married"]}, {"answer": "masked", "hint": "synonyms for masked", "clues": ["disguise", "mask", "block out", "cloak", "dissemble", "masked"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["subdue", "overcome", "surmount", "dominate", "control", "get the hang", "get over", "master"]}, {"answer": "mastered", "hint": "synonyms for mastered", "clues": ["subdue", "control", "master", "surmount", "overcome", "dominate", "get the hang", "get over"]}, {"answer": "mat", "hint": "synonyms for mat", "clues": ["matte up", "snarl", "tangle", "matt-up", "matte", "felt up", "felt", "mat"]}, {"answer": "matched", "hint": "synonyms for matched", "clues": ["mate", "equal", "gibe", "cope with", "pair", "rival", "correspond", "oppose", "fit", "couple", "jibe", "match", "equate", "tally", "agree", "touch", "meet", "twin", "play off", "pit", "equalize", "check", "matched"]}, {"answer": "matching", "hint": "synonyms for matching", "clues": ["mate", "equal", "gibe", "cope with", "pair", "rival", "correspond", "oppose", "fit", "couple", "jibe", "match", "equate", "tally", "agree", "touch", "meet", "twin", "play off", "pit", "equalize", "check"]}, {"answer": "mated", "hint": "synonyms for mated", "clues": ["matte up", "snarl", "mate", "couple", "match", "tangle", "copulate", "twin", "matt-up", "felt up", "felt", "pair", "checkmate"]}, {"answer": "matte", "hint": "synonyms for matte", "clues": ["mat", "matt-up", "matte up", "felt up", "felt", "matte"]}, {"answer": "matted", "hint": "synonyms for matted", "clues": ["matte up", "snarl", "tangle", "mat", "matt-up", "matte", "felt up", "felt"]}, {"answer": "mature", "hint": "synonyms for mature", "clues": ["maturate", "ripen", "age", "suppurate", "senesce", "get on", "grow"]}, {"answer": "matured", "hint": "synonyms for matured", "clues": ["maturate", "ripen", "senesce", "get on", "age", "suppurate", "grow", "matured"]}, {"answer": "mean", "hint": "synonyms for mean", "clues": ["entail", "think of", "signify", "stand for", "imply", "intend", "think", "have in mind", "mean"]}, {"answer": "meandering", "hint": "synonyms for meandering", "clues": ["wind", "wander", "thread", "weave", "meander"]}, {"answer": "meaning", "hint": "synonyms for meaning", "clues": ["entail", "think of", "imply", "intend", "think", "mean", "signify", "stand for", "have in mind"]}, {"answer": "measured", "hint": "synonyms for measured", "clues": ["evaluate", "measure", "assess", "value", "measure out", "mensurate", "appraise", "quantify"]}, {"answer": "mediate", "hint": "synonyms for mediate", "clues": ["intercede", "intermediate", "arbitrate", "liaise", "mediate"]}, {"answer": "mediated", "hint": "synonyms for mediated", "clues": ["intercede", "arbitrate", "liaise", "mediate", "intermediate"]}, {"answer": "meet", "hint": "synonyms for meet", "clues": ["converge", "fulfill", "forgather", "satisfy", "play", "take on", "conform to", "cope with", "fill", "assemble", "adjoin", "suffer", "come across", "see", "encounter", "fit", "get together", "match", "receive", "touch", "gather", "run into", "contact", "run across", "meet"]}, {"answer": "melted", "hint": "synonyms for melted", "clues": ["mellow", "disappear", "mellow out", "unthaw", "melt", "unfreeze", "dethaw", "thaw", "dissolve", "evaporate", "melt down", "fade", "meld", "run", "melted"]}, {"answer": "melting", "hint": "synonyms for melting", "clues": ["mellow", "disappear", "mellow out", "unthaw", "melt", "unfreeze", "dethaw", "thaw", "dissolve", "evaporate", "melt down", "fade", "meld", "run"]}, {"answer": "menacing", "hint": "synonyms for menacing", "clues": ["jeopardise", "endanger", "menace", "peril", "threaten", "imperil", "menacing"]}, {"answer": "merged", "hint": "synonyms for merged", "clues": ["coalesce", "unite", "unify", "flux", "fuse", "mix", "commingle", "conflate", "immix", "merge", "combine", "meld", "blend"]}, {"answer": "merging", "hint": "synonyms for merging", "clues": ["coalesce", "unite", "unify", "flux", "fuse", "mix", "commingle", "conflate", "immix", "merge", "combine", "meld", "blend", "merging"]}, {"answer": "meshed", "hint": "synonyms for meshed", "clues": ["operate", "ensnarl", "interlock", "engage", "mesh", "enmesh", "lock", "meshed"]}, {"answer": "mesmerised", "hint": "synonyms for mesmerised", "clues": ["hypnotize", "magnetize", "spellbind", "mesmerize", "bewitch", "mesmerised"]}, {"answer": "mesmerized", "hint": "synonyms for mesmerized", "clues": ["hypnotize", "magnetize", "spellbind", "mesmerize", "bewitch"]}, {"answer": "mesmerizing", "hint": "synonyms for mesmerizing", "clues": ["hypnotize", "magnetize", "spellbind", "mesmerize", "bewitch", "mesmerizing"]}, {"answer": "minded", "hint": "synonyms for minded", "clues": ["take care", "listen", "beware", "mind", "heed", "bear in mind", "minded"]}, {"answer": "minimized", "hint": "synonyms for minimized", "clues": ["belittle", "minimize", "understate", "denigrate", "derogate", "downplay"]}, {"answer": "mired", "hint": "synonyms for mired", "clues": ["muck", "bog down", "entangle", "grind to a halt", "mud", "get stuck", "muck up", "mire"]}, {"answer": "misappropriated", "hint": "synonyms for misappropriated", "clues": ["peculate", "malversate", "misappropriate", "defalcate", "embezzle"]}, {"answer": "misguided", "hint": "synonyms for misguided", "clues": ["misdirect", "misadvise", "mislead", "lead astray", "misguide"]}, {"answer": "misleading", "hint": "synonyms for misleading", "clues": ["misinform", "misdirect", "mislead", "lead astray", "misguide"]}, {"answer": "misrepresented", "hint": "synonyms for misrepresented", "clues": ["manipulate", "cook", "misrepresent", "fake", "belie", "falsify", "wangle", "fudge"]}, {"answer": "missed", "hint": "synonyms for missed", "clues": ["leave out", "overleap", "overlook", "escape", "omit", "pretermit", "lack", "drop", "lose", "neglect", "miss", "missed"]}, {"answer": "missing", "hint": "synonyms for missing", "clues": ["leave out", "overleap", "overlook", "escape", "omit", "pretermit", "lack", "drop", "lose", "neglect", "miss"]}, {"answer": "mistaken", "hint": "synonyms for mistaken", "clues": ["err", "slip", "mistake", "misidentify"]}, {"answer": "mistreated", "hint": "synonyms for mistreated", "clues": ["step", "ill-use", "ill-treat", "mistreat", "maltreat", "abuse"]}, {"answer": "misunderstood", "hint": "synonyms for misunderstood", "clues": ["misconceive", "be amiss", "misinterpret", "misapprehend", "misconstrue", "misunderstand", "misunderstood"]}, {"answer": "misused", "hint": "synonyms for misused", "clues": ["misuse", "pervert", "abuse", "misapply"]}, {"answer": "mixed", "hint": "synonyms for mixed", "clues": ["desegregate", "commix", "unify", "fuse", "mix", "mingle", "ruffle", "combine", "integrate", "blend", "coalesce", "flux", "mix in", "shuffle", "amalgamate", "commingle", "conflate", "immix", "merge", "meld", "mixed"]}, {"answer": "model", "hint": "synonyms for model", "clues": ["pose", "sit", "mock up", "mold", "pattern", "posture", "simulate", "model"]}, {"answer": "modeled", "hint": "synonyms for modeled", "clues": ["pose", "pattern", "mock up", "mould", "posture", "simulate", "sit", "model", "modeled"]}, {"answer": "moderate", "hint": "synonyms for moderate", "clues": ["soften", "tone down", "control", "curb", "chair", "hold in", "mince", "chasten", "hold", "lead", "temper", "contain", "tame", "check", "moderate"]}, {"answer": "moderating", "hint": "synonyms for moderating", "clues": ["soften", "tone down", "control", "moderate", "curb", "chair", "hold in", "mince", "chasten", "hold", "lead", "temper", "contain", "tame", "check", "moderating"]}, {"answer": "modernised", "hint": "synonyms for modernised", "clues": ["overhaul", "modernize", "develop", "modernised"]}, {"answer": "modified", "hint": "synonyms for modified", "clues": ["alter", "qualify", "change", "modify", "modified"]}, {"answer": "modulated", "hint": "synonyms for modulated", "clues": ["inflect", "regulate", "tone", "modulate"]}, {"answer": "molded", "hint": "synonyms for molded", "clues": ["form", "work", "mold", "regulate", "forge", "determine", "shape", "cast", "mildew", "influence", "model", "molded"]}, {"answer": "molten", "hint": "synonyms for molten", "clues": ["mellow", "disappear", "mellow out", "unthaw", "melt", "unfreeze", "dethaw", "thaw", "dissolve", "evaporate", "melt down", "fade", "meld", "run", "molten"]}, {"answer": "moot", "hint": "synonyms for moot", "clues": ["consider", "debate", "deliberate", "turn over", "moot"]}, {"answer": "mortified", "hint": "synonyms for mortified", "clues": ["subdue", "crucify", "chagrin", "gangrene", "mortify", "humiliate", "sphacelate", "abase", "necrose", "humble", "mortified"]}, {"answer": "mortifying", "hint": "synonyms for mortifying", "clues": ["subdue", "crucify", "chagrin", "gangrene", "mortify", "humiliate", "sphacelate", "abase", "necrose", "humble"]}, {"answer": "motivated", "hint": "synonyms for motivated", "clues": ["actuate", "propel", "motivate", "move", "incite", "prompt"]}, {"answer": "motivating", "hint": "synonyms for motivating", "clues": ["actuate", "propel", "motivate", "move", "incite", "prompt", "motivating"]}, {"answer": "mottled", "hint": "synonyms for mottled", "clues": ["blotch", "cloud", "streak", "dapple", "mottle"]}, {"answer": "mounted", "hint": "synonyms for mounted", "clues": ["climb up", "get on", "hop on", "jump on", "climb on", "go up", "ride", "rise", "wax", "bestride", "mount up", "climb", "put on", "mount", "mounted"]}, {"answer": "moved", "hint": "synonyms for moved", "clues": ["go", "strike", "affect", "locomote", "travel", "run", "displace", "motivate", "move", "act", "incite", "be active", "impress", "actuate", "propel", "make a motion", "proceed", "prompt"]}, {"answer": "moving", "hint": "synonyms for moving", "clues": ["go", "strike", "affect", "locomote", "travel", "run", "displace", "motivate", "move", "act", "incite", "be active", "impress", "actuate", "propel", "make a motion", "proceed", "prompt", "moving"]}, {"answer": "mown", "hint": "synonyms for mown", "clues": ["cut down", "pout", "mow", "mop"]}, {"answer": "muffled", "hint": "synonyms for muffled", "clues": ["tone down", "stifle", "mute", "smother", "damp", "dull", "strangle", "repress", "muffle", "dampen"]}, {"answer": "multiplied", "hint": "synonyms for multiplied", "clues": ["multiply", "procreate", "manifold", "breed", "reproduce", "multiplied"]}, {"answer": "murdered", "hint": "synonyms for murdered", "clues": ["dispatch", "remove", "mangle", "hit", "polish off", "slay", "mutilate", "bump off", "murder", "off"]}, {"answer": "murmuring", "hint": "synonyms for murmuring", "clues": ["mutter", "gnarl", "murmur", "croak", "grumble"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "chew over", "meditate", "speculate", "musing"]}, {"answer": "mute", "hint": "synonyms for mute", "clues": ["tone down", "dull", "muffle", "dampen", "damp", "mute"]}, {"answer": "muted", "hint": "synonyms for muted", "clues": ["tone down", "dull", "mute", "muffle", "dampen", "damp"]}, {"answer": "mutilated", "hint": "synonyms for mutilated", "clues": ["mutilate", "cut up", "murder", "mangle", "mar"]}, {"answer": "mystified", "hint": "synonyms for mystified", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get", "mystified"]}, {"answer": "mystifying", "hint": "synonyms for mystifying", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "naming", "hint": "synonyms for naming", "clues": ["mention", "name", "key", "make", "call", "diagnose", "advert", "discover", "list", "nominate", "key out", "constitute", "distinguish", "identify", "bring up", "cite", "appoint", "describe", "refer", "naming"]}, {"answer": "narrow", "hint": "synonyms for narrow", "clues": ["specify", "constringe", "specialise", "constrict", "pin down", "narrow down", "contract", "peg down", "nail down", "narrow"]}, {"answer": "narrowed", "hint": "synonyms for narrowed", "clues": ["narrow", "specify", "constringe", "specialise", "constrict", "pin down", "narrow down", "contract", "peg down", "nail down"]}, {"answer": "narrowing", "hint": "synonyms for narrowing", "clues": ["narrow", "specify", "constringe", "specialise", "constrict", "pin down", "narrow down", "contract", "peg down", "nail down"]}, {"answer": "naturalised", "hint": "synonyms for naturalised", "clues": ["domesticate", "cultivate", "naturalize", "tame"]}, {"answer": "naturalized", "hint": "synonyms for naturalized", "clues": ["domesticate", "cultivate", "naturalize", "tame"]}, {"answer": "nauseated", "hint": "synonyms for nauseated", "clues": ["revolt", "nauseate", "disgust", "churn up", "sicken", "turn one's stomach"]}, {"answer": "nauseating", "hint": "synonyms for nauseating", "clues": ["revolt", "nauseate", "disgust", "churn up", "sicken", "turn one's stomach", "nauseating"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["come near", "draw near", "approach", "draw close", "go up", "come on", "near"]}, {"answer": "needed", "hint": "synonyms for needed", "clues": ["ask", "necessitate", "need", "involve", "take", "postulate", "require", "call for", "want", "demand", "needed"]}, {"answer": "neglected", "hint": "synonyms for neglected", "clues": ["leave out", "overleap", "omit", "disregard", "pretermit", "ignore", "fail", "drop", "overlook", "neglect", "miss"]}, {"answer": "nestled", "hint": "synonyms for nestled", "clues": ["nestle", "cuddle", "draw close", "nest", "snuggle", "nuzzle"]}, {"answer": "net", "hint": "synonyms for net", "clues": ["nett", "sack up", "web", "clear", "sack"]}, {"answer": "netted", "hint": "synonyms for netted", "clues": ["nett", "sack up", "web", "clear", "sack", "netted"]}, {"answer": "nettled", "hint": "synonyms for nettled", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "urticate", "nettle"]}, {"answer": "neutered", "hint": "synonyms for neutered", "clues": ["alter", "castrate", "spay", "neuter"]}, {"answer": "neutralised", "hint": "synonyms for neutralised", "clues": ["negate", "knock off", "neutralize", "do in", "waste", "nullify", "liquidate"]}, {"answer": "neutralized", "hint": "synonyms for neutralized", "clues": ["counteract", "negate", "counterbalance", "knock off", "neutralize", "countervail", "do in", "waste", "nullify", "liquidate"]}, {"answer": "niggling", "hint": "synonyms for niggling", "clues": ["niggle", "brabble", "fuss", "squabble", "pettifog", "quibble", "bicker", "fret", "niggling"]}, {"answer": "nipping", "hint": "synonyms for nipping", "clues": ["nip", "clip", "pinch", "nip off", "squeeze", "twitch", "tweet", "twinge", "nipping"]}, {"answer": "nominated", "hint": "synonyms for nominated", "clues": ["name", "make", "put forward", "propose", "put up", "appoint", "nominate", "constitute"]}, {"answer": "nonplused", "hint": "synonyms for nonplused", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "nonplussed", "hint": "synonyms for nonplussed", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get", "nonplussed"]}, {"answer": "nosed", "hint": "synonyms for nosed", "clues": ["wind", "scent", "intrude", "pry", "nuzzle", "nose", "horn in", "poke"]}, {"answer": "noted", "hint": "synonyms for noted", "clues": ["mention", "note", "notice", "observe", "mark", "remark", "take note", "take down"]}, {"answer": "noticed", "hint": "synonyms for noticed", "clues": ["notice", "note", "observe", "mark", "remark", "point out", "comment", "find", "acknowledge", "discover", "detect"]}, {"answer": "nourished", "hint": "synonyms for nourished", "clues": ["aliment", "nourish", "sustain", "nutrify", "nurture"]}, {"answer": "nourishing", "hint": "synonyms for nourishing", "clues": ["aliment", "nourish", "sustain", "nutrify", "nurture"]}, {"answer": "nullified", "hint": "synonyms for nullified", "clues": ["invalidate", "negate", "neutralize", "void", "annul", "quash", "nullify", "nullified"]}, {"answer": "numbing", "hint": "synonyms for numbing", "clues": ["dull", "blunt", "numb", "benumb"]}, {"answer": "nursed", "hint": "synonyms for nursed", "clues": ["give suck", "suck", "harbour", "breastfeed", "suckle", "nurse", "wet-nurse", "entertain", "lactate", "hold"]}, {"answer": "o.k.", "hint": "synonyms for o.k.", "clues": ["sanction", "O.K.", "okay", "approve"]}, {"answer": "obligate", "hint": "synonyms for obligate", "clues": ["hold", "oblige", "compel", "bind"]}, {"answer": "obligated", "hint": "synonyms for obligated", "clues": ["obligate", "hold", "compel", "bind"]}, {"answer": "obliged", "hint": "synonyms for obliged", "clues": ["obligate", "hold", "compel", "accommodate", "bind", "obliged"]}, {"answer": "obliging", "hint": "synonyms for obliging", "clues": ["obligate", "hold", "compel", "accommodate", "bind", "obliging"]}, {"answer": "obliterate", "hint": "synonyms for obliterate", "clues": ["obscure", "veil", "hide", "blot out", "wipe out", "efface", "kill", "obliterate"]}, {"answer": "obliterated", "hint": "synonyms for obliterated", "clues": ["obscure", "hide", "wipe out", "efface", "veil", "blot out", "obliterate", "kill"]}, {"answer": "obscure", "hint": "synonyms for obscure", "clues": ["blur", "haze over", "mist", "confuse", "overcloud", "hide", "becloud", "obnubilate", "fog", "bedim", "befog", "veil", "blot out", "cloud", "obliterate", "obscure"]}, {"answer": "observed", "hint": "synonyms for observed", "clues": ["mention", "honour", "note", "celebrate", "observe", "follow", "abide by", "keep", "keep an eye on", "maintain", "take note", "find", "discover", "detect", "watch", "notice", "watch over", "remark", "respect"]}, {"answer": "observing", "hint": "synonyms for observing", "clues": ["mention", "honour", "note", "celebrate", "observe", "follow", "abide by", "keep", "keep an eye on", "maintain", "take note", "find", "discover", "detect", "watch", "notice", "watch over", "remark", "respect", "observing"]}, {"answer": "obstructed", "hint": "synonyms for obstructed", "clues": ["blockade", "occlude", "stymie", "block", "stymy", "impede", "obstruct", "close up", "jam", "embarrass", "obturate", "hinder"]}, {"answer": "obviating", "hint": "synonyms for obviating", "clues": ["obviate", "fend off", "rid of", "avert", "head off", "debar", "forefend", "ward off", "eliminate", "stave off", "avoid", "deflect", "obviating"]}, {"answer": "occluded", "hint": "synonyms for occluded", "clues": ["obstruct", "close up", "occlude", "jam", "block", "obturate", "impede"]}, {"answer": "occupied", "hint": "synonyms for occupied", "clues": ["interest", "concern", "engage", "take", "absorb", "engross", "busy", "use up", "invade", "lodge in", "reside", "fill", "worry", "occupy", "occupied"]}, {"answer": "off", "hint": "synonyms for off", "clues": ["bump off", "murder", "dispatch", "remove", "hit", "polish off", "slay", "off"]}, {"answer": "offended", "hint": "synonyms for offended", "clues": ["break", "spite", "shock", "appall", "scandalize", "violate", "infract", "wound", "bruise", "go against", "injure", "breach", "offend", "hurt", "pique", "transgress", "outrage"]}, {"answer": "offending", "hint": "synonyms for offending", "clues": ["break", "spite", "shock", "appall", "scandalize", "violate", "infract", "wound", "bruise", "go against", "injure", "breach", "offend", "hurt", "pique", "transgress", "outrage"]}, {"answer": "oiled", "hint": "synonyms for oiled", "clues": ["oil", "inunct", "anoint", "embrocate", "anele", "oiled"]}, {"answer": "oozing", "hint": "synonyms for oozing", "clues": ["seep", "exudate", "ooze", "exude", "transude", "ooze out", "oozing"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["unfold", "open up", "spread out", "spread", "give", "afford", "open"]}, {"answer": "opened", "hint": "synonyms for opened", "clues": ["open up", "open", "spread out", "spread", "unfold", "give", "afford", "opened"]}, {"answer": "opening", "hint": "synonyms for opening", "clues": ["open up", "open", "spread out", "spread", "unfold", "give", "afford"]}, {"answer": "operating", "hint": "synonyms for operating", "clues": ["manoeuver", "go", "control", "mesh", "work", "lock", "operate", "operate on", "engage", "run", "function", "operating"]}, {"answer": "opposed", "hint": "synonyms for opposed", "clues": ["fight down", "oppose", "defend", "controvert", "fight back", "counterbalance", "match", "fight", "contradict", "play off", "pit", "react"]}, {"answer": "opposing", "hint": "synonyms for opposing", "clues": ["fight down", "oppose", "defend", "controvert", "fight back", "counterbalance", "match", "fight", "contradict", "play off", "pit", "react", "opposing"]}, {"answer": "oppressed", "hint": "synonyms for oppressed", "clues": ["persecute", "oppress", "crush", "suppress"]}, {"answer": "orchestrated", "hint": "synonyms for orchestrated", "clues": ["engineer", "organize", "mastermind", "direct", "orchestrate"]}, {"answer": "ordained", "hint": "synonyms for ordained", "clues": ["enact", "ordain", "order", "ordinate", "consecrate"]}, {"answer": "ordered", "hint": "synonyms for ordered", "clues": ["enjoin", "set up", "dictate", "ordinate", "order", "regularise", "tell", "grade", "govern", "place", "prescribe", "range", "rank", "rate", "consecrate", "say", "regulate", "ordain", "put", "arrange", "ordered"]}, {"answer": "organised", "hint": "synonyms for organised", "clues": ["organize", "form", "get up", "devise", "direct", "prepare", "orchestrate", "unionize", "engineer", "mastermind", "machinate", "coordinate", "organised"]}, {"answer": "organized", "hint": "synonyms for organized", "clues": ["form", "organize", "get up", "direct", "devise", "prepare", "unionize", "engineer", "mastermind", "machinate", "orchestrate", "coordinate"]}, {"answer": "oriented", "hint": "synonyms for oriented", "clues": ["tailor", "orientate", "point", "orient"]}, {"answer": "orienting", "hint": "synonyms for orienting", "clues": ["tailor", "orientate", "point", "orient"]}, {"answer": "oscillating", "hint": "synonyms for oscillating", "clues": ["vacillate", "hover", "vibrate", "oscillate", "oscillating"]}, {"answer": "outfitted", "hint": "synonyms for outfitted", "clues": ["outfit", "fit out", "equip", "fit", "outfitted"]}, {"answer": "outgoing", "hint": "synonyms for outgoing", "clues": ["outmatch", "outstrip", "exceed", "surmount", "outgo", "surpass", "outdo", "outperform"]}, {"answer": "outlined", "hint": "synonyms for outlined", "clues": ["draft", "delineate", "adumbrate", "sketch", "limn", "outline"]}, {"answer": "outraged", "hint": "synonyms for outraged", "clues": ["offend", "assault", "rape", "shock", "appall", "scandalize", "desecrate", "dishonor", "profane", "ravish", "violate", "outrage"]}, {"answer": "overdressed", "hint": "synonyms for overdressed", "clues": ["trick out", "overclothe", "fancy up", "deck up", "attire", "fig up", "deck out", "tog out", "rig out", "tog up", "prink", "get up", "trick up", "overdress", "gussy up", "dress up"]}, {"answer": "overflowing", "hint": "synonyms for overflowing", "clues": ["well over", "run over", "overrun", "brim over", "overflow", "bubble over", "spill over"]}, {"answer": "overloaded", "hint": "synonyms for overloaded", "clues": ["clog", "surcharge", "overcharge", "overload"]}, {"answer": "overlooked", "hint": "synonyms for overlooked", "clues": ["leave out", "look out on", "overleap", "omit", "overtop", "pretermit", "look out over", "command", "dominate", "drop", "overlook", "look across", "neglect", "miss"]}, {"answer": "overlooking", "hint": "synonyms for overlooking", "clues": ["leave out", "look out on", "overleap", "omit", "overtop", "pretermit", "look out over", "command", "dominate", "drop", "overlook", "look across", "neglect", "miss"]}, {"answer": "overpowering", "hint": "synonyms for overpowering", "clues": ["overtake", "whelm", "overmaster", "overpower", "overcome", "sweep over", "overwhelm"]}, {"answer": "overreaching", "hint": "synonyms for overreaching", "clues": ["outsmart", "circumvent", "overreach", "outwit", "outfox", "beat"]}, {"answer": "overriding", "hint": "synonyms for overriding", "clues": ["reverse", "override", "overthrow", "overrule", "overturn", "overriding"]}, {"answer": "overstated", "hint": "synonyms for overstated", "clues": ["magnify", "hyperbolize", "overdraw", "overstate", "exaggerate", "amplify"]}, {"answer": "overturned", "hint": "synonyms for overturned", "clues": ["knock over", "overthrow", "countermand", "reverse", "bowl over", "override", "subvert", "rescind", "overturn", "lift", "overrule", "repeal", "tump over", "turn over", "upset", "revolutionize", "bring down", "vacate", "tip over", "annul", "revoke"]}, {"answer": "overwhelming", "hint": "synonyms for overwhelming", "clues": ["overtake", "flood out", "whelm", "drown", "overmaster", "deluge", "overpower", "overcome", "submerge", "sweep over", "overwhelm"]}, {"answer": "packed", "hint": "synonyms for packed", "clues": ["tamp down", "take", "pack", "mob", "carry", "throng", "tamp", "backpack", "load down", "wad", "bundle", "compact", "jam", "pile", "packed"]}, {"answer": "padded", "hint": "synonyms for padded", "clues": ["embellish", "fill out", "bolster", "slog", "plod", "trudge", "blow up", "dramatize", "aggrandise", "embroider", "tramp", "footslog", "lard", "pad", "padded"]}, {"answer": "paid", "hint": "synonyms for paid", "clues": ["devote", "ante up", "give", "compensate", "bear", "make up", "yield", "pay up", "pay", "pay off", "paid"]}, {"answer": "pained", "hint": "synonyms for pained", "clues": ["anguish", "trouble", "hurt", "pain", "ail", "pained"]}, {"answer": "paired", "hint": "synonyms for paired", "clues": ["geminate", "couple", "mate", "match", "partner off", "twin", "copulate", "pair", "pair off", "paired"]}, {"answer": "palpitating", "hint": "synonyms for palpitating", "clues": ["palpitate", "quiver", "quake", "flutter", "palpitating"]}, {"answer": "pampering", "hint": "synonyms for pampering", "clues": ["featherbed", "spoil", "cocker", "pamper", "indulge", "mollycoddle", "cosset", "baby", "coddle"]}, {"answer": "parented", "hint": "synonyms for parented", "clues": ["parent", "bring up", "rear", "raise", "nurture"]}, {"answer": "parted", "hint": "synonyms for parted", "clues": ["break", "break up", "take off", "split", "set out", "start out", "separate", "split up", "set forth", "set off", "part", "start", "divide", "disunite", "depart", "parted"]}, {"answer": "pass", "hint": "synonyms for pass", "clues": ["overtake", "cash in one's chips", "slide by", "occur", "lead", "go by", "blow over", "draw", "overstep", "slip by", "run", "pass along", "fade", "fall", "die", "croak", "sink", "go through", "buy the farm", "legislate", "choke", "go along", "conk", "egest", "fall out", "give-up the ghost", "take place", "excrete", "go across", "happen", "come about", "reach", "surpass", "authorise", "pass away", "give", "kick the bucket", "clear", "decease", "go", "pop off", "elapse", "go on", "fleet", "make pass", "make it", "expire", "evanesce", "hand", "exceed", "devolve", "spend", "transcend", "travel by", "slip away", "drop dead", "eliminate", "put across", "pass on", "overhaul", "return", "exit", "turn over", "top", "communicate", "guide", "go past", "pass by", "perish", "snuff it", "pass off", "extend", "hap", "pass"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["overtake", "slide by", "lead", "blow over", "draw", "overstep", "slip by", "run", "pass along", "fade", "buy the farm", "sink", "go through", "choke", "go along", "conk", "egest", "fall out", "go across", "come about", "surpass", "pass away", "clear", "decease", "go", "pop off", "go on", "make pass", "make it", "hand", "exceed", "devolve", "spend", "slip away", "overhaul", "top", "guide", "pass off", "hap", "cash in one's chips", "occur", "go by", "die", "croak", "fall", "legislate", "give-up the ghost", "take place", "excrete", "happen", "reach", "authorise", "kick the bucket", "give", "elapse", "fleet", "expire", "evanesce", "transcend", "eliminate", "travel by", "drop dead", "put across", "pass on", "return", "exit", "turn over", "communicate", "go past", "pass by", "perish", "snuff it", "pass", "extend"]}, {"answer": "patronised", "hint": "synonyms for patronised", "clues": ["patronize", "support", "shop at", "sponsor", "condescend", "frequent", "buy at", "patronage", "keep going", "shop", "patronised"]}, {"answer": "patronising", "hint": "synonyms for patronising", "clues": ["patronize", "support", "shop at", "sponsor", "condescend", "frequent", "buy at", "patronage", "keep going", "shop", "patronising"]}, {"answer": "patronized", "hint": "synonyms for patronized", "clues": ["patronize", "support", "shop at", "sponsor", "condescend", "buy at", "frequent", "patronage", "keep going", "shop"]}, {"answer": "patronizing", "hint": "synonyms for patronizing", "clues": ["patronize", "support", "shop at", "sponsor", "condescend", "buy at", "frequent", "patronage", "keep going", "shop", "patronizing"]}, {"answer": "paying", "hint": "synonyms for paying", "clues": ["devote", "ante up", "give", "compensate", "bear", "make up", "yield", "pay up", "pay", "pay off"]}, {"answer": "pedal", "hint": "synonyms for pedal", "clues": ["bike", "cycle", "wheel", "bicycle", "pedal"]}, {"answer": "peeled", "hint": "synonyms for peeled", "clues": ["uncase", "peel off", "strip", "undress", "pare", "peel", "skin", "discase", "disrobe", "flake", "unclothe", "flake off", "strip down", "peeled"]}, {"answer": "penetrating", "hint": "synonyms for penetrating", "clues": ["click", "come home", "get through", "infiltrate", "pervade", "get across", "permeate", "diffuse", "fall into place", "fathom", "imbue", "sink in", "penetrate", "bottom", "riddle", "perforate", "interpenetrate", "dawn", "penetrating"]}, {"answer": "pent", "hint": "synonyms for pent", "clues": ["pen", "indite", "write", "compose"]}, {"answer": "permeating", "hint": "synonyms for permeating", "clues": ["imbue", "sink in", "percolate", "pervade", "permeate", "penetrate", "riddle", "filter", "diffuse", "interpenetrate", "permeating"]}, {"answer": "perplexed", "hint": "synonyms for perplexed", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "complicate", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "perplexing", "hint": "synonyms for perplexing", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "complicate", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "persevering", "hint": "synonyms for persevering", "clues": ["hold on", "persist", "hang on", "persevere", "persevering"]}, {"answer": "persisting", "hint": "synonyms for persisting", "clues": ["prevail", "persist", "hold on", "hang on", "remain", "die hard", "stay", "persevere", "run", "endure"]}, {"answer": "perturbed", "hint": "synonyms for perturbed", "clues": ["cark", "trouble", "unhinge", "distract", "derange", "disquiet", "perturb", "disorder", "throw out of kilter"]}, {"answer": "perturbing", "hint": "synonyms for perturbing", "clues": ["cark", "trouble", "unhinge", "distract", "derange", "disquiet", "perturb", "disorder", "throw out of kilter"]}, {"answer": "perverted", "hint": "synonyms for perverted", "clues": ["deprave", "twist around", "pervert", "twist", "corrupt", "misuse", "abuse", "demoralize", "vitiate", "debauch", "sophisticate", "misdirect", "profane", "subvert", "convolute", "debase"]}, {"answer": "pestered", "hint": "synonyms for pestered", "clues": ["beleaguer", "tease", "pester", "badger", "bug"]}, {"answer": "pestering", "hint": "synonyms for pestering", "clues": ["beleaguer", "tease", "pester", "badger", "bug"]}, {"answer": "petrifying", "hint": "synonyms for petrifying", "clues": ["lapidify", "petrify", "rigidify", "ossify"]}, {"answer": "pictured", "hint": "synonyms for pictured", "clues": ["visualize", "see", "envision", "fancy", "render", "figure", "depict", "picture", "show", "project", "image"]}, {"answer": "piddling", "hint": "synonyms for piddling", "clues": ["make", "puddle", "wee-wee", "wee", "pass water", "take a leak", "wanton", "spend a penny", "make water", "trifle", "wanton away", "micturate", "relieve oneself", "piddle", "pee-pee", "urinate", "pee", "piddle away", "piss", "piddling"]}, {"answer": "piffling", "hint": "synonyms for piffling", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "piffle", "blabber", "prate", "twaddle", "blab", "piffling"]}, {"answer": "pillaged", "hint": "synonyms for pillaged", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "pinched", "hint": "synonyms for pinched", "clues": ["nip", "squeeze", "twitch", "tweet", "sneak", "purloin", "swipe", "vellicate", "lift", "abstract", "pilfer", "pinch", "filch", "snarf", "top", "nobble", "twinge", "hook", "crimp", "cabbage", "pinched"]}, {"answer": "pink", "hint": "synonyms for pink", "clues": ["rap", "ping", "tap", "knock", "pink"]}, {"answer": "pissed", "hint": "synonyms for pissed", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "pissed"]}, {"answer": "pitched", "hint": "synonyms for pitched", "clues": ["deliver", "set up", "vend", "pitch", "hawk", "toss", "cant over", "shift", "cant", "monger", "slant", "flip", "sky", "incline", "gear", "tilt", "huckster", "slope", "peddle", "lurch", "pitched"]}, {"answer": "pitted", "hint": "synonyms for pitted", "clues": ["oppose", "mark", "match", "play off", "pit", "pock", "stone", "scar", "pitted"]}, {"answer": "placating", "hint": "synonyms for placating", "clues": ["lenify", "placate", "assuage", "conciliate", "mollify", "appease", "pacify", "gruntle", "gentle", "placating"]}, {"answer": "placed", "hint": "synonyms for placed", "clues": ["pose", "direct", "commit", "send", "put", "grade", "come in", "localise", "aim", "place", "come out", "point", "locate", "identify", "range", "rank", "rate", "target", "station", "set", "invest", "site", "lay", "post", "order", "position"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["quetch", "complain", "kvetch", "kick", "sound off", "plain"]}, {"answer": "planned", "hint": "synonyms for planned", "clues": ["be after", "plan", "contrive", "design", "project", "planned"]}, {"answer": "planted", "hint": "synonyms for planted", "clues": ["embed", "institute", "plant", "set", "found", "establish", "engraft", "imbed", "implant", "constitute", "planted"]}, {"answer": "plastered", "hint": "synonyms for plastered", "clues": ["daub", "stick on", "plaster over", "beplaster", "poultice", "plastered"]}, {"answer": "played", "hint": "synonyms for played", "clues": ["bet", "represent", "wreak", "work", "play", "take on", "diddle", "flirt", "run", "recreate", "spiel", "act as", "roleplay", "encounter", "act", "trifle", "bring", "meet", "wager", "fiddle", "toy", "playact", "dally", "make for", "played"]}, {"answer": "pledged", "hint": "synonyms for pledged", "clues": ["drink", "plight", "pledge", "toast", "salute", "wassail", "subscribe"]}, {"answer": "plodding", "hint": "synonyms for plodding", "clues": ["tramp", "footslog", "pad", "plod", "slog", "trudge", "plodding"]}, {"answer": "plowed", "hint": "synonyms for plowed", "clues": ["handle", "treat", "plough", "deal", "turn", "address", "cover", "plow", "plowed"]}, {"answer": "plucked", "hint": "synonyms for plucked", "clues": ["pluck", "fleece", "roll", "pick off", "displume", "tweak", "deplumate", "plume", "rob", "surcharge", "cull", "pick", "tear", "pull", "pull off", "plunk", "overcharge", "gazump", "soak", "hook", "hustle", "plucked"]}, {"answer": "plugged", "hint": "synonyms for plugged", "clues": ["secure", "plug", "stop up", "punch", "plug away", "plugged"]}, {"answer": "plumed", "hint": "synonyms for plumed", "clues": ["pride", "pluck", "fleece", "primp", "overcharge", "preen", "plume", "gazump", "rob", "soak", "hook", "congratulate", "surcharge", "dress"]}, {"answer": "plump", "hint": "synonyms for plump", "clues": ["fill out", "go", "fatten", "plump out", "plunk", "fat", "fatten out", "plank", "plonk", "plummet", "flump", "plop", "plump down", "fatten up", "plunk down", "flesh out", "plump"]}, {"answer": "plumping", "hint": "synonyms for plumping", "clues": ["plump", "fill out", "go", "fatten", "plump out", "plunk", "fat", "fatten out", "plank", "plonk", "plummet", "flump", "plop", "plump down", "fatten up", "plunk down", "flesh out"]}, {"answer": "plundered", "hint": "synonyms for plundered", "clues": ["despoil", "rape", "spoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "violate", "ransack", "sack"]}, {"answer": "plundering", "hint": "synonyms for plundering", "clues": ["despoil", "rape", "spoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "violate", "ransack", "sack"]}, {"answer": "pocked", "hint": "synonyms for pocked", "clues": ["mark", "pock", "pit", "scar", "pocked"]}, {"answer": "pointed", "hint": "synonyms for pointed", "clues": ["luff", "maneuver", "direct", "designate", "indicate", "repoint", "betoken", "aim", "place", "point", "charge", "channelise", "orient", "taper", "bespeak", "target", "manoeuvre", "level", "head", "steer", "guide", "show", "sharpen", "signal", "pointed"]}, {"answer": "polish", "hint": "synonyms for polish", "clues": ["down", "smooth", "fine-tune", "brush up", "round off", "polish up", "round", "refine", "shine", "polish"]}, {"answer": "polished", "hint": "synonyms for polished", "clues": ["down", "smooth", "fine-tune", "brush up", "polish", "round off", "polish up", "round", "refine", "shine"]}, {"answer": "pondering", "hint": "synonyms for pondering", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "chew over", "meditate", "speculate"]}, {"answer": "pop", "hint": "synonyms for pop", "clues": ["down", "protrude", "toss off", "start", "pop up", "bulge out", "crop up", "pop out", "belt down", "drink down", "come out", "pour down", "bulge", "kill", "pop"]}, {"answer": "populated", "hint": "synonyms for populated", "clues": ["dwell", "populate", "inhabit", "live"]}, {"answer": "portrayed", "hint": "synonyms for portrayed", "clues": ["limn", "portray", "present", "depict", "impersonate"]}, {"answer": "posed", "hint": "synonyms for posed", "clues": ["pose", "personate", "nonplus", "dumbfound", "puzzle", "sit", "vex", "gravel", "stupefy", "place", "bewilder", "present", "stick", "amaze", "model", "mystify", "set", "perplex", "posture", "beat", "baffle", "lay", "put", "flummox", "get", "position"]}, {"answer": "positioning", "hint": "synonyms for positioning", "clues": ["pose", "lay", "place", "set", "put", "position"]}, {"answer": "posted", "hint": "synonyms for posted", "clues": ["station", "carry", "stake", "send", "put up", "mail", "brand", "place", "post", "posted"]}, {"answer": "pouring", "hint": "synonyms for pouring", "clues": ["teem", "pelt", "swarm", "rain cats and dogs", "decant", "rain buckets", "pullulate", "pour", "pour out", "stream"]}, {"answer": "practiced", "hint": "synonyms for practiced", "clues": ["do", "practise", "commit", "exercise", "drill", "rehearse", "apply", "use", "practiced"]}, {"answer": "practised", "hint": "synonyms for practised", "clues": ["do", "practise", "exercise", "drill", "rehearse"]}, {"answer": "preceding", "hint": "synonyms for preceding", "clues": ["forgo", "predate", "antecede", "introduce", "precede", "preface", "lead", "premise", "come before", "antedate", "preceding"]}, {"answer": "predominate", "hint": "synonyms for predominate", "clues": ["prevail", "rule", "hulk", "dominate", "reign", "loom", "tower", "predominate"]}, {"answer": "preferred", "hint": "synonyms for preferred", "clues": ["choose", "favour", "prefer", "opt", "preferred"]}, {"answer": "prepared", "hint": "synonyms for prepared", "clues": ["make", "set up", "gear up", "prepare", "train", "machinate", "fix", "develop", "get up", "organize", "devise", "cook", "set", "groom", "educate", "ready"]}, {"answer": "preponderating", "hint": "synonyms for preponderating", "clues": ["overbalance", "outweigh", "outbalance", "preponderate", "preponderating"]}, {"answer": "present", "hint": "synonyms for present", "clues": ["pose", "deliver", "represent", "confront", "demonstrate", "introduce", "face", "gift", "demo", "stage", "portray", "salute", "lay out", "acquaint", "award", "show", "submit", "exhibit", "give"]}, {"answer": "preserved", "hint": "synonyms for preserved", "clues": ["continue", "maintain", "uphold", "keep", "save", "keep up", "carry on", "bear on", "preserve", "conserve"]}, {"answer": "pressed", "hint": "synonyms for pressed", "clues": ["press out", "compress", "campaign", "entreat", "urge", "beseech", "exhort", "squeeze", "weight-lift", "agitate", "adjure", "urge on", "weigh", "bid", "conjure", "push", "constrict", "fight", "crusade", "contract", "iron out", "press", "iron", "compact", "pressed"]}, {"answer": "pressing", "hint": "synonyms for pressing", "clues": ["press out", "compress", "campaign", "entreat", "urge", "beseech", "exhort", "squeeze", "weight-lift", "agitate", "adjure", "urge on", "weigh", "bid", "conjure", "push", "constrict", "fight", "crusade", "contract", "iron out", "press", "iron", "compact"]}, {"answer": "pretend", "hint": "synonyms for pretend", "clues": ["make", "act", "hazard", "feign", "affect", "dissemble", "sham", "guess", "profess", "venture", "make believe", "pretend"]}, {"answer": "pretended", "hint": "synonyms for pretended", "clues": ["pretend", "make", "act", "feign", "hazard", "affect", "dissemble", "sham", "guess", "profess", "venture", "make believe"]}, {"answer": "prevailing", "hint": "synonyms for prevailing", "clues": ["prevail", "persist", "reign", "predominate", "obtain", "triumph", "die hard", "hold", "rule", "dominate", "run", "endure"]}, {"answer": "primed", "hint": "synonyms for primed", "clues": ["prim out", "undercoat", "ground", "prim up", "prime"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["lever", "appreciate", "jimmy", "prise", "pry", "respect", "treasure", "value", "esteem", "prize"]}, {"answer": "probing", "hint": "synonyms for probing", "clues": ["dig into", "examine", "poke into", "probe", "probing"]}, {"answer": "processed", "hint": "synonyms for processed", "clues": ["swear out", "treat", "work", "serve", "process", "litigate", "march", "action", "work on", "sue"]}, {"answer": "proclaimed", "hint": "synonyms for proclaimed", "clues": ["predicate", "proclaim", "exalt", "extol", "exclaim", "laud", "promulgate", "glorify"]}, {"answer": "profane", "hint": "synonyms for profane", "clues": ["deprave", "pervert", "corrupt", "violate", "desecrate", "demoralize", "vitiate", "debauch", "misdirect", "subvert", "debase", "outrage", "profane"]}, {"answer": "profaned", "hint": "synonyms for profaned", "clues": ["deprave", "pervert", "corrupt", "desecrate", "violate", "demoralize", "vitiate", "debauch", "misdirect", "profane", "subvert", "debase", "outrage"]}, {"answer": "professed", "hint": "synonyms for professed", "clues": ["pretend", "confess", "profess", "concede"]}, {"answer": "prohibited", "hint": "synonyms for prohibited", "clues": ["disallow", "nix", "forbid", "proscribe", "veto", "prohibit", "interdict"]}, {"answer": "projected", "hint": "synonyms for projected", "clues": ["visualize", "protrude", "jut out", "plan", "design", "propose", "send off", "picture", "cast", "image", "throw", "externalize", "see", "contrive", "envision", "fancy", "figure", "project", "jut", "stick out"]}, {"answer": "projecting", "hint": "synonyms for projecting", "clues": ["visualize", "protrude", "jut out", "plan", "design", "propose", "send off", "picture", "cast", "image", "throw", "externalize", "see", "contrive", "envision", "fancy", "figure", "project", "jut", "stick out"]}, {"answer": "prolonged", "hint": "synonyms for prolonged", "clues": ["prolong", "sustain", "keep up", "draw out", "protract", "extend"]}, {"answer": "promising", "hint": "synonyms for promising", "clues": ["foretell", "promise", "call", "forebode", "assure", "prognosticate", "anticipate", "predict", "promising"]}, {"answer": "prompt", "hint": "synonyms for prompt", "clues": ["motivate", "move", "instigate", "incite", "remind", "actuate", "propel", "inspire", "cue", "prompt"]}, {"answer": "pronounced", "hint": "synonyms for pronounced", "clues": ["label", "enunciate", "enounce", "articulate", "say", "judge", "pronounce", "sound out"]}, {"answer": "propelling", "hint": "synonyms for propelling", "clues": ["impel", "motivate", "move", "incite", "propel", "actuate", "prompt", "propelling"]}, {"answer": "proscribed", "hint": "synonyms for proscribed", "clues": ["disallow", "nix", "forbid", "proscribe", "veto", "prohibit", "interdict"]}, {"answer": "prospering", "hint": "synonyms for prospering", "clues": ["flourish", "prosper", "fly high", "thrive"]}, {"answer": "protracted", "hint": "synonyms for protracted", "clues": ["draw out", "protract", "prolong", "extend"]}, {"answer": "protruding", "hint": "synonyms for protruding", "clues": ["protrude", "jut out", "start", "bulge out", "pop out", "pouch", "pop", "come out", "project", "bulge", "jut", "stick out", "protruding"]}, {"answer": "proved", "hint": "synonyms for proved", "clues": ["demonstrate", "test", "shew", "try out", "rise", "bear witness", "turn out", "try", "prove", "testify", "evidence", "establish", "essay", "show", "turn up", "leaven", "examine"]}, {"answer": "proven", "hint": "synonyms for proven", "clues": ["demonstrate", "test", "shew", "try out", "rise", "bear witness", "turn out", "try", "prove", "testify", "evidence", "establish", "essay", "show", "turn up", "leaven", "examine"]}, {"answer": "provoked", "hint": "synonyms for provoked", "clues": ["chivvy", "chevy", "fire", "kindle", "stimulate", "plague", "beset", "kick up", "harass", "provoke", "raise", "evoke", "arouse", "molest", "harry", "hassle", "elicit", "call forth"]}, {"answer": "provoking", "hint": "synonyms for provoking", "clues": ["chivvy", "chevy", "fire", "kindle", "stimulate", "plague", "beset", "kick up", "harass", "provoke", "raise", "evoke", "arouse", "molest", "harry", "hassle", "elicit", "call forth", "provoking"]}, {"answer": "prying", "hint": "synonyms for prying", "clues": ["lever", "jimmy", "prise", "intrude", "pry", "nose", "prize", "horn in", "poke"]}, {"answer": "publicised", "hint": "synonyms for publicised", "clues": ["publicise", "bare", "advertize", "air"]}, {"answer": "publicized", "hint": "synonyms for publicized", "clues": ["publicise", "bare", "advertize", "air", "publicized"]}, {"answer": "published", "hint": "synonyms for published", "clues": ["bring out", "print", "release", "issue", "write", "put out", "publish"]}, {"answer": "puff", "hint": "synonyms for puff", "clues": ["huff", "heave", "gasp", "blow up", "whiff", "pant", "draw", "puff out", "drag", "puff up", "puff"]}, {"answer": "puffed", "hint": "synonyms for puffed", "clues": ["huff", "puff", "heave", "gasp", "blow up", "whiff", "pant", "draw", "puff out", "drag", "puff up", "puffed"]}, {"answer": "pulverised", "hint": "synonyms for pulverised", "clues": ["demolish", "powder", "powderise", "pulverize", "pulverised"]}, {"answer": "pulverized", "hint": "synonyms for pulverized", "clues": ["demolish", "powder", "powderise", "pulverize"]}, {"answer": "purging", "hint": "synonyms for purging", "clues": ["upchuck", "purify", "purge", "chuck", "flush", "scour", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "spue", "barf", "sanctify", "vomit up", "spew", "sick", "purging"]}, {"answer": "purifying", "hint": "synonyms for purifying", "clues": ["sanctify", "sublimate", "purify", "make pure", "purge", "distill"]}, {"answer": "pursued", "hint": "synonyms for pursued", "clues": ["follow", "quest after", "go after", "act on", "pursue", "engage", "prosecute", "follow up on", "quest for"]}, {"answer": "pursuing", "hint": "synonyms for pursuing", "clues": ["follow", "quest after", "go after", "act on", "pursue", "engage", "prosecute", "follow up on", "quest for", "pursuing"]}, {"answer": "put_on", "hint": "synonyms for put on", "clues": ["wear", "befool", "slang", "put one over", "don", "gull", "gain", "take in", "apply", "put one across", "cod", "turn in", "get into", "fool", "dupe", "mount", "assume", "put on"]}, {"answer": "puzzled", "hint": "synonyms for puzzled", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "puzzling", "hint": "synonyms for puzzling", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify", "perplex", "beat", "baffle", "flummox", "get", "puzzling"]}, {"answer": "qualified", "hint": "synonyms for qualified", "clues": ["condition", "dispose", "characterize", "specify", "restrict", "measure up", "qualify", "stipulate", "modify", "qualified"]}, {"answer": "quavering", "hint": "synonyms for quavering", "clues": ["waver", "warble", "quaver", "trill"]}, {"answer": "queer", "hint": "synonyms for queer", "clues": ["scotch", "expose", "spoil", "scupper", "cross", "frustrate", "baffle", "bilk", "endanger", "peril", "foil", "thwart", "queer"]}, {"answer": "quelled", "hint": "synonyms for quelled", "clues": ["stay", "quell", "appease", "squelch", "quench", "quelled"]}, {"answer": "quenched", "hint": "synonyms for quenched", "clues": ["snuff out", "quell", "allay", "blow out", "assuage", "squelch", "extinguish", "slake", "quench"]}, {"answer": "questioning", "hint": "synonyms for questioning", "clues": ["call into question", "interview", "question", "oppugn", "interrogate", "wonder", "query"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["hush", "still", "quieten", "tranquilize", "pipe down", "calm down", "quiesce", "lull", "calm", "quiet down", "quiet"]}, {"answer": "quits", "hint": "synonyms for quits", "clues": ["quit", "chuck up the sponge", "give up", "fall by the wayside", "drop by the wayside", "throw in the towel", "depart", "throw in", "leave office", "take leave", "renounce", "foreswear", "drop out", "discontinue", "step down", "resign", "stop", "cease", "relinquish", "lay off"]}, {"answer": "racking", "hint": "synonyms for racking", "clues": ["single-foot", "scud", "wring", "rack", "torment", "squeeze", "extort", "gouge", "torture", "excruciate"]}, {"answer": "radiate", "hint": "synonyms for radiate", "clues": ["glow", "beam", "shine", "ray", "diversify", "radiate"]}, {"answer": "radiating", "hint": "synonyms for radiating", "clues": ["radiate", "beam", "glow", "shine", "ray", "diversify", "radiating"]}, {"answer": "ragged", "hint": "synonyms for ragged", "clues": ["nark", "chew up", "crucify", "chafe", "dress down", "rile", "annoy", "chew out", "vex", "gravel", "call on the carpet", "berate", "nettle", "cod", "twit", "lambast", "torment", "devil", "rebuke", "tantalize", "lecture", "call down", "reprimand", "jaw", "remonstrate", "bait", "ride", "bother", "taunt", "tease", "get to", "rag", "scold", "get at", "take to task", "reproof", "have words", "dun", "bawl out", "chide", "bedevil", "frustrate", "irritate", "rally", "razz", "trounce", "ragged"]}, {"answer": "raging", "hint": "synonyms for raging", "clues": ["nark", "chew up", "crucify", "chafe", "dress down", "rile", "annoy", "chew out", "vex", "gravel", "call on the carpet", "berate", "nettle", "cod", "twit", "lambast", "torment", "devil", "rebuke", "tantalize", "lecture", "rage", "call down", "reprimand", "jaw", "remonstrate", "bait", "ride", "bother", "taunt", "tease", "get to", "scold", "get at", "take to task", "reproof", "have words", "dun", "bawl out", "chide", "bedevil", "ramp", "frustrate", "irritate", "rally", "storm", "razz", "trounce", "raging"]}, {"answer": "raised", "hint": "synonyms for raised", "clues": ["erect", "invoke", "parent", "rear", "enkindle", "heighten", "conjure", "lift", "prove", "recruit", "raise", "elevate", "call down", "call forth", "promote", "put forward", "set up", "advance", "farm", "put up", "fire", "levy", "produce", "enhance", "upgrade", "upraise", "get up", "conjure up", "bring up", "provoke", "resurrect", "nurture", "evoke", "kick upstairs", "arouse", "stir", "leaven", "elicit", "grow"]}, {"answer": "raising", "hint": "synonyms for raising", "clues": ["erect", "invoke", "parent", "rear", "enkindle", "heighten", "conjure", "lift", "prove", "recruit", "raise", "elevate", "call down", "call forth", "promote", "put forward", "set up", "advance", "farm", "put up", "fire", "levy", "produce", "enhance", "upgrade", "upraise", "get up", "conjure up", "bring up", "provoke", "resurrect", "nurture", "evoke", "kick upstairs", "arouse", "stir", "leaven", "elicit", "grow", "raising"]}, {"answer": "rallying", "hint": "synonyms for rallying", "clues": ["drum up", "bait", "ride", "come up", "beat up", "mobilize", "taunt", "tease", "rag", "muster", "call up", "cod", "twit", "muster up", "tantalize", "rally", "razz", "rebound", "summon"]}, {"answer": "rambling", "hint": "synonyms for rambling", "clues": ["stray", "range", "rove", "ramble", "swan", "wander", "drift", "roll", "vagabond", "tramp", "ramble on", "cast", "jog", "roam", "rambling"]}, {"answer": "ranging", "hint": "synonyms for ranging", "clues": ["ramble", "wander", "browse", "pasture", "drift", "roll", "graze", "tramp", "grade", "place", "cast", "run", "straddle", "array", "stray", "range", "set out", "rank", "rove", "swan", "rate", "vagabond", "lay out", "crop", "order", "roam", "ranging"]}, {"answer": "rank", "hint": "synonyms for rank", "clues": ["grade", "range", "rate", "outrank", "place", "order", "rank"]}, {"answer": "ranked", "hint": "synonyms for ranked", "clues": ["grade", "range", "rank", "rate", "outrank", "place", "order", "ranked"]}, {"answer": "ranking", "hint": "synonyms for ranking", "clues": ["grade", "range", "rank", "rate", "outrank", "place", "order"]}, {"answer": "ransacked", "hint": "synonyms for ransacked", "clues": ["despoil", "comb", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "raped", "hint": "synonyms for raped", "clues": ["assault", "rap", "despoil", "spoil", "tap", "knock", "dishonour", "plunder", "knap", "ravish", "pink", "violate", "outrage", "raped"]}, {"answer": "rarefied", "hint": "synonyms for rarefied", "clues": ["attenuate", "sublimate", "rarefy", "subtilize", "rarefied"]}, {"answer": "ravaged", "hint": "synonyms for ravaged", "clues": ["lay waste to", "desolate", "devastate", "scourge", "harry", "ravage", "waste"]}, {"answer": "ravaging", "hint": "synonyms for ravaging", "clues": ["lay waste to", "desolate", "devastate", "scourge", "harry", "ravage", "waste", "ravaging"]}, {"answer": "ravening", "hint": "synonyms for ravening", "clues": ["devour", "pig", "predate", "raven", "guttle", "prey"]}, {"answer": "ravishing", "hint": "synonyms for ravishing", "clues": ["enchant", "assault", "enthral", "rape", "dishonour", "transport", "enrapture", "ravish", "violate", "delight", "outrage"]}, {"answer": "razed", "hint": "synonyms for razed", "clues": ["tear down", "raze", "rase", "pull down", "take down", "level", "dismantle"]}, {"answer": "ready", "hint": "synonyms for ready", "clues": ["make", "cook", "set up", "gear up", "set", "prepare", "fix", "ready"]}, {"answer": "realised", "hint": "synonyms for realised", "clues": ["make", "earn", "actualise", "bring in", "gain", "take in", "understand", "recognise", "agnize", "see", "realise", "pull in", "agnise", "substantiate", "clear"]}, {"answer": "realized", "hint": "synonyms for realized", "clues": ["make", "earn", "actualise", "bring in", "gain", "understand", "take in", "recognise", "agnize", "see", "realise", "agnise", "pull in", "substantiate", "clear", "realized"]}, {"answer": "reanimated", "hint": "synonyms for reanimated", "clues": ["recreate", "renovate", "reanimate", "quicken", "vivify", "repair", "revive"]}, {"answer": "rear", "hint": "synonyms for rear", "clues": ["lift", "bring up", "set up", "erect", "raise", "nurture", "put up", "parent", "rise up", "rear"]}, {"answer": "rearing", "hint": "synonyms for rearing", "clues": ["lift", "bring up", "set up", "erect", "raise", "nurture", "put up", "parent", "rear", "rise up"]}, {"answer": "reasoned", "hint": "synonyms for reasoned", "clues": ["conclude", "argue", "reason", "reason out"]}, {"answer": "reasoning", "hint": "synonyms for reasoning", "clues": ["conclude", "argue", "reason", "reason out"]}, {"answer": "receding", "hint": "synonyms for receding", "clues": ["pull away", "fall back", "draw back", "move back", "fall behind", "retreat", "drop off", "retire", "pull back", "lose", "recede", "withdraw", "receding"]}, {"answer": "received", "hint": "synonyms for received", "clues": ["encounter", "obtain", "receive", "meet", "find", "experience", "pick up", "welcome", "take in", "have", "get", "invite", "incur"]}, {"answer": "reclaimed", "hint": "synonyms for reclaimed", "clues": ["domesticate", "domesticise", "repossess", "recover", "reclaim", "rectify", "tame", "reform", "regenerate"]}, {"answer": "recognised", "hint": "synonyms for recognised", "clues": ["make out", "distinguish", "recognise", "accredit", "agnize", "greet", "realise", "spot", "agnise", "know", "discern", "pick out", "acknowledge", "tell apart"]}, {"answer": "recognized", "hint": "synonyms for recognized", "clues": ["make out", "distinguish", "accredit", "recognise", "agnize", "greet", "realise", "spot", "agnise", "know", "discern", "pick out", "acknowledge", "tell apart", "recognized"]}, {"answer": "reconciled", "hint": "synonyms for reconciled", "clues": ["patch up", "reconcile", "harmonize", "settle", "conciliate", "resign", "make up", "submit", "accommodate"]}, {"answer": "reconciling", "hint": "synonyms for reconciling", "clues": ["patch up", "reconcile", "harmonize", "settle", "conciliate", "resign", "make up", "submit", "accommodate", "reconciling"]}, {"answer": "reconstructed", "hint": "synonyms for reconstructed", "clues": ["rebuild", "construct", "redo", "retrace", "restore", "remodel", "reconstructed"]}, {"answer": "recorded", "hint": "synonyms for recorded", "clues": ["memorialise", "register", "tape", "enter", "put down", "read", "immortalize", "show", "record", "commemorate"]}, {"answer": "recovered", "hint": "synonyms for recovered", "clues": ["recuperate", "recoup", "go back", "recover", "reclaim", "regain", "find", "retrieve", "convalesce"]}, {"answer": "recovering", "hint": "synonyms for recovering", "clues": ["recuperate", "recoup", "go back", "recover", "reclaim", "regain", "find", "retrieve", "convalesce"]}, {"answer": "rectified", "hint": "synonyms for rectified", "clues": ["rectify", "reclaim", "amend", "remediate", "correct", "right", "repair", "refine", "remedy", "reform", "regenerate", "rectified"]}, {"answer": "recurring", "hint": "synonyms for recurring", "clues": ["resort", "fall back", "go back", "recur", "repeat", "recurring"]}, {"answer": "reddened", "hint": "synonyms for reddened", "clues": ["redden", "blush", "crimson", "flush"]}, {"answer": "redeemed", "hint": "synonyms for redeemed", "clues": ["deliver", "ransom", "redeem", "pay off", "save"]}, {"answer": "redeeming", "hint": "synonyms for redeeming", "clues": ["deliver", "ransom", "redeem", "pay off", "save"]}, {"answer": "reduced", "hint": "synonyms for reduced", "clues": ["subjugate", "lose weight", "foreshorten", "reduce", "come down", "slim down", "cut back", "shrink", "dilute", "concentrate", "thin out", "decoct", "repress", "keep down", "quash", "abridge", "melt off", "subdue", "shorten", "trim", "cut", "deoxidize", "tighten", "scale down", "slenderize", "thin", "bring down", "cut down", "trim back", "trim down", "boil down", "contract", "abbreviate", "slim"]}, {"answer": "reeking", "hint": "synonyms for reeking", "clues": ["smell", "fume", "stink", "smack", "reek"]}, {"answer": "refined", "hint": "synonyms for refined", "clues": ["down", "fine-tune", "elaborate", "polish", "rectify", "refine", "complicate", "rarify"]}, {"answer": "reflected", "hint": "synonyms for reflected", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "shine", "excogitate", "reflect", "chew over", "reverberate", "meditate", "speculate"]}, {"answer": "reflecting", "hint": "synonyms for reflecting", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "shine", "excogitate", "reflect", "chew over", "reverberate", "meditate", "speculate"]}, {"answer": "reformed", "hint": "synonyms for reformed", "clues": ["rectify", "see the light", "reclaim", "reform", "straighten out", "regenerate"]}, {"answer": "refreshed", "hint": "synonyms for refreshed", "clues": ["brush up", "review", "freshen", "freshen up", "refresh"]}, {"answer": "refreshing", "hint": "synonyms for refreshing", "clues": ["brush up", "review", "freshen", "freshen up", "refresh"]}, {"answer": "regenerate", "hint": "synonyms for regenerate", "clues": ["revitalize", "rejuvenate", "restore", "rectify", "renew", "reclaim", "reform", "regenerate"]}, {"answer": "regenerating", "hint": "synonyms for regenerating", "clues": ["rejuvenate", "rectify", "reclaim", "restore", "revitalize", "renew", "reform", "regenerate", "regenerating"]}, {"answer": "registered", "hint": "synonyms for registered", "clues": ["register", "show", "record", "cross-file", "file", "read"]}, {"answer": "regulated", "hint": "synonyms for regulated", "clues": ["regularise", "baffle", "regulate", "govern", "determine", "shape", "mold", "order", "influence", "modulate"]}, {"answer": "reigning", "hint": "synonyms for reigning", "clues": ["prevail", "rule", "dominate", "reign", "predominate"]}, {"answer": "rejected", "hint": "synonyms for rejected", "clues": ["turn away", "disapprove", "freeze off", "decline", "spurn", "pooh-pooh", "refuse", "disdain", "reject", "turn down", "resist", "winnow out", "eliminate", "scorn", "rule out", "pass up"]}, {"answer": "rejoicing", "hint": "synonyms for rejoicing", "clues": ["jubilate", "triumph", "wallow", "exuberate", "rejoice", "exult", "joy", "rejoicing"]}, {"answer": "related", "hint": "synonyms for related", "clues": ["touch on", "interrelate", "associate", "tie in", "bear on", "come to", "relate", "link up", "connect", "pertain", "touch", "link", "colligate", "have-to doe with", "refer", "concern"]}, {"answer": "relaxed", "hint": "synonyms for relaxed", "clues": ["slow down", "make relaxed", "relax", "unwind", "loosen", "unstrain", "unlax", "slack up", "decompress", "loosen up", "slack", "unbend", "slacken", "relaxed"]}, {"answer": "relaxing", "hint": "synonyms for relaxing", "clues": ["slow down", "make relaxed", "relax", "unwind", "loosen", "unstrain", "unlax", "slack up", "decompress", "loosen up", "slack", "unbend", "slacken"]}, {"answer": "releasing", "hint": "synonyms for releasing", "clues": ["eject", "issue", "give up", "put out", "unfreeze", "expel", "unblock", "liberate", "let go of", "unloosen", "discharge", "free", "secrete", "let go", "resign", "relinquish", "exhaust", "bring out", "turn", "release", "loose", "publish", "releasing"]}, {"answer": "relieved", "hint": "synonyms for relieved", "clues": ["salve", "unbosom", "excuse", "let off", "remedy", "lighten", "free", "exempt", "still", "ease", "take over", "allay", "assuage", "salvage", "palliate", "relieve", "alleviate"]}, {"answer": "relinquished", "hint": "synonyms for relinquished", "clues": ["quit", "forgo", "renounce", "foreswear", "waive", "give up", "let go", "resign", "relinquish", "dispense with", "let go of", "release", "free"]}, {"answer": "remaining", "hint": "synonyms for remaining", "clues": ["stay on", "persist", "continue", "remain", "rest", "stay"]}, {"answer": "removed", "hint": "synonyms for removed", "clues": ["off", "transfer", "move out", "take", "remove", "dispatch", "hit", "polish off", "slay", "take away", "bump off", "take out", "murder", "absent", "get rid of", "withdraw"]}, {"answer": "rending", "hint": "synonyms for rending", "clues": ["pull", "rive", "rend", "rip"]}, {"answer": "repeated", "hint": "synonyms for repeated", "clues": ["retell", "double", "duplicate", "echo", "take over", "reprize", "restate", "recapitulate", "iterate", "repeat", "replicate", "ingeminate", "recur"]}, {"answer": "repelling", "hint": "synonyms for repelling", "clues": ["fight off", "revolt", "rebuff", "repel", "gross out", "repulse", "force back", "snub", "drive back", "push back", "disgust", "drive", "beat back", "repelling"]}, {"answer": "reported", "hint": "synonyms for reported", "clues": ["describe", "cover", "report", "account"]}, {"answer": "represented", "hint": "synonyms for represented", "clues": ["represent", "defend", "symbolise", "play", "map", "make up", "stage", "constitute", "correspond", "comprise", "act", "interpret", "typify", "lay out", "exemplify", "be", "stand for"]}, {"answer": "repressed", "hint": "synonyms for repressed", "clues": ["subdue", "subjugate", "keep down", "stifle", "reduce", "suppress", "smother", "strangle", "repress", "muffle", "quash"]}, {"answer": "repressing", "hint": "synonyms for repressing", "clues": ["subdue", "subjugate", "keep down", "stifle", "reduce", "suppress", "smother", "strangle", "repress", "muffle", "quash"]}, {"answer": "reprobate", "hint": "synonyms for reprobate", "clues": ["condemn", "objurgate", "excoriate", "decry", "reprobate"]}, {"answer": "requested", "hint": "synonyms for requested", "clues": ["call for", "bespeak", "quest", "request"]}, {"answer": "required", "hint": "synonyms for required", "clues": ["ask", "necessitate", "need", "involve", "take", "postulate", "require", "call for", "want", "demand", "expect", "command"]}, {"answer": "reserved", "hint": "synonyms for reserved", "clues": ["hold", "allow", "earmark", "set aside", "reserve", "appropriate", "book"]}, {"answer": "resolved", "hint": "synonyms for resolved", "clues": ["resolve", "break up", "adjudicate", "decide", "settle", "conclude", "purpose", "dissolve", "solve", "answer"]}, {"answer": "resounding", "hint": "synonyms for resounding", "clues": ["noise", "echo", "resound", "ring", "reverberate", "make noise"]}, {"answer": "respected", "hint": "synonyms for respected", "clues": ["honour", "observe", "prise", "abide by", "respect", "value", "esteem", "prize"]}, {"answer": "rested", "hint": "synonyms for rested", "clues": ["take a breather", "repose", "lie", "breathe", "pillow", "perch", "remain", "rest", "stay", "catch one's breath", "reside", "roost", "rested"]}, {"answer": "restrained", "hint": "synonyms for restrained", "clues": ["restrain", "throttle", "restrict", "limit", "keep", "trammel", "encumber", "hold back", "hold", "constrain", "confine", "keep back", "bound", "intimidate"]}, {"answer": "restricted", "hint": "synonyms for restricted", "clues": ["restrain", "throttle", "curb", "restrict", "limit", "cut back", "curtail", "trammel", "confine", "qualify", "bound"]}, {"answer": "restricting", "hint": "synonyms for restricting", "clues": ["restrain", "throttle", "curb", "restrict", "limit", "cut back", "curtail", "trammel", "confine", "qualify", "bound"]}, {"answer": "retained", "hint": "synonyms for retained", "clues": ["retain", "hold", "keep back", "continue", "keep", "keep on", "hold back"]}, {"answer": "retarded", "hint": "synonyms for retarded", "clues": ["slow down", "slow up", "slow", "decelerate", "delay", "check", "retard"]}, {"answer": "retired", "hint": "synonyms for retired", "clues": ["pull away", "draw back", "put out", "bed", "kip down", "adjourn", "retire", "go to bed", "crawl in", "strike out", "withdraw", "go to sleep", "sack out", "turn in", "move back", "retreat", "pull back", "recede", "hit the hay", "hit the sack"]}, {"answer": "retiring", "hint": "synonyms for retiring", "clues": ["pull away", "draw back", "put out", "bed", "kip down", "adjourn", "retire", "go to bed", "crawl in", "strike out", "withdraw", "go to sleep", "sack out", "turn in", "move back", "retreat", "pull back", "recede", "hit the hay", "hit the sack", "retiring"]}, {"answer": "retracted", "hint": "synonyms for retracted", "clues": ["draw back", "resile", "retract", "forswear", "shrink back", "draw in", "pull back", "recant", "abjure"]}, {"answer": "retrograde", "hint": "synonyms for retrograde", "clues": ["retreat", "retrogress", "regress", "hash over", "rehash", "retrograde"]}, {"answer": "returning", "hint": "synonyms for returning", "clues": ["retort", "turn back", "bring back", "deliver", "refund", "devolve", "regress", "repay", "yield", "generate", "fall", "return", "give back", "rejoin", "hark back", "reelect", "render", "retrovert", "come back", "recall", "riposte", "revert", "pass", "give", "take back"]}, {"answer": "revealing", "hint": "synonyms for revealing", "clues": ["break", "unwrap", "expose", "give away", "let on", "uncover", "unveil", "reveal", "bring out", "disclose", "divulge", "discover", "let out"]}, {"answer": "reverberating", "hint": "synonyms for reverberating", "clues": ["recoil", "echo", "ring", "resile", "ricochet", "take a hop", "resound", "reflect", "bound", "reverberate", "bounce", "spring", "reverberating"]}, {"answer": "revered", "hint": "synonyms for revered", "clues": ["reverence", "hero-worship", "idolize", "revere", "venerate", "worship", "fear"]}, {"answer": "reverse", "hint": "synonyms for reverse", "clues": ["turn back", "lift", "overthrow", "overrule", "countermand", "repeal", "change by reversal", "vacate", "override", "rescind", "turn", "invert", "annul", "revoke", "overturn", "reverse"]}, {"answer": "reversed", "hint": "synonyms for reversed", "clues": ["turn back", "lift", "overthrow", "overrule", "countermand", "repeal", "change by reversal", "reverse", "vacate", "override", "rescind", "turn", "invert", "annul", "revoke", "overturn"]}, {"answer": "reverting", "hint": "synonyms for reverting", "clues": ["turn back", "regress", "return", "revert", "retrovert"]}, {"answer": "revived", "hint": "synonyms for revived", "clues": ["recreate", "renovate", "resuscitate", "resurrect", "reanimate", "quicken", "vivify", "repair", "revive", "come to"]}, {"answer": "reviving", "hint": "synonyms for reviving", "clues": ["recreate", "renovate", "resuscitate", "resurrect", "reanimate", "quicken", "vivify", "repair", "revive", "come to", "reviving"]}, {"answer": "revolting", "hint": "synonyms for revolting", "clues": ["revolt", "nauseate", "repel", "gross out", "disgust", "churn up", "sicken"]}, {"answer": "revolved", "hint": "synonyms for revolved", "clues": ["revolve", "orbit", "rotate", "orb", "roll", "go around"]}, {"answer": "rewarding", "hint": "synonyms for rewarding", "clues": ["honour", "repay", "pay back", "reinforce", "reward"]}, {"answer": "ribbed", "hint": "synonyms for ribbed", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun", "ribbed"]}, {"answer": "riddled", "hint": "synonyms for riddled", "clues": ["screen", "imbue", "pervade", "permeate", "penetrate", "riddle", "diffuse", "interpenetrate"]}, {"answer": "rifled", "hint": "synonyms for rifled", "clues": ["go", "despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "rigged", "hint": "synonyms for rigged", "clues": ["manipulate", "rig", "set up", "set", "rigged"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["redress", "rectify", "correct", "compensate", "right"]}, {"answer": "riled", "hint": "synonyms for riled", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "roil"]}, {"answer": "ringed", "hint": "synonyms for ringed", "clues": ["telephone", "call", "echo", "ring", "knell", "skirt", "band", "resound", "call up", "phone", "reverberate", "surround", "border", "environ", "peal", "ringed"]}, {"answer": "ripping", "hint": "synonyms for ripping", "clues": ["pull", "rive", "rend", "rip", "ripping"]}, {"answer": "rippled", "hint": "synonyms for rippled", "clues": ["burble", "cockle", "gurgle", "riffle", "ripple", "bubble", "ruffle", "guggle", "babble", "undulate"]}, {"answer": "risen", "hint": "synonyms for risen", "clues": ["climb up", "uprise", "go up", "come up", "rise", "wax", "surface", "rear", "turn out", "develop", "heighten", "jump", "lift", "get up", "prove", "resurrect", "ascend", "spring up", "originate", "stand up", "rebel", "climb", "move up", "rise up", "grow", "mount"]}, {"answer": "rising", "hint": "synonyms for rising", "clues": ["climb up", "uprise", "go up", "come up", "rise", "wax", "surface", "rear", "turn out", "develop", "heighten", "jump", "lift", "get up", "prove", "resurrect", "ascend", "spring up", "originate", "stand up", "rebel", "climb", "move up", "rise up", "grow", "mount", "rising"]}, {"answer": "riveting", "hint": "synonyms for riveting", "clues": ["center", "concentrate", "rivet", "focus", "centre", "pore"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["yaup", "bellow", "yawl", "thunder", "howl", "roar", "wail", "ululate"]}, {"answer": "roast", "hint": "synonyms for roast", "clues": ["rib", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun", "roast"]}, {"answer": "roasted", "hint": "synonyms for roasted", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun", "roasted"]}, {"answer": "robed", "hint": "synonyms for robed", "clues": ["robe", "pluck", "drape", "fleece", "clothe", "overcharge", "cloak", "plume", "gazump", "soak", "hook", "surcharge", "vest"]}, {"answer": "roiled", "hint": "synonyms for roiled", "clues": ["churn", "boil", "moil", "roil", "rile", "roiled"]}, {"answer": "roiling", "hint": "synonyms for roiling", "clues": ["churn", "boil", "moil", "roil", "rile"]}, {"answer": "rolled", "hint": "synonyms for rolled", "clues": ["roll up", "pluck", "wrap", "ramble", "wander", "seethe", "flap", "roll", "drift", "tramp", "wheel", "cast", "wave", "revolve", "stray", "range", "wind", "rove", "swan", "turn over", "vagabond", "roll out", "roam", "undulate", "twine", "hustle", "rolled"]}, {"answer": "rollicking", "hint": "synonyms for rollicking", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol"]}, {"answer": "rolling", "hint": "synonyms for rolling", "clues": ["roll up", "pluck", "wrap", "ramble", "wander", "seethe", "flap", "roll", "drift", "tramp", "wheel", "cast", "wave", "revolve", "stray", "range", "wind", "rove", "swan", "turn over", "vagabond", "roll out", "roam", "undulate", "twine", "hustle"]}, {"answer": "romance", "hint": "synonyms for romance", "clues": ["coquet", "solicit", "mash", "court", "chat up", "flirt", "woo", "philander", "dally", "butterfly", "romance"]}, {"answer": "rooted", "hint": "synonyms for rooted", "clues": ["root", "settle", "take root", "steady down", "rootle", "rout", "settle down", "rooted"]}, {"answer": "rose", "hint": "synonyms for rose", "clues": ["climb up", "uprise", "go up", "come up", "rise", "wax", "surface", "rear", "turn out", "develop", "heighten", "jump", "lift", "get up", "prove", "resurrect", "ascend", "spring up", "originate", "stand up", "rebel", "climb", "move up", "rise up", "grow", "mount", "rose"]}, {"answer": "rotated", "hint": "synonyms for rotated", "clues": ["revolve", "rotate", "splay", "circumvolve", "spread out", "turn out", "go around"]}, {"answer": "rotted", "hint": "synonyms for rotted", "clues": ["molder", "decompose", "waste", "rot", "rotted"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["round out", "assail", "assault", "fill out", "attack", "brush up", "polish", "round down", "labialize", "round off", "polish up", "lash out", "snipe", "flesh out", "round"]}, {"answer": "rounded", "hint": "synonyms for rounded", "clues": ["round out", "assail", "assault", "fill out", "attack", "brush up", "polish", "round down", "labialize", "round off", "polish up", "round", "lash out", "snipe", "flesh out", "rounded"]}, {"answer": "rousing", "hint": "synonyms for rousing", "clues": ["commove", "rout out", "rouse", "excite", "turn on", "wake", "charge up", "drive out", "agitate", "wake up", "bestir", "charge", "force out", "awaken", "rousing"]}, {"answer": "roving", "hint": "synonyms for roving", "clues": ["stray", "range", "rove", "ramble", "swan", "wander", "drift", "roll", "vagabond", "tramp", "cast", "roam", "roving"]}, {"answer": "ruffled", "hint": "synonyms for ruffled", "clues": ["cockle", "prance", "mix", "ruffle", "sashay", "swagger", "flick", "cock", "mess up", "fluff", "pleat", "strut", "tittup", "riffle", "ripple", "shuffle", "rumple", "undulate", "ruffle up"]}, {"answer": "ruined", "hint": "synonyms for ruined", "clues": ["break", "ruin", "bankrupt", "destroy", "smash", "deflower", "ruined"]}, {"answer": "ruled", "hint": "synonyms for ruled", "clues": ["prevail", "harness", "reign", "predominate", "find", "rule", "govern", "dominate", "decree"]}, {"answer": "ruling", "hint": "synonyms for ruling", "clues": ["prevail", "harness", "reign", "predominate", "find", "rule", "govern", "dominate", "decree", "ruling"]}, {"answer": "rumpled", "hint": "synonyms for rumpled", "clues": ["cockle", "rumple", "ruffle", "crinkle", "knit", "crease", "mess up", "pucker", "ruffle up"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["ply", "ladder", "campaign", "work", "head for the hills", "bunk", "race", "lead", "draw", "bleed", "scat", "run", "function", "prevail", "feed", "run for", "consort", "be given", "track down", "turn tail", "hunt down", "flow", "melt", "operate", "unravel", "melt down", "run away", "take to the woods", "go", "carry", "fly the coop", "course", "die hard", "execute", "tend", "black market", "incline", "break away", "escape", "hightail it", "range", "persist", "hunt", "move", "scarper", "guide", "lam", "pass", "lean", "endure", "extend", "running"]}, {"answer": "rush", "hint": "synonyms for rush", "clues": ["step on it", "induce", "pelt along", "hotfoot", "hie", "look sharp", "cannonball along", "rush along", "speed", "race", "stimulate", "festinate", "bucket along", "hurry", "hasten", "rush"]}, {"answer": "rushed", "hint": "synonyms for rushed", "clues": ["induce", "pelt along", "hie", "cannonball along", "rush", "race", "stimulate", "hurry", "step on it", "hotfoot", "look sharp", "rush along", "speed", "festinate", "bucket along", "hasten", "rushed"]}, {"answer": "sacked", "hint": "synonyms for sacked", "clues": ["displace", "give the axe", "terminate", "dismiss", "fire", "net", "clear", "plunder", "give the sack", "sack up", "send away", "give notice", "force out", "can", "sack", "sacked"]}, {"answer": "sagging", "hint": "synonyms for sagging", "clues": ["swag", "flag", "sag down", "droop", "sagging"]}, {"answer": "said", "hint": "synonyms for said", "clues": ["aver", "enunciate", "enjoin", "enounce", "pronounce", "suppose", "read", "tell", "say", "articulate", "order", "sound out", "state", "allege", "said"]}, {"answer": "sainted", "hint": "synonyms for sainted", "clues": ["enshrine", "saint", "canonise", "sainted"]}, {"answer": "salving", "hint": "synonyms for salving", "clues": ["salve", "relieve", "salvage", "salving"]}, {"answer": "sanctified", "hint": "synonyms for sanctified", "clues": ["bless", "hallow", "purify", "sanctify", "purge", "consecrate", "sanctified"]}, {"answer": "sanctioned", "hint": "synonyms for sanctioned", "clues": ["sanction", "okay", "approve", "O.K."]}, {"answer": "sanctioning", "hint": "synonyms for sanctioning", "clues": ["sanction", "okay", "approve", "O.K."]}, {"answer": "satiate", "hint": "synonyms for satiate", "clues": ["ingurgitate", "overeat", "sate", "stuff", "scarf out", "gourmandize", "overgorge", "fill", "overindulge", "englut", "pig out", "engorge", "replete", "glut", "binge", "gorge", "satiate"]}, {"answer": "satiated", "hint": "synonyms for satiated", "clues": ["ingurgitate", "overeat", "binge", "sate", "stuff", "scarf out", "gourmandize", "overgorge", "fill", "overindulge", "englut", "pig out", "engorge", "replete", "glut", "satiate", "gorge"]}, {"answer": "satisfied", "hint": "synonyms for satisfied", "clues": ["fulfill", "satisfy", "fill", "meet", "gratify", "live up to", "satisfied"]}, {"answer": "satisfying", "hint": "synonyms for satisfying", "clues": ["fulfill", "satisfy", "fill", "meet", "gratify", "live up to"]}, {"answer": "saved", "hint": "synonyms for saved", "clues": ["salve", "bring through", "deliver", "economize", "keep", "save up", "carry through", "lay aside", "redeem", "preserve", "write", "pull through", "hold open", "make unnecessary", "salvage", "relieve", "keep open", "spare", "saved"]}, {"answer": "saving", "hint": "synonyms for saving", "clues": ["salve", "bring through", "deliver", "economize", "keep", "save up", "carry through", "lay aside", "redeem", "preserve", "write", "pull through", "hold open", "make unnecessary", "salvage", "relieve", "keep open", "spare", "saving"]}, {"answer": "scared", "hint": "synonyms for scared", "clues": ["mark", "scare away", "affright", "frighten off", "dash", "daunt", "pock", "scare", "pall", "frighten away", "pit", "frighten", "scare off"]}, {"answer": "scarred", "hint": "synonyms for scarred", "clues": ["mark", "pock", "pit", "scar", "scarred"]}, {"answer": "scattered", "hint": "synonyms for scattered", "clues": ["break up", "disperse", "dot", "dispel", "spread", "spread out", "dust", "dissipate", "scatter", "sprinkle"]}, {"answer": "scented", "hint": "synonyms for scented", "clues": ["nose", "odourise", "wind", "scent", "perfume", "odorize", "scented"]}, {"answer": "scintillating", "hint": "synonyms for scintillating", "clues": ["scintillate", "winkle", "coruscate", "sparkle", "scintillating"]}, {"answer": "scorched", "hint": "synonyms for scorched", "clues": ["sear", "char", "blacken", "scorch", "singe"]}, {"answer": "scorching", "hint": "synonyms for scorching", "clues": ["sear", "char", "blacken", "scorch", "singe"]}, {"answer": "scorned", "hint": "synonyms for scorned", "clues": ["freeze off", "despise", "spurn", "pooh-pooh", "disdain", "reject", "turn down", "scorn", "contemn", "scorned"]}, {"answer": "scotch", "hint": "synonyms for scotch", "clues": ["spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart", "scotch"]}, {"answer": "scoured", "hint": "synonyms for scoured", "clues": ["scrub", "purge", "abrade", "flush", "scour", "scoured"]}, {"answer": "scrambled", "hint": "synonyms for scrambled", "clues": ["shin", "sputter", "struggle", "clamber", "skin", "beat", "shinny", "throw together", "scramble", "jumble"]}, {"answer": "screaming", "hint": "synonyms for screaming", "clues": ["hollo", "yell", "call", "scream", "cry", "squall", "shout out", "shout", "holler"]}, {"answer": "scrub", "hint": "synonyms for scrub", "clues": ["scour", "scratch", "cancel", "call off", "scrub up", "scrub"]}, {"answer": "scrubbed", "hint": "synonyms for scrubbed", "clues": ["scour", "scratch", "scrub", "cancel", "call off", "scrub up", "scrubbed"]}, {"answer": "scurrying", "hint": "synonyms for scurrying", "clues": ["scurry", "skitter", "scamper", "scuttle"]}, {"answer": "sear", "hint": "synonyms for sear", "clues": ["char", "blacken", "parch", "scorch", "singe", "sear"]}, {"answer": "searching", "hint": "synonyms for searching", "clues": ["look", "seek", "explore", "research", "look for", "searching"]}, {"answer": "seared", "hint": "synonyms for seared", "clues": ["sear", "char", "blacken", "parch", "scorch", "singe", "seared"]}, {"answer": "searing", "hint": "synonyms for searing", "clues": ["sear", "char", "blacken", "parch", "scorch", "singe"]}, {"answer": "seasoned", "hint": "synonyms for seasoned", "clues": ["flavour", "temper", "harden", "mollify", "season"]}, {"answer": "seated", "hint": "synonyms for seated", "clues": ["invest", "sit", "seat", "sit down", "induct", "seated"]}, {"answer": "secluded", "hint": "synonyms for secluded", "clues": ["sequestrate", "seclude", "sequester", "withdraw"]}, {"answer": "secure", "hint": "synonyms for secure", "clues": ["insure", "plug", "ensure", "stop up", "batten down", "batten", "procure", "assure", "guarantee", "fix", "fasten", "secure"]}, {"answer": "seeing", "hint": "synonyms for seeing", "clues": ["view", "control", "see to it", "escort", "find", "consider", "catch", "determine", "take care", "visualise", "understand", "take in", "go through", "see", "encounter", "envision", "fancy", "check", "figure", "meet", "get a line", "reckon", "project", "find out", "get wind", "witness", "regard", "insure", "look", "ensure", "construe", "visit", "hear", "pick up", "picture", "discover", "image", "learn", "watch", "go out", "date", "come across", "realise", "assure", "attend", "get word", "interpret", "experience", "go steady", "run into", "examine", "ascertain", "run across"]}, {"answer": "seething", "hint": "synonyms for seething", "clues": ["buzz", "boil", "seethe", "roll", "hum", "seething"]}, {"answer": "selected", "hint": "synonyms for selected", "clues": ["choose", "pick out", "take", "select"]}, {"answer": "sensed", "hint": "synonyms for sensed", "clues": ["smell", "sense", "feel", "smell out"]}, {"answer": "sensitised", "hint": "synonyms for sensitised", "clues": ["sensify", "sensibilise", "sensitize", "sensitised"]}, {"answer": "sensitising", "hint": "synonyms for sensitising", "clues": ["sensify", "sensibilise", "sensitize", "sensitising"]}, {"answer": "sensitized", "hint": "synonyms for sensitized", "clues": ["sensitise", "sensibilise", "sensify", "sensitized"]}, {"answer": "sensitizing", "hint": "synonyms for sensitizing", "clues": ["sensitise", "sensibilise", "sensify", "sensitizing"]}, {"answer": "sent", "hint": "synonyms for sent", "clues": ["direct", "ship", "commit", "beam", "transmit", "send", "send off", "send out", "place", "charge", "air", "institutionalize", "station", "broadcast", "get off", "mail", "transport", "post", "sent"]}, {"answer": "separate", "hint": "synonyms for separate", "clues": ["break", "sort out", "break up", "split up", "carve up", "differentiate", "tell", "furcate", "come apart", "secern", "fall apart", "assort", "distinguish", "ramify", "branch", "sort", "split", "discriminate", "fork", "single out", "class", "part", "severalize", "divide", "secernate", "dissever", "classify", "disunite", "tell apart", "separate"]}, {"answer": "separated", "hint": "synonyms for separated", "clues": ["break", "sort out", "break up", "split up", "carve up", "differentiate", "tell", "furcate", "come apart", "secern", "fall apart", "assort", "distinguish", "ramify", "branch", "sort", "split", "discriminate", "fork", "single out", "separate", "class", "part", "severalize", "divide", "secernate", "dissever", "classify", "disunite", "tell apart"]}, {"answer": "sequestered", "hint": "synonyms for sequestered", "clues": ["attach", "seclude", "set apart", "seize", "confiscate", "sequestrate", "keep apart", "sequester", "impound", "isolate", "withdraw"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["pose", "do", "rig", "specify", "limit", "coiffure", "set up", "gear up", "define", "go under", "prepare", "put", "correct", "typeset", "determine", "fix", "localise", "place", "adjust", "dress", "fructify", "coif", "plant", "mark", "go down", "lay out", "arrange", "congeal", "jell", "lay", "ready", "countersink", "sic", "position", "set"]}, {"answer": "settled", "hint": "synonyms for settled", "clues": ["root", "adjudicate", "subside", "go under", "take root", "steady down", "determine", "make up", "finalise", "get back", "patch up", "locate", "fall", "descend", "resolve", "sink", "decide", "square off", "settle", "reconcile", "go down", "conciliate", "settle down", "nail down", "ensconce", "square up"]}, {"answer": "severed", "hint": "synonyms for severed", "clues": ["break up", "sever", "discerp", "lop", "severed"]}, {"answer": "sewed", "hint": "synonyms for sewed", "clues": ["run up", "tailor-make", "sew", "tailor", "stitch", "sew together", "sewed"]}, {"answer": "sewn", "hint": "synonyms for sewn", "clues": ["run up", "tailor-make", "sew", "tailor", "stitch", "sew together"]}, {"answer": "sexed", "hint": "synonyms for sexed", "clues": ["turn on", "arouse", "sex", "wind up", "excite", "sexed"]}, {"answer": "shaded", "hint": "synonyms for shaded", "clues": ["shadow", "shade", "fill in", "shade off"]}, {"answer": "shadowed", "hint": "synonyms for shadowed", "clues": ["shadow", "shade", "overshadow", "dwarf", "shade off"]}, {"answer": "shaken", "hint": "synonyms for shaken", "clues": ["escape from", "throw off", "shake", "rock", "shake off", "excite", "stimulate", "agitate", "stir", "judder", "sway", "shake up", "didder"]}, {"answer": "sham", "hint": "synonyms for sham", "clues": ["pretend", "dissemble", "feign", "affect", "simulate", "assume", "sham"]}, {"answer": "shamed", "hint": "synonyms for shamed", "clues": ["pretend", "shame", "feign", "affect", "simulate", "dishonour", "dissemble", "disgrace", "attaint", "assume"]}, {"answer": "shaped", "hint": "synonyms for shaped", "clues": ["form", "work", "mould", "regulate", "determine", "shape", "forge", "influence"]}, {"answer": "shaping", "hint": "synonyms for shaping", "clues": ["form", "work", "mould", "regulate", "determine", "shape", "forge", "influence", "shaping"]}, {"answer": "shared", "hint": "synonyms for shared", "clues": ["apportion", "portion out", "partake", "partake in", "deal", "divvy up", "share"]}, {"answer": "sharing", "hint": "synonyms for sharing", "clues": ["apportion", "portion out", "partake", "partake in", "deal", "divvy up", "share", "sharing"]}, {"answer": "sharpened", "hint": "synonyms for sharpened", "clues": ["focalise", "taper", "focus", "sharpen", "point", "heighten"]}, {"answer": "shaved", "hint": "synonyms for shaved", "clues": ["plane", "trim", "knock off", "shave"]}, {"answer": "shaven", "hint": "synonyms for shaven", "clues": ["plane", "trim", "knock off", "shave"]}, {"answer": "shed", "hint": "synonyms for shed", "clues": ["throw", "throw off", "disgorge", "exuviate", "shake off", "cast off", "spill", "pour forth", "molt", "drop", "cast", "throw away", "slough", "shed"]}, {"answer": "sheer", "hint": "synonyms for sheer", "clues": ["trend", "swerve", "veer", "slue", "cut", "curve", "slew", "sheer"]}, {"answer": "shelled", "hint": "synonyms for shelled", "clues": ["vanquish", "blast", "crush", "beat out", "beat", "shell", "husk", "trounce", "shelled"]}, {"answer": "shifting", "hint": "synonyms for shifting", "clues": ["transfer", "careen", "dislodge", "tilt", "switch", "pitch", "budge", "change", "lurch", "reposition", "wobble", "agitate", "stir", "shift", "change over"]}, {"answer": "shining", "hint": "synonyms for shining", "clues": ["gleam", "shin", "radiate", "strike", "beam", "struggle", "glitter", "clamber", "shinny", "fall", "glint", "smooth", "sputter", "polish", "skin", "glow", "reflect", "glisten", "scramble"]}, {"answer": "shivering", "hint": "synonyms for shivering", "clues": ["thrill", "shiver", "throb", "shudder"]}, {"answer": "shocked", "hint": "synonyms for shocked", "clues": ["ball over", "offend", "traumatize", "take aback", "shock", "appall", "scandalize", "floor", "blow out of the water", "outrage", "shocked"]}, {"answer": "shocking", "hint": "synonyms for shocking", "clues": ["ball over", "offend", "traumatize", "take aback", "shock", "appall", "scandalize", "floor", "blow out of the water", "outrage"]}, {"answer": "shortened", "hint": "synonyms for shortened", "clues": ["shorten", "foreshorten", "cut", "reduce", "contract", "abbreviate", "castrate", "bowdlerize", "expurgate", "abridge"]}, {"answer": "shot", "hint": "synonyms for shot", "clues": ["sprout", "blast", "frivol away", "inject", "scoot", "fritter away", "dash", "photograph", "fritter", "pullulate", "germinate", "pip", "charge", "buck", "snap", "take", "shoot", "flash", "scud", "hit", "dart", "film", "fool away", "bourgeon", "burgeon forth", "fool", "shoot down", "spud", "dissipate", "tear"]}, {"answer": "shouted", "hint": "synonyms for shouted", "clues": ["hollo", "yell", "call", "scream", "outcry", "blackguard", "cry", "squall", "abuse", "clapperclaw", "exclaim", "shout out", "call out", "cry out", "shout", "holler", "shouted"]}, {"answer": "shrieked", "hint": "synonyms for shrieked", "clues": ["pipe", "shriek", "pipe up", "shrill"]}, {"answer": "shriveled", "hint": "synonyms for shriveled", "clues": ["shrivel", "shrivel up", "wither", "shrink"]}, {"answer": "shrivelled", "hint": "synonyms for shrivelled", "clues": ["shrivel", "shrivel up", "wither", "shrink", "shrivelled"]}, {"answer": "shrunken", "hint": "synonyms for shrunken", "clues": ["shrivel", "recoil", "quail", "reduce", "wither", "shrink", "cringe", "wince", "contract", "funk", "shrivel up", "squinch", "flinch", "shrunken"]}, {"answer": "shuddering", "hint": "synonyms for shuddering", "clues": ["thrill", "shiver", "throb", "shudder"]}, {"answer": "shut", "hint": "synonyms for shut", "clues": ["keep out", "shut out", "exclude", "close", "shut"]}, {"answer": "shut_up", "hint": "synonyms for shut up", "clues": ["hush", "still", "quieten", "lock up", "clam up", "put away", "button up", "keep mum", "lock away", "silence", "shut away", "close up", "belt up", "be quiet", "hush up", "lock in", "lock", "dummy up", "shut up"]}, {"answer": "sick", "hint": "synonyms for sick", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick"]}, {"answer": "sickening", "hint": "synonyms for sickening", "clues": ["revolt", "nauseate", "come down", "disgust", "churn up", "sicken", "turn one's stomach"]}, {"answer": "sign", "hint": "synonyms for sign", "clues": ["ratify", "subscribe", "contract", "sign up", "signalise", "bless", "sign on", "signal", "sign"]}, {"answer": "signal", "hint": "synonyms for signal", "clues": ["signalise", "bespeak", "indicate", "betoken", "point", "sign", "signal"]}, {"answer": "signed", "hint": "synonyms for signed", "clues": ["ratify", "subscribe", "sign", "contract", "sign up", "signalise", "bless", "sign on", "signal", "signed"]}, {"answer": "silenced", "hint": "synonyms for silenced", "clues": ["hush", "still", "quieten", "hush up", "shut up", "silence"]}, {"answer": "simulated", "hint": "synonyms for simulated", "clues": ["imitate", "model", "sham", "copy", "feign", "simulate", "assume"]}, {"answer": "singing", "hint": "synonyms for singing", "clues": ["sear", "swinge", "whistle", "tattle", "peach", "babble out", "scorch", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing"]}, {"answer": "sinning", "hint": "synonyms for sinning", "clues": ["boob", "sin", "blunder", "goof", "trespass", "transgress", "drop the ball", "sinning"]}, {"answer": "sitting", "hint": "synonyms for sitting", "clues": ["pose", "seat", "baby-sit", "ride", "posture", "sit", "sit around", "sit down", "model", "sitting"]}, {"answer": "situated", "hint": "synonyms for situated", "clues": ["situate", "fix", "deposit", "posit", "locate"]}, {"answer": "skim", "hint": "synonyms for skim", "clues": ["skip", "skim off", "cream off", "cream", "skitter", "plane", "glance over", "skim over", "scan", "run down", "rake", "skim"]}, {"answer": "skimmed", "hint": "synonyms for skimmed", "clues": ["skip", "skim off", "cream off", "cream", "skitter", "plane", "glance over", "skim", "skim over", "scan", "run down", "rake", "skimmed"]}, {"answer": "skinned", "hint": "synonyms for skinned", "clues": ["shin", "sputter", "struggle", "pare", "clamber", "skin", "bark", "peel", "shinny", "scrape", "scramble", "skinned"]}, {"answer": "skirting", "hint": "synonyms for skirting", "clues": ["elude", "surround", "put off", "ring", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "border", "environ", "sidestep"]}, {"answer": "slack", "hint": "synonyms for slack", "clues": ["slow down", "relax", "let up", "slack up", "slow", "die away", "abate", "slack off", "slake", "slacken", "slow up", "slack"]}, {"answer": "slain", "hint": "synonyms for slain", "clues": ["dispatch", "remove", "hit", "polish off", "slay", "bump off", "murder", "off", "slain"]}, {"answer": "slaked", "hint": "synonyms for slaked", "clues": ["abate", "slack", "allay", "assuage", "slake", "quench"]}, {"answer": "slanted", "hint": "synonyms for slanted", "clues": ["angle", "weight", "tilt", "pitch", "cant over", "cant", "lean", "tip", "slant", "slanted"]}, {"answer": "slanting", "hint": "synonyms for slanting", "clues": ["angle", "weight", "tilt", "pitch", "cant over", "cant", "lean", "tip", "slant"]}, {"answer": "slashed", "hint": "synonyms for slashed", "clues": ["jactitate", "lash", "flog", "whip", "lather", "convulse", "thrash", "toss", "welt", "cut down", "gash", "thresh about", "strap", "thresh", "trounce", "slashed"]}, {"answer": "slashing", "hint": "synonyms for slashing", "clues": ["jactitate", "lash", "flog", "whip", "lather", "convulse", "thrash", "toss", "welt", "cut down", "gash", "thresh about", "strap", "thresh", "trounce", "slashing"]}, {"answer": "sleeping", "hint": "synonyms for sleeping", "clues": ["slumber", "log Z's", "sleep", "catch some Z's", "kip"]}, {"answer": "slicked", "hint": "synonyms for slicked", "clues": ["slick", "sleek down", "sleek", "slick down", "slicked"]}, {"answer": "sliding", "hint": "synonyms for sliding", "clues": ["slue", "slip", "slither", "slide", "slew", "skid", "sliding"]}, {"answer": "slim", "hint": "synonyms for slim", "clues": ["lose weight", "reduce", "slim down", "melt off", "slenderize", "thin", "slim"]}, {"answer": "slimed", "hint": "synonyms for slimed", "clues": ["lose weight", "reduce", "slim down", "slenderize", "slim", "thin", "melt off", "slimed"]}, {"answer": "slipping", "hint": "synonyms for slipping", "clues": ["err", "slip", "drop away", "fall away", "slip one's mind", "slew", "dislocate", "drop off", "steal", "sneak", "luxate", "splay", "mistake", "slide", "slue", "skid", "slipping"]}, {"answer": "sloped", "hint": "synonyms for sloped", "clues": ["incline", "splash", "slop", "squish", "swill", "pitch", "squelch", "spill", "splatter", "splosh", "sloped"]}, {"answer": "sloping", "hint": "synonyms for sloping", "clues": ["incline", "splash", "slop", "squish", "swill", "pitch", "squelch", "spill", "splatter", "splosh"]}, {"answer": "slopped", "hint": "synonyms for slopped", "clues": ["splash", "slop", "squish", "swill", "squelch", "spill", "splatter", "splosh", "slopped"]}, {"answer": "sloshed", "hint": "synonyms for sloshed", "clues": ["slosh around", "splash", "slop", "squish", "squelch", "slush", "splosh", "sloshed"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["slow down", "slack", "decelerate", "slacken", "slow up", "retard", "slow"]}, {"answer": "smashed", "hint": "synonyms for smashed", "clues": ["break", "blast", "smash up", "crush", "demolish", "dash", "smash", "boom", "bang up", "nail", "ruin", "bankrupt", "smashed"]}, {"answer": "smashing", "hint": "synonyms for smashing", "clues": ["break", "blast", "smash up", "crush", "demolish", "dash", "smash", "boom", "bang up", "nail", "ruin", "bankrupt"]}, {"answer": "smelling", "hint": "synonyms for smelling", "clues": ["smell", "sense", "smell out", "smack", "reek"]}, {"answer": "smooth", "hint": "synonyms for smooth", "clues": ["polish", "smooth out", "smoothen", "shine"]}, {"answer": "smoothed", "hint": "synonyms for smoothed", "clues": ["smooth", "shine", "polish", "smooth out"]}, {"answer": "smoothened", "hint": "synonyms for smoothened", "clues": ["smooth", "shine", "polish", "smoothened"]}, {"answer": "smothered", "hint": "synonyms for smothered", "clues": ["stifle", "put out", "smother", "suffocate", "strangle", "repress", "muffle", "surround", "asphyxiate"]}, {"answer": "smothering", "hint": "synonyms for smothering", "clues": ["stifle", "put out", "smother", "suffocate", "strangle", "repress", "muffle", "surround", "asphyxiate"]}, {"answer": "snarled", "hint": "synonyms for snarled", "clues": ["mat", "snap", "snarl", "entangle", "snarl up", "embrangle", "snarled"]}, {"answer": "sneak", "hint": "synonyms for sneak", "clues": ["lift", "abstract", "pilfer", "slip", "pinch", "filch", "snarf", "swipe", "creep", "mouse", "nobble", "hook", "purloin", "cabbage", "pussyfoot", "sneak"]}, {"answer": "sneaking", "hint": "synonyms for sneaking", "clues": ["slip", "sneak", "creep", "purloin", "swipe", "pussyfoot", "lift", "abstract", "pilfer", "pinch", "filch", "snarf", "nobble", "mouse", "hook", "cabbage"]}, {"answer": "snub", "hint": "synonyms for snub", "clues": ["rebuff", "cut", "disregard", "repel", "ignore", "snub"]}, {"answer": "snuffling", "hint": "synonyms for snuffling", "clues": ["snuff", "sniffle", "snivel", "blubber", "blub", "snuffling"]}, {"answer": "snuggled", "hint": "synonyms for snuggled", "clues": ["nestle", "cuddle", "draw close", "nest", "snuggle", "nuzzle"]}, {"answer": "soaked", "hint": "synonyms for soaked", "clues": ["pluck", "fleece", "dowse", "douse", "plume", "rob", "hit it up", "surcharge", "sop", "drench", "imbue", "hock", "overcharge", "souse", "pawn", "soak", "gazump", "hook", "inebriate", "intoxicate", "soaked"]}, {"answer": "soaring", "hint": "synonyms for soaring", "clues": ["soar", "sailplane", "zoom", "soar upwards", "hang glide", "surge", "soar up"]}, {"answer": "softened", "hint": "synonyms for softened", "clues": ["soften", "break", "weaken", "moderate", "damp", "cushion", "relent", "mince", "buffer", "yield", "dampen"]}, {"answer": "softening", "hint": "synonyms for softening", "clues": ["soften", "break", "weaken", "moderate", "damp", "cushion", "relent", "mince", "buffer", "yield", "dampen"]}, {"answer": "soiled", "hint": "synonyms for soiled", "clues": ["soil", "colly", "grime", "begrime", "bemire", "dirty", "soiled"]}, {"answer": "sold", "hint": "synonyms for sold", "clues": ["betray", "sell", "deal", "trade", "sold"]}, {"answer": "solved", "hint": "synonyms for solved", "clues": ["resolve", "work", "work out", "lick", "puzzle out", "solve", "figure out", "clear"]}, {"answer": "soothing", "hint": "synonyms for soothing", "clues": ["soothe", "console", "solace", "comfort", "soothing"]}, {"answer": "sophisticated", "hint": "synonyms for sophisticated", "clues": ["doctor", "sophisticate", "twist around", "pervert", "twist", "convolute", "doctor up"]}, {"answer": "sorted", "hint": "synonyms for sorted", "clues": ["screen", "sort", "sort out", "separate", "sieve", "class", "classify", "screen out", "assort", "sorted"]}, {"answer": "sought", "hint": "synonyms for sought", "clues": ["attempt", "look for", "seek", "essay", "assay", "search", "try", "sought"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["fathom", "go", "vocalise", "voice", "sound"]}, {"answer": "sounding", "hint": "synonyms for sounding", "clues": ["fathom", "go", "vocalise", "voice", "sound"]}, {"answer": "sour", "hint": "synonyms for sour", "clues": ["ferment", "acidify", "acetify", "turn", "work", "acidulate", "sour"]}, {"answer": "soured", "hint": "synonyms for soured", "clues": ["acidify", "work", "ferment", "sour", "acetify", "turn", "acidulate", "soured"]}, {"answer": "soused", "hint": "synonyms for soused", "clues": ["dip", "dowse", "souse", "douse", "soak", "dunk", "hit it up", "inebriate", "sop", "drench", "plunge"]}, {"answer": "sown", "hint": "synonyms for sown", "clues": ["sow in", "sow", "seed", "inseminate"]}, {"answer": "spare", "hint": "synonyms for spare", "clues": ["give up", "part with", "dispense with", "save", "spare"]}, {"answer": "sparing", "hint": "synonyms for sparing", "clues": ["part with", "dispense with", "give up", "save", "spare", "sparing"]}, {"answer": "sparkling", "hint": "synonyms for sparkling", "clues": ["scintillate", "froth", "form bubbles", "sparkle", "fizz", "effervesce", "spark", "coruscate", "foam", "sparkling"]}, {"answer": "spattered", "hint": "synonyms for spattered", "clues": ["swash", "splash", "bespatter", "splatter", "splosh", "sprinkle", "spit", "pitter-patter", "spattered"]}, {"answer": "spayed", "hint": "synonyms for spayed", "clues": ["alter", "castrate", "spay", "neuter", "spayed"]}, {"answer": "speaking", "hint": "synonyms for speaking", "clues": ["speak", "address", "talk", "mouth", "utter", "verbalize"]}, {"answer": "specialised", "hint": "synonyms for specialised", "clues": ["narrow", "specify", "specialise", "differentiate", "narrow down", "particularize", "speciate"]}, {"answer": "specialized", "hint": "synonyms for specialized", "clues": ["narrow", "specify", "specialise", "differentiate", "narrow down", "particularize", "speciate"]}, {"answer": "specified", "hint": "synonyms for specified", "clues": ["narrow", "specify", "limit", "define", "designate", "intend", "assign", "determine", "fix", "stipulate", "condition", "delimit", "destine", "set apart", "set", "specialise", "pin down", "delimitate", "narrow down", "peg down", "delineate", "qualify", "nail down", "particularize", "specified"]}, {"answer": "spellbinding", "hint": "synonyms for spellbinding", "clues": ["fascinate", "magnetize", "entrance", "spellbind", "transfix", "mesmerize", "grip", "bewitch"]}, {"answer": "spellbound", "hint": "synonyms for spellbound", "clues": ["fascinate", "magnetize", "entrance", "spellbind", "transfix", "mesmerize", "grip", "bewitch", "spellbound"]}, {"answer": "spent", "hint": "synonyms for spent", "clues": ["spend", "expend", "drop", "pass", "spent"]}, {"answer": "spiked", "hint": "synonyms for spiked", "clues": ["impale", "empale", "spike out", "transfix", "lace", "fortify", "spike"]}, {"answer": "spiraling", "hint": "synonyms for spiraling", "clues": ["gyrate", "coil", "corkscrew", "spiral"]}, {"answer": "splashed", "hint": "synonyms for splashed", "clues": ["swash", "splash", "slop", "squish", "squelch", "spatter", "splosh", "slush", "sprinkle"]}, {"answer": "splattered", "hint": "synonyms for splattered", "clues": ["swash", "splash", "slop", "spatter", "spill", "splosh", "splattered"]}, {"answer": "splay", "hint": "synonyms for splay", "clues": ["luxate", "rotate", "slip", "spread out", "turn out", "dislocate", "splay"]}, {"answer": "split", "hint": "synonyms for split", "clues": ["break", "break up", "split up", "separate", "rive", "carve up", "cleave", "part", "break open", "burst", "divide", "dissever", "split"]}, {"answer": "splitting", "hint": "synonyms for splitting", "clues": ["break", "break up", "split", "split up", "separate", "carve up", "cleave", "rive", "part", "break open", "burst", "divide", "dissever", "splitting"]}, {"answer": "spoiled", "hint": "synonyms for spoiled", "clues": ["fuck up", "louse up", "scotch", "despoil", "muff", "pamper", "bollix up", "cross", "bollocks", "botch", "bumble", "fluff", "coddle", "thwart", "featherbed", "fumble", "rape", "itch", "mar", "mishandle", "vitiate", "baffle", "bollocks up", "indulge", "foul up", "impair", "bungle", "bollix", "bobble", "baby", "foil", "violate", "deflower", "go bad", "ball up", "screw up", "cosset", "bodge", "mess up", "cocker", "flub", "blow", "spoil", "corrupt", "queer", "frustrate", "mollycoddle", "bilk", "plunder", "botch up", "spoiled"]}, {"answer": "spoilt", "hint": "synonyms for spoilt", "clues": ["fuck up", "louse up", "scotch", "despoil", "muff", "pamper", "bollix up", "cross", "bollocks", "botch", "bumble", "fluff", "coddle", "thwart", "featherbed", "fumble", "rape", "itch", "mar", "mishandle", "vitiate", "baffle", "bollocks up", "indulge", "foul up", "impair", "bungle", "bollix", "bobble", "baby", "foil", "violate", "deflower", "go bad", "ball up", "screw up", "cosset", "bodge", "mess up", "cocker", "flub", "blow", "spoil", "corrupt", "queer", "frustrate", "mollycoddle", "bilk", "plunder", "botch up"]}, {"answer": "spoken", "hint": "synonyms for spoken", "clues": ["speak", "address", "talk", "mouth", "utter", "verbalize", "spoken"]}, {"answer": "sporting", "hint": "synonyms for sporting", "clues": ["sport", "gambol", "rollick", "lark", "boast", "feature", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "cavort"]}, {"answer": "spotted", "hint": "synonyms for spotted", "clues": ["blob", "spy", "recognize", "blot", "spot", "discern", "blemish", "pick out", "descry", "make out", "fleck", "tell apart", "distinguish", "spotted"]}, {"answer": "spouting", "hint": "synonyms for spouting", "clues": ["spurt", "rabbit on", "spirt", "gush", "rave", "mouth off", "jabber", "rant", "spout"]}, {"answer": "spread", "hint": "synonyms for spread", "clues": ["fan out", "circulate", "disperse", "unfold", "circularise", "disseminate", "pass around", "spread out", "diffuse", "propagate", "distribute", "open", "broadcast", "go around", "overspread", "scatter", "spread"]}, {"answer": "sprouted", "hint": "synonyms for sprouted", "clues": ["sprout", "shoot", "burgeon forth", "pullulate", "germinate", "stock", "bourgeon", "spud"]}, {"answer": "spruce", "hint": "synonyms for spruce", "clues": ["slick up", "smarten up", "tittivate", "spiff up", "spruce up", "spruce"]}, {"answer": "spurned", "hint": "synonyms for spurned", "clues": ["spurn", "pooh-pooh", "scorn", "disdain", "reject", "turn down", "freeze off", "spurned"]}, {"answer": "spurting", "hint": "synonyms for spurting", "clues": ["spurt", "forge", "spirt", "spout", "gush"]}, {"answer": "squalling", "hint": "synonyms for squalling", "clues": ["hollo", "call", "scream", "squall", "cry", "shout", "wawl", "waul", "shout out", "yell", "holler"]}, {"answer": "squandered", "hint": "synonyms for squandered", "clues": ["ware", "blow", "consume", "waste", "squander"]}, {"answer": "squashed", "hint": "synonyms for squashed", "clues": ["mash", "crush", "squash", "squelch", "squeeze"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["scrunch up", "crouch", "scrunch", "hunker down", "hunker", "squat"]}, {"answer": "squeaking", "hint": "synonyms for squeaking", "clues": ["whine", "skreak", "squeak", "creak", "screech"]}, {"answer": "squealing", "hint": "synonyms for squealing", "clues": ["fink", "confess", "squeal", "oink"]}, {"answer": "squelched", "hint": "synonyms for squelched", "clues": ["quell", "mash", "splash", "slop", "squish", "crush", "squelch", "squeeze", "splosh", "squash", "quench"]}, {"answer": "squinched", "hint": "synonyms for squinched", "clues": ["recoil", "quail", "shrink", "cringe", "squint", "wince", "funk", "squinch", "flinch"]}, {"answer": "squirting", "hint": "synonyms for squirting", "clues": ["eject", "squeeze out", "squirt", "force out"]}, {"answer": "stabbing", "hint": "synonyms for stabbing", "clues": ["stab", "jab", "prod", "knife", "poke", "dig", "stabbing"]}, {"answer": "stabilising", "hint": "synonyms for stabilising", "clues": ["steady", "brace", "stabilise", "stabilising"]}, {"answer": "stabilized", "hint": "synonyms for stabilized", "clues": ["steady", "brace", "stabilise", "stabilized"]}, {"answer": "stabilizing", "hint": "synonyms for stabilizing", "clues": ["steady", "brace", "stabilise", "stabilizing"]}, {"answer": "staged", "hint": "synonyms for staged", "clues": ["sleuth", "denounce", "spy", "betray", "represent", "give away", "stag", "snoop", "rat", "grass", "shop", "tell on", "shit", "snitch", "arrange", "staged"]}, {"answer": "staggering", "hint": "synonyms for staggering", "clues": ["swag", "distribute", "stagger", "careen", "keel", "flounder", "reel", "lurch"]}, {"answer": "stained", "hint": "synonyms for stained", "clues": ["sully", "maculate", "tarnish", "defile", "stain", "stained"]}, {"answer": "standing", "hint": "synonyms for standing", "clues": ["support", "stomach", "fend", "put up", "stand up", "abide", "bear", "tolerate", "brook", "digest", "remain firm", "place upright", "stand", "resist", "endure", "stick out", "suffer"]}, {"answer": "starting", "hint": "synonyms for starting", "clues": ["take up", "initiate", "embark on", "take off", "go", "start out", "protrude", "start up", "set forth", "startle", "set about", "pop", "depart", "come out", "commence", "bug out", "jump", "get going", "begin", "start", "set off", "part", "originate", "pop out", "lead off", "bulge", "get", "get down"]}, {"answer": "startled", "hint": "synonyms for startled", "clues": ["jump", "galvanise", "startle", "start"]}, {"answer": "startling", "hint": "synonyms for startling", "clues": ["jump", "galvanise", "startle", "start", "startling"]}, {"answer": "starved", "hint": "synonyms for starved", "clues": ["crave", "hunger", "famish", "starve", "thirst", "lust"]}, {"answer": "starving", "hint": "synonyms for starving", "clues": ["crave", "hunger", "famish", "starve", "thirst", "lust", "starving"]}, {"answer": "stated", "hint": "synonyms for stated", "clues": ["submit", "say", "put forward", "express", "state", "posit", "tell"]}, {"answer": "steadied", "hint": "synonyms for steadied", "clues": ["stabilise", "steady", "brace", "becalm", "calm", "steadied"]}, {"answer": "steady", "hint": "synonyms for steady", "clues": ["stabilise", "brace", "becalm", "calm", "steady"]}, {"answer": "steadying", "hint": "synonyms for steadying", "clues": ["stabilise", "steady", "brace", "becalm", "calm"]}, {"answer": "steep", "hint": "synonyms for steep", "clues": ["engulf", "immerse", "infuse", "absorb", "engross", "plunge", "soak up", "steep"]}, {"answer": "stemmed", "hint": "synonyms for stemmed", "clues": ["halt", "stanch", "stem", "stemmed"]}, {"answer": "sterilised", "hint": "synonyms for sterilised", "clues": ["desex", "desexualise", "unsex", "sterilize", "fix", "sterilised"]}, {"answer": "sterilized", "hint": "synonyms for sterilized", "clues": ["desex", "desexualise", "unsex", "sterilize", "fix"]}, {"answer": "stewed", "hint": "synonyms for stewed", "clues": ["grudge", "grizzle", "stew", "brood", "stewed"]}, {"answer": "sticking", "hint": "synonyms for sticking", "clues": ["cling", "pose", "stick to", "stay put", "nonplus", "dumbfound", "lodge", "adhere", "stand by", "puzzle", "vex", "hold fast", "gravel", "deposit", "wedge", "stick by", "stupefy", "bewilder", "stick around", "stick", "amaze", "mystify", "cleave", "bond", "bind", "perplex", "stay", "beat", "cohere", "baffle", "sting", "flummox", "get"]}, {"answer": "stifled", "hint": "synonyms for stifled", "clues": ["stifle", "choke", "smother", "suffocate", "strangle", "repress", "muffle", "dampen", "asphyxiate"]}, {"answer": "stifling", "hint": "synonyms for stifling", "clues": ["stifle", "choke", "smother", "suffocate", "strangle", "repress", "muffle", "dampen", "asphyxiate", "stifling"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["hush", "quieten", "ease", "allay", "tranquilize", "silence", "calm down", "lull", "hush up", "shut up", "relieve", "quiet", "calm", "still"]}, {"answer": "stimulated", "hint": "synonyms for stimulated", "clues": ["induce", "make", "shake", "rush", "excite", "energise", "stimulate", "perk up", "shake up", "brace", "cause", "provoke", "arouse", "stir", "have", "get", "hasten"]}, {"answer": "stimulating", "hint": "synonyms for stimulating", "clues": ["induce", "make", "shake", "rush", "excite", "energise", "stimulate", "perk up", "shake up", "brace", "cause", "provoke", "arouse", "stir", "have", "get", "hasten", "stimulating"]}, {"answer": "stinging", "hint": "synonyms for stinging", "clues": ["bite", "stick", "twinge", "sting", "burn", "prick"]}, {"answer": "stinting", "hint": "synonyms for stinting", "clues": ["stint", "scant", "scrimp", "skimp"]}, {"answer": "stirred", "hint": "synonyms for stirred", "clues": ["shake", "put forward", "excite", "invoke", "stimulate", "agitate", "shake up", "conjure", "conjure up", "bring up", "budge", "touch", "evoke", "raise", "arouse", "stir", "call down", "call forth", "shift", "stirred"]}, {"answer": "stirring", "hint": "synonyms for stirring", "clues": ["shake", "put forward", "excite", "invoke", "stimulate", "agitate", "shake up", "conjure", "conjure up", "bring up", "budge", "touch", "evoke", "raise", "arouse", "stir", "call down", "call forth", "shift", "stirring"]}, {"answer": "stitched", "hint": "synonyms for stitched", "clues": ["run up", "sew", "sew together", "stitch"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["sprout", "stock up", "stockpile", "buy in", "carry", "stock"]}, {"answer": "stocked", "hint": "synonyms for stocked", "clues": ["sprout", "stockpile", "stock", "buy in", "stock up", "carry", "stocked"]}, {"answer": "stockinged", "hint": "synonyms for stockinged", "clues": ["sprout", "stockpile", "stock", "buy in", "stock up", "carry", "stockinged"]}, {"answer": "stooped", "hint": "synonyms for stooped", "clues": ["bend", "lower oneself", "crouch", "condescend", "bow", "stoop", "stooped"]}, {"answer": "stooping", "hint": "synonyms for stooping", "clues": ["bend", "lower oneself", "crouch", "condescend", "bow", "stoop"]}, {"answer": "stopped", "hint": "synonyms for stopped", "clues": ["quit", "break", "halt", "kibosh", "turn back", "terminate", "give up", "bar", "block up", "break off", "finish", "intercept", "blockade", "stop over", "block off", "hold on", "block", "end", "discontinue", "stop", "cease", "hold back", "contain", "arrest", "lay off", "barricade", "check", "stopped"]}, {"answer": "straggling", "hint": "synonyms for straggling", "clues": ["straggle", "depart", "sprawl", "digress", "sidetrack", "straggling"]}, {"answer": "strained", "hint": "synonyms for strained", "clues": ["stress", "tense up", "puree", "sift", "filter out", "strive", "sieve", "separate out", "deform", "distort", "tense", "strain", "reach", "filter", "filtrate", "extend", "try"]}, {"answer": "straining", "hint": "synonyms for straining", "clues": ["stress", "tense up", "puree", "sift", "filter out", "strive", "sieve", "separate out", "deform", "distort", "tense", "strain", "reach", "filter", "filtrate", "extend", "try"]}, {"answer": "stranded", "hint": "synonyms for stranded", "clues": ["maroon", "run aground", "strand", "ground"]}, {"answer": "strangled", "hint": "synonyms for strangled", "clues": ["throttle", "stifle", "gag", "strangulate", "choke", "cramp", "smother", "suffocate", "strangle", "repress", "muffle", "hamper", "halter"]}, {"answer": "strapping", "hint": "synonyms for strapping", "clues": ["lash", "flog", "whip", "lather", "welt", "strap", "trounce", "strapping"]}, {"answer": "stray", "hint": "synonyms for stray", "clues": ["err", "range", "rove", "ramble", "swan", "wander", "divagate", "drift", "roll", "vagabond", "tramp", "cast", "roam", "digress", "stray"]}, {"answer": "straying", "hint": "synonyms for straying", "clues": ["err", "stray", "range", "rove", "ramble", "swan", "wander", "divagate", "drift", "roll", "vagabond", "tramp", "cast", "roam", "digress"]}, {"answer": "streaming", "hint": "synonyms for streaming", "clues": ["teem", "pelt", "swarm", "rain cats and dogs", "rain buckets", "pullulate", "pour", "stream", "well out"]}, {"answer": "strengthened", "hint": "synonyms for strengthened", "clues": ["tone up", "beef up", "fortify", "tone", "strengthen"]}, {"answer": "stressed", "hint": "synonyms for stressed", "clues": ["accent", "stress", "try", "accentuate", "strain", "emphasise", "punctuate"]}, {"answer": "stretch", "hint": "synonyms for stretch", "clues": ["adulterate", "load", "unfold", "elongate", "dilute", "stretch along", "stretch out", "debase", "extend", "stretch"]}, {"answer": "stretched", "hint": "synonyms for stretched", "clues": ["stretch", "adulterate", "load", "unfold", "elongate", "dilute", "stretch along", "stretch out", "debase", "extend"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["take up", "happen upon", "mint", "strike", "chance upon", "affect", "come upon", "discover", "attain", "light upon", "collide with", "fall", "impinge on", "come across", "take", "walk out", "move", "hit", "excise", "impress", "expunge", "fall upon", "scratch", "run into", "shine", "come to", "coin", "assume", "striking"]}, {"answer": "striped", "hint": "synonyms for striped", "clues": ["denude", "stripe", "despoil", "uncase", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach"]}, {"answer": "stripped", "hint": "synonyms for stripped", "clues": ["denude", "despoil", "uncase", "strip", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach", "stripped"]}, {"answer": "strong-arm", "hint": "synonyms for strong-arm", "clues": ["push around", "hector", "browbeat", "bully", "ballyrag", "boss around", "strong-arm"]}, {"answer": "struck", "hint": "synonyms for struck", "clues": ["take up", "happen upon", "mint", "strike", "chance upon", "affect", "come upon", "discover", "attain", "light upon", "collide with", "fall", "impinge on", "come across", "take", "walk out", "move", "hit", "excise", "impress", "expunge", "fall upon", "scratch", "run into", "shine", "come to", "coin", "assume", "struck"]}, {"answer": "struggling", "hint": "synonyms for struggling", "clues": ["shin", "sputter", "struggle", "fight", "contend", "clamber", "skin", "shinny", "scramble", "struggling"]}, {"answer": "strung", "hint": "synonyms for strung", "clues": ["string up", "string along", "draw", "thread", "string", "strung"]}, {"answer": "stuck", "hint": "synonyms for stuck", "clues": ["cling", "pose", "stick to", "stay put", "nonplus", "dumbfound", "lodge", "adhere", "stand by", "puzzle", "vex", "hold fast", "gravel", "deposit", "wedge", "stick by", "stupefy", "bewilder", "stick around", "stick", "amaze", "mystify", "cleave", "bond", "bind", "perplex", "stay", "beat", "cohere", "baffle", "sting", "flummox", "get", "stuck"]}, {"answer": "studied", "hint": "synonyms for studied", "clues": ["canvas", "take", "contemplate", "read", "consider", "hit the books", "analyse", "study", "meditate", "learn", "examine", "studied"]}, {"answer": "stuffed", "hint": "synonyms for stuffed", "clues": ["ingurgitate", "overeat", "binge", "stuff", "scarf out", "squeeze", "gourmandize", "overgorge", "shove", "overindulge", "englut", "pig out", "engorge", "block", "choke up", "farce", "lug", "glut", "thrust", "satiate", "gorge", "stuffed"]}, {"answer": "stung", "hint": "synonyms for stung", "clues": ["bite", "stick", "twinge", "sting", "burn", "prick", "stung"]}, {"answer": "stunned", "hint": "synonyms for stunned", "clues": ["stun", "stupefy", "daze", "sandbag", "bedaze", "stunned"]}, {"answer": "stunning", "hint": "synonyms for stunning", "clues": ["stun", "stupefy", "daze", "sandbag", "bedaze", "stunning"]}, {"answer": "stupefied", "hint": "synonyms for stupefied", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "stupefy", "gravel", "stun", "bewilder", "stick", "amaze", "mystify", "besot", "perplex", "beat", "baffle", "flummox", "get", "stupefied"]}, {"answer": "stupefying", "hint": "synonyms for stupefying", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "stupefy", "gravel", "stun", "bewilder", "stick", "amaze", "mystify", "besot", "perplex", "beat", "baffle", "flummox", "get"]}, {"answer": "subdued", "hint": "synonyms for subdued", "clues": ["subjugate", "crucify", "reduce", "surmount", "overcome", "repress", "tame", "conquer", "keep down", "quash", "subdue", "curb", "suppress", "subordinate", "mortify", "master", "chasten", "stamp down", "get over", "inhibit"]}, {"answer": "subjugated", "hint": "synonyms for subjugated", "clues": ["subdue", "subjugate", "repress", "reduce", "subject", "quash", "keep down"]}, {"answer": "sublimate", "hint": "synonyms for sublimate", "clues": ["rarefy", "purify", "make pure", "sublime", "distill", "subtilize"]}, {"answer": "sublimated", "hint": "synonyms for sublimated", "clues": ["rarefy", "purify", "make pure", "sublime", "distill", "subtilize", "sublimated"]}, {"answer": "submerged", "hint": "synonyms for submerged", "clues": ["deluge", "inundate", "submerge", "overwhelm", "drown"]}, {"answer": "subscribed", "hint": "synonyms for subscribed", "clues": ["support", "pledge", "take", "subscribe to", "sign", "subscribed"]}, {"answer": "substantiating", "hint": "synonyms for substantiating", "clues": ["support", "realise", "body forth", "actualise", "embody", "affirm", "confirm", "corroborate", "substantiate", "incarnate", "sustain", "substantiating"]}, {"answer": "substitute", "hint": "synonyms for substitute", "clues": ["deputize", "fill in", "stand in", "step in", "interchange", "sub", "exchange", "replace", "substitute"]}, {"answer": "succeeding", "hint": "synonyms for succeeding", "clues": ["win", "come after", "come through", "follow", "deliver the goods", "bring home the bacon", "succeed"]}, {"answer": "suckled", "hint": "synonyms for suckled", "clues": ["give suck", "suck", "breastfeed", "suckle", "nurse", "wet-nurse", "lactate"]}, {"answer": "suffering", "hint": "synonyms for suffering", "clues": ["stick out", "put up", "abide", "endure", "lose", "suffer", "support", "hurt", "stomach", "meet", "bear", "tolerate", "brook", "digest", "ache", "stand", "sustain", "have", "get"]}, {"answer": "suffocating", "hint": "synonyms for suffocating", "clues": ["stifle", "gag", "choke", "smother", "suffocate", "strangle", "asphyxiate", "suffocating"]}, {"answer": "suited", "hint": "synonyms for suited", "clues": ["suit", "become", "fit", "beseem", "accommodate", "befit", "suited"]}, {"answer": "sunk", "hint": "synonyms for sunk", "clues": ["fall off", "sink", "bury", "dip", "settle", "subside", "go down", "lapse", "go under", "slump", "drop", "drop down", "pass", "slide down", "sunk"]}, {"answer": "sunken", "hint": "synonyms for sunken", "clues": ["fall off", "sink", "bury", "dip", "settle", "subside", "go down", "lapse", "go under", "slump", "drop", "drop down", "pass", "slide down", "sunken"]}, {"answer": "supercharged", "hint": "synonyms for supercharged", "clues": ["pressurise", "advance", "boost", "supercharge"]}, {"answer": "supervised", "hint": "synonyms for supervised", "clues": ["monitor", "superintend", "supervise", "oversee", "manage"]}, {"answer": "supported", "hint": "synonyms for supported", "clues": ["patronize", "defend", "put up", "abide", "confirm", "hold up", "hold", "endorse", "corroborate", "stand", "plunk for", "fend for", "suffer", "support", "plump for", "underpin", "stomach", "back up", "subscribe", "patronage", "affirm", "keep going", "back", "bear out", "bear", "tolerate", "substantiate", "brook", "digest", "sustain", "endure", "stick out"]}, {"answer": "supporting", "hint": "synonyms for supporting", "clues": ["patronize", "defend", "put up", "abide", "confirm", "hold up", "hold", "endorse", "corroborate", "stand", "plunk for", "fend for", "suffer", "support", "plump for", "underpin", "stomach", "back up", "subscribe", "patronage", "affirm", "keep going", "back", "bear out", "bear", "tolerate", "substantiate", "brook", "digest", "sustain", "endure", "stick out"]}, {"answer": "supposed", "hint": "synonyms for supposed", "clues": ["imagine", "hypothesize", "speculate", "think", "hypothecate", "suppose", "opine", "say", "conjecture", "guess", "reckon", "presuppose", "theorize"]}, {"answer": "suppressed", "hint": "synonyms for suppressed", "clues": ["subdue", "bottle up", "curb", "crush", "suppress", "oppress", "repress", "conquer", "stamp down", "inhibit"]}, {"answer": "surface", "hint": "synonyms for surface", "clues": ["show up", "turn up", "come up", "come on", "rise", "come out", "rise up", "coat", "surface"]}, {"answer": "surging", "hint": "synonyms for surging", "clues": ["soar", "zoom", "heave", "scend", "soar upwards", "surge", "tide", "soar up", "billow", "surging"]}, {"answer": "surmounted", "hint": "synonyms for surmounted", "clues": ["subdue", "outmatch", "outstrip", "scale", "master", "exceed", "surmount", "overcome", "outgo", "surpass", "outdo", "get over", "outperform"]}, {"answer": "surpassing", "hint": "synonyms for surpassing", "clues": ["outmatch", "outstrip", "stand out", "go past", "exceed", "pass by", "surmount", "go by", "pass", "outgo", "surpass", "travel by", "excel", "transcend", "outdo", "outperform"]}, {"answer": "surrounded", "hint": "synonyms for surrounded", "clues": ["beleaguer", "fence", "palisade", "ring", "besiege", "wall", "smother", "fence in", "skirt", "hem in", "circumvent", "surround", "border", "environ"]}, {"answer": "surrounding", "hint": "synonyms for surrounding", "clues": ["beleaguer", "fence", "palisade", "ring", "besiege", "wall", "smother", "fence in", "skirt", "hem in", "circumvent", "surround", "border", "environ"]}, {"answer": "surviving", "hint": "synonyms for surviving", "clues": ["go", "hold out", "make it", "pull through", "last", "live on", "live", "subsist", "hold up", "outlive", "outlast", "come through", "survive", "exist", "endure", "pull round", "surviving"]}, {"answer": "suspended", "hint": "synonyms for suspended", "clues": ["freeze", "suspend", "set aside", "debar"]}, {"answer": "sustained", "hint": "synonyms for sustained", "clues": ["nourish", "maintain", "prolong", "keep", "keep up", "confirm", "hold up", "hold", "corroborate", "suffer", "support", "nurture", "affirm", "substantiate", "sustain", "have", "get"]}, {"answer": "swagger", "hint": "synonyms for swagger", "clues": ["swash", "browbeat", "strut", "tittup", "bluster", "prance", "ruffle", "sashay", "cock", "bully", "swagger"]}, {"answer": "swaggering", "hint": "synonyms for swaggering", "clues": ["swash", "browbeat", "strut", "tittup", "bluster", "prance", "swagger", "sashay", "ruffle", "cock", "bully"]}, {"answer": "swank", "hint": "synonyms for swank", "clues": ["flaunt", "ostentate", "flash", "show off", "swank"]}, {"answer": "sweeping", "hint": "synonyms for sweeping", "clues": ["brush", "sweep", "swing out", "swing", "span", "embroil", "tangle", "cross", "sweep up", "broom", "drag", "sail", "drag in", "traverse"]}, {"answer": "swell", "hint": "synonyms for swell", "clues": ["swell up", "tumefy", "tumesce", "well", "puff up"]}, {"answer": "swelled", "hint": "synonyms for swelled", "clues": ["intumesce", "well up", "puff up", "swell", "tumefy", "swelled"]}, {"answer": "swept", "hint": "synonyms for swept", "clues": ["brush", "sweep", "swing out", "swing", "span", "embroil", "tangle", "cross", "sweep up", "broom", "drag", "sail", "drag in", "traverse", "swept"]}, {"answer": "swinging", "hint": "synonyms for swinging", "clues": ["dangle", "swinge", "sweep", "swing over", "get around", "drop", "sway", "swing out", "swinging"]}, {"answer": "swollen", "hint": "synonyms for swollen", "clues": ["intumesce", "well up", "puff up", "swell", "tumefy", "swollen"]}, {"answer": "swooning", "hint": "synonyms for swooning", "clues": ["pass out", "conk", "faint", "swoon"]}, {"answer": "sworn", "hint": "synonyms for sworn", "clues": ["cuss", "avow", "verify", "aver", "assert", "swan", "depose", "rely", "affirm", "blaspheme", "bank", "trust", "curse", "swear", "depone", "imprecate", "sworn"]}, {"answer": "tagged", "hint": "synonyms for tagged", "clues": ["label", "mark", "tail", "tag", "chase after", "go after", "give chase", "dog", "chase", "track", "tagged"]}, {"answer": "tailed", "hint": "synonyms for tailed", "clues": ["tail", "bob", "tag", "dock", "chase after", "go after", "give chase", "dog", "chase", "track", "tailed"]}, {"answer": "tailored", "hint": "synonyms for tailored", "clues": ["tailor-make", "sew", "tailor", "cut", "orient"]}, {"answer": "tainted", "hint": "synonyms for tainted", "clues": ["sully", "infect", "defile", "corrupt", "taint", "cloud", "tainted"]}, {"answer": "taken", "hint": "synonyms for taken", "clues": ["take up", "ask", "necessitate", "get hold of", "direct", "deal", "admit", "look at", "accept", "require", "consider", "lead", "train", "take on", "study", "fill", "withdraw", "claim", "need", "shoot", "exact", "hire", "pack", "film", "take away", "read", "conduct", "bring", "contract", "pick out", "ingest", "demand", "engage", "have", "assume", "make", "remove", "strike", "adopt", "carry", "subscribe to", "call for", "lease", "hold", "aim", "charter", "convey", "learn", "take aim", "take", "involve", "acquire", "select", "postulate", "get", "guide", "choose", "rent", "contain", "submit", "consume", "use up", "drive", "occupy"]}, {"answer": "taking", "hint": "synonyms for taking", "clues": ["take up", "ask", "necessitate", "get hold of", "direct", "deal", "admit", "look at", "accept", "require", "consider", "lead", "train", "take on", "study", "fill", "withdraw", "claim", "need", "shoot", "exact", "hire", "pack", "film", "take away", "read", "conduct", "bring", "contract", "pick out", "ingest", "demand", "engage", "have", "assume", "make", "remove", "strike", "adopt", "carry", "subscribe to", "call for", "lease", "hold", "aim", "charter", "convey", "learn", "take aim", "take", "involve", "acquire", "select", "postulate", "get", "guide", "choose", "rent", "contain", "submit", "consume", "use up", "drive", "occupy", "taking"]}, {"answer": "tame", "hint": "synonyms for tame", "clues": ["subdue", "tone down", "domesticate", "cultivate", "domesticise", "moderate", "naturalize", "reclaim", "chasten", "tame"]}, {"answer": "tamed", "hint": "synonyms for tamed", "clues": ["subdue", "tone down", "domesticate", "cultivate", "domesticise", "moderate", "naturalize", "reclaim", "chasten", "tame"]}, {"answer": "tangled", "hint": "synonyms for tangled", "clues": ["ravel", "snarl", "sweep", "tangle", "embroil", "tousle", "knot", "mat", "sweep up", "dishevel", "drag", "drag in"]}, {"answer": "tantalising", "hint": "synonyms for tantalising", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz", "tantalising"]}, {"answer": "tantalizing", "hint": "synonyms for tantalizing", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz", "tantalizing"]}, {"answer": "taped", "hint": "synonyms for taped", "clues": ["beg", "rap", "tapdance", "solicit", "tape", "exploit", "videotape", "wiretap", "knock", "record", "pink", "tip", "intercept", "bug"]}, {"answer": "tapped", "hint": "synonyms for tapped", "clues": ["beg", "rap", "tapdance", "solicit", "tap", "exploit", "wiretap", "knock", "pink", "tip", "intercept", "bug", "tapped"]}, {"answer": "tarry", "hint": "synonyms for tarry", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "mill about", "loaf", "mill around", "lurk", "mess about", "tarry"]}, {"answer": "tattling", "hint": "synonyms for tattling", "clues": ["clack", "tattle", "palaver", "chatter", "piffle", "babble out", "babble", "twaddle", "talk", "spill the beans", "blab out", "sing", "gabble", "blab", "maunder", "tittle-tattle", "gibber", "peach", "blabber", "prate", "prattle", "let the cat out of the bag", "tattling"]}, {"answer": "taunting", "hint": "synonyms for taunting", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz"]}, {"answer": "tearing", "hint": "synonyms for tearing", "clues": ["pull", "buck", "snap", "pluck", "shoot", "deplume", "displume", "shoot down", "rupture", "bust", "charge", "tear"]}, {"answer": "teased", "hint": "synonyms for teased", "clues": ["loosen", "bait", "pester", "ride", "taunt", "tease", "rag", "fluff", "badger", "beleaguer", "cod", "twit", "tease apart", "card", "tantalize", "rally", "razz", "bug"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["loosen", "bait", "pester", "ride", "taunt", "tease", "rag", "fluff", "badger", "beleaguer", "cod", "twit", "tease apart", "card", "tantalize", "rally", "razz", "bug", "teasing"]}, {"answer": "teeming", "hint": "synonyms for teeming", "clues": ["teem", "swarm", "pullulate", "pour", "stream"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["narrate", "enjoin", "differentiate", "tell", "secern", "recite", "distinguish", "recount", "separate", "assure", "evidence", "severalize", "say", "secernate", "tell apart", "order", "state"]}, {"answer": "tempered", "hint": "synonyms for tempered", "clues": ["anneal", "moderate", "mollify", "temper", "chasten", "normalize", "harden", "season"]}, {"answer": "tempering", "hint": "synonyms for tempering", "clues": ["anneal", "moderate", "mollify", "temper", "chasten", "normalize", "harden", "season"]}, {"answer": "tempting", "hint": "synonyms for tempting", "clues": ["allure", "tempt", "entice", "lure", "charm", "influence", "invite"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["offer", "tenderize", "bid", "tender"]}, {"answer": "tending", "hint": "synonyms for tending", "clues": ["incline", "tend", "be given", "lean", "run"]}, {"answer": "terminated", "hint": "synonyms for terminated", "clues": ["terminate", "dismiss", "fire", "give the sack", "send away", "finish", "displace", "give the axe", "end", "cease", "stop", "give notice", "force out", "can", "sack"]}, {"answer": "tested", "hint": "synonyms for tested", "clues": ["screen", "prove", "test", "try out", "essay", "quiz", "examine", "try", "tested"]}, {"answer": "thawed", "hint": "synonyms for thawed", "clues": ["dethaw", "dissolve", "melt", "unthaw", "unfreeze", "thaw", "thawed"]}, {"answer": "thieving", "hint": "synonyms for thieving", "clues": ["glom", "hook", "thieve", "knock off", "cop", "snitch", "thieving"]}, {"answer": "thin", "hint": "synonyms for thin", "clues": ["lose weight", "reduce", "cut", "slim down", "slenderize", "slim", "dilute", "thin out", "melt off", "thin"]}, {"answer": "thinking", "hint": "synonyms for thinking", "clues": ["cerebrate", "cogitate", "call back", "intend", "think", "suppose", "consider", "mean", "retrieve", "guess", "conceive", "call up", "opine", "remember", "recall", "imagine", "reckon", "believe", "recollect"]}, {"answer": "thinned", "hint": "synonyms for thinned", "clues": ["lose weight", "reduce", "cut", "slim down", "slenderize", "slim", "dilute", "thin", "thin out", "melt off", "thinned"]}, {"answer": "threaded", "hint": "synonyms for threaded", "clues": ["string", "wind", "draw", "wander", "thread", "weave", "meander"]}, {"answer": "threatened", "hint": "synonyms for threatened", "clues": ["jeopardise", "endanger", "menace", "peril", "threaten", "imperil"]}, {"answer": "threatening", "hint": "synonyms for threatening", "clues": ["jeopardise", "endanger", "menace", "peril", "threaten", "imperil"]}, {"answer": "thrilled", "hint": "synonyms for thrilled", "clues": ["thrill", "exhilarate", "shiver", "beatify", "exalt", "vibrate", "throb", "inebriate", "tickle pink", "shudder", "tickle"]}, {"answer": "thrilling", "hint": "synonyms for thrilling", "clues": ["thrill", "exhilarate", "shiver", "beatify", "exalt", "vibrate", "throb", "inebriate", "tickle pink", "shudder", "tickle"]}, {"answer": "thriving", "hint": "synonyms for thriving", "clues": ["thrive", "prosper", "expand", "fly high", "boom", "flourish", "thriving"]}, {"answer": "throbbing", "hint": "synonyms for throbbing", "clues": ["thrill", "shiver", "pulse", "throb", "pulsate", "shudder", "throbbing"]}, {"answer": "thronged", "hint": "synonyms for thronged", "clues": ["jam", "pack", "mob", "pile", "throng"]}, {"answer": "thrown", "hint": "synonyms for thrown", "clues": ["throw off", "bemuse", "make", "confuse", "shed", "befuddle", "discombobulate", "cast off", "hurl", "hold", "confound", "drop", "cast", "throw away", "bewilder", "fox", "throw", "flip", "have", "shake off", "contrive", "switch", "bedevil", "project", "give", "thrust"]}, {"answer": "thudding", "hint": "synonyms for thudding", "clues": ["scrunch", "thud", "crump", "thump", "thudding"]}, {"answer": "thumbed", "hint": "synonyms for thumbed", "clues": ["flip", "hitch", "leaf", "hitchhike", "riffle", "thumb", "flick", "riff", "finger", "thumbed"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["thud", "pound", "poke", "thump", "beat"]}, {"answer": "thwarted", "hint": "synonyms for thwarted", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart"]}, {"answer": "thwarting", "hint": "synonyms for thwarting", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart"]}, {"answer": "tickling", "hint": "synonyms for tickling", "clues": ["thrill", "vibrate", "titillate", "tickle", "vellicate", "tickling"]}, {"answer": "tidy", "hint": "synonyms for tidy", "clues": ["neaten", "square away", "straighten out", "clean up", "tidy up", "straighten", "tidy"]}, {"answer": "tied", "hint": "synonyms for tied", "clues": ["tie", "attach", "link up", "connect", "splice", "marry", "wed", "bond", "bind", "link", "draw"]}, {"answer": "tilted", "hint": "synonyms for tilted", "clues": ["angle", "careen", "tilt", "pitch", "cant over", "shift", "wobble", "cant", "lean", "tip", "slant", "tilted"]}, {"answer": "tinkling", "hint": "synonyms for tinkling", "clues": ["tinkle", "chink", "clink", "tink", "tinkling"]}, {"answer": "tipped", "hint": "synonyms for tipped", "clues": ["tumble", "topple", "angle", "tip off", "tilt", "tippytoe", "tap", "bung", "fee", "lean", "tip", "slant", "tipped"]}, {"answer": "tired", "hint": "synonyms for tired", "clues": ["wear", "tire out", "wear down", "jade", "tire", "outwear", "bore", "play out", "run down", "sap", "fag", "fag out", "pall", "exhaust", "wear upon", "wear out", "fatigue"]}, {"answer": "tiring", "hint": "synonyms for tiring", "clues": ["wear", "tire out", "wear down", "jade", "tire", "outwear", "bore", "play out", "run down", "sap", "fag", "fag out", "pall", "exhaust", "wear upon", "wear out", "fatigue", "tiring"]}, {"answer": "toasted", "hint": "synonyms for toasted", "clues": ["drink", "pledge", "toast", "salute", "wassail", "crispen", "crisp", "toasted"]}, {"answer": "togged", "hint": "synonyms for togged", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment", "togged"]}, {"answer": "toiling", "hint": "synonyms for toiling", "clues": ["labour", "fag", "drudge", "grind", "travail", "moil", "toil", "dig"]}, {"answer": "toned", "hint": "synonyms for toned", "clues": ["inflect", "chant", "strengthen", "intone", "tone", "tone up", "modulate"]}, {"answer": "top", "hint": "synonyms for top", "clues": ["top out", "pinch", "top off", "crown", "go past", "exceed", "lead", "transcend", "pass", "overstep", "clear", "top"]}, {"answer": "topped", "hint": "synonyms for topped", "clues": ["top out", "pinch", "top", "top off", "crown", "go past", "exceed", "lead", "transcend", "pass", "overstep", "clear", "topped"]}, {"answer": "topping", "hint": "synonyms for topping", "clues": ["top out", "pinch", "top", "top off", "crown", "go past", "exceed", "lead", "transcend", "pass", "overstep", "clear", "topping"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["top out", "pinch", "top", "top off", "crown", "go past", "exceed", "lead", "transcend", "pass", "overstep", "clear"]}, {"answer": "tormented", "hint": "synonyms for tormented", "clues": ["dun", "crucify", "rack", "torment", "bedevil", "frustrate", "rag", "torture", "excruciate"]}, {"answer": "torn", "hint": "synonyms for torn", "clues": ["pull", "buck", "snap", "pluck", "shoot", "deplume", "displume", "shoot down", "rupture", "bust", "charge", "tear", "torn"]}, {"answer": "tortured", "hint": "synonyms for tortured", "clues": ["torment", "rack", "torture", "excruciate"]}, {"answer": "torturing", "hint": "synonyms for torturing", "clues": ["torment", "rack", "torture", "excruciate", "torturing"]}, {"answer": "total", "hint": "synonyms for total", "clues": ["sum", "sum up", "summate", "add together", "number", "come", "tot", "tally", "tote up", "add up", "amount", "add", "total"]}, {"answer": "totaled", "hint": "synonyms for totaled", "clues": ["sum up", "add together", "tot", "add up", "amount", "add", "total", "sum", "summate", "number", "come", "tally", "tote up", "totaled"]}, {"answer": "tottering", "hint": "synonyms for tottering", "clues": ["seesaw", "teeter", "paddle", "totter", "coggle", "toddle", "waddle", "dodder"]}, {"answer": "touched", "hint": "synonyms for touched", "clues": ["touch on", "tint", "disturb", "partake", "extend to", "impact", "affect", "equal", "advert", "bear on", "adjoin", "relate", "rival", "allude", "pertain", "have-to doe with", "refer", "match", "touch", "meet", "tinge", "reach", "stir", "come to", "contact", "concern", "touched"]}, {"answer": "touching", "hint": "synonyms for touching", "clues": ["touch on", "tint", "disturb", "partake", "extend to", "impact", "affect", "equal", "advert", "bear on", "adjoin", "relate", "rival", "allude", "pertain", "have-to doe with", "refer", "match", "touch", "meet", "tinge", "reach", "stir", "come to", "contact", "concern"]}, {"answer": "towering", "hint": "synonyms for towering", "clues": ["loom", "predominate", "tower", "hulk"]}, {"answer": "tracked", "hint": "synonyms for tracked", "clues": ["cut through", "traverse", "cross", "tail", "get across", "tag", "chase after", "go after", "give chase", "dog", "chase", "cut across", "pass over", "cover", "get over", "track", "tracked"]}, {"answer": "trained", "hint": "synonyms for trained", "clues": ["cultivate", "civilize", "direct", "coach", "rail", "prepare", "discipline", "train", "aim", "develop", "condition", "take aim", "take", "groom", "educate", "school", "check", "trained"]}, {"answer": "tranquilizing", "hint": "synonyms for tranquilizing", "clues": ["still", "quieten", "tranquilize", "calm down", "lull", "sedate", "quiet", "calm", "tranquilizing"]}, {"answer": "tranquillising", "hint": "synonyms for tranquillising", "clues": ["still", "quieten", "tranquilize", "calm down", "lull", "sedate", "quiet", "calm", "tranquillising"]}, {"answer": "tranquillizing", "hint": "synonyms for tranquillizing", "clues": ["still", "quieten", "tranquilize", "calm down", "lull", "sedate", "quiet", "calm", "tranquillizing"]}, {"answer": "transfixed", "hint": "synonyms for transfixed", "clues": ["impale", "fascinate", "spike", "spellbind", "empale", "transfix", "grip"]}, {"answer": "transformed", "hint": "synonyms for transformed", "clues": ["translate", "transubstantiate", "metamorphose", "transform", "transmute"]}, {"answer": "transmitted", "hint": "synonyms for transmitted", "clues": ["transfer", "beam", "carry", "broadcast", "communicate", "send", "channel", "conduct", "air", "channelize", "transport", "transmit", "impart", "convey", "transmitted"]}, {"answer": "transposed", "hint": "synonyms for transposed", "clues": ["transfer", "interchange", "commute", "transpose", "counterchange", "permute", "transplant"]}, {"answer": "trapped", "hint": "synonyms for trapped", "clues": ["immobilize", "trammel", "pin down", "snare", "pin", "ensnare", "entrap", "trap", "trapped"]}, {"answer": "traveled", "hint": "synonyms for traveled", "clues": ["go", "move", "locomote", "journey", "trip", "jaunt", "travel", "move around"]}, {"answer": "travelled", "hint": "synonyms for travelled", "clues": ["go", "move", "locomote", "journey", "trip", "jaunt", "travel", "move around", "travelled"]}, {"answer": "treasured", "hint": "synonyms for treasured", "clues": ["appreciate", "cherish", "hold dear", "treasure", "value", "prize", "care for"]}, {"answer": "treated", "hint": "synonyms for treated", "clues": ["handle", "treat", "regale", "process", "deal", "address", "cover", "do by", "care for", "plow", "treated"]}, {"answer": "trespassing", "hint": "synonyms for trespassing", "clues": ["trespass", "sin", "transgress", "overstep", "intrude", "take advantage"]}, {"answer": "tried", "hint": "synonyms for tried", "clues": ["stress", "adjudicate", "hear", "test", "try out", "taste", "seek", "assay", "strain", "sample", "try on", "try", "prove", "render", "attempt", "essay", "judge", "examine", "tried"]}, {"answer": "trifling", "hint": "synonyms for trifling", "clues": ["play", "frivol", "trifle", "wanton away", "piddle", "wanton", "dally", "piddle away", "trifling"]}, {"answer": "trim", "hint": "synonyms for trim", "clues": ["clip", "reduce", "cut", "shave", "cut back", "pare", "garnish", "prune", "bring down", "cut down", "trim back", "trim down", "crop", "dress", "snip", "lop", "trim"]}, {"answer": "trimmed", "hint": "synonyms for trimmed", "clues": ["clip", "reduce", "cut back", "pare", "dress", "snip", "trim", "cut", "shave", "garnish", "prune", "bring down", "cut down", "trim back", "trim down", "crop", "lop", "trimmed"]}, {"answer": "tripping", "hint": "synonyms for tripping", "clues": ["trip up", "trigger off", "trigger", "set off", "trip out", "spark", "touch off", "activate", "actuate", "turn on", "trip", "jaunt", "spark off", "travel", "stumble", "tripping"]}, {"answer": "troubled", "hint": "synonyms for troubled", "clues": ["cark", "disturb", "put out", "distract", "bother", "disquiet", "trouble", "inconvenience", "trouble oneself", "unhinge", "upset", "incommode", "discommode", "inconvenience oneself", "pain", "perturb", "disoblige", "disorder", "ail"]}, {"answer": "troubling", "hint": "synonyms for troubling", "clues": ["cark", "disturb", "put out", "distract", "bother", "disquiet", "trouble", "inconvenience", "trouble oneself", "unhinge", "upset", "incommode", "discommode", "inconvenience oneself", "pain", "perturb", "disoblige", "disorder", "ail", "troubling"]}, {"answer": "trussed", "hint": "synonyms for trussed", "clues": ["tie down", "truss", "bind", "tie up", "trussed"]}, {"answer": "trusted", "hint": "synonyms for trusted", "clues": ["swear", "intrust", "commit", "believe", "hope", "rely", "trust", "confide", "bank", "desire", "trusted"]}, {"answer": "trusting", "hint": "synonyms for trusting", "clues": ["swear", "intrust", "commit", "believe", "hope", "rely", "trust", "confide", "bank", "desire"]}, {"answer": "trying", "hint": "synonyms for trying", "clues": ["stress", "adjudicate", "hear", "test", "try out", "taste", "seek", "assay", "strain", "sample", "try on", "try", "prove", "render", "attempt", "essay", "judge", "examine"]}, {"answer": "tucked", "hint": "synonyms for tucked", "clues": ["gather", "tuck", "insert", "pucker", "tucked"]}, {"answer": "turned", "hint": "synonyms for turned", "clues": ["grow", "call on", "work", "flex", "change by reversal", "sprain", "reverse", "deform", "bend", "ferment", "wrick", "twist", "plough", "turn over", "change state", "become", "sour", "wrench", "turn", "release", "move around", "plow", "turned"]}, {"answer": "twin", "hint": "synonyms for twin", "clues": ["duplicate", "parallel", "mate", "match", "couple", "pair", "twin"]}, {"answer": "twinkling", "hint": "synonyms for twinkling", "clues": ["scintillate", "winkle", "flash", "blink", "wink", "twinkling"]}, {"answer": "twinned", "hint": "synonyms for twinned", "clues": ["duplicate", "parallel", "mate", "couple", "match", "twin", "pair", "twinned"]}, {"answer": "twinning", "hint": "synonyms for twinning", "clues": ["duplicate", "parallel", "mate", "couple", "match", "twin", "pair", "twinning"]}, {"answer": "twisted", "hint": "synonyms for twisted", "clues": ["twist around", "flex", "squirm", "deform", "sprain", "bend", "distort", "sophisticate", "writhe", "convolute", "wrick", "wind", "pervert", "twist", "wrestle", "worm", "wrench", "turn", "wriggle", "curve", "twine", "twisted"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["twist around", "flex", "squirm", "deform", "sprain", "bend", "distort", "sophisticate", "writhe", "convolute", "wrick", "wind", "pervert", "twist", "wrestle", "worm", "wrench", "turn", "wriggle", "curve", "twine"]}, {"answer": "unbending", "hint": "synonyms for unbending", "clues": ["slow down", "relax", "unwind", "decompress", "loosen up", "unbend", "straighten"]}, {"answer": "unbent", "hint": "synonyms for unbent", "clues": ["slow down", "relax", "unwind", "decompress", "loosen up", "unbend", "straighten", "unbent"]}, {"answer": "unclad", "hint": "synonyms for unclad", "clues": ["uncase", "strip", "undress", "peel", "discase", "unclothe", "strip down", "disrobe", "unclad"]}, {"answer": "unclothed", "hint": "synonyms for unclothed", "clues": ["uncase", "strip", "undress", "peel", "discase", "unclothe", "strip down", "disrobe"]}, {"answer": "uncovered", "hint": "synonyms for uncovered", "clues": ["reveal", "bring out", "expose", "uncover", "unveil"]}, {"answer": "understanding", "hint": "synonyms for understanding", "clues": ["infer", "see", "realise", "interpret", "sympathize", "read", "translate", "empathize", "understand"]}, {"answer": "understood", "hint": "synonyms for understood", "clues": ["infer", "see", "realise", "interpret", "sympathize", "read", "translate", "empathize", "understand", "understood"]}, {"answer": "undone", "hint": "synonyms for undone", "clues": ["undo", "unwrap", "loosen", "unmake", "untie", "undone"]}, {"answer": "undressed", "hint": "synonyms for undressed", "clues": ["uncase", "strip", "undress", "peel", "divest", "discase", "disinvest", "unclothe", "strip down", "disrobe"]}, {"answer": "undulate", "hint": "synonyms for undulate", "clues": ["flap", "wave", "roll", "cockle", "riffle", "ripple", "ruffle", "undulate"]}, {"answer": "unfrozen", "hint": "synonyms for unfrozen", "clues": ["unthaw", "dethaw", "melt", "unfreeze", "thaw", "dissolve", "unblock", "release", "free", "unfrozen"]}, {"answer": "unhinged", "hint": "synonyms for unhinged", "clues": ["cark", "trouble", "unhinge", "disquiet", "perturb", "disorder", "distract"]}, {"answer": "unified", "hint": "synonyms for unified", "clues": ["commix", "unite", "unify", "mix", "amalgamate", "merge", "mingle", "unified"]}, {"answer": "unifying", "hint": "synonyms for unifying", "clues": ["commix", "unite", "unify", "mix", "amalgamate", "merge", "mingle"]}, {"answer": "united", "hint": "synonyms for united", "clues": ["unite", "unify", "link up", "connect", "link", "join", "merge", "combine"]}, {"answer": "unloaded", "hint": "synonyms for unloaded", "clues": ["unlade", "offload", "drop", "put down", "drop off", "set down", "unload", "discharge"]}, {"answer": "unnerved", "hint": "synonyms for unnerved", "clues": ["unnerve", "unsettle", "faze", "enervate"]}, {"answer": "unnerving", "hint": "synonyms for unnerving", "clues": ["unnerve", "unsettle", "faze", "enervate", "unnerving"]}, {"answer": "unsaid", "hint": "synonyms for unsaid", "clues": ["swallow", "unsay", "take back", "withdraw", "unsaid"]}, {"answer": "unsettled", "hint": "synonyms for unsettled", "clues": ["unnerve", "unsettle", "faze", "enervate"]}, {"answer": "unsexed", "hint": "synonyms for unsexed", "clues": ["unsex", "desex", "desexualise", "sterilize", "fix", "unsexed"]}, {"answer": "unstrained", "hint": "synonyms for unstrained", "clues": ["loosen up", "make relaxed", "relax", "unwind", "unlax", "unstrain"]}, {"answer": "untangled", "hint": "synonyms for untangled", "clues": ["unscramble", "unpick", "extricate", "unknot", "disencumber", "unravel", "untangle", "disentangle"]}, {"answer": "unthawed", "hint": "synonyms for unthawed", "clues": ["dethaw", "dissolve", "melt", "unthaw", "unfreeze", "thaw"]}, {"answer": "untied", "hint": "synonyms for untied", "clues": ["unlace", "undo", "loosen", "untie", "unbrace"]}, {"answer": "unveiled", "hint": "synonyms for unveiled", "clues": ["reveal", "bring out", "uncover", "unveil"]}, {"answer": "unwrapped", "hint": "synonyms for unwrapped", "clues": ["break", "unwrap", "expose", "give away", "let on", "undo", "reveal", "bring out", "disclose", "divulge", "discover", "let out", "unwrapped"]}, {"answer": "uplifted", "hint": "synonyms for uplifted", "clues": ["uplift", "elate", "lift up", "pick up", "intoxicate"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["discomfit", "untune", "trouble", "knock over", "disturb", "disconcert", "tump over", "turn over", "swage", "bowl over", "discompose", "tip over", "overturn", "upset"]}, {"answer": "upsetting", "hint": "synonyms for upsetting", "clues": ["discomfit", "untune", "trouble", "knock over", "disturb", "disconcert", "tump over", "turn over", "upset", "swage", "bowl over", "discompose", "tip over", "overturn", "upsetting"]}, {"answer": "used", "hint": "synonyms for used", "clues": ["employ", "habituate", "utilize", "expend", "practice", "apply", "use"]}, {"answer": "utilised", "hint": "synonyms for utilised", "clues": ["utilise", "employ", "apply", "use"]}, {"answer": "utilized", "hint": "synonyms for utilized", "clues": ["utilise", "employ", "apply", "use", "utilized"]}, {"answer": "utter", "hint": "synonyms for utter", "clues": ["express", "mouth", "give tongue to", "let loose", "verbalise", "emit", "talk", "let out", "speak", "utter"]}, {"answer": "uttered", "hint": "synonyms for uttered", "clues": ["express", "mouth", "give tongue to", "let loose", "verbalise", "emit", "talk", "utter", "let out", "speak", "uttered"]}, {"answer": "vacillating", "hint": "synonyms for vacillating", "clues": ["vacillate", "waver", "hover", "vibrate", "fluctuate", "oscillate", "vacillating"]}, {"answer": "vagabond", "hint": "synonyms for vagabond", "clues": ["stray", "range", "rove", "ramble", "swan", "wander", "drift", "roll", "tramp", "cast", "roam", "vagabond"]}, {"answer": "validating", "hint": "synonyms for validating", "clues": ["validate", "corroborate", "formalise", "validating"]}, {"answer": "valued", "hint": "synonyms for valued", "clues": ["appreciate", "rate", "evaluate", "prise", "measure", "respect", "value", "treasure", "esteem", "prize", "appraise", "assess"]}, {"answer": "vanished", "hint": "synonyms for vanished", "clues": ["disappear", "go away", "fell", "fly", "vanish", "vaporize"]}, {"answer": "vaporized", "hint": "synonyms for vaporized", "clues": ["zap", "fly", "aerify", "vanish", "evaporate", "gasify", "vaporise", "vaporized"]}, {"answer": "varied", "hint": "synonyms for varied", "clues": ["alter", "variegate", "change", "vary", "deviate", "depart", "motley", "diverge", "varied"]}, {"answer": "varying", "hint": "synonyms for varying", "clues": ["alter", "variegate", "change", "vary", "deviate", "depart", "motley", "diverge"]}, {"answer": "veiled", "hint": "synonyms for veiled", "clues": ["obscure", "veil", "hide", "blot out", "obliterate", "veiled"]}, {"answer": "venerating", "hint": "synonyms for venerating", "clues": ["venerate", "fear", "revere", "reverence", "venerating"]}, {"answer": "vented", "hint": "synonyms for vented", "clues": ["ventilate", "air out", "vent", "give vent", "air", "vented"]}, {"answer": "ventilated", "hint": "synonyms for ventilated", "clues": ["ventilate", "vent", "give vent", "air out", "air"]}, {"answer": "verbalised", "hint": "synonyms for verbalised", "clues": ["express", "mouth", "give tongue to", "verbalise", "talk", "utter", "speak"]}, {"answer": "verbalized", "hint": "synonyms for verbalized", "clues": ["express", "mouth", "give tongue to", "verbalise", "talk", "utter", "speak", "verbalized"]}, {"answer": "verified", "hint": "synonyms for verified", "clues": ["verify", "control", "avow", "aver", "swan", "affirm", "swear", "assert", "verified"]}, {"answer": "verifying", "hint": "synonyms for verifying", "clues": ["verify", "control", "avow", "aver", "swan", "affirm", "swear", "assert"]}, {"answer": "vested", "hint": "synonyms for vested", "clues": ["robe", "enthrone", "invest", "vest", "vested"]}, {"answer": "vexed", "hint": "synonyms for vexed", "clues": ["commove", "pose", "nark", "nonplus", "disturb", "dumbfound", "chafe", "rile", "annoy", "bother", "puzzle", "get to", "gravel", "vex", "rag", "agitate", "stupefy", "get at", "bewilder", "shake up", "nettle", "stick", "amaze", "mystify", "stir up", "raise up", "devil", "perplex", "beat", "irritate", "baffle", "flummox", "worry", "get", "vexed"]}, {"answer": "vexing", "hint": "synonyms for vexing", "clues": ["commove", "pose", "nark", "nonplus", "disturb", "dumbfound", "chafe", "rile", "annoy", "bother", "puzzle", "get to", "gravel", "vex", "rag", "agitate", "stupefy", "get at", "bewilder", "shake up", "nettle", "stick", "amaze", "mystify", "stir up", "raise up", "devil", "perplex", "beat", "irritate", "baffle", "flummox", "worry", "get"]}, {"answer": "victimized", "hint": "synonyms for victimized", "clues": ["mulct", "victimize", "bunco", "diddle", "hornswoggle", "short-change", "con", "swindle", "gip", "goldbrick", "scam", "defraud", "gyp", "nobble", "rook"]}, {"answer": "violated", "hint": "synonyms for violated", "clues": ["break", "despoil", "violate", "infract", "go against", "breach", "ravish", "dishonor", "offend", "assault", "rape", "spoil", "desecrate", "plunder", "profane", "transgress", "outrage"]}, {"answer": "visualised", "hint": "synonyms for visualised", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "project", "image", "visualised"]}, {"answer": "visualized", "hint": "synonyms for visualized", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "project", "image"]}, {"answer": "vitiated", "hint": "synonyms for vitiated", "clues": ["invalidate", "deprave", "pervert", "spoil", "corrupt", "mar", "demoralize", "vitiate", "void", "debauch", "impair", "misdirect", "profane", "subvert", "debase", "deflower"]}, {"answer": "void", "hint": "synonyms for void", "clues": ["invalidate", "vitiate", "empty", "evacuate", "avoid", "quash", "annul", "nullify"]}, {"answer": "wailing", "hint": "synonyms for wailing", "clues": ["yaup", "mewl", "yawl", "howl", "roar", "wail", "ululate", "pule", "whimper"]}, {"answer": "waiting", "hint": "synonyms for waiting", "clues": ["look", "waitress", "wait", "expect", "hold off", "hold back"]}, {"answer": "waking", "hint": "synonyms for waking", "clues": ["come alive", "inflame", "stir up", "rouse", "ignite", "fire up", "awake", "wake up", "heat", "waken", "waking"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["wallop", "wham", "whop", "whack"]}, {"answer": "wandering", "hint": "synonyms for wandering", "clues": ["betray", "cheat on", "ramble", "wander", "divagate", "drift", "roll", "tramp", "cheat", "cast", "meander", "stray", "range", "wind", "rove", "swan", "cuckold", "vagabond", "thread", "roam", "digress", "weave"]}, {"answer": "waning", "hint": "synonyms for waning", "clues": ["go down", "decline", "wane", "waning"]}, {"answer": "wanted", "hint": "synonyms for wanted", "clues": ["want", "need", "require", "desire", "wanted"]}, {"answer": "wanting", "hint": "synonyms for wanting", "clues": ["want", "need", "require", "desire"]}, {"answer": "wanton", "hint": "synonyms for wanton", "clues": ["luxuriate", "piddle", "trifle away", "trifle", "wanton away", "piddle away", "wanton"]}, {"answer": "warped", "hint": "synonyms for warped", "clues": ["distort", "falsify", "warp", "buckle", "garble", "heave", "warped"]}, {"answer": "washed", "hint": "synonyms for washed", "clues": ["lave", "moisten", "lap", "launder", "wash out", "rinse", "wash", "dampen", "wash off", "wash away", "washed"]}, {"answer": "waste", "hint": "synonyms for waste", "clues": ["neutralize", "devastate", "ravage", "macerate", "scourge", "languish", "pine away", "blow", "knock off", "emaciate", "lay waste to", "desolate", "rot", "squander", "run off", "ware", "do in", "consume", "liquidate", "waste"]}, {"answer": "wasted", "hint": "synonyms for wasted", "clues": ["neutralize", "devastate", "ravage", "macerate", "scourge", "languish", "pine away", "blow", "knock off", "emaciate", "lay waste to", "desolate", "rot", "squander", "run off", "ware", "do in", "consume", "waste", "liquidate"]}, {"answer": "wavering", "hint": "synonyms for wavering", "clues": ["vacillate", "flicker", "quaver", "flitter", "hesitate", "falter", "fluctuate", "waver", "waffle", "quiver", "weave"]}, {"answer": "waxed", "hint": "synonyms for waxed", "clues": ["rise", "wax", "full", "climb", "mount", "waxed"]}, {"answer": "waxing", "hint": "synonyms for waxing", "clues": ["rise", "wax", "full", "climb", "mount"]}, {"answer": "weakened", "hint": "synonyms for weakened", "clues": ["weaken", "counteract", "break", "soften", "countermine", "step down", "damp", "de-escalate", "sabotage", "undermine", "subvert", "dampen"]}, {"answer": "weakening", "hint": "synonyms for weakening", "clues": ["weaken", "counteract", "break", "soften", "countermine", "step down", "damp", "de-escalate", "sabotage", "undermine", "subvert", "dampen"]}, {"answer": "wearied", "hint": "synonyms for wearied", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "jade", "outwear", "tire", "pall", "wear upon", "wear out", "fatigue", "wearied"]}, {"answer": "wearing", "hint": "synonyms for wearing", "clues": ["wear", "break", "tire out", "hold out", "wear down", "jade", "put on", "outwear", "tire", "don", "fall apart", "fag", "fag out", "wear off", "fatigue", "bear", "wear upon", "wear out", "get into", "bust", "have on", "endure", "wear thin", "assume"]}, {"answer": "weary", "hint": "synonyms for weary", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "jade", "outwear", "tire", "pall", "wear upon", "wear out", "fatigue"]}, {"answer": "wearying", "hint": "synonyms for wearying", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "jade", "outwear", "tire", "pall", "wear upon", "wear out", "fatigue", "wearying"]}, {"answer": "weathered", "hint": "synonyms for weathered", "clues": ["weather", "brave out", "brave", "endure"]}, {"answer": "wed", "hint": "synonyms for wed", "clues": ["tie", "hook up with", "conjoin", "splice", "marry", "espouse", "get hitched with", "get married", "wed"]}, {"answer": "wedded", "hint": "synonyms for wedded", "clues": ["tie", "hook up with", "conjoin", "splice", "marry", "wed", "espouse", "get hitched with", "get married", "wedded"]}, {"answer": "wedged", "hint": "synonyms for wedged", "clues": ["squeeze", "deposit", "wedge", "force", "stick", "lodge"]}, {"answer": "wee", "hint": "synonyms for wee", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "wee"]}, {"answer": "weighted", "hint": "synonyms for weighted", "clues": ["angle", "burthen", "weight", "weight down", "burden", "slant"]}, {"answer": "whacked", "hint": "synonyms for whacked", "clues": ["whop", "whack", "wallop", "wham", "whacked"]}, {"answer": "whacking", "hint": "synonyms for whacking", "clues": ["whop", "whack", "wallop", "wham"]}, {"answer": "wheeled", "hint": "synonyms for wheeled", "clues": ["cycle", "roll", "pedal", "bicycle", "bike", "wheel", "wheel around", "wheeled"]}, {"answer": "whipping", "hint": "synonyms for whipping", "clues": ["lash", "flog", "whip", "lather", "rack up", "blister", "scald", "worst", "mop up", "welt", "pip", "strap", "whisk", "trounce", "whipping"]}, {"answer": "whirring", "hint": "synonyms for whirring", "clues": ["birr", "whiz", "whirr", "purr"]}, {"answer": "whitewashed", "hint": "synonyms for whitewashed", "clues": ["sleek over", "hush up", "whitewash", "gloss over"]}, {"answer": "whopping", "hint": "synonyms for whopping", "clues": ["wallop", "wham", "whop", "whap", "bonk", "bop", "bash", "sock", "whack", "whopping"]}, {"answer": "winded", "hint": "synonyms for winded", "clues": ["lift", "twine", "wind", "wrap", "twist", "wander", "scent", "wreathe", "roll", "hoist", "nose", "wind up", "thread", "curve", "weave", "meander", "winded"]}, {"answer": "winding", "hint": "synonyms for winding", "clues": ["lift", "twine", "wind", "wrap", "twist", "wander", "scent", "wreathe", "roll", "hoist", "nose", "wind up", "thread", "curve", "weave", "meander"]}, {"answer": "winking", "hint": "synonyms for winking", "clues": ["winkle", "blink away", "flash", "blink", "wink", "nictate"]}, {"answer": "winning", "hint": "synonyms for winning", "clues": ["bring home the bacon", "gain ground", "acquire", "make headway", "advance", "succeed", "gain", "pull ahead", "come through", "deliver the goods", "win", "get ahead", "winning"]}, {"answer": "wired", "hint": "synonyms for wired", "clues": ["cable", "telegraph", "wire", "electrify"]}, {"answer": "witching", "hint": "synonyms for witching", "clues": ["enchant", "hex", "witch", "glamour", "jinx", "bewitch"]}, {"answer": "withdrawn", "hint": "synonyms for withdrawn", "clues": ["swallow", "pull away", "call back", "bow out", "draw back", "draw off", "remove", "back out", "adjourn", "back away", "retire", "draw", "pull in one's horns", "pull back", "crawfish out", "withdraw", "disengage", "seclude", "take", "move back", "crawfish", "take away", "retreat", "take out", "recall", "sequestrate", "sequester", "call in", "recede", "unsay", "take back"]}, {"answer": "withered", "hint": "synonyms for withered", "clues": ["shrivel", "shrivel up", "fade", "wither", "shrink"]}, {"answer": "withering", "hint": "synonyms for withering", "clues": ["shrivel", "shrivel up", "fade", "wither", "shrink"]}, {"answer": "wobbling", "hint": "synonyms for wobbling", "clues": ["shimmy", "wobble", "careen", "coggle", "tilt", "shift", "wobbling"]}, {"answer": "won", "hint": "synonyms for won", "clues": ["bring home the bacon", "gain ground", "acquire", "make headway", "advance", "succeed", "gain", "pull ahead", "come through", "deliver the goods", "win", "get ahead", "won"]}, {"answer": "wondering", "hint": "synonyms for wondering", "clues": ["enquire", "question", "wonder", "marvel"]}, {"answer": "woolgathering", "hint": "synonyms for woolgathering", "clues": ["stargaze", "dream", "woolgather", "daydream"]}, {"answer": "working", "hint": "synonyms for working", "clues": ["go", "form", "make", "wreak", "work", "cultivate", "act upon", "process", "exercise", "play", "lick", "mould", "ferment", "work on", "put to work", "run", "influence", "function", "forge", "act", "work out", "exploit", "puzzle out", "bring", "operate", "crop", "knead", "do work", "solve", "sour", "shape", "turn", "figure out", "make for"]}, {"answer": "worn", "hint": "synonyms for worn", "clues": ["wear", "break", "tire out", "hold out", "wear down", "jade", "put on", "outwear", "tire", "don", "fall apart", "fag", "fag out", "wear off", "fatigue", "bear", "wear upon", "wear out", "get into", "bust", "have on", "endure", "wear thin", "assume", "worn"]}, {"answer": "worried", "hint": "synonyms for worried", "clues": ["occupy", "vex", "interest", "worry", "concern", "care", "worried"]}, {"answer": "worrying", "hint": "synonyms for worrying", "clues": ["occupy", "vex", "interest", "worry", "concern", "care"]}, {"answer": "worsened", "hint": "synonyms for worsened", "clues": ["exasperate", "worsen", "exacerbate", "aggravate", "decline"]}, {"answer": "worsening", "hint": "synonyms for worsening", "clues": ["exasperate", "worsen", "exacerbate", "aggravate", "decline"]}, {"answer": "worshipped", "hint": "synonyms for worshipped", "clues": ["idolise", "worship", "hero-worship", "revere", "worshipped"]}, {"answer": "worst", "hint": "synonyms for worst", "clues": ["rack up", "whip", "mop up", "pip", "worst"]}, {"answer": "wound", "hint": "synonyms for wound", "clues": ["spite", "wrap", "wander", "wreathe", "roll", "bruise", "injure", "hoist", "wind up", "meander", "offend", "hurt", "lift", "wind", "twist", "scent", "nose", "thread", "curve", "weave", "twine", "wound"]}, {"answer": "wounded", "hint": "synonyms for wounded", "clues": ["spite", "hurt", "offend", "wound", "bruise", "injure", "wounded"]}, {"answer": "wounding", "hint": "synonyms for wounding", "clues": ["spite", "hurt", "offend", "wound", "bruise", "injure"]}, {"answer": "woven", "hint": "synonyms for woven", "clues": ["tissue", "wind", "wander", "interweave", "waver", "thread", "weave", "meander", "woven"]}, {"answer": "wrapped", "hint": "synonyms for wrapped", "clues": ["wrap", "wind", "enclose", "enwrap", "roll", "enfold", "wrap up", "envelop", "twine", "wrapped"]}, {"answer": "wrenching", "hint": "synonyms for wrenching", "clues": ["wrick", "twist", "wring", "sprain", "wrench", "turn"]}, {"answer": "wriggling", "hint": "synonyms for wriggling", "clues": ["writhe", "twist", "wriggle", "wrestle", "squirm", "worm", "wriggling"]}, {"answer": "wrinkled", "hint": "synonyms for wrinkled", "clues": ["scrunch", "rumple", "ruckle", "crisp", "crinkle", "furrow", "purse", "crease", "scrunch up", "wrinkled"]}, {"answer": "writhed", "hint": "synonyms for writhed", "clues": ["writhe", "twist", "wriggle", "wrestle", "squirm", "worm"]}, {"answer": "writhing", "hint": "synonyms for writhing", "clues": ["writhe", "twist", "wriggle", "wrestle", "squirm", "worm", "writhing"]}, {"answer": "written", "hint": "synonyms for written", "clues": ["drop a line", "write", "compose", "indite", "pen", "publish", "save", "spell", "written"]}, {"answer": "wrought", "hint": "synonyms for wrought", "clues": ["go", "form", "make", "wreak", "work", "cultivate", "act upon", "process", "exercise", "play", "lick", "mould", "ferment", "work on", "put to work", "run", "influence", "function", "forge", "act", "work out", "exploit", "puzzle out", "bring", "operate", "crop", "knead", "do work", "solve", "sour", "shape", "turn", "figure out", "make for", "wrought"]}, {"answer": "yelled", "hint": "synonyms for yelled", "clues": ["hollo", "yell", "call", "scream", "cry", "squall", "shout out", "shout", "holler", "yelled"]}, {"answer": "yielding", "hint": "synonyms for yielding", "clues": ["move over", "concede", "give", "yield", "generate", "pay", "grant", "soften", "cede", "succumb", "return", "buckle under", "render", "give in", "relent", "bear", "give way", "ease up", "afford"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "slam", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "spang", "have sex", "sleep together", "bang"]}, {"answer": "boiling", "hint": "synonyms for boiling", "clues": ["churn", "seethe", "boil", "moil", "roil"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["decamp", "make off", "run off", "absquatulate", "bolt out", "gobble", "abscond", "beetle off", "go off", "run out", "bolt"]}, {"answer": "close_up", "hint": "synonyms for close up", "clues": ["obturate", "occlude", "clam up", "close", "block", "button up", "keep mum", "impede", "obstruct", "close down", "shut down", "jam", "belt up", "be quiet", "shut up", "fold", "dummy up", "close up"]}, {"answer": "con", "hint": "synonyms for con", "clues": ["swindle", "gip", "memorize", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "learn", "short-change", "con"]}, {"answer": "disregarding", "hint": "synonyms for disregarding", "clues": ["push aside", "cut", "discount", "brush off", "dismiss", "ignore", "snub", "disregard", "neglect"]}, {"answer": "hotfoot", "hint": "synonyms for hotfoot", "clues": ["step on it", "pelt along", "hie", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "hasten", "hotfoot"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish out"]}, {"answer": "multiply", "hint": "synonyms for multiply", "clues": ["reproduce", "procreate", "manifold", "breed", "multiply"]}, {"answer": "needs", "hint": "synonyms for needs", "clues": ["ask", "necessitate", "need", "involve", "take", "postulate", "require", "call for", "want", "demand"]}, {"answer": "part", "hint": "synonyms for part", "clues": ["break", "break up", "take off", "split", "set out", "start out", "split up", "separate", "set forth", "set off", "start", "divide", "disunite", "depart", "part"]}, {"answer": "piping", "hint": "synonyms for piping", "clues": ["pipe", "whip", "shoot", "rack up", "pipe up", "hit", "worst", "mop up", "shriek", "shrill", "piping"]}, {"answer": "pitter-patter", "hint": "synonyms for pitter-patter", "clues": ["spatter", "spit", "sprinkle", "pitter-patter"]}, {"answer": "plop", "hint": "synonyms for plop", "clues": ["plump", "flump", "plump down", "plonk", "plunk", "plunk down", "plank", "plop"]}, {"answer": "plunk", "hint": "synonyms for plunk", "clues": ["plump", "pluck", "pick", "plank", "plonk", "dive", "clunk", "flump", "plop", "clop", "plump down", "plunk down", "plunge", "clump", "plunk"]}, {"answer": "raving", "hint": "synonyms for raving", "clues": ["rave", "mouth off", "jabber", "rabbit on", "rant", "spout", "gush", "raving"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["smell", "thwack", "peck", "reek", "taste", "smack"]}, {"answer": "smash", "hint": "synonyms for smash", "clues": ["break", "blast", "smash up", "crush", "demolish", "dash", "boom", "bang up", "nail", "ruin", "bankrupt", "smash"]}, {"answer": "soaking", "hint": "synonyms for soaking", "clues": ["pluck", "fleece", "dowse", "douse", "plume", "rob", "hit it up", "surcharge", "sop", "drench", "imbue", "hock", "overcharge", "souse", "pawn", "soak", "gazump", "hook", "inebriate", "intoxicate"]}, {"answer": "sopping", "hint": "synonyms for sopping", "clues": ["dowse", "souse", "douse", "soak through", "soak", "sop", "drench", "sopping"]}, {"answer": "abandon", "hint": "synonyms for abandon", "clues": ["vacate", "empty", "desert", "desolate", "give up", "forsake", "abandon"]}, {"answer": "abies", "hint": "synonyms for abies", "clues": ["abye", "expiate", "atone", "abies"]}, {"answer": "abode", "hint": "synonyms for abode", "clues": ["support", "bide", "stomach", "put up", "stay", "bear", "tolerate", "brook", "digest", "stand", "endure", "stick out", "suffer", "abode"]}, {"answer": "abuse", "hint": "synonyms for abuse", "clues": ["step", "misuse", "pervert", "maltreat", "blackguard", "clapperclaw", "ill-use", "ill-treat", "mistreat", "shout", "abuse"]}, {"answer": "abyss", "hint": "synonyms for abyss", "clues": ["abye", "expiate", "atone", "abyss"]}, {"answer": "accent", "hint": "synonyms for accent", "clues": ["stress", "punctuate", "emphasise", "accentuate", "accent"]}, {"answer": "accenting", "hint": "synonyms for accenting", "clues": ["accent", "stress", "accentuate", "emphasise", "punctuate"]}, {"answer": "acclaim", "hint": "synonyms for acclaim", "clues": ["spat", "hail", "clap", "herald", "applaud", "acclaim"]}, {"answer": "accord", "hint": "synonyms for accord", "clues": ["concord", "consort", "harmonize", "fit in", "allot", "agree", "grant", "accord"]}, {"answer": "account", "hint": "synonyms for account", "clues": ["answer for", "describe", "report", "calculate", "account"]}, {"answer": "accounting", "hint": "synonyms for accounting", "clues": ["describe", "answer for", "report", "account", "calculate"]}, {"answer": "accused", "hint": "synonyms for accused", "clues": ["accuse", "criminate", "charge", "impeach"]}, {"answer": "ache", "hint": "synonyms for ache", "clues": ["languish", "hurt", "yearn", "smart", "pine", "yen", "suffer", "ache"]}, {"answer": "acquiring", "hint": "synonyms for acquiring", "clues": ["win", "grow", "take", "acquire", "adopt", "learn", "evolve", "gain", "take on", "produce", "develop", "get", "assume", "acquiring"]}, {"answer": "act", "hint": "synonyms for act", "clues": ["do", "pretend", "represent", "act as", "work", "move", "play", "roleplay", "behave", "dissemble", "playact", "act"]}, {"answer": "action", "hint": "synonyms for action", "clues": ["fulfill", "litigate", "process", "carry out", "carry through", "execute", "accomplish", "sue", "action"]}, {"answer": "acts", "hint": "synonyms for acts", "clues": ["do", "pretend", "represent", "act as", "work", "move", "play", "act", "roleplay", "behave", "dissemble", "playact"]}, {"answer": "add", "hint": "synonyms for add", "clues": ["sum up", "add together", "contribute", "tot", "supply", "add up", "total", "sum", "lend", "summate", "bestow", "tally", "bring", "tote up", "impart", "append", "add"]}, {"answer": "address", "hint": "synonyms for address", "clues": ["handle", "call", "direct", "treat", "deal", "plow", "cover", "turn to", "come up to", "speak", "accost", "address"]}, {"answer": "adventure", "hint": "synonyms for adventure", "clues": ["risk", "hazard", "jeopardize", "stake", "gamble", "take a chance", "run a risk", "venture", "chance"]}, {"answer": "adventuress", "hint": "synonyms for adventuress", "clues": ["risk", "hazard", "jeopardize", "stake", "gamble", "take a chance", "run a risk", "adventure", "chance"]}, {"answer": "advert", "hint": "synonyms for advert", "clues": ["mention", "name", "allude", "bring up", "touch", "attend", "give ear", "hang", "cite", "refer", "pay heed", "advert"]}, {"answer": "advertising", "hint": "synonyms for advertising", "clues": ["promote", "publicise", "push", "advertize", "advertising"]}, {"answer": "advertizing", "hint": "synonyms for advertizing", "clues": ["promote", "publicise", "push", "advertize", "advertizing"]}, {"answer": "affect", "hint": "synonyms for affect", "clues": ["touch on", "regard", "bear upon", "pretend", "involve", "strike", "move", "feign", "impact", "touch", "dissemble", "impress", "sham", "affect"]}, {"answer": "affirmed", "hint": "synonyms for affirmed", "clues": ["support", "avow", "verify", "aver", "swan", "affirm", "confirm", "corroborate", "substantiate", "swear", "sustain", "assert"]}, {"answer": "affix", "hint": "synonyms for affix", "clues": ["append", "add on", "supplement", "stick on", "affix"]}, {"answer": "age", "hint": "synonyms for age", "clues": ["maturate", "get on", "senesce", "age"]}, {"answer": "aim", "hint": "synonyms for aim", "clues": ["take aim", "take", "direct", "purpose", "target", "aspire", "train", "drive", "shoot for", "draw a bead on", "place", "point", "get", "purport", "calculate", "aim"]}, {"answer": "air", "hint": "synonyms for air", "clues": ["vent", "publicise", "aerate", "beam", "bare", "air out", "broadcast", "send", "ventilate", "transmit", "air"]}, {"answer": "airing", "hint": "synonyms for airing", "clues": ["vent", "publicise", "aerate", "beam", "bare", "air out", "broadcast", "send", "ventilate", "transmit", "air"]}, {"answer": "airs", "hint": "synonyms for airs", "clues": ["vent", "publicise", "aerate", "beam", "bare", "air out", "broadcast", "send", "ventilate", "transmit", "air"]}, {"answer": "alarm", "hint": "synonyms for alarm", "clues": ["alert", "dismay", "appall", "horrify", "alarm"]}, {"answer": "altering", "hint": "synonyms for altering", "clues": ["alter", "change", "vary", "spay", "castrate", "neuter", "falsify", "interpolate", "modify"]}, {"answer": "am", "hint": "synonyms for am", "clues": ["comprise", "represent", "follow", "cost", "embody", "live", "equal", "be", "make up", "personify", "exist", "constitute", "am"]}, {"answer": "ambuscade", "hint": "synonyms for ambuscade", "clues": ["ambush", "lurk", "scupper", "lie in wait", "waylay", "bushwhack", "ambuscade"]}, {"answer": "ambush", "hint": "synonyms for ambush", "clues": ["scupper", "lurk", "ambuscade", "lie in wait", "waylay", "bushwhack", "still-hunt", "ambush"]}, {"answer": "amends", "hint": "synonyms for amends", "clues": ["improve", "rectify", "amend", "better", "remediate", "repair", "remedy", "ameliorate"]}, {"answer": "amount", "hint": "synonyms for amount", "clues": ["total", "add up", "number", "come", "amount"]}, {"answer": "angle", "hint": "synonyms for angle", "clues": ["fish", "weight", "tilt", "lean", "tip", "slant", "angle"]}, {"answer": "angling", "hint": "synonyms for angling", "clues": ["angle", "weight", "tilt", "fish", "lean", "tip", "slant", "angling"]}, {"answer": "annotating", "hint": "synonyms for annotating", "clues": ["footnote", "annotate", "gloss", "comment", "annotating"]}, {"answer": "anointing", "hint": "synonyms for anointing", "clues": ["oil", "inunct", "anoint", "embrocate", "anele"]}, {"answer": "answer", "hint": "synonyms for answer", "clues": ["do", "resolve", "suffice", "reply", "serve", "respond", "answer"]}, {"answer": "apparel", "hint": "synonyms for apparel", "clues": ["garment", "clothe", "tog", "garb", "habilitate", "fit out", "dress", "raiment", "apparel"]}, {"answer": "appearing", "hint": "synonyms for appearing", "clues": ["look", "appear", "seem", "come out", "come along"]}, {"answer": "apportioning", "hint": "synonyms for apportioning", "clues": ["apportion", "allocate", "portion out", "deal", "divvy up", "share"]}, {"answer": "approach", "hint": "synonyms for approach", "clues": ["draw near", "border on", "near", "go up", "come on", "come near", "set about", "go about", "draw close", "approach"]}, {"answer": "are", "hint": "synonyms for are", "clues": ["comprise", "represent", "follow", "cost", "embody", "live", "equal", "be", "make up", "personify", "exist", "constitute", "are"]}, {"answer": "arguing", "hint": "synonyms for arguing", "clues": ["indicate", "fence", "contend", "reason", "argue", "debate", "arguing"]}, {"answer": "arming", "hint": "synonyms for arming", "clues": ["build up", "gird", "fortify", "arm"]}, {"answer": "arms", "hint": "synonyms for arms", "clues": ["build up", "gird", "fortify", "arm"]}, {"answer": "arranging", "hint": "synonyms for arranging", "clues": ["do", "coif", "fix up", "coiffure", "set up", "set", "put", "format", "arrange", "order", "dress", "stage", "arranging"]}, {"answer": "array", "hint": "synonyms for array", "clues": ["align", "range", "set out", "lay out", "array"]}, {"answer": "arrest", "hint": "synonyms for arrest", "clues": ["turn back", "halt", "get", "collar", "stop", "hold back", "hold", "catch", "pick up", "contain", "cop", "nail", "apprehend", "nab", "check", "arrest"]}, {"answer": "asking", "hint": "synonyms for asking", "clues": ["enquire", "ask", "necessitate", "need", "involve", "take", "postulate", "call for", "demand", "expect"]}, {"answer": "assault", "hint": "synonyms for assault", "clues": ["assail", "attack", "set on", "rape", "dishonor", "snipe", "round", "ravish", "violate", "lash out", "outrage", "assault"]}, {"answer": "assay", "hint": "synonyms for assay", "clues": ["seek", "essay", "attempt", "try", "assay"]}, {"answer": "assembling", "hint": "synonyms for assembling", "clues": ["forgather", "set up", "get together", "put together", "tack", "tack together", "gather", "meet", "assemble", "piece", "assembling"]}, {"answer": "assigning", "hint": "synonyms for assigning", "clues": ["depute", "allot", "specify", "set apart", "arrogate", "delegate", "designate", "assign", "put", "portion", "impute", "attribute", "ascribe"]}, {"answer": "assist", "hint": "synonyms for assist", "clues": ["aid", "attend to", "attend", "serve", "wait on", "help", "assist"]}, {"answer": "ate", "hint": "synonyms for ate", "clues": ["corrode", "rust", "feed", "wipe out", "eat on", "eat", "exhaust", "run through", "deplete", "eat up", "consume", "use up", "ate"]}, {"answer": "attack", "hint": "synonyms for attack", "clues": ["assail", "assault", "set on", "round", "lash out", "aggress", "snipe", "attack"]}, {"answer": "attempt", "hint": "synonyms for attempt", "clues": ["set about", "seek", "essay", "assay", "undertake", "try", "attempt"]}, {"answer": "attending", "hint": "synonyms for attending", "clues": ["look", "see", "serve", "wait on", "attend", "give ear", "attend to", "take care", "assist", "hang", "advert", "go to", "pay heed"]}, {"answer": "attire", "hint": "synonyms for attire", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "attire"]}, {"answer": "augur", "hint": "synonyms for augur", "clues": ["bode", "omen", "foretell", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "augur"]}, {"answer": "averting", "hint": "synonyms for averting", "clues": ["fend off", "obviate", "avert", "turn away", "head off", "debar", "forefend", "ward off", "stave off", "avoid", "deflect"]}, {"answer": "awakening", "hint": "synonyms for awakening", "clues": ["come alive", "rouse", "awake", "wake up", "waken", "awakening"]}, {"answer": "babble", "hint": "synonyms for babble", "clues": ["burble", "blab", "blither", "gurgle", "spill the beans", "bubble", "ripple", "tattle", "peach", "guggle", "babble out", "smatter", "talk", "blab out", "let the cat out of the bag", "sing", "babble"]}, {"answer": "babbling", "hint": "synonyms for babbling", "clues": ["gurgle", "bubble", "tattle", "blather", "babble out", "babble", "smatter", "talk", "spill the beans", "blab out", "sing", "burble", "ripple", "peach", "guggle", "blab", "let the cat out of the bag", "babbling"]}, {"answer": "baby", "hint": "synonyms for baby", "clues": ["featherbed", "spoil", "pamper", "indulge", "mollycoddle", "cosset", "cocker", "coddle", "baby"]}, {"answer": "backing", "hint": "synonyms for backing", "clues": ["support", "plump for", "indorse", "gage", "game", "stake", "bet on", "back up", "punt", "back", "second", "plunk for"]}, {"answer": "bade", "hint": "synonyms for bade", "clues": ["conjure", "offer", "entreat", "tender", "beseech", "call", "adjure", "press", "wish", "invite", "bid", "bade"]}, {"answer": "badger", "hint": "synonyms for badger", "clues": ["beleaguer", "pester", "tease", "bug", "badger"]}, {"answer": "badgering", "hint": "synonyms for badgering", "clues": ["beleaguer", "tease", "pester", "badger", "bug"]}, {"answer": "baffle", "hint": "synonyms for baffle", "clues": ["pose", "nonplus", "scotch", "dumbfound", "cross", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "thwart", "mystify", "spoil", "queer", "perplex", "beat", "frustrate", "bilk", "regulate", "foil", "flummox", "get", "baffle"]}, {"answer": "bait", "hint": "synonyms for bait", "clues": ["cod", "twit", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz", "bait"]}, {"answer": "baiting", "hint": "synonyms for baiting", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz"]}, {"answer": "balance", "hint": "synonyms for balance", "clues": ["equilibrate", "equilibrize", "poise", "balance"]}, {"answer": "balancing", "hint": "synonyms for balancing", "clues": ["equilibrize", "balance", "poise", "equilibrate", "balancing"]}, {"answer": "ban", "hint": "synonyms for ban", "clues": ["shun", "censor", "ostracize", "banish", "blackball", "cast out", "ban"]}, {"answer": "bank", "hint": "synonyms for bank", "clues": ["rely", "swear", "trust", "deposit", "bank"]}, {"answer": "banking", "hint": "synonyms for banking", "clues": ["swear", "deposit", "trust", "bank", "rely"]}, {"answer": "banks", "hint": "synonyms for banks", "clues": ["swear", "deposit", "trust", "bank", "rely"]}, {"answer": "banning", "hint": "synonyms for banning", "clues": ["cast out", "shun", "censor", "ostracize", "banish", "blackball", "ban", "banning"]}, {"answer": "banter", "hint": "synonyms for banter", "clues": ["chaff", "jolly", "josh", "kid", "banter"]}, {"answer": "bar", "hint": "synonyms for bar", "clues": ["blockade", "block off", "block", "debar", "block up", "stop", "relegate", "banish", "barricade", "exclude", "bar"]}, {"answer": "barf", "hint": "synonyms for barf", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "spue", "vomit up", "spew", "sick", "barf"]}, {"answer": "baring", "hint": "synonyms for baring", "clues": ["denude", "publicise", "strip", "bare", "debar", "block up", "exclude", "air", "blockade", "block off", "block", "stop", "relegate", "banish", "barricade", "baring"]}, {"answer": "barrack", "hint": "synonyms for barrack", "clues": ["jeer", "urge", "pep up", "exhort", "flout", "inspire", "root on", "gibe", "cheer", "urge on", "scoff", "barrack"]}, {"answer": "barracking", "hint": "synonyms for barracking", "clues": ["jeer", "barrack", "urge", "pep up", "exhort", "flout", "inspire", "root on", "gibe", "cheer", "urge on", "scoff"]}, {"answer": "barricade", "hint": "synonyms for barricade", "clues": ["blockade", "barricado", "block off", "block", "bar", "block up", "stop"]}, {"answer": "barring", "hint": "synonyms for barring", "clues": ["blockade", "block off", "block", "debar", "bar", "block up", "stop", "relegate", "banish", "barricade", "exclude", "barring"]}, {"answer": "bars", "hint": "synonyms for bars", "clues": ["blockade", "block off", "block", "debar", "bar", "block up", "stop", "relegate", "banish", "barricade", "exclude"]}, {"answer": "bash", "hint": "synonyms for bash", "clues": ["bonk", "sock", "whop", "whap", "bop", "bash"]}, {"answer": "basting", "hint": "synonyms for basting", "clues": ["tack", "batter", "baste", "clobber", "basting"]}, {"answer": "bat", "hint": "synonyms for bat", "clues": ["drub", "thrash", "lick", "clobber", "cream", "flutter", "bat"]}, {"answer": "batter", "hint": "synonyms for batter", "clues": ["dinge", "buffet", "knock about", "baste", "clobber", "batter"]}, {"answer": "battering", "hint": "synonyms for battering", "clues": ["dinge", "knock about", "clobber", "batter", "baste", "buffet"]}, {"answer": "batting", "hint": "synonyms for batting", "clues": ["bat", "thrash", "lick", "flutter", "clobber", "drub", "cream", "batting"]}, {"answer": "be", "hint": "synonyms for be", "clues": ["comprise", "represent", "follow", "cost", "embody", "live", "equal", "make up", "personify", "exist", "constitute", "be"]}, {"answer": "beam", "hint": "synonyms for beam", "clues": ["radiate", "transmit", "broadcast", "send", "glow", "shine", "air", "beam"]}, {"answer": "bear", "hint": "synonyms for bear", "clues": ["wear", "deport", "deliver", "give birth", "carry", "put up", "abide", "accept", "hold", "acquit", "expect", "yield", "turn out", "pay", "suffer", "support", "birth", "take over", "stomach", "have a bun in the oven", "behave", "comport", "gestate", "conduct", "tolerate", "brook", "digest", "contain", "stand", "have", "endure", "stick out", "assume", "bear"]}, {"answer": "beating", "hint": "synonyms for beating", "clues": ["pose", "wash up", "drum", "dumbfound", "flummox", "bunk", "puzzle", "vex", "gravel", "stupefy", "beat out", "bewilder", "outfox", "ticktock", "thrum", "baffle", "tucker out", "circumvent", "overreach", "scramble", "vanquish", "nonplus", "pound", "flap", "thump", "beat up", "work over", "pulsate", "stick", "outwit", "amaze", "mystify", "crush", "tucker", "perplex", "beat", "exhaust", "outsmart", "quiver", "shell", "get", "trounce"]}, {"answer": "beats", "hint": "synonyms for beats", "clues": ["pose", "wash up", "drum", "dumbfound", "flummox", "bunk", "puzzle", "vex", "gravel", "stupefy", "beat out", "bewilder", "outfox", "ticktock", "thrum", "baffle", "tucker out", "circumvent", "overreach", "scramble", "vanquish", "nonplus", "pound", "flap", "thump", "beat up", "work over", "pulsate", "stick", "outwit", "amaze", "mystify", "crush", "tucker", "perplex", "beat", "exhaust", "outsmart", "quiver", "shell", "get", "trounce"]}, {"answer": "bed", "hint": "synonyms for bed", "clues": ["sleep with", "get laid", "get it on", "bonk", "kip down", "have a go at it", "make love", "roll in the hay", "retire", "have it away", "fuck", "make out", "lie with", "go to bed", "crawl in", "love", "be intimate", "hit the sack", "have it off", "have intercourse", "go to sleep", "screw", "know", "jazz", "sack out", "hump", "turn in", "eff", "do it", "bang", "hit the hay", "have sex", "sleep together", "bed"]}, {"answer": "bedding", "hint": "synonyms for bedding", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "kip down", "have a go at it", "make love", "roll in the hay", "retire", "have it away", "fuck", "make out", "lie with", "go to bed", "crawl in", "love", "be intimate", "hit the sack", "have it off", "have intercourse", "go to sleep", "screw", "know", "jazz", "sack out", "hump", "turn in", "eff", "do it", "bang", "hit the hay", "have sex", "sleep together", "bedding"]}, {"answer": "beef", "hint": "synonyms for beef", "clues": ["squawk", "bitch", "grouse", "bellyache", "crab", "holler", "gripe", "beef"]}, {"answer": "beep", "hint": "synonyms for beep", "clues": ["claxon", "toot", "honk", "blare", "beep"]}, {"answer": "befooling", "hint": "synonyms for befooling", "clues": ["put one across", "cod", "befool", "slang", "put one over", "gull", "fool", "dupe", "take in", "put on"]}, {"answer": "begging", "hint": "synonyms for begging", "clues": ["beg", "pray", "solicit", "implore", "tap", "begging"]}, {"answer": "begin", "hint": "synonyms for begin", "clues": ["set out", "start out", "start", "lead off", "commence", "get", "get down", "begin"]}, {"answer": "being", "hint": "synonyms for being", "clues": ["comprise", "represent", "follow", "cost", "embody", "live", "equal", "be", "make up", "personify", "exist", "constitute"]}, {"answer": "belch", "hint": "synonyms for belch", "clues": ["burp", "bubble", "erupt", "eruct", "extravasate", "belch"]}, {"answer": "belching", "hint": "synonyms for belching", "clues": ["belch", "burp", "bubble", "erupt", "eruct", "extravasate"]}, {"answer": "beleaguering", "hint": "synonyms for beleaguering", "clues": ["beleaguer", "besiege", "pester", "tease", "hem in", "circumvent", "surround", "badger", "bug"]}, {"answer": "believing", "hint": "synonyms for believing", "clues": ["consider", "trust", "conceive", "believe", "think", "believing"]}, {"answer": "bellyache", "hint": "synonyms for bellyache", "clues": ["squawk", "beef", "bitch", "grouse", "crab", "holler", "gripe", "bellyache"]}, {"answer": "bend", "hint": "synonyms for bend", "clues": ["turn away", "flex", "twist", "stoop", "bow", "deform", "crouch", "turn", "deflect", "bend"]}, {"answer": "bending", "hint": "synonyms for bending", "clues": ["turn away", "flex", "twist", "deform", "stoop", "bend", "bow", "crouch", "turn", "deflect"]}, {"answer": "bends", "hint": "synonyms for bends", "clues": ["turn away", "flex", "twist", "deform", "stoop", "bend", "bow", "crouch", "turn", "deflect"]}, {"answer": "berating", "hint": "synonyms for berating", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "berating"]}, {"answer": "besieging", "hint": "synonyms for besieging", "clues": ["beleaguer", "hem in", "circumvent", "besiege", "surround", "besieging"]}, {"answer": "bet", "hint": "synonyms for bet", "clues": ["look", "reckon", "calculate", "wager", "depend", "count", "play", "bet"]}, {"answer": "bicker", "hint": "synonyms for bicker", "clues": ["squabble", "pettifog", "quibble", "brabble", "niggle", "bicker"]}, {"answer": "bickering", "hint": "synonyms for bickering", "clues": ["squabble", "pettifog", "quibble", "brabble", "niggle", "bicker"]}, {"answer": "bicycle", "hint": "synonyms for bicycle", "clues": ["bike", "wheel", "pedal", "cycle", "bicycle"]}, {"answer": "bicycling", "hint": "synonyms for bicycling", "clues": ["bike", "wheel", "cycle", "pedal", "bicycle", "bicycling"]}, {"answer": "bid", "hint": "synonyms for bid", "clues": ["conjure", "offer", "entreat", "tender", "beseech", "call", "adjure", "press", "wish", "invite", "bid"]}, {"answer": "bidding", "hint": "synonyms for bidding", "clues": ["conjure", "offer", "entreat", "tender", "beseech", "call", "adjure", "press", "wish", "invite", "bid", "bidding"]}, {"answer": "bike", "hint": "synonyms for bike", "clues": ["wheel", "cycle", "pedal", "bicycle", "bike"]}, {"answer": "billow", "hint": "synonyms for billow", "clues": ["surge", "balloon", "inflate", "heave", "wallow", "billow"]}, {"answer": "bind", "hint": "synonyms for bind", "clues": ["tie", "stick to", "attach", "oblige", "tie down", "bond", "adhere", "constipate", "hold", "hold fast", "tie up", "truss", "stick", "bandage", "bind"]}, {"answer": "binge", "hint": "synonyms for binge", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "satiate", "stuff", "scarf out", "overgorge", "glut", "englut", "gorge", "binge"]}, {"answer": "birling", "hint": "synonyms for birling", "clues": ["whirl", "birl", "spin", "twirl"]}, {"answer": "birr", "hint": "synonyms for birr", "clues": ["whiz", "whirr", "purr", "birr"]}, {"answer": "birth", "hint": "synonyms for birth", "clues": ["give birth", "have", "bear", "deliver", "birth"]}, {"answer": "birthing", "hint": "synonyms for birthing", "clues": ["deliver", "bear", "give birth", "have", "birth"]}, {"answer": "bit", "hint": "synonyms for bit", "clues": ["seize with teeth", "burn", "sting", "bite", "prick"]}, {"answer": "bitch", "hint": "synonyms for bitch", "clues": ["squawk", "beef", "backbite", "grouse", "bellyache", "crab", "holler", "gripe", "bitch"]}, {"answer": "bite", "hint": "synonyms for bite", "clues": ["seize with teeth", "sting", "burn", "prick", "bite"]}, {"answer": "bivouac", "hint": "synonyms for bivouac", "clues": ["encamp", "camp", "tent", "camp out", "bivouac"]}, {"answer": "bivouacking", "hint": "synonyms for bivouacking", "clues": ["camp out", "tent", "encamp", "camp", "bivouac", "bivouacking"]}, {"answer": "blabber", "hint": "synonyms for blabber", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "piffle", "prate", "twaddle", "blab", "blabber"]}, {"answer": "blackball", "hint": "synonyms for blackball", "clues": ["veto", "ostracize", "ban", "banish", "negative", "shun", "cast out", "blackball"]}, {"answer": "blackening", "hint": "synonyms for blackening", "clues": ["sear", "black", "nigrify", "melanize", "char", "blacken", "scorch"]}, {"answer": "blackguard", "hint": "synonyms for blackguard", "clues": ["rib", "roast", "ridicule", "abuse", "clapperclaw", "guy", "laugh at", "shout", "jest at", "poke fun", "make fun", "blackguard"]}, {"answer": "blacking", "hint": "synonyms for blacking", "clues": ["melanise", "black", "blacken", "nigrify"]}, {"answer": "blare", "hint": "synonyms for blare", "clues": ["toot", "blast", "beep", "honk", "claxon", "blare"]}, {"answer": "blarney", "hint": "synonyms for blarney", "clues": ["inveigle", "wheedle", "cajole", "sweet-talk", "coax", "palaver", "blarney"]}, {"answer": "blast", "hint": "synonyms for blast", "clues": ["shoot", "crucify", "knock down", "smash", "boom", "pillory", "nail", "shell", "blare", "savage", "blast"]}, {"answer": "bleach", "hint": "synonyms for bleach", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "bleeding", "hint": "synonyms for bleeding", "clues": ["shed blood", "run", "hemorrhage", "phlebotomise", "leech", "bleed"]}, {"answer": "blemish", "hint": "synonyms for blemish", "clues": ["disfigure", "spot", "deface", "flaw", "blemish"]}, {"answer": "blend", "hint": "synonyms for blend", "clues": ["go", "coalesce", "flux", "fuse", "blend in", "mix", "commingle", "conflate", "immix", "combine", "intermix", "merge", "immingle", "meld", "intermingle", "blend"]}, {"answer": "blending", "hint": "synonyms for blending", "clues": ["go", "fuse", "mix", "combine", "intermix", "immingle", "blend", "intermingle", "coalesce", "flux", "blend in", "commingle", "conflate", "immix", "merge", "meld"]}, {"answer": "blessing", "hint": "synonyms for blessing", "clues": ["bless", "hallow", "sanctify", "consecrate", "sign"]}, {"answer": "blink", "hint": "synonyms for blink", "clues": ["winkle", "nictate", "blink away", "flash", "wink", "blink"]}, {"answer": "blinks", "hint": "synonyms for blinks", "clues": ["winkle", "blink away", "flash", "blink", "wink", "nictate"]}, {"answer": "block", "hint": "synonyms for block", "clues": ["freeze", "kibosh", "halt", "occlude", "draw a blank", "stymie", "stuff", "blank out", "bar", "stymy", "block up", "obstruct", "jam", "immobilize", "embarrass", "obturate", "deflect", "blockade", "block off", "forget", "choke up", "impede", "stop", "close up", "parry", "lug", "hinder", "barricade", "block"]}, {"answer": "blockade", "hint": "synonyms for blockade", "clues": ["seal off", "block off", "block", "stymie", "stymy", "bar", "block up", "stop", "obstruct", "embarrass", "hinder", "barricade", "blockade"]}, {"answer": "blocking", "hint": "synonyms for blocking", "clues": ["freeze", "kibosh", "halt", "occlude", "draw a blank", "stymie", "stuff", "blank out", "bar", "stymy", "block up", "obstruct", "jam", "immobilize", "embarrass", "obturate", "deflect", "blockade", "block off", "block", "forget", "choke up", "impede", "stop", "close up", "parry", "lug", "hinder", "barricade"]}, {"answer": "blossom", "hint": "synonyms for blossom", "clues": ["flower", "blossom forth", "bloom", "blossom out", "unfold", "blossom"]}, {"answer": "blossoming", "hint": "synonyms for blossoming", "clues": ["flower", "blossom forth", "blossom", "bloom", "blossom out", "unfold"]}, {"answer": "blow", "hint": "synonyms for blow", "clues": ["swash", "fuck up", "louse up", "blow out", "muff", "drift", "bollix up", "boast", "be adrift", "bollocks", "shove off", "botch", "bumble", "fluff", "fumble", "vaunt", "mishandle", "squander", "bollocks up", "foul up", "go down on", "gasconade", "bungle", "bollix", "bobble", "gas", "ball up", "screw up", "float", "bodge", "mess up", "shoot a line", "suck", "flub", "spoil", "shove along", "bluster", "fellate", "burn out", "brag", "botch up", "tout", "waste", "blow"]}, {"answer": "blowing", "hint": "synonyms for blowing", "clues": ["swash", "fuck up", "louse up", "blow out", "muff", "drift", "bollix up", "boast", "be adrift", "bollocks", "shove off", "botch", "bumble", "fluff", "fumble", "vaunt", "mishandle", "squander", "bollocks up", "foul up", "go down on", "gasconade", "bungle", "bollix", "bobble", "gas", "ball up", "screw up", "float", "bodge", "mess up", "shoot a line", "suck", "flub", "blow", "spoil", "shove along", "fellate", "bluster", "burn out", "brag", "botch up", "tout", "waste"]}, {"answer": "blubber", "hint": "synonyms for blubber", "clues": ["blub", "blubber out", "sniffle", "snivel", "blubber"]}, {"answer": "blunder", "hint": "synonyms for blunder", "clues": ["ejaculate", "boob", "sin", "fumble", "goof", "blurt", "blunder out", "drop the ball", "blurt out", "blunder"]}, {"answer": "blur", "hint": "synonyms for blur", "clues": ["film over", "obscure", "confuse", "smear", "slur", "blear", "glaze over", "dim", "smutch", "obnubilate", "smudge", "blur"]}, {"answer": "bluster", "hint": "synonyms for bluster", "clues": ["swash", "blow", "vaunt", "boast", "swagger", "gasconade", "brag", "tout", "shoot a line", "gas", "bluster"]}, {"answer": "boast", "hint": "synonyms for boast", "clues": ["sport", "swash", "blow", "bluster", "vaunt", "feature", "gasconade", "brag", "tout", "shoot a line", "gas", "boast"]}, {"answer": "boasting", "hint": "synonyms for boasting", "clues": ["sport", "swash", "blow", "bluster", "vaunt", "boast", "feature", "gasconade", "brag", "tout", "shoot a line", "gas"]}, {"answer": "bob", "hint": "synonyms for bob", "clues": ["dock", "bobsled", "tail", "curtsy", "bob"]}, {"answer": "bobble", "hint": "synonyms for bobble", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble"]}, {"answer": "boding", "hint": "synonyms for boding", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "boding"]}, {"answer": "boil", "hint": "synonyms for boil", "clues": ["moil", "roil", "seethe", "churn", "boil"]}, {"answer": "bomb", "hint": "synonyms for bomb", "clues": ["flush it", "flunk", "fail", "bombard", "bomb"]}, {"answer": "bombing", "hint": "synonyms for bombing", "clues": ["bomb", "bombard", "flunk", "flush it", "fail"]}, {"answer": "bond", "hint": "synonyms for bond", "clues": ["tie", "stick to", "attach", "bind", "adhere", "bring together", "draw together", "hold fast", "stick", "bond"]}, {"answer": "bonding", "hint": "synonyms for bonding", "clues": ["tie", "stick to", "attach", "bond", "bind", "adhere", "bring together", "draw together", "hold fast", "stick"]}, {"answer": "bones", "hint": "synonyms for bones", "clues": ["bone", "get up", "mug up", "drum", "debone", "swot", "swot up", "grind away", "bone up", "cram"]}, {"answer": "boob", "hint": "synonyms for boob", "clues": ["blunder", "goof", "sin", "drop the ball", "boob"]}, {"answer": "boom", "hint": "synonyms for boom", "clues": ["thrive", "blast", "expand", "boom out", "thunder", "smash", "flourish", "nail", "din", "boom"]}, {"answer": "boost", "hint": "synonyms for boost", "clues": ["promote", "hike up", "encourage", "supercharge", "hike", "advance", "further", "boost"]}, {"answer": "bop", "hint": "synonyms for bop", "clues": ["bonk", "bash", "sock", "whop", "bebop", "whap", "bop"]}, {"answer": "border", "hint": "synonyms for border", "clues": ["butt on", "frame in", "abut", "ring", "butt", "march", "butt against", "skirt", "bound", "frame", "edge", "surround", "adjoin", "environ", "border"]}, {"answer": "bore", "hint": "synonyms for bore", "clues": ["wear", "deliver", "give birth", "tire", "abide", "accept", "acquit", "expect", "yield", "pay", "take over", "stomach", "gestate", "conduct", "drill", "tolerate", "brook", "deport", "have", "stick out", "assume", "carry", "put up", "hold", "turn out", "birth", "support", "suffer", "have a bun in the oven", "behave", "bear", "contain", "digest", "stand", "comport", "endure", "bore"]}, {"answer": "borrowing", "hint": "synonyms for borrowing", "clues": ["take up", "take over", "adopt", "borrow"]}, {"answer": "botch", "hint": "synonyms for botch", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "botch"]}, {"answer": "bother", "hint": "synonyms for bother", "clues": ["nark", "put out", "chafe", "rile", "annoy", "get to", "gravel", "vex", "rag", "get at", "nettle", "trouble", "inconvenience", "trouble oneself", "devil", "irritate", "incommode", "inconvenience oneself", "discommode", "disoblige", "bother"]}, {"answer": "bounce", "hint": "synonyms for bounce", "clues": ["recoil", "resile", "ricochet", "take a hop", "bound", "reverberate", "jounce", "rebound", "spring", "bounce"]}, {"answer": "bounds", "hint": "synonyms for bounds", "clues": ["restrain", "rebound", "throttle", "recoil", "limit", "ricochet", "trammel", "take a hop", "bound", "reverberate", "bounce", "spring", "jump", "restrict", "resile", "leap", "confine", "border"]}, {"answer": "bow", "hint": "synonyms for bow", "clues": ["bow down", "bend", "crouch", "stoop", "accede", "submit", "defer", "give in", "bow"]}, {"answer": "brace", "hint": "synonyms for brace", "clues": ["steady", "stabilize", "energise", "arouse", "poise", "stimulate", "perk up", "brace"]}, {"answer": "braces", "hint": "synonyms for braces", "clues": ["steady", "brace", "stabilize", "energise", "arouse", "poise", "stimulate", "perk up"]}, {"answer": "braiding", "hint": "synonyms for braiding", "clues": ["braid", "lace", "pleach", "plait"]}, {"answer": "branch", "hint": "synonyms for branch", "clues": ["fork", "furcate", "separate", "ramify", "branch"]}, {"answer": "brand", "hint": "synonyms for brand", "clues": ["denounce", "brandmark", "stigmatize", "post", "mark", "trademark", "brand"]}, {"answer": "branding", "hint": "synonyms for branding", "clues": ["denounce", "brandmark", "stigmatize", "mark", "brand", "trademark", "post"]}, {"answer": "bray", "hint": "synonyms for bray", "clues": ["hee-haw", "mash", "grind", "crunch", "comminute", "bray"]}, {"answer": "breach", "hint": "synonyms for breach", "clues": ["break", "offend", "go against", "transgress", "violate", "infract", "gap", "breach"]}, {"answer": "break", "hint": "synonyms for break", "clues": ["weaken", "break up", "wear", "cave in", "split up", "better", "infract", "burst", "pause", "come apart", "go against", "breach", "crack", "conk out", "die", "break-dance", "interrupt", "unwrap", "soften", "split", "expose", "demote", "damp", "part", "check", "intermit", "relegate", "recrudesce", "bring out", "give way", "wear out", "snap off", "violate", "kick downstairs", "break down", "give", "go", "give out", "go bad", "let on", "fall in", "break off", "reveal", "disclose", "divulge", "discover", "dampen", "bankrupt", "let out", "fall apart", "break in", "get around", "bump", "develop", "offend", "break away", "separate", "fracture", "discontinue", "break out", "smash", "stop", "collapse", "transgress", "ruin", "founder", "erupt", "fail", "break"]}, {"answer": "breaking", "hint": "synonyms for breaking", "clues": ["break", "weaken", "break up", "wear", "cave in", "split up", "better", "infract", "burst", "pause", "come apart", "go against", "breach", "crack", "conk out", "die", "break-dance", "interrupt", "unwrap", "soften", "split", "expose", "demote", "damp", "part", "check", "intermit", "relegate", "recrudesce", "bring out", "give way", "wear out", "snap off", "violate", "kick downstairs", "break down", "give", "go", "give out", "go bad", "let on", "fall in", "break off", "reveal", "disclose", "divulge", "discover", "dampen", "bankrupt", "let out", "fall apart", "break in", "get around", "bump", "develop", "offend", "break away", "separate", "fracture", "discontinue", "break out", "smash", "stop", "collapse", "transgress", "ruin", "founder", "erupt", "fail"]}, {"answer": "breed", "hint": "synonyms for breed", "clues": ["engender", "spawn", "cover", "multiply", "breed"]}, {"answer": "bringing", "hint": "synonyms for bringing", "clues": ["institute", "wreak", "work", "play", "fetch", "contribute", "bring in", "make for", "add", "convey", "take", "lend", "bestow", "bring", "land", "impart", "get"]}, {"answer": "bristle", "hint": "synonyms for bristle", "clues": ["abound", "uprise", "burst", "stand up", "bristle"]}, {"answer": "broadcast", "hint": "synonyms for broadcast", "clues": ["distribute", "circulate", "disperse", "beam", "spread", "send", "circularise", "disseminate", "pass around", "transmit", "diffuse", "propagate", "air", "broadcast"]}, {"answer": "broadcasting", "hint": "synonyms for broadcasting", "clues": ["circulate", "disperse", "beam", "send", "circularise", "disseminate", "pass around", "diffuse", "propagate", "air", "distribute", "broadcast", "spread", "transmit"]}, {"answer": "broadening", "hint": "synonyms for broadening", "clues": ["diversify", "broaden", "branch out", "widen", "extend"]}, {"answer": "brood", "hint": "synonyms for brood", "clues": ["grizzle", "stew", "hatch", "incubate", "sulk", "hover", "dwell", "bulk large", "pout", "cover", "loom", "brood"]}, {"answer": "brook", "hint": "synonyms for brook", "clues": ["support", "stomach", "put up", "abide", "bear", "tolerate", "digest", "stand", "endure", "stick out", "suffer", "brook"]}, {"answer": "brooks", "hint": "synonyms for brooks", "clues": ["support", "stomach", "put up", "abide", "bear", "tolerate", "brook", "digest", "stand", "endure", "stick out", "suffer"]}, {"answer": "browse", "hint": "synonyms for browse", "clues": ["crop", "shop", "range", "pasture", "graze", "surf", "browse"]}, {"answer": "browsing", "hint": "synonyms for browsing", "clues": ["range", "browse", "pasture", "graze", "crop", "shop", "surf", "browsing"]}, {"answer": "bruise", "hint": "synonyms for bruise", "clues": ["contuse", "spite", "hurt", "offend", "injure", "wound", "bruise"]}, {"answer": "bubble", "hint": "synonyms for bubble", "clues": ["burble", "guggle", "belch", "babble", "gurgle", "burp", "ripple", "eruct", "bubble"]}, {"answer": "buck", "hint": "synonyms for buck", "clues": ["go against", "hitch", "shoot", "shoot down", "charge", "jerk", "tear", "buck"]}, {"answer": "buckle", "hint": "synonyms for buckle", "clues": ["warp", "heave", "clasp", "crumple", "buckle"]}, {"answer": "buffeting", "hint": "synonyms for buffeting", "clues": ["knock about", "batter", "buff", "buffet"]}, {"answer": "bug", "hint": "synonyms for bug", "clues": ["wiretap", "beleaguer", "tease", "pester", "tap", "badger", "intercept", "bug"]}, {"answer": "build", "hint": "synonyms for build", "clues": ["make", "establish", "build up", "progress", "construct", "ramp up", "work up", "build"]}, {"answer": "building", "hint": "synonyms for building", "clues": ["make", "establish", "build up", "progress", "construct", "ramp up", "work up", "build"]}, {"answer": "bulge", "hint": "synonyms for bulge", "clues": ["protrude", "bag", "start", "bulge out", "pop out", "pop", "come out", "pouch", "bulk", "bulge"]}, {"answer": "bull", "hint": "synonyms for bull", "clues": ["bull through", "bullshit", "talk through one's hat", "fake", "bull"]}, {"answer": "bump", "hint": "synonyms for bump", "clues": ["break", "encounter", "dislodge", "demote", "knock", "find", "happen", "relegate", "kick downstairs", "chance", "bump"]}, {"answer": "bunch", "hint": "synonyms for bunch", "clues": ["bunch up", "cluster", "bundle", "bunch together", "clump", "bunch"]}, {"answer": "bunco", "hint": "synonyms for bunco", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "defraud", "gyp", "nobble", "diddle", "rook", "victimize", "hornswoggle", "short-change", "bunco"]}, {"answer": "bundle", "hint": "synonyms for bundle", "clues": ["roll up", "bunch up", "bunch", "pack", "bundle up", "cluster", "wad", "compact", "practice bundling", "clump", "bundle"]}, {"answer": "bundling", "hint": "synonyms for bundling", "clues": ["roll up", "bunch up", "compact", "bunch", "pack", "bundle up", "cluster", "bundle", "wad", "practice bundling", "clump", "bundling"]}, {"answer": "bungle", "hint": "synonyms for bungle", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "bungle"]}, {"answer": "bunk", "hint": "synonyms for bunk", "clues": ["break away", "escape", "hightail it", "turn tail", "fly the coop", "head for the hills", "scarper", "beat", "run", "lam", "scat", "run away", "take to the woods", "bunk"]}, {"answer": "burden", "hint": "synonyms for burden", "clues": ["saddle", "burthen", "weight", "weight down", "charge", "burden"]}, {"answer": "burn", "hint": "synonyms for burn", "clues": ["burn off", "cauterise", "incinerate", "cut", "burn down", "burn up", "bite", "fire", "combust", "glow", "sunburn", "sting", "burn"]}, {"answer": "burns", "hint": "synonyms for burns", "clues": ["burn off", "cauterise", "incinerate", "cut", "burn down", "burn up", "bite", "burn", "fire", "combust", "glow", "sunburn", "sting"]}, {"answer": "burping", "hint": "synonyms for burping", "clues": ["belch", "burp", "bubble", "eruct"]}, {"answer": "burst", "hint": "synonyms for burst", "clues": ["break", "bristle", "explode", "split", "abound", "break open", "collapse", "bust", "erupt"]}, {"answer": "burying", "hint": "synonyms for burying", "clues": ["inhume", "swallow", "bury", "immerse", "sink", "forget", "entomb", "lay to rest", "eat up", "swallow up", "inter"]}, {"answer": "bushel", "hint": "synonyms for bushel", "clues": ["touch on", "repair", "fix", "furbish up", "doctor", "restore", "mend", "bushel"]}, {"answer": "buss", "hint": "synonyms for buss", "clues": ["snog", "kiss", "osculate", "bus"]}, {"answer": "butt", "hint": "synonyms for butt", "clues": ["butt against", "butt on", "bunt", "abut", "edge", "march", "border", "adjoin", "butt"]}, {"answer": "butterfly", "hint": "synonyms for butterfly", "clues": ["coquet", "romance", "mash", "chat up", "philander", "flirt", "dally", "butterfly"]}, {"answer": "buy", "hint": "synonyms for buy", "clues": ["bribe", "grease one's palms", "purchase", "corrupt", "buy"]}, {"answer": "buying", "hint": "synonyms for buying", "clues": ["bribe", "grease one's palms", "corrupt", "purchase", "buy"]}, {"answer": "buzz", "hint": "synonyms for buzz", "clues": ["seethe", "hum", "bombilate", "buzz"]}, {"answer": "cabal", "hint": "synonyms for cabal", "clues": ["conjure", "machinate", "complot", "conspire", "cabal"]}, {"answer": "cabbage", "hint": "synonyms for cabbage", "clues": ["lift", "abstract", "pilfer", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage"]}, {"answer": "cache", "hint": "synonyms for cache", "clues": ["lay away", "squirrel away", "stash", "hive up", "hoard", "cache"]}, {"answer": "call", "hint": "synonyms for call", "clues": ["telephone", "name", "hollo", "yell", "foretell", "scream", "ring", "promise", "visit", "cry", "squall", "forebode", "anticipate", "send for", "shout out", "predict", "call off", "bid", "call up", "prognosticate", "address", "phone", "call in", "shout", "holler", "call"]}, {"answer": "call_up", "hint": "synonyms for call up", "clues": ["telephone", "call back", "call", "ring", "bring forward", "mobilise", "think", "rally", "remember", "retrieve", "recall", "phone", "recollect", "call up"]}, {"answer": "calling", "hint": "synonyms for calling", "clues": ["telephone", "name", "hollo", "yell", "call", "scream", "ring", "foretell", "visit", "cry", "squall", "promise", "forebode", "send for", "shout out", "anticipate", "predict", "call off", "call up", "bid", "prognosticate", "address", "phone", "call in", "shout", "holler"]}, {"answer": "calming", "hint": "synonyms for calming", "clues": ["quieten", "tranquilize", "cool it", "lull", "calm", "chill out", "still", "steady", "cool off", "calm down", "settle down", "sedate", "quiet", "becalm", "simmer down"]}, {"answer": "campaign", "hint": "synonyms for campaign", "clues": ["take the field", "press", "agitate", "push", "fight", "run", "crusade", "campaign"]}, {"answer": "campaigning", "hint": "synonyms for campaigning", "clues": ["campaign", "push", "fight", "crusade", "take the field", "press", "agitate", "run"]}, {"answer": "camping", "hint": "synonyms for camping", "clues": ["camp out", "tent", "camp down", "encamp", "camp", "bivouac"]}, {"answer": "can", "hint": "synonyms for can", "clues": ["displace", "give the axe", "terminate", "dismiss", "put up", "fire", "give the sack", "tin", "send away", "give notice", "force out", "sack", "can"]}, {"answer": "cancel", "hint": "synonyms for cancel", "clues": ["invalidate", "scratch", "delete", "scrub", "strike down", "set off", "offset", "call off", "cancel"]}, {"answer": "caning", "hint": "synonyms for caning", "clues": ["flog", "terminate", "dismiss", "put up", "fire", "cane", "give the sack", "send away", "displace", "give the axe", "lambast", "tin", "give notice", "force out", "sack", "caning"]}, {"answer": "cant", "hint": "synonyms for cant", "clues": ["tilt", "pitch", "slant", "cant over", "cant"]}, {"answer": "canvas", "hint": "synonyms for canvas", "clues": ["analyse", "study", "poll", "examine", "canvass"]}, {"answer": "canvass", "hint": "synonyms for canvass", "clues": ["canvas", "analyse", "study", "poll", "examine"]}, {"answer": "canvassing", "hint": "synonyms for canvassing", "clues": ["canvas", "analyse", "study", "poll", "examine", "canvassing"]}, {"answer": "capture", "hint": "synonyms for capture", "clues": ["enchant", "captivate", "fascinate", "seize", "conquer", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "appropriate", "get", "bewitch", "capture"]}, {"answer": "care", "hint": "synonyms for care", "clues": ["handle", "give care", "deal", "wish", "like", "worry", "manage", "care"]}, {"answer": "careen", "hint": "synonyms for careen", "clues": ["swag", "stagger", "wobble", "shift", "tilt", "keel", "reel", "lurch", "careen"]}, {"answer": "carry", "hint": "synonyms for carry", "clues": ["sway", "channel", "hold", "acquit", "stock", "expect", "dribble", "run", "convey", "take", "persuade", "express", "pack", "have a bun in the oven", "behave", "post", "gestate", "transport", "conduct", "bear", "contain", "stockpile", "transmit", "impart", "comport", "deport", "extend", "carry"]}, {"answer": "carting", "hint": "synonyms for carting", "clues": ["cart", "hale", "drag", "haul"]}, {"answer": "cast", "hint": "synonyms for cast", "clues": ["upchuck", "shed", "ramble", "cast off", "redact", "drift", "mould", "chuck", "vomit up", "honk", "draw", "retch", "throw up", "swan", "regurgitate", "spue", "frame", "roam", "project", "spew", "cat", "throw off", "purge", "wander", "couch", "roll", "hurl", "tramp", "drop", "throw away", "vomit", "throw", "stray", "range", "disgorge", "rove", "regorge", "hurtle", "contrive", "shake off", "vagabond", "be sick", "puke", "barf", "put", "sick"]}, {"answer": "casting", "hint": "synonyms for casting", "clues": ["upchuck", "shed", "ramble", "cast off", "redact", "drift", "mould", "chuck", "vomit up", "honk", "draw", "retch", "throw up", "swan", "regurgitate", "spue", "frame", "roam", "project", "spew", "cat", "throw off", "purge", "wander", "couch", "roll", "hurl", "tramp", "drop", "throw away", "vomit", "throw", "stray", "range", "disgorge", "rove", "regorge", "hurtle", "contrive", "shake off", "vagabond", "be sick", "puke", "barf", "put", "sick", "casting"]}, {"answer": "castrate", "hint": "synonyms for castrate", "clues": ["alter", "shorten", "demasculinise", "emasculate", "spay", "neuter", "bowdlerize", "expurgate", "castrate"]}, {"answer": "cat", "hint": "synonyms for cat", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick"]}, {"answer": "catch", "hint": "synonyms for catch", "clues": ["view", "overtake", "hitch", "enchant", "captivate", "take hold of", "fascinate", "capture", "beguile", "enamour", "pick up", "becharm", "take in", "charm", "watch", "see", "trip up", "grab", "entrance", "overhear", "arrest", "catch up with", "get", "bewitch", "catch"]}, {"answer": "catering", "hint": "synonyms for catering", "clues": ["ply", "cater", "provide", "supply"]}, {"answer": "cause", "hint": "synonyms for cause", "clues": ["do", "induce", "stimulate", "make", "have", "get", "cause"]}, {"answer": "causing", "hint": "synonyms for causing", "clues": ["do", "induce", "make", "get", "stimulate", "have", "cause", "causing"]}, {"answer": "cave_in", "hint": "synonyms for cave in", "clues": ["break", "give way", "collapse", "fall in", "founder", "give", "cave in"]}, {"answer": "cease", "hint": "synonyms for cease", "clues": ["quit", "terminate", "give up", "end", "discontinue", "stop", "lay off", "finish", "cease"]}, {"answer": "ceding", "hint": "synonyms for ceding", "clues": ["cede", "deliver", "give up", "surrender", "concede", "yield", "grant", "ceding"]}, {"answer": "centering", "hint": "synonyms for centering", "clues": ["rivet", "revolve about", "centre", "pore", "center", "concentrate", "focus on", "focus", "revolve around", "center on"]}, {"answer": "centre", "hint": "synonyms for centre", "clues": ["center", "concentrate", "rivet", "focus", "pore", "centre"]}, {"answer": "chafe", "hint": "synonyms for chafe", "clues": ["nark", "fray", "rub", "rile", "excoriate", "annoy", "bother", "get to", "gravel", "vex", "rag", "get at", "nettle", "gall", "devil", "irritate", "scratch", "fret", "chafe"]}, {"answer": "chaff", "hint": "synonyms for chaff", "clues": ["banter", "jolly", "josh", "kid", "chaff"]}, {"answer": "chafing", "hint": "synonyms for chafing", "clues": ["nark", "fray", "rub", "chafe", "rile", "excoriate", "annoy", "bother", "get to", "gravel", "vex", "rag", "get at", "nettle", "gall", "devil", "irritate", "scratch", "fret", "chafing"]}, {"answer": "chagrin", "hint": "synonyms for chagrin", "clues": ["humiliate", "mortify", "humble", "abase", "chagrin"]}, {"answer": "change", "hint": "synonyms for change", "clues": ["alter", "deepen", "transfer", "switch", "exchange", "convert", "vary", "commute", "interchange", "shift", "modify"]}, {"answer": "channel", "hint": "synonyms for channel", "clues": ["transfer", "carry", "channelize", "canalize", "conduct", "transport", "transmit", "impart", "convey", "channel"]}, {"answer": "channels", "hint": "synonyms for channels", "clues": ["transfer", "carry", "channelize", "channel", "conduct", "canalize", "transport", "transmit", "impart", "convey"]}, {"answer": "chant", "hint": "synonyms for chant", "clues": ["intonate", "cantillate", "tone", "chant"]}, {"answer": "chanting", "hint": "synonyms for chanting", "clues": ["intonate", "chant", "cantillate", "tone"]}, {"answer": "char", "hint": "synonyms for char", "clues": ["sear", "coal", "blacken", "scorch", "char"]}, {"answer": "charge", "hint": "synonyms for charge", "clues": ["commove", "commit", "bear down", "send", "excite", "lodge", "saddle", "consign", "charge up", "agitate", "point", "institutionalise", "file", "blame", "buck", "shoot", "load", "bill", "rouse", "level", "turn on", "appoint", "accuse", "shoot down", "burden", "tear", "charge"]}, {"answer": "charm", "hint": "synonyms for charm", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "tempt", "influence", "bewitch", "charm"]}, {"answer": "charter", "hint": "synonyms for charter", "clues": ["hire", "take", "lease", "rent", "engage", "charter"]}, {"answer": "chase", "hint": "synonyms for chase", "clues": ["tail", "tag", "furrow", "chase after", "go after", "give chase", "dog", "chamfer", "track", "chase"]}, {"answer": "chased", "hint": "synonyms for chased", "clues": ["tail", "tag", "furrow", "chase after", "go after", "give chase", "dog", "chase", "chamfer", "track"]}, {"answer": "chasteness", "hint": "synonyms for chasteness", "clues": ["subdue", "moderate", "castigate", "correct", "chastise", "chasten", "temper", "objurgate", "tame", "chasteness"]}, {"answer": "chastening", "hint": "synonyms for chastening", "clues": ["subdue", "moderate", "castigate", "correct", "chastise", "chasten", "temper", "objurgate", "tame"]}, {"answer": "chat", "hint": "synonyms for chat", "clues": ["chitchat", "jaw", "confab", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "confabulate", "claver", "chew the fat", "natter", "chat"]}, {"answer": "chatter", "hint": "synonyms for chatter", "clues": ["chitchat", "click", "jaw", "confab", "clack", "visit", "tattle", "palaver", "piffle", "gossip", "confabulate", "twaddle", "claver", "chew the fat", "natter", "gabble", "blab", "chat", "shoot the breeze", "maunder", "tittle-tattle", "chaffer", "gibber", "blabber", "prate", "prattle", "chatter"]}, {"answer": "chattering", "hint": "synonyms for chattering", "clues": ["chitchat", "click", "jaw", "confab", "clack", "visit", "tattle", "palaver", "chatter", "gossip", "piffle", "confabulate", "twaddle", "claver", "chew the fat", "natter", "gabble", "blab", "chat", "shoot the breeze", "maunder", "tittle-tattle", "chaffer", "gibber", "blabber", "prate", "prattle"]}, {"answer": "cheat", "hint": "synonyms for cheat", "clues": ["betray", "chouse", "cheat on", "cuckold", "chicane", "wander", "screw", "shaft", "jockey", "rip off", "chisel", "cheat"]}, {"answer": "check", "hint": "synonyms for check", "clues": ["break", "turn back", "control", "see to it", "discipline", "train", "determine", "crack", "delay", "mark off", "chequer", "condition", "correspond", "see", "fit", "mark", "tally", "agree", "check off", "arrest", "check out", "find out", "retard", "insure", "go over", "ensure", "checker", "moderate", "look into", "hold", "gibe", "suss out", "check over", "learn", "watch", "check up on", "chink", "curb", "tick", "jibe", "match", "assure", "hold in", "stop", "hold back", "contain", "check into", "ascertain", "tick off", "check"]}, {"answer": "cheer", "hint": "synonyms for cheer", "clues": ["recreate", "chirk up", "barrack", "urge", "pep up", "hearten", "exhort", "jolly up", "embolden", "inspire", "root on", "urge on", "cheer up", "jolly along", "cheer"]}, {"answer": "chewing", "hint": "synonyms for chewing", "clues": ["masticate", "chew", "jaw", "manducate"]}, {"answer": "chicane", "hint": "synonyms for chicane", "clues": ["shaft", "cheat", "jockey", "chouse", "cavil", "screw", "carp", "chicane"]}, {"answer": "chiding", "hint": "synonyms for chiding", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "chiding"]}, {"answer": "chink", "hint": "synonyms for chink", "clues": ["tinkle", "clink", "tink", "check", "chink"]}, {"answer": "chip", "hint": "synonyms for chip", "clues": ["break off", "break away", "come off", "knap", "nick", "chip off", "cut off", "chip"]}, {"answer": "chipping", "hint": "synonyms for chipping", "clues": ["break away", "come off", "chip", "break off", "knap", "nick", "chip off", "cut off", "chipping"]}, {"answer": "chips", "hint": "synonyms for chips", "clues": ["break away", "come off", "chip", "break off", "knap", "nick", "chip off", "cut off"]}, {"answer": "chirp", "hint": "synonyms for chirp", "clues": ["cheep", "peep", "chirrup", "tweedle", "chirp"]}, {"answer": "chit-chat", "hint": "synonyms for chit-chat", "clues": ["chitchat", "chat", "confab", "jaw", "shoot the breeze", "visit", "chaffer", "chatter", "gossip", "confabulate", "claver", "chew the fat", "natter"]}, {"answer": "chitchat", "hint": "synonyms for chitchat", "clues": ["chat", "confab", "jaw", "shoot the breeze", "visit", "chit-chat", "chatter", "chaffer", "gossip", "confabulate", "claver", "chew the fat", "natter"]}, {"answer": "choke", "hint": "synonyms for choke", "clues": ["decease", "cash in one's chips", "go", "stifle", "clog up", "pop off", "gag", "throttle", "expire", "foul", "strangle", "clog", "choke off", "drop dead", "die", "croak", "buy the farm", "asphyxiate", "scrag", "congest", "pass away", "exit", "conk", "back up", "suffocate", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "fret", "choke"]}, {"answer": "choking", "hint": "synonyms for choking", "clues": ["cash in one's chips", "throttle", "stifle", "gag", "clog", "choke off", "die", "croak", "buy the farm", "congest", "choke", "conk", "give-up the ghost", "pass away", "kick the bucket", "fret", "decease", "go", "pop off", "clog up", "expire", "foul", "strangle", "drop dead", "asphyxiate", "scrag", "exit", "back up", "suffocate", "perish", "snuff it", "pass", "choking"]}, {"answer": "chosen", "hint": "synonyms for chosen", "clues": ["choose", "pick out", "take", "select", "prefer", "opt", "chosen"]}, {"answer": "chuck", "hint": "synonyms for chuck", "clues": ["upchuck", "purge", "pat", "toss", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "ditch", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "chuck"]}, {"answer": "cipher", "hint": "synonyms for cipher", "clues": ["write in code", "code", "compute", "work out", "encipher", "inscribe", "figure", "cypher", "reckon", "encrypt", "calculate"]}, {"answer": "cite", "hint": "synonyms for cite", "clues": ["mention", "name", "bring up", "adduce", "abduce", "reference", "quote", "advert", "summons", "refer", "cite"]}, {"answer": "clack", "hint": "synonyms for clack", "clues": ["click", "tattle", "palaver", "chatter", "piffle", "twaddle", "gabble", "blab", "maunder", "tittle-tattle", "gibber", "brattle", "cluck", "blabber", "prate", "clack"]}, {"answer": "claim", "hint": "synonyms for claim", "clues": ["take", "exact", "lay claim", "arrogate", "claim"]}, {"answer": "clamber", "hint": "synonyms for clamber", "clues": ["shin", "shinny", "sputter", "struggle", "scramble", "skin", "clamber"]}, {"answer": "clapping", "hint": "synonyms for clapping", "clues": ["spat", "clap", "acclaim", "applaud", "clapping"]}, {"answer": "class", "hint": "synonyms for class", "clues": ["sort", "sort out", "classify", "separate", "assort", "class"]}, {"answer": "claxon", "hint": "synonyms for claxon", "clues": ["toot", "beep", "honk", "blare", "claxon"]}, {"answer": "cleaning", "hint": "synonyms for cleaning", "clues": ["clean house", "make clean", "strip", "houseclean", "clean", "scavenge", "cleanse", "pick"]}, {"answer": "clearing", "hint": "synonyms for clearing", "clues": ["brighten", "light up", "earn", "crystallize", "gain", "acquit", "take in", "shed light on", "elucidate", "discharge", "pull in", "authorise", "clear", "sort out", "exonerate", "make", "exculpate", "straighten out", "bring in", "sack up", "assoil", "realise", "top", "enlighten", "illuminate", "net", "clear up", "unclutter", "solve", "pass", "sack"]}, {"answer": "click", "hint": "synonyms for click", "clues": ["snap", "clack", "come home", "tick", "sink in", "get through", "get across", "chatter", "flick", "cluck", "penetrate", "dawn", "fall into place", "click"]}, {"answer": "climb", "hint": "synonyms for climb", "clues": ["rise", "wax", "climb up", "go up", "mount", "climb"]}, {"answer": "climbing", "hint": "synonyms for climbing", "clues": ["climb up", "go up", "rise", "wax", "climb", "mount"]}, {"answer": "cling", "hint": "synonyms for cling", "clues": ["cohere", "hang", "cleave", "stick", "adhere", "cling"]}, {"answer": "clip", "hint": "synonyms for clip", "clues": ["nip", "trim", "nip off", "cut back", "curtail", "prune", "crop", "trot", "jog", "dress", "cut short", "lop", "clip"]}, {"answer": "clipping", "hint": "synonyms for clipping", "clues": ["clip", "nip", "trim", "cut back", "curtail", "snip off", "prune", "crop", "trot", "jog", "dress", "cut short", "lop", "clipping"]}, {"answer": "cloak", "hint": "synonyms for cloak", "clues": ["robe", "mask", "drape", "clothe", "dissemble", "cloak"]}, {"answer": "clobber", "hint": "synonyms for clobber", "clues": ["bat", "cream", "drub", "thrash", "lick", "batter", "baste", "clobber"]}, {"answer": "clog", "hint": "synonyms for clog", "clues": ["congest", "clog up", "choke", "clot", "back up", "foul", "constipate", "overload", "choke off", "clog"]}, {"answer": "clopping", "hint": "synonyms for clopping", "clues": ["plunk", "clunk", "clop", "clump", "clopping"]}, {"answer": "clot", "hint": "synonyms for clot", "clues": ["curdle", "coagulate", "clabber", "clog", "clot"]}, {"answer": "clothes", "hint": "synonyms for clothes", "clues": ["garment", "robe", "drape", "clothe", "invest", "tog", "cloak", "garb", "apparel", "adorn", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "clothing", "hint": "synonyms for clothing", "clues": ["garment", "robe", "drape", "clothe", "invest", "tog", "cloak", "garb", "apparel", "adorn", "habilitate", "fit out", "dress", "raiment", "clothing"]}, {"answer": "clotting", "hint": "synonyms for clotting", "clues": ["clabber", "clog", "curdle", "coagulate", "clot", "clotting"]}, {"answer": "cloud", "hint": "synonyms for cloud", "clues": ["sully", "overcast", "obscure", "haze over", "defile", "corrupt", "taint", "dapple", "mottle", "becloud", "obnubilate", "fog", "befog", "mist", "cloud"]}, {"answer": "clouding", "hint": "synonyms for clouding", "clues": ["sully", "overcast", "obscure", "haze over", "mist", "defile", "corrupt", "taint", "dapple", "mottle", "becloud", "obnubilate", "fog", "befog", "cloud"]}, {"answer": "clove", "hint": "synonyms for clove", "clues": ["cling", "split", "cleave", "rive", "adhere", "cohere", "stick", "clove"]}, {"answer": "clump", "hint": "synonyms for clump", "clues": ["bunch up", "plunk", "bunch", "clunk", "constellate", "clop", "cluster", "flock", "bundle", "clump"]}, {"answer": "clumping", "hint": "synonyms for clumping", "clues": ["bunch up", "clomp", "plunk", "bunch", "clunk", "constellate", "cluster", "flock", "bundle", "clump"]}, {"answer": "clunking", "hint": "synonyms for clunking", "clues": ["plunk", "clunk", "clop", "clump"]}, {"answer": "cluster", "hint": "synonyms for cluster", "clues": ["constellate", "clump", "bunch up", "bundle", "bunch", "flock", "cluster"]}, {"answer": "clustering", "hint": "synonyms for clustering", "clues": ["clump", "bunch up", "bunch", "constellate", "cluster", "bundle", "flock"]}, {"answer": "clutch", "hint": "synonyms for clutch", "clues": ["hold close", "get hold of", "prehend", "seize", "cling to", "hold tight", "clutch"]}, {"answer": "clutches", "hint": "synonyms for clutches", "clues": ["clutch", "prehend", "get hold of", "seize", "cling to", "hold tight", "hold close"]}, {"answer": "co-ordinate", "hint": "synonyms for co-ordinate", "clues": ["organize", "align", "ordinate", "co-ordinate"]}, {"answer": "coax", "hint": "synonyms for coax", "clues": ["inveigle", "wheedle", "cajole", "sweet-talk", "blarney", "palaver", "coax"]}, {"answer": "cock", "hint": "synonyms for cock", "clues": ["sashay", "ruffle", "strut", "tittup", "prance", "swagger", "cock"]}, {"answer": "cocker", "hint": "synonyms for cocker", "clues": ["featherbed", "spoil", "pamper", "indulge", "mollycoddle", "cosset", "baby", "coddle", "cocker"]}, {"answer": "cockle", "hint": "synonyms for cockle", "clues": ["riffle", "ripple", "rumple", "ruffle", "knit", "undulate", "pucker", "cockle"]}, {"answer": "code", "hint": "synonyms for code", "clues": ["write in code", "cypher", "cipher", "encrypt", "inscribe", "code"]}, {"answer": "coding", "hint": "synonyms for coding", "clues": ["befool", "slang", "cipher", "bait", "ride", "put one over", "gull", "taunt", "tease", "rag", "take in", "encrypt", "put one across", "write in code", "cod", "twit", "inscribe", "tantalize", "rally", "cypher", "fool", "dupe", "razz", "put on"]}, {"answer": "coif", "hint": "synonyms for coif", "clues": ["do", "arrange", "coiffure", "set", "dress", "coif"]}, {"answer": "coiffure", "hint": "synonyms for coiffure", "clues": ["do", "arrange", "coif", "set", "dress", "coiffe"]}, {"answer": "coil", "hint": "synonyms for coil", "clues": ["handbuild", "gyrate", "curl", "loop", "spiral", "coil"]}, {"answer": "collapse", "hint": "synonyms for collapse", "clues": ["break", "tumble", "break up", "crack up", "cave in", "fall in", "give", "crumple", "burst", "crack", "give way", "founder", "break down", "collapse"]}, {"answer": "collar", "hint": "synonyms for collar", "clues": ["pick up", "arrest", "cop", "nail", "apprehend", "nab", "collar"]}, {"answer": "collecting", "hint": "synonyms for collecting", "clues": ["roll up", "accumulate", "gather up", "amass", "collect", "pull in", "hoard", "gather", "call for", "pick up", "compile", "pile up", "garner", "take in", "pull together"]}, {"answer": "coloring", "hint": "synonyms for coloring", "clues": ["color", "discolour", "color in", "colourize", "gloss", "colorise", "distort", "emblazon", "tinge"]}, {"answer": "colors", "hint": "synonyms for colors", "clues": ["color", "discolour", "color in", "colourize", "gloss", "colorise", "distort", "emblazon", "tinge"]}, {"answer": "colouring", "hint": "synonyms for colouring", "clues": ["color", "discolour", "color in", "colourize", "colorise", "emblazon", "distort", "tinge", "gloss", "colouring"]}, {"answer": "colours", "hint": "synonyms for colours", "clues": ["color", "discolour", "color in", "colourize", "colorise", "emblazon", "distort", "tinge", "gloss", "colours"]}, {"answer": "combine", "hint": "synonyms for combine", "clues": ["aggregate", "unite", "coalesce", "flux", "fuse", "compound", "mix", "commingle", "conflate", "immix", "merge", "meld", "blend", "combine"]}, {"answer": "combing", "hint": "synonyms for combing", "clues": ["comb", "ransack", "disentangle", "comb out"]}, {"answer": "combining", "hint": "synonyms for combining", "clues": ["aggregate", "unite", "coalesce", "flux", "fuse", "compound", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend", "combining"]}, {"answer": "come", "hint": "synonyms for come", "clues": ["do", "follow", "fare", "come up", "add up", "occur", "arrive", "hail", "amount", "make out", "descend", "fall", "total", "number", "get along", "derive", "issue forth", "come in", "get", "come"]}, {"answer": "comfort", "hint": "synonyms for comfort", "clues": ["soothe", "console", "ease", "solace", "comfort"]}, {"answer": "comforts", "hint": "synonyms for comforts", "clues": ["soothe", "console", "ease", "solace", "comfort"]}, {"answer": "command", "hint": "synonyms for command", "clues": ["control", "dominate", "overtop", "overlook", "require", "command"]}, {"answer": "comment", "hint": "synonyms for comment", "clues": ["notice", "annotate", "gloss", "remark", "point out", "comment"]}, {"answer": "communicating", "hint": "synonyms for communicating", "clues": ["put across", "pass on", "commune", "communicate", "transmit", "intercommunicate", "pass", "pass along", "convey", "communicating"]}, {"answer": "commute", "hint": "synonyms for commute", "clues": ["transpose", "permute", "convert", "change", "commute"]}, {"answer": "commuting", "hint": "synonyms for commuting", "clues": ["change", "convert", "commute", "transpose", "permute", "commuting"]}, {"answer": "compass", "hint": "synonyms for compass", "clues": ["grok", "circumnavigate", "comprehend", "grasp", "get the picture", "savvy", "apprehend", "dig", "compass"]}, {"answer": "compiling", "hint": "synonyms for compiling", "clues": ["roll up", "accumulate", "amass", "compose", "collect", "hoard", "compile", "pile up", "compiling"]}, {"answer": "composing", "hint": "synonyms for composing", "clues": ["draw up", "compile", "write", "compose", "frame", "indite", "pen", "composing"]}, {"answer": "compounding", "hint": "synonyms for compounding", "clues": ["deepen", "combine", "intensify", "compound", "heighten"]}, {"answer": "compress", "hint": "synonyms for compress", "clues": ["contract", "press", "compact", "pack together", "constrict", "squeeze", "compress"]}, {"answer": "compressing", "hint": "synonyms for compressing", "clues": ["compress", "pack together", "constrict", "squeeze", "contract", "press", "compact"]}, {"answer": "computing", "hint": "synonyms for computing", "clues": ["work out", "cypher", "compute", "reckon", "cipher", "figure", "calculate", "computing"]}, {"answer": "conceding", "hint": "synonyms for conceding", "clues": ["cede", "confess", "yield", "concede", "profess", "grant", "conceding"]}, {"answer": "concentrate", "hint": "synonyms for concentrate", "clues": ["rivet", "condense", "reduce", "centre", "centralize", "pore", "center", "contract", "decoct", "boil down", "focus", "digest", "concentrate"]}, {"answer": "concern", "hint": "synonyms for concern", "clues": ["touch on", "interest", "pertain", "have-to doe with", "touch", "occupy", "bear on", "come to", "refer", "worry", "relate", "concern"]}, {"answer": "concord", "hint": "synonyms for concord", "clues": ["consort", "harmonize", "agree", "hold", "accord", "fit in", "concur", "concord"]}, {"answer": "condensing", "hint": "synonyms for condensing", "clues": ["concentrate", "contract", "distil", "condense", "digest", "condensing"]}, {"answer": "condition", "hint": "synonyms for condition", "clues": ["qualify", "specify", "train", "stipulate", "check", "discipline", "condition"]}, {"answer": "conditioning", "hint": "synonyms for conditioning", "clues": ["condition", "qualify", "specify", "train", "stipulate", "check", "discipline"]}, {"answer": "conditions", "hint": "synonyms for conditions", "clues": ["condition", "qualify", "specify", "train", "stipulate", "check", "discipline"]}, {"answer": "conduct", "hint": "synonyms for conduct", "clues": ["take", "direct", "transmit", "deal", "carry", "behave", "guide", "lead", "bear", "impart", "acquit", "channel", "carry on", "comport", "deport", "convey", "conduct"]}, {"answer": "conducting", "hint": "synonyms for conducting", "clues": ["direct", "deal", "carry", "channel", "lead", "acquit", "carry on", "convey", "take", "behave", "guide", "conduct", "bear", "transmit", "impart", "comport", "deport"]}, {"answer": "confab", "hint": "synonyms for confab", "clues": ["chitchat", "chat", "jaw", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "consult", "confabulate", "claver", "chew the fat", "confer", "natter", "confab"]}, {"answer": "confines", "hint": "synonyms for confines", "clues": ["restrain", "throttle", "enclose", "restrict", "limit", "circumscribe", "trammel", "hold in", "detain", "hold", "confine", "bound"]}, {"answer": "conjecture", "hint": "synonyms for conjecture", "clues": ["hypothesize", "theorise", "speculate", "hypothecate", "suppose", "conjecture"]}, {"answer": "conjuring", "hint": "synonyms for conjuring", "clues": ["conspire", "cabal", "entreat", "put forward", "beseech", "invoke", "machinate", "adjure", "bid", "conjure", "conjure up", "bring up", "complot", "raise", "evoke", "arouse", "press", "stir", "call down", "call forth", "conjuring"]}, {"answer": "conk", "hint": "synonyms for conk", "clues": ["decease", "cash in one's chips", "stall", "go", "pop off", "swoon", "expire", "drop dead", "die", "croak", "buy the farm", "pass out", "exit", "choke", "give-up the ghost", "perish", "faint", "snuff it", "pass", "kick the bucket", "pass away", "conk"]}, {"answer": "conquering", "hint": "synonyms for conquering", "clues": ["subdue", "curb", "capture", "seize", "suppress", "conquer", "stamp down", "appropriate", "inhibit"]}, {"answer": "conserve", "hint": "synonyms for conserve", "clues": ["economise", "maintain", "preserve", "keep up", "husband", "conserve"]}, {"answer": "conserves", "hint": "synonyms for conserves", "clues": ["economise", "keep up", "maintain", "preserve", "conserve", "husband"]}, {"answer": "consort", "hint": "synonyms for consort", "clues": ["harmonize", "associate", "agree", "concord", "accord", "fit in", "run", "assort", "affiliate", "consort"]}, {"answer": "construct", "hint": "synonyms for construct", "clues": ["make", "fabricate", "retrace", "reconstruct", "manufacture", "build"]}, {"answer": "contact", "hint": "synonyms for contact", "clues": ["meet", "get hold of", "reach", "get through", "touch", "adjoin", "contact"]}, {"answer": "contract", "hint": "synonyms for contract", "clues": ["narrow", "compress", "foreshorten", "reduce", "shrink", "squeeze", "concentrate", "sign up", "abridge", "shorten", "take", "condense", "cut", "constrict", "sign", "abbreviate", "press", "sign on", "compact", "get", "undertake", "contract"]}, {"answer": "contracting", "hint": "synonyms for contracting", "clues": ["narrow", "compress", "foreshorten", "reduce", "shrink", "squeeze", "concentrate", "sign up", "abridge", "shorten", "take", "condense", "cut", "constrict", "sign", "contract", "abbreviate", "press", "sign on", "compact", "get", "undertake"]}, {"answer": "control", "hint": "synonyms for control", "clues": ["insure", "ascertain", "manipulate", "verify", "ensure", "see", "curb", "moderate", "see to it", "assure", "hold in", "keep in line", "hold", "operate", "command", "master", "contain", "check", "control"]}, {"answer": "convert", "hint": "synonyms for convert", "clues": ["commute", "win over", "convince", "change", "change over", "convert"]}, {"answer": "conveying", "hint": "synonyms for conveying", "clues": ["take", "express", "fetch", "get", "carry", "communicate", "channel", "conduct", "bring", "transmit", "impart", "convey"]}, {"answer": "cook", "hint": "synonyms for cook", "clues": ["manipulate", "make", "misrepresent", "prepare", "fake", "falsify", "fix", "wangle", "ready", "fudge", "cook"]}, {"answer": "cooking", "hint": "synonyms for cooking", "clues": ["manipulate", "make", "cook", "misrepresent", "prepare", "fake", "falsify", "fix", "wangle", "ready", "fudge"]}, {"answer": "cooling", "hint": "synonyms for cooling", "clues": ["cool off", "chill", "cool down", "cool"]}, {"answer": "cop", "hint": "synonyms for cop", "clues": ["nab", "knock off", "collar", "apprehend", "glom", "pick up", "hook", "thieve", "snitch", "arrest", "nail", "cop"]}, {"answer": "cope", "hint": "synonyms for cope", "clues": ["grapple", "contend", "make out", "manage", "deal", "get by", "make do", "cope"]}, {"answer": "coping", "hint": "synonyms for coping", "clues": ["deal", "collar", "make do", "glom", "pick up", "thieve", "make out", "cope", "nail", "apprehend", "get by", "nab", "grapple", "knock off", "contend", "manage", "hook", "arrest", "snitch", "coping"]}, {"answer": "copy", "hint": "synonyms for copy", "clues": ["imitate", "re-create", "simulate", "replicate", "copy"]}, {"answer": "copying", "hint": "synonyms for copying", "clues": ["imitate", "re-create", "copy", "simulate", "replicate"]}, {"answer": "coquette", "hint": "synonyms for coquette", "clues": ["coquet", "romance", "mash", "chat up", "philander", "flirt", "dally", "butterfly"]}, {"answer": "couch", "hint": "synonyms for couch", "clues": ["cast", "put", "redact", "frame", "couch"]}, {"answer": "count", "hint": "synonyms for count", "clues": ["numerate", "matter", "look", "bet", "number", "consider", "reckon", "depend", "weigh", "calculate", "count"]}, {"answer": "counterbalance", "hint": "synonyms for counterbalance", "clues": ["counteract", "even out", "oppose", "even off", "neutralize", "correct", "compensate", "countervail", "make up", "even up", "counterbalance"]}, {"answer": "countermand", "hint": "synonyms for countermand", "clues": ["lift", "repeal", "reverse", "vacate", "rescind", "annul", "revoke", "overturn", "countermand"]}, {"answer": "countermine", "hint": "synonyms for countermine", "clues": ["weaken", "counteract", "sabotage", "undermine", "subvert", "countermine"]}, {"answer": "countess", "hint": "synonyms for countess", "clues": ["numerate", "matter", "look", "bet", "number", "consider", "reckon", "depend", "count", "weigh", "calculate", "countess"]}, {"answer": "counting", "hint": "synonyms for counting", "clues": ["numerate", "matter", "look", "bet", "number", "consider", "reckon", "depend", "count", "weigh", "calculate"]}, {"answer": "couple", "hint": "synonyms for couple", "clues": ["mate", "match", "partner off", "twin", "couple on", "couple up", "copulate", "pair", "pair off", "couple"]}, {"answer": "coupling", "hint": "synonyms for coupling", "clues": ["mate", "couple", "match", "partner off", "twin", "couple on", "couple up", "copulate", "pair", "pair off", "coupling"]}, {"answer": "coursing", "hint": "synonyms for coursing", "clues": ["feed", "run", "flow", "course", "coursing"]}, {"answer": "courting", "hint": "synonyms for courting", "clues": ["court", "romance", "solicit", "woo"]}, {"answer": "cover", "hint": "synonyms for cover", "clues": ["insure", "cut through", "overlay", "incubate", "continue", "deal", "cross", "spread over", "get across", "wrap up", "cut across", "pass over", "breed", "underwrite", "brood", "get over", "traverse", "track", "handle", "shroud", "hatch", "treat", "hide", "report", "compensate", "comprehend", "cover up", "encompass", "address", "overcompensate", "embrace", "plow", "extend", "cover"]}, {"answer": "covering", "hint": "synonyms for covering", "clues": ["insure", "cut through", "overlay", "incubate", "continue", "deal", "cross", "spread over", "get across", "wrap up", "cut across", "pass over", "breed", "cover", "underwrite", "brood", "get over", "traverse", "track", "handle", "shroud", "hatch", "treat", "hide", "report", "compensate", "comprehend", "cover up", "encompass", "address", "overcompensate", "embrace", "plow", "extend"]}, {"answer": "crab", "hint": "synonyms for crab", "clues": ["squawk", "beef", "bitch", "grouse", "bellyache", "holler", "gripe", "crab"]}, {"answer": "crabs", "hint": "synonyms for crabs", "clues": ["beef", "grouse", "gripe", "squawk", "bitch", "bellyache", "crab", "holler"]}, {"answer": "crackling", "hint": "synonyms for crackling", "clues": ["crackle", "crepitate", "crunch", "scranch", "crackling"]}, {"answer": "cracklings", "hint": "synonyms for cracklings", "clues": ["crackle", "crepitate", "crunch", "scranch", "cracklings"]}, {"answer": "crap", "hint": "synonyms for crap", "clues": ["defecate", "make", "take a shit", "shit", "take a crap", "ca-ca", "stool", "crap"]}, {"answer": "crape", "hint": "synonyms for crape", "clues": ["kink", "frizz", "kink up", "crimp", "crepe", "frizzle", "crape"]}, {"answer": "craps", "hint": "synonyms for craps", "clues": ["defecate", "crap", "make", "ca-ca", "stool", "take a shit", "shit", "take a crap"]}, {"answer": "crash", "hint": "synonyms for crash", "clues": ["break up", "barge in", "gate-crash", "doss down", "doss", "go down", "dash", "break apart", "ram", "crash"]}, {"answer": "craving", "hint": "synonyms for craving", "clues": ["crave", "hunger", "starve", "thirst", "lust", "craving"]}, {"answer": "crawfish", "hint": "synonyms for crawfish", "clues": ["back out", "retreat", "back away", "pull in one's horns", "pull back", "crawfish out", "withdraw", "crawfish"]}, {"answer": "crawl", "hint": "synonyms for crawl", "clues": ["creep", "cower", "grovel", "fawn", "cringe", "crawl"]}, {"answer": "crawling", "hint": "synonyms for crawling", "clues": ["crawl", "cower", "fawn", "cringe", "creep", "grovel"]}, {"answer": "creak", "hint": "synonyms for creak", "clues": ["whine", "skreak", "squeak", "screak", "screech"]}, {"answer": "creaking", "hint": "synonyms for creaking", "clues": ["whine", "skreak", "squeak", "creak", "screech"]}, {"answer": "cream", "hint": "synonyms for cream", "clues": ["bat", "skim off", "skim", "cream off", "drub", "thrash", "lick", "clobber", "cream"]}, {"answer": "crease", "hint": "synonyms for crease", "clues": ["scrunch", "rumple", "graze", "crinkle", "crisp", "furrow", "ruckle", "scrunch up", "rake", "crease"]}, {"answer": "creep", "hint": "synonyms for creep", "clues": ["crawl", "cower", "fawn", "cringe", "sneak", "mouse", "grovel", "pussyfoot", "creep"]}, {"answer": "creeping", "hint": "synonyms for creeping", "clues": ["crawl", "cower", "fawn", "cringe", "sneak", "creep", "mouse", "grovel", "pussyfoot"]}, {"answer": "creeps", "hint": "synonyms for creeps", "clues": ["crawl", "cower", "fawn", "cringe", "sneak", "creep", "mouse", "grovel", "pussyfoot"]}, {"answer": "crimp", "hint": "synonyms for crimp", "clues": ["kink", "frizz", "kink up", "pinch", "crape", "frizzle", "crimp"]}, {"answer": "crinkle", "hint": "synonyms for crinkle", "clues": ["scrunch", "rumple", "ruckle", "crisp", "crease", "wrinkle", "scrunch up"]}, {"answer": "croak", "hint": "synonyms for croak", "clues": ["decease", "cash in one's chips", "go", "pop off", "cronk", "mutter", "expire", "grumble", "drop dead", "die", "buy the farm", "exit", "choke", "give-up the ghost", "perish", "gnarl", "snuff it", "pass", "kick the bucket", "murmur", "pass away", "croak"]}, {"answer": "croaking", "hint": "synonyms for croaking", "clues": ["decease", "cash in one's chips", "go", "pop off", "cronk", "mutter", "expire", "grumble", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "give-up the ghost", "perish", "gnarl", "snuff it", "pass", "kick the bucket", "murmur", "pass away"]}, {"answer": "crop", "hint": "synonyms for crop", "clues": ["cultivate", "range", "work", "clip", "trim", "browse", "pasture", "cut back", "graze", "prune", "dress", "snip", "lop", "crop"]}, {"answer": "crossbreed", "hint": "synonyms for crossbreed", "clues": ["hybridize", "interbreed", "cross", "crossbreed"]}, {"answer": "crossbreeding", "hint": "synonyms for crossbreeding", "clues": ["interbreed", "crossbreed", "hybridize", "cross"]}, {"answer": "crossing", "hint": "synonyms for crossing", "clues": ["cut through", "scotch", "cross", "get across", "crossbreed", "hybridize", "cut across", "pass over", "cover", "span", "traverse", "track", "thwart", "interbreed", "sweep", "spoil", "intersect", "queer", "frustrate", "baffle", "bilk", "foil", "get over"]}, {"answer": "crouch", "hint": "synonyms for crouch", "clues": ["scrunch up", "scrunch", "squat", "stoop", "bow", "bend", "hunker down", "hunker", "crouch"]}, {"answer": "crowding", "hint": "synonyms for crowding", "clues": ["push", "herd", "crowd", "crowd together"]}, {"answer": "crunch", "hint": "synonyms for crunch", "clues": ["crackle", "cranch", "mash", "grind", "comminute", "munch", "bray", "crunch"]}, {"answer": "crusade", "hint": "synonyms for crusade", "clues": ["campaign", "press", "agitate", "push", "fight", "crusade"]}, {"answer": "crush", "hint": "synonyms for crush", "clues": ["vanquish", "mash", "beat out", "demolish", "suppress", "squelch", "squeeze", "shell", "beat", "oppress", "jam", "squash", "break down", "trounce", "crush"]}, {"answer": "cry", "hint": "synonyms for cry", "clues": ["hollo", "yell", "call", "scream", "outcry", "squall", "exclaim", "weep", "shout out", "call out", "cry out", "shout", "holler", "blazon out", "cry"]}, {"answer": "crystallizing", "hint": "synonyms for crystallizing", "clues": ["sort out", "crystallize", "straighten out", "shed light on", "elucidate", "enlighten", "illuminate", "clear up", "effloresce", "clear", "crystallizing"]}, {"answer": "cuckold", "hint": "synonyms for cuckold", "clues": ["wander", "cheat", "betray", "cheat on", "cuckold"]}, {"answer": "cuddle", "hint": "synonyms for cuddle", "clues": ["nestle", "draw close", "nest", "snuggle", "nuzzle", "cuddle"]}, {"answer": "cuddling", "hint": "synonyms for cuddling", "clues": ["nestle", "cuddle", "draw close", "nest", "snuggle", "nuzzle", "cuddling"]}, {"answer": "curb", "hint": "synonyms for curb", "clues": ["subdue", "control", "moderate", "restrict", "suppress", "cut back", "hold in", "curtail", "hold", "contain", "conquer", "stamp down", "check", "inhibit", "curb"]}, {"answer": "curbing", "hint": "synonyms for curbing", "clues": ["subdue", "control", "curb", "moderate", "restrict", "suppress", "cut back", "hold in", "curtail", "hold", "contain", "conquer", "stamp down", "check", "inhibit"]}, {"answer": "curl", "hint": "synonyms for curl", "clues": ["curl up", "kink", "draw in", "coil", "wave", "curve", "loop", "curl"]}, {"answer": "curse", "hint": "synonyms for curse", "clues": ["cuss", "damn", "beshrew", "excommunicate", "unchurch", "bedamn", "blaspheme", "anathemise", "swear", "maledict", "imprecate", "curse"]}, {"answer": "curve", "hint": "synonyms for curve", "clues": ["trend", "veer", "sheer", "wind", "cut", "twist", "arc", "crook", "curl", "slew", "swerve", "kink", "slue", "curve"]}, {"answer": "cuss", "hint": "synonyms for cuss", "clues": ["curse", "swear", "blaspheme", "imprecate", "cuss"]}, {"answer": "cycle", "hint": "synonyms for cycle", "clues": ["bike", "motorcycle", "wheel", "motorbike", "pedal", "bicycle", "cycle"]}, {"answer": "cycling", "hint": "synonyms for cycling", "clues": ["cycle", "pedal", "bicycle", "bike", "motorcycle", "wheel", "motorbike", "cycling"]}, {"answer": "cypher", "hint": "synonyms for cypher", "clues": ["write in code", "cipher", "code", "compute", "inscribe", "work out", "figure", "reckon", "encrypt", "calculate", "cypher"]}, {"answer": "dampening", "hint": "synonyms for dampening", "clues": ["break", "tone down", "soften", "stifle", "weaken", "moisten", "mute", "damp", "wash", "dull", "muffle", "dampen", "deaden"]}, {"answer": "dart", "hint": "synonyms for dart", "clues": ["flash", "shoot", "fleet", "scud", "scoot", "dash", "flutter", "flit", "dart"]}, {"answer": "darts", "hint": "synonyms for darts", "clues": ["flash", "shoot", "fleet", "scud", "scoot", "dart", "dash", "flutter", "flit"]}, {"answer": "dash", "hint": "synonyms for dash", "clues": ["flash", "shoot", "scud", "scoot", "dart", "scare away", "frighten off", "daunt", "smash", "scare", "pall", "frighten away", "crash", "scare off", "dash"]}, {"answer": "date", "hint": "synonyms for date", "clues": ["go steady", "see", "date stamp", "go out", "date"]}, {"answer": "dating", "hint": "synonyms for dating", "clues": ["go steady", "see", "go out", "date stamp", "date", "dating"]}, {"answer": "dawdling", "hint": "synonyms for dawdling", "clues": ["linger", "fall back", "lag", "dally", "dawdle", "fall behind", "dawdling"]}, {"answer": "dawn", "hint": "synonyms for dawn", "clues": ["penetrate", "click", "come home", "sink in", "get through", "fall into place", "get across", "dawn"]}, {"answer": "dawning", "hint": "synonyms for dawning", "clues": ["click", "come home", "sink in", "get through", "get across", "penetrate", "dawn", "fall into place"]}, {"answer": "daydream", "hint": "synonyms for daydream", "clues": ["stargaze", "moon", "dream", "woolgather", "daydream"]}, {"answer": "daydreaming", "hint": "synonyms for daydreaming", "clues": ["dream", "woolgather", "daydream", "stargaze", "moon"]}, {"answer": "daze", "hint": "synonyms for daze", "clues": ["bedaze", "stun", "dazzle", "daze"]}, {"answer": "deal", "hint": "synonyms for deal", "clues": ["apportion", "portion out", "deal out", "shell out", "look at", "make do", "consider", "cover", "make out", "carry on", "cope", "share", "get by", "care", "distribute", "lot", "handle", "grapple", "take", "treat", "mete out", "allot", "dole out", "contend", "dispense", "divvy up", "manage", "parcel out", "conduct", "address", "administer", "sell", "dish out", "plow", "trade", "deal"]}, {"answer": "dealing", "hint": "synonyms for dealing", "clues": ["apportion", "portion out", "deal out", "deal", "shell out", "look at", "make do", "consider", "cover", "make out", "carry on", "cope", "share", "get by", "care", "distribute", "lot", "handle", "grapple", "take", "treat", "mete out", "allot", "dole out", "contend", "dispense", "divvy up", "manage", "parcel out", "conduct", "address", "administer", "sell", "dish out", "plow", "trade"]}, {"answer": "dealings", "hint": "synonyms for dealings", "clues": ["apportion", "portion out", "deal out", "deal", "shell out", "look at", "make do", "consider", "cover", "make out", "carry on", "cope", "share", "get by", "care", "distribute", "lot", "handle", "grapple", "take", "treat", "mete out", "allot", "dole out", "contend", "dispense", "divvy up", "manage", "parcel out", "conduct", "address", "administer", "sell", "dish out", "plow", "trade", "dealings"]}, {"answer": "debate", "hint": "synonyms for debate", "clues": ["consider", "fence", "deliberate", "contend", "argue", "moot", "turn over", "debate"]}, {"answer": "debauch", "hint": "synonyms for debauch", "clues": ["deprave", "pervert", "corrupt", "demoralize", "vitiate", "misdirect", "profane", "subvert", "debase", "debauch"]}, {"answer": "decay", "hint": "synonyms for decay", "clues": ["crumble", "decompose", "dilapidate", "disintegrate", "decay"]}, {"answer": "decease", "hint": "synonyms for decease", "clues": ["cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "decease"]}, {"answer": "deck", "hint": "synonyms for deck", "clues": ["decorate", "embellish", "bedeck", "knock down", "beautify", "floor", "dump", "adorn", "bedight", "grace", "coldcock", "deck"]}, {"answer": "decline", "hint": "synonyms for decline", "clues": ["worsen", "go down", "slump", "correct", "wane", "refuse", "reject", "turn down", "pass up", "decline"]}, {"answer": "decompressing", "hint": "synonyms for decompressing", "clues": ["uncompress", "slow down", "relax", "unwind", "depressurise", "decompress", "loosen up", "unbend"]}, {"answer": "decrease", "hint": "synonyms for decrease", "clues": ["diminish", "lessen", "minify", "fall", "decrease"]}, {"answer": "defeat", "hint": "synonyms for defeat", "clues": ["vote out", "overcome", "shoot down", "vote down", "get the better of", "kill", "defeat"]}, {"answer": "defile", "hint": "synonyms for defile", "clues": ["sully", "maculate", "corrupt", "taint", "befoul", "stain", "foul", "tarnish", "cloud", "defile"]}, {"answer": "defining", "hint": "synonyms for defining", "clues": ["specify", "delimit", "limit", "set", "define", "delimitate", "delineate", "determine", "fix", "defining"]}, {"answer": "delay", "hint": "synonyms for delay", "clues": ["hold up", "detain", "retard", "check", "stay", "delay"]}, {"answer": "delegating", "hint": "synonyms for delegating", "clues": ["designate", "depute", "delegate", "assign", "delegating"]}, {"answer": "delight", "hint": "synonyms for delight", "clues": ["please", "enchant", "enthral", "transport", "revel", "enrapture", "ravish", "enjoy", "delight"]}, {"answer": "deluge", "hint": "synonyms for deluge", "clues": ["swamp", "flood out", "overwhelm", "submerge", "inundate", "flood", "deluge"]}, {"answer": "demand", "hint": "synonyms for demand", "clues": ["ask", "necessitate", "need", "involve", "take", "exact", "postulate", "require", "call for", "demand"]}, {"answer": "demo", "hint": "synonyms for demo", "clues": ["exhibit", "present", "show", "demonstrate", "demo"]}, {"answer": "demolishing", "hint": "synonyms for demolishing", "clues": ["pulverize", "crush", "demolish", "destroy", "smash"]}, {"answer": "depicting", "hint": "synonyms for depicting", "clues": ["limn", "portray", "render", "describe", "picture", "show", "draw", "depict"]}, {"answer": "deposit", "hint": "synonyms for deposit", "clues": ["posit", "situate", "fix", "wedge", "bank", "stick", "lodge", "deposit"]}, {"answer": "deriving", "hint": "synonyms for deriving", "clues": ["come", "educe", "derive", "gain", "deduct", "infer", "descend", "deriving"]}, {"answer": "desert", "hint": "synonyms for desert", "clues": ["abandon", "forsake", "defect", "desolate", "desert"]}, {"answer": "deserts", "hint": "synonyms for deserts", "clues": ["abandon", "desert", "defect", "desolate", "forsake"]}, {"answer": "despising", "hint": "synonyms for despising", "clues": ["despise", "scorn", "disdain", "contemn", "despising"]}, {"answer": "detecting", "hint": "synonyms for detecting", "clues": ["find", "notice", "observe", "discover", "detect"]}, {"answer": "devil", "hint": "synonyms for devil", "clues": ["nark", "chafe", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "devil"]}, {"answer": "devise", "hint": "synonyms for devise", "clues": ["get up", "organize", "formulate", "contrive", "prepare", "machinate", "excogitate", "forge", "invent", "devise"]}, {"answer": "devising", "hint": "synonyms for devising", "clues": ["get up", "organize", "devise", "formulate", "contrive", "prepare", "machinate", "excogitate", "forge", "invent", "devising"]}, {"answer": "die", "hint": "synonyms for die", "clues": ["decease", "cash in one's chips", "go", "pop off", "break", "give out", "go bad", "become flat", "expire", "die out", "drop dead", "conk out", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "pall", "perish", "give way", "snuff it", "pass", "kick the bucket", "break down", "fail", "pass away", "die"]}, {"answer": "dig", "hint": "synonyms for dig", "clues": ["hollow", "labour", "dig up", "excavate", "grok", "prod", "get the picture", "moil", "apprehend", "stab", "fag", "drudge", "grind", "turn over", "travail", "jab", "comprehend", "grasp", "poke", "cut into", "savvy", "compass", "dig out", "delve", "toil", "dig"]}, {"answer": "digest", "hint": "synonyms for digest", "clues": ["support", "condense", "stomach", "put up", "abide", "concentrate", "bear", "tolerate", "brook", "stand", "endure", "stick out", "suffer", "digest"]}, {"answer": "digging", "hint": "synonyms for digging", "clues": ["hollow", "labour", "dig up", "excavate", "grok", "prod", "get the picture", "moil", "apprehend", "dig", "stab", "fag", "drudge", "grind", "turn over", "travail", "jab", "comprehend", "grasp", "poke", "cut into", "savvy", "compass", "dig out", "delve", "toil", "digging"]}, {"answer": "digs", "hint": "synonyms for digs", "clues": ["hollow", "labour", "dig up", "excavate", "grok", "prod", "get the picture", "moil", "apprehend", "dig", "stab", "fag", "drudge", "grind", "turn over", "travail", "jab", "comprehend", "grasp", "poke", "cut into", "savvy", "compass", "dig out", "delve", "toil"]}, {"answer": "dip", "hint": "synonyms for dip", "clues": ["sink", "dunk", "duck", "dim", "souse", "plunge", "douse", "dip"]}, {"answer": "dirtying", "hint": "synonyms for dirtying", "clues": ["soil", "colly", "grime", "begrime", "bemire", "dirty"]}, {"answer": "disappearing", "hint": "synonyms for disappearing", "clues": ["evaporate", "disappear", "go away", "vanish", "melt"]}, {"answer": "discard", "hint": "synonyms for discard", "clues": ["dispose", "put away", "cast away", "toss", "toss out", "chuck out", "fling", "throw away", "cast aside", "throw out", "cast out", "toss away", "discard"]}, {"answer": "discharge", "hint": "synonyms for discharge", "clues": ["exonerate", "eject", "dispatch", "exculpate", "fire", "expel", "drop off", "complete", "acquit", "drop", "unload", "free", "assoil", "muster out", "put down", "exhaust", "empty", "set down", "release", "go off", "clear", "discharge"]}, {"answer": "discipline", "hint": "synonyms for discipline", "clues": ["condition", "sort out", "correct", "check", "train", "discipline"]}, {"answer": "discount", "hint": "synonyms for discount", "clues": ["push aside", "disregard", "dismiss", "brush off", "ignore", "discount"]}, {"answer": "discourse", "hint": "synonyms for discourse", "clues": ["hold forth", "dissertate", "discuss", "converse", "talk about", "discourse"]}, {"answer": "disdain", "hint": "synonyms for disdain", "clues": ["freeze off", "despise", "spurn", "pooh-pooh", "reject", "turn down", "scorn", "contemn", "disdain"]}, {"answer": "disgrace", "hint": "synonyms for disgrace", "clues": ["shame", "put down", "demean", "discredit", "dishonour", "degrade", "attaint", "take down", "disgrace"]}, {"answer": "disgust", "hint": "synonyms for disgust", "clues": ["revolt", "nauseate", "churn up", "repel", "gross out", "sicken", "disgust"]}, {"answer": "dish", "hint": "synonyms for dish", "clues": ["serve up", "dish out", "dish up", "serve", "dish"]}, {"answer": "dishonor", "hint": "synonyms for dishonor", "clues": ["assault", "shame", "rape", "disgrace", "attaint", "ravish", "violate", "dishonour", "outrage"]}, {"answer": "dishonour", "hint": "synonyms for dishonour", "clues": ["assault", "shame", "rape", "disgrace", "attaint", "ravish", "violate", "dishonor", "outrage"]}, {"answer": "dismantling", "hint": "synonyms for dismantling", "clues": ["break up", "tear down", "raze", "rase", "level", "strip", "disassemble", "break apart", "pull down", "take down", "dismantle", "take apart", "dismantling"]}, {"answer": "dismay", "hint": "synonyms for dismay", "clues": ["appall", "horrify", "demoralize", "depress", "dispirit", "deject", "cast down", "alarm", "get down", "dismay"]}, {"answer": "dismount", "hint": "synonyms for dismount", "clues": ["light", "get off", "unhorse", "get down", "dismount"]}, {"answer": "disorder", "hint": "synonyms for disorder", "clues": ["cark", "trouble", "unhinge", "disquiet", "perturb", "disarray", "distract", "disorder"]}, {"answer": "disowning", "hint": "synonyms for disowning", "clues": ["renounce", "repudiate", "disown", "disinherit"]}, {"answer": "dispatch", "hint": "synonyms for dispatch", "clues": ["remove", "hit", "polish off", "send off", "slay", "bump off", "murder", "complete", "despatch", "discharge", "off"]}, {"answer": "dispute", "hint": "synonyms for dispute", "clues": ["quarrel", "argufy", "altercate", "gainsay", "scrap", "challenge", "dispute"]}, {"answer": "disquiet", "hint": "synonyms for disquiet", "clues": ["cark", "trouble", "unhinge", "perturb", "disorder", "distract", "disquiet"]}, {"answer": "disregard", "hint": "synonyms for disregard", "clues": ["push aside", "cut", "discount", "brush off", "dismiss", "ignore", "snub", "neglect", "disregard"]}, {"answer": "dissembling", "hint": "synonyms for dissembling", "clues": ["mask", "pretend", "act", "feign", "affect", "cloak", "dissemble", "sham", "dissembling"]}, {"answer": "dissent", "hint": "synonyms for dissent", "clues": ["differ", "protest", "resist", "disagree", "take issue", "dissent"]}, {"answer": "dissolve", "hint": "synonyms for dissolve", "clues": ["break up", "resolve", "dismiss", "unthaw", "disband", "fade out", "fade away", "unfreeze", "dethaw", "thaw", "melt", "dissolve"]}, {"answer": "dissolving", "hint": "synonyms for dissolving", "clues": ["break up", "resolve", "dismiss", "unthaw", "disband", "fade out", "fade away", "unfreeze", "dethaw", "dissolve", "thaw", "melt", "dissolving"]}, {"answer": "divide", "hint": "synonyms for divide", "clues": ["split", "split up", "separate", "carve up", "part", "dissever", "fraction", "disunite", "divide"]}, {"answer": "divorce", "hint": "synonyms for divorce", "clues": ["disassociate", "disunite", "split up", "disjoint", "divorce"]}, {"answer": "do", "hint": "synonyms for do", "clues": ["make", "suffice", "practise", "coiffure", "exercise", "fare", "execute", "make out", "dress", "coif", "serve", "act", "come", "set", "get along", "perform", "behave", "manage", "answer", "cause", "arrange", "do"]}, {"answer": "doctor", "hint": "synonyms for doctor", "clues": ["touch on", "furbish up", "doctor up", "restore", "mend", "sophisticate", "repair", "fix", "bushel", "doctor"]}, {"answer": "dodder", "hint": "synonyms for dodder", "clues": ["coggle", "toddle", "waddle", "paddle", "totter", "dodder"]}, {"answer": "dodge", "hint": "synonyms for dodge", "clues": ["elude", "put off", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep", "dodge"]}, {"answer": "dodging", "hint": "synonyms for dodging", "clues": ["elude", "put off", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep", "dodging"]}, {"answer": "dog", "hint": "synonyms for dog", "clues": ["tail", "tag", "chase after", "go after", "give chase", "chase", "track", "dog"]}, {"answer": "doings", "hint": "synonyms for doings", "clues": ["do", "make", "suffice", "practise", "coiffure", "exercise", "fare", "execute", "make out", "dress", "coif", "serve", "act", "come", "set", "get along", "perform", "behave", "manage", "answer", "cause", "arrange", "doings"]}, {"answer": "don", "hint": "synonyms for don", "clues": ["wear", "put on", "get into", "assume", "don"]}, {"answer": "doom", "hint": "synonyms for doom", "clues": ["sentence", "fate", "destine", "condemn", "designate", "doom"]}, {"answer": "dos", "hint": "synonyms for dos", "clues": ["do", "make", "suffice", "practise", "coiffure", "exercise", "fare", "execute", "make out", "dress", "coif", "serve", "act", "come", "set", "get along", "perform", "behave", "manage", "answer", "cause", "arrange"]}, {"answer": "dot", "hint": "synonyms for dot", "clues": ["stud", "constellate", "disperse", "dust", "scatter", "sprinkle", "dot"]}, {"answer": "doubles", "hint": "synonyms for doubles", "clues": ["double", "duplicate", "double up", "repeat", "replicate", "double over"]}, {"answer": "doubling", "hint": "synonyms for doubling", "clues": ["double", "duplicate", "double up", "repeat", "replicate", "double over", "doubling"]}, {"answer": "dousing", "hint": "synonyms for dousing", "clues": ["dip", "dowse", "put out", "souse", "douse", "soak", "dunk", "duck", "sop", "drench", "plunge", "dousing"]}, {"answer": "downing", "hint": "synonyms for downing", "clues": ["devour", "down", "fine-tune", "pour down", "belt down", "drink down", "pop", "pull down", "shoot down", "refine", "kill", "toss off", "go through", "polish", "knock down", "cut down", "land", "consume", "push down"]}, {"answer": "dowse", "hint": "synonyms for dowse", "clues": ["soak", "sop", "souse", "douse", "drench", "dowse"]}, {"answer": "dowsing", "hint": "synonyms for dowsing", "clues": ["dowse", "souse", "douse", "soak", "sop", "drench", "dowsing"]}, {"answer": "draft", "hint": "synonyms for draft", "clues": ["blueprint", "enlist", "muster in", "outline", "draught", "draft"]}, {"answer": "drafting", "hint": "synonyms for drafting", "clues": ["blueprint", "draft", "enlist", "muster in", "outline", "draught"]}, {"answer": "drag", "hint": "synonyms for drag", "clues": ["drag on", "embroil", "drop back", "sweep up", "hale", "draw", "trail", "get behind", "haul", "drop behind", "cart", "hang back", "puff", "sweep", "tangle", "drag out", "scuff", "dredge", "drag"]}, {"answer": "draw", "hint": "synonyms for draw", "clues": ["take up", "disembowel", "take in", "run", "pull out", "soak up", "withdraw", "pull", "imbibe", "absorb", "pull in", "reap", "describe", "take out", "suck up", "attract", "pull back", "draw and quarter", "thread", "force", "drag", "make", "draw off", "line", "string", "cast", "sop up", "suck", "tie", "puff", "get out", "quarter", "guide", "trace", "draw in", "delineate", "eviscerate", "pass", "depict", "get", "draw"]}, {"answer": "drawing", "hint": "synonyms for drawing", "clues": ["take up", "disembowel", "draw", "take in", "run", "pull out", "soak up", "withdraw", "pull", "imbibe", "absorb", "pull in", "reap", "describe", "take out", "suck up", "attract", "pull back", "draw and quarter", "thread", "force", "drag", "make", "draw off", "line", "string", "cast", "sop up", "suck", "tie", "puff", "get out", "quarter", "guide", "trace", "draw in", "delineate", "eviscerate", "pass", "depict", "get"]}, {"answer": "dreaming", "hint": "synonyms for dreaming", "clues": ["dream", "woolgather", "daydream", "stargaze"]}, {"answer": "drenching", "hint": "synonyms for drenching", "clues": ["dowse", "souse", "douse", "imbrue", "swamp", "soak", "sop", "drench"]}, {"answer": "dressing", "hint": "synonyms for dressing", "clues": ["garment", "do", "clip", "primp", "coiffure", "enclothe", "cut back", "tog", "apparel", "plume", "habilitate", "dress", "snip", "raiment", "get dressed", "decorate", "trim", "coif", "dress out", "preen", "set", "groom", "garnish", "garb", "prune", "crop", "line up", "curry", "fit out", "dress up", "arrange", "lop"]}, {"answer": "drew", "hint": "synonyms for drew", "clues": ["take up", "disembowel", "draw", "take in", "run", "pull out", "soak up", "withdraw", "pull", "imbibe", "absorb", "pull in", "reap", "describe", "take out", "suck up", "attract", "pull back", "draw and quarter", "thread", "force", "drag", "make", "draw off", "line", "string", "cast", "sop up", "suck", "tie", "puff", "get out", "quarter", "guide", "trace", "draw in", "delineate", "eviscerate", "pass", "depict", "get", "drew"]}, {"answer": "dribble", "hint": "synonyms for dribble", "clues": ["slabber", "drip", "slaver", "drivel", "carry", "trickle", "filter", "drop", "drool", "dribble"]}, {"answer": "dribbling", "hint": "synonyms for dribbling", "clues": ["slabber", "drip", "slaver", "drivel", "carry", "trickle", "filter", "drop", "drool", "dribble", "dribbling"]}, {"answer": "drift", "hint": "synonyms for drift", "clues": ["err", "freewheel", "ramble", "wander", "roll", "be adrift", "float", "tramp", "cast", "stray", "range", "rove", "blow", "swan", "vagabond", "roam", "drift"]}, {"answer": "drill", "hint": "synonyms for drill", "clues": ["exercise", "practice", "bore", "drill"]}, {"answer": "drilling", "hint": "synonyms for drilling", "clues": ["drill", "practise", "exercise", "bore"]}, {"answer": "drink", "hint": "synonyms for drink", "clues": ["imbibe", "pledge", "drink in", "toast", "salute", "booze", "wassail", "fuddle", "tope", "drink"]}, {"answer": "drinking", "hint": "synonyms for drinking", "clues": ["imbibe", "drink", "pledge", "drink in", "toast", "booze", "salute", "fuddle", "wassail", "tope"]}, {"answer": "drive", "hint": "synonyms for drive", "clues": ["labour", "take", "push", "repel", "motor", "ride", "repulse", "force back", "push back", "aim", "ram", "force", "tug", "get", "beat back", "drive"]}, {"answer": "drivel", "hint": "synonyms for drivel", "clues": ["slabber", "slaver", "drool", "dribble", "drivel"]}, {"answer": "drool", "hint": "synonyms for drool", "clues": ["slabber", "slaver", "dribble", "drivel", "salivate", "drool"]}, {"answer": "droop", "hint": "synonyms for droop", "clues": ["swag", "flag", "wilt", "loll", "droop"]}, {"answer": "drop", "hint": "synonyms for drop", "clues": ["leave out", "drip", "strike down", "dismiss", "shed", "cast off", "drop off", "send away", "unload", "discharge", "sink", "overleap", "deteriorate", "dangle", "throw off", "pretermit", "devolve", "fell", "spend", "cast", "dribble", "throw away", "send packing", "neglect", "miss", "throw", "flatten", "degenerate", "omit", "swing", "knock off", "expend", "shake off", "put down", "set down", "drop down", "overlook", "drop"]}, {"answer": "drove", "hint": "synonyms for drove", "clues": ["labour", "take", "push", "repel", "motor", "get", "ride", "repulse", "force back", "push back", "aim", "ram", "force", "tug", "drive", "beat back", "drove"]}, {"answer": "drubbing", "hint": "synonyms for drubbing", "clues": ["bat", "drub", "thrash", "lick", "cream", "clobber", "drubbing"]}, {"answer": "drudge", "hint": "synonyms for drudge", "clues": ["labour", "fag", "grind", "travail", "moil", "toil", "dig", "drudge"]}, {"answer": "drum", "hint": "synonyms for drum", "clues": ["bone", "get up", "mug up", "thrum", "beat", "swot", "swot up", "grind away", "bone up", "cram", "drum"]}, {"answer": "drumming", "hint": "synonyms for drumming", "clues": ["bone", "get up", "mug up", "drum", "thrum", "beat", "swot", "swot up", "grind away", "bone up", "cram", "drumming"]}, {"answer": "duck", "hint": "synonyms for duck", "clues": ["elude", "dip", "put off", "dodge", "evade", "hedge", "douse", "skirt", "circumvent", "parry", "fudge", "sidestep", "duck"]}, {"answer": "ducking", "hint": "synonyms for ducking", "clues": ["elude", "dip", "put off", "dodge", "evade", "hedge", "douse", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep"]}, {"answer": "dug", "hint": "synonyms for dug", "clues": ["hollow", "labour", "dig up", "excavate", "grok", "prod", "get the picture", "moil", "apprehend", "dig", "stab", "fag", "drudge", "grind", "turn over", "travail", "jab", "comprehend", "grasp", "poke", "cut into", "savvy", "compass", "dig out", "delve", "toil", "dug"]}, {"answer": "dulles", "hint": "synonyms for dulles", "clues": ["tone down", "mute", "damp", "pall", "dull", "numb", "muffle", "dampen", "blunt", "benumb"]}, {"answer": "dump", "hint": "synonyms for dump", "clues": ["ditch", "underprice", "coldcock", "knock down", "plunge", "deck", "floor", "dump"]}, {"answer": "dumping", "hint": "synonyms for dumping", "clues": ["ditch", "underprice", "knock down", "floor", "deck", "plunge", "dump", "coldcock"]}, {"answer": "dumps", "hint": "synonyms for dumps", "clues": ["ditch", "underprice", "knock down", "floor", "deck", "plunge", "dump", "coldcock"]}, {"answer": "dunk", "hint": "synonyms for dunk", "clues": ["dip", "souse", "plunge", "douse", "dunk"]}, {"answer": "dupe", "hint": "synonyms for dupe", "clues": ["put one across", "cod", "befool", "slang", "put one over", "gull", "fool", "take in", "put on", "dupe"]}, {"answer": "dust", "hint": "synonyms for dust", "clues": ["scatter", "disperse", "sprinkle", "dot", "dust"]}, {"answer": "dwelling", "hint": "synonyms for dwelling", "clues": ["lie", "harp", "populate", "dwell", "lie in", "brood", "consist", "inhabit"]}, {"answer": "earmark", "hint": "synonyms for earmark", "clues": ["allow", "appropriate", "set aside", "reserve", "earmark"]}, {"answer": "earnings", "hint": "synonyms for earnings", "clues": ["make", "realise", "earn", "pull in", "bring in", "gain", "garner", "take in", "clear", "earnings"]}, {"answer": "ease", "hint": "synonyms for ease", "clues": ["still", "relieve", "allay", "facilitate", "comfort", "alleviate", "ease"]}, {"answer": "easing", "hint": "synonyms for easing", "clues": ["still", "ease", "relieve", "allay", "facilitate", "comfort", "alleviate", "easing"]}, {"answer": "eating", "hint": "synonyms for eating", "clues": ["corrode", "rust", "feed", "wipe out", "eat on", "eat", "exhaust", "run through", "deplete", "eat up", "consume", "use up"]}, {"answer": "eats", "hint": "synonyms for eats", "clues": ["corrode", "rust", "feed", "wipe out", "eat on", "eat", "exhaust", "run through", "deplete", "eat up", "consume", "use up"]}, {"answer": "ebb", "hint": "synonyms for ebb", "clues": ["ebb down", "ebb away", "ebb off", "ebb out", "ebb"]}, {"answer": "ebbing", "hint": "synonyms for ebbing", "clues": ["ebb away", "ebb out", "ebb down", "ebb off", "ebb"]}, {"answer": "echo", "hint": "synonyms for echo", "clues": ["recall", "resound", "ring", "reverberate", "repeat", "echo"]}, {"answer": "eddy", "hint": "synonyms for eddy", "clues": ["swirl", "purl", "whirl", "whirlpool", "eddy"]}, {"answer": "edge", "hint": "synonyms for edge", "clues": ["butt on", "inch", "abut", "butt", "march", "butt against", "border", "adjoin", "edge"]}, {"answer": "edging", "hint": "synonyms for edging", "clues": ["butt on", "inch", "abut", "butt", "march", "butt against", "edge", "border", "adjoin", "edging"]}, {"answer": "editing", "hint": "synonyms for editing", "clues": ["edit out", "blue-pencil", "delete", "cut", "edit", "redact"]}, {"answer": "egress", "hint": "synonyms for egress", "clues": ["go forth", "emerge", "issue", "come out", "come forth", "egress"]}, {"answer": "ejaculate", "hint": "synonyms for ejaculate", "clues": ["blurt out", "blunder", "blurt", "blunder out", "ejaculate"]}, {"answer": "eluding", "hint": "synonyms for eluding", "clues": ["elude", "escape", "put off", "evade", "dodge", "hedge", "skirt", "bilk", "circumvent", "duck", "parry", "fudge", "sidestep", "eluding"]}, {"answer": "embrace", "hint": "synonyms for embrace", "clues": ["adopt", "espouse", "squeeze", "comprehend", "sweep up", "encompass", "bosom", "cover", "hug", "embrace"]}, {"answer": "embracing", "hint": "synonyms for embracing", "clues": ["adopt", "espouse", "squeeze", "comprehend", "sweep up", "encompass", "bosom", "cover", "embrace", "hug", "embracing"]}, {"answer": "embroideress", "hint": "synonyms for embroideress", "clues": ["embellish", "blow up", "dramatize", "aggrandise", "embroider", "lard", "pad"]}, {"answer": "emphasizing", "hint": "synonyms for emphasizing", "clues": ["accent", "stress", "underscore", "accentuate", "underline", "emphasise", "punctuate", "emphasizing"]}, {"answer": "employ", "hint": "synonyms for employ", "clues": ["utilise", "engage", "hire", "apply", "use", "employ"]}, {"answer": "emptying", "hint": "synonyms for emptying", "clues": ["abandon", "vacate", "empty", "void", "discharge"]}, {"answer": "enclosing", "hint": "synonyms for enclosing", "clues": ["close in", "wrap", "enclose", "enwrap", "put in", "insert", "enfold", "hold in", "introduce", "shut in", "envelop", "confine", "stick in", "enclosing"]}, {"answer": "encounter", "hint": "synonyms for encounter", "clues": ["come across", "see", "bump", "play", "receive", "meet", "find", "happen", "take on", "run into", "run across", "chance", "encounter"]}, {"answer": "end", "hint": "synonyms for end", "clues": ["terminate", "finish", "cease", "stop", "end"]}, {"answer": "ending", "hint": "synonyms for ending", "clues": ["terminate", "end", "finish", "cease", "stop"]}, {"answer": "enfolding", "hint": "synonyms for enfolding", "clues": ["envelop", "wrap", "enclose", "enwrap", "enfold"]}, {"answer": "engineer", "hint": "synonyms for engineer", "clues": ["mastermind", "organize", "direct", "orchestrate", "engineer"]}, {"answer": "engineering", "hint": "synonyms for engineering", "clues": ["engineer", "organize", "mastermind", "direct", "orchestrate"]}, {"answer": "engraving", "hint": "synonyms for engraving", "clues": ["grave", "scratch", "etch", "engrave", "inscribe", "engraving"]}, {"answer": "enjoining", "hint": "synonyms for enjoining", "clues": ["say", "enjoin", "order", "tell"]}, {"answer": "enlisting", "hint": "synonyms for enlisting", "clues": ["draft", "enlist", "muster in", "engage"]}, {"answer": "entail", "hint": "synonyms for entail", "clues": ["imply", "mean", "fee-tail", "implicate", "entail"]}, {"answer": "entering", "hint": "synonyms for entering", "clues": ["enrol", "insert", "introduce", "infix", "go into", "record", "participate", "get in", "move into", "go in", "accede", "embark", "enter", "put down", "inscribe", "figure", "recruit", "come in"]}, {"answer": "entrance", "hint": "synonyms for entrance", "clues": ["enchant", "captivate", "fascinate", "capture", "trance", "beguile", "catch", "becharm", "enamour", "spellbind", "charm", "bewitch"]}, {"answer": "environs", "hint": "synonyms for environs", "clues": ["skirt", "ring", "surround", "border", "environ"]}, {"answer": "envisioning", "hint": "synonyms for envisioning", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "foresee", "project", "image"]}, {"answer": "equating", "hint": "synonyms for equating", "clues": ["correspond", "equate", "match", "liken", "equal", "equalize", "compare", "equating"]}, {"answer": "equipping", "hint": "synonyms for equipping", "clues": ["outfit", "fit out", "fit", "equip", "equipping"]}, {"answer": "erecting", "hint": "synonyms for erecting", "clues": ["rear", "raise", "set up", "erect", "put up"]}, {"answer": "eroding", "hint": "synonyms for eroding", "clues": ["gnaw at", "gnaw", "wear away", "eat at", "erode", "eat away", "fret", "eroding"]}, {"answer": "escape", "hint": "synonyms for escape", "clues": ["fly the coop", "head for the hills", "bunk", "get away", "break loose", "scat", "run", "get by", "miss", "elude", "break away", "hightail it", "get out", "turn tail", "get off", "scarper", "lam", "run away", "take to the woods", "escape"]}, {"answer": "essay", "hint": "synonyms for essay", "clues": ["prove", "test", "try out", "attempt", "seek", "assay", "examine", "try", "essay"]}, {"answer": "esteem", "hint": "synonyms for esteem", "clues": ["think of", "take to be", "prise", "repute", "respect", "value", "look on", "prize", "regard as", "esteem"]}, {"answer": "estimate", "hint": "synonyms for estimate", "clues": ["gauge", "figure", "approximate", "judge", "forecast", "guess", "reckon", "count on", "calculate", "estimate"]}, {"answer": "evening", "hint": "synonyms for evening", "clues": ["even out", "level", "flush", "even"]}, {"answer": "evidence", "hint": "synonyms for evidence", "clues": ["certify", "prove", "demonstrate", "testify", "attest", "tell", "bear witness", "show", "manifest", "evidence"]}, {"answer": "exchange", "hint": "synonyms for exchange", "clues": ["substitute", "switch", "change", "convert", "interchange", "commute", "switch over", "replace"]}, {"answer": "exclaiming", "hint": "synonyms for exclaiming", "clues": ["outcry", "proclaim", "cry", "exclaim", "promulgate", "call out", "cry out", "shout"]}, {"answer": "excreting", "hint": "synonyms for excreting", "clues": ["excrete", "pass", "eliminate", "egest", "excreting"]}, {"answer": "excuse", "hint": "synonyms for excuse", "clues": ["exempt", "beg off", "apologise", "explain", "rationalize", "condone", "justify", "relieve", "let off", "pardon", "excuse"]}, {"answer": "executing", "hint": "synonyms for executing", "clues": ["do", "fulfill", "action", "carry out", "carry through", "execute", "run", "perform", "accomplish", "put to death", "executing"]}, {"answer": "exercise", "hint": "synonyms for exercise", "clues": ["do", "exert", "practise", "work", "work out", "drill", "exercise"]}, {"answer": "exercising", "hint": "synonyms for exercising", "clues": ["do", "exert", "practise", "work", "work out", "exercise", "drill", "exercising"]}, {"answer": "exhaust", "hint": "synonyms for exhaust", "clues": ["eject", "wash up", "wipe out", "tire", "expel", "run through", "deplete", "play out", "run down", "discharge", "tucker", "sap", "beat", "tucker out", "release", "eat up", "consume", "use up", "exhaust"]}, {"answer": "exhibit", "hint": "synonyms for exhibit", "clues": ["parade", "show", "expose", "demonstrate", "march", "present", "demo", "display", "exhibit"]}, {"answer": "exit", "hint": "synonyms for exit", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "go out", "buy the farm", "leave", "choke", "get out", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "exit"]}, {"answer": "expelling", "hint": "synonyms for expelling", "clues": ["oust", "eject", "kick out", "boot out", "rout out", "expel", "drum out", "exhaust", "rout", "release", "throw out", "discharge", "expelling"]}, {"answer": "expending", "hint": "synonyms for expending", "clues": ["spend", "drop", "expend", "use"]}, {"answer": "experience", "hint": "synonyms for experience", "clues": ["go through", "see", "know", "receive", "live", "feel", "have", "get", "experience"]}, {"answer": "expose", "hint": "synonyms for expose", "clues": ["break", "unwrap", "give away", "let on", "scupper", "debunk", "queer", "uncover", "display", "reveal", "bring out", "disclose", "divulge", "discover", "endanger", "peril", "exhibit", "let out", "expose"]}, {"answer": "expounding", "hint": "synonyms for expounding", "clues": ["expatiate", "expound", "lucubrate", "dilate", "expand", "elaborate", "exposit", "set forth", "enlarge", "flesh out"]}, {"answer": "expunging", "hint": "synonyms for expunging", "clues": ["expunge", "scratch", "strike", "excise", "expunging"]}, {"answer": "extinguishing", "hint": "synonyms for extinguishing", "clues": ["snuff out", "press out", "crush out", "blow out", "wipe out", "carry off", "decimate", "eradicate", "annihilate", "extinguish", "do away with", "eliminate", "stub out", "get rid of", "quench"]}, {"answer": "extract", "hint": "synonyms for extract", "clues": ["pull", "press out", "distil", "express", "draw out", "excerpt", "evoke", "educe", "take out", "pull up", "elicit", "pull out", "extract"]}, {"answer": "exudate", "hint": "synonyms for exudate", "clues": ["exude", "transude", "ooze out", "ooze", "exudate"]}, {"answer": "face", "hint": "synonyms for face", "clues": ["front", "look", "confront", "present", "face up", "face"]}, {"answer": "facing", "hint": "synonyms for facing", "clues": ["front", "look", "confront", "face", "present", "face up", "facing"]}, {"answer": "fade", "hint": "synonyms for fade", "clues": ["evanesce", "languish", "blow over", "fleet", "pass off", "pass", "wither", "melt", "fade"]}, {"answer": "fading", "hint": "synonyms for fading", "clues": ["languish", "fleet", "wither", "melt", "evanesce", "blow over", "pass off", "pass", "fade", "fading"]}, {"answer": "fag", "hint": "synonyms for fag", "clues": ["wear", "labour", "tire out", "wear down", "jade", "outwear", "tire", "moil", "dig", "grind", "drudge", "fag out", "travail", "wear upon", "wear out", "fatigue", "toil", "fag"]}, {"answer": "fall", "hint": "synonyms for fall", "clues": ["strike", "come down", "lessen", "accrue", "hang", "devolve", "descend", "diminish", "precipitate", "light", "return", "settle", "go down", "come", "fall down", "flow", "shine", "pass", "decrease", "fall"]}, {"answer": "falls", "hint": "synonyms for falls", "clues": ["strike", "come down", "lessen", "accrue", "hang", "devolve", "fall", "descend", "diminish", "precipitate", "light", "return", "settle", "go down", "come", "fall down", "flow", "shine", "pass", "decrease"]}, {"answer": "falsifying", "hint": "synonyms for falsifying", "clues": ["alter", "manipulate", "cook", "garble", "misrepresent", "fake", "distort", "falsify", "warp", "wangle", "interpolate", "fudge"]}, {"answer": "falter", "hint": "synonyms for falter", "clues": ["waver", "stutter", "stammer", "bumble", "stumble", "falter"]}, {"answer": "fare", "hint": "synonyms for fare", "clues": ["do", "come", "get along", "make out", "fare"]}, {"answer": "fastening", "hint": "synonyms for fastening", "clues": ["secure", "fix", "tighten", "fasten"]}, {"answer": "father", "hint": "synonyms for father", "clues": ["engender", "mother", "bring forth", "generate", "beget", "get", "sire", "father"]}, {"answer": "fatigue", "hint": "synonyms for fatigue", "clues": ["wear", "tire out", "wear down", "jade", "fag", "fag out", "tire", "outwear", "pall", "wear upon", "wear out", "fatigue"]}, {"answer": "fatigues", "hint": "synonyms for fatigues", "clues": ["wear", "tire out", "wear down", "jade", "tire", "outwear", "fag", "fag out", "pall", "wear upon", "wear out", "fatigue"]}, {"answer": "fawn", "hint": "synonyms for fawn", "clues": ["crawl", "cower", "truckle", "cringe", "kowtow", "suck up", "toady", "creep", "bootlick", "grovel", "fawn"]}, {"answer": "fear", "hint": "synonyms for fear", "clues": ["venerate", "revere", "dread", "reverence", "fear"]}, {"answer": "feasting", "hint": "synonyms for feasting", "clues": ["feed", "feast", "banquet", "junket"]}, {"answer": "featherbed", "hint": "synonyms for featherbed", "clues": ["spoil", "cocker", "pamper", "indulge", "mollycoddle", "cosset", "baby", "coddle", "featherbed"]}, {"answer": "featherbedding", "hint": "synonyms for featherbedding", "clues": ["featherbed", "spoil", "cocker", "pamper", "indulge", "mollycoddle", "cosset", "baby", "coddle", "featherbedding"]}, {"answer": "fed", "hint": "synonyms for fed", "clues": ["feed in", "feed", "fertilise", "give", "flow", "course", "eat", "feast", "run", "prey"]}, {"answer": "feed", "hint": "synonyms for feed", "clues": ["feed in", "fertilise", "give", "flow", "course", "eat", "bung", "feast", "fee", "tip", "run", "prey"]}, {"answer": "feeding", "hint": "synonyms for feeding", "clues": ["feed in", "feed", "fertilise", "give", "flow", "course", "eat", "feast", "run", "prey"]}, {"answer": "feel", "hint": "synonyms for feel", "clues": ["find", "experience", "sense", "palpate", "finger", "feel"]}, {"answer": "feeling", "hint": "synonyms for feeling", "clues": ["find", "experience", "sense", "feel", "palpate", "finger"]}, {"answer": "feelings", "hint": "synonyms for feelings", "clues": ["find", "experience", "sense", "feel", "palpate", "finger", "feelings"]}, {"answer": "feigning", "hint": "synonyms for feigning", "clues": ["pretend", "feign", "affect", "dissemble", "simulate", "sham", "assume"]}, {"answer": "felt", "hint": "synonyms for felt", "clues": ["matte up", "palpate", "mat", "matt-up", "matte", "experience", "find", "felt up", "feel", "sense", "finger", "felt"]}, {"answer": "fence", "hint": "synonyms for fence", "clues": ["palisade", "contend", "wall", "argue", "surround", "debate", "fence in", "fence"]}, {"answer": "fencing", "hint": "synonyms for fencing", "clues": ["fence", "palisade", "wall", "debate", "contend", "fence in", "argue", "surround", "fencing"]}, {"answer": "fermenting", "hint": "synonyms for fermenting", "clues": ["ferment", "sour", "work", "turn"]}, {"answer": "fetch", "hint": "synonyms for fetch", "clues": ["bring", "convey", "get", "bring in", "fetch"]}, {"answer": "fiddle", "hint": "synonyms for fiddle", "clues": ["tamper", "shirk", "goldbrick", "play", "monkey", "tinker", "diddle", "toy", "shrink from", "fiddle"]}, {"answer": "fight", "hint": "synonyms for fight", "clues": ["fight down", "oppose", "defend", "campaign", "fight back", "struggle", "push", "contend", "crusade", "press", "agitate", "fight"]}, {"answer": "figure", "hint": "synonyms for figure", "clues": ["visualize", "cipher", "picture", "forecast", "estimate", "image", "count on", "see", "compute", "enter", "envision", "fancy", "work out", "cypher", "reckon", "project", "calculate", "figure"]}, {"answer": "figuring", "hint": "synonyms for figuring", "clues": ["visualize", "cipher", "picture", "forecast", "estimate", "count on", "image", "see", "compute", "enter", "envision", "fancy", "work out", "figure", "cypher", "reckon", "project", "calculate", "figuring"]}, {"answer": "file", "hint": "synonyms for file", "clues": ["file away", "charge", "register", "lodge", "file"]}, {"answer": "filing", "hint": "synonyms for filing", "clues": ["file away", "register", "charge", "lodge", "file", "filing"]}, {"answer": "fill", "hint": "synonyms for fill", "clues": ["fulfill", "fill up", "take", "satisfy", "sate", "make full", "meet", "replete", "satiate", "occupy", "fill"]}, {"answer": "filling", "hint": "synonyms for filling", "clues": ["fulfill", "fill up", "take", "satisfy", "sate", "make full", "meet", "replete", "fill", "satiate", "occupy"]}, {"answer": "filter", "hint": "synonyms for filter", "clues": ["sink in", "filter out", "separate out", "percolate", "permeate", "strain", "trickle", "dribble", "filtrate", "filter"]}, {"answer": "filtrate", "hint": "synonyms for filtrate", "clues": ["filter out", "separate out", "strain", "filter", "filtrate"]}, {"answer": "find", "hint": "synonyms for find", "clues": ["observe", "obtain", "come up", "find oneself", "retrieve", "determine", "discover", "detect", "incur", "bump", "get hold", "notice", "see", "encounter", "recover", "get", "regain", "receive", "happen", "line up", "rule", "feel", "find out", "ascertain", "witness", "chance", "find"]}, {"answer": "finding", "hint": "synonyms for finding", "clues": ["observe", "obtain", "come up", "find", "find oneself", "retrieve", "determine", "discover", "detect", "incur", "bump", "get hold", "notice", "see", "encounter", "recover", "get", "regain", "receive", "happen", "line up", "rule", "feel", "find out", "ascertain", "witness", "chance"]}, {"answer": "findings", "hint": "synonyms for findings", "clues": ["observe", "obtain", "come up", "find", "find oneself", "retrieve", "determine", "discover", "detect", "incur", "bump", "get hold", "notice", "see", "encounter", "recover", "get", "regain", "receive", "happen", "line up", "rule", "feel", "find out", "ascertain", "witness", "chance", "findings"]}, {"answer": "finish", "hint": "synonyms for finish", "clues": ["terminate", "end", "polish off", "end up", "stop", "cease", "finish up", "wind up", "complete", "eat up", "land up", "fetch up", "finish"]}, {"answer": "finishing", "hint": "synonyms for finishing", "clues": ["terminate", "end", "polish off", "end up", "stop", "cease", "finish up", "wind up", "complete", "eat up", "finish", "land up", "fetch up"]}, {"answer": "fink", "hint": "synonyms for fink", "clues": ["blackleg", "confess", "scab", "squeal", "rat", "fink"]}, {"answer": "fire", "hint": "synonyms for fire", "clues": ["terminate", "dismiss", "burn down", "fuel", "open fire", "kindle", "give the sack", "elicit", "send away", "discharge", "displace", "give the axe", "provoke", "burn", "raise", "evoke", "arouse", "give notice", "force out", "go off", "can", "sack", "fire"]}, {"answer": "firing", "hint": "synonyms for firing", "clues": ["terminate", "dismiss", "burn down", "fuel", "fire", "open fire", "kindle", "give the sack", "elicit", "send away", "discharge", "displace", "give the axe", "provoke", "burn", "raise", "evoke", "arouse", "give notice", "force out", "go off", "can", "sack", "firing"]}, {"answer": "fix", "hint": "synonyms for fix", "clues": ["touch on", "desex", "secure", "specify", "make", "limit", "doctor", "unsex", "sterilize", "restore", "define", "prepare", "desexualize", "set up", "gear up", "repair", "determine", "fixate", "situate", "deposit", "posit", "cook", "furbish up", "set", "mend", "pay back", "ready", "bushel", "pay off", "get", "fasten", "fix"]}, {"answer": "fixing", "hint": "synonyms for fixing", "clues": ["touch on", "sterilize", "limit", "gear up", "define", "prepare", "repair", "fix", "determine", "fixate", "deposit", "desexualise", "cook", "mend", "bushel", "fasten", "desex", "secure", "specify", "make", "unsex", "doctor", "set up", "restore", "situate", "posit", "furbish up", "set", "pay back", "ready", "pay off", "get"]}, {"answer": "fixings", "hint": "synonyms for fixings", "clues": ["touch on", "sterilize", "limit", "gear up", "define", "prepare", "repair", "fix", "determine", "fixate", "deposit", "desexualise", "cook", "mend", "bushel", "fasten", "desex", "secure", "specify", "make", "unsex", "doctor", "set up", "restore", "situate", "posit", "furbish up", "set", "pay back", "ready", "pay off", "get", "fixings"]}, {"answer": "fizz", "hint": "synonyms for fizz", "clues": ["froth", "form bubbles", "sparkle", "foam", "effervesce", "fizz"]}, {"answer": "flag", "hint": "synonyms for flag", "clues": ["swag", "ease off", "slacken off", "ease up", "droop", "flag"]}, {"answer": "flap", "hint": "synonyms for flap", "clues": ["undulate", "dither", "pother", "wave", "roll", "beat", "flap"]}, {"answer": "flapping", "hint": "synonyms for flapping", "clues": ["flap", "undulate", "dither", "pother", "wave", "roll", "beat", "flapping"]}, {"answer": "flaps", "hint": "synonyms for flaps", "clues": ["flap", "undulate", "dither", "pother", "wave", "roll", "beat"]}, {"answer": "flare", "hint": "synonyms for flare", "clues": ["flame", "flare out", "burn up", "break open", "blaze up", "flare up", "irrupt", "burst out", "erupt", "flare"]}, {"answer": "flashing", "hint": "synonyms for flashing", "clues": ["winkle", "ostentate", "swank", "flash", "blink", "show off", "shoot", "wink", "scud", "scoot", "dart", "dash", "flaunt"]}, {"answer": "flaunt", "hint": "synonyms for flaunt", "clues": ["ostentate", "swank", "flash", "show off", "flaunt"]}, {"answer": "fleece", "hint": "synonyms for fleece", "clues": ["pluck", "overcharge", "plume", "gazump", "rob", "soak", "hook", "shear", "surcharge", "fleece"]}, {"answer": "flex", "hint": "synonyms for flex", "clues": ["bend", "turn", "twist", "deform", "flex"]}, {"answer": "flick", "hint": "synonyms for flick", "clues": ["flip", "flicker", "leaf", "snap", "click", "riffle", "jerk", "thumb", "ruffle", "riff", "flick"]}, {"answer": "flicker", "hint": "synonyms for flicker", "clues": ["waver", "flick", "quiver", "flitter", "flicker"]}, {"answer": "flies", "hint": "synonyms for flies", "clues": ["fly", "flee", "aviate", "pilot", "wing", "fell", "vanish", "take flight", "vaporize", "flies"]}, {"answer": "flinch", "hint": "synonyms for flinch", "clues": ["wince", "funk", "recoil", "quail", "squinch", "shrink", "cringe", "flinch"]}, {"answer": "fling", "hint": "synonyms for fling", "clues": ["dispose", "put away", "cast away", "toss", "toss out", "chuck out", "splurge", "throw away", "cast aside", "throw out", "discard", "cast out", "toss away", "fling"]}, {"answer": "flip-flop", "hint": "synonyms for flip-flop", "clues": ["flip", "alternate", "switch", "tack", "interchange", "flip-flop"]}, {"answer": "flirt", "hint": "synonyms for flirt", "clues": ["coquet", "romance", "mash", "play", "chat up", "philander", "toy", "dally", "butterfly", "flirt"]}, {"answer": "flirting", "hint": "synonyms for flirting", "clues": ["coquet", "romance", "mash", "play", "toy", "chat up", "philander", "flirt", "dally", "butterfly"]}, {"answer": "float", "hint": "synonyms for float", "clues": ["drift", "blow", "swim", "be adrift", "float"]}, {"answer": "flogging", "hint": "synonyms for flogging", "clues": ["lash", "flog", "whip", "lather", "lambast", "welt", "cane", "strap", "trounce", "flogging"]}, {"answer": "flood", "hint": "synonyms for flood", "clues": ["swamp", "deluge", "oversupply", "glut", "inundate", "flood"]}, {"answer": "flooding", "hint": "synonyms for flooding", "clues": ["swamp", "deluge", "oversupply", "glut", "inundate", "flood"]}, {"answer": "floor", "hint": "synonyms for floor", "clues": ["ball over", "take aback", "shock", "knock down", "blow out of the water", "deck", "dump", "coldcock", "floor"]}, {"answer": "flooring", "hint": "synonyms for flooring", "clues": ["ball over", "take aback", "shock", "knock down", "floor", "dump", "blow out of the water", "deck", "coldcock"]}, {"answer": "flourish", "hint": "synonyms for flourish", "clues": ["boom", "thrive", "prosper", "expand", "brandish", "wave", "fly high", "flourish"]}, {"answer": "flow", "hint": "synonyms for flow", "clues": ["hang", "feed", "flux", "run", "menstruate", "fall", "course", "flow"]}, {"answer": "flub", "hint": "synonyms for flub", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "flub"]}, {"answer": "fluff", "hint": "synonyms for fluff", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "ruffle", "tease", "bollocks", "botch", "bodge", "bumble", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "fluff"]}, {"answer": "flutter", "hint": "synonyms for flutter", "clues": ["bat", "flicker", "fleet", "flitter", "dart", "palpitate", "waver", "quiver", "flit"]}, {"answer": "fluttering", "hint": "synonyms for fluttering", "clues": ["bat", "flicker", "fleet", "flitter", "dart", "palpitate", "waver", "quiver", "flit", "fluttering"]}, {"answer": "flux", "hint": "synonyms for flux", "clues": ["coalesce", "fuse", "flow", "mix", "commingle", "conflate", "immix", "combine", "liquefy", "merge", "meld", "blend", "flux"]}, {"answer": "foam", "hint": "synonyms for foam", "clues": ["froth", "form bubbles", "effervesce", "sparkle", "fizz", "foam"]}, {"answer": "fob", "hint": "synonyms for fob", "clues": ["play tricks", "pull a fast one on", "play a trick on", "trick", "fox", "play a joke on", "flim-flam", "fob"]}, {"answer": "focus", "hint": "synonyms for focus", "clues": ["rivet", "focalise", "centre", "pore", "concentre", "center", "sharpen", "focus"]}, {"answer": "focusing", "hint": "synonyms for focusing", "clues": ["rivet", "focalise", "centre", "pore", "concentre", "center", "focus", "sharpen"]}, {"answer": "focussing", "hint": "synonyms for focussing", "clues": ["rivet", "focalise", "centre", "pore", "concentre", "center", "focus", "sharpen", "focussing"]}, {"answer": "fog", "hint": "synonyms for fog", "clues": ["obscure", "obnubilate", "haze over", "befog", "mist", "cloud", "becloud", "fog"]}, {"answer": "foil", "hint": "synonyms for foil", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "thwart", "foil"]}, {"answer": "foiling", "hint": "synonyms for foiling", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart"]}, {"answer": "fold", "hint": "synonyms for fold", "clues": ["close up", "close down", "shut down", "pen up", "close", "turn up", "fold up", "fold"]}, {"answer": "fool", "hint": "synonyms for fool", "clues": ["put one across", "fool away", "shoot", "frivol away", "befool", "cod", "slang", "fritter away", "put one over", "fool around", "gull", "fritter", "horse around", "dupe", "take in", "put on", "dissipate", "fool"]}, {"answer": "foot", "hint": "synonyms for foot", "clues": ["leg it", "foot up", "hoof", "pick", "hoof it", "foot"]}, {"answer": "footing", "hint": "synonyms for footing", "clues": ["leg it", "foot", "foot up", "hoof", "pick", "hoof it"]}, {"answer": "foray", "hint": "synonyms for foray", "clues": ["despoil", "strip", "rifle", "plunder", "pillage", "loot", "reave", "ransack", "foray"]}, {"answer": "force", "hint": "synonyms for force", "clues": ["pull", "impel", "push", "squeeze", "hale", "draw", "storm", "wedge", "ram", "pressure", "thrust", "drive", "coerce", "force"]}, {"answer": "force_out", "hint": "synonyms for force out", "clues": ["eject", "squirt", "crowd out", "terminate", "dismiss", "rout out", "fire", "evict", "squeeze out", "give the sack", "send away", "gouge", "displace", "give the axe", "depose", "rouse", "drive out", "give notice", "can", "sack", "force out"]}, {"answer": "forecast", "hint": "synonyms for forecast", "clues": ["omen", "foretell", "augur", "prefigure", "betoken", "foreshadow", "estimate", "predict", "count on", "bode", "prognosticate", "portend", "presage", "figure", "auspicate", "reckon", "calculate", "forecast"]}, {"answer": "forecasting", "hint": "synonyms for forecasting", "clues": ["omen", "foretell", "augur", "prefigure", "forecast", "betoken", "foreshadow", "estimate", "predict", "count on", "bode", "prognosticate", "portend", "presage", "figure", "auspicate", "reckon", "calculate"]}, {"answer": "foregrounding", "hint": "synonyms for foregrounding", "clues": ["play up", "foreground", "highlight", "spotlight"]}, {"answer": "forestalling", "hint": "synonyms for forestalling", "clues": ["anticipate", "forestall", "prevent", "counter", "preclude", "forbid", "foresee", "foreclose"]}, {"answer": "foretelling", "hint": "synonyms for foretelling", "clues": ["omen", "foretell", "call", "promise", "forebode", "harbinger", "augur", "prefigure", "forecast", "betoken", "foreshadow", "herald", "predict", "annunciate", "bode", "announce", "prognosticate", "portend", "presage", "auspicate", "anticipate"]}, {"answer": "forge", "hint": "synonyms for forge", "clues": ["form", "devise", "formulate", "work", "spurt", "hammer", "counterfeit", "contrive", "fake", "spirt", "mould", "excogitate", "fashion", "shape", "invent", "forge"]}, {"answer": "forging", "hint": "synonyms for forging", "clues": ["form", "devise", "formulate", "work", "spurt", "hammer", "counterfeit", "contrive", "fake", "spirt", "mould", "excogitate", "fashion", "shape", "forge", "invent", "forging"]}, {"answer": "forgoing", "hint": "synonyms for forgoing", "clues": ["forgo", "foreswear", "throw overboard", "waive", "predate", "give up", "antecede", "precede", "relinquish", "forfeit", "dispense with", "antedate"]}, {"answer": "fork", "hint": "synonyms for fork", "clues": ["branch", "ramify", "furcate", "separate", "pitchfork", "fork"]}, {"answer": "forking", "hint": "synonyms for forking", "clues": ["branch", "ramify", "fork", "furcate", "separate", "pitchfork"]}, {"answer": "form", "hint": "synonyms for form", "clues": ["organize", "make", "work", "take form", "mould", "shape", "imprint", "forge", "take shape", "constitute", "spring", "form"]}, {"answer": "formatting", "hint": "synonyms for formatting", "clues": ["initialise", "arrange", "format", "formatting"]}, {"answer": "forsaking", "hint": "synonyms for forsaking", "clues": ["abandon", "desert", "forsake", "desolate", "forsaking"]}, {"answer": "forswearing", "hint": "synonyms for forswearing", "clues": ["forswear", "resile", "recant", "abjure", "retract"]}, {"answer": "founder", "hint": "synonyms for founder", "clues": ["break", "cave in", "flop", "fall through", "fall in", "fall flat", "give way", "collapse", "give", "founder"]}, {"answer": "foundering", "hint": "synonyms for foundering", "clues": ["break", "cave in", "flop", "fall through", "fall in", "fall flat", "give way", "collapse", "founder", "give"]}, {"answer": "founding", "hint": "synonyms for founding", "clues": ["base", "institute", "plant", "launch", "set up", "found", "ground", "establish", "constitute"]}, {"answer": "fox", "hint": "synonyms for fox", "clues": ["throw", "play tricks", "confuse", "befuddle", "discombobulate", "trick", "fob", "bedevil", "pull a fast one on", "confound", "play a trick on", "play a joke on", "flim-flam", "fox"]}, {"answer": "frame", "hint": "synonyms for frame", "clues": ["draw up", "frame up", "frame in", "compose", "set up", "couch", "redact", "ensnare", "entrap", "cast", "put", "border", "frame"]}, {"answer": "framing", "hint": "synonyms for framing", "clues": ["draw up", "frame up", "frame in", "compose", "set up", "couch", "redact", "entrap", "ensnare", "frame", "cast", "put", "border", "framing"]}, {"answer": "fray", "hint": "synonyms for fray", "clues": ["scratch", "frazzle", "rub", "chafe", "fret", "fray"]}, {"answer": "freeing", "hint": "synonyms for freeing", "clues": ["dislodge", "give up", "absolve", "unfreeze", "loose", "justify", "unblock", "disembarrass", "liberate", "unloosen", "rid", "discharge", "free", "exempt", "disengage", "resign", "relinquish", "relieve", "release"]}, {"answer": "freeze", "hint": "synonyms for freeze", "clues": ["block", "suspend", "freeze down", "immobilize", "freeze out", "stop dead", "freeze"]}, {"answer": "freezing", "hint": "synonyms for freezing", "clues": ["freeze", "block", "freeze down", "freeze out", "stop dead", "suspend", "immobilize", "freezing"]}, {"answer": "fret", "hint": "synonyms for fret", "clues": ["niggle", "gag", "fray", "gall", "rub", "choke", "chafe", "eat into", "fuss", "rankle", "erode", "eat away", "scratch", "grate", "fret"]}, {"answer": "frisk", "hint": "synonyms for frisk", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "run around", "skylark", "lark about", "romp", "gambol", "frisk"]}, {"answer": "frisking", "hint": "synonyms for frisking", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol"]}, {"answer": "fritter", "hint": "synonyms for fritter", "clues": ["fool away", "shoot", "frivol away", "fool", "fritter away", "dissipate", "fritter"]}, {"answer": "frizz", "hint": "synonyms for frizz", "clues": ["kink", "kink up", "crimp", "crape", "frizzle", "frizz"]}, {"answer": "frolic", "hint": "synonyms for frolic", "clues": ["sport", "cavort", "rollick", "lark", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol", "frolic"]}, {"answer": "froth", "hint": "synonyms for froth", "clues": ["form bubbles", "suds", "effervesce", "sparkle", "foam", "spume", "fizz", "froth"]}, {"answer": "fuck", "hint": "synonyms for fuck", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "fuck"]}, {"answer": "fuddle", "hint": "synonyms for fuddle", "clues": ["throw", "drink", "befuddle", "confuse", "booze", "discombobulate", "bedevil", "confound", "fox"]}, {"answer": "fudge", "hint": "synonyms for fudge", "clues": ["put off", "dodge", "fake", "hedge", "falsify", "manipulate", "elude", "cook", "evade", "misrepresent", "skirt", "circumvent", "wangle", "duck", "parry", "sidestep", "fudge"]}, {"answer": "fumble", "hint": "synonyms for fumble", "clues": ["fuck up", "louse up", "ball up", "blunder", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "grope", "fumble"]}, {"answer": "fumes", "hint": "synonyms for fumes", "clues": ["fume", "fumigate", "reek", "smoke"]}, {"answer": "function", "hint": "synonyms for function", "clues": ["go", "operate", "work", "serve", "officiate", "run", "function"]}, {"answer": "funk", "hint": "synonyms for funk", "clues": ["wince", "flinch", "recoil", "quail", "squinch", "shrink", "cringe", "funk"]}, {"answer": "furnishing", "hint": "synonyms for furnishing", "clues": ["furnish", "provide", "render", "supply"]}, {"answer": "furrow", "hint": "synonyms for furrow", "clues": ["groove", "chamfer", "crease", "wrinkle", "rut", "chase", "furrow"]}, {"answer": "fuse", "hint": "synonyms for fuse", "clues": ["coalesce", "flux", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend", "fuse"]}, {"answer": "fuss", "hint": "synonyms for fuss", "clues": ["overprotect", "mother", "niggle", "fret", "fuss"]}, {"answer": "gabble", "hint": "synonyms for gabble", "clues": ["clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "piffle", "blabber", "prate", "twaddle", "blab", "gabble"]}, {"answer": "gag", "hint": "synonyms for gag", "clues": ["quip", "strangle", "retch", "muzzle", "choke", "heave", "suffocate", "fret", "gag"]}, {"answer": "gage", "hint": "synonyms for gage", "clues": ["punt", "back", "game", "stake", "bet on", "gage"]}, {"answer": "gain", "hint": "synonyms for gain", "clues": ["make", "advance", "earn", "clear", "bring in", "pull ahead", "attain", "take in", "win", "gain ground", "realise", "acquire", "arrive at", "hit", "make headway", "pull in", "derive", "gather", "reach", "profit", "put on", "benefit", "get ahead", "gain"]}, {"answer": "gamble", "hint": "synonyms for gamble", "clues": ["risk", "take a chance", "adventure", "run a risk", "hazard", "chance", "gamble"]}, {"answer": "gambling", "hint": "synonyms for gambling", "clues": ["risk", "hazard", "gamble", "take a chance", "run a risk", "adventure", "chance", "gambling"]}, {"answer": "gambol", "hint": "synonyms for gambol", "clues": ["sport", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "cavort", "gambol"]}, {"answer": "gaming", "hint": "synonyms for gaming", "clues": ["punt", "back", "gage", "game", "stake", "bet on", "gaming"]}, {"answer": "gaol", "hint": "synonyms for gaol", "clues": ["put behind bars", "jug", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison", "gaol"]}, {"answer": "gape", "hint": "synonyms for gape", "clues": ["yawn", "gawk", "gawp", "goggle", "gape"]}, {"answer": "garb", "hint": "synonyms for garb", "clues": ["garment", "clothe", "tog", "apparel", "habilitate", "fit out", "dress", "raiment", "garb"]}, {"answer": "garment", "hint": "synonyms for garment", "clues": ["clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment", "garment"]}, {"answer": "garner", "hint": "synonyms for garner", "clues": ["earn", "collect", "pull together", "gather", "garner"]}, {"answer": "gas", "hint": "synonyms for gas", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "brag", "tout", "shoot a line", "gas"]}, {"answer": "gasconade", "hint": "synonyms for gasconade", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "brag", "tout", "shoot a line", "gas", "gasconade"]}, {"answer": "gassing", "hint": "synonyms for gassing", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "brag", "tout", "shoot a line", "gas", "gassing"]}, {"answer": "gather", "hint": "synonyms for gather", "clues": ["cumulate", "forgather", "pucker", "amass", "collect", "get together", "tuck", "meet", "conglomerate", "gain", "pile up", "garner", "pull together", "assemble", "gather"]}, {"answer": "gathering", "hint": "synonyms for gathering", "clues": ["cumulate", "forgather", "pucker", "amass", "collect", "get together", "tuck", "gather", "meet", "conglomerate", "gain", "pile up", "garner", "pull together", "assemble"]}, {"answer": "gauge", "hint": "synonyms for gauge", "clues": ["estimate", "approximate", "judge", "guess", "gauge"]}, {"answer": "get", "hint": "synonyms for get", "clues": ["pose", "induce", "let", "start out", "scram", "dumbfound", "fetch", "obtain", "sire", "find", "catch", "drive", "puzzle", "fix", "draw", "vex", "gravel", "stupefy", "bugger off", "bewilder", "bring forth", "set out", "cause", "begin", "start", "come", "get under one's skin", "bring", "become", "contract", "baffle", "arrest", "fuck off", "sustain", "have", "buzz off", "incur", "engender", "go", "make", "nonplus", "capture", "stimulate", "arrive", "aim", "generate", "stick", "produce", "convey", "develop", "amaze", "mystify", "commence", "suffer", "beget", "take", "mother", "acquire", "perplex", "receive", "beat", "experience", "father", "pay back", "flummox", "pay off", "grow", "get down", "get"]}, {"answer": "get_together", "hint": "synonyms for get together", "clues": ["gather", "meet", "collaborate", "join forces", "join", "cooperate", "fall in", "assemble", "get together"]}, {"answer": "getting", "hint": "synonyms for getting", "clues": ["pose", "induce", "let", "start out", "scram", "dumbfound", "fetch", "obtain", "sire", "find", "catch", "drive", "puzzle", "fix", "draw", "vex", "gravel", "stupefy", "bugger off", "bewilder", "bring forth", "set out", "cause", "begin", "start", "come", "get under one's skin", "bring", "become", "contract", "baffle", "arrest", "fuck off", "sustain", "have", "buzz off", "incur", "engender", "go", "make", "nonplus", "capture", "stimulate", "arrive", "aim", "generate", "stick", "produce", "convey", "develop", "amaze", "mystify", "commence", "suffer", "beget", "take", "mother", "acquire", "get", "perplex", "receive", "beat", "experience", "father", "pay back", "flummox", "pay off", "grow", "get down", "getting"]}, {"answer": "gibber", "hint": "synonyms for gibber", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "chatter", "piffle", "blabber", "prate", "twaddle", "blab", "gibber"]}, {"answer": "gibe", "hint": "synonyms for gibe", "clues": ["correspond", "fit", "barrack", "jibe", "match", "tally", "agree", "jeer", "flout", "check", "scoff", "gibe"]}, {"answer": "gift", "hint": "synonyms for gift", "clues": ["endow", "present", "indue", "empower", "invest", "give", "endue", "gift"]}, {"answer": "give", "hint": "synonyms for give", "clues": ["break", "cave in", "commit", "contribute", "gift", "yield", "present", "pay", "feed", "establish", "reach", "give way", "impart", "ease up", "have", "afford", "make", "dedicate", "move over", "fall in", "hand", "hold", "generate", "apply", "grant", "leave", "throw", "pass on", "chip in", "return", "open", "sacrifice", "kick in", "render", "turn over", "consecrate", "collapse", "pass", "founder", "devote", "give"]}, {"answer": "glamour", "hint": "synonyms for glamour", "clues": ["enchant", "hex", "witch", "jinx", "bewitch", "glamour"]}, {"answer": "glass", "hint": "synonyms for glass", "clues": ["glaze", "glass over", "glass in", "glaze over", "glass"]}, {"answer": "glasses", "hint": "synonyms for glasses", "clues": ["glaze", "glass over", "glass in", "glaze over", "glass"]}, {"answer": "glaze", "hint": "synonyms for glaze", "clues": ["candy", "glass over", "sugarcoat", "glaze over", "glass", "glaze"]}, {"answer": "gleam", "hint": "synonyms for gleam", "clues": ["shine", "glisten", "glitter", "glint", "glimmer", "gleam"]}, {"answer": "glint", "hint": "synonyms for glint", "clues": ["gleam", "glance", "shine", "glisten", "glitter", "peek", "glint"]}, {"answer": "glisten", "hint": "synonyms for glisten", "clues": ["gleam", "glitter", "glint", "shine", "glisten"]}, {"answer": "glitter", "hint": "synonyms for glitter", "clues": ["gleam", "glisten", "glint", "shine", "glitter"]}, {"answer": "gloss", "hint": "synonyms for gloss", "clues": ["colour", "comment", "annotate", "gloss"]}, {"answer": "glow", "hint": "synonyms for glow", "clues": ["radiate", "shine", "beam", "burn", "glow"]}, {"answer": "glower", "hint": "synonyms for glower", "clues": ["frown", "lour", "lower", "glare"]}, {"answer": "glut", "hint": "synonyms for glut", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "flood", "oversupply", "overgorge", "binge", "gorge", "glut"]}, {"answer": "gnarl", "hint": "synonyms for gnarl", "clues": ["mutter", "murmur", "croak", "grumble", "gnarl"]}, {"answer": "goading", "hint": "synonyms for goading", "clues": ["needle", "spur", "prick", "goad"]}, {"answer": "goggles", "hint": "synonyms for goggles", "clues": ["gawp", "gawk", "gape", "goggle"]}, {"answer": "goldbrick", "hint": "synonyms for goldbrick", "clues": ["con", "swindle", "gip", "shirk", "scam", "fiddle", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "shrink from", "short-change", "goldbrick"]}, {"answer": "goldbricking", "hint": "synonyms for goldbricking", "clues": ["mulct", "bunco", "victimize", "diddle", "hornswoggle", "shrink from", "short-change", "con", "swindle", "gip", "shirk", "goldbrick", "scam", "defraud", "gyp", "nobble", "rook", "fiddle"]}, {"answer": "goof", "hint": "synonyms for goof", "clues": ["blunder", "sin", "boob", "drop the ball", "goof"]}, {"answer": "gorge", "hint": "synonyms for gorge", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge"]}, {"answer": "gossip", "hint": "synonyms for gossip", "clues": ["chitchat", "chat", "confab", "jaw", "dish the dirt", "shoot the breeze", "visit", "chatter", "chaffer", "confabulate", "claver", "chew the fat", "natter", "gossip"]}, {"answer": "gossiping", "hint": "synonyms for gossiping", "clues": ["chitchat", "jaw", "confab", "visit", "chatter", "gossip", "confabulate", "claver", "chew the fat", "natter", "chat", "shoot the breeze", "dish the dirt", "chaffer"]}, {"answer": "gouge", "hint": "synonyms for gouge", "clues": ["rack", "rout", "extort", "wring", "force out", "squeeze", "gouge"]}, {"answer": "governed", "hint": "synonyms for governed", "clues": ["rule", "regulate", "govern", "order", "regularize"]}, {"answer": "governess", "hint": "synonyms for governess", "clues": ["rule", "regulate", "govern", "order", "regularize", "governess"]}, {"answer": "grab", "hint": "synonyms for grab", "clues": ["catch", "take hold of", "seize", "snap up", "snaffle", "grab"]}, {"answer": "grace", "hint": "synonyms for grace", "clues": ["decorate", "embellish", "ornament", "beautify", "adorn", "deck", "grace"]}, {"answer": "grade", "hint": "synonyms for grade", "clues": ["range", "rank", "rate", "place", "mark", "order", "score", "grade"]}, {"answer": "grading", "hint": "synonyms for grading", "clues": ["range", "rank", "rate", "mark", "score", "grade", "place", "order", "grading"]}, {"answer": "grant", "hint": "synonyms for grant", "clues": ["cede", "allot", "deed over", "concede", "award", "allow", "accord", "yield", "give", "grant"]}, {"answer": "grapple", "hint": "synonyms for grapple", "clues": ["grip", "contend", "make out", "cope", "manage", "deal", "get by", "make do", "grapple"]}, {"answer": "grappling", "hint": "synonyms for grappling", "clues": ["grapple", "grip", "deal", "contend", "make do", "manage", "make out", "cope", "get by", "grappling"]}, {"answer": "grasp", "hint": "synonyms for grasp", "clues": ["hold on", "grok", "comprehend", "get the picture", "savvy", "compass", "apprehend", "dig", "grasp"]}, {"answer": "grass", "hint": "synonyms for grass", "clues": ["denounce", "betray", "give away", "stag", "rat", "shop", "tell on", "shit", "snitch", "grass over", "grass"]}, {"answer": "grate", "hint": "synonyms for grate", "clues": ["scrape", "fret", "grind", "eat into", "rankle", "grate"]}, {"answer": "gravel", "hint": "synonyms for gravel", "clues": ["pose", "nark", "nonplus", "dumbfound", "chafe", "rile", "annoy", "bother", "puzzle", "get to", "vex", "stupefy", "rag", "get at", "bewilder", "stick", "nettle", "amaze", "mystify", "devil", "perplex", "beat", "irritate", "baffle", "flummox", "get", "gravel"]}, {"answer": "graves", "hint": "synonyms for graves", "clues": ["grave", "scratch", "engrave", "sculpt", "sculpture", "inscribe"]}, {"answer": "graze", "hint": "synonyms for graze", "clues": ["crop", "range", "crease", "browse", "pasture", "rake", "graze"]}, {"answer": "grazing", "hint": "synonyms for grazing", "clues": ["range", "browse", "pasture", "graze", "crop", "crease", "rake", "grazing"]}, {"answer": "grime", "hint": "synonyms for grime", "clues": ["soil", "colly", "begrime", "bemire", "dirty", "grime"]}, {"answer": "grind", "hint": "synonyms for grind", "clues": ["labour", "cranch", "mash", "fag", "drudge", "crunch", "travail", "bray", "comminute", "moil", "grate", "toil", "dig", "grind"]}, {"answer": "grinding", "hint": "synonyms for grinding", "clues": ["labour", "cranch", "mash", "grind", "fag", "drudge", "crunch", "travail", "comminute", "bray", "moil", "grate", "toil", "dig"]}, {"answer": "grip", "hint": "synonyms for grip", "clues": ["fascinate", "grapple", "transfix", "spellbind", "grip"]}, {"answer": "gripe", "hint": "synonyms for gripe", "clues": ["squawk", "beef", "bitch", "grouse", "bellyache", "crab", "holler", "gripe"]}, {"answer": "gripes", "hint": "synonyms for gripes", "clues": ["beef", "grouse", "grip", "grapple", "fascinate", "squawk", "bitch", "spellbind", "bellyache", "transfix", "crab", "holler"]}, {"answer": "griping", "hint": "synonyms for griping", "clues": ["beef", "grouse", "grip", "grapple", "fascinate", "squawk", "bitch", "spellbind", "bellyache", "transfix", "crab", "holler"]}, {"answer": "grizzle", "hint": "synonyms for grizzle", "clues": ["whine", "yammer", "stew", "brood", "yawp", "grizzle"]}, {"answer": "groom", "hint": "synonyms for groom", "clues": ["neaten", "curry", "dress", "prepare", "train", "groom"]}, {"answer": "grooming", "hint": "synonyms for grooming", "clues": ["neaten", "curry", "dress", "groom", "prepare", "train"]}, {"answer": "ground", "hint": "synonyms for ground", "clues": ["base", "labour", "cranch", "found", "undercoat", "strand", "moil", "prime", "bray", "toil", "dig", "mash", "grind", "fag", "drudge", "anchor", "crunch", "establish", "travail", "comminute", "run aground", "grate", "ground"]}, {"answer": "grounding", "hint": "synonyms for grounding", "clues": ["base", "ground", "anchor", "found", "establish", "run aground", "undercoat", "strand", "prime"]}, {"answer": "grounds", "hint": "synonyms for grounds", "clues": ["base", "ground", "anchor", "found", "establish", "run aground", "undercoat", "strand", "prime"]}, {"answer": "grouse", "hint": "synonyms for grouse", "clues": ["squawk", "beef", "bitch", "bellyache", "crab", "holler", "gripe", "grouse"]}, {"answer": "grub", "hint": "synonyms for grub", "clues": ["mooch", "bum", "cadge", "sponge", "grub"]}, {"answer": "grumble", "hint": "synonyms for grumble", "clues": ["mutter", "grouch", "growl", "gnarl", "scold", "murmur", "croak", "rumble"]}, {"answer": "guarantee", "hint": "synonyms for guarantee", "clues": ["insure", "secure", "ensure", "warrant", "assure", "undertake", "vouch", "guarantee"]}, {"answer": "guess", "hint": "synonyms for guess", "clues": ["infer", "pretend", "hazard", "think", "gauge", "suppose", "opine", "approximate", "judge", "imagine", "reckon", "estimate", "venture", "guess"]}, {"answer": "guessing", "hint": "synonyms for guessing", "clues": ["infer", "pretend", "hazard", "think", "gauge", "suppose", "opine", "guess", "approximate", "judge", "imagine", "reckon", "estimate", "venture"]}, {"answer": "guide", "hint": "synonyms for guide", "clues": ["maneuver", "take", "direct", "manoeuvre", "head", "channelize", "steer", "conduct", "lead", "pass", "draw", "point", "run", "guide on", "guide"]}, {"answer": "gull", "hint": "synonyms for gull", "clues": ["put one across", "cod", "befool", "slang", "put one over", "fool", "dupe", "take in", "put on", "gull"]}, {"answer": "gurgle", "hint": "synonyms for gurgle", "clues": ["burble", "guggle", "babble", "bubble", "ripple", "gurgle"]}, {"answer": "gush", "hint": "synonyms for gush", "clues": ["rave", "jet", "spurt", "spirt", "spout", "gush"]}, {"answer": "guy", "hint": "synonyms for guy", "clues": ["rib", "roast", "blackguard", "ridicule", "laugh at", "jest at", "poke fun", "make fun", "guy"]}, {"answer": "gyp", "hint": "synonyms for gyp", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "defraud", "bunco", "nobble", "diddle", "rook", "victimize", "hornswoggle", "short-change", "gyp"]}, {"answer": "gyps", "hint": "synonyms for gyps", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change"]}, {"answer": "hack", "hint": "synonyms for hack", "clues": ["cut up", "cut", "chop", "whoop", "hack on", "hack"]}, {"answer": "haggling", "hint": "synonyms for haggling", "clues": ["haggle", "huckster", "higgle", "chaffer", "haggling"]}, {"answer": "hamming", "hint": "synonyms for hamming", "clues": ["overplay", "ham", "overact", "ham it up", "hamming"]}, {"answer": "hamper", "hint": "synonyms for hamper", "clues": ["hinder", "strangle", "handicap", "halter", "cramp", "hamper"]}, {"answer": "hand", "hint": "synonyms for hand", "clues": ["pass on", "reach", "pass", "turn over", "give", "hand"]}, {"answer": "handicap", "hint": "synonyms for handicap", "clues": ["disable", "hamper", "hinder", "invalid", "incapacitate", "handicap"]}, {"answer": "handle", "hint": "synonyms for handle", "clues": ["wield", "treat", "deal", "manage", "address", "cover", "do by", "palm", "plow", "care", "handle"]}, {"answer": "handling", "hint": "synonyms for handling", "clues": ["wield", "handle", "treat", "deal", "manage", "address", "cover", "do by", "palm", "plow", "care", "handling"]}, {"answer": "hands", "hint": "synonyms for hands", "clues": ["pass on", "reach", "pass", "turn over", "give", "hand"]}, {"answer": "hang", "hint": "synonyms for hang", "clues": ["string up", "cling", "hang up", "flow", "attend", "give ear", "advert", "pay heed", "fall", "hang"]}, {"answer": "hanging", "hint": "synonyms for hanging", "clues": ["string up", "cling", "hang up", "flow", "attend", "give ear", "hang", "advert", "pay heed", "fall"]}, {"answer": "hap", "hint": "synonyms for hap", "clues": ["go on", "fall out", "take place", "occur", "happen", "come about", "pass off", "pass", "hap"]}, {"answer": "happening", "hint": "synonyms for happening", "clues": ["befall", "go on", "materialise", "encounter", "bump", "chance", "fall out", "take place", "occur", "happen", "come about", "find", "pass off", "pass", "hap"]}, {"answer": "harbinger", "hint": "synonyms for harbinger", "clues": ["herald", "foretell", "announce", "annunciate", "harbinger"]}, {"answer": "harbor", "hint": "synonyms for harbor", "clues": ["hold", "harbour", "shield", "nurse", "entertain"]}, {"answer": "harbour", "hint": "synonyms for harbour", "clues": ["hold", "shield", "harbor", "nurse", "entertain"]}, {"answer": "hardening", "hint": "synonyms for hardening", "clues": ["temper", "inure", "indurate", "harden", "season"]}, {"answer": "harness", "hint": "synonyms for harness", "clues": ["tackle", "draw rein", "rein in", "rule", "rein", "harness"]}, {"answer": "hassle", "hint": "synonyms for hassle", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "harry", "plague", "beset", "hassle"]}, {"answer": "hatch", "hint": "synonyms for hatch", "clues": ["think of", "concoct", "brood", "dream up", "incubate", "cover", "think up", "hatch"]}, {"answer": "hatching", "hint": "synonyms for hatching", "clues": ["think of", "hatch", "incubate", "concoct", "brood", "dream up", "cover", "think up"]}, {"answer": "hauling", "hint": "synonyms for hauling", "clues": ["cart", "hale", "drag", "haul"]}, {"answer": "haunt", "hint": "synonyms for haunt", "clues": ["obsess", "frequent", "ghost", "stalk", "haunt"]}, {"answer": "have", "hint": "synonyms for have", "clues": ["have got", "induce", "let", "make", "sustain", "deliver", "give birth", "accept", "hold", "stimulate", "take in", "own", "suffer", "throw", "possess", "birth", "take", "cause", "receive", "feature", "experience", "bear", "ingest", "consume", "give", "get", "have"]}, {"answer": "hawk", "hint": "synonyms for hawk", "clues": ["clear the throat", "huckster", "monger", "vend", "pitch", "peddle", "hawk"]}, {"answer": "hawking", "hint": "synonyms for hawking", "clues": ["clear the throat", "huckster", "monger", "vend", "pitch", "peddle", "hawk"]}, {"answer": "hazard", "hint": "synonyms for hazard", "clues": ["risk", "pretend", "jeopardize", "stake", "gamble", "take a chance", "run a risk", "guess", "adventure", "chance", "hazard"]}, {"answer": "head", "hint": "synonyms for head", "clues": ["maneuver", "direct", "manoeuvre", "head up", "channelize", "steer", "guide", "lead", "point", "head"]}, {"answer": "heading", "hint": "synonyms for heading", "clues": ["maneuver", "direct", "manoeuvre", "head", "head up", "channelize", "steer", "guide", "lead", "point"]}, {"answer": "heat", "hint": "synonyms for heat", "clues": ["hot up", "inflame", "stir up", "wake", "ignite", "heat up", "fire up", "heat"]}, {"answer": "heating", "hint": "synonyms for heating", "clues": ["inflame", "ignite", "heat up", "hot up", "heat", "wake", "stir up", "fire up"]}, {"answer": "heave", "hint": "synonyms for heave", "clues": ["puff", "gag", "heft", "gasp", "surge", "pant", "warp", "buckle", "retch", "heave up", "heft up", "billow", "heave"]}, {"answer": "heaves", "hint": "synonyms for heaves", "clues": ["puff", "gag", "heft", "heave", "gasp", "surge", "pant", "buckle", "warp", "retch", "heave up", "heft up", "billow"]}, {"answer": "heaving", "hint": "synonyms for heaving", "clues": ["puff", "gag", "heft", "heave", "gasp", "surge", "pant", "buckle", "warp", "retch", "heave up", "heft up", "billow", "heaving"]}, {"answer": "hector", "hint": "synonyms for hector", "clues": ["push around", "browbeat", "bully", "ballyrag", "boss around", "strong-arm", "hector"]}, {"answer": "hedge", "hint": "synonyms for hedge", "clues": ["elude", "put off", "hedge in", "dodge", "evade", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep", "hedge"]}, {"answer": "hedging", "hint": "synonyms for hedging", "clues": ["elude", "put off", "hedge in", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep", "hedging"]}, {"answer": "help", "hint": "synonyms for help", "clues": ["aid", "help oneself", "assist", "serve", "facilitate", "avail", "help"]}, {"answer": "helping", "hint": "synonyms for helping", "clues": ["aid", "help oneself", "assist", "avail", "serve", "facilitate", "help"]}, {"answer": "herald", "hint": "synonyms for herald", "clues": ["foretell", "announce", "hail", "harbinger", "acclaim", "annunciate", "herald"]}, {"answer": "hide", "hint": "synonyms for hide", "clues": ["obscure", "shroud", "hide out", "conceal", "veil", "cover", "blot out", "obliterate", "hide"]}, {"answer": "hiding", "hint": "synonyms for hiding", "clues": ["obscure", "shroud", "hide out", "hide", "conceal", "veil", "cover", "blot out", "obliterate", "hiding"]}, {"answer": "highjacking", "hint": "synonyms for highjacking", "clues": ["hijack", "pirate", "commandeer", "highjacking"]}, {"answer": "highlighting", "hint": "synonyms for highlighting", "clues": ["play up", "spotlight", "highlight", "foreground"]}, {"answer": "hire", "hint": "synonyms for hire", "clues": ["employ", "take", "lease", "rent", "charter", "engage", "hire"]}, {"answer": "hiss", "hint": "synonyms for hiss", "clues": ["sibilate", "siss", "boo", "whoosh", "sizz", "hiss"]}, {"answer": "hissing", "hint": "synonyms for hissing", "clues": ["siss", "whoosh", "boo", "sibilate", "sizz", "hiss"]}, {"answer": "hit", "hint": "synonyms for hit", "clues": ["make", "dispatch", "strike", "remove", "rack up", "polish off", "score", "gain", "pip", "attain", "stumble", "collide with", "impinge on", "off", "shoot", "arrive at", "tally", "slay", "bump off", "murder", "reach", "run into", "come to", "hit"]}, {"answer": "hitch", "hint": "synonyms for hitch", "clues": ["catch", "buck", "hitchhike", "hobble", "limp", "thumb", "jerk", "gimp", "hitch"]}, {"answer": "hitchings", "hint": "synonyms for hitchings", "clues": ["hitch", "buck", "hitchhike", "jerk", "gimp", "thumb", "catch", "hobble", "limp", "hitchings"]}, {"answer": "hitting", "hint": "synonyms for hitting", "clues": ["make", "dispatch", "strike", "remove", "rack up", "polish off", "score", "gain", "pip", "attain", "stumble", "collide with", "impinge on", "off", "shoot", "arrive at", "hit", "tally", "slay", "bump off", "murder", "reach", "run into", "come to", "hitting"]}, {"answer": "hoard", "hint": "synonyms for hoard", "clues": ["lay away", "roll up", "accumulate", "amass", "collect", "hive up", "compile", "squirrel away", "pile up", "stash", "cache", "hoard"]}, {"answer": "hoarding", "hint": "synonyms for hoarding", "clues": ["lay away", "roll up", "accumulate", "amass", "collect", "hive up", "hoard", "compile", "squirrel away", "pile up", "stash", "cache"]}, {"answer": "hobble", "hint": "synonyms for hobble", "clues": ["limp", "hitch", "hopple", "gimp", "hobble"]}, {"answer": "hold", "hint": "synonyms for hold", "clues": ["restrain", "have got", "halt", "control", "defend", "maintain", "entertain", "admit", "obtain", "concord", "take for", "prevail", "harbour", "oblige", "go for", "withstand", "book", "bind", "agree", "arrest", "view as", "reserve", "sustain", "give", "have", "defy", "declare", "deem", "make", "nurse", "moderate", "keep", "carry", "hold up", "adjudge", "concur", "accommodate", "guard", "apply", "throw", "support", "take", "curb", "take hold", "hold in", "hold back", "bear", "confine", "contain", "keep back", "check", "hold"]}, {"answer": "holding", "hint": "synonyms for holding", "clues": ["restrain", "have got", "halt", "control", "defend", "maintain", "entertain", "admit", "obtain", "concord", "take for", "prevail", "harbour", "oblige", "go for", "withstand", "book", "bind", "agree", "arrest", "view as", "reserve", "sustain", "give", "have", "defy", "declare", "deem", "make", "nurse", "moderate", "keep", "carry", "hold", "hold up", "adjudge", "concur", "accommodate", "guard", "apply", "throw", "support", "take", "curb", "take hold", "hold in", "hold back", "bear", "confine", "contain", "keep back", "check"]}, {"answer": "holler", "hint": "synonyms for holler", "clues": ["hollo", "yell", "beef", "grouse", "call", "scream", "cry", "squall", "shout", "gripe", "squawk", "bitch", "shout out", "bellyache", "crab", "holler out", "holler"]}, {"answer": "hollering", "hint": "synonyms for hollering", "clues": ["hollo", "yell", "beef", "grouse", "call", "scream", "cry", "squall", "shout", "gripe", "squawk", "bitch", "shout out", "bellyache", "crab", "holler out", "holler"]}, {"answer": "hollo", "hint": "synonyms for hollo", "clues": ["yell", "call", "scream", "cry", "squall", "shout out", "shout", "holler", "hollo"]}, {"answer": "honk", "hint": "synonyms for honk", "clues": ["upchuck", "cronk", "purge", "claxon", "chuck", "beep", "retch", "throw up", "cast", "vomit", "blare", "disgorge", "regorge", "be sick", "regurgitate", "toot", "puke", "barf", "spue", "vomit up", "spew", "sick", "honk"]}, {"answer": "honor", "hint": "synonyms for honor", "clues": ["honour", "observe", "abide by", "reward", "respect"]}, {"answer": "honoring", "hint": "synonyms for honoring", "clues": ["honour", "observe", "abide by", "reward", "respect", "honoring"]}, {"answer": "honour", "hint": "synonyms for honour", "clues": ["observe", "honor", "abide by", "reward", "respect"]}, {"answer": "honours", "hint": "synonyms for honours", "clues": ["honour", "observe", "abide by", "reward", "respect"]}, {"answer": "hoofing", "hint": "synonyms for hoofing", "clues": ["leg it", "foot", "hoof", "hoof it"]}, {"answer": "hook", "hint": "synonyms for hook", "clues": ["pluck", "fleece", "solicit", "plume", "rob", "glom", "sneak", "purloin", "thieve", "surcharge", "cop", "swipe", "accost", "lift", "abstract", "pilfer", "addict", "pinch", "knock off", "overcharge", "filch", "snarf", "snare", "gazump", "soak", "nobble", "snitch", "crochet", "cabbage", "hook"]}, {"answer": "hooking", "hint": "synonyms for hooking", "clues": ["pluck", "fleece", "solicit", "plume", "rob", "glom", "sneak", "purloin", "thieve", "surcharge", "cop", "swipe", "accost", "lift", "abstract", "pilfer", "addict", "pinch", "knock off", "overcharge", "filch", "snarf", "snare", "gazump", "soak", "nobble", "hook", "snitch", "crochet", "cabbage"]}, {"answer": "hooks", "hint": "synonyms for hooks", "clues": ["pluck", "fleece", "solicit", "plume", "rob", "glom", "sneak", "purloin", "thieve", "surcharge", "cop", "swipe", "accost", "lift", "abstract", "pilfer", "addict", "pinch", "knock off", "overcharge", "filch", "snarf", "snare", "gazump", "soak", "nobble", "hook", "snitch", "crochet", "cabbage"]}, {"answer": "howl", "hint": "synonyms for howl", "clues": ["yowl", "yammer", "yaup", "wrawl", "yawl", "roar", "wail", "ululate", "howl"]}, {"answer": "huckster", "hint": "synonyms for huckster", "clues": ["haggle", "higgle", "monger", "vend", "pitch", "peddle", "hawk", "chaffer", "huckster"]}, {"answer": "hugging", "hint": "synonyms for hugging", "clues": ["bosom", "embrace", "squeeze", "hug", "hugging"]}, {"answer": "humming", "hint": "synonyms for humming", "clues": ["buzz", "seethe", "hum", "thrum", "humming"]}, {"answer": "hump", "hint": "synonyms for hump", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "hunch forward", "have it away", "fuck", "make out", "lie with", "hunch over", "hunch", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "eff", "do it", "bang", "have sex", "sleep together", "hump"]}, {"answer": "hunger", "hint": "synonyms for hunger", "clues": ["crave", "thirst", "starve", "famish", "lust", "hunger"]}, {"answer": "hunt", "hint": "synonyms for hunt", "clues": ["trace", "hunt down", "track down", "hound", "run", "hunt"]}, {"answer": "hunting", "hint": "synonyms for hunting", "clues": ["trace", "hunt down", "hunt", "track down", "hound", "run"]}, {"answer": "hurl", "hint": "synonyms for hurl", "clues": ["hurtle", "throw", "lunge", "cast", "thrust", "hurl"]}, {"answer": "hurling", "hint": "synonyms for hurling", "clues": ["hurtle", "throw", "lunge", "cast", "thrust", "hurl"]}, {"answer": "hurry", "hint": "synonyms for hurry", "clues": ["festinate", "look sharp", "rush", "travel rapidly", "zip", "speed", "hasten", "hurry"]}, {"answer": "hurting", "hint": "synonyms for hurting", "clues": ["spite", "hurt", "offend", "wound", "bruise", "anguish", "injure", "ache", "smart", "pain", "suffer"]}, {"answer": "hush", "hint": "synonyms for hush", "clues": ["still", "quieten", "pipe down", "silence", "quiesce", "hush up", "shut up", "quiet", "quiet down", "hush"]}, {"answer": "hushing", "hint": "synonyms for hushing", "clues": ["hush", "still", "quieten", "pipe down", "silence", "quiesce", "hush up", "shut up", "quiet", "quiet down"]}, {"answer": "hustle", "hint": "synonyms for hustle", "clues": ["roll", "bustle", "pluck", "bustle about", "hustle"]}, {"answer": "hybridizing", "hint": "synonyms for hybridizing", "clues": ["interbreed", "crossbreed", "hybridize", "cross", "hybridizing"]}, {"answer": "idling", "hint": "synonyms for idling", "clues": ["laze", "tick over", "slug", "stagnate", "idle", "idling"]}, {"answer": "image", "hint": "synonyms for image", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "project", "image"]}, {"answer": "imaging", "hint": "synonyms for imaging", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "project", "image", "imaging"]}, {"answer": "imbibing", "hint": "synonyms for imbibing", "clues": ["sop up", "suck", "imbibe", "take up", "absorb", "drink", "suck up", "draw", "take in", "assimilate", "soak up", "imbibing"]}, {"answer": "immobilizing", "hint": "synonyms for immobilizing", "clues": ["freeze", "block", "trap", "immobilize", "pin", "immobilizing"]}, {"answer": "impact", "hint": "synonyms for impact", "clues": ["touch on", "bear upon", "affect", "touch", "impact"]}, {"answer": "imparting", "hint": "synonyms for imparting", "clues": ["convey", "pass on", "lend", "contribute", "bestow", "carry", "channel", "bring", "conduct", "transmit", "impart", "give", "add", "leave"]}, {"answer": "impinging", "hint": "synonyms for impinging", "clues": ["entrench", "impinge", "infringe", "encroach", "impinging"]}, {"answer": "implant", "hint": "synonyms for implant", "clues": ["embed", "imbed", "plant", "engraft", "implant"]}, {"answer": "implement", "hint": "synonyms for implement", "clues": ["go through", "carry out", "follow through", "put through", "follow up", "enforce", "follow out", "apply", "implement"]}, {"answer": "impounding", "hint": "synonyms for impounding", "clues": ["confiscate", "attach", "sequester", "impound", "pound", "seize"]}, {"answer": "impress", "hint": "synonyms for impress", "clues": ["instill", "yarn-dye", "strike", "print", "move", "shanghai", "affect", "ingrain", "imprint", "impress"]}, {"answer": "incense", "hint": "synonyms for incense", "clues": ["exasperate", "thurify", "infuriate", "cense", "incense"]}, {"answer": "incline", "hint": "synonyms for incline", "clues": ["dispose", "tend", "be given", "lean", "run", "pitch", "slope", "incline"]}, {"answer": "inclining", "hint": "synonyms for inclining", "clues": ["incline", "dispose", "be given", "pitch", "tend", "lean", "run", "slope", "inclining"]}, {"answer": "inconvenience", "hint": "synonyms for inconvenience", "clues": ["bother", "incommode", "trouble", "discommode", "put out", "disoblige", "inconvenience"]}, {"answer": "incurring", "hint": "synonyms for incurring", "clues": ["find", "get", "obtain", "receive", "incur", "incurring"]}, {"answer": "inducing", "hint": "synonyms for inducing", "clues": ["induce", "make", "rush", "get", "induct", "stimulate", "bring on", "have", "cause", "hasten", "inducing"]}, {"answer": "indulging", "hint": "synonyms for indulging", "clues": ["featherbed", "spoil", "pamper", "indulge", "mollycoddle", "gratify", "pander", "cosset", "luxuriate", "baby", "coddle", "cocker", "indulging"]}, {"answer": "inebriate", "hint": "synonyms for inebriate", "clues": ["thrill", "exhilarate", "beatify", "exalt", "souse", "soak", "hit it up", "tickle pink", "intoxicate", "inebriate"]}, {"answer": "inflaming", "hint": "synonyms for inflaming", "clues": ["inflame", "ignite", "kindle", "wake", "conflagrate", "heat", "stir up", "fire up", "inflaming"]}, {"answer": "influence", "hint": "synonyms for influence", "clues": ["regulate", "act upon", "work", "determine", "shape", "mold", "tempt", "charm", "influence"]}, {"answer": "ingraining", "hint": "synonyms for ingraining", "clues": ["impress", "instill", "ingrain", "grain"]}, {"answer": "initiate", "hint": "synonyms for initiate", "clues": ["lead up", "start", "pioneer", "induct", "originate", "broach", "initiate"]}, {"answer": "inoculating", "hint": "synonyms for inoculating", "clues": ["immunize", "vaccinate", "inoculate", "inoculating"]}, {"answer": "insert", "hint": "synonyms for insert", "clues": ["enclose", "sneak in", "put in", "enter", "introduce", "infix", "stick in", "tuck", "slip in", "insert"]}, {"answer": "insisting", "hint": "synonyms for insisting", "clues": ["insist", "take a firm stand", "assert", "importune"]}, {"answer": "installing", "hint": "synonyms for installing", "clues": ["put in", "set up", "establish", "instal", "installing"]}, {"answer": "instilling", "hint": "synonyms for instilling", "clues": ["inculcate", "instill", "tincture", "impregnate", "transfuse", "impress", "infuse", "ingrain"]}, {"answer": "institute", "hint": "synonyms for institute", "clues": ["bring", "plant", "found", "establish", "constitute", "institute"]}, {"answer": "integrating", "hint": "synonyms for integrating", "clues": ["incorporate", "desegregate", "integrate", "mix", "integrating"]}, {"answer": "interbreeding", "hint": "synonyms for interbreeding", "clues": ["interbreed", "crossbreed", "hybridize", "cross"]}, {"answer": "intercept", "hint": "synonyms for intercept", "clues": ["tap", "wiretap", "bug", "stop", "intercept"]}, {"answer": "interchange", "hint": "synonyms for interchange", "clues": ["flip", "substitute", "flip-flop", "switch", "change", "tack", "counterchange", "transpose", "alternate", "replace", "interchange"]}, {"answer": "interdict", "hint": "synonyms for interdict", "clues": ["disallow", "nix", "proscribe", "forbid", "veto", "prohibit", "interdict"]}, {"answer": "interest", "hint": "synonyms for interest", "clues": ["worry", "concern", "matter to", "occupy", "interest"]}, {"answer": "interpreting", "hint": "synonyms for interpreting", "clues": ["construe", "see", "represent", "render", "interpret", "read", "translate", "rede", "understand"]}, {"answer": "interrupt", "hint": "synonyms for interrupt", "clues": ["break", "break up", "disturb", "cut off", "disrupt", "interrupt"]}, {"answer": "investigating", "hint": "synonyms for investigating", "clues": ["enquire", "investigate", "look into", "investigating"]}, {"answer": "investing", "hint": "synonyms for investing", "clues": ["empower", "commit", "clothe", "invest", "seat", "induct", "gift", "enthrone", "endow", "adorn", "indue", "place", "put", "vest", "endue"]}, {"answer": "invite", "hint": "synonyms for invite", "clues": ["ask for", "receive", "call for", "pay for", "tempt", "ask over", "ask round", "take in", "ask in", "bid", "invite"]}, {"answer": "issue", "hint": "synonyms for issue", "clues": ["go forth", "emerge", "egress", "cut", "come forth", "put out", "supply", "write out", "bring out", "make out", "come out", "release", "publish", "issue"]}, {"answer": "issuing", "hint": "synonyms for issuing", "clues": ["go forth", "emerge", "egress", "cut", "issue", "come forth", "put out", "supply", "write out", "bring out", "make out", "come out", "release", "publish", "issuing"]}, {"answer": "itching", "hint": "synonyms for itching", "clues": ["scratch", "spoil", "rub", "itch"]}, {"answer": "jab", "hint": "synonyms for jab", "clues": ["stab", "dig", "poke", "prod", "jab"]}, {"answer": "jabber", "hint": "synonyms for jabber", "clues": ["rave", "mouth off", "rabbit on", "rant", "spout", "jabber"]}, {"answer": "jabbering", "hint": "synonyms for jabbering", "clues": ["rave", "mouth off", "jabber", "rabbit on", "rant", "spout"]}, {"answer": "jabbing", "hint": "synonyms for jabbing", "clues": ["stab", "dig", "poke", "jab", "prod", "jabbing"]}, {"answer": "jail", "hint": "synonyms for jail", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "immure", "lag", "incarcerate", "imprison", "jail"]}, {"answer": "jam", "hint": "synonyms for jam", "clues": ["chock up", "occlude", "block", "crush", "pack", "mob", "throng", "jampack", "impede", "obstruct", "close up", "wad", "ram", "obturate", "pile", "jam"]}, {"answer": "james", "hint": "synonyms for james", "clues": ["occlude", "obstruct", "jam", "ram", "obturate", "jampack", "pile", "chock up", "block", "crush", "pack", "mob", "throng", "impede", "close up", "wad"]}, {"answer": "jamming", "hint": "synonyms for jamming", "clues": ["occlude", "obstruct", "jam", "ram", "obturate", "jampack", "pile", "chock up", "block", "crush", "pack", "mob", "throng", "impede", "close up", "wad", "jamming"]}, {"answer": "jar", "hint": "synonyms for jar", "clues": ["clash", "collide", "bump around", "jolt", "shake up", "jar"]}, {"answer": "jaw", "hint": "synonyms for jaw", "clues": ["chew up", "confab", "dress down", "manducate", "chew out", "call on the carpet", "berate", "claver", "chat", "yack away", "lambast", "rebuke", "chit-chat", "chaffer", "lecture", "masticate", "call down", "reprimand", "yack", "remonstrate", "visit", "rattle on", "chatter", "gossip", "confabulate", "rag", "scold", "chew the fat", "take to task", "reproof", "natter", "have words", "bawl out", "shoot the breeze", "chide", "chew", "trounce", "yap away", "jaw"]}, {"answer": "jazz", "hint": "synonyms for jazz", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "hump", "eff", "do it", "bang", "have sex", "sleep together", "jazz"]}, {"answer": "jeer", "hint": "synonyms for jeer", "clues": ["flout", "scoff", "gibe", "barrack", "jeer"]}, {"answer": "jerk", "hint": "synonyms for jerk", "clues": ["flick", "buck", "yank", "hitch", "twitch", "jerk"]}, {"answer": "jib", "hint": "synonyms for jib", "clues": ["gybe", "resist", "jibe", "balk", "change course"]}, {"answer": "jibe", "hint": "synonyms for jibe", "clues": ["gybe", "correspond", "fit", "jib", "match", "tally", "agree", "gibe", "change course", "check"]}, {"answer": "jimmies", "hint": "synonyms for jimmies", "clues": ["lever", "jimmy", "prize", "prise", "pry", "jimmies"]}, {"answer": "jimmy", "hint": "synonyms for jimmy", "clues": ["prise", "lever", "pry", "prize", "jimmy"]}, {"answer": "jinx", "hint": "synonyms for jinx", "clues": ["enchant", "hex", "witch", "glamour", "bewitch", "jinx"]}, {"answer": "jockey", "hint": "synonyms for jockey", "clues": ["shaft", "cheat", "chouse", "chicane", "screw", "jockey"]}, {"answer": "jog", "hint": "synonyms for jog", "clues": ["ramble on", "clip", "trot", "ramble", "even up", "square up", "jog"]}, {"answer": "jogging", "hint": "synonyms for jogging", "clues": ["ramble on", "clip", "trot", "ramble", "even up", "jog", "square up", "jogging"]}, {"answer": "join", "hint": "synonyms for join", "clues": ["unite", "conjoin", "link up", "connect", "fall in", "get together", "link", "bring together", "join"]}, {"answer": "joining", "hint": "synonyms for joining", "clues": ["unite", "conjoin", "link up", "connect", "fall in", "get together", "link", "join", "bring together"]}, {"answer": "judge", "hint": "synonyms for judge", "clues": ["label", "adjudicate", "evaluate", "gauge", "pass judgment", "approximate", "guess", "pronounce", "estimate", "try", "judge"]}, {"answer": "judges", "hint": "synonyms for judges", "clues": ["label", "adjudicate", "pronounce", "gauge", "pass judgment", "approximate", "guess", "judge", "evaluate", "estimate", "try"]}, {"answer": "judging", "hint": "synonyms for judging", "clues": ["label", "adjudicate", "pronounce", "gauge", "pass judgment", "approximate", "guess", "judge", "evaluate", "estimate", "try", "judging"]}, {"answer": "jug", "hint": "synonyms for jug", "clues": ["put behind bars", "gaol", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison", "jug"]}, {"answer": "jumble", "hint": "synonyms for jumble", "clues": ["confuse", "throw together", "mix up", "mingle", "scramble", "jumble"]}, {"answer": "jump", "hint": "synonyms for jump", "clues": ["climb up", "startle", "jump-start", "stand out", "rise", "derail", "pass over", "bound", "alternate", "parachute", "spring", "skip over", "skip", "start", "leap out", "leap", "chute", "jump off", "jump out", "stick out", "jump"]}, {"answer": "jumping", "hint": "synonyms for jumping", "clues": ["climb up", "startle", "jump-start", "stand out", "rise", "derail", "pass over", "bound", "alternate", "parachute", "spring", "jump", "skip", "skip over", "start", "leap out", "leap", "chute", "jump off", "jump out", "stick out"]}, {"answer": "junketing", "hint": "synonyms for junketing", "clues": ["junketeer", "feast", "banquet", "junket"]}, {"answer": "jut", "hint": "synonyms for jut", "clues": ["project", "protrude", "jut out", "stick out", "jut"]}, {"answer": "keel", "hint": "synonyms for keel", "clues": ["swag", "stagger", "careen", "reel", "lurch", "keel"]}, {"answer": "keep", "hint": "synonyms for keep", "clues": ["restrain", "stay fresh", "go on", "celebrate", "observe", "continue", "maintain", "keep on", "prevent", "hold", "preserve", "hold on", "go along", "hold back", "proceed", "keep back", "sustain", "save", "keep"]}, {"answer": "keeping", "hint": "synonyms for keeping", "clues": ["restrain", "stay fresh", "go on", "celebrate", "observe", "maintain", "keep", "continue", "keep on", "prevent", "hold", "preserve", "hold on", "go along", "hold back", "proceed", "keep back", "sustain", "save"]}, {"answer": "kick", "hint": "synonyms for kick", "clues": ["quetch", "complain", "recoil", "give up", "kick back", "plain", "kvetch", "sound off", "kick"]}, {"answer": "kicking", "hint": "synonyms for kicking", "clues": ["quetch", "complain", "recoil", "give up", "kick back", "plain", "kvetch", "kick", "sound off"]}, {"answer": "kid", "hint": "synonyms for kid", "clues": ["jolly", "josh", "banter", "chaff", "pull the leg of", "kid"]}, {"answer": "kidnapping", "hint": "synonyms for kidnapping", "clues": ["kidnap", "snatch", "abduct", "nobble", "kidnapping"]}, {"answer": "kill", "hint": "synonyms for kill", "clues": ["vote out", "down", "toss off", "stamp out", "vote down", "wipe out", "belt down", "drink down", "defeat", "pop", "shoot down", "pour down", "obliterate", "kill"]}, {"answer": "kindling", "hint": "synonyms for kindling", "clues": ["inflame", "provoke", "fire", "evoke", "raise", "kindle", "arouse", "conflagrate", "elicit", "kindling"]}, {"answer": "kink", "hint": "synonyms for kink", "clues": ["curl", "frizz", "kink up", "crimp", "curve", "crape", "frizzle", "kink"]}, {"answer": "kip", "hint": "synonyms for kip", "clues": ["slumber", "log Z's", "sleep", "catch some Z's", "kip"]}, {"answer": "kissing", "hint": "synonyms for kissing", "clues": ["buss", "snog", "kiss", "osculate"]}, {"answer": "knit", "hint": "synonyms for knit", "clues": ["entwine", "cockle", "rumple", "pucker", "knit"]}, {"answer": "knitting", "hint": "synonyms for knitting", "clues": ["entwine", "knit", "cockle", "rumple", "pucker", "knitting"]}, {"answer": "knock", "hint": "synonyms for knock", "clues": ["criticise", "pick apart", "rap", "strike hard", "tap", "pink", "ping", "bump", "knock"]}, {"answer": "knocking", "hint": "synonyms for knocking", "clues": ["criticise", "pick apart", "rap", "strike hard", "tap", "knock", "pink", "ping", "bump"]}, {"answer": "know", "hint": "synonyms for know", "clues": ["sleep with", "cognise", "bed", "get it on", "get laid", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "recognize", "screw", "jazz", "hump", "live", "eff", "experience", "do it", "acknowledge", "bang", "have sex", "sleep together", "know"]}, {"answer": "kotow", "hint": "synonyms for kotow", "clues": ["kowtow", "suck up", "toady", "truckle", "bootlick", "fawn"]}, {"answer": "kowtow", "hint": "synonyms for kowtow", "clues": ["genuflect", "truckle", "fawn", "suck up", "toady", "kotow", "scrape", "bootlick"]}, {"answer": "kvetch", "hint": "synonyms for kvetch", "clues": ["quetch", "complain", "plain", "kick", "sound off", "kvetch"]}, {"answer": "label", "hint": "synonyms for label", "clues": ["mark", "pronounce", "judge", "tag", "label"]}, {"answer": "labor", "hint": "synonyms for labor", "clues": ["labour", "push", "fag", "drudge", "grind", "travail", "tug", "moil", "toil", "drive", "dig"]}, {"answer": "labour", "hint": "synonyms for labour", "clues": ["fag", "drudge", "grind", "push", "travail", "labor", "tug", "moil", "toil", "drive", "dig"]}, {"answer": "lace", "hint": "synonyms for lace", "clues": ["intertwine", "entwine", "braid", "plait", "enlace", "spike", "interlace", "lace up", "fortify", "twine", "lace"]}, {"answer": "lacing", "hint": "synonyms for lacing", "clues": ["intertwine", "entwine", "braid", "enlace", "plait", "spike", "interlace", "lace up", "lace", "fortify", "twine", "lacing"]}, {"answer": "lactate", "hint": "synonyms for lactate", "clues": ["give suck", "suck", "breastfeed", "suckle", "nurse", "wet-nurse", "lactate"]}, {"answer": "lading", "hint": "synonyms for lading", "clues": ["laden", "load up", "ladle", "load", "lading"]}, {"answer": "lag", "hint": "synonyms for lag", "clues": ["put behind bars", "gaol", "fall back", "jug", "remand", "put away", "immure", "fall behind", "jail", "incarcerate", "imprison", "dawdle", "lag"]}, {"answer": "lagging", "hint": "synonyms for lagging", "clues": ["put behind bars", "gaol", "fall back", "jug", "remand", "put away", "immure", "fall behind", "jail", "lag", "incarcerate", "imprison", "dawdle", "lagging"]}, {"answer": "lam", "hint": "synonyms for lam", "clues": ["break away", "escape", "hightail it", "scat", "thrash", "flail", "turn tail", "fly the coop", "head for the hills", "scarper", "bunk", "thresh", "run", "run away", "take to the woods", "lam"]}, {"answer": "lament", "hint": "synonyms for lament", "clues": ["deplore", "keen", "bewail", "bemoan", "lament"]}, {"answer": "land", "hint": "synonyms for land", "clues": ["bring down", "bring", "down", "shoot down", "set down", "put down", "shore", "set ashore", "land"]}, {"answer": "landing", "hint": "synonyms for landing", "clues": ["down", "put down", "shore", "land", "bring down", "bring", "shoot down", "set down", "set ashore"]}, {"answer": "lap", "hint": "synonyms for lap", "clues": ["wash", "lap up", "swish", "lave", "lick", "swosh", "lap"]}, {"answer": "lapping", "hint": "synonyms for lapping", "clues": ["swish", "lave", "lap", "lick", "swosh", "wash", "lap up", "lapping"]}, {"answer": "lapse", "hint": "synonyms for lapse", "clues": ["sink", "fall back", "elapse", "glide by", "go along", "retrogress", "regress", "go by", "backslide", "slip away", "pass", "slip by", "recidivate"]}, {"answer": "lapsing", "hint": "synonyms for lapsing", "clues": ["sink", "fall back", "elapse", "glide by", "go along", "retrogress", "regress", "go by", "backslide", "slip away", "pass", "slip by", "recidivate", "lapsing"]}, {"answer": "lard", "hint": "synonyms for lard", "clues": ["embellish", "blow up", "dramatize", "aggrandise", "embroider", "pad", "lard"]}, {"answer": "lark", "hint": "synonyms for lark", "clues": ["sport", "cavort", "rollick", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol", "lark"]}, {"answer": "lash", "hint": "synonyms for lash", "clues": ["welt", "flog", "whip", "slash", "lather", "strap", "trounce"]}, {"answer": "lashings", "hint": "synonyms for lashings", "clues": ["lash", "flog", "whip", "lather", "welt", "strap", "trounce", "lashings"]}, {"answer": "lather", "hint": "synonyms for lather", "clues": ["welt", "soap", "lash", "flog", "whip", "strap", "trounce", "lather"]}, {"answer": "launch", "hint": "synonyms for launch", "clues": ["set in motion", "establish", "set up", "found", "plunge", "launch"]}, {"answer": "launching", "hint": "synonyms for launching", "clues": ["set in motion", "launch", "set up", "found", "plunge", "establish"]}, {"answer": "laying", "hint": "synonyms for laying", "clues": ["pose", "repose", "set", "put down", "lay", "put", "position", "place"]}, {"answer": "lead", "hint": "synonyms for lead", "clues": ["go", "take", "direct", "moderate", "contribute", "chair", "head", "top", "guide", "conduct", "precede", "result", "pass", "run", "extend", "leave", "lead"]}, {"answer": "leaf", "hint": "synonyms for leaf", "clues": ["flip", "flick", "riff", "riffle", "thumb", "leaf"]}, {"answer": "leafing", "hint": "synonyms for leafing", "clues": ["flip", "flick", "leaf", "riff", "riffle", "thumb"]}, {"answer": "leap", "hint": "synonyms for leap", "clues": ["jump", "bound", "jump off", "spring", "leap"]}, {"answer": "leaping", "hint": "synonyms for leaping", "clues": ["jump", "bound", "leap", "jump off", "spring"]}, {"answer": "learning", "hint": "synonyms for learning", "clues": ["ascertain", "memorize", "hear", "instruct", "pick up", "determine", "discover", "study", "larn", "teach", "watch", "con", "see", "take", "acquire", "check", "get word", "read", "get a line", "find out", "get wind", "learning"]}, {"answer": "lease", "hint": "synonyms for lease", "clues": ["let", "hire", "take", "rent", "charter", "engage", "lease"]}, {"answer": "leave", "hint": "synonyms for leave", "clues": ["go away", "give", "leave behind", "allow", "lead", "result", "depart", "allow for", "will", "go out", "go forth", "leave alone", "pass on", "exit", "forget", "provide", "get out", "bequeath", "pull up stakes", "impart", "entrust", "leave"]}, {"answer": "leaving", "hint": "synonyms for leaving", "clues": ["go away", "give", "leave behind", "allow", "lead", "result", "depart", "allow for", "go out", "will", "leave", "go forth", "leave alone", "pass on", "exit", "forget", "provide", "get out", "bequeath", "pull up stakes", "impart", "entrust", "leaving"]}, {"answer": "lecture", "hint": "synonyms for lecture", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "talk", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "berate", "call down", "reprimand", "trounce", "lecture"]}, {"answer": "lecturing", "hint": "synonyms for lecturing", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "talk", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "lecturing"]}, {"answer": "led", "hint": "synonyms for led", "clues": ["go", "direct", "moderate", "contribute", "chair", "precede", "lead", "result", "run", "leave", "take", "head", "top", "guide", "conduct", "pass", "extend"]}, {"answer": "lending", "hint": "synonyms for lending", "clues": ["bring", "impart", "lend", "contribute", "bestow", "add", "loan"]}, {"answer": "lent", "hint": "synonyms for lent", "clues": ["bring", "impart", "lend", "contribute", "bestow", "add", "loan", "lent"]}, {"answer": "lessening", "hint": "synonyms for lessening", "clues": ["diminish", "subside", "lessen", "decrease", "minify", "fall"]}, {"answer": "let", "hint": "synonyms for let", "clues": ["lease", "allow", "permit", "rent", "have", "get", "countenance", "let"]}, {"answer": "letting", "hint": "synonyms for letting", "clues": ["permit", "let", "lease", "allow", "rent", "have", "get", "countenance", "letting"]}, {"answer": "leveling", "hint": "synonyms for leveling", "clues": ["tear down", "raze", "rase", "even out", "level", "flush", "even", "level off", "charge", "pull down", "take down", "point", "dismantle"]}, {"answer": "lever", "hint": "synonyms for lever", "clues": ["prise", "jimmy", "pry", "prize", "lever"]}, {"answer": "lick", "hint": "synonyms for lick", "clues": ["bat", "work", "lap", "thrash", "work out", "puzzle out", "clobber", "solve", "lap up", "drub", "figure out", "cream", "lick"]}, {"answer": "licking", "hint": "synonyms for licking", "clues": ["bat", "work", "lap", "thrash", "lick", "work out", "puzzle out", "clobber", "solve", "lap up", "drub", "figure out", "cream"]}, {"answer": "lie", "hint": "synonyms for lie", "clues": ["dwell", "lie in", "consist", "rest", "lie down", "lie"]}, {"answer": "lied", "hint": "synonyms for lied", "clues": ["dwell", "lie", "lie in", "consist", "rest", "lie down"]}, {"answer": "lift", "hint": "synonyms for lift", "clues": ["cabbage", "countermand", "uprise", "go up", "plagiarise", "come up", "face-lift", "reverse", "rise", "sneak", "hoist", "rustle", "purloin", "rear", "swipe", "rescind", "overturn", "get up", "abstract", "bring up", "pilfer", "pinch", "wind", "repeal", "filch", "snarf", "airlift", "vacate", "elevate", "nobble", "hook", "move up", "annul", "revoke", "lift"]}, {"answer": "lightening", "hint": "synonyms for lightening", "clues": ["brighten", "relieve", "buoy up", "lighten", "lighten up"]}, {"answer": "lighting", "hint": "synonyms for lighting", "clues": ["illumine", "light", "light up", "perch", "get down", "ignite", "get off", "dismount", "unhorse", "fall", "fire up"]}, {"answer": "limit", "hint": "synonyms for limit", "clues": ["restrain", "throttle", "specify", "restrict", "circumscribe", "set", "define", "trammel", "confine", "determine", "bound", "fix", "limit"]}, {"answer": "limning", "hint": "synonyms for limning", "clues": ["delineate", "limn", "portray", "outline", "depict"]}, {"answer": "limping", "hint": "synonyms for limping", "clues": ["hitch", "hobble", "limp", "gimp"]}, {"answer": "line", "hint": "synonyms for line", "clues": ["trace", "describe", "delineate", "draw", "run along", "line"]}, {"answer": "lingering", "hint": "synonyms for lingering", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "hover", "mill about", "loaf", "mill around", "lurk", "mess about", "dawdle"]}, {"answer": "lining", "hint": "synonyms for lining", "clues": ["trace", "describe", "delineate", "draw", "line", "run along", "lining"]}, {"answer": "link", "hint": "synonyms for link", "clues": ["tie", "unite", "link up", "connect", "associate", "join", "colligate", "tie in", "yoke", "relate", "link"]}, {"answer": "links", "hint": "synonyms for links", "clues": ["tie", "unite", "link up", "connect", "link", "associate", "join", "colligate", "tie in", "yoke", "relate"]}, {"answer": "list", "hint": "synonyms for list", "clues": ["number", "name", "heel", "lean", "list"]}, {"answer": "listening", "hint": "synonyms for listening", "clues": ["listen", "mind", "hear", "heed", "take heed"]}, {"answer": "listing", "hint": "synonyms for listing", "clues": ["name", "number", "list", "lean", "heel"]}, {"answer": "liveness", "hint": "synonyms for liveness", "clues": ["animate", "liven", "enliven", "invigorate", "liven up", "liveness"]}, {"answer": "load", "hint": "synonyms for load", "clues": ["load up", "stretch", "adulterate", "dilute", "laden", "charge", "debase", "load"]}, {"answer": "loading", "hint": "synonyms for loading", "clues": ["stretch", "load", "adulterate", "dilute", "laden", "charge", "load up", "debase"]}, {"answer": "loads", "hint": "synonyms for loads", "clues": ["stretch", "load", "adulterate", "dilute", "laden", "charge", "load up", "debase"]}, {"answer": "loaf", "hint": "synonyms for loaf", "clues": ["lounge around", "footle", "loiter", "hang around", "lollygag", "mill about", "lurk", "bum about", "lounge about", "frig around", "mess about", "linger", "bum", "arse about", "lounge", "waste one's time", "tarry", "bum around", "loll around", "mill around", "arse around", "loll", "fuck off", "loaf"]}, {"answer": "loafing", "hint": "synonyms for loafing", "clues": ["lounge around", "footle", "loiter", "hang around", "lollygag", "mill about", "loaf", "lurk", "bum about", "lounge about", "frig around", "mess about", "linger", "bum", "arse about", "lounge", "waste one's time", "tarry", "bum around", "loll around", "mill around", "arse around", "loll", "fuck off"]}, {"answer": "loathing", "hint": "synonyms for loathing", "clues": ["abominate", "execrate", "abhor", "loathe", "loathing"]}, {"answer": "locating", "hint": "synonyms for locating", "clues": ["site", "situate", "settle", "place", "turn up", "locate", "locating"]}, {"answer": "lock", "hint": "synonyms for lock", "clues": ["lock up", "put away", "interlock", "lock away", "shut away", "operate", "interlace", "shut up", "engage", "lock in", "mesh", "lock"]}, {"answer": "locking", "hint": "synonyms for locking", "clues": ["lock up", "put away", "interlock", "lock away", "lock", "shut away", "operate", "interlace", "shut up", "engage", "lock in", "mesh"]}, {"answer": "lodge", "hint": "synonyms for lodge", "clues": ["deposit", "wedge", "charge", "stick", "accommodate", "file", "lodge"]}, {"answer": "lodging", "hint": "synonyms for lodging", "clues": ["file", "deposit", "wedge", "charge", "stick", "accommodate", "lodge", "lodging"]}, {"answer": "lodgings", "hint": "synonyms for lodgings", "clues": ["file", "deposit", "wedge", "charge", "stick", "accommodate", "lodge", "lodgings"]}, {"answer": "look", "hint": "synonyms for look", "clues": ["bet", "see", "wait", "face", "attend", "front", "appear", "take care", "expect", "reckon", "search", "depend", "count", "calculate", "look"]}, {"answer": "loom", "hint": "synonyms for loom", "clues": ["bulk large", "brood", "hulk", "predominate", "hover", "tower", "loom"]}, {"answer": "looping", "hint": "synonyms for looping", "clues": ["intertwine", "coil", "curl", "loop"]}, {"answer": "looseness", "hint": "synonyms for looseness", "clues": ["relax", "loosen", "tease apart", "untie", "undo", "tease", "looseness"]}, {"answer": "loosening", "hint": "synonyms for loosening", "clues": ["relax", "loosen", "tease apart", "untie", "undo", "tease"]}, {"answer": "loot", "hint": "synonyms for loot", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "reave", "ransack", "loot"]}, {"answer": "looting", "hint": "synonyms for looting", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "losings", "hint": "synonyms for losings", "clues": ["fall back", "turn a loss", "misplace", "fall behind", "drop off", "mislay", "lose", "suffer", "recede", "miss", "losings"]}, {"answer": "lot", "hint": "synonyms for lot", "clues": ["distribute", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish out", "lot"]}, {"answer": "lounge", "hint": "synonyms for lounge", "clues": ["linger", "footle", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about", "lounge"]}, {"answer": "love", "hint": "synonyms for love", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "enjoy", "love"]}, {"answer": "lower", "hint": "synonyms for lower", "clues": ["let down", "frown", "glower", "lour", "bring down", "depress", "turn down", "take down"]}, {"answer": "lug", "hint": "synonyms for lug", "clues": ["block", "tote", "stuff", "tug", "choke up", "lug"]}, {"answer": "luging", "hint": "synonyms for luging", "clues": ["tote", "luge", "stuff", "block", "choke up", "tug", "toboggan", "luging"]}, {"answer": "lull", "hint": "synonyms for lull", "clues": ["still", "quieten", "tranquilize", "calm down", "quiet", "calm", "lull"]}, {"answer": "lurch", "hint": "synonyms for lurch", "clues": ["swag", "prowl", "stagger", "careen", "pitch", "skunk", "keel", "reel", "shift", "lurch"]}, {"answer": "lust", "hint": "synonyms for lust", "clues": ["crave", "hunger", "starve", "thirst", "lust"]}, {"answer": "lying", "hint": "synonyms for lying", "clues": ["dwell", "lie", "lie in", "consist", "rest", "lie down", "lying"]}, {"answer": "mailing", "hint": "synonyms for mailing", "clues": ["post", "send", "get off", "mail"]}, {"answer": "make", "hint": "synonyms for make", "clues": ["do", "induce", "form", "defecate", "wee-wee", "work", "earn", "wee", "prepare", "score", "pass water", "gain", "construct", "draw", "make up", "attain", "take in", "nominate", "fix", "pretend", "cook", "cause", "spend a penny", "ready", "pull in", "establish", "ca-ca", "lay down", "micturate", "seduce", "reach", "pee-pee", "urinate", "give", "have", "clear", "name", "puddle", "bring in", "hold", "stimulate", "get to", "take a leak", "shit", "stool", "take a crap", "make believe", "produce", "constitute", "throw", "crap", "take", "realise", "arrive at", "get", "make water", "relieve oneself", "piddle", "progress to", "take a shit", "pee", "create", "piss", "build", "make"]}, {"answer": "making", "hint": "synonyms for making", "clues": ["do", "induce", "form", "defecate", "wee-wee", "work", "earn", "wee", "prepare", "score", "pass water", "gain", "construct", "draw", "make up", "attain", "take in", "nominate", "fix", "pretend", "cook", "cause", "spend a penny", "ready", "pull in", "establish", "ca-ca", "lay down", "micturate", "seduce", "reach", "pee-pee", "urinate", "give", "have", "clear", "name", "make", "puddle", "bring in", "hold", "stimulate", "get to", "take a leak", "stool", "shit", "take a crap", "make believe", "produce", "constitute", "throw", "crap", "take", "realise", "arrive at", "get", "make water", "relieve oneself", "piddle", "progress to", "take a shit", "pee", "create", "piss", "build", "making"]}, {"answer": "maneuver", "hint": "synonyms for maneuver", "clues": ["direct", "manoeuvre", "head", "channelize", "steer", "guide", "operate", "point", "maneuver"]}, {"answer": "mangle", "hint": "synonyms for mangle", "clues": ["maul", "murder", "mutilate", "cut up", "mangle"]}, {"answer": "manoeuvre", "hint": "synonyms for manoeuvre", "clues": ["maneuver", "direct", "head", "channelize", "steer", "guide", "operate", "point", "manoeuvre"]}, {"answer": "manufacture", "hint": "synonyms for manufacture", "clues": ["construct", "fabricate", "make up", "cook up", "invent", "manufacture"]}, {"answer": "manufacturing", "hint": "synonyms for manufacturing", "clues": ["fabricate", "manufacture", "construct", "make up", "cook up", "invent", "manufacturing"]}, {"answer": "mar", "hint": "synonyms for mar", "clues": ["mutilate", "impair", "spoil", "vitiate", "deflower", "mar"]}, {"answer": "march", "hint": "synonyms for march", "clues": ["butt on", "parade", "abut", "demonstrate", "process", "butt", "butt against", "exhibit", "edge", "border", "adjoin", "march"]}, {"answer": "marches", "hint": "synonyms for marches", "clues": ["butt on", "parade", "abut", "demonstrate", "process", "march", "butt", "butt against", "exhibit", "edge", "border", "adjoin"]}, {"answer": "marching", "hint": "synonyms for marching", "clues": ["butt on", "parade", "abut", "demonstrate", "process", "march", "butt", "butt against", "exhibit", "edge", "border", "adjoin"]}, {"answer": "mark", "hint": "synonyms for mark", "clues": ["cross out", "denounce", "note", "stigmatize", "strike off", "differentiate", "score", "tag", "grade", "scar", "cross off", "mark off", "nock", "commemorate", "distinguish", "label", "strike out", "notice", "punctuate", "tick", "set", "pock", "brand", "pit", "check off", "check", "tick off", "mark"]}, {"answer": "marking", "hint": "synonyms for marking", "clues": ["cross out", "denounce", "note", "stigmatize", "strike off", "differentiate", "score", "tag", "grade", "scar", "cross off", "mark off", "nock", "commemorate", "distinguish", "label", "strike out", "notice", "punctuate", "mark", "set", "tick", "pock", "brand", "pit", "check off", "check", "tick off"]}, {"answer": "marks", "hint": "synonyms for marks", "clues": ["cross out", "denounce", "note", "stigmatize", "strike off", "differentiate", "score", "tag", "grade", "scar", "cross off", "mark off", "nock", "commemorate", "distinguish", "label", "strike out", "notice", "punctuate", "mark", "set", "tick", "pock", "brand", "pit", "check off", "check", "tick off"]}, {"answer": "mars", "hint": "synonyms for mars", "clues": ["mutilate", "impair", "spoil", "mar", "vitiate", "deflower"]}, {"answer": "mash", "hint": "synonyms for mash", "clues": ["coquet", "romance", "crush", "grind", "crunch", "squelch", "squeeze", "flirt", "comminute", "chat up", "bray", "squash", "philander", "dally", "butterfly", "mash"]}, {"answer": "mask", "hint": "synonyms for mask", "clues": ["disguise", "block out", "cloak", "dissemble", "mask"]}, {"answer": "masking", "hint": "synonyms for masking", "clues": ["disguise", "mask", "block out", "cloak", "dissemble"]}, {"answer": "mastering", "hint": "synonyms for mastering", "clues": ["subdue", "control", "master", "surmount", "overcome", "dominate", "get the hang", "get over"]}, {"answer": "mastermind", "hint": "synonyms for mastermind", "clues": ["engineer", "organize", "direct", "orchestrate", "mastermind"]}, {"answer": "masters", "hint": "synonyms for masters", "clues": ["subdue", "control", "master", "surmount", "overcome", "dominate", "get the hang", "get over"]}, {"answer": "match", "hint": "synonyms for match", "clues": ["mate", "equal", "gibe", "cope with", "pair", "rival", "correspond", "oppose", "fit", "couple", "jibe", "equate", "tally", "agree", "touch", "meet", "twin", "play off", "pit", "equalize", "check", "match"]}, {"answer": "mate", "hint": "synonyms for mate", "clues": ["copulate", "twin", "couple", "match", "pair", "checkmate", "mate"]}, {"answer": "mates", "hint": "synonyms for mates", "clues": ["matte up", "snarl", "mate", "couple", "match", "tangle", "copulate", "twin", "matt-up", "felt up", "felt", "pair", "checkmate"]}, {"answer": "mating", "hint": "synonyms for mating", "clues": ["matte up", "snarl", "mate", "couple", "match", "tangle", "copulate", "twin", "matt-up", "felt up", "felt", "pair", "checkmate", "mating"]}, {"answer": "matting", "hint": "synonyms for matting", "clues": ["matte up", "snarl", "tangle", "mat", "matt-up", "matte", "felt up", "felt", "matting"]}, {"answer": "meander", "hint": "synonyms for meander", "clues": ["wander", "thread", "wind", "weave", "meander"]}, {"answer": "means", "hint": "synonyms for means", "clues": ["entail", "think of", "imply", "intend", "think", "mean", "signify", "stand for", "have in mind"]}, {"answer": "measure", "hint": "synonyms for measure", "clues": ["evaluate", "assess", "value", "measure out", "mensurate", "appraise", "quantify", "measure"]}, {"answer": "measuring", "hint": "synonyms for measuring", "clues": ["evaluate", "measure", "assess", "value", "measure out", "mensurate", "appraise", "quantify", "measuring"]}, {"answer": "meeting", "hint": "synonyms for meeting", "clues": ["converge", "fulfill", "forgather", "satisfy", "play", "take on", "conform to", "cope with", "fill", "assemble", "adjoin", "suffer", "come across", "see", "encounter", "fit", "get together", "match", "receive", "touch", "meet", "gather", "run into", "contact", "run across"]}, {"answer": "meld", "hint": "synonyms for meld", "clues": ["coalesce", "flux", "fuse", "melt", "mix", "commingle", "conflate", "immix", "combine", "merge", "blend", "meld"]}, {"answer": "melt", "hint": "synonyms for melt", "clues": ["mellow", "disappear", "mellow out", "unthaw", "dethaw", "unfreeze", "thaw", "evaporate", "dissolve", "melt down", "fade", "meld", "run", "melt"]}, {"answer": "menace", "hint": "synonyms for menace", "clues": ["jeopardise", "endanger", "peril", "threaten", "imperil", "menace"]}, {"answer": "mend", "hint": "synonyms for mend", "clues": ["touch on", "heal", "repair", "fix", "furbish up", "doctor", "restore", "bushel", "mend"]}, {"answer": "mending", "hint": "synonyms for mending", "clues": ["touch on", "heal", "furbish up", "doctor", "restore", "mend", "repair", "fix", "bushel"]}, {"answer": "mention", "hint": "synonyms for mention", "clues": ["name", "note", "bring up", "observe", "remark", "cite", "advert", "refer", "mention"]}, {"answer": "mesh", "hint": "synonyms for mesh", "clues": ["operate", "ensnarl", "interlock", "engage", "lock", "enmesh", "mesh"]}, {"answer": "meshing", "hint": "synonyms for meshing", "clues": ["operate", "ensnarl", "interlock", "engage", "mesh", "enmesh", "lock"]}, {"answer": "mind", "hint": "synonyms for mind", "clues": ["take care", "listen", "beware", "heed", "bear in mind", "mind"]}, {"answer": "mingling", "hint": "synonyms for mingling", "clues": ["jumble", "commix", "unify", "mingle", "mix", "amalgamate", "mingling"]}, {"answer": "mire", "hint": "synonyms for mire", "clues": ["bog down", "muck", "entangle", "grind to a halt", "mud", "get stuck", "muck up", "mire"]}, {"answer": "misconduct", "hint": "synonyms for misconduct", "clues": ["misbehave", "mismanage", "mishandle", "misdemean", "misconduct"]}, {"answer": "miss", "hint": "synonyms for miss", "clues": ["leave out", "overleap", "overlook", "escape", "omit", "pretermit", "lack", "drop", "lose", "neglect", "miss"]}, {"answer": "mist", "hint": "synonyms for mist", "clues": ["obscure", "haze over", "becloud", "obnubilate", "mist over", "fog", "befog", "cloud", "mist"]}, {"answer": "mistaking", "hint": "synonyms for mistaking", "clues": ["err", "slip", "mistake", "misidentify", "mistaking"]}, {"answer": "misunderstanding", "hint": "synonyms for misunderstanding", "clues": ["misconceive", "be amiss", "misinterpret", "misapprehend", "misconstrue", "misunderstand"]}, {"answer": "mix", "hint": "synonyms for mix", "clues": ["desegregate", "commix", "unify", "fuse", "ruffle", "combine", "integrate", "blend", "coalesce", "flux", "mix in", "shuffle", "amalgamate", "commingle", "conflate", "immix", "merge", "meld", "mingle", "mix"]}, {"answer": "mixing", "hint": "synonyms for mixing", "clues": ["desegregate", "commix", "unify", "fuse", "mix", "mingle", "ruffle", "combine", "integrate", "blend", "coalesce", "flux", "mix in", "shuffle", "amalgamate", "commingle", "conflate", "immix", "merge", "meld"]}, {"answer": "mob", "hint": "synonyms for mob", "clues": ["pack", "pile", "jam", "throng", "mob"]}, {"answer": "modeling", "hint": "synonyms for modeling", "clues": ["pose", "pattern", "mock up", "mould", "posture", "simulate", "sit", "model"]}, {"answer": "modelling", "hint": "synonyms for modelling", "clues": ["pose", "pattern", "mock up", "mould", "posture", "simulate", "sit", "model", "modelling"]}, {"answer": "moistening", "hint": "synonyms for moistening", "clues": ["wash", "moisten", "drizzle", "dampen"]}, {"answer": "mold", "hint": "synonyms for mold", "clues": ["form", "work", "mould", "regulate", "forge", "determine", "shape", "cast", "mildew", "influence", "model"]}, {"answer": "molding", "hint": "synonyms for molding", "clues": ["form", "work", "mold", "regulate", "forge", "determine", "shape", "cast", "mildew", "influence", "model"]}, {"answer": "mollycoddle", "hint": "synonyms for mollycoddle", "clues": ["featherbed", "spoil", "cocker", "pamper", "indulge", "cosset", "baby", "coddle", "mollycoddle"]}, {"answer": "molt", "hint": "synonyms for molt", "clues": ["slough", "moult", "exuviate", "shed"]}, {"answer": "molting", "hint": "synonyms for molting", "clues": ["exuviate", "molt", "shed", "slough"]}, {"answer": "monger", "hint": "synonyms for monger", "clues": ["huckster", "vend", "pitch", "peddle", "hawk", "monger"]}, {"answer": "monkey", "hint": "synonyms for monkey", "clues": ["putter", "tamper", "mess around", "potter", "tinker", "monkey around", "muck around", "fiddle", "muck about", "monkey"]}, {"answer": "mooch", "hint": "synonyms for mooch", "clues": ["grub", "bum", "cadge", "sponge", "mooch"]}, {"answer": "mooring", "hint": "synonyms for mooring", "clues": ["berth", "moor", "wharf", "tie up"]}, {"answer": "mop", "hint": "synonyms for mop", "clues": ["pout", "mow", "mop up", "wipe up", "mop"]}, {"answer": "mop_up", "hint": "synonyms for mop up", "clues": ["finish off", "whip", "wipe up", "rack up", "get through", "polish off", "worst", "clear up", "wrap up", "finish up", "mop", "pip", "mop up"]}, {"answer": "moped", "hint": "synonyms for moped", "clues": ["wipe up", "moon about", "mop up", "mope", "mope around", "pout", "mow", "moon around"]}, {"answer": "mopes", "hint": "synonyms for mopes", "clues": ["wipe up", "moon about", "mop up", "mope", "mope around", "pout", "mow", "moon around"]}, {"answer": "mopping", "hint": "synonyms for mopping", "clues": ["pout", "mop", "wipe up", "mow", "mop up", "mopping"]}, {"answer": "moralizing", "hint": "synonyms for moralizing", "clues": ["moralise", "preachify", "sermonise", "moralizing"]}, {"answer": "mother", "hint": "synonyms for mother", "clues": ["engender", "overprotect", "bring forth", "fuss", "sire", "father", "generate", "beget", "get", "mother"]}, {"answer": "mottle", "hint": "synonyms for mottle", "clues": ["streak", "blotch", "cloud", "dapple", "mottle"]}, {"answer": "mottling", "hint": "synonyms for mottling", "clues": ["blotch", "cloud", "streak", "dapple", "mottle", "mottling"]}, {"answer": "mould", "hint": "synonyms for mould", "clues": ["form", "work", "cast", "shape", "mold", "forge", "model"]}, {"answer": "moulding", "hint": "synonyms for moulding", "clues": ["form", "work", "cast", "mould", "shape", "forge", "model"]}, {"answer": "moult", "hint": "synonyms for moult", "clues": ["molt", "slough", "exuviate", "shed"]}, {"answer": "moulting", "hint": "synonyms for moulting", "clues": ["exuviate", "molt", "shed", "slough", "moulting"]}, {"answer": "mount", "hint": "synonyms for mount", "clues": ["climb up", "get on", "hop on", "jump on", "climb on", "go up", "ride", "rise", "wax", "bestride", "mount up", "climb", "put on", "mount"]}, {"answer": "mounting", "hint": "synonyms for mounting", "clues": ["climb up", "get on", "hop on", "jump on", "climb on", "go up", "ride", "rise", "wax", "bestride", "mount up", "climb", "put on", "mount"]}, {"answer": "mouth", "hint": "synonyms for mouth", "clues": ["speak", "talk", "utter", "verbalize", "mouth"]}, {"answer": "move", "hint": "synonyms for move", "clues": ["displace", "go", "strike", "motivate", "act", "affect", "incite", "be active", "impress", "actuate", "propel", "locomote", "proceed", "make a motion", "travel", "run", "prompt", "move"]}, {"answer": "muck", "hint": "synonyms for muck", "clues": ["mud", "manure", "muck up", "mire", "muck"]}, {"answer": "muff", "hint": "synonyms for muff", "clues": ["fuck up", "louse up", "ball up", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "muff"]}, {"answer": "muffle", "hint": "synonyms for muffle", "clues": ["tone down", "stifle", "mute", "smother", "damp", "dull", "strangle", "repress", "dampen", "muffle"]}, {"answer": "mulct", "hint": "synonyms for mulct", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change", "mulct"]}, {"answer": "mull", "hint": "synonyms for mull", "clues": ["think over", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "chew over", "meditate", "speculate", "mull"]}, {"answer": "mumble", "hint": "synonyms for mumble", "clues": ["gum", "mutter", "mussitate", "maunder", "mumble"]}, {"answer": "mumbling", "hint": "synonyms for mumbling", "clues": ["mutter", "maunder", "gum", "mumble", "mussitate", "mumbling"]}, {"answer": "murder", "hint": "synonyms for murder", "clues": ["dispatch", "remove", "mangle", "hit", "polish off", "slay", "mutilate", "bump off", "off", "murder"]}, {"answer": "murderess", "hint": "synonyms for murderess", "clues": ["dispatch", "remove", "mangle", "hit", "polish off", "slay", "mutilate", "bump off", "murder", "off", "murderess"]}, {"answer": "murmur", "hint": "synonyms for murmur", "clues": ["mutter", "croak", "grumble", "gnarl", "murmur"]}, {"answer": "muse", "hint": "synonyms for muse", "clues": ["think over", "mull", "ruminate", "mull over", "ponder", "contemplate", "excogitate", "reflect", "chew over", "meditate", "speculate", "muse"]}, {"answer": "muster", "hint": "synonyms for muster", "clues": ["summon", "rally", "come up", "muster up", "muster"]}, {"answer": "mutter", "hint": "synonyms for mutter", "clues": ["gnarl", "maunder", "mumble", "murmur", "croak", "grumble", "mussitate", "mutter"]}, {"answer": "muttering", "hint": "synonyms for muttering", "clues": ["mutter", "maunder", "mumble", "grumble", "gnarl", "murmur", "croak", "mussitate"]}, {"answer": "nail", "hint": "synonyms for nail", "clues": ["sail through", "blast", "collar", "smash", "boom", "ace", "pass with flying colors", "pick up", "pinpoint", "nail down", "arrest", "cop", "breeze through", "apprehend", "nab", "peg", "complete", "sweep through", "nail"]}, {"answer": "name", "hint": "synonyms for name", "clues": ["mention", "key", "identify", "make", "call", "bring up", "distinguish", "cite", "appoint", "describe", "diagnose", "advert", "discover", "list", "nominate", "refer", "key out", "constitute", "name"]}, {"answer": "names", "hint": "synonyms for names", "clues": ["mention", "name", "key", "make", "call", "diagnose", "advert", "discover", "list", "nominate", "key out", "constitute", "distinguish", "identify", "bring up", "cite", "appoint", "describe", "refer"]}, {"answer": "nark", "hint": "synonyms for nark", "clues": ["chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "nark"]}, {"answer": "need", "hint": "synonyms for need", "clues": ["ask", "necessitate", "take", "involve", "postulate", "require", "call for", "want", "demand", "need"]}, {"answer": "neglect", "hint": "synonyms for neglect", "clues": ["leave out", "overleap", "omit", "disregard", "pretermit", "ignore", "drop", "overlook", "fail", "miss", "neglect"]}, {"answer": "nest", "hint": "synonyms for nest", "clues": ["nestle", "cuddle", "draw close", "snuggle", "nuzzle", "nest"]}, {"answer": "nestle", "hint": "synonyms for nestle", "clues": ["cuddle", "draw close", "nest", "snuggle", "nuzzle", "nestle"]}, {"answer": "nestling", "hint": "synonyms for nestling", "clues": ["nestle", "cuddle", "draw close", "nest", "snuggle", "nuzzle", "nestling"]}, {"answer": "netting", "hint": "synonyms for netting", "clues": ["nett", "sack up", "web", "clear", "sack"]}, {"answer": "nettle", "hint": "synonyms for nettle", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "urticate", "nettle"]}, {"answer": "neutering", "hint": "synonyms for neutering", "clues": ["alter", "castrate", "spay", "neuter"]}, {"answer": "nip", "hint": "synonyms for nip", "clues": ["clip", "pinch", "snip", "snip off", "squeeze", "twitch", "tweet", "twinge"]}, {"answer": "nix", "hint": "synonyms for nix", "clues": ["disallow", "proscribe", "forbid", "veto", "prohibit", "interdict", "nix"]}, {"answer": "nose", "hint": "synonyms for nose", "clues": ["horn in", "wind", "scent", "intrude", "poke", "pry", "nuzzle", "nose"]}, {"answer": "note", "hint": "synonyms for note", "clues": ["mention", "notice", "observe", "mark", "remark", "take down", "take note", "note"]}, {"answer": "notice", "hint": "synonyms for notice", "clues": ["note", "observe", "mark", "remark", "point out", "comment", "find", "acknowledge", "discover", "detect", "notice"]}, {"answer": "nuke", "hint": "synonyms for nuke", "clues": ["zap", "micro-cook", "atomise", "microwave", "atom-bomb", "nuke"]}, {"answer": "number", "hint": "synonyms for number", "clues": ["total", "keep down", "come", "enumerate", "add up", "list", "amount", "count", "number"]}, {"answer": "numbering", "hint": "synonyms for numbering", "clues": ["total", "keep down", "number", "come", "enumerate", "add up", "list", "amount", "count"]}, {"answer": "numbers", "hint": "synonyms for numbers", "clues": ["total", "keep down", "number", "come", "enumerate", "add up", "list", "amount", "count"]}, {"answer": "nurse", "hint": "synonyms for nurse", "clues": ["give suck", "suck", "harbour", "breastfeed", "suckle", "wet-nurse", "entertain", "lactate", "hold", "nurse"]}, {"answer": "nursing", "hint": "synonyms for nursing", "clues": ["give suck", "suck", "harbour", "breastfeed", "suckle", "nurse", "wet-nurse", "entertain", "lactate", "hold", "nursing"]}, {"answer": "nurture", "hint": "synonyms for nurture", "clues": ["nourish", "parent", "bring up", "rear", "sustain", "raise", "foster", "nurture"]}, {"answer": "offer", "hint": "synonyms for offer", "clues": ["offer up", "proffer", "tender", "pop the question", "provide", "propose", "put up", "volunteer", "declare oneself", "extend", "bid", "offer"]}, {"answer": "offering", "hint": "synonyms for offering", "clues": ["offer", "offer up", "proffer", "tender", "pop the question", "provide", "propose", "put up", "volunteer", "declare oneself", "extend", "bid"]}, {"answer": "offing", "hint": "synonyms for offing", "clues": ["dispatch", "remove", "hit", "polish off", "slay", "bump off", "murder", "off"]}, {"answer": "oil", "hint": "synonyms for oil", "clues": ["anele", "inunct", "anoint", "embrocate", "oil"]}, {"answer": "omen", "hint": "synonyms for omen", "clues": ["bode", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "omen"]}, {"answer": "ooze", "hint": "synonyms for ooze", "clues": ["seep", "exudate", "exude", "transude", "ooze out", "ooze"]}, {"answer": "order", "hint": "synonyms for order", "clues": ["enjoin", "set up", "dictate", "ordinate", "regularise", "tell", "grade", "govern", "place", "prescribe", "range", "rank", "rate", "consecrate", "say", "regulate", "ordain", "put", "arrange", "order"]}, {"answer": "ordering", "hint": "synonyms for ordering", "clues": ["enjoin", "set up", "dictate", "ordinate", "order", "regularise", "tell", "grade", "govern", "place", "prescribe", "range", "rank", "rate", "consecrate", "say", "regulate", "ordain", "put", "arrange"]}, {"answer": "ordinate", "hint": "synonyms for ordinate", "clues": ["align", "ordain", "order", "consecrate", "coordinate"]}, {"answer": "ornament", "hint": "synonyms for ornament", "clues": ["decorate", "embellish", "adorn", "grace", "beautify", "ornament"]}, {"answer": "ousting", "hint": "synonyms for ousting", "clues": ["oust", "drum out", "boot out", "kick out", "throw out", "expel"]}, {"answer": "outcry", "hint": "synonyms for outcry", "clues": ["call out", "cry out", "cry", "shout", "outshout", "exclaim", "outcry"]}, {"answer": "outfitting", "hint": "synonyms for outfitting", "clues": ["outfit", "fit out", "equip", "fit", "outfitting"]}, {"answer": "outgo", "hint": "synonyms for outgo", "clues": ["outmatch", "exceed", "surmount", "surpass", "outstrip", "outdo", "outperform", "outgo"]}, {"answer": "outline", "hint": "synonyms for outline", "clues": ["draft", "delineate", "sketch", "adumbrate", "limn", "outline"]}, {"answer": "outrage", "hint": "synonyms for outrage", "clues": ["offend", "assault", "rape", "shock", "appall", "scandalize", "desecrate", "dishonor", "profane", "ravish", "violate", "outrage"]}, {"answer": "overacting", "hint": "synonyms for overacting", "clues": ["overplay", "ham", "overact", "ham it up"]}, {"answer": "overcharge", "hint": "synonyms for overcharge", "clues": ["pluck", "fleece", "overload", "plume", "gazump", "rob", "soak", "hook", "surcharge", "overcharge"]}, {"answer": "overeating", "hint": "synonyms for overeating", "clues": ["ingurgitate", "overeat", "binge", "stuff", "scarf out", "gourmandize", "overgorge", "overindulge", "englut", "pig out", "engorge", "glut", "satiate", "gorge"]}, {"answer": "overflow", "hint": "synonyms for overflow", "clues": ["well over", "run over", "brim over", "overrun", "bubble over", "spill over", "overflow"]}, {"answer": "overhaul", "hint": "synonyms for overhaul", "clues": ["modernise", "overtake", "pass", "overhaul"]}, {"answer": "overlook", "hint": "synonyms for overlook", "clues": ["leave out", "look out on", "overleap", "omit", "overtop", "pretermit", "look out over", "command", "dominate", "drop", "look across", "neglect", "miss", "overlook"]}, {"answer": "override", "hint": "synonyms for override", "clues": ["reverse", "overthrow", "overrule", "overturn", "override"]}, {"answer": "overrun", "hint": "synonyms for overrun", "clues": ["infest", "well over", "run over", "invade", "brim over", "overflow", "overrun"]}, {"answer": "overtaking", "hint": "synonyms for overtaking", "clues": ["overtake", "overhaul", "whelm", "sweep over", "catch", "overpower", "overcome", "pass", "catch up with", "overwhelm", "overtaking"]}, {"answer": "overthrow", "hint": "synonyms for overthrow", "clues": ["bring down", "reverse", "override", "subvert", "overrule", "overturn", "overthrow"]}, {"answer": "overturn", "hint": "synonyms for overturn", "clues": ["knock over", "overthrow", "countermand", "reverse", "bowl over", "override", "subvert", "rescind", "lift", "overrule", "repeal", "tump over", "turn over", "upset", "revolutionize", "bring down", "vacate", "tip over", "annul", "revoke", "overturn"]}, {"answer": "pack", "hint": "synonyms for pack", "clues": ["tamp down", "take", "mob", "carry", "throng", "tamp", "backpack", "load down", "wad", "bundle", "compact", "jam", "pile", "pack"]}, {"answer": "packing", "hint": "synonyms for packing", "clues": ["tamp down", "take", "pack", "mob", "carry", "throng", "tamp", "backpack", "load down", "wad", "bundle", "compact", "jam", "pile"]}, {"answer": "pad", "hint": "synonyms for pad", "clues": ["embellish", "fill out", "bolster", "plod", "trudge", "blow up", "dramatize", "aggrandise", "embroider", "tramp", "footslog", "lard", "slog", "pad"]}, {"answer": "padding", "hint": "synonyms for padding", "clues": ["embellish", "fill out", "bolster", "slog", "plod", "trudge", "blow up", "dramatize", "aggrandise", "embroider", "tramp", "footslog", "lard", "pad", "padding"]}, {"answer": "paddle", "hint": "synonyms for paddle", "clues": ["larrup", "dabble", "totter", "coggle", "toddle", "waddle", "dodder", "splash around", "spank", "paddle"]}, {"answer": "pain", "hint": "synonyms for pain", "clues": ["anguish", "trouble", "hurt", "ail", "pain"]}, {"answer": "pains", "hint": "synonyms for pains", "clues": ["anguish", "trouble", "hurt", "pain", "ail"]}, {"answer": "pair", "hint": "synonyms for pair", "clues": ["geminate", "mate", "couple", "match", "partner off", "twin", "copulate", "pair off", "pair"]}, {"answer": "pairing", "hint": "synonyms for pairing", "clues": ["geminate", "couple", "mate", "match", "partner off", "twin", "copulate", "pair", "pair off"]}, {"answer": "palaver", "hint": "synonyms for palaver", "clues": ["inveigle", "wheedle", "clack", "cajole", "sweet-talk", "tattle", "chatter", "piffle", "twaddle", "coax", "gabble", "blab", "maunder", "blarney", "tittle-tattle", "gibber", "blabber", "prate", "prattle", "palaver"]}, {"answer": "paling", "hint": "synonyms for paling", "clues": ["pal up", "chum up", "blanch", "pale", "blench", "paling"]}, {"answer": "palisade", "hint": "synonyms for palisade", "clues": ["fence", "surround", "wall", "fence in", "palisade"]}, {"answer": "pall", "hint": "synonyms for pall", "clues": ["cloy", "become flat", "scare away", "jade", "fatigue", "frighten off", "dash", "daunt", "tire", "scare", "weary", "dull", "frighten away", "die", "scare off", "pall"]}, {"answer": "paltering", "hint": "synonyms for paltering", "clues": ["beat around the bush", "equivocate", "tergiversate", "palter", "prevaricate"]}, {"answer": "pan", "hint": "synonyms for pan", "clues": ["tear apart", "pan off", "trash", "pan out", "pan"]}, {"answer": "pander", "hint": "synonyms for pander", "clues": ["pimp", "indulge", "procure", "gratify", "pander"]}, {"answer": "panting", "hint": "synonyms for panting", "clues": ["puff", "pant", "heave", "gasp"]}, {"answer": "pants", "hint": "synonyms for pants", "clues": ["puff", "pant", "heave", "gasp"]}, {"answer": "parade", "hint": "synonyms for parade", "clues": ["exhibit", "march", "troop", "promenade", "parade"]}, {"answer": "parent", "hint": "synonyms for parent", "clues": ["rear", "bring up", "raise", "nurture", "parent"]}, {"answer": "paring", "hint": "synonyms for paring", "clues": ["trim", "par", "peel", "pare down", "skin", "whittle"]}, {"answer": "parry", "hint": "synonyms for parry", "clues": ["elude", "put off", "block", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "sidestep", "fudge", "deflect", "parry"]}, {"answer": "parting", "hint": "synonyms for parting", "clues": ["break", "break up", "take off", "split", "set out", "start out", "separate", "split up", "set forth", "set off", "part", "start", "divide", "disunite", "depart"]}, {"answer": "parts", "hint": "synonyms for parts", "clues": ["break", "break up", "take off", "split", "set out", "start out", "separate", "split up", "set forth", "set off", "part", "start", "divide", "disunite", "depart"]}, {"answer": "pasture", "hint": "synonyms for pasture", "clues": ["crop", "range", "browse", "graze", "pasture"]}, {"answer": "patronage", "hint": "synonyms for patronage", "clues": ["patronize", "keep going", "support", "patronage"]}, {"answer": "patter", "hint": "synonyms for patter", "clues": ["spatter", "spit", "pitter-patter", "sprinkle"]}, {"answer": "pay", "hint": "synonyms for pay", "clues": ["devote", "ante up", "compensate", "bear", "make up", "yield", "pay up", "give", "pay off", "pay"]}, {"answer": "peach", "hint": "synonyms for peach", "clues": ["tattle", "babble out", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing", "peach"]}, {"answer": "peck", "hint": "synonyms for peck", "clues": ["hen-peck", "pick up", "peck at", "beak", "nag", "smack", "pick", "peck"]}, {"answer": "peddling", "hint": "synonyms for peddling", "clues": ["huckster", "monger", "vend", "pitch", "peddle", "hawk", "peddling"]}, {"answer": "pee", "hint": "synonyms for pee", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "piss", "pee"]}, {"answer": "peeing", "hint": "synonyms for peeing", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss"]}, {"answer": "peel", "hint": "synonyms for peel", "clues": ["uncase", "peel off", "strip", "undress", "pare", "skin", "discase", "disrobe", "flake", "unclothe", "flake off", "strip down", "peel"]}, {"answer": "peeling", "hint": "synonyms for peeling", "clues": ["uncase", "peel off", "strip", "undress", "pare", "peel", "skin", "discase", "disrobe", "flake", "unclothe", "flake off", "strip down"]}, {"answer": "pelt", "hint": "synonyms for pelt", "clues": ["rain buckets", "bombard", "pour", "pepper", "stream", "rain cats and dogs", "pelt"]}, {"answer": "pelting", "hint": "synonyms for pelting", "clues": ["pelt", "rain cats and dogs", "bombard", "rain buckets", "pour", "pepper", "stream"]}, {"answer": "penning", "hint": "synonyms for penning", "clues": ["pen", "indite", "write", "compose", "penning"]}, {"answer": "perch", "hint": "synonyms for perch", "clues": ["light", "rest", "roost", "perch"]}, {"answer": "percolate", "hint": "synonyms for percolate", "clues": ["perk", "sink in", "permeate", "pick up", "perk up", "filter", "gain vigor", "leach", "percolate"]}, {"answer": "peril", "hint": "synonyms for peril", "clues": ["expose", "menace", "scupper", "jeopardize", "queer", "endanger", "threaten", "imperil", "peril"]}, {"answer": "perk", "hint": "synonyms for perk", "clues": ["gain vigor", "pick up", "percolate", "perk up", "perk"]}, {"answer": "permit", "hint": "synonyms for permit", "clues": ["allow", "let", "tolerate", "countenance", "permit"]}, {"answer": "pervert", "hint": "synonyms for pervert", "clues": ["deprave", "twist around", "misuse", "twist", "corrupt", "abuse", "demoralize", "vitiate", "debauch", "sophisticate", "misdirect", "profane", "subvert", "convolute", "debase", "pervert"]}, {"answer": "phone", "hint": "synonyms for phone", "clues": ["telephone", "call", "ring", "call up", "phone"]}, {"answer": "phrase", "hint": "synonyms for phrase", "clues": ["articulate", "give voice", "word", "formulate", "phrase"]}, {"answer": "phrasing", "hint": "synonyms for phrasing", "clues": ["articulate", "give voice", "phrase", "formulate", "word", "phrasing"]}, {"answer": "pick", "hint": "synonyms for pick", "clues": ["break up", "pluck", "foot", "peck", "plunk", "beak", "piece", "clean", "find fault", "cull", "nibble", "blame", "pick"]}, {"answer": "picking", "hint": "synonyms for picking", "clues": ["break up", "pluck", "pick", "foot", "peck", "plunk", "beak", "piece", "clean", "find fault", "cull", "nibble", "blame"]}, {"answer": "pickings", "hint": "synonyms for pickings", "clues": ["break up", "pluck", "pick", "foot", "peck", "plunk", "beak", "piece", "clean", "find fault", "cull", "nibble", "blame", "pickings"]}, {"answer": "picture", "hint": "synonyms for picture", "clues": ["visualize", "see", "envision", "fancy", "render", "figure", "depict", "show", "project", "image", "picture"]}, {"answer": "picturing", "hint": "synonyms for picturing", "clues": ["visualize", "see", "envision", "fancy", "render", "figure", "depict", "picture", "show", "project", "image", "picturing"]}, {"answer": "piddle", "hint": "synonyms for piddle", "clues": ["make", "puddle", "wee-wee", "wee", "pass water", "take a leak", "wanton", "spend a penny", "make water", "trifle", "wanton away", "micturate", "relieve oneself", "pee-pee", "urinate", "pee", "piddle away", "piss", "piddle"]}, {"answer": "piece", "hint": "synonyms for piece", "clues": ["set up", "put together", "tack", "tack together", "assemble", "patch", "nibble", "pick", "piece"]}, {"answer": "piffle", "hint": "synonyms for piffle", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "blabber", "prate", "twaddle", "blab", "piffle"]}, {"answer": "pig", "hint": "synonyms for pig", "clues": ["pig it", "devour", "farrow", "raven", "guttle", "pig"]}, {"answer": "pile", "hint": "synonyms for pile", "clues": ["jam", "heap", "pack", "mob", "stack", "throng", "pile"]}, {"answer": "piles", "hint": "synonyms for piles", "clues": ["pack", "mob", "throng", "jam", "heap", "pile", "stack"]}, {"answer": "piling", "hint": "synonyms for piling", "clues": ["pack", "mob", "throng", "jam", "heap", "pile", "stack", "piling"]}, {"answer": "pillage", "hint": "synonyms for pillage", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "loot", "reave", "ransack", "pillage"]}, {"answer": "pillaging", "hint": "synonyms for pillaging", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack", "pillaging"]}, {"answer": "pillory", "hint": "synonyms for pillory", "clues": ["gibbet", "blast", "crucify", "savage", "pillory"]}, {"answer": "pinch", "hint": "synonyms for pinch", "clues": ["nip", "squeeze", "twitch", "tweet", "sneak", "purloin", "swipe", "vellicate", "lift", "abstract", "pilfer", "filch", "snarf", "top", "nobble", "twinge", "hook", "crimp", "cabbage", "pinch"]}, {"answer": "pine", "hint": "synonyms for pine", "clues": ["languish", "yearn", "ache", "yen", "pine"]}, {"answer": "pining", "hint": "synonyms for pining", "clues": ["languish", "pine", "immobilise", "yearn", "ache", "yen", "trap", "pining"]}, {"answer": "pinning", "hint": "synonyms for pinning", "clues": ["trap", "immobilize", "pin", "pinning"]}, {"answer": "pip", "hint": "synonyms for pip", "clues": ["whip", "shoot", "rack up", "hit", "worst", "mop up", "pip"]}, {"answer": "piss", "hint": "synonyms for piss", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss"]}, {"answer": "pissing", "hint": "synonyms for pissing", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss"]}, {"answer": "pit", "hint": "synonyms for pit", "clues": ["oppose", "pock", "mark", "match", "scar", "play off", "stone", "pit"]}, {"answer": "pitch", "hint": "synonyms for pitch", "clues": ["deliver", "set up", "vend", "hawk", "toss", "cant over", "lurch", "shift", "cant", "monger", "flip", "sky", "incline", "gear", "tilt", "huckster", "slope", "peddle", "slant", "pitch"]}, {"answer": "pitching", "hint": "synonyms for pitching", "clues": ["deliver", "set up", "vend", "pitch", "hawk", "toss", "cant over", "shift", "cant", "monger", "slant", "flip", "sky", "incline", "gear", "tilt", "huckster", "slope", "peddle", "lurch"]}, {"answer": "pitting", "hint": "synonyms for pitting", "clues": ["oppose", "mark", "match", "play off", "pit", "pock", "stone", "scar", "pitting"]}, {"answer": "pity", "hint": "synonyms for pity", "clues": ["condole with", "compassionate", "sympathize with", "feel for", "pity"]}, {"answer": "place", "hint": "synonyms for place", "clues": ["pose", "direct", "commit", "send", "put", "grade", "come in", "localise", "aim", "come out", "point", "locate", "identify", "range", "rank", "rate", "target", "station", "set", "invest", "site", "lay", "post", "order", "position", "place"]}, {"answer": "plague", "hint": "synonyms for plague", "clues": ["chevvy", "chivvy", "harass", "provoke", "blight", "molest", "harry", "hassle", "beset", "plague"]}, {"answer": "plan", "hint": "synonyms for plan", "clues": ["be after", "contrive", "design", "project", "plan"]}, {"answer": "plank", "hint": "synonyms for plank", "clues": ["plump", "plunk", "plonk", "flump", "plop", "plank over", "plump down", "plunk down", "plank"]}, {"answer": "planking", "hint": "synonyms for planking", "clues": ["plump", "plunk", "plank", "plonk", "flump", "plop", "plank over", "plump down", "plunk down"]}, {"answer": "planning", "hint": "synonyms for planning", "clues": ["be after", "plan", "contrive", "design", "project", "planning"]}, {"answer": "plant", "hint": "synonyms for plant", "clues": ["embed", "institute", "set", "found", "establish", "engraft", "imbed", "implant", "constitute", "plant"]}, {"answer": "planting", "hint": "synonyms for planting", "clues": ["embed", "institute", "plant", "set", "found", "establish", "engraft", "imbed", "implant", "constitute"]}, {"answer": "plash", "hint": "synonyms for plash", "clues": ["spatter", "swash", "splosh", "pleach", "splash"]}, {"answer": "plaster", "hint": "synonyms for plaster", "clues": ["daub", "stick on", "plaster over", "beplaster", "poultice"]}, {"answer": "plastering", "hint": "synonyms for plastering", "clues": ["daub", "stick on", "plaster over", "beplaster", "poultice", "plastering"]}, {"answer": "play", "hint": "synonyms for play", "clues": ["bet", "represent", "wreak", "work", "take on", "diddle", "flirt", "run", "recreate", "spiel", "act as", "roleplay", "encounter", "act", "trifle", "bring", "meet", "wager", "fiddle", "toy", "playact", "dally", "make for", "play"]}, {"answer": "playacting", "hint": "synonyms for playacting", "clues": ["play", "act", "playact", "roleplay"]}, {"answer": "playing", "hint": "synonyms for playing", "clues": ["bet", "represent", "wreak", "work", "play", "take on", "diddle", "flirt", "run", "recreate", "spiel", "act as", "roleplay", "encounter", "act", "trifle", "bring", "meet", "wager", "fiddle", "toy", "playact", "dally", "make for"]}, {"answer": "pledge", "hint": "synonyms for pledge", "clues": ["drink", "plight", "toast", "salute", "wassail", "subscribe", "pledge"]}, {"answer": "plight", "hint": "synonyms for plight", "clues": ["betroth", "engage", "affiance", "pledge", "plight"]}, {"answer": "plod", "hint": "synonyms for plod", "clues": ["tramp", "footslog", "pad", "slog", "trudge", "plod"]}, {"answer": "plonk", "hint": "synonyms for plonk", "clues": ["plump", "flump", "plop", "plump down", "plunk", "plunk down", "plank", "plonk"]}, {"answer": "plow", "hint": "synonyms for plow", "clues": ["handle", "turn", "treat", "address", "cover", "plough", "deal", "plow"]}, {"answer": "plowing", "hint": "synonyms for plowing", "clues": ["handle", "treat", "plough", "deal", "turn", "address", "cover", "plow"]}, {"answer": "pluck", "hint": "synonyms for pluck", "clues": ["fleece", "roll", "pick off", "displume", "tweak", "deplumate", "plume", "rob", "surcharge", "cull", "pick", "tear", "pull", "pull off", "plunk", "overcharge", "gazump", "soak", "hook", "hustle", "pluck"]}, {"answer": "plug", "hint": "synonyms for plug", "clues": ["punch", "secure", "plug away", "stop up", "plug"]}, {"answer": "plume", "hint": "synonyms for plume", "clues": ["pride", "pluck", "fleece", "primp", "overcharge", "preen", "rob", "gazump", "soak", "congratulate", "hook", "surcharge", "dress", "plume"]}, {"answer": "plunder", "hint": "synonyms for plunder", "clues": ["despoil", "rape", "spoil", "strip", "rifle", "foray", "pillage", "loot", "reave", "violate", "ransack", "sack", "plunder"]}, {"answer": "plunge", "hint": "synonyms for plunge", "clues": ["engulf", "immerse", "steep", "absorb", "dip", "launch", "engross", "plunk", "souse", "douse", "dive", "soak up", "dunk", "dump", "plunge"]}, {"answer": "ply", "hint": "synonyms for ply", "clues": ["provide", "run", "supply", "cater", "ply"]}, {"answer": "point", "hint": "synonyms for point", "clues": ["luff", "maneuver", "direct", "designate", "indicate", "repoint", "betoken", "aim", "place", "charge", "channelise", "orient", "taper", "bespeak", "target", "manoeuvre", "level", "head", "steer", "guide", "show", "sharpen", "signal", "point"]}, {"answer": "poke", "hint": "synonyms for poke", "clues": ["stab", "pound", "intrude", "pry", "thump", "jab", "prod", "nose", "horn in", "dig", "poke"]}, {"answer": "poking", "hint": "synonyms for poking", "clues": ["stab", "pound", "intrude", "pry", "thump", "jab", "prod", "nose", "horn in", "poke", "dig", "poking"]}, {"answer": "polishing", "hint": "synonyms for polishing", "clues": ["down", "smooth", "fine-tune", "brush up", "polish", "round off", "polish up", "round", "refine", "shine"]}, {"answer": "popping", "hint": "synonyms for popping", "clues": ["down", "protrude", "toss off", "start", "pop up", "bulge out", "crop up", "pop out", "belt down", "drink down", "pop", "come out", "pour down", "bulge", "kill", "popping"]}, {"answer": "pore", "hint": "synonyms for pore", "clues": ["center", "concentrate", "rivet", "focus", "centre", "pore"]}, {"answer": "portraying", "hint": "synonyms for portraying", "clues": ["limn", "portray", "present", "depict", "impersonate"]}, {"answer": "pose", "hint": "synonyms for pose", "clues": ["personate", "nonplus", "dumbfound", "puzzle", "sit", "vex", "gravel", "stupefy", "place", "bewilder", "present", "stick", "amaze", "model", "mystify", "set", "perplex", "posture", "beat", "baffle", "lay", "put", "flummox", "get", "position", "pose"]}, {"answer": "posing", "hint": "synonyms for posing", "clues": ["pose", "personate", "nonplus", "dumbfound", "puzzle", "sit", "vex", "gravel", "stupefy", "place", "bewilder", "present", "stick", "amaze", "model", "mystify", "set", "perplex", "posture", "beat", "baffle", "lay", "put", "flummox", "get", "position", "posing"]}, {"answer": "posit", "hint": "synonyms for posit", "clues": ["postulate", "situate", "fix", "deposit", "submit", "put forward", "state", "posit"]}, {"answer": "position", "hint": "synonyms for position", "clues": ["pose", "lay", "place", "set", "put", "position"]}, {"answer": "post", "hint": "synonyms for post", "clues": ["mail", "station", "brand", "stake", "carry", "send", "put up", "place", "post"]}, {"answer": "posting", "hint": "synonyms for posting", "clues": ["station", "carry", "stake", "send", "put up", "mail", "brand", "place", "post"]}, {"answer": "postulate", "hint": "synonyms for postulate", "clues": ["ask", "necessitate", "need", "involve", "take", "contend", "require", "call for", "demand", "posit", "postulate"]}, {"answer": "posturing", "hint": "synonyms for posturing", "clues": ["pose", "sit", "posture", "model", "posturing"]}, {"answer": "potter", "hint": "synonyms for potter", "clues": ["putter", "mess around", "putter around", "monkey", "tinker", "monkey around", "muck around", "muck about", "potter"]}, {"answer": "pound", "hint": "synonyms for pound", "clues": ["ram down", "pound off", "pound up", "thump", "lumber", "beat", "impound", "ram", "poke", "pound"]}, {"answer": "pounding", "hint": "synonyms for pounding", "clues": ["ram down", "pound off", "pound", "pound up", "thump", "lumber", "beat", "impound", "ram", "poke"]}, {"answer": "pout", "hint": "synonyms for pout", "clues": ["sulk", "mow", "mop", "brood", "pout"]}, {"answer": "practice", "hint": "synonyms for practice", "clues": ["do", "drill", "commit", "practise", "rehearse", "exercise", "apply", "use"]}, {"answer": "prance", "hint": "synonyms for prance", "clues": ["sashay", "ruffle", "cock", "strut", "tittup", "swagger", "prance"]}, {"answer": "prate", "hint": "synonyms for prate", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "piffle", "blabber", "twaddle", "blab", "prate"]}, {"answer": "prattle", "hint": "synonyms for prattle", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "tittle-tattle", "gibber", "chatter", "piffle", "blabber", "prate", "twaddle", "blab", "prattle"]}, {"answer": "premise", "hint": "synonyms for premise", "clues": ["preface", "introduce", "premiss", "precede"]}, {"answer": "premises", "hint": "synonyms for premises", "clues": ["preface", "premiss", "introduce", "precede"]}, {"answer": "presage", "hint": "synonyms for presage", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "auspicate", "forecast", "betoken", "foreshadow", "predict", "presage"]}, {"answer": "preserve", "hint": "synonyms for preserve", "clues": ["continue", "maintain", "uphold", "keep", "keep up", "carry on", "bear on", "save", "conserve", "preserve"]}, {"answer": "preserves", "hint": "synonyms for preserves", "clues": ["continue", "maintain", "uphold", "keep", "save", "keep up", "carry on", "bear on", "preserve", "conserve"]}, {"answer": "press", "hint": "synonyms for press", "clues": ["press out", "compress", "campaign", "entreat", "urge", "beseech", "exhort", "squeeze", "weight-lift", "agitate", "adjure", "urge on", "weigh", "bid", "conjure", "push", "constrict", "fight", "crusade", "contract", "iron out", "iron", "compact", "press"]}, {"answer": "pressure", "hint": "synonyms for pressure", "clues": ["coerce", "blackjack", "hale", "force", "squeeze", "blackmail", "pressure"]}, {"answer": "pretending", "hint": "synonyms for pretending", "clues": ["pretend", "make", "act", "feign", "hazard", "affect", "dissemble", "sham", "guess", "profess", "venture", "make believe"]}, {"answer": "prick", "hint": "synonyms for prick", "clues": ["bite", "sting", "twinge", "cock up", "prickle", "prick up", "goad", "prick"]}, {"answer": "pricking", "hint": "synonyms for pricking", "clues": ["prickle", "prick up", "bite", "goad", "twinge", "cock up", "sting", "prick"]}, {"answer": "priming", "hint": "synonyms for priming", "clues": ["prim out", "undercoat", "ground", "prim up", "prime", "priming"]}, {"answer": "primping", "hint": "synonyms for primping", "clues": ["preen", "dress", "primp", "plume"]}, {"answer": "proceeding", "hint": "synonyms for proceeding", "clues": ["go", "go on", "move", "continue", "keep", "go along", "proceed", "go forward", "carry on"]}, {"answer": "proceedings", "hint": "synonyms for proceedings", "clues": ["go", "go on", "move", "continue", "keep", "go along", "proceed", "go forward", "carry on", "proceedings"]}, {"answer": "proceeds", "hint": "synonyms for proceeds", "clues": ["go", "go on", "move", "continue", "keep", "go along", "proceed", "go forward", "carry on"]}, {"answer": "process", "hint": "synonyms for process", "clues": ["swear out", "treat", "work", "serve", "litigate", "march", "action", "work on", "sue", "process"]}, {"answer": "processing", "hint": "synonyms for processing", "clues": ["swear out", "treat", "work", "serve", "process", "litigate", "march", "action", "work on", "sue"]}, {"answer": "procuress", "hint": "synonyms for procuress", "clues": ["secure", "pimp", "pander", "procure"]}, {"answer": "prod", "hint": "synonyms for prod", "clues": ["stab", "poke at", "egg on", "nudge", "incite", "jab", "poke", "dig", "prod"]}, {"answer": "prodding", "hint": "synonyms for prodding", "clues": ["stab", "poke at", "egg on", "nudge", "incite", "jab", "prod", "poke", "dig", "prodding"]}, {"answer": "produce", "hint": "synonyms for produce", "clues": ["create", "make", "acquire", "get", "farm", "raise", "give rise", "bring out", "develop", "bring on", "bring forth", "grow", "produce"]}, {"answer": "professing", "hint": "synonyms for professing", "clues": ["pretend", "confess", "profess", "concede"]}, {"answer": "profits", "hint": "synonyms for profits", "clues": ["turn a profit", "gain", "profit", "benefit"]}, {"answer": "progress", "hint": "synonyms for progress", "clues": ["pass on", "go on", "move on", "shape up", "advance", "get on", "march on", "get along", "build up", "come along", "come on", "work up", "build", "progress"]}, {"answer": "project", "hint": "synonyms for project", "clues": ["visualize", "protrude", "jut out", "plan", "design", "propose", "send off", "picture", "cast", "image", "throw", "externalize", "see", "contrive", "envision", "fancy", "figure", "jut", "stick out", "project"]}, {"answer": "promise", "hint": "synonyms for promise", "clues": ["foretell", "call", "prognosticate", "forebode", "predict", "anticipate", "assure", "promise"]}, {"answer": "prompting", "hint": "synonyms for prompting", "clues": ["motivate", "move", "instigate", "incite", "remind", "actuate", "propel", "inspire", "cue", "prompt"]}, {"answer": "props", "hint": "synonyms for props", "clues": ["shore up", "prop up", "shore", "prop"]}, {"answer": "prune", "hint": "synonyms for prune", "clues": ["clip", "trim", "cut", "cut back", "rationalize", "crop", "dress", "snip", "lop", "prune"]}, {"answer": "pruning", "hint": "synonyms for pruning", "clues": ["clip", "trim", "cut", "cut back", "prune", "crop", "rationalise", "dress", "snip", "lop", "pruning"]}, {"answer": "pry", "hint": "synonyms for pry", "clues": ["lever", "jimmy", "prise", "intrude", "nose", "prize", "horn in", "poke", "pry"]}, {"answer": "publicizing", "hint": "synonyms for publicizing", "clues": ["publicise", "bare", "advertize", "air", "publicizing"]}, {"answer": "publishing", "hint": "synonyms for publishing", "clues": ["bring out", "print", "release", "issue", "write", "put out", "publish"]}, {"answer": "pucker", "hint": "synonyms for pucker", "clues": ["gather", "knit", "cockle", "tuck", "ruck", "rumple", "ruck up", "pucker"]}, {"answer": "puddle", "hint": "synonyms for puddle", "clues": ["muddle", "make", "wee-wee", "wee", "addle", "pass water", "take a leak", "spend a penny", "make water", "micturate", "relieve oneself", "piddle", "pee-pee", "urinate", "pee", "piss", "puddle"]}, {"answer": "puffing", "hint": "synonyms for puffing", "clues": ["huff", "puff", "heave", "gasp", "blow up", "whiff", "pant", "draw", "puff out", "drag", "puff up"]}, {"answer": "puke", "hint": "synonyms for puke", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "barf", "spue", "vomit up", "spew", "sick", "puke"]}, {"answer": "puking", "hint": "synonyms for puking", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "spue", "barf", "vomit up", "spew", "sick", "puking"]}, {"answer": "pull", "hint": "synonyms for pull", "clues": ["pluck", "commit", "deplume", "displume", "root for", "draw", "rend", "perpetrate", "pull out", "extract", "rive", "pull in", "get out", "draw out", "rip", "draw in", "overstretch", "take out", "pull up", "attract", "force", "tear", "pull"]}, {"answer": "pulling", "hint": "synonyms for pulling", "clues": ["pluck", "commit", "deplume", "displume", "root for", "draw", "rend", "perpetrate", "pull out", "pull", "extract", "rive", "pull in", "get out", "draw out", "rip", "draw in", "overstretch", "take out", "pull up", "attract", "force", "tear"]}, {"answer": "punt", "hint": "synonyms for punt", "clues": ["gage", "back", "pole", "game", "stake", "bet on", "punt"]}, {"answer": "punting", "hint": "synonyms for punting", "clues": ["pole", "gage", "game", "stake", "bet on", "punt", "back"]}, {"answer": "purge", "hint": "synonyms for purge", "clues": ["upchuck", "purify", "chuck", "flush", "scour", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "sanctify", "vomit up", "spew", "sick", "purge"]}, {"answer": "purl", "hint": "synonyms for purl", "clues": ["whirl", "eddy", "swirl", "sough", "whirlpool", "purl"]}, {"answer": "purpose", "hint": "synonyms for purpose", "clues": ["resolve", "propose", "purport", "aim"]}, {"answer": "purr", "hint": "synonyms for purr", "clues": ["birr", "whiz", "whirr", "make vibrant sounds", "purr"]}, {"answer": "push", "hint": "synonyms for push", "clues": ["promote", "labour", "campaign", "fight", "crusade", "advertize", "press", "agitate", "tug", "bear on", "force", "drive", "crowd", "push"]}, {"answer": "push_back", "hint": "synonyms for push back", "clues": ["drive", "beat back", "repel", "repulse", "force back", "push back"]}, {"answer": "pushing", "hint": "synonyms for pushing", "clues": ["promote", "labour", "campaign", "push", "fight", "crusade", "advertize", "press", "agitate", "tug", "bear on", "force", "drive", "crowd"]}, {"answer": "put", "hint": "synonyms for put", "clues": ["pose", "commit", "set up", "set", "couch", "redact", "assign", "invest", "order", "arrange", "place", "cast", "frame", "lay", "position", "put"]}, {"answer": "putter", "hint": "synonyms for putter", "clues": ["mess around", "putter around", "potter", "monkey", "tinker", "monkey around", "muck around", "muck about", "putter"]}, {"answer": "putting", "hint": "synonyms for putting", "clues": ["pose", "commit", "set up", "set", "couch", "redact", "assign", "frame", "invest", "order", "arrange", "lay", "cast", "put", "position", "place", "putting"]}, {"answer": "puzzle", "hint": "synonyms for puzzle", "clues": ["mystify", "pose", "nonplus", "dumbfound", "get", "perplex", "flummox", "beat", "baffle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "puzzle"]}, {"answer": "quail", "hint": "synonyms for quail", "clues": ["wince", "flinch", "funk", "recoil", "squinch", "shrink", "cringe", "quail"]}, {"answer": "qualifying", "hint": "synonyms for qualifying", "clues": ["condition", "dispose", "characterize", "specify", "restrict", "measure up", "qualify", "stipulate", "modify"]}, {"answer": "quarrel", "hint": "synonyms for quarrel", "clues": ["argufy", "altercate", "scrap", "dispute", "quarrel"]}, {"answer": "quarter", "hint": "synonyms for quarter", "clues": ["canton", "draw and quarter", "draw", "billet", "quarter"]}, {"answer": "quartering", "hint": "synonyms for quartering", "clues": ["canton", "draw", "draw and quarter", "quarter", "billet"]}, {"answer": "quarters", "hint": "synonyms for quarters", "clues": ["canton", "draw", "draw and quarter", "quarter", "billet"]}, {"answer": "quelling", "hint": "synonyms for quelling", "clues": ["stay", "quell", "appease", "squelch", "quench"]}, {"answer": "quenching", "hint": "synonyms for quenching", "clues": ["snuff out", "quell", "allay", "blow out", "assuage", "squelch", "extinguish", "slake", "quench"]}, {"answer": "quest", "hint": "synonyms for quest", "clues": ["call for", "bespeak", "bay", "request", "quest"]}, {"answer": "question", "hint": "synonyms for question", "clues": ["call into question", "interview", "oppugn", "interrogate", "wonder", "query", "question"]}, {"answer": "quibble", "hint": "synonyms for quibble", "clues": ["squabble", "pettifog", "brabble", "niggle", "bicker", "quibble"]}, {"answer": "quickening", "hint": "synonyms for quickening", "clues": ["recreate", "renovate", "whet", "reanimate", "invigorate", "accelerate", "quicken", "speed", "vivify", "repair", "revive", "speed up"]}, {"answer": "quiver", "hint": "synonyms for quiver", "clues": ["palpitate", "waver", "flicker", "pulsate", "beat", "flitter", "quake", "quiver"]}, {"answer": "quivering", "hint": "synonyms for quivering", "clues": ["flicker", "flitter", "palpitate", "waver", "beat", "pulsate", "quiver", "quake"]}, {"answer": "race", "hint": "synonyms for race", "clues": ["step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "bucket along", "run", "hasten", "race"]}, {"answer": "racing", "hint": "synonyms for racing", "clues": ["step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "run", "hasten", "racing"]}, {"answer": "rack", "hint": "synonyms for rack", "clues": ["single-foot", "scud", "wring", "torment", "squeeze", "extort", "gouge", "torture", "excruciate", "rack"]}, {"answer": "racket", "hint": "synonyms for racket", "clues": ["jollify", "revel", "make merry", "whoop it up", "wassail", "make happy", "make whoopie", "racket"]}, {"answer": "rag", "hint": "synonyms for rag", "clues": ["nark", "chew up", "crucify", "chafe", "dress down", "rile", "annoy", "chew out", "vex", "gravel", "call on the carpet", "berate", "nettle", "cod", "twit", "lambast", "torment", "devil", "rebuke", "tantalize", "lecture", "call down", "reprimand", "jaw", "remonstrate", "bait", "ride", "bother", "taunt", "tease", "get to", "scold", "get at", "take to task", "reproof", "have words", "dun", "bawl out", "chide", "bedevil", "frustrate", "irritate", "rally", "razz", "trounce", "rag"]}, {"answer": "rail", "hint": "synonyms for rail", "clues": ["rail off", "fulminate", "vilify", "revile", "rail in", "inveigh", "vituperate", "train", "rail"]}, {"answer": "railing", "hint": "synonyms for railing", "clues": ["fulminate", "vituperate", "rail", "rail in", "train", "rail off", "vilify", "revile", "inveigh"]}, {"answer": "rails", "hint": "synonyms for rails", "clues": ["fulminate", "vituperate", "rail", "rail in", "train", "rail off", "vilify", "revile", "inveigh"]}, {"answer": "raiment", "hint": "synonyms for raiment", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "raise", "hint": "synonyms for raise", "clues": ["erect", "invoke", "stir", "parent", "rear", "enkindle", "heighten", "conjure", "lift", "prove", "elevate", "call down", "call forth", "promote", "put forward", "set up", "advance", "farm", "put up", "fire", "levy", "produce", "enhance", "upgrade", "upraise", "get up", "conjure up", "bring up", "provoke", "resurrect", "nurture", "evoke", "kick upstairs", "arouse", "recruit", "leaven", "elicit", "grow", "raise"]}, {"answer": "rake", "hint": "synonyms for rake", "clues": ["glance over", "graze", "skim", "crease", "scan", "run down", "rake"]}, {"answer": "rally", "hint": "synonyms for rally", "clues": ["drum up", "bait", "ride", "come up", "beat up", "mobilize", "taunt", "tease", "rag", "muster", "call up", "cod", "twit", "muster up", "tantalize", "razz", "rebound", "summon", "rally"]}, {"answer": "ram", "hint": "synonyms for ram", "clues": ["ram down", "chock up", "pound", "jampack", "wad", "jam", "crash", "force", "drive", "cram"]}, {"answer": "ramble", "hint": "synonyms for ramble", "clues": ["stray", "range", "rove", "swan", "wander", "drift", "roll", "vagabond", "tramp", "ramble on", "cast", "jog", "roam", "ramble"]}, {"answer": "rameses", "hint": "synonyms for rameses", "clues": ["ram down", "chock up", "pound", "jampack", "jam", "wad", "crash", "ram", "force", "drive", "rameses"]}, {"answer": "ramesses", "hint": "synonyms for ramesses", "clues": ["ram down", "chock up", "pound", "jampack", "jam", "wad", "crash", "ram", "force", "drive", "ramesses"]}, {"answer": "ramses", "hint": "synonyms for ramses", "clues": ["ram down", "chock up", "pound", "jampack", "jam", "wad", "crash", "ram", "force", "drive", "ramses"]}, {"answer": "range", "hint": "synonyms for range", "clues": ["ramble", "wander", "browse", "pasture", "drift", "roll", "graze", "tramp", "grade", "place", "cast", "run", "straddle", "array", "stray", "set out", "rank", "rove", "swan", "rate", "vagabond", "lay out", "crop", "order", "roam", "range"]}, {"answer": "ransacking", "hint": "synonyms for ransacking", "clues": ["despoil", "comb", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "rant", "hint": "synonyms for rant", "clues": ["rave", "mouth off", "jabber", "rabbit on", "spout", "rant"]}, {"answer": "ranting", "hint": "synonyms for ranting", "clues": ["rave", "mouth off", "jabber", "rabbit on", "rant", "spout"]}, {"answer": "rap", "hint": "synonyms for rap", "clues": ["knap", "tap", "knock", "pink", "rap"]}, {"answer": "rape", "hint": "synonyms for rape", "clues": ["assault", "despoil", "spoil", "dishonour", "plunder", "ravish", "violate", "outrage", "rape"]}, {"answer": "rat", "hint": "synonyms for rat", "clues": ["denounce", "betray", "give away", "stag", "blackleg", "grass", "fink", "shop", "tell on", "shit", "snitch", "scab", "rat"]}, {"answer": "rate", "hint": "synonyms for rate", "clues": ["value", "grade", "range", "rank", "place", "order", "rate"]}, {"answer": "rates", "hint": "synonyms for rates", "clues": ["denounce", "betray", "grass", "grade", "shop", "place", "shit", "scab", "tell on", "range", "rank", "rate", "give away", "stag", "blackleg", "value", "fink", "snitch", "order"]}, {"answer": "rating", "hint": "synonyms for rating", "clues": ["denounce", "betray", "grass", "grade", "shop", "place", "shit", "scab", "tell on", "range", "rank", "rate", "give away", "stag", "blackleg", "value", "fink", "snitch", "order", "rating"]}, {"answer": "ratting", "hint": "synonyms for ratting", "clues": ["denounce", "betray", "give away", "stag", "blackleg", "rat", "grass", "fink", "shop", "tell on", "shit", "snitch", "scab", "ratting"]}, {"answer": "ravage", "hint": "synonyms for ravage", "clues": ["harry", "waste", "lay waste to", "desolate", "scourge", "devastate", "ravage"]}, {"answer": "rave", "hint": "synonyms for rave", "clues": ["gush", "mouth off", "jabber", "rant", "rabbit on", "spout", "rave"]}, {"answer": "ravel", "hint": "synonyms for ravel", "clues": ["tangle", "unravel", "ravel out", "knot", "ravel"]}, {"answer": "raveling", "hint": "synonyms for raveling", "clues": ["ravel", "unravel", "ravel out", "tangle", "knot"]}, {"answer": "ravelling", "hint": "synonyms for ravelling", "clues": ["ravel", "unravel", "ravel out", "tangle", "knot", "ravelling"]}, {"answer": "raven", "hint": "synonyms for raven", "clues": ["devour", "pig", "predate", "guttle", "prey", "raven"]}, {"answer": "razing", "hint": "synonyms for razing", "clues": ["tear down", "raze", "rase", "pull down", "take down", "level", "dismantle", "razing"]}, {"answer": "razz", "hint": "synonyms for razz", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz"]}, {"answer": "razzing", "hint": "synonyms for razzing", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz"]}, {"answer": "reach", "hint": "synonyms for reach", "clues": ["make", "get hold of", "extend to", "get through", "give", "hand", "gain", "achieve", "accomplish", "reach out", "get to", "attain", "strain", "pass on", "arrive at", "hit", "strive", "turn over", "touch", "progress to", "pass", "contact", "reach"]}, {"answer": "reaching", "hint": "synonyms for reaching", "clues": ["make", "get hold of", "extend to", "get through", "give", "hand", "gain", "achieve", "accomplish", "reach out", "get to", "attain", "strain", "pass on", "arrive at", "hit", "strive", "turn over", "touch", "progress to", "reach", "pass", "contact"]}, {"answer": "read", "hint": "synonyms for read", "clues": ["register", "take", "interpret", "say", "translate", "show", "record", "study", "understand", "scan", "learn", "read"]}, {"answer": "reading", "hint": "synonyms for reading", "clues": ["register", "take", "interpret", "read", "say", "translate", "show", "record", "study", "understand", "scan", "learn"]}, {"answer": "readying", "hint": "synonyms for readying", "clues": ["make", "cook", "set up", "gear up", "set", "prepare", "fix", "ready"]}, {"answer": "rebel", "hint": "synonyms for rebel", "clues": ["rise", "rise up", "renegade", "rebel"]}, {"answer": "rebound", "hint": "synonyms for rebound", "clues": ["recoil", "resile", "ricochet", "rally", "take a hop", "bound", "reverberate", "bounce", "spring", "rebound"]}, {"answer": "rebuff", "hint": "synonyms for rebuff", "clues": ["snub", "drive back", "fight off", "repel", "repulse", "rebuff"]}, {"answer": "rebuke", "hint": "synonyms for rebuke", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "lecture", "berate", "call down", "reprimand", "trounce", "rebuke"]}, {"answer": "recall", "hint": "synonyms for recall", "clues": ["call back", "return", "echo", "hark back", "think", "come back", "remember", "retrieve", "call in", "withdraw", "recollect", "call up", "recall"]}, {"answer": "recasting", "hint": "synonyms for recasting", "clues": ["remould", "recast", "reforge", "remodel"]}, {"answer": "reckoning", "hint": "synonyms for reckoning", "clues": ["regard", "view", "look", "bet", "cipher", "think", "suppose", "consider", "forecast", "guess", "estimate", "depend", "count on", "count", "see", "compute", "work out", "figure", "opine", "cypher", "imagine", "reckon", "calculate"]}, {"answer": "reclining", "hint": "synonyms for reclining", "clues": ["repose", "recumb", "lean back", "recline", "reclining"]}, {"answer": "recoil", "hint": "synonyms for recoil", "clues": ["ricochet", "shrink", "cringe", "take a hop", "backlash", "kick back", "bound", "reverberate", "bounce", "flinch", "spring", "squinch", "quail", "resile", "wince", "funk", "backfire", "kick", "rebound", "recoil"]}, {"answer": "recompense", "hint": "synonyms for recompense", "clues": ["repair", "indemnify", "compensate", "remunerate", "recompense"]}, {"answer": "record", "hint": "synonyms for record", "clues": ["memorialise", "register", "tape", "enter", "put down", "read", "immortalize", "show", "commemorate", "record"]}, {"answer": "recording", "hint": "synonyms for recording", "clues": ["memorialise", "register", "tape", "enter", "put down", "read", "immortalize", "show", "record", "commemorate"]}, {"answer": "recounting", "hint": "synonyms for recounting", "clues": ["narrate", "recount", "recite", "tell"]}, {"answer": "recruit", "hint": "synonyms for recruit", "clues": ["enrol", "raise", "enter", "levy", "inscribe", "recruit"]}, {"answer": "redact", "hint": "synonyms for redact", "clues": ["frame", "cast", "put", "couch", "edit", "redact"]}, {"answer": "reducing", "hint": "synonyms for reducing", "clues": ["subjugate", "lose weight", "foreshorten", "reduce", "come down", "slim down", "cut back", "shrink", "dilute", "concentrate", "thin out", "decoct", "repress", "keep down", "quash", "abridge", "melt off", "subdue", "shorten", "trim", "cut", "deoxidize", "tighten", "scale down", "slenderize", "thin", "bring down", "cut down", "trim back", "trim down", "boil down", "contract", "abbreviate", "slim", "reducing"]}, {"answer": "reek", "hint": "synonyms for reek", "clues": ["smell", "smack", "stink", "fume", "reek"]}, {"answer": "reel", "hint": "synonyms for reel", "clues": ["swag", "stagger", "gyrate", "careen", "spin around", "whirl", "spin", "keel", "lurch", "reel"]}, {"answer": "refining", "hint": "synonyms for refining", "clues": ["down", "fine-tune", "elaborate", "polish", "rectify", "refine", "complicate", "rarify", "refining"]}, {"answer": "reform", "hint": "synonyms for reform", "clues": ["rectify", "see the light", "reclaim", "straighten out", "regenerate", "reform"]}, {"answer": "refuse", "hint": "synonyms for refuse", "clues": ["deny", "turn away", "pass up", "decline", "resist", "reject", "turn down", "defy", "refuse"]}, {"answer": "regaining", "hint": "synonyms for regaining", "clues": ["find", "retrieve", "recover", "regain"]}, {"answer": "regard", "hint": "synonyms for regard", "clues": ["view", "consider", "see", "involve", "reckon", "affect", "regard"]}, {"answer": "register", "hint": "synonyms for register", "clues": ["show", "record", "cross-file", "file", "read", "register"]}, {"answer": "regress", "hint": "synonyms for regress", "clues": ["turn back", "fall back", "return", "lapse", "retrograde", "retrovert", "retrogress", "revert", "relapse", "recidivate", "regress"]}, {"answer": "regulating", "hint": "synonyms for regulating", "clues": ["regularise", "baffle", "regulate", "govern", "determine", "shape", "mold", "order", "influence", "modulate", "regulating"]}, {"answer": "reign", "hint": "synonyms for reign", "clues": ["prevail", "predominate", "rule", "dominate", "reign"]}, {"answer": "rein", "hint": "synonyms for rein", "clues": ["harness", "draw rein", "rein in", "rule", "rein"]}, {"answer": "reject", "hint": "synonyms for reject", "clues": ["turn away", "disapprove", "freeze off", "decline", "spurn", "pooh-pooh", "refuse", "disdain", "turn down", "resist", "winnow out", "eliminate", "rule out", "scorn", "pass up", "reject"]}, {"answer": "relapse", "hint": "synonyms for relapse", "clues": ["retrogress", "fall back", "regress", "lapse", "recidivate", "get worse", "relapse"]}, {"answer": "relapsing", "hint": "synonyms for relapsing", "clues": ["fall back", "lapse", "retrogress", "regress", "relapse", "recidivate", "get worse", "relapsing"]}, {"answer": "release", "hint": "synonyms for release", "clues": ["eject", "issue", "give up", "put out", "unfreeze", "expel", "unblock", "liberate", "let go of", "unloosen", "secrete", "discharge", "free", "let go", "resign", "relinquish", "exhaust", "bring out", "turn", "loose", "publish", "release"]}, {"answer": "relegating", "hint": "synonyms for relegating", "clues": ["break", "pass on", "bar", "demote", "relegate", "classify", "banish", "submit", "kick downstairs", "bump", "relegating"]}, {"answer": "relinquishing", "hint": "synonyms for relinquishing", "clues": ["quit", "forgo", "renounce", "foreswear", "waive", "give up", "let go", "resign", "relinquish", "dispense with", "let go of", "release", "free"]}, {"answer": "relish", "hint": "synonyms for relish", "clues": ["bask", "savor", "enjoy", "relish"]}, {"answer": "relishing", "hint": "synonyms for relishing", "clues": ["relish", "bask", "savor", "enjoy"]}, {"answer": "remains", "hint": "synonyms for remains", "clues": ["stay on", "persist", "continue", "remain", "rest", "stay"]}, {"answer": "remaking", "hint": "synonyms for remaking", "clues": ["redo", "refashion", "make over", "remake", "remaking"]}, {"answer": "remand", "hint": "synonyms for remand", "clues": ["put behind bars", "gaol", "jug", "put away", "immure", "send back", "jail", "lag", "incarcerate", "remit", "imprison", "remand"]}, {"answer": "remark", "hint": "synonyms for remark", "clues": ["mention", "note", "notice", "observe", "point out", "comment", "remark"]}, {"answer": "remedy", "hint": "synonyms for remedy", "clues": ["repair", "relieve", "rectify", "amend", "remediate", "remedy"]}, {"answer": "remembering", "hint": "synonyms for remembering", "clues": ["call back", "think of", "commend", "think", "remember", "recall", "retrieve", "think back", "commemorate", "recollect", "call up"]}, {"answer": "remit", "hint": "synonyms for remit", "clues": ["put over", "set back", "put off", "hold over", "remand", "send back", "postpone", "table", "shelve", "slacken", "defer", "prorogue", "remit"]}, {"answer": "remove", "hint": "synonyms for remove", "clues": ["off", "transfer", "move out", "take", "dispatch", "hit", "polish off", "slay", "take away", "bump off", "take out", "murder", "absent", "get rid of", "withdraw", "remove"]}, {"answer": "render", "hint": "synonyms for render", "clues": ["deliver", "hand over", "fork out", "supply", "translate", "picture", "yield", "generate", "try", "return", "provide", "turn in", "interpret", "fork up", "fork over", "show", "submit", "furnish", "give", "depict", "render"]}, {"answer": "rendering", "hint": "synonyms for rendering", "clues": ["deliver", "hand over", "fork out", "supply", "translate", "picture", "yield", "generate", "try", "return", "provide", "render", "turn in", "interpret", "fork up", "fork over", "show", "submit", "furnish", "give", "depict"]}, {"answer": "rent", "hint": "synonyms for rent", "clues": ["pull", "let", "hire", "take", "rive", "rip", "lease", "charter", "engage", "rend", "rent"]}, {"answer": "renting", "hint": "synonyms for renting", "clues": ["let", "hire", "take", "lease", "rent", "charter", "engage"]}, {"answer": "repair", "hint": "synonyms for repair", "clues": ["touch on", "renovate", "doctor", "amend", "restore", "vivify", "quicken", "resort", "recompense", "fix", "remedy", "recreate", "furbish up", "indemnify", "rectify", "reanimate", "compensate", "revive", "remediate", "bushel", "repair"]}, {"answer": "repeal", "hint": "synonyms for repeal", "clues": ["lift", "countermand", "reverse", "vacate", "rescind", "annul", "revoke", "overturn", "repeal"]}, {"answer": "repeat", "hint": "synonyms for repeat", "clues": ["retell", "double", "duplicate", "echo", "take over", "reprize", "restate", "recapitulate", "iterate", "ingeminate", "recur", "replicate", "repeat"]}, {"answer": "repeating", "hint": "synonyms for repeating", "clues": ["retell", "double", "duplicate", "echo", "take over", "reprize", "restate", "recapitulate", "iterate", "repeat", "replicate", "ingeminate", "recur"]}, {"answer": "replacing", "hint": "synonyms for replacing", "clues": ["supersede", "substitute", "supplant", "interchange", "put back", "replace", "exchange", "supervene upon", "replacing"]}, {"answer": "reporting", "hint": "synonyms for reporting", "clues": ["describe", "cover", "report", "account"]}, {"answer": "repose", "hint": "synonyms for repose", "clues": ["recumb", "lay", "reside", "put down", "rest", "recline", "repose"]}, {"answer": "reprimand", "hint": "synonyms for reprimand", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "criminate", "lambast", "chide", "censure", "rebuke", "lecture", "berate", "call down", "trounce", "reprimand"]}, {"answer": "reproof", "hint": "synonyms for reproof", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "reproof"]}, {"answer": "repulse", "hint": "synonyms for repulse", "clues": ["fight off", "rebuff", "repel", "force back", "drive back", "push back", "drive", "beat back", "repulse"]}, {"answer": "repute", "hint": "synonyms for repute", "clues": ["think of", "take to be", "look on", "esteem", "regard as", "repute"]}, {"answer": "reserve", "hint": "synonyms for reserve", "clues": ["hold", "allow", "earmark", "set aside", "appropriate", "book", "reserve"]}, {"answer": "reserves", "hint": "synonyms for reserves", "clues": ["hold", "allow", "earmark", "set aside", "reserve", "appropriate", "book"]}, {"answer": "resolve", "hint": "synonyms for resolve", "clues": ["break up", "adjudicate", "decide", "conclude", "settle", "purpose", "dissolve", "solve", "answer", "resolve"]}, {"answer": "resolving", "hint": "synonyms for resolving", "clues": ["resolve", "break up", "adjudicate", "decide", "settle", "conclude", "purpose", "dissolve", "solve", "answer", "resolving"]}, {"answer": "respect", "hint": "synonyms for respect", "clues": ["honour", "observe", "prise", "abide by", "value", "esteem", "prize", "respect"]}, {"answer": "respects", "hint": "synonyms for respects", "clues": ["honour", "observe", "prise", "abide by", "respect", "value", "esteem", "prize"]}, {"answer": "rest", "hint": "synonyms for rest", "clues": ["take a breather", "repose", "lie", "breathe", "pillow", "perch", "remain", "stay", "catch one's breath", "reside", "roost", "rest"]}, {"answer": "resume", "hint": "synonyms for resume", "clues": ["take up", "summarise", "sum up", "re-start", "resume"]}, {"answer": "retard", "hint": "synonyms for retard", "clues": ["slow down", "decelerate", "delay", "slow", "check", "slow up", "retard"]}, {"answer": "retch", "hint": "synonyms for retch", "clues": ["upchuck", "purge", "gag", "chuck", "heave", "honk", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "retch"]}, {"answer": "retort", "hint": "synonyms for retort", "clues": ["riposte", "return", "repay", "rejoin", "come back", "retort"]}, {"answer": "retread", "hint": "synonyms for retread", "clues": ["remould", "rework", "make over", "retread"]}, {"answer": "retreat", "hint": "synonyms for retreat", "clues": ["pull away", "draw back", "move back", "retrograde", "crawfish", "back out", "back away", "retire", "pull in one's horns", "pull back", "recede", "crawfish out", "withdraw", "retreat"]}, {"answer": "retreated", "hint": "synonyms for retreated", "clues": ["pull away", "draw back", "move back", "retrograde", "crawfish", "retreat", "back out", "back away", "retire", "pull in one's horns", "pull back", "recede", "crawfish out", "withdraw"]}, {"answer": "return", "hint": "synonyms for return", "clues": ["retort", "turn back", "bring back", "deliver", "refund", "devolve", "regress", "repay", "yield", "generate", "fall", "give back", "rejoin", "hark back", "reelect", "render", "come back", "retrovert", "recall", "riposte", "revert", "pass", "give", "take back", "return"]}, {"answer": "revel", "hint": "synonyms for revel", "clues": ["make merry", "racket", "wassail", "make whoopie", "jollify", "whoop it up", "delight", "make happy", "enjoy", "revel"]}, {"answer": "revere", "hint": "synonyms for revere", "clues": ["venerate", "idolise", "fear", "worship", "reverence", "hero-worship", "revere"]}, {"answer": "review", "hint": "synonyms for review", "clues": ["go over", "look back", "survey", "refresh", "reexamine", "brush up", "retrospect", "critique", "review"]}, {"answer": "revoke", "hint": "synonyms for revoke", "clues": ["lift", "countermand", "repeal", "reverse", "vacate", "rescind", "annul", "overturn", "revoke"]}, {"answer": "revolt", "hint": "synonyms for revolt", "clues": ["nauseate", "disgust", "churn up", "repel", "gross out", "sicken", "revolt"]}, {"answer": "reward", "hint": "synonyms for reward", "clues": ["honour", "repay", "pay back", "reinforce", "reward"]}, {"answer": "rib", "hint": "synonyms for rib", "clues": ["roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun", "rib"]}, {"answer": "ribbing", "hint": "synonyms for ribbing", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun", "ribbing"]}, {"answer": "ribes", "hint": "synonyms for ribes", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun"]}, {"answer": "rick", "hint": "synonyms for rick", "clues": ["wrick", "wrench", "turn", "twist", "sprain"]}, {"answer": "ricochet", "hint": "synonyms for ricochet", "clues": ["recoil", "resile", "take a hop", "bound", "reverberate", "bounce", "rebound", "spring", "ricochet"]}, {"answer": "riddle", "hint": "synonyms for riddle", "clues": ["screen", "imbue", "permeate", "penetrate", "diffuse", "interpenetrate", "pervade", "riddle"]}, {"answer": "ride", "hint": "synonyms for ride", "clues": ["bait", "hinge upon", "taunt", "tease", "depend upon", "sit", "drive", "rag", "cod", "twit", "tantalize", "turn on", "rally", "razz", "devolve on", "mount", "ride"]}, {"answer": "ridicule", "hint": "synonyms for ridicule", "clues": ["rib", "roast", "blackguard", "guy", "laugh at", "jest at", "poke fun", "make fun", "ridicule"]}, {"answer": "riding", "hint": "synonyms for riding", "clues": ["bait", "ride", "hinge upon", "taunt", "tease", "depend upon", "sit", "rag", "disembarrass", "free", "cod", "twit", "tantalize", "turn on", "rally", "devolve on", "razz", "drive", "mount", "riding"]}, {"answer": "riff", "hint": "synonyms for riff", "clues": ["flip", "flick", "leaf", "riffle", "thumb", "riff"]}, {"answer": "riffle", "hint": "synonyms for riffle", "clues": ["flip", "leaf", "cockle", "ripple", "thumb", "ruffle", "flick", "riff", "undulate", "riffle"]}, {"answer": "rifle", "hint": "synonyms for rifle", "clues": ["go", "despoil", "strip", "foray", "plunder", "pillage", "loot", "reave", "ransack", "rifle"]}, {"answer": "rifling", "hint": "synonyms for rifling", "clues": ["go", "despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack", "rifling"]}, {"answer": "rigging", "hint": "synonyms for rigging", "clues": ["manipulate", "rig", "set up", "set", "rigging"]}, {"answer": "ring", "hint": "synonyms for ring", "clues": ["telephone", "call", "echo", "knell", "skirt", "band", "resound", "call up", "phone", "reverberate", "surround", "border", "environ", "peal", "ring"]}, {"answer": "ringing", "hint": "synonyms for ringing", "clues": ["telephone", "call", "echo", "ring", "knell", "skirt", "band", "resound", "call up", "phone", "reverberate", "surround", "border", "environ", "peal"]}, {"answer": "rings", "hint": "synonyms for rings", "clues": ["telephone", "call", "echo", "ring", "knell", "skirt", "band", "resound", "call up", "phone", "reverberate", "surround", "border", "environ", "peal"]}, {"answer": "rinsing", "hint": "synonyms for rinsing", "clues": ["gargle", "wash", "rinse", "rinse off", "rinsing"]}, {"answer": "riposte", "hint": "synonyms for riposte", "clues": ["retort", "return", "repay", "rejoin", "come back", "riposte"]}, {"answer": "ripple", "hint": "synonyms for ripple", "clues": ["burble", "cockle", "gurgle", "riffle", "bubble", "ruffle", "guggle", "babble", "undulate", "ripple"]}, {"answer": "rippling", "hint": "synonyms for rippling", "clues": ["burble", "cockle", "gurgle", "riffle", "ripple", "bubble", "ruffle", "guggle", "babble", "undulate", "rippling"]}, {"answer": "rise", "hint": "synonyms for rise", "clues": ["climb up", "uprise", "go up", "come up", "wax", "surface", "rear", "turn out", "develop", "heighten", "jump", "lift", "get up", "arise", "prove", "resurrect", "ascend", "spring up", "originate", "stand up", "rebel", "climb", "move up", "rise up", "grow", "mount"]}, {"answer": "risk", "hint": "synonyms for risk", "clues": ["hazard", "gamble", "take a chance", "put on the line", "run a risk", "adventure", "lay on the line", "chance", "risk"]}, {"answer": "rivet", "hint": "synonyms for rivet", "clues": ["center", "concentrate", "focus", "centre", "pore", "rivet"]}, {"answer": "roar", "hint": "synonyms for roar", "clues": ["ululate", "wail", "yaup", "bellow", "yawl", "thunder", "howl", "roar"]}, {"answer": "roasting", "hint": "synonyms for roasting", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun"]}, {"answer": "robe", "hint": "synonyms for robe", "clues": ["cloak", "vest", "drape", "clothe", "robe"]}, {"answer": "roleplaying", "hint": "synonyms for roleplaying", "clues": ["play", "act", "playact", "roleplay"]}, {"answer": "roll", "hint": "synonyms for roll", "clues": ["roll up", "pluck", "wrap", "ramble", "wander", "seethe", "flap", "drift", "tramp", "wheel", "cast", "wave", "revolve", "stray", "range", "wind", "rove", "swan", "turn over", "vagabond", "roll out", "roam", "undulate", "twine", "hustle", "roll"]}, {"answer": "roll_in_the_hay", "hint": "synonyms for roll in the hay", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "roll in the hay"]}, {"answer": "romp", "hint": "synonyms for romp", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "gambol", "romp"]}, {"answer": "rook", "hint": "synonyms for rook", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "victimize", "hornswoggle", "short-change", "rook"]}, {"answer": "root", "hint": "synonyms for root", "clues": ["rootle", "rout", "settle down", "settle", "take root", "steady down", "root"]}, {"answer": "rooting", "hint": "synonyms for rooting", "clues": ["root", "settle", "take root", "steady down", "rootle", "rout", "settle down"]}, {"answer": "roots", "hint": "synonyms for roots", "clues": ["root", "settle", "take root", "steady down", "rootle", "rout", "settle down"]}, {"answer": "rot", "hint": "synonyms for rot", "clues": ["moulder", "decompose", "waste", "rot"]}, {"answer": "rotting", "hint": "synonyms for rotting", "clues": ["molder", "decompose", "waste", "rot", "rotting"]}, {"answer": "rounding", "hint": "synonyms for rounding", "clues": ["round out", "assail", "assault", "fill out", "attack", "brush up", "polish", "round down", "labialize", "round off", "polish up", "round", "lash out", "snipe", "flesh out"]}, {"answer": "rout", "hint": "synonyms for rout", "clues": ["root", "rootle", "spreadeagle", "rout out", "gouge", "expel", "rout"]}, {"answer": "rub", "hint": "synonyms for rub", "clues": ["scratch", "fray", "itch", "chafe", "fret", "rub"]}, {"answer": "rubbing", "hint": "synonyms for rubbing", "clues": ["scratch", "fray", "rub", "itch", "chafe", "fret", "rubbing"]}, {"answer": "ruffle", "hint": "synonyms for ruffle", "clues": ["pleat", "strut", "cockle", "tittup", "riffle", "ripple", "prance", "shuffle", "mix", "swagger", "sashay", "flick", "rumple", "cock", "mess up", "fluff", "undulate", "ruffle up", "ruffle"]}, {"answer": "ruin", "hint": "synonyms for ruin", "clues": ["break", "bankrupt", "destroy", "smash", "deflower", "ruin"]}, {"answer": "ruining", "hint": "synonyms for ruining", "clues": ["break", "ruin", "bankrupt", "destroy", "smash", "deflower"]}, {"answer": "rule", "hint": "synonyms for rule", "clues": ["prevail", "harness", "reign", "predominate", "find", "govern", "dominate", "decree", "rule"]}, {"answer": "run", "hint": "synonyms for run", "clues": ["ply", "ladder", "campaign", "work", "head for the hills", "bunk", "race", "lead", "draw", "bleed", "scat", "function", "prevail", "feed", "run for", "consort", "be given", "track down", "turn tail", "hunt down", "flow", "melt", "operate", "unravel", "melt down", "run away", "take to the woods", "go", "carry", "fly the coop", "course", "die hard", "execute", "tend", "black market", "incline", "break away", "escape", "hightail it", "range", "persist", "hunt", "move", "scarper", "guide", "lam", "pass", "lean", "endure", "extend", "run"]}, {"answer": "rung", "hint": "synonyms for rung", "clues": ["telephone", "call", "echo", "ring", "knell", "skirt", "band", "resound", "call up", "phone", "reverberate", "surround", "border", "environ", "peal", "rung"]}, {"answer": "rushing", "hint": "synonyms for rushing", "clues": ["induce", "pelt along", "hie", "cannonball along", "rush", "race", "stimulate", "hurry", "step on it", "hotfoot", "look sharp", "rush along", "speed", "festinate", "bucket along", "hasten"]}, {"answer": "sabotage", "hint": "synonyms for sabotage", "clues": ["weaken", "counteract", "undermine", "countermine", "subvert", "sabotage"]}, {"answer": "sack", "hint": "synonyms for sack", "clues": ["displace", "give the axe", "terminate", "dismiss", "fire", "net", "plunder", "give the sack", "sack up", "send away", "give notice", "force out", "can", "clear", "sack"]}, {"answer": "sacking", "hint": "synonyms for sacking", "clues": ["displace", "give the axe", "terminate", "dismiss", "fire", "net", "clear", "plunder", "give the sack", "sack up", "send away", "give notice", "force out", "can", "sack"]}, {"answer": "sag", "hint": "synonyms for sag", "clues": ["swag", "flag", "sag down", "droop"]}, {"answer": "sailing", "hint": "synonyms for sailing", "clues": ["navigate", "sweep", "voyage", "sail"]}, {"answer": "salute", "hint": "synonyms for salute", "clues": ["drink", "pledge", "toast", "wassail", "present", "salute"]}, {"answer": "salvage", "hint": "synonyms for salvage", "clues": ["scavenge", "salve", "relieve", "salvage"]}, {"answer": "sampling", "hint": "synonyms for sampling", "clues": ["sample", "taste", "try out", "try", "sampling"]}, {"answer": "sang", "hint": "synonyms for sang", "clues": ["whistle", "tattle", "peach", "babble out", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing", "sang"]}, {"answer": "sap", "hint": "synonyms for sap", "clues": ["play out", "exhaust", "run down", "tire", "sap"]}, {"answer": "sashay", "hint": "synonyms for sashay", "clues": ["ruffle", "chasse", "cock", "sidle", "strut", "tittup", "prance", "swagger", "sashay"]}, {"answer": "sat", "hint": "synonyms for sat", "clues": ["pose", "seat", "baby-sit", "ride", "posture", "sit", "sit around", "sit down", "model"]}, {"answer": "save", "hint": "synonyms for save", "clues": ["salve", "bring through", "deliver", "economize", "keep", "spare", "save up", "carry through", "lay aside", "redeem", "preserve", "write", "pull through", "hold open", "make unnecessary", "salvage", "relieve", "keep open"]}, {"answer": "savings", "hint": "synonyms for savings", "clues": ["salve", "bring through", "deliver", "economize", "keep", "save up", "carry through", "lay aside", "redeem", "preserve", "write", "pull through", "hold open", "make unnecessary", "salvage", "relieve", "keep open", "spare", "savings"]}, {"answer": "savor", "hint": "synonyms for savor", "clues": ["relish", "bask", "taste", "savour", "enjoy"]}, {"answer": "savoring", "hint": "synonyms for savoring", "clues": ["taste", "relish", "bask", "savor", "enjoy"]}, {"answer": "savour", "hint": "synonyms for savour", "clues": ["bask", "savor", "taste", "relish", "enjoy"]}, {"answer": "savouring", "hint": "synonyms for savouring", "clues": ["bask", "relish", "savor", "taste", "enjoy", "savouring"]}, {"answer": "savvy", "hint": "synonyms for savvy", "clues": ["comprehend", "grasp", "get the picture", "compass", "grok", "apprehend", "dig", "savvy"]}, {"answer": "saw", "hint": "synonyms for saw", "clues": ["view", "control", "see to it", "escort", "find", "consider", "catch", "determine", "take care", "visualise", "understand", "take in", "go through", "see", "encounter", "envision", "fancy", "check", "figure", "meet", "get a line", "reckon", "project", "find out", "get wind", "witness", "regard", "insure", "look", "ensure", "construe", "visit", "hear", "pick up", "picture", "discover", "image", "learn", "watch", "go out", "date", "come across", "realise", "assure", "attend", "get word", "interpret", "experience", "go steady", "run into", "examine", "ascertain", "run across", "saw"]}, {"answer": "say", "hint": "synonyms for say", "clues": ["aver", "enunciate", "enjoin", "enounce", "pronounce", "suppose", "read", "tell", "articulate", "order", "sound out", "state", "allege", "say"]}, {"answer": "saying", "hint": "synonyms for saying", "clues": ["aver", "enunciate", "enjoin", "enounce", "pronounce", "suppose", "read", "tell", "say", "articulate", "order", "sound out", "state", "allege"]}, {"answer": "scam", "hint": "synonyms for scam", "clues": ["con", "swindle", "gip", "goldbrick", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change", "scam"]}, {"answer": "scan", "hint": "synonyms for scan", "clues": ["glance over", "skim", "run down", "rake", "read", "scan"]}, {"answer": "scanning", "hint": "synonyms for scanning", "clues": ["glance over", "skim", "scan", "run down", "rake", "read", "scanning"]}, {"answer": "scare", "hint": "synonyms for scare", "clues": ["scare away", "affright", "frighten off", "dash", "daunt", "pall", "frighten away", "frighten", "scare off", "scare"]}, {"answer": "scat", "hint": "synonyms for scat", "clues": ["break away", "escape", "hightail it", "turn tail", "fly the coop", "head for the hills", "scarper", "bunk", "lam", "run", "run away", "take to the woods", "scat"]}, {"answer": "scatter", "hint": "synonyms for scatter", "clues": ["break up", "disperse", "dot", "dispel", "spread", "spread out", "dust", "dissipate", "sprinkle", "scatter"]}, {"answer": "scattering", "hint": "synonyms for scattering", "clues": ["break up", "disperse", "dot", "dispel", "spread", "spread out", "dust", "dissipate", "scatter", "sprinkle"]}, {"answer": "scent", "hint": "synonyms for scent", "clues": ["nose", "wind", "odourise", "perfume", "odorize", "scent"]}, {"answer": "school", "hint": "synonyms for school", "clues": ["cultivate", "civilize", "educate", "train", "school"]}, {"answer": "schooling", "hint": "synonyms for schooling", "clues": ["school", "train", "cultivate", "civilize", "educate"]}, {"answer": "scoff", "hint": "synonyms for scoff", "clues": ["gibe", "jeer", "flout", "barrack", "scoff"]}, {"answer": "scoffing", "hint": "synonyms for scoffing", "clues": ["jeer", "gibe", "barrack", "flout", "scoff"]}, {"answer": "scold", "hint": "synonyms for scold", "clues": ["chew up", "jaw", "remonstrate", "dress down", "grouch", "grumble", "chew out", "call on the carpet", "rag", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "scold"]}, {"answer": "scolding", "hint": "synonyms for scolding", "clues": ["chew up", "jaw", "remonstrate", "dress down", "grouch", "grumble", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce"]}, {"answer": "scoop", "hint": "synonyms for scoop", "clues": ["take up", "scoop out", "lift out", "outflank", "trump", "scoop up", "outdo", "best", "scoop"]}, {"answer": "scorch", "hint": "synonyms for scorch", "clues": ["sear", "char", "blacken", "singe", "scorch"]}, {"answer": "score", "hint": "synonyms for score", "clues": ["make", "rack up", "hit", "mark", "tally", "seduce", "grade", "nock", "score"]}, {"answer": "scores", "hint": "synonyms for scores", "clues": ["make", "rack up", "hit", "mark", "tally", "score", "seduce", "grade", "nock"]}, {"answer": "scoring", "hint": "synonyms for scoring", "clues": ["make", "rack up", "hit", "mark", "tally", "score", "seduce", "grade", "nock", "scoring"]}, {"answer": "scorn", "hint": "synonyms for scorn", "clues": ["freeze off", "despise", "spurn", "pooh-pooh", "disdain", "reject", "turn down", "contemn", "scorn"]}, {"answer": "scour", "hint": "synonyms for scour", "clues": ["abrade", "flush", "purge", "scrub", "scour"]}, {"answer": "scourge", "hint": "synonyms for scourge", "clues": ["waste", "lay waste to", "desolate", "ravage", "devastate", "flagellate", "scourge"]}, {"answer": "scouring", "hint": "synonyms for scouring", "clues": ["scrub", "purge", "abrade", "flush", "scour"]}, {"answer": "scours", "hint": "synonyms for scours", "clues": ["scrub", "purge", "abrade", "flush", "scour"]}, {"answer": "scramble", "hint": "synonyms for scramble", "clues": ["shin", "sputter", "struggle", "clamber", "skin", "beat", "shinny", "throw together", "jumble", "scramble"]}, {"answer": "scrap", "hint": "synonyms for scrap", "clues": ["quarrel", "junk", "trash", "argufy", "altercate", "dispute", "scrap"]}, {"answer": "scrape", "hint": "synonyms for scrape", "clues": ["kowtow", "scratch", "genuflect", "scratch up", "skin", "grate", "scrape up", "come up", "scrape"]}, {"answer": "scraping", "hint": "synonyms for scraping", "clues": ["junk", "genuflect", "argufy", "come up", "skin", "kowtow", "quarrel", "scratch", "scrap", "scratch up", "trash", "altercate", "grate", "dispute", "scrape up"]}, {"answer": "scraps", "hint": "synonyms for scraps", "clues": ["junk", "argufy", "quarrel", "trash", "altercate", "scrap", "dispute"]}, {"answer": "scratch", "hint": "synonyms for scratch", "clues": ["strike", "scrub", "fray", "rub", "itch", "cancel", "chafe", "excise", "inscribe", "come up", "engrave", "expunge", "grave", "scratch up", "scrape", "scrape up", "call off", "fret", "scratch"]}, {"answer": "scratching", "hint": "synonyms for scratching", "clues": ["strike", "cancel", "fray", "rub", "engrave", "chafe", "come up", "scrape", "call off", "scrub", "excise", "itch", "inscribe", "expunge", "grave", "scratch", "scratch up", "scrape up", "fret"]}, {"answer": "scream", "hint": "synonyms for scream", "clues": ["hollo", "yell", "call", "cry", "squall", "shout out", "shout", "holler", "scream"]}, {"answer": "screech", "hint": "synonyms for screech", "clues": ["whine", "skreigh", "creak", "squawk", "skreak", "squeak", "screech"]}, {"answer": "screeching", "hint": "synonyms for screeching", "clues": ["whine", "skreigh", "creak", "screech", "squawk", "skreak", "squeak"]}, {"answer": "screen", "hint": "synonyms for screen", "clues": ["sort", "shield", "block out", "screen out", "riddle", "sieve", "test", "screen"]}, {"answer": "screening", "hint": "synonyms for screening", "clues": ["screen", "sort", "sieve", "test", "shield", "block out", "riddle", "screen out"]}, {"answer": "screw", "hint": "synonyms for screw", "clues": ["sleep with", "chicane", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "cheat", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "chouse", "drive in", "know", "jazz", "hump", "shaft", "eff", "do it", "jockey", "bang", "have sex", "sleep together", "screw"]}, {"answer": "screwing", "hint": "synonyms for screwing", "clues": ["sleep with", "chicane", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "cheat", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "chouse", "screw", "know", "jazz", "drive in", "hump", "shaft", "eff", "do it", "jockey", "bang", "have sex", "sleep together"]}, {"answer": "scrubbing", "hint": "synonyms for scrubbing", "clues": ["scour", "scratch", "scrub", "cancel", "call off", "scrub up", "scrubbing"]}, {"answer": "scrubs", "hint": "synonyms for scrubs", "clues": ["scour", "scratch", "scrub", "cancel", "call off", "scrub up"]}, {"answer": "scrunch", "hint": "synonyms for scrunch", "clues": ["thud", "squat", "ruckle", "crisp", "crinkle", "crouch", "hunker down", "crease", "crump", "hunker", "scrunch up", "scrunch"]}, {"answer": "scud", "hint": "synonyms for scud", "clues": ["flash", "shoot", "scoot", "dart", "rack", "dash", "scud"]}, {"answer": "scudding", "hint": "synonyms for scudding", "clues": ["flash", "shoot", "scud", "scoot", "dart", "rack", "dash", "scudding"]}, {"answer": "scupper", "hint": "synonyms for scupper", "clues": ["ambush", "expose", "ambuscade", "lie in wait", "waylay", "queer", "endanger", "peril", "lurk", "bushwhack", "scupper"]}, {"answer": "search", "hint": "synonyms for search", "clues": ["look", "seek", "explore", "research", "look for"]}, {"answer": "season", "hint": "synonyms for season", "clues": ["flavour", "temper", "harden", "mollify", "season"]}, {"answer": "seasoning", "hint": "synonyms for seasoning", "clues": ["flavour", "temper", "harden", "mollify", "season"]}, {"answer": "seat", "hint": "synonyms for seat", "clues": ["invest", "sit down", "sit", "induct", "seat"]}, {"answer": "seating", "hint": "synonyms for seating", "clues": ["invest", "sit", "seat", "sit down", "induct"]}, {"answer": "seats", "hint": "synonyms for seats", "clues": ["invest", "sit", "seat", "sit down", "induct"]}, {"answer": "see", "hint": "synonyms for see", "clues": ["view", "control", "see to it", "escort", "find", "consider", "catch", "determine", "take care", "visualise", "understand", "take in", "go through", "encounter", "envision", "fancy", "check", "figure", "meet", "get a line", "reckon", "project", "find out", "get wind", "witness", "regard", "insure", "look", "ensure", "construe", "visit", "hear", "pick up", "picture", "discover", "image", "learn", "watch", "go out", "date", "come across", "realise", "assure", "attend", "get word", "interpret", "experience", "go steady", "run into", "examine", "ascertain", "run across", "see"]}, {"answer": "seek", "hint": "synonyms for seek", "clues": ["essay", "assay", "try", "search", "attempt", "look for", "seek"]}, {"answer": "seeking", "hint": "synonyms for seeking", "clues": ["attempt", "look for", "seek", "essay", "assay", "search", "try"]}, {"answer": "seesaw", "hint": "synonyms for seesaw", "clues": ["teeter", "teeter-totter", "totter", "seesaw"]}, {"answer": "seizing", "hint": "synonyms for seizing", "clues": ["clutch", "prehend", "attach", "take over", "get hold of", "capture", "seize", "arrogate", "grab", "confiscate", "sequester", "impound", "usurp", "conquer", "appropriate", "assume", "seizing"]}, {"answer": "selling", "hint": "synonyms for selling", "clues": ["betray", "sell", "deal", "trade"]}, {"answer": "sending", "hint": "synonyms for sending", "clues": ["direct", "ship", "commit", "beam", "transmit", "send", "send off", "send out", "place", "charge", "air", "institutionalize", "station", "broadcast", "get off", "mail", "transport", "post"]}, {"answer": "sensing", "hint": "synonyms for sensing", "clues": ["smell", "sense", "feel", "smell out", "sensing"]}, {"answer": "serve", "hint": "synonyms for serve", "clues": ["serve up", "do", "swear out", "suffice", "service", "process", "wait on", "help", "attend", "attend to", "assist", "dish", "serve well", "dish out", "dish up", "answer", "function", "serve"]}, {"answer": "serving", "hint": "synonyms for serving", "clues": ["serve up", "do", "swear out", "suffice", "service", "process", "dish", "dish up", "function", "serve", "wait on", "help", "attend", "attend to", "assist", "serve well", "dish out", "answer", "serving"]}, {"answer": "setting", "hint": "synonyms for setting", "clues": ["pose", "do", "limit", "coiffure", "gear up", "define", "prepare", "correct", "typeset", "determine", "fix", "dress", "mark", "go down", "ready", "congeal", "jell", "lay", "arrange", "position", "rig", "specify", "set up", "go under", "localise", "adjust", "place", "fructify", "coif", "plant", "set", "lay out", "put", "countersink", "sic", "setting"]}, {"answer": "settle", "hint": "synonyms for settle", "clues": ["root", "adjudicate", "subside", "go under", "take root", "steady down", "determine", "make up", "finalise", "get back", "patch up", "locate", "fall", "descend", "resolve", "sink", "decide", "square off", "reconcile", "go down", "conciliate", "settle down", "nail down", "ensconce", "square up", "settle"]}, {"answer": "settling", "hint": "synonyms for settling", "clues": ["root", "adjudicate", "subside", "go under", "take root", "steady down", "determine", "make up", "finalise", "get back", "patch up", "locate", "fall", "descend", "resolve", "sink", "decide", "square off", "settle", "reconcile", "go down", "conciliate", "settle down", "nail down", "ensconce", "square up", "settling"]}, {"answer": "settlings", "hint": "synonyms for settlings", "clues": ["root", "adjudicate", "subside", "go under", "take root", "steady down", "determine", "make up", "finalise", "get back", "patch up", "locate", "fall", "descend", "resolve", "sink", "decide", "square off", "settle", "reconcile", "go down", "conciliate", "settle down", "nail down", "ensconce", "square up", "settlings"]}, {"answer": "severing", "hint": "synonyms for severing", "clues": ["break up", "sever", "discerp", "lop"]}, {"answer": "sewing", "hint": "synonyms for sewing", "clues": ["run up", "tailor-make", "sew", "tailor", "stitch", "sew together"]}, {"answer": "sex", "hint": "synonyms for sex", "clues": ["turn on", "arouse", "wind up", "excite", "sex"]}, {"answer": "shack", "hint": "synonyms for shack", "clues": ["trail", "reside", "domiciliate", "domicile", "shack"]}, {"answer": "shades", "hint": "synonyms for shades", "clues": ["shadow", "shade", "fill in", "shade off"]}, {"answer": "shading", "hint": "synonyms for shading", "clues": ["shadow", "shade", "fill in", "shade off", "shading"]}, {"answer": "shadow", "hint": "synonyms for shadow", "clues": ["shade", "dwarf", "overshadow", "shade off", "shadow"]}, {"answer": "shadowing", "hint": "synonyms for shadowing", "clues": ["shadow", "shade", "overshadow", "dwarf", "shade off"]}, {"answer": "shaft", "hint": "synonyms for shaft", "clues": ["cheat", "jockey", "chouse", "chicane", "screw", "shaft"]}, {"answer": "shake", "hint": "synonyms for shake", "clues": ["escape from", "throw off", "rock", "shake off", "excite", "stimulate", "agitate", "stir", "judder", "sway", "shake up", "didder", "shake"]}, {"answer": "shaking", "hint": "synonyms for shaking", "clues": ["escape from", "throw off", "shake", "rock", "shake off", "excite", "stimulate", "agitate", "stir", "judder", "sway", "shake up", "didder", "shaking"]}, {"answer": "shame", "hint": "synonyms for shame", "clues": ["dishonour", "disgrace", "attaint", "shame"]}, {"answer": "shape", "hint": "synonyms for shape", "clues": ["form", "work", "mould", "regulate", "determine", "forge", "influence", "shape"]}, {"answer": "share", "hint": "synonyms for share", "clues": ["apportion", "portion out", "partake", "partake in", "deal", "divvy up", "share"]}, {"answer": "shaving", "hint": "synonyms for shaving", "clues": ["plane", "trim", "knock off", "shave", "shaving"]}, {"answer": "shedding", "hint": "synonyms for shedding", "clues": ["throw", "throw off", "disgorge", "exuviate", "shed", "cast off", "shake off", "spill", "pour forth", "molt", "drop", "cast", "throw away", "slough", "shedding"]}, {"answer": "shell", "hint": "synonyms for shell", "clues": ["vanquish", "blast", "crush", "beat out", "husk", "trounce", "beat", "shell"]}, {"answer": "shelling", "hint": "synonyms for shelling", "clues": ["vanquish", "blast", "crush", "beat out", "beat", "shell", "husk", "trounce"]}, {"answer": "shift", "hint": "synonyms for shift", "clues": ["transfer", "careen", "dislodge", "tilt", "switch", "pitch", "budge", "change", "reposition", "wobble", "agitate", "stir", "lurch", "change over", "shift"]}, {"answer": "shillyshally", "hint": "synonyms for shillyshally", "clues": ["drag one's heels", "stall", "drag one's feet", "dilly-dally", "procrastinate", "shillyshally"]}, {"answer": "shin", "hint": "synonyms for shin", "clues": ["shinny", "sputter", "struggle", "scramble", "clamber", "skin", "shin"]}, {"answer": "shine", "hint": "synonyms for shine", "clues": ["gleam", "smooth", "radiate", "strike", "beam", "polish", "glitter", "glow", "reflect", "glisten", "fall", "glint", "shine"]}, {"answer": "shinny", "hint": "synonyms for shinny", "clues": ["shin", "sputter", "struggle", "scramble", "clamber", "skin", "shinny"]}, {"answer": "shipping", "hint": "synonyms for shipping", "clues": ["transport", "ship", "embark", "send", "shipping"]}, {"answer": "shirking", "hint": "synonyms for shirking", "clues": ["goldbrick", "shirk", "fiddle", "shrink from"]}, {"answer": "shit", "hint": "synonyms for shit", "clues": ["defecate", "denounce", "crap", "betray", "make", "give away", "stag", "rat", "ca-ca", "grass", "shop", "take a shit", "stool", "snitch", "tell on", "take a crap", "shit"]}, {"answer": "shitting", "hint": "synonyms for shitting", "clues": ["defecate", "denounce", "crap", "betray", "make", "give away", "stag", "rat", "ca-ca", "stool", "grass", "shop", "take a shit", "shit", "snitch", "tell on", "take a crap", "shitting"]}, {"answer": "shock", "hint": "synonyms for shock", "clues": ["ball over", "offend", "traumatize", "take aback", "appall", "scandalize", "floor", "blow out of the water", "outrage", "shock"]}, {"answer": "shook", "hint": "synonyms for shook", "clues": ["escape from", "throw off", "shake", "rock", "shake off", "excite", "stimulate", "agitate", "stir", "judder", "sway", "shake up", "didder", "shook"]}, {"answer": "shoot", "hint": "synonyms for shoot", "clues": ["sprout", "blast", "frivol away", "inject", "scoot", "fritter away", "dash", "photograph", "fritter", "pullulate", "germinate", "pip", "charge", "buck", "snap", "take", "flash", "fool away", "scud", "hit", "dart", "film", "bourgeon", "burgeon forth", "fool", "shoot down", "spud", "dissipate", "tear", "shoot"]}, {"answer": "shooting", "hint": "synonyms for shooting", "clues": ["sprout", "blast", "frivol away", "inject", "scoot", "fritter away", "dash", "photograph", "fritter", "pullulate", "germinate", "pip", "charge", "buck", "snap", "take", "shoot", "flash", "scud", "hit", "dart", "film", "fool away", "bourgeon", "burgeon forth", "fool", "shoot down", "spud", "dissipate", "tear"]}, {"answer": "shop", "hint": "synonyms for shop", "clues": ["patronize", "denounce", "shop at", "betray", "sponsor", "browse", "buy at", "grass", "shit", "tell on", "give away", "stag", "frequent", "rat", "snitch", "shop"]}, {"answer": "shopping", "hint": "synonyms for shopping", "clues": ["patronize", "denounce", "shop at", "betray", "sponsor", "give away", "stag", "browse", "buy at", "frequent", "rat", "grass", "shop", "shit", "snitch", "tell on", "shopping"]}, {"answer": "shore", "hint": "synonyms for shore", "clues": ["prop up", "shore up", "land", "prop", "set ashore", "shore"]}, {"answer": "shoring", "hint": "synonyms for shoring", "clues": ["prop up", "shore up", "land", "shore", "prop", "set ashore", "shoring"]}, {"answer": "shortening", "hint": "synonyms for shortening", "clues": ["shorten", "foreshorten", "cut", "reduce", "contract", "abbreviate", "castrate", "bowdlerize", "expurgate", "abridge"]}, {"answer": "shout", "hint": "synonyms for shout", "clues": ["hollo", "call", "scream", "outcry", "blackguard", "cry", "squall", "abuse", "clapperclaw", "exclaim", "shout out", "call out", "cry out", "yell", "holler", "shout"]}, {"answer": "shouting", "hint": "synonyms for shouting", "clues": ["hollo", "yell", "call", "scream", "outcry", "blackguard", "cry", "squall", "abuse", "clapperclaw", "exclaim", "shout out", "call out", "cry out", "shout", "holler"]}, {"answer": "shove", "hint": "synonyms for shove", "clues": ["stuff", "jostle", "thrust", "squeeze", "shove"]}, {"answer": "show", "hint": "synonyms for show", "clues": ["demonstrate", "designate", "shew", "evince", "indicate", "bear witness", "picture", "record", "point", "present", "demo", "show up", "prove", "register", "usher", "express", "testify", "render", "establish", "read", "exhibit", "depict", "show"]}, {"answer": "showing", "hint": "synonyms for showing", "clues": ["demonstrate", "designate", "shew", "evince", "indicate", "bear witness", "picture", "record", "point", "present", "demo", "show up", "prove", "register", "usher", "express", "testify", "render", "establish", "read", "show", "exhibit", "depict"]}, {"answer": "shrieking", "hint": "synonyms for shrieking", "clues": ["pipe", "shriek", "pipe up", "shrill"]}, {"answer": "shrilling", "hint": "synonyms for shrilling", "clues": ["pipe", "shriek", "pipe up", "shrill"]}, {"answer": "shrink", "hint": "synonyms for shrink", "clues": ["shrivel", "recoil", "quail", "reduce", "wither", "cringe", "wince", "contract", "funk", "shrivel up", "squinch", "flinch", "shrink"]}, {"answer": "shrinking", "hint": "synonyms for shrinking", "clues": ["shrivel", "recoil", "quail", "reduce", "wither", "shrink", "cringe", "wince", "contract", "funk", "shrivel up", "squinch", "flinch"]}, {"answer": "shuffle", "hint": "synonyms for shuffle", "clues": ["scuffle", "mix", "shamble", "ruffle"]}, {"answer": "shuffling", "hint": "synonyms for shuffling", "clues": ["scuffle", "mix", "shamble", "ruffle", "shuffling"]}, {"answer": "shunning", "hint": "synonyms for shunning", "clues": ["ban", "shun", "ostracize", "banish", "eschew", "blackball", "cast out", "shunning"]}, {"answer": "shutting", "hint": "synonyms for shutting", "clues": ["shut", "shut out", "close", "keep out", "exclude", "shutting"]}, {"answer": "sidestep", "hint": "synonyms for sidestep", "clues": ["elude", "put off", "dodge", "evade", "hedge", "skirt", "circumvent", "duck", "parry", "fudge", "sidestep"]}, {"answer": "sieve", "hint": "synonyms for sieve", "clues": ["screen", "sort", "strain", "sift", "screen out", "sieve"]}, {"answer": "signaling", "hint": "synonyms for signaling", "clues": ["bespeak", "sign", "signalise", "indicate", "betoken", "point", "signal"]}, {"answer": "signified", "hint": "synonyms for signified", "clues": ["mean", "signify", "stand for", "intend", "signified"]}, {"answer": "signing", "hint": "synonyms for signing", "clues": ["ratify", "subscribe", "sign", "contract", "sign up", "signalise", "bless", "sign on", "signal"]}, {"answer": "silence", "hint": "synonyms for silence", "clues": ["hush", "still", "quieten", "hush up", "shut up", "silence"]}, {"answer": "sin", "hint": "synonyms for sin", "clues": ["trespass", "boob", "transgress", "blunder", "goof", "drop the ball", "sin"]}, {"answer": "sink", "hint": "synonyms for sink", "clues": ["fall off", "bury", "dip", "settle", "subside", "go down", "go under", "lapse", "slump", "drop", "drop down", "pass", "slide down", "sink"]}, {"answer": "sinking", "hint": "synonyms for sinking", "clues": ["fall off", "sink", "bury", "dip", "settle", "subside", "go down", "lapse", "go under", "slump", "drop", "drop down", "pass", "slide down"]}, {"answer": "sire", "hint": "synonyms for sire", "clues": ["engender", "father", "mother", "bring forth", "generate", "beget", "get", "sire"]}, {"answer": "skid", "hint": "synonyms for skid", "clues": ["slide", "slew", "slip", "slue", "skid"]}, {"answer": "skimming", "hint": "synonyms for skimming", "clues": ["skip", "skim off", "cream off", "cream", "skitter", "plane", "glance over", "skim", "skim over", "scan", "run down", "rake", "skimming"]}, {"answer": "skin", "hint": "synonyms for skin", "clues": ["shin", "sputter", "struggle", "pare", "clamber", "bark", "peel", "shinny", "scrape", "scramble", "skin"]}, {"answer": "skip", "hint": "synonyms for skip", "clues": ["jump", "skip over", "hop-skip", "cut", "decamp", "skitter", "bound off", "pass over", "skim", "hop", "vamoose", "skip"]}, {"answer": "skirt", "hint": "synonyms for skirt", "clues": ["elude", "surround", "put off", "ring", "dodge", "evade", "hedge", "circumvent", "duck", "parry", "fudge", "border", "environ", "sidestep", "skirt"]}, {"answer": "skylark", "hint": "synonyms for skylark", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "run around", "lark about", "romp", "gambol", "skylark"]}, {"answer": "slackening", "hint": "synonyms for slackening", "clues": ["slow down", "relax", "slack up", "slow", "slack", "remit", "slacken", "slow up"]}, {"answer": "slacking", "hint": "synonyms for slacking", "clues": ["slow down", "relax", "let up", "slack up", "slow", "die away", "abate", "slack", "slack off", "slake", "slacken", "slow up"]}, {"answer": "slacks", "hint": "synonyms for slacks", "clues": ["slow down", "relax", "let up", "slack up", "slow", "die away", "abate", "slack", "slack off", "slake", "slacken", "slow up"]}, {"answer": "slam", "hint": "synonyms for slam", "clues": ["mosh", "bang", "slam dance", "thrash", "flap down", "slam"]}, {"answer": "slam_dancing", "hint": "synonyms for slam dancing", "clues": ["thrash", "slam", "mosh", "slam dance", "slam dancing"]}, {"answer": "slander", "hint": "synonyms for slander", "clues": ["sully", "smear", "defame", "asperse", "calumniate", "denigrate", "besmirch", "slander"]}, {"answer": "slang", "hint": "synonyms for slang", "clues": ["put one across", "cod", "befool", "put one over", "gull", "fool", "dupe", "take in", "put on", "slang"]}, {"answer": "slant", "hint": "synonyms for slant", "clues": ["angle", "weight", "tilt", "pitch", "cant over", "cant", "lean", "tip", "slant"]}, {"answer": "slash", "hint": "synonyms for slash", "clues": ["jactitate", "lash", "flog", "whip", "lather", "convulse", "thrash", "toss", "welt", "cut down", "gash", "thresh about", "strap", "thresh", "trounce"]}, {"answer": "slaver", "hint": "synonyms for slaver", "clues": ["slabber", "drool", "dribble", "drivel", "slaver"]}, {"answer": "slaying", "hint": "synonyms for slaying", "clues": ["dispatch", "remove", "hit", "polish off", "slay", "bump off", "murder", "off"]}, {"answer": "sleep", "hint": "synonyms for sleep", "clues": ["slumber", "log Z's", "catch some Z's", "kip", "sleep"]}, {"answer": "sleuthing", "hint": "synonyms for sleuthing", "clues": ["sleuth", "spy", "snoop", "stag"]}, {"answer": "slew", "hint": "synonyms for slew", "clues": ["trend", "veer", "sheer", "slip", "cut", "dispatch", "remove", "hit", "slide", "polish off", "slay", "swerve", "bump off", "murder", "curve", "slue", "skid", "off", "slew"]}, {"answer": "slews", "hint": "synonyms for slews", "clues": ["trend", "veer", "sheer", "slip", "cut", "slide", "slew", "swerve", "curve", "slue", "skid"]}, {"answer": "slide", "hint": "synonyms for slide", "clues": ["slew", "slip", "slither", "slue", "skid", "slide"]}, {"answer": "slip", "hint": "synonyms for slip", "clues": ["err", "drop away", "fall away", "slip one's mind", "slew", "dislocate", "drop off", "steal", "sneak", "luxate", "splay", "mistake", "slide", "slue", "skid", "slip"]}, {"answer": "slobber", "hint": "synonyms for slobber", "clues": ["slabber", "slaver", "drool", "dribble", "drivel"]}, {"answer": "slop", "hint": "synonyms for slop", "clues": ["splatter", "spill", "splosh", "swill", "splash", "squish", "squelch", "slop"]}, {"answer": "slops", "hint": "synonyms for slops", "clues": ["splash", "slop", "squish", "swill", "squelch", "spill", "splatter", "splosh"]}, {"answer": "slough", "hint": "synonyms for slough", "clues": ["molt", "exuviate", "shed", "slough"]}, {"answer": "sloughing", "hint": "synonyms for sloughing", "clues": ["exuviate", "molt", "shed", "slough"]}, {"answer": "slowing", "hint": "synonyms for slowing", "clues": ["slow down", "slow", "slack", "decelerate", "slacken", "slow up", "retard"]}, {"answer": "slug", "hint": "synonyms for slug", "clues": ["swig", "laze", "slog", "stagnate", "idle", "slug"]}, {"answer": "slumber", "hint": "synonyms for slumber", "clues": ["log Z's", "sleep", "catch some Z's", "kip", "slumber"]}, {"answer": "slump", "hint": "synonyms for slump", "clues": ["fall off", "sink", "slouch", "correct", "decline", "slide down", "slump"]}, {"answer": "slush", "hint": "synonyms for slush", "clues": ["splosh", "slosh around", "splash", "slush"]}, {"answer": "smacking", "hint": "synonyms for smacking", "clues": ["smell", "thwack", "peck", "smack", "reek", "taste"]}, {"answer": "smattering", "hint": "synonyms for smattering", "clues": ["blether", "smatter", "babble", "play around", "dabble"]}, {"answer": "smear", "hint": "synonyms for smear", "clues": ["sully", "blur", "daub", "defame", "asperse", "calumniate", "smutch", "slander", "denigrate", "besmirch", "smudge", "smear"]}, {"answer": "smell", "hint": "synonyms for smell", "clues": ["smell out", "sense", "smack", "reek", "smell"]}, {"answer": "smelt", "hint": "synonyms for smelt", "clues": ["smell", "sense", "smell out", "smack", "reek", "smelt"]}, {"answer": "smirch", "hint": "synonyms for smirch", "clues": ["sully", "smear", "defame", "asperse", "calumniate", "slander", "besmirch", "denigrate"]}, {"answer": "smother", "hint": "synonyms for smother", "clues": ["put out", "stifle", "strangle", "repress", "muffle", "surround", "suffocate", "asphyxiate", "smother"]}, {"answer": "snap", "hint": "synonyms for snap", "clues": ["click", "snarl", "shoot", "photograph", "flick", "snatch", "lose it", "crack", "snatch up", "bust", "rupture", "break down", "tear", "snap"]}, {"answer": "snare", "hint": "synonyms for snare", "clues": ["ensnare", "entrap", "hook", "trammel", "trap", "snare"]}, {"answer": "snarl", "hint": "synonyms for snarl", "clues": ["mat", "snap", "entangle", "snarl up", "embrangle", "snarl"]}, {"answer": "snatch", "hint": "synonyms for snatch", "clues": ["kidnap", "snap", "nobble", "snatch up", "abduct", "snatch"]}, {"answer": "sniffle", "hint": "synonyms for sniffle", "clues": ["blub", "sniff", "snivel", "blubber", "snuffle"]}, {"answer": "snip", "hint": "synonyms for snip", "clues": ["clip", "nip", "trim", "cut back", "snip off", "prune", "crop", "dress", "lop"]}, {"answer": "snipe", "hint": "synonyms for snipe", "clues": ["assail", "assault", "round", "attack", "sharpshoot", "lash out", "snipe"]}, {"answer": "snipping", "hint": "synonyms for snipping", "clues": ["clip", "nip", "trim", "cut back", "snip off", "prune", "crop", "dress", "lop", "snipping"]}, {"answer": "snips", "hint": "synonyms for snips", "clues": ["clip", "nip", "trim", "cut back", "snip off", "prune", "crop", "dress", "lop", "snips"]}, {"answer": "snitch", "hint": "synonyms for snitch", "clues": ["denounce", "betray", "give away", "stag", "knock off", "rat", "grass", "shit", "glom", "shop", "hook", "thieve", "cop", "tell on", "snitch"]}, {"answer": "snivel", "hint": "synonyms for snivel", "clues": ["whine", "blub", "sniffle", "blubber", "snivel"]}, {"answer": "sniveling", "hint": "synonyms for sniveling", "clues": ["whine", "sniffle", "snivel", "blubber", "blub"]}, {"answer": "snogging", "hint": "synonyms for snogging", "clues": ["osculate", "buss", "snog", "kiss", "snogging"]}, {"answer": "snow", "hint": "synonyms for snow", "clues": ["lead by the nose", "hoodwink", "pull the wool over someone's eyes", "bamboozle", "play false", "snow"]}, {"answer": "snuffle", "hint": "synonyms for snuffle", "clues": ["blub", "snuff", "sniffle", "snivel", "blubber"]}, {"answer": "snuggle", "hint": "synonyms for snuggle", "clues": ["nestle", "cuddle", "draw close", "nest", "nuzzle", "snuggle"]}, {"answer": "snuggling", "hint": "synonyms for snuggling", "clues": ["nestle", "cuddle", "draw close", "nest", "snuggle", "nuzzle", "snuggling"]}, {"answer": "soak", "hint": "synonyms for soak", "clues": ["pluck", "fleece", "dowse", "douse", "plume", "rob", "hit it up", "surcharge", "sop", "drench", "imbue", "hock", "overcharge", "souse", "pawn", "gazump", "hook", "inebriate", "intoxicate", "soak"]}, {"answer": "soar", "hint": "synonyms for soar", "clues": ["sailplane", "zoom", "soar upwards", "hang glide", "surge", "soar up", "soar"]}, {"answer": "sock", "hint": "synonyms for sock", "clues": ["bonk", "bash", "whop", "whap", "bop", "sock"]}, {"answer": "soil", "hint": "synonyms for soil", "clues": ["colly", "grime", "begrime", "bemire", "dirty", "soil"]}, {"answer": "soiling", "hint": "synonyms for soiling", "clues": ["soil", "colly", "grime", "begrime", "bemire", "dirty"]}, {"answer": "solving", "hint": "synonyms for solving", "clues": ["resolve", "work", "work out", "lick", "puzzle out", "solve", "figure out", "clear", "solving"]}, {"answer": "sop", "hint": "synonyms for sop", "clues": ["soak through", "soak", "dowse", "souse", "douse", "drench", "sop"]}, {"answer": "sophisticate", "hint": "synonyms for sophisticate", "clues": ["doctor", "twist around", "pervert", "convolute", "twist", "doctor up", "sophisticate"]}, {"answer": "sops", "hint": "synonyms for sops", "clues": ["dowse", "souse", "douse", "soak through", "soak", "sop", "drench"]}, {"answer": "sort", "hint": "synonyms for sort", "clues": ["screen", "sort out", "separate", "sieve", "class", "classify", "screen out", "assort", "sort"]}, {"answer": "sorting", "hint": "synonyms for sorting", "clues": ["screen", "sort", "sort out", "separate", "sieve", "class", "classify", "screen out", "assort"]}, {"answer": "souring", "hint": "synonyms for souring", "clues": ["acidify", "work", "ferment", "sour", "acetify", "turn", "acidulate"]}, {"answer": "souse", "hint": "synonyms for souse", "clues": ["dip", "dowse", "douse", "soak", "dunk", "hit it up", "inebriate", "sop", "drench", "plunge", "souse"]}, {"answer": "sousing", "hint": "synonyms for sousing", "clues": ["dip", "dowse", "souse", "douse", "soak", "dunk", "hit it up", "inebriate", "sop", "drench", "plunge", "sousing"]}, {"answer": "spark", "hint": "synonyms for spark", "clues": ["trigger off", "sparkle", "trigger", "set off", "touch off", "activate", "actuate", "trip", "spark off", "spark"]}, {"answer": "sparkle", "hint": "synonyms for sparkle", "clues": ["scintillate", "froth", "form bubbles", "fizz", "effervesce", "spark", "coruscate", "foam", "sparkle"]}, {"answer": "spat", "hint": "synonyms for spat", "clues": ["clap", "ptyalise", "applaud", "spatter", "spit out", "skewer", "spue", "spit", "pitter-patter", "acclaim", "sprinkle", "spew", "spat"]}, {"answer": "spatter", "hint": "synonyms for spatter", "clues": ["swash", "splash", "bespatter", "patter", "splosh", "spit", "pitter-patter", "sprinkle"]}, {"answer": "spattering", "hint": "synonyms for spattering", "clues": ["swash", "splash", "bespatter", "splatter", "splosh", "sprinkle", "spit", "pitter-patter", "spattering"]}, {"answer": "spaying", "hint": "synonyms for spaying", "clues": ["alter", "castrate", "spay", "neuter"]}, {"answer": "speed", "hint": "synonyms for speed", "clues": ["pelt along", "hie", "cannonball along", "rush", "quicken", "race", "hurry", "speed up", "step on it", "hotfoot", "travel rapidly", "rush along", "accelerate", "bucket along", "zip", "hasten", "speed"]}, {"answer": "speeding", "hint": "synonyms for speeding", "clues": ["pelt along", "hie", "cannonball along", "rush", "quicken", "race", "hurry", "speed up", "step on it", "zip", "hotfoot", "travel rapidly", "rush along", "accelerate", "speed", "bucket along", "hasten"]}, {"answer": "spelling", "hint": "synonyms for spelling", "clues": ["import", "spell out", "write", "spell"]}, {"answer": "spelt", "hint": "synonyms for spelt", "clues": ["import", "spell out", "write", "spell", "spelt"]}, {"answer": "spending", "hint": "synonyms for spending", "clues": ["spend", "expend", "drop", "pass"]}, {"answer": "spike", "hint": "synonyms for spike", "clues": ["impale", "spike out", "empale", "transfix", "lace", "fortify", "spike"]}, {"answer": "spill", "hint": "synonyms for spill", "clues": ["splatter", "disgorge", "pour forth", "shed", "talk", "slop", "run out", "spill"]}, {"answer": "spin", "hint": "synonyms for spin", "clues": ["whirl", "gyrate", "spin around", "spin out", "birl", "twirl", "reel", "spin"]}, {"answer": "spinning", "hint": "synonyms for spinning", "clues": ["gyrate", "spin around", "twirl", "whirl", "spin out", "birl", "spin", "reel", "spinning"]}, {"answer": "spirt", "hint": "synonyms for spirt", "clues": ["spurt", "forge", "spout", "gush", "spirt"]}, {"answer": "spit", "hint": "synonyms for spit", "clues": ["ptyalise", "spatter", "spit out", "skewer", "spue", "pitter-patter", "spew", "sprinkle", "spit"]}, {"answer": "spite", "hint": "synonyms for spite", "clues": ["offend", "hurt", "injure", "wound", "bruise", "spite"]}, {"answer": "spitting", "hint": "synonyms for spitting", "clues": ["ptyalise", "spatter", "spit out", "skewer", "spue", "spit", "pitter-patter", "sprinkle", "spew", "spitting"]}, {"answer": "splash", "hint": "synonyms for splash", "clues": ["swash", "slop", "squish", "squelch", "spatter", "splosh", "plash", "slush", "sprinkle"]}, {"answer": "splashing", "hint": "synonyms for splashing", "clues": ["swash", "splash", "slop", "squish", "squelch", "spatter", "splosh", "slush", "sprinkle"]}, {"answer": "splatter", "hint": "synonyms for splatter", "clues": ["spatter", "spill", "swash", "plash", "splosh", "slop"]}, {"answer": "splattering", "hint": "synonyms for splattering", "clues": ["swash", "splash", "slop", "spatter", "spill", "splosh", "splattering"]}, {"answer": "splicing", "hint": "synonyms for splicing", "clues": ["tie", "splice", "marry", "wed", "splicing"]}, {"answer": "splintering", "hint": "synonyms for splintering", "clues": ["break away", "secede", "splinter", "sliver"]}, {"answer": "splinters", "hint": "synonyms for splinters", "clues": ["break away", "secede", "splinter", "sliver"]}, {"answer": "split_up", "hint": "synonyms for split up", "clues": ["break", "break up", "split", "separate", "carve up", "part", "come apart", "divide", "dissever", "divorce", "fall apart", "split up"]}, {"answer": "spoil", "hint": "synonyms for spoil", "clues": ["fuck up", "louse up", "scotch", "despoil", "muff", "pamper", "bollix up", "cross", "bollocks", "botch", "bumble", "fluff", "coddle", "thwart", "featherbed", "fumble", "rape", "itch", "mar", "mishandle", "vitiate", "baffle", "bollocks up", "indulge", "foul up", "impair", "bungle", "bollix", "bobble", "baby", "foil", "violate", "deflower", "go bad", "ball up", "screw up", "cosset", "bodge", "mess up", "cocker", "flub", "blow", "corrupt", "queer", "frustrate", "mollycoddle", "bilk", "plunder", "botch up", "spoil"]}, {"answer": "spoiling", "hint": "synonyms for spoiling", "clues": ["fuck up", "louse up", "scotch", "despoil", "muff", "pamper", "bollix up", "cross", "bollocks", "botch", "bumble", "fluff", "coddle", "thwart", "featherbed", "fumble", "rape", "itch", "mar", "mishandle", "vitiate", "baffle", "bollocks up", "indulge", "foul up", "impair", "bungle", "bollix", "bobble", "baby", "foil", "violate", "deflower", "go bad", "ball up", "screw up", "cosset", "bodge", "mess up", "cocker", "flub", "blow", "spoil", "corrupt", "queer", "frustrate", "mollycoddle", "bilk", "plunder", "botch up"]}, {"answer": "spoke", "hint": "synonyms for spoke", "clues": ["speak", "address", "talk", "mouth", "utter", "verbalize", "spoke"]}, {"answer": "sponge", "hint": "synonyms for sponge", "clues": ["mooch", "grub", "bum", "cadge", "sponge"]}, {"answer": "sponsor", "hint": "synonyms for sponsor", "clues": ["patronize", "shop at", "buy at", "frequent", "shop", "sponsor"]}, {"answer": "sport", "hint": "synonyms for sport", "clues": ["gambol", "rollick", "lark", "boast", "feature", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "cavort", "sport"]}, {"answer": "spot", "hint": "synonyms for spot", "clues": ["blob", "spy", "recognize", "blot", "discern", "blemish", "pick out", "descry", "make out", "fleck", "tell apart", "distinguish", "spot"]}, {"answer": "spots", "hint": "synonyms for spots", "clues": ["blob", "spy", "recognize", "blot", "spot", "discern", "blemish", "pick out", "descry", "make out", "fleck", "tell apart", "distinguish"]}, {"answer": "spotting", "hint": "synonyms for spotting", "clues": ["blob", "spy", "recognize", "blot", "spot", "discern", "blemish", "pick out", "descry", "make out", "fleck", "tell apart", "distinguish", "spotting"]}, {"answer": "spout", "hint": "synonyms for spout", "clues": ["spurt", "spirt", "gush", "rave", "mouth off", "jabber", "rant", "rabbit on", "spout"]}, {"answer": "sprain", "hint": "synonyms for sprain", "clues": ["wrick", "wrench", "turn", "twist", "sprain"]}, {"answer": "spreading", "hint": "synonyms for spreading", "clues": ["fan out", "circulate", "disperse", "unfold", "circularise", "disseminate", "pass around", "spread out", "diffuse", "propagate", "distribute", "open", "spread", "broadcast", "go around", "overspread", "scatter"]}, {"answer": "spring", "hint": "synonyms for spring", "clues": ["jump", "form", "rebound", "recoil", "resile", "ricochet", "leap", "take a hop", "bound", "reverberate", "bounce", "take shape", "take form", "spring"]}, {"answer": "sprinkle", "hint": "synonyms for sprinkle", "clues": ["sparge", "disperse", "dot", "splash", "spatter", "splosh", "besprinkle", "spit", "pitter-patter", "dust"]}, {"answer": "sprinkles", "hint": "synonyms for sprinkles", "clues": ["sparge", "disperse", "dot", "splash", "spatter", "splosh", "besprinkle", "spit", "pitter-patter", "dust", "sprinkles"]}, {"answer": "sprinkling", "hint": "synonyms for sprinkling", "clues": ["sparge", "disperse", "dot", "splash", "spatter", "splosh", "besprinkle", "spit", "pitter-patter", "dust", "sprinkling"]}, {"answer": "sprout", "hint": "synonyms for sprout", "clues": ["burgeon forth", "pullulate", "shoot", "germinate", "bourgeon", "stock", "spud", "sprout"]}, {"answer": "sprouting", "hint": "synonyms for sprouting", "clues": ["sprout", "shoot", "burgeon forth", "pullulate", "germinate", "stock", "bourgeon", "spud"]}, {"answer": "spud", "hint": "synonyms for spud", "clues": ["sprout", "burgeon forth", "pullulate", "shoot", "germinate", "bourgeon", "spud"]}, {"answer": "spurt", "hint": "synonyms for spurt", "clues": ["forge", "spirt", "spout", "gush", "spurt"]}, {"answer": "sputter", "hint": "synonyms for sputter", "clues": ["shin", "struggle", "clamber", "skin", "splutter", "spit out", "shinny", "scramble"]}, {"answer": "sputtering", "hint": "synonyms for sputtering", "clues": ["shin", "sputter", "struggle", "clamber", "skin", "spit out", "shinny", "scramble"]}, {"answer": "spy", "hint": "synonyms for spy", "clues": ["sleuth", "sight", "espy", "descry", "stag", "spot", "snoop"]}, {"answer": "spying", "hint": "synonyms for spying", "clues": ["sleuth", "spy", "stag", "spot", "snoop", "sight", "descry"]}, {"answer": "squabble", "hint": "synonyms for squabble", "clues": ["pettifog", "quibble", "brabble", "niggle", "bicker", "squabble"]}, {"answer": "squall", "hint": "synonyms for squall", "clues": ["hollo", "call", "scream", "cry", "shout", "wawl", "waul", "shout out", "yell", "holler", "squall"]}, {"answer": "squandering", "hint": "synonyms for squandering", "clues": ["ware", "blow", "consume", "waste", "squander"]}, {"answer": "squash", "hint": "synonyms for squash", "clues": ["squelch", "mash", "squeeze", "crush", "squash"]}, {"answer": "squatting", "hint": "synonyms for squatting", "clues": ["scrunch up", "crouch", "scrunch", "hunker down", "hunker", "squat", "squatting"]}, {"answer": "squawk", "hint": "synonyms for squawk", "clues": ["skreigh", "beef", "grouse", "screak", "gripe", "screech", "bitch", "skreak", "bellyache", "crab", "holler", "squawk"]}, {"answer": "squeak", "hint": "synonyms for squeak", "clues": ["whine", "skreak", "creak", "screech", "squeak"]}, {"answer": "squeeze", "hint": "synonyms for squeeze", "clues": ["embrace", "nip", "compress", "stuff", "squelch", "twitch", "tweet", "hale", "bosom", "wedge", "squash", "gouge", "shove", "pressure", "hug", "mash", "pinch", "crush", "compact", "rack", "wring", "constrict", "contract", "press", "extort", "twinge", "force", "thrust", "coerce", "squeeze"]}, {"answer": "squeezing", "hint": "synonyms for squeezing", "clues": ["embrace", "nip", "compress", "stuff", "squelch", "squeeze", "twitch", "tweet", "hale", "bosom", "wedge", "squash", "gouge", "shove", "pressure", "hug", "mash", "pinch", "crush", "compact", "rack", "wring", "constrict", "contract", "press", "extort", "twinge", "force", "thrust", "coerce", "squeezing"]}, {"answer": "squelch", "hint": "synonyms for squelch", "clues": ["quell", "mash", "splash", "slop", "squish", "crush", "squeeze", "splosh", "squash", "quench", "squelch"]}, {"answer": "squinch", "hint": "synonyms for squinch", "clues": ["wince", "flinch", "funk", "recoil", "quail", "squint", "shrink", "cringe", "squinch"]}, {"answer": "squirm", "hint": "synonyms for squirm", "clues": ["writhe", "twist", "wriggle", "wrestle", "worm", "squirm"]}, {"answer": "squish", "hint": "synonyms for squish", "clues": ["splosh", "splash", "slop", "squelch", "squish"]}, {"answer": "stab", "hint": "synonyms for stab", "clues": ["knife", "dig", "poke", "jab", "prod", "stab"]}, {"answer": "stag", "hint": "synonyms for stag", "clues": ["sleuth", "denounce", "spy", "betray", "give away", "snoop", "rat", "grass", "shop", "shit", "snitch", "tell on", "stag"]}, {"answer": "stagger", "hint": "synonyms for stagger", "clues": ["swag", "distribute", "careen", "keel", "flounder", "reel", "lurch", "stagger"]}, {"answer": "staggers", "hint": "synonyms for staggers", "clues": ["swag", "distribute", "stagger", "careen", "keel", "flounder", "reel", "lurch"]}, {"answer": "staging", "hint": "synonyms for staging", "clues": ["sleuth", "denounce", "spy", "betray", "represent", "give away", "stag", "snoop", "rat", "grass", "shop", "tell on", "shit", "snitch", "arrange"]}, {"answer": "stain", "hint": "synonyms for stain", "clues": ["sully", "maculate", "tarnish", "defile", "stain"]}, {"answer": "staining", "hint": "synonyms for staining", "clues": ["sully", "maculate", "tarnish", "defile", "stain"]}, {"answer": "stake", "hint": "synonyms for stake", "clues": ["impale", "gage", "hazard", "jeopardize", "game", "bet on", "punt", "back", "post", "adventure", "stake"]}, {"answer": "stakes", "hint": "synonyms for stakes", "clues": ["impale", "gage", "hazard", "jeopardize", "stake", "game", "bet on", "punt", "back", "adventure", "post"]}, {"answer": "stall", "hint": "synonyms for stall", "clues": ["drag one's heels", "drag one's feet", "conk", "shillyshally", "dilly-dally", "procrastinate", "stall"]}, {"answer": "stalling", "hint": "synonyms for stalling", "clues": ["drag one's heels", "stall", "conk", "procrastinate", "dillydally", "drag one's feet", "shillyshally"]}, {"answer": "stalls", "hint": "synonyms for stalls", "clues": ["drag one's heels", "stall", "conk", "procrastinate", "dillydally", "drag one's feet", "shillyshally"]}, {"answer": "stamp", "hint": "synonyms for stamp", "clues": ["boss", "stereotype", "emboss", "stomp", "stump", "pigeonhole", "stamp"]}, {"answer": "stand", "hint": "synonyms for stand", "clues": ["support", "stomach", "fend", "put up", "stand up", "abide", "bear", "tolerate", "brook", "digest", "remain firm", "place upright", "resist", "endure", "stick out", "suffer", "stand"]}, {"answer": "stargazing", "hint": "synonyms for stargazing", "clues": ["dream", "woolgather", "daydream", "stargaze", "stargazing"]}, {"answer": "start", "hint": "synonyms for start", "clues": ["take up", "initiate", "embark on", "take off", "go", "start out", "protrude", "start up", "set forth", "startle", "set about", "pop", "depart", "come out", "commence", "bug out", "jump", "get going", "begin", "set off", "part", "originate", "pop out", "lead off", "bulge", "get", "get down", "start"]}, {"answer": "startle", "hint": "synonyms for startle", "clues": ["jump", "galvanise", "start", "startle"]}, {"answer": "stash", "hint": "synonyms for stash", "clues": ["lay away", "squirrel away", "cache", "hive up", "hoard", "stash"]}, {"answer": "state", "hint": "synonyms for state", "clues": ["say", "put forward", "express", "submit", "posit", "tell", "state"]}, {"answer": "stations", "hint": "synonyms for stations", "clues": ["post", "station", "send", "place"]}, {"answer": "stay", "hint": "synonyms for stay", "clues": ["stick around", "bide", "quell", "persist", "stay put", "last out", "continue", "remain", "rest", "detain", "appease", "stay on", "delay", "stick", "outride", "ride out", "stay"]}, {"answer": "stays", "hint": "synonyms for stays", "clues": ["quell", "stay put", "continue", "remain", "rest", "abide", "detain", "appease", "delay", "stick around", "stick", "persist", "stay", "stay on", "last out", "outride", "ride out"]}, {"answer": "steer", "hint": "synonyms for steer", "clues": ["maneuver", "direct", "manoeuvre", "head", "channelize", "guide", "point", "steer"]}, {"answer": "steering", "hint": "synonyms for steering", "clues": ["maneuver", "direct", "manoeuvre", "head", "channelize", "steer", "guide", "point"]}, {"answer": "step", "hint": "synonyms for step", "clues": ["ill-use", "ill-treat", "mistreat", "tread", "pace", "maltreat", "abuse", "step"]}, {"answer": "steps", "hint": "synonyms for steps", "clues": ["step", "pace", "maltreat", "abuse", "ill-use", "ill-treat", "mistreat", "tread"]}, {"answer": "stewing", "hint": "synonyms for stewing", "clues": ["grudge", "grizzle", "stew", "brood"]}, {"answer": "stick", "hint": "synonyms for stick", "clues": ["cling", "pose", "dumbfound", "lodge", "adhere", "puzzle", "vex", "gravel", "stupefy", "deposit", "wedge", "bewilder", "stick around", "cleave", "bond", "bind", "stay", "baffle", "stick to", "stay put", "nonplus", "stand by", "hold fast", "stick by", "amaze", "mystify", "perplex", "beat", "cohere", "sting", "flummox", "get", "stick"]}, {"answer": "stiffening", "hint": "synonyms for stiffening", "clues": ["constrain", "tighten", "tighten up", "stiffen"]}, {"answer": "stifle", "hint": "synonyms for stifle", "clues": ["choke", "smother", "suffocate", "strangle", "repress", "muffle", "dampen", "asphyxiate", "stifle"]}, {"answer": "sting", "hint": "synonyms for sting", "clues": ["bite", "stick", "twinge", "burn", "prick", "sting"]}, {"answer": "stir", "hint": "synonyms for stir", "clues": ["shake", "put forward", "excite", "invoke", "stimulate", "agitate", "shake up", "conjure", "conjure up", "bring up", "budge", "touch", "evoke", "raise", "arouse", "call down", "call forth", "shift", "stir"]}, {"answer": "stitching", "hint": "synonyms for stitching", "clues": ["run up", "sew", "sew together", "stitch"]}, {"answer": "stocking", "hint": "synonyms for stocking", "clues": ["sprout", "stockpile", "stock", "buy in", "stock up", "carry"]}, {"answer": "stocks", "hint": "synonyms for stocks", "clues": ["sprout", "stockpile", "stock", "buy in", "stock up", "carry"]}, {"answer": "stomach", "hint": "synonyms for stomach", "clues": ["support", "put up", "abide", "bear", "tolerate", "brook", "digest", "stand", "endure", "stick out", "suffer", "stomach"]}, {"answer": "stool", "hint": "synonyms for stool", "clues": ["defecate", "crap", "make", "ca-ca", "take a shit", "shit", "take a crap", "tiller", "stool"]}, {"answer": "stoop", "hint": "synonyms for stoop", "clues": ["bend", "lower oneself", "crouch", "condescend", "bow", "stoop"]}, {"answer": "stop", "hint": "synonyms for stop", "clues": ["quit", "break", "halt", "kibosh", "turn back", "terminate", "give up", "bar", "block up", "break off", "finish", "intercept", "blockade", "stop over", "block off", "hold on", "block", "end", "discontinue", "cease", "hold back", "contain", "arrest", "lay off", "barricade", "check", "stop"]}, {"answer": "stopes", "hint": "synonyms for stopes", "clues": ["quit", "break", "halt", "kibosh", "turn back", "terminate", "give up", "bar", "block up", "break off", "finish", "intercept", "blockade", "stop over", "block off", "hold on", "block", "end", "discontinue", "stop", "cease", "hold back", "contain", "arrest", "lay off", "barricade", "check"]}, {"answer": "stopping", "hint": "synonyms for stopping", "clues": ["quit", "break", "halt", "kibosh", "turn back", "terminate", "give up", "bar", "block up", "break off", "finish", "intercept", "blockade", "stop over", "block off", "hold on", "block", "end", "discontinue", "stop", "cease", "hold back", "contain", "arrest", "lay off", "barricade", "check", "stopping"]}, {"answer": "stops", "hint": "synonyms for stops", "clues": ["quit", "break", "halt", "kibosh", "turn back", "terminate", "give up", "bar", "block up", "break off", "finish", "intercept", "blockade", "stop over", "block off", "hold on", "block", "end", "discontinue", "stop", "cease", "hold back", "contain", "arrest", "lay off", "barricade", "check"]}, {"answer": "store", "hint": "synonyms for store", "clues": ["hive away", "salt away", "lay in", "put in", "stack away", "stash away", "store"]}, {"answer": "storm", "hint": "synonyms for storm", "clues": ["force", "surprise", "rage", "ramp", "storm"]}, {"answer": "straggle", "hint": "synonyms for straggle", "clues": ["sprawl", "digress", "sidetrack", "depart", "straggle"]}, {"answer": "strain", "hint": "synonyms for strain", "clues": ["stress", "tense up", "puree", "sift", "filter out", "strive", "sieve", "separate out", "deform", "distort", "tense", "reach", "filter", "filtrate", "extend", "try", "strain"]}, {"answer": "strangles", "hint": "synonyms for strangles", "clues": ["throttle", "stifle", "gag", "strangulate", "choke", "cramp", "smother", "suffocate", "strangle", "repress", "muffle", "hamper", "halter"]}, {"answer": "strangling", "hint": "synonyms for strangling", "clues": ["throttle", "stifle", "gag", "strangulate", "choke", "cramp", "smother", "suffocate", "strangle", "repress", "muffle", "hamper", "halter", "strangling"]}, {"answer": "strap", "hint": "synonyms for strap", "clues": ["welt", "lash", "flog", "whip", "lather", "trounce", "strap"]}, {"answer": "stream", "hint": "synonyms for stream", "clues": ["teem", "pelt", "swarm", "rain cats and dogs", "rain buckets", "pullulate", "pour", "well out", "stream"]}, {"answer": "strengthening", "hint": "synonyms for strengthening", "clues": ["tone up", "beef up", "fortify", "tone", "strengthen"]}, {"answer": "stress", "hint": "synonyms for stress", "clues": ["accent", "punctuate", "strain", "try", "emphasise", "accentuate", "stress"]}, {"answer": "stretching", "hint": "synonyms for stretching", "clues": ["stretch", "adulterate", "load", "unfold", "elongate", "dilute", "stretch along", "stretch out", "debase", "extend"]}, {"answer": "strike", "hint": "synonyms for strike", "clues": ["take up", "happen upon", "mint", "chance upon", "affect", "come upon", "strickle", "discover", "attain", "light upon", "collide with", "fall", "impinge on", "come across", "take", "walk out", "move", "hit", "excise", "impress", "expunge", "fall upon", "scratch", "run into", "shine", "come to", "coin", "assume"]}, {"answer": "string", "hint": "synonyms for string", "clues": ["string up", "thread", "string along", "draw", "string"]}, {"answer": "strings", "hint": "synonyms for strings", "clues": ["string up", "string along", "draw", "thread", "string"]}, {"answer": "strip", "hint": "synonyms for strip", "clues": ["denude", "despoil", "uncase", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach", "strip"]}, {"answer": "stripes", "hint": "synonyms for stripes", "clues": ["denude", "stripe", "despoil", "uncase", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach"]}, {"answer": "striping", "hint": "synonyms for striping", "clues": ["denude", "stripe", "despoil", "uncase", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach", "striping"]}, {"answer": "stripping", "hint": "synonyms for stripping", "clues": ["denude", "despoil", "uncase", "strip", "undress", "bare", "deprive", "foray", "pillage", "reave", "disinvest", "unclothe", "ransack", "strip down", "disrobe", "dismantle", "rifle", "peel", "divest", "discase", "plunder", "loot", "clean", "leach", "stripping"]}, {"answer": "striving", "hint": "synonyms for striving", "clues": ["endeavour", "strain", "reach", "strive", "striving"]}, {"answer": "struggle", "hint": "synonyms for struggle", "clues": ["shin", "sputter", "fight", "contend", "clamber", "skin", "shinny", "scramble", "struggle"]}, {"answer": "strut", "hint": "synonyms for strut", "clues": ["sashay", "ruffle", "cock", "tittup", "prance", "swagger", "strut"]}, {"answer": "study", "hint": "synonyms for study", "clues": ["canvas", "take", "contemplate", "read", "consider", "hit the books", "analyse", "meditate", "learn", "examine", "study"]}, {"answer": "studying", "hint": "synonyms for studying", "clues": ["canvas", "take", "contemplate", "read", "consider", "hit the books", "analyse", "study", "meditate", "learn", "examine"]}, {"answer": "stuff", "hint": "synonyms for stuff", "clues": ["ingurgitate", "overeat", "binge", "scarf out", "squeeze", "gourmandize", "overgorge", "shove", "overindulge", "englut", "pig out", "engorge", "block", "choke up", "farce", "lug", "glut", "thrust", "satiate", "gorge", "stuff"]}, {"answer": "stuffing", "hint": "synonyms for stuffing", "clues": ["ingurgitate", "overeat", "binge", "stuff", "scarf out", "squeeze", "gourmandize", "overgorge", "shove", "overindulge", "englut", "pig out", "engorge", "block", "choke up", "farce", "lug", "glut", "thrust", "satiate", "gorge"]}, {"answer": "stumble", "hint": "synonyms for stumble", "clues": ["trip", "trip up", "bumble", "falter", "hit", "slip up", "stumble"]}, {"answer": "stumping", "hint": "synonyms for stumping", "clues": ["stomp", "mix up", "stamp", "stump"]}, {"answer": "stymie", "hint": "synonyms for stymie", "clues": ["blockade", "obstruct", "block", "embarrass", "stymy", "hinder", "stymie"]}, {"answer": "stymy", "hint": "synonyms for stymy", "clues": ["blockade", "obstruct", "stymie", "block", "embarrass", "hinder", "stymy"]}, {"answer": "subbing", "hint": "synonyms for subbing", "clues": ["stand in", "substitute", "fill in", "sub", "subbing"]}, {"answer": "submerging", "hint": "synonyms for submerging", "clues": ["deluge", "inundate", "submerge", "overwhelm", "drown", "submerging"]}, {"answer": "subsiding", "hint": "synonyms for subsiding", "clues": ["sink", "settle", "subside", "lessen", "subsiding"]}, {"answer": "substituting", "hint": "synonyms for substituting", "clues": ["deputize", "substitute", "fill in", "stand in", "step in", "interchange", "sub", "exchange", "replace", "substituting"]}, {"answer": "suck", "hint": "synonyms for suck", "clues": ["sop up", "take up", "suck in", "imbibe", "absorb", "give suck", "breastfeed", "blow", "suckle", "nurse", "fellate", "wet-nurse", "lactate", "go down on", "suck up", "draw", "take in", "soak up", "suck"]}, {"answer": "sucking", "hint": "synonyms for sucking", "clues": ["take up", "breastfeed", "suckle", "nurse", "draw", "take in", "soak up", "sop up", "suck", "suck in", "imbibe", "absorb", "give suck", "wet-nurse", "blow", "fellate", "lactate", "go down on", "suck up"]}, {"answer": "suckling", "hint": "synonyms for suckling", "clues": ["give suck", "suck", "breastfeed", "suckle", "nurse", "wet-nurse", "lactate", "suckling"]}, {"answer": "suit", "hint": "synonyms for suit", "clues": ["become", "fit", "beseem", "accommodate", "befit", "suit"]}, {"answer": "suiting", "hint": "synonyms for suiting", "clues": ["suit", "become", "fit", "beseem", "accommodate", "befit"]}, {"answer": "sully", "hint": "synonyms for sully", "clues": ["maculate", "smear", "defame", "asperse", "defile", "corrupt", "taint", "calumniate", "stain", "slander", "denigrate", "besmirch", "tarnish", "cloud", "sully"]}, {"answer": "sum", "hint": "synonyms for sum", "clues": ["summarise", "total", "sum up", "summate", "add together", "tot", "tally", "tote up", "add up", "add", "sum"]}, {"answer": "summoning", "hint": "synonyms for summoning", "clues": ["mobilise", "come up", "muster up", "cite", "rally", "marshal", "summons", "muster", "summoning"]}, {"answer": "summons", "hint": "synonyms for summons", "clues": ["mobilise", "come up", "muster up", "cite", "rally", "marshal", "muster", "summon"]}, {"answer": "sun", "hint": "synonyms for sun", "clues": ["sunbathe", "insolate", "solarize", "sun"]}, {"answer": "sung", "hint": "synonyms for sung", "clues": ["whistle", "tattle", "peach", "babble out", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing", "sung"]}, {"answer": "supervising", "hint": "synonyms for supervising", "clues": ["monitor", "superintend", "supervise", "oversee", "manage", "supervising"]}, {"answer": "supplanting", "hint": "synonyms for supplanting", "clues": ["supersede", "supervene upon", "supplant", "replace"]}, {"answer": "supply", "hint": "synonyms for supply", "clues": ["ply", "append", "cater", "issue", "add", "furnish", "provide", "render", "supply"]}, {"answer": "supplying", "hint": "synonyms for supplying", "clues": ["ply", "issue", "provide", "render", "append", "supply", "cater", "add", "furnish"]}, {"answer": "support", "hint": "synonyms for support", "clues": ["patronize", "defend", "put up", "abide", "confirm", "hold up", "hold", "endorse", "corroborate", "stand", "plunk for", "fend for", "suffer", "plump for", "underpin", "stomach", "back up", "subscribe", "patronage", "affirm", "keep going", "back", "bear out", "bear", "tolerate", "substantiate", "brook", "digest", "sustain", "endure", "stick out", "support"]}, {"answer": "surcharge", "hint": "synonyms for surcharge", "clues": ["pluck", "fleece", "overcharge", "overload", "plume", "gazump", "rob", "soak", "hook", "surcharge"]}, {"answer": "surfacing", "hint": "synonyms for surfacing", "clues": ["show up", "come out", "come up", "come on", "rise", "surface", "turn up", "rise up", "coat", "surfacing"]}, {"answer": "surfing", "hint": "synonyms for surfing", "clues": ["surfboard", "browse", "channel-surf", "surf"]}, {"answer": "surge", "hint": "synonyms for surge", "clues": ["soar", "scend", "zoom", "soar upwards", "heave", "tide", "soar up", "billow", "surge"]}, {"answer": "surround", "hint": "synonyms for surround", "clues": ["beleaguer", "fence", "palisade", "ring", "besiege", "wall", "smother", "fence in", "skirt", "hem in", "circumvent", "border", "environ", "surround"]}, {"answer": "surroundings", "hint": "synonyms for surroundings", "clues": ["beleaguer", "fence", "palisade", "ring", "besiege", "wall", "smother", "fence in", "skirt", "hem in", "circumvent", "surround", "border", "environ", "surroundings"]}, {"answer": "survey", "hint": "synonyms for survey", "clues": ["go over", "follow", "appraise", "review", "surveil", "survey"]}, {"answer": "surveying", "hint": "synonyms for surveying", "clues": ["go over", "survey", "follow", "appraise", "review", "surveil"]}, {"answer": "swag", "hint": "synonyms for swag", "clues": ["flag", "stagger", "careen", "sag", "keel", "reel", "lurch", "droop"]}, {"answer": "swallow", "hint": "synonyms for swallow", "clues": ["immerse", "bury", "live with", "accept", "get down", "eat up", "swallow up", "unsay", "take back", "withdraw", "swallow"]}, {"answer": "swamp", "hint": "synonyms for swamp", "clues": ["deluge", "drench", "inundate", "flood", "swamp"]}, {"answer": "swan", "hint": "synonyms for swan", "clues": ["avow", "verify", "ramble", "wander", "drift", "roll", "tramp", "cast", "swear", "stray", "range", "aver", "rove", "vagabond", "affirm", "roam", "assert", "swan"]}, {"answer": "swarm", "hint": "synonyms for swarm", "clues": ["teem", "pullulate", "pour", "stream", "swarm"]}, {"answer": "swash", "hint": "synonyms for swash", "clues": ["splash", "blow", "bluster", "vaunt", "boast", "swagger", "spatter", "splosh", "gasconade", "brag", "tout", "shoot a line", "gas", "swash"]}, {"answer": "sway", "hint": "synonyms for sway", "clues": ["shake", "persuade", "swing", "rock", "carry", "sway"]}, {"answer": "swearing", "hint": "synonyms for swearing", "clues": ["cuss", "avow", "verify", "aver", "assert", "swan", "depose", "rely", "affirm", "blaspheme", "bank", "trust", "curse", "swear", "depone", "imprecate"]}, {"answer": "sweep", "hint": "synonyms for sweep", "clues": ["brush", "swing out", "swing", "span", "tangle", "embroil", "cross", "sweep up", "broom", "drag", "sail", "drag in", "traverse", "sweep"]}, {"answer": "swelling", "hint": "synonyms for swelling", "clues": ["intumesce", "well up", "puff up", "swell", "tumefy"]}, {"answer": "swerve", "hint": "synonyms for swerve", "clues": ["trend", "veer", "sheer", "slue", "cut", "curve", "slew", "swerve"]}, {"answer": "swerving", "hint": "synonyms for swerving", "clues": ["trend", "veer", "sheer", "cut", "slew", "swerve", "curve", "slue", "swerving"]}, {"answer": "swig", "hint": "synonyms for swig", "clues": ["quaff", "gulp", "slog", "slug", "swig"]}, {"answer": "swindle", "hint": "synonyms for swindle", "clues": ["con", "gip", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change", "swindle"]}, {"answer": "swing", "hint": "synonyms for swing", "clues": ["dangle", "get around", "sweep", "drop", "sway", "swing over", "swing out", "swing"]}, {"answer": "swipe", "hint": "synonyms for swipe", "clues": ["lift", "abstract", "pilfer", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "purloin", "cabbage", "swipe"]}, {"answer": "swirl", "hint": "synonyms for swirl", "clues": ["whirl", "purl", "eddy", "twiddle", "twirl", "whirlpool", "swirl"]}, {"answer": "switch", "hint": "synonyms for switch", "clues": ["flip", "throw", "swop", "flip-flop", "change", "tack", "swap", "interchange", "alternate", "trade", "switch over", "shift", "change over", "switch"]}, {"answer": "switching", "hint": "synonyms for switching", "clues": ["flip", "throw", "swop", "flip-flop", "switch", "change", "tack", "swap", "interchange", "shift", "alternate", "switch over", "trade", "change over"]}, {"answer": "swot", "hint": "synonyms for swot", "clues": ["bone", "get up", "mug up", "drum", "swot up", "grind away", "bone up", "cram", "swot"]}, {"answer": "symbolising", "hint": "synonyms for symbolising", "clues": ["represent", "symbolise", "stand for", "typify", "symbolising"]}, {"answer": "symbolizing", "hint": "synonyms for symbolizing", "clues": ["represent", "symbolise", "stand for", "typify", "symbolizing"]}, {"answer": "synchronising", "hint": "synonyms for synchronising", "clues": ["synchronize", "contemporise", "sync", "synchronising"]}, {"answer": "synchronizing", "hint": "synonyms for synchronizing", "clues": ["sync", "contemporize", "synchronize", "synchronizing"]}, {"answer": "table", "hint": "synonyms for table", "clues": ["put over", "set back", "put off", "hold over", "tabularize", "tabulate", "postpone", "shelve", "remit", "defer", "prorogue", "table"]}, {"answer": "tack", "hint": "synonyms for tack", "clues": ["flip", "tag on", "hang on", "set up", "flip-flop", "switch", "put together", "baste", "tack together", "interchange", "wear round", "append", "alternate", "tack on", "assemble", "piece", "tack"]}, {"answer": "tacking", "hint": "synonyms for tacking", "clues": ["flip", "tag on", "hang on", "set up", "flip-flop", "switch", "put together", "tack", "tack together", "baste", "interchange", "wear round", "append", "alternate", "tack on", "assemble", "piece"]}, {"answer": "tag", "hint": "synonyms for tag", "clues": ["label", "mark", "tail", "chase after", "go after", "give chase", "dog", "chase", "track", "tag"]}, {"answer": "tail", "hint": "synonyms for tail", "clues": ["bob", "tag", "dock", "chase after", "go after", "give chase", "dog", "chase", "trail", "track"]}, {"answer": "tailing", "hint": "synonyms for tailing", "clues": ["tail", "bob", "tag", "dock", "chase after", "go after", "give chase", "dog", "chase", "track"]}, {"answer": "tailor", "hint": "synonyms for tailor", "clues": ["tailor-make", "sew", "orient", "cut", "tailor"]}, {"answer": "tailoring", "hint": "synonyms for tailoring", "clues": ["tailor-make", "sew", "tailor", "cut", "orient"]}, {"answer": "tails", "hint": "synonyms for tails", "clues": ["tail", "bob", "tag", "dock", "chase after", "go after", "give chase", "dog", "chase", "track"]}, {"answer": "taint", "hint": "synonyms for taint", "clues": ["sully", "infect", "defile", "corrupt", "cloud", "taint"]}, {"answer": "take", "hint": "synonyms for take", "clues": ["take up", "ask", "necessitate", "get hold of", "direct", "deal", "admit", "look at", "accept", "require", "consider", "lead", "train", "take on", "study", "fill", "withdraw", "claim", "need", "shoot", "exact", "hire", "pack", "film", "take away", "read", "conduct", "bring", "contract", "pick out", "ingest", "demand", "engage", "have", "assume", "make", "remove", "strike", "adopt", "carry", "subscribe to", "call for", "lease", "hold", "aim", "charter", "convey", "learn", "take aim", "involve", "acquire", "select", "postulate", "get", "guide", "choose", "rent", "contain", "submit", "consume", "use up", "drive", "occupy", "take"]}, {"answer": "takings", "hint": "synonyms for takings", "clues": ["take up", "ask", "necessitate", "get hold of", "direct", "deal", "admit", "look at", "accept", "require", "consider", "lead", "train", "take on", "study", "fill", "withdraw", "claim", "need", "shoot", "exact", "hire", "pack", "film", "take away", "read", "conduct", "bring", "contract", "pick out", "ingest", "demand", "engage", "have", "assume", "make", "remove", "strike", "adopt", "carry", "subscribe to", "call for", "lease", "hold", "aim", "charter", "convey", "learn", "take aim", "take", "involve", "acquire", "select", "postulate", "get", "guide", "choose", "rent", "contain", "submit", "consume", "use up", "drive", "occupy", "takings"]}, {"answer": "talk", "hint": "synonyms for talk", "clues": ["mouth", "tattle", "blab out", "verbalise", "peach", "let the cat out of the bag", "lecture", "spill", "babble out", "babble", "blab", "spill the beans", "utter", "speak", "sing", "talk"]}, {"answer": "talking", "hint": "synonyms for talking", "clues": ["blab", "mouth", "tattle", "blab out", "verbalise", "peach", "let the cat out of the bag", "lecture", "spill", "babble out", "talk", "babble", "spill the beans", "utter", "speak", "sing"]}, {"answer": "talks", "hint": "synonyms for talks", "clues": ["blab", "mouth", "tattle", "blab out", "verbalise", "peach", "let the cat out of the bag", "lecture", "spill", "babble out", "talk", "babble", "spill the beans", "utter", "speak", "sing"]}, {"answer": "tally", "hint": "synonyms for tally", "clues": ["chalk up", "sum up", "rack up", "add together", "tot", "score", "add up", "gibe", "add", "total", "correspond", "sum", "summate", "fit", "hit", "jibe", "match", "agree", "tote up", "check", "tally"]}, {"answer": "tampering", "hint": "synonyms for tampering", "clues": ["tamper", "fiddle", "monkey", "meddle"]}, {"answer": "tangle", "hint": "synonyms for tangle", "clues": ["ravel", "snarl", "sweep", "embroil", "tousle", "knot", "mat", "sweep up", "entangle", "dishevel", "drag", "drag in"]}, {"answer": "tap", "hint": "synonyms for tap", "clues": ["beg", "rap", "tapdance", "solicit", "exploit", "wiretap", "knock", "pink", "tip", "intercept", "bug", "tap"]}, {"answer": "taping", "hint": "synonyms for taping", "clues": ["beg", "rap", "tapdance", "solicit", "tape", "exploit", "videotape", "wiretap", "knock", "record", "pink", "tip", "intercept", "bug", "taping"]}, {"answer": "tapping", "hint": "synonyms for tapping", "clues": ["beg", "rap", "tapdance", "solicit", "tap", "exploit", "wiretap", "knock", "pink", "tip", "intercept", "bug", "tapping"]}, {"answer": "taps", "hint": "synonyms for taps", "clues": ["beg", "rap", "tapdance", "solicit", "tap", "exploit", "wiretap", "knock", "pink", "tip", "intercept", "bug"]}, {"answer": "target", "hint": "synonyms for target", "clues": ["point", "direct", "aim", "place", "target"]}, {"answer": "tarnish", "hint": "synonyms for tarnish", "clues": ["sully", "maculate", "stain", "defile", "tarnish"]}, {"answer": "taste", "hint": "synonyms for taste", "clues": ["sample", "savor", "smack", "try out", "try", "taste"]}, {"answer": "tasting", "hint": "synonyms for tasting", "clues": ["try out", "sample", "savor", "smack", "taste", "try", "tasting"]}, {"answer": "tattle", "hint": "synonyms for tattle", "clues": ["clack", "palaver", "chatter", "piffle", "babble out", "babble", "twaddle", "talk", "spill the beans", "blab out", "sing", "gabble", "blab", "maunder", "tittle-tattle", "gibber", "peach", "blabber", "prate", "prattle", "let the cat out of the bag", "tattle"]}, {"answer": "taunt", "hint": "synonyms for taunt", "clues": ["cod", "twit", "bait", "ride", "tantalize", "rally", "tease", "rag", "razz", "taunt"]}, {"answer": "tear", "hint": "synonyms for tear", "clues": ["pull", "buck", "snap", "pluck", "shoot", "deplume", "displume", "shoot down", "rupture", "bust", "charge", "tear"]}, {"answer": "tears", "hint": "synonyms for tears", "clues": ["pull", "buck", "snap", "pluck", "shoot", "deplume", "displume", "shoot down", "rupture", "bust", "charge", "tear"]}, {"answer": "tease", "hint": "synonyms for tease", "clues": ["beleaguer", "cod", "loosen", "twit", "bait", "pester", "ride", "tease apart", "card", "fluff", "tantalize", "taunt", "rally", "rag", "razz", "badger", "bug", "tease"]}, {"answer": "telephone", "hint": "synonyms for telephone", "clues": ["phone", "call", "ring", "call up", "telephone"]}, {"answer": "tell", "hint": "synonyms for tell", "clues": ["narrate", "distinguish", "recount", "enjoin", "separate", "order", "assure", "evidence", "differentiate", "severalize", "say", "secern", "secernate", "tell apart", "recite", "state", "tell"]}, {"answer": "temper", "hint": "synonyms for temper", "clues": ["chasten", "anneal", "normalize", "moderate", "harden", "mollify", "season", "temper"]}, {"answer": "tent", "hint": "synonyms for tent", "clues": ["encamp", "camp", "bivouac", "camp out", "tent"]}, {"answer": "tenting", "hint": "synonyms for tenting", "clues": ["camp out", "tent", "encamp", "camp", "bivouac"]}, {"answer": "test", "hint": "synonyms for test", "clues": ["screen", "essay", "prove", "quiz", "try out", "examine", "try", "test"]}, {"answer": "testing", "hint": "synonyms for testing", "clues": ["screen", "prove", "test", "try out", "essay", "quiz", "examine", "try"]}, {"answer": "thaw", "hint": "synonyms for thaw", "clues": ["dethaw", "dissolve", "melt", "unthaw", "unfreeze", "thaw"]}, {"answer": "thawing", "hint": "synonyms for thawing", "clues": ["dethaw", "dissolve", "melt", "unthaw", "unfreeze", "thaw"]}, {"answer": "think", "hint": "synonyms for think", "clues": ["cerebrate", "imagine", "cogitate", "call back", "intend", "suppose", "opine", "consider", "guess", "remember", "recall", "retrieve", "mean", "conceive", "reckon", "believe", "recollect", "call up", "think"]}, {"answer": "thinning", "hint": "synonyms for thinning", "clues": ["lose weight", "reduce", "cut", "slim down", "slenderize", "slim", "dilute", "thin", "thin out", "melt off", "thinning"]}, {"answer": "thirst", "hint": "synonyms for thirst", "clues": ["crave", "hunger", "starve", "lust", "thirst"]}, {"answer": "thought", "hint": "synonyms for thought", "clues": ["cerebrate", "cogitate", "call back", "intend", "think", "suppose", "consider", "mean", "retrieve", "guess", "conceive", "call up", "opine", "remember", "recall", "imagine", "reckon", "believe", "recollect", "thought"]}, {"answer": "thrash", "hint": "synonyms for thrash", "clues": ["bat", "jactitate", "slam dance", "convulse", "drub", "flail", "lick", "toss", "thrash about", "clobber", "lam", "slash", "mosh", "thresh", "cream", "thrash"]}, {"answer": "thrashing", "hint": "synonyms for thrashing", "clues": ["jactitate", "slam dance", "thrash", "flail", "lick", "toss", "slam", "slash", "thresh about", "drub", "thresh", "cream", "bat", "convulse", "clobber", "mosh"]}, {"answer": "thread", "hint": "synonyms for thread", "clues": ["string", "wind", "draw", "wander", "weave", "meander", "thread"]}, {"answer": "threads", "hint": "synonyms for threads", "clues": ["string", "wind", "draw", "wander", "thread", "weave", "meander"]}, {"answer": "threshing", "hint": "synonyms for threshing", "clues": ["jactitate", "convulse", "thrash", "flail", "toss", "lam", "slash", "thresh about", "thresh"]}, {"answer": "thrill", "hint": "synonyms for thrill", "clues": ["exhilarate", "shiver", "beatify", "exalt", "vibrate", "throb", "inebriate", "tickle pink", "shudder", "tickle", "thrill"]}, {"answer": "throb", "hint": "synonyms for throb", "clues": ["thrill", "shiver", "pulse", "pulsate", "shudder", "throb"]}, {"answer": "throng", "hint": "synonyms for throng", "clues": ["pack", "mob", "pile", "jam", "throng"]}, {"answer": "throttle", "hint": "synonyms for throttle", "clues": ["restrain", "restrict", "limit", "strangulate", "choke", "trammel", "confine", "strangle", "bound", "throttle"]}, {"answer": "throttling", "hint": "synonyms for throttling", "clues": ["restrain", "throttle", "restrict", "limit", "strangulate", "choke", "trammel", "confine", "strangle", "bound", "throttling"]}, {"answer": "throw", "hint": "synonyms for throw", "clues": ["throw off", "bemuse", "make", "confuse", "shed", "befuddle", "discombobulate", "cast off", "hurl", "hold", "confound", "drop", "cast", "throw away", "bewilder", "fox", "flip", "have", "shake off", "contrive", "switch", "bedevil", "project", "give", "thrust", "throw"]}, {"answer": "thrum", "hint": "synonyms for thrum", "clues": ["beat", "hum", "drum", "strum", "thrum"]}, {"answer": "thrust", "hint": "synonyms for thrust", "clues": ["throw", "lunge", "pierce", "hurtle", "stuff", "push up", "hurl", "squeeze", "force", "shove", "thrust"]}, {"answer": "thrusting", "hint": "synonyms for thrusting", "clues": ["throw", "lunge", "pierce", "hurtle", "stuff", "thrust", "push up", "hurl", "squeeze", "force", "shove"]}, {"answer": "thumb", "hint": "synonyms for thumb", "clues": ["flip", "flick", "hitch", "leaf", "hitchhike", "riff", "riffle", "finger", "thumb"]}, {"answer": "thump", "hint": "synonyms for thump", "clues": ["thud", "pound", "poke", "beat", "thump"]}, {"answer": "thwart", "hint": "synonyms for thwart", "clues": ["scotch", "spoil", "queer", "cross", "frustrate", "baffle", "bilk", "foil", "thwart"]}, {"answer": "tick", "hint": "synonyms for tick", "clues": ["ticktack", "click", "retick", "mark", "beat", "check off", "mark off", "check", "tick off", "tick"]}, {"answer": "ticking", "hint": "synonyms for ticking", "clues": ["ticktack", "click", "retick", "tick", "mark", "beat", "check off", "mark off", "check", "tick off"]}, {"answer": "tickle", "hint": "synonyms for tickle", "clues": ["thrill", "titillate", "vibrate", "vellicate", "tickle"]}, {"answer": "tie", "hint": "synonyms for tie", "clues": ["attach", "link up", "connect", "splice", "marry", "wed", "bond", "bind", "link", "draw", "tie"]}, {"answer": "tightening", "hint": "synonyms for tightening", "clues": ["constrain", "tighten", "reduce", "tighten up", "stiffen", "fasten"]}, {"answer": "tilt", "hint": "synonyms for tilt", "clues": ["angle", "careen", "pitch", "cant over", "shift", "wobble", "cant", "lean", "tip", "slant", "tilt"]}, {"answer": "tinge", "hint": "synonyms for tinge", "clues": ["color", "distort", "tint", "touch", "tinge"]}, {"answer": "tinker", "hint": "synonyms for tinker", "clues": ["putter", "mess around", "monkey around", "muck around", "fiddle", "potter", "monkey", "muck about", "tinker"]}, {"answer": "tinting", "hint": "synonyms for tinting", "clues": ["tinct", "tinge", "touch", "tinting"]}, {"answer": "tip", "hint": "synonyms for tip", "clues": ["tumble", "topple", "angle", "tip off", "tilt", "tippytoe", "tap", "bung", "fee", "lean", "slant", "tip"]}, {"answer": "tire", "hint": "synonyms for tire", "clues": ["wear", "tire out", "wear down", "jade", "fag", "fag out", "sap", "outwear", "bore", "pall", "exhaust", "wear upon", "wear out", "play out", "fatigue", "run down", "tire"]}, {"answer": "tittle-tattle", "hint": "synonyms for tittle-tattle", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "gibber", "chatter", "piffle", "blabber", "prate", "twaddle", "blab", "tittle-tattle"]}, {"answer": "toady", "hint": "synonyms for toady", "clues": ["kowtow", "suck up", "truckle", "bootlick", "fawn", "toady"]}, {"answer": "toast", "hint": "synonyms for toast", "clues": ["crisp", "drink", "pledge", "salute", "wassail", "crispen", "toast"]}, {"answer": "toasting", "hint": "synonyms for toasting", "clues": ["drink", "pledge", "toast", "salute", "wassail", "crispen", "crisp"]}, {"answer": "togs", "hint": "synonyms for togs", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "toil", "hint": "synonyms for toil", "clues": ["labour", "fag", "drudge", "grind", "travail", "moil", "dig", "toil"]}, {"answer": "tone", "hint": "synonyms for tone", "clues": ["inflect", "chant", "strengthen", "intone", "tone up", "modulate", "tone"]}, {"answer": "toot", "hint": "synonyms for toot", "clues": ["claxon", "beep", "blare", "honk", "toot"]}, {"answer": "tore", "hint": "synonyms for tore", "clues": ["pull", "buck", "snap", "pluck", "shoot", "deplume", "displume", "shoot down", "rupture", "bust", "charge", "tear", "tore"]}, {"answer": "torment", "hint": "synonyms for torment", "clues": ["dun", "crucify", "rack", "bedevil", "frustrate", "rag", "torture", "excruciate", "torment"]}, {"answer": "toss", "hint": "synonyms for toss", "clues": ["jactitate", "dispose", "chuck", "thrash", "pitch", "cast away", "toss out", "chuck out", "slash", "thresh about", "throw away", "thresh", "fling", "cast out", "flip", "sky", "put away", "convulse", "cast aside", "throw out", "discard", "toss away", "toss"]}, {"answer": "tot", "hint": "synonyms for tot", "clues": ["total", "sum", "sum up", "summate", "add together", "tally", "tote up", "add up", "add", "tot"]}, {"answer": "touch", "hint": "synonyms for touch", "clues": ["touch on", "tint", "disturb", "partake", "extend to", "impact", "affect", "equal", "advert", "bear on", "adjoin", "relate", "rival", "allude", "pertain", "have-to doe with", "refer", "match", "meet", "tinge", "reach", "stir", "come to", "contact", "concern", "touch"]}, {"answer": "tout", "hint": "synonyms for tout", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "brag", "shoot a line", "gas", "tout"]}, {"answer": "toy", "hint": "synonyms for toy", "clues": ["play", "fiddle", "flirt", "dally", "diddle", "toy"]}, {"answer": "toying", "hint": "synonyms for toying", "clues": ["play", "toy", "diddle", "fiddle", "flirt", "dally"]}, {"answer": "trace", "hint": "synonyms for trace", "clues": ["hunt", "retrace", "follow", "line", "describe", "delineate", "draw", "hound", "decipher", "trace"]}, {"answer": "tracing", "hint": "synonyms for tracing", "clues": ["hunt", "retrace", "follow", "line", "trace", "describe", "delineate", "draw", "hound", "decipher", "tracing"]}, {"answer": "track", "hint": "synonyms for track", "clues": ["cut through", "cross", "tail", "get across", "tag", "chase after", "go after", "give chase", "dog", "chase", "cut across", "pass over", "cover", "get over", "traverse", "track"]}, {"answer": "tracking", "hint": "synonyms for tracking", "clues": ["cut through", "traverse", "cross", "tail", "get across", "tag", "chase after", "go after", "give chase", "dog", "chase", "cut across", "pass over", "cover", "get over", "track"]}, {"answer": "trade", "hint": "synonyms for trade", "clues": ["trade in", "swop", "deal", "sell", "merchandise", "switch", "swap", "trade"]}, {"answer": "trading", "hint": "synonyms for trading", "clues": ["trade in", "swop", "merchandise", "switch", "deal", "swap", "sell", "trade", "trading"]}, {"answer": "trail", "hint": "synonyms for trail", "clues": ["hang back", "track", "tail", "shack", "train", "drop back", "tag", "chase after", "go after", "give chase", "dog", "chase", "get behind", "drag", "drop behind"]}, {"answer": "trailing", "hint": "synonyms for trailing", "clues": ["hang back", "track", "tail", "shack", "train", "drop back", "tag", "chase after", "go after", "give chase", "dog", "chase", "get behind", "drag", "drop behind", "trailing"]}, {"answer": "train", "hint": "synonyms for train", "clues": ["condition", "take aim", "cultivate", "civilize", "take", "direct", "coach", "rail", "groom", "prepare", "discipline", "educate", "school", "aim", "develop", "check", "train"]}, {"answer": "training", "hint": "synonyms for training", "clues": ["cultivate", "civilize", "direct", "coach", "rail", "prepare", "discipline", "train", "aim", "develop", "condition", "take aim", "take", "groom", "educate", "school", "check"]}, {"answer": "trammel", "hint": "synonyms for trammel", "clues": ["restrain", "throttle", "restrict", "limit", "snare", "confine", "ensnare", "entrap", "bound", "trap", "trammel"]}, {"answer": "tramp", "hint": "synonyms for tramp", "clues": ["ramble", "wander", "drift", "roll", "cast", "pad", "stray", "range", "rove", "swan", "plod", "vagabond", "trudge", "footslog", "roam", "slog", "tramp"]}, {"answer": "trampling", "hint": "synonyms for trampling", "clues": ["tread", "tramp down", "trample", "tread down", "trampling"]}, {"answer": "trance", "hint": "synonyms for trance", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch"]}, {"answer": "transfer", "hint": "synonyms for transfer", "clues": ["remove", "reassign", "transmit", "change", "channelize", "transport", "transpose", "transplant", "channel", "shift", "transfer"]}, {"answer": "transit", "hint": "synonyms for transit", "clues": ["pass across", "pass through", "pass over", "move through", "transit"]}, {"answer": "transmitting", "hint": "synonyms for transmitting", "clues": ["transfer", "beam", "carry", "broadcast", "communicate", "send", "channel", "conduct", "air", "channelize", "transport", "transmit", "impart", "convey", "transmitting"]}, {"answer": "transplanting", "hint": "synonyms for transplanting", "clues": ["transpose", "transfer", "transplant", "graft"]}, {"answer": "transport", "hint": "synonyms for transport", "clues": ["enchant", "transfer", "enthral", "ship", "transmit", "carry", "send", "channelize", "enrapture", "ravish", "channel", "delight", "transport"]}, {"answer": "transpose", "hint": "synonyms for transpose", "clues": ["commute", "counterchange", "transfer", "permute", "transplant", "interchange", "transpose"]}, {"answer": "trap", "hint": "synonyms for trap", "clues": ["immobilise", "ensnare", "entrap", "trammel", "pin down", "snare", "pin", "trap"]}, {"answer": "trapping", "hint": "synonyms for trapping", "clues": ["immobilize", "trammel", "pin down", "snare", "pin", "ensnare", "entrap", "trap", "trapping"]}, {"answer": "trash", "hint": "synonyms for trash", "clues": ["scrap", "tear apart", "junk", "pan", "trash"]}, {"answer": "travail", "hint": "synonyms for travail", "clues": ["labour", "fag", "drudge", "grind", "moil", "toil", "dig", "travail"]}, {"answer": "travel", "hint": "synonyms for travel", "clues": ["go", "locomote", "journey", "trip", "jaunt", "move", "move around", "travel"]}, {"answer": "traveling", "hint": "synonyms for traveling", "clues": ["go", "move", "locomote", "journey", "trip", "jaunt", "travel", "move around"]}, {"answer": "travelling", "hint": "synonyms for travelling", "clues": ["go", "move", "locomote", "journey", "trip", "jaunt", "travel", "move around", "travelling"]}, {"answer": "traverse", "hint": "synonyms for traverse", "clues": ["deny", "cut through", "sweep", "span", "cross", "get across", "cut across", "pass over", "cover", "get over", "track", "traverse"]}, {"answer": "treasure", "hint": "synonyms for treasure", "clues": ["value", "appreciate", "prize", "care for", "hold dear", "cherish", "treasure"]}, {"answer": "treat", "hint": "synonyms for treat", "clues": ["handle", "regale", "process", "deal", "address", "cover", "do by", "care for", "plow", "treat"]}, {"answer": "trench", "hint": "synonyms for trench", "clues": ["entrench", "impinge", "ditch", "encroach"]}, {"answer": "trend", "hint": "synonyms for trend", "clues": ["swerve", "veer", "sheer", "slue", "cut", "curve", "slew", "trend"]}, {"answer": "trespass", "hint": "synonyms for trespass", "clues": ["sin", "transgress", "overstep", "intrude", "take advantage", "trespass"]}, {"answer": "trick", "hint": "synonyms for trick", "clues": ["play tricks", "pull a fast one on", "play a trick on", "play a joke on", "fox", "fob", "flim-flam", "trick"]}, {"answer": "trifle", "hint": "synonyms for trifle", "clues": ["piddle", "wanton", "play", "frivol", "dally", "wanton away", "piddle away", "trifle"]}, {"answer": "trigger", "hint": "synonyms for trigger", "clues": ["trigger off", "set off", "spark", "touch off", "activate", "actuate", "trip", "spark off", "trigger"]}, {"answer": "trimming", "hint": "synonyms for trimming", "clues": ["clip", "reduce", "cut back", "pare", "dress", "snip", "trim", "cut", "shave", "garnish", "prune", "bring down", "cut down", "trim back", "trim down", "crop", "lop", "trimming"]}, {"answer": "trip", "hint": "synonyms for trip", "clues": ["trip up", "trigger off", "trigger", "set off", "trip out", "spark", "touch off", "activate", "actuate", "turn on", "jaunt", "spark off", "travel", "stumble", "trip"]}, {"answer": "triumph", "hint": "synonyms for triumph", "clues": ["prevail", "jubilate", "wallow", "gloat", "exuberate", "rejoice", "crow", "exult", "triumph"]}, {"answer": "trouble", "hint": "synonyms for trouble", "clues": ["cark", "inconvenience", "trouble oneself", "disturb", "unhinge", "put out", "upset", "distract", "bother", "incommode", "discommode", "inconvenience oneself", "pain", "disquiet", "perturb", "disoblige", "disorder", "ail", "trouble"]}, {"answer": "trouncing", "hint": "synonyms for trouncing", "clues": ["chew up", "dress down", "welt", "chew out", "slash", "call on the carpet", "beat out", "whip", "lather", "lambast", "rebuke", "lecture", "strap", "call down", "reprimand", "vanquish", "flog", "jaw", "remonstrate", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "crush", "chide", "beat", "berate", "shell", "trounce", "trouncing"]}, {"answer": "truckle", "hint": "synonyms for truckle", "clues": ["kowtow", "suck up", "toady", "bootlick", "fawn", "truckle"]}, {"answer": "truckling", "hint": "synonyms for truckling", "clues": ["truckle", "fawn", "kowtow", "suck up", "toady", "bootlick", "truckling"]}, {"answer": "trudge", "hint": "synonyms for trudge", "clues": ["tramp", "footslog", "pad", "plod", "slog", "trudge"]}, {"answer": "trump", "hint": "synonyms for trump", "clues": ["trump out", "ruff", "scoop", "outdo", "outflank", "best", "trump"]}, {"answer": "trumping", "hint": "synonyms for trumping", "clues": ["trump out", "trump", "scoop", "ruff", "outdo", "outflank", "best"]}, {"answer": "trust", "hint": "synonyms for trust", "clues": ["intrust", "commit", "believe", "hope", "rely", "bank", "confide", "swear", "desire", "trust"]}, {"answer": "try", "hint": "synonyms for try", "clues": ["stress", "adjudicate", "prove", "hear", "test", "try out", "attempt", "taste", "render", "seek", "essay", "judge", "assay", "strain", "sample", "try on", "examine", "try"]}, {"answer": "tucker", "hint": "synonyms for tucker", "clues": ["exhaust", "tucker out", "wash up", "beat", "tucker"]}, {"answer": "tug", "hint": "synonyms for tug", "clues": ["labour", "tote", "push", "lug", "drive", "tug"]}, {"answer": "tumble", "hint": "synonyms for tumble", "clues": ["get wise", "topple", "twig", "cotton on", "get onto", "catch on", "crumple", "whirl", "get it", "collapse", "tip", "break down", "whirl around", "tumble"]}, {"answer": "tumbling", "hint": "synonyms for tumbling", "clues": ["tumble", "topple", "get wise", "twig", "cotton on", "get onto", "catch on", "crumple", "whirl", "get it", "collapse", "tip", "break down", "whirl around", "tumbling"]}, {"answer": "turn", "hint": "synonyms for turn", "clues": ["grow", "call on", "work", "flex", "change by reversal", "sprain", "reverse", "bend", "deform", "ferment", "wrick", "twist", "plough", "turn over", "change state", "become", "sour", "wrench", "release", "move around", "plow", "turn"]}, {"answer": "turning", "hint": "synonyms for turning", "clues": ["grow", "call on", "work", "flex", "change by reversal", "sprain", "reverse", "deform", "bend", "ferment", "wrick", "twist", "plough", "turn over", "change state", "become", "sour", "wrench", "turn", "release", "move around", "plow"]}, {"answer": "twaddle", "hint": "synonyms for twaddle", "clues": ["gabble", "clack", "maunder", "tattle", "palaver", "prattle", "tittle-tattle", "gibber", "chatter", "piffle", "blabber", "prate", "blab", "twaddle"]}, {"answer": "tweak", "hint": "synonyms for tweak", "clues": ["pluck", "pick off", "fine-tune", "pull off", "tweak"]}, {"answer": "tweet", "hint": "synonyms for tweet", "clues": ["nip", "pinch", "twinge", "twitch", "squeeze", "twirp", "tweet"]}, {"answer": "twiddle", "hint": "synonyms for twiddle", "clues": ["swirl", "fiddle with", "twirl", "whirl", "twiddle"]}, {"answer": "twig", "hint": "synonyms for twig", "clues": ["get wise", "tumble", "get it", "cotton on", "get onto", "catch on", "twig"]}, {"answer": "twine", "hint": "synonyms for twine", "clues": ["intertwine", "entwine", "wrap", "wind", "twist", "roll", "enlace", "distort", "interlace", "lace", "twine"]}, {"answer": "twinge", "hint": "synonyms for twinge", "clues": ["tweet", "nip", "pinch", "sting", "prick", "squeeze", "twitch", "twinge"]}, {"answer": "twinkle", "hint": "synonyms for twinkle", "clues": ["scintillate", "winkle", "flash", "blink", "wink"]}, {"answer": "twins", "hint": "synonyms for twins", "clues": ["duplicate", "parallel", "mate", "couple", "match", "twin", "pair"]}, {"answer": "twirl", "hint": "synonyms for twirl", "clues": ["whirl", "birl", "spin", "swirl", "twiddle", "twirl"]}, {"answer": "twist", "hint": "synonyms for twist", "clues": ["twist around", "flex", "squirm", "deform", "sprain", "bend", "distort", "sophisticate", "writhe", "convolute", "wrick", "wind", "pervert", "wrestle", "worm", "wrench", "turn", "wriggle", "curve", "twine", "twist"]}, {"answer": "twit", "hint": "synonyms for twit", "clues": ["cod", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz", "twit"]}, {"answer": "twitch", "hint": "synonyms for twitch", "clues": ["flip", "squeeze", "tweet", "nip", "pinch", "twinge", "jerk", "twitch"]}, {"answer": "twitching", "hint": "synonyms for twitching", "clues": ["flip", "nip", "pinch", "jerk", "twitch", "squeeze", "tweet", "twinge"]}, {"answer": "tying", "hint": "synonyms for tying", "clues": ["tie", "attach", "link up", "connect", "splice", "marry", "wed", "bond", "bind", "link", "draw", "tying"]}, {"answer": "uncovering", "hint": "synonyms for uncovering", "clues": ["reveal", "bring out", "expose", "uncover", "unveil"]}, {"answer": "undertaking", "hint": "synonyms for undertaking", "clues": ["take in charge", "guarantee", "attempt", "tackle", "set about", "contract", "take on", "undertake", "undertaking"]}, {"answer": "undoing", "hint": "synonyms for undoing", "clues": ["undo", "unwrap", "loosen", "unmake", "untie"]}, {"answer": "undress", "hint": "synonyms for undress", "clues": ["uncase", "strip", "peel", "divest", "discase", "disinvest", "unclothe", "strip down", "disrobe", "undress"]}, {"answer": "unfolding", "hint": "synonyms for unfolding", "clues": ["blossom forth", "stretch", "open", "unfold", "spread", "blossom", "stretch out", "spread out", "blossom out", "extend"]}, {"answer": "uniting", "hint": "synonyms for uniting", "clues": ["unite", "unify", "link up", "connect", "link", "join", "merge", "combine", "uniting"]}, {"answer": "unloading", "hint": "synonyms for unloading", "clues": ["unlade", "offload", "drop", "put down", "drop off", "set down", "unload", "discharge"]}, {"answer": "untangling", "hint": "synonyms for untangling", "clues": ["unscramble", "unpick", "extricate", "unknot", "disencumber", "unravel", "untangle", "disentangle", "untangling"]}, {"answer": "untying", "hint": "synonyms for untying", "clues": ["unlace", "undo", "loosen", "untie", "unbrace", "untying"]}, {"answer": "unveiling", "hint": "synonyms for unveiling", "clues": ["reveal", "bring out", "uncover", "unveil"]}, {"answer": "upgrade", "hint": "synonyms for upgrade", "clues": ["promote", "kick upstairs", "elevate", "advance", "raise", "upgrade"]}, {"answer": "uplift", "hint": "synonyms for uplift", "clues": ["lift up", "elate", "pick up", "intoxicate", "uplift"]}, {"answer": "uplifting", "hint": "synonyms for uplifting", "clues": ["uplift", "elate", "lift up", "pick up", "intoxicate"]}, {"answer": "uprising", "hint": "synonyms for uprising", "clues": ["bristle", "uprise", "go up", "come up", "rise", "turn out", "develop", "get up", "lift", "resurrect", "ascend", "spring up", "originate", "stand up", "move up", "grow", "uprising"]}, {"answer": "urge", "hint": "synonyms for urge", "clues": ["recommend", "barrack", "advocate", "pep up", "exhort", "inspire", "root on", "press", "cheer", "urge on", "urge"]}, {"answer": "urging", "hint": "synonyms for urging", "clues": ["recommend", "urge", "barrack", "advocate", "pep up", "exhort", "inspire", "root on", "press", "cheer", "urge on", "urging"]}, {"answer": "use", "hint": "synonyms for use", "clues": ["utilise", "habituate", "employ", "practice", "expend", "apply", "use"]}, {"answer": "using", "hint": "synonyms for using", "clues": ["employ", "habituate", "utilize", "expend", "practice", "apply", "use", "using"]}, {"answer": "vaccinating", "hint": "synonyms for vaccinating", "clues": ["immunize", "vaccinate", "inoculate", "vaccinating"]}, {"answer": "value", "hint": "synonyms for value", "clues": ["appreciate", "prize", "evaluate", "rate", "prise", "measure", "respect", "treasure", "esteem", "appraise", "assess", "value"]}, {"answer": "values", "hint": "synonyms for values", "clues": ["appreciate", "rate", "evaluate", "prise", "measure", "respect", "value", "treasure", "esteem", "prize", "appraise", "assess"]}, {"answer": "vanishing", "hint": "synonyms for vanishing", "clues": ["disappear", "go away", "fell", "fly", "vanish", "vaporize"]}, {"answer": "vaunt", "hint": "synonyms for vaunt", "clues": ["swash", "blow", "bluster", "boast", "gasconade", "brag", "tout", "shoot a line", "gas", "vaunt"]}, {"answer": "veering", "hint": "synonyms for veering", "clues": ["trend", "veer", "sheer", "cut", "slew", "swerve", "curve", "slue"]}, {"answer": "veil", "hint": "synonyms for veil", "clues": ["obscure", "obliterate", "hide", "blot out", "veil"]}, {"answer": "veiling", "hint": "synonyms for veiling", "clues": ["obscure", "veil", "hide", "blot out", "obliterate"]}, {"answer": "vending", "hint": "synonyms for vending", "clues": ["huckster", "monger", "vend", "pitch", "peddle", "hawk"]}, {"answer": "vent", "hint": "synonyms for vent", "clues": ["ventilate", "air out", "give vent", "air", "vent"]}, {"answer": "venting", "hint": "synonyms for venting", "clues": ["ventilate", "air out", "vent", "give vent", "air"]}, {"answer": "venture", "hint": "synonyms for venture", "clues": ["pretend", "embark", "hazard", "jeopardize", "stake", "guess", "adventure"]}, {"answer": "veto", "hint": "synonyms for veto", "clues": ["disallow", "negative", "nix", "forbid", "proscribe", "prohibit", "blackball", "interdict", "veto"]}, {"answer": "view", "hint": "synonyms for view", "clues": ["regard", "take in", "see", "look at", "consider", "catch", "reckon", "watch", "view"]}, {"answer": "viewing", "hint": "synonyms for viewing", "clues": ["regard", "view", "take in", "see", "look at", "consider", "catch", "reckon", "watch"]}, {"answer": "visit", "hint": "synonyms for visit", "clues": ["impose", "inspect", "chitchat", "call", "confab", "jaw", "chatter", "gossip", "confabulate", "claver", "chew the fat", "natter", "see", "inflict", "chat", "shoot the breeze", "travel to", "bring down", "chaffer", "call in", "visit"]}, {"answer": "visiting", "hint": "synonyms for visiting", "clues": ["impose", "inspect", "chitchat", "call", "confab", "jaw", "visit", "chatter", "gossip", "confabulate", "claver", "chew the fat", "natter", "see", "inflict", "chat", "shoot the breeze", "travel to", "bring down", "chaffer", "call in"]}, {"answer": "vocalizing", "hint": "synonyms for vocalizing", "clues": ["phonate", "vocalise", "vowelise", "enunciate", "sound", "articulate", "voice", "vocalizing"]}, {"answer": "voicing", "hint": "synonyms for voicing", "clues": ["vocalise", "voice", "sound", "voicing"]}, {"answer": "voiding", "hint": "synonyms for voiding", "clues": ["invalidate", "evacuate", "vitiate", "void", "empty", "annul", "quash", "nullify"]}, {"answer": "vomit", "hint": "synonyms for vomit", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "vomit"]}, {"answer": "vomiting", "hint": "synonyms for vomiting", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "spue", "barf", "vomit up", "spew", "sick"]}, {"answer": "wad", "hint": "synonyms for wad", "clues": ["chock up", "pack", "jam", "bundle", "compact", "ram", "jampack", "wad"]}, {"answer": "wadding", "hint": "synonyms for wadding", "clues": ["chock up", "pack", "ram", "wad", "bundle", "compact", "jam", "jampack", "wadding"]}, {"answer": "waddle", "hint": "synonyms for waddle", "clues": ["coggle", "toddle", "dodder", "paddle", "totter", "waddle"]}, {"answer": "wading", "hint": "synonyms for wading", "clues": ["chock up", "pack", "wade", "ram", "bundle", "compact", "jam", "jampack", "wading"]}, {"answer": "wads", "hint": "synonyms for wads", "clues": ["chock up", "pack", "ram", "wad", "bundle", "compact", "jam", "jampack"]}, {"answer": "wail", "hint": "synonyms for wail", "clues": ["roar", "ululate", "yaup", "pule", "mewl", "yawl", "whimper", "howl", "wail"]}, {"answer": "wait", "hint": "synonyms for wait", "clues": ["look", "waitress", "expect", "hold off", "await", "hold back"]}, {"answer": "wake", "hint": "synonyms for wake", "clues": ["come alive", "inflame", "stir up", "rouse", "ignite", "fire up", "awake", "wake up", "heat", "waken"]}, {"answer": "wakening", "hint": "synonyms for wakening", "clues": ["come alive", "rouse", "awake", "wake up", "waken"]}, {"answer": "wall", "hint": "synonyms for wall", "clues": ["surround", "fence", "palisade", "fence in", "wall"]}, {"answer": "wallow", "hint": "synonyms for wallow", "clues": ["welter", "triumph", "rejoice", "billow", "wallow"]}, {"answer": "wangle", "hint": "synonyms for wangle", "clues": ["manipulate", "cook", "misrepresent", "fake", "manage", "falsify", "finagle", "fudge", "wangle"]}, {"answer": "wangling", "hint": "synonyms for wangling", "clues": ["manipulate", "cook", "misrepresent", "fake", "manage", "falsify", "wangle", "finagle", "fudge", "wangling"]}, {"answer": "wank", "hint": "synonyms for wank", "clues": ["jack off", "jerk off", "she-bop", "fuck off", "masturbate", "wank"]}, {"answer": "warble", "hint": "synonyms for warble", "clues": ["descant", "yodel", "quaver", "trill", "warble"]}, {"answer": "warp", "hint": "synonyms for warp", "clues": ["distort", "falsify", "buckle", "garble", "heave", "warp"]}, {"answer": "warping", "hint": "synonyms for warping", "clues": ["distort", "falsify", "warp", "buckle", "garble", "heave"]}, {"answer": "wash", "hint": "synonyms for wash", "clues": ["lave", "moisten", "lap", "launder", "wash out", "rinse", "dampen", "wash off", "wash away", "wash"]}, {"answer": "washing", "hint": "synonyms for washing", "clues": ["lave", "moisten", "lap", "launder", "wash out", "rinse", "wash", "dampen", "wash off", "wash away"]}, {"answer": "wassail", "hint": "synonyms for wassail", "clues": ["drink", "make merry", "racket", "pledge", "toast", "salute", "make whoopie", "jollify", "revel", "whoop it up", "make happy", "wassail"]}, {"answer": "wasting", "hint": "synonyms for wasting", "clues": ["neutralize", "devastate", "ravage", "macerate", "scourge", "languish", "pine away", "blow", "knock off", "emaciate", "lay waste to", "desolate", "rot", "squander", "run off", "ware", "do in", "consume", "waste", "liquidate", "wasting"]}, {"answer": "watch", "hint": "synonyms for watch", "clues": ["view", "watch over", "see", "observe", "follow", "look out", "keep an eye on", "learn", "check", "catch", "look on", "watch out", "determine", "take in", "find out", "ascertain", "watch"]}, {"answer": "watching", "hint": "synonyms for watching", "clues": ["view", "observe", "follow", "look out", "keep an eye on", "catch", "determine", "take in", "learn", "watch", "watch over", "see", "check", "look on", "watch out", "find out", "ascertain"]}, {"answer": "wave", "hint": "synonyms for wave", "clues": ["flourish", "curl", "undulate", "beckon", "brandish", "flap", "roll", "wave"]}, {"answer": "waver", "hint": "synonyms for waver", "clues": ["vacillate", "flicker", "quaver", "flitter", "hesitate", "falter", "fluctuate", "waffle", "quiver", "weave", "waver"]}, {"answer": "waving", "hint": "synonyms for waving", "clues": ["beckon", "curl", "flap", "roll", "flourish", "brandish", "wave", "undulate", "waving"]}, {"answer": "wax", "hint": "synonyms for wax", "clues": ["climb", "rise", "full", "mount", "wax"]}, {"answer": "wear", "hint": "synonyms for wear", "clues": ["break", "tire out", "hold out", "wear down", "jade", "put on", "outwear", "tire", "don", "fall apart", "fag", "fag out", "wear off", "fatigue", "weary", "bear", "wear upon", "wear out", "get into", "bust", "have on", "endure", "wear thin", "assume"]}, {"answer": "weave", "hint": "synonyms for weave", "clues": ["waver", "tissue", "wind", "wander", "thread", "interweave", "meander", "weave"]}, {"answer": "weaving", "hint": "synonyms for weaving", "clues": ["tissue", "wind", "wander", "interweave", "waver", "thread", "weave", "meander", "weaving"]}, {"answer": "wedding", "hint": "synonyms for wedding", "clues": ["tie", "hook up with", "conjoin", "splice", "marry", "wed", "espouse", "get hitched with", "get married", "wedding"]}, {"answer": "wedge", "hint": "synonyms for wedge", "clues": ["squeeze", "deposit", "force", "stick", "lodge", "wedge"]}, {"answer": "weighing", "hint": "synonyms for weighing", "clues": ["consider", "librate", "matter", "press", "count", "weigh"]}, {"answer": "weight", "hint": "synonyms for weight", "clues": ["angle", "burthen", "weight down", "burden", "slant", "weight"]}, {"answer": "weighting", "hint": "synonyms for weighting", "clues": ["angle", "burthen", "weight", "weight down", "burden", "slant"]}, {"answer": "welt", "hint": "synonyms for welt", "clues": ["lash", "flog", "whip", "lather", "strap", "trounce", "welt"]}, {"answer": "wet-nurse", "hint": "synonyms for wet-nurse", "clues": ["give suck", "suck", "breastfeed", "suckle", "nurse", "lactate", "wet-nurse"]}, {"answer": "wheedling", "hint": "synonyms for wheedling", "clues": ["inveigle", "wheedle", "cajole", "sweet-talk", "blarney", "palaver", "coax", "wheedling"]}, {"answer": "wheel", "hint": "synonyms for wheel", "clues": ["bike", "wheel around", "cycle", "roll", "pedal", "bicycle", "wheel"]}, {"answer": "wheeling", "hint": "synonyms for wheeling", "clues": ["cycle", "roll", "pedal", "bicycle", "bike", "wheel", "wheel around"]}, {"answer": "whine", "hint": "synonyms for whine", "clues": ["grizzle", "yammer", "creak", "snivel", "screech", "skreak", "squeak", "yawp", "whine"]}, {"answer": "whip", "hint": "synonyms for whip", "clues": ["lash", "flog", "blister", "lather", "rack up", "scald", "worst", "mop up", "welt", "pip", "strap", "whisk", "trounce", "whip"]}, {"answer": "whir", "hint": "synonyms for whir", "clues": ["birr", "whiz", "whirr", "purr"]}, {"answer": "whirl", "hint": "synonyms for whirl", "clues": ["tumble", "gyrate", "spin around", "twirl", "whirlpool", "eddy", "birl", "spin", "swirl", "twiddle", "purl", "reel", "whirl around", "whirl"]}, {"answer": "whirling", "hint": "synonyms for whirling", "clues": ["tumble", "gyrate", "spin around", "twirl", "whirlpool", "whirl", "eddy", "birl", "spin", "swirl", "twiddle", "purl", "reel", "whirl around"]}, {"answer": "whirlpool", "hint": "synonyms for whirlpool", "clues": ["purl", "eddy", "whirl", "swirl", "whirlpool"]}, {"answer": "whirr", "hint": "synonyms for whirr", "clues": ["birr", "whiz", "purr", "churr", "whir"]}, {"answer": "whiz", "hint": "synonyms for whiz", "clues": ["birr", "whirr", "whizz", "purr"]}, {"answer": "whizz", "hint": "synonyms for whizz", "clues": ["birr", "whiz", "whirr", "whizz along", "zoom along", "zoom", "purr"]}, {"answer": "wideness", "hint": "synonyms for wideness", "clues": ["broaden", "let out", "widen", "extend", "wideness"]}, {"answer": "widening", "hint": "synonyms for widening", "clues": ["broaden", "let out", "widen", "extend"]}, {"answer": "win", "hint": "synonyms for win", "clues": ["gain ground", "acquire", "make headway", "advance", "succeed", "gain", "pull ahead", "come through", "deliver the goods", "bring home the bacon", "get ahead", "win"]}, {"answer": "wince", "hint": "synonyms for wince", "clues": ["flinch", "funk", "recoil", "quail", "squinch", "shrink", "cringe", "wince"]}, {"answer": "wind", "hint": "synonyms for wind", "clues": ["lift", "twine", "wrap", "twist", "wander", "scent", "wreathe", "roll", "hoist", "nose", "wind up", "thread", "curve", "weave", "meander", "wind"]}, {"answer": "wink", "hint": "synonyms for wink", "clues": ["winkle", "nictate", "blink away", "flash", "blink", "wink"]}, {"answer": "winkle", "hint": "synonyms for winkle", "clues": ["scintillate", "flash", "twinkle", "blink", "winkle out", "wink"]}, {"answer": "wiring", "hint": "synonyms for wiring", "clues": ["cable", "telegraph", "wire", "electrify", "wiring"]}, {"answer": "wish", "hint": "synonyms for wish", "clues": ["bid", "like", "wish well", "care", "wish"]}, {"answer": "wishing", "hint": "synonyms for wishing", "clues": ["wish well", "bid", "wish", "like", "care"]}, {"answer": "witch", "hint": "synonyms for witch", "clues": ["enchant", "hex", "glamour", "jinx", "bewitch", "witch"]}, {"answer": "withers", "hint": "synonyms for withers", "clues": ["shrivel", "shrivel up", "fade", "wither", "shrink"]}, {"answer": "withholding", "hint": "synonyms for withholding", "clues": ["recoup", "withhold", "keep back", "deduct"]}, {"answer": "wobble", "hint": "synonyms for wobble", "clues": ["shimmy", "careen", "coggle", "tilt", "shift", "wobble"]}, {"answer": "wonder", "hint": "synonyms for wonder", "clues": ["enquire", "marvel", "question", "wonder"]}, {"answer": "wooing", "hint": "synonyms for wooing", "clues": ["court", "romance", "solicit", "woo"]}, {"answer": "word", "hint": "synonyms for word", "clues": ["articulate", "give voice", "phrase", "formulate", "word"]}, {"answer": "wording", "hint": "synonyms for wording", "clues": ["articulate", "give voice", "phrase", "formulate", "word"]}, {"answer": "words", "hint": "synonyms for words", "clues": ["articulate", "give voice", "phrase", "formulate", "word"]}, {"answer": "work", "hint": "synonyms for work", "clues": ["go", "form", "make", "wreak", "cultivate", "act upon", "process", "exercise", "play", "lick", "mould", "ferment", "work on", "put to work", "run", "influence", "function", "forge", "act", "work out", "exploit", "puzzle out", "bring", "operate", "crop", "knead", "do work", "solve", "sour", "shape", "turn", "figure out", "make for", "work"]}, {"answer": "workings", "hint": "synonyms for workings", "clues": ["go", "form", "make", "wreak", "work", "cultivate", "act upon", "process", "exercise", "play", "lick", "mould", "ferment", "work on", "put to work", "run", "influence", "function", "forge", "act", "work out", "exploit", "puzzle out", "bring", "operate", "crop", "knead", "do work", "solve", "sour", "shape", "turn", "figure out", "make for", "workings"]}, {"answer": "works", "hint": "synonyms for works", "clues": ["go", "form", "make", "wreak", "work", "cultivate", "act upon", "process", "exercise", "play", "lick", "mould", "ferment", "work on", "put to work", "run", "influence", "function", "forge", "act", "work out", "exploit", "puzzle out", "bring", "operate", "crop", "knead", "do work", "solve", "sour", "shape", "turn", "figure out", "make for"]}, {"answer": "worm", "hint": "synonyms for worm", "clues": ["writhe", "twist", "wriggle", "wrestle", "squirm", "worm"]}, {"answer": "worry", "hint": "synonyms for worry", "clues": ["vex", "interest", "concern", "occupy", "care", "worry"]}, {"answer": "worship", "hint": "synonyms for worship", "clues": ["idolise", "hero-worship", "revere", "worship"]}, {"answer": "worsted", "hint": "synonyms for worsted", "clues": ["whip", "pip", "rack up", "worst", "mop up", "worsted"]}, {"answer": "wrap", "hint": "synonyms for wrap", "clues": ["wind", "enclose", "enwrap", "roll", "enfold", "wrap up", "envelop", "twine", "wrap"]}, {"answer": "wrapping", "hint": "synonyms for wrapping", "clues": ["wrap", "wind", "enclose", "enwrap", "roll", "enfold", "wrap up", "envelop", "twine", "wrapping"]}, {"answer": "wrench", "hint": "synonyms for wrench", "clues": ["wrick", "turn", "twist", "wring", "sprain", "wrench"]}, {"answer": "wrestle", "hint": "synonyms for wrestle", "clues": ["writhe", "twist", "wriggle", "squirm", "worm", "wrestle"]}, {"answer": "wrestling", "hint": "synonyms for wrestling", "clues": ["writhe", "twist", "wriggle", "wrestle", "squirm", "worm", "wrestling"]}, {"answer": "wrick", "hint": "synonyms for wrick", "clues": ["wrench", "turn", "twist", "rick", "sprain"]}, {"answer": "wriggle", "hint": "synonyms for wriggle", "clues": ["writhe", "twist", "wrestle", "squirm", "worm", "wriggle"]}, {"answer": "wring", "hint": "synonyms for wring", "clues": ["gouge", "rack", "squeeze", "deform", "distort", "wrench", "extort", "contort", "wring"]}, {"answer": "wrinkle", "hint": "synonyms for wrinkle", "clues": ["scrunch", "rumple", "crinkle", "crisp", "ruckle", "furrow", "purse", "crease", "scrunch up"]}, {"answer": "writing", "hint": "synonyms for writing", "clues": ["drop a line", "write", "compose", "indite", "pen", "publish", "save", "spell", "writing"]}, {"answer": "writings", "hint": "synonyms for writings", "clues": ["drop a line", "write", "compose", "indite", "pen", "publish", "save", "spell", "writings"]}, {"answer": "yack", "hint": "synonyms for yack", "clues": ["rattle on", "jaw", "yack away", "yap away", "yack"]}, {"answer": "yawl", "hint": "synonyms for yawl", "clues": ["roar", "wail", "ululate", "yaup", "howl", "yawl"]}, {"answer": "yearning", "hint": "synonyms for yearning", "clues": ["languish", "pine", "yearn", "long", "hanker", "ache", "yen"]}, {"answer": "yell", "hint": "synonyms for yell", "clues": ["hollo", "call", "scream", "cry", "squall", "shout out", "shout", "holler", "yell"]}, {"answer": "yelling", "hint": "synonyms for yelling", "clues": ["hollo", "yell", "call", "scream", "cry", "squall", "shout out", "shout", "holler"]}, {"answer": "yen", "hint": "synonyms for yen", "clues": ["languish", "yearn", "ache", "pine", "yen"]}, {"answer": "yield", "hint": "synonyms for yield", "clues": ["move over", "concede", "give", "generate", "pay", "grant", "soften", "cede", "succumb", "return", "buckle under", "render", "give in", "relent", "bear", "give way", "ease up", "afford", "yield"]}, {"answer": "yowl", "hint": "synonyms for yowl", "clues": ["caterwaul", "yammer", "howl", "wrawl", "yowl"]}, {"answer": "zap", "hint": "synonyms for zap", "clues": ["micro-cook", "atomise", "nuke", "microwave", "vaporize", "zap"]}, {"answer": "zip", "hint": "synonyms for zip", "clues": ["zip up", "zipper", "hurry", "travel rapidly", "speed", "zip"]}, {"answer": "zoom", "hint": "synonyms for zoom", "clues": ["soar", "whizz along", "zoom along", "soar upwards", "whizz", "surge", "soar up", "zoom"]}, {"answer": "abase", "hint": "synonyms for abase", "clues": ["mortify", "chagrin", "humble", "humiliate", "abase"]}, {"answer": "abate", "hint": "synonyms for abate", "clues": ["slack", "let up", "slack off", "slake", "die away", "abate"]}, {"answer": "abbreviate", "hint": "synonyms for abbreviate", "clues": ["contract", "shorten", "foreshorten", "reduce", "cut", "abridge", "abbreviate"]}, {"answer": "abide", "hint": "synonyms for abide", "clues": ["support", "bide", "stomach", "put up", "stay", "bear", "tolerate", "brook", "digest", "stand", "endure", "stick out", "suffer"]}, {"answer": "abide_by", "hint": "synonyms for abide by", "clues": ["honour", "follow", "observe", "comply", "respect", "abide by"]}, {"answer": "abjure", "hint": "synonyms for abjure", "clues": ["forswear", "recant", "resile", "retract", "abjure"]}, {"answer": "abrade", "hint": "synonyms for abrade", "clues": ["corrade", "rub down", "rub off", "scour", "abrase", "abrade"]}, {"answer": "abrase", "hint": "synonyms for abrase", "clues": ["corrade", "abrade", "rub off", "rub down", "abrase"]}, {"answer": "abridge", "hint": "synonyms for abridge", "clues": ["contract", "abbreviate", "shorten", "foreshorten", "reduce", "cut", "abridge"]}, {"answer": "abscond", "hint": "synonyms for abscond", "clues": ["run off", "absquatulate", "decamp", "bolt", "make off", "go off", "abscond"]}, {"answer": "absorb", "hint": "synonyms for absorb", "clues": ["take up", "engulf", "immerse", "steep", "engross", "draw", "take in", "assimilate", "plunge", "soak up", "sop up", "suck", "imbibe", "take over", "suck up", "ingest", "engage", "occupy", "absorb"]}, {"answer": "absquatulate", "hint": "synonyms for absquatulate", "clues": ["run off", "decamp", "bolt", "go off", "make off", "abscond", "absquatulate"]}, {"answer": "abut", "hint": "synonyms for abut", "clues": ["butt against", "butt on", "edge", "march", "butt", "border", "adjoin", "abut"]}, {"answer": "accede", "hint": "synonyms for accede", "clues": ["acquiesce", "submit", "assent", "enter", "bow", "defer", "give in", "accede"]}, {"answer": "accentuate", "hint": "synonyms for accentuate", "clues": ["accent", "stress", "emphasise", "punctuate", "accentuate"]}, {"answer": "accept", "hint": "synonyms for accept", "clues": ["swallow", "take", "take over", "go for", "admit", "assume", "live with", "bear", "take on", "have", "consent", "accept"]}, {"answer": "accommodate", "hint": "synonyms for accommodate", "clues": ["oblige", "reconcile", "fit", "admit", "conciliate", "lodge", "adapt", "suit", "hold", "accommodate"]}, {"answer": "accompany", "hint": "synonyms for accompany", "clues": ["keep company", "attach to", "play along", "follow", "companion", "company", "come with", "go with"]}, {"answer": "accomplish", "hint": "synonyms for accomplish", "clues": ["fulfill", "action", "carry out", "carry through", "execute", "achieve", "reach", "attain", "accomplish"]}, {"answer": "accost", "hint": "synonyms for accost", "clues": ["come up to", "address", "hook", "solicit", "accost"]}, {"answer": "accumulate", "hint": "synonyms for accumulate", "clues": ["roll up", "amass", "collect", "hoard", "conglomerate", "gather", "compile", "pile up", "cumulate"]}, {"answer": "accurse", "hint": "synonyms for accurse", "clues": ["anathematize", "anathemise", "execrate", "comminate", "accurse"]}, {"answer": "accuse", "hint": "synonyms for accuse", "clues": ["charge", "impeach", "criminate", "accuse"]}, {"answer": "acknowledge", "hint": "synonyms for acknowledge", "clues": ["notice", "recognize", "receipt", "know", "admit", "acknowledge"]}, {"answer": "acquaint", "hint": "synonyms for acquaint", "clues": ["introduce", "present", "familiarise", "acquaint"]}, {"answer": "acquire", "hint": "synonyms for acquire", "clues": ["win", "grow", "take", "adopt", "learn", "evolve", "gain", "take on", "develop", "produce", "get", "assume", "acquire"]}, {"answer": "acquit", "hint": "synonyms for acquit", "clues": ["exonerate", "assoil", "exculpate", "carry", "behave", "conduct", "bear", "comport", "deport", "discharge", "clear", "acquit"]}, {"answer": "activate", "hint": "synonyms for activate", "clues": ["trigger off", "trigger", "aerate", "set off", "spark", "touch off", "actuate", "trip", "spark off", "activate"]}, {"answer": "actuate", "hint": "synonyms for actuate", "clues": ["trigger off", "motivate", "trigger", "move", "set off", "incite", "spark", "touch off", "activate", "propel", "trip", "spark off", "prompt", "actuate"]}, {"answer": "add_together", "hint": "synonyms for add together", "clues": ["total", "sum", "sum up", "summate", "tot", "tally", "tote up", "add up", "add", "add together"]}, {"answer": "add_up", "hint": "synonyms for add up", "clues": ["total", "sum up", "sum", "summate", "add together", "tot", "come", "number", "make sense", "tally", "tote up", "amount", "add", "add up"]}, {"answer": "adhere", "hint": "synonyms for adhere", "clues": ["cling", "stick to", "cleave", "bond", "bind", "stand by", "cohere", "hold fast", "stick by", "stick", "adhere"]}, {"answer": "adjoin", "hint": "synonyms for adjoin", "clues": ["butt on", "abut", "march", "butt", "touch", "butt against", "meet", "edge", "contact", "border", "adjoin"]}, {"answer": "adjourn", "hint": "synonyms for adjourn", "clues": ["break up", "recess", "retire", "withdraw", "adjourn"]}, {"answer": "adjudicate", "hint": "synonyms for adjudicate", "clues": ["resolve", "judge", "decide", "settle", "try", "adjudicate"]}, {"answer": "adjure", "hint": "synonyms for adjure", "clues": ["conjure", "entreat", "beseech", "press", "bid", "adjure"]}, {"answer": "adjust", "hint": "synonyms for adjust", "clues": ["align", "line up", "conform", "aline", "set", "correct", "adapt", "adjust"]}, {"answer": "administer", "hint": "synonyms for administer", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "dish out", "administrate", "administer"]}, {"answer": "admit", "hint": "synonyms for admit", "clues": ["take", "allow in", "let in", "accept", "hold", "allow", "include", "acknowledge", "take on", "accommodate", "intromit", "admit"]}, {"answer": "admonish", "hint": "synonyms for admonish", "clues": ["reprove", "discourage", "caution", "warn", "monish"]}, {"answer": "adopt", "hint": "synonyms for adopt", "clues": ["take up", "take", "take over", "follow", "acquire", "espouse", "dramatize", "sweep up", "take on", "embrace", "borrow", "assume", "adopt"]}, {"answer": "adorn", "hint": "synonyms for adorn", "clues": ["decorate", "embellish", "clothe", "invest", "ornament", "beautify", "deck", "grace", "adorn"]}, {"answer": "adumbrate", "hint": "synonyms for adumbrate", "clues": ["intimate", "outline", "insinuate", "sketch", "adumbrate"]}, {"answer": "advertise", "hint": "synonyms for advertise", "clues": ["advertize", "promote", "publicise", "push"]}, {"answer": "advertize", "hint": "synonyms for advertize", "clues": ["promote", "advertise", "publicise", "push"]}, {"answer": "advise", "hint": "synonyms for advise", "clues": ["send word", "propose", "suggest", "counsel", "apprize", "rede", "give notice", "notify", "advise"]}, {"answer": "aerate", "hint": "synonyms for aerate", "clues": ["activate", "oxygenate", "oxygenise", "air out", "air", "aerate"]}, {"answer": "affirm", "hint": "synonyms for affirm", "clues": ["support", "avow", "verify", "aver", "swan", "confirm", "corroborate", "substantiate", "swear", "sustain", "assert", "affirm"]}, {"answer": "aggrandise", "hint": "synonyms for aggrandise", "clues": ["embellish", "dramatize", "blow up", "aggrandize", "embroider", "lard", "pad"]}, {"answer": "aggrandize", "hint": "synonyms for aggrandize", "clues": ["embellish", "blow up", "dramatize", "aggrandise", "embroider", "lard", "pad"]}, {"answer": "agitate", "hint": "synonyms for agitate", "clues": ["commove", "campaign", "shake", "disturb", "excite", "foment", "vex", "charge up", "charge", "shake up", "push", "rouse", "raise up", "fight", "crusade", "budge", "turn on", "press", "stir", "stir up", "shift", "agitate"]}, {"answer": "agnise", "hint": "synonyms for agnise", "clues": ["agnize", "realise", "recognize", "agnise"]}, {"answer": "agnize", "hint": "synonyms for agnize", "clues": ["realise", "recognize", "agnise", "agnize"]}, {"answer": "agree", "hint": "synonyms for agree", "clues": ["correspond", "consort", "harmonize", "fit", "jibe", "match", "tally", "hold", "concord", "accord", "gibe", "concur", "fit in", "check", "agree"]}, {"answer": "air_out", "hint": "synonyms for air out", "clues": ["ventilate", "vent", "aerate", "air", "air out"]}, {"answer": "align", "hint": "synonyms for align", "clues": ["array", "line up", "adjust", "aline", "ordinate", "align"]}, {"answer": "allay", "hint": "synonyms for allay", "clues": ["still", "ease", "relieve", "assuage", "slake", "quench", "allay"]}, {"answer": "alleviate", "hint": "synonyms for alleviate", "clues": ["palliate", "ease", "relieve", "assuage", "facilitate", "alleviate"]}, {"answer": "allot", "hint": "synonyms for allot", "clues": ["distribute", "lot", "mete out", "deal out", "dole out", "deal", "assign", "dispense", "shell out", "parcel out", "portion", "accord", "administer", "dish out", "grant", "allot"]}, {"answer": "allow", "hint": "synonyms for allow", "clues": ["permit", "let", "allow for", "give up", "provide", "admit", "take into account", "tolerate", "earmark", "set aside", "reserve", "appropriate", "grant", "countenance", "leave", "allow"]}, {"answer": "alter", "hint": "synonyms for alter", "clues": ["castrate", "neuter", "falsify", "spay", "interpolate", "change", "vary", "modify", "alter"]}, {"answer": "altercate", "hint": "synonyms for altercate", "clues": ["argufy", "quarrel", "scrap", "dispute", "altercate"]}, {"answer": "amass", "hint": "synonyms for amass", "clues": ["roll up", "accumulate", "collect", "hoard", "conglomerate", "gather", "compile", "pile up", "amass"]}, {"answer": "amaze", "hint": "synonyms for amaze", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "mystify", "astonish", "perplex", "beat", "baffle", "astound", "flummox", "get", "amaze"]}, {"answer": "ameliorate", "hint": "synonyms for ameliorate", "clues": ["improve", "amend", "better", "meliorate"]}, {"answer": "amend", "hint": "synonyms for amend", "clues": ["improve", "rectify", "better", "remedy", "repair", "remediate", "ameliorate", "amend"]}, {"answer": "amplify", "hint": "synonyms for amplify", "clues": ["magnify", "hyperbolize", "overstate", "inflate", "expand", "blow up", "overdraw", "exaggerate", "amplify"]}, {"answer": "analyse", "hint": "synonyms for analyse", "clues": ["canvas", "dissect", "psychoanalyze", "study", "take apart", "break down", "examine", "analyze"]}, {"answer": "analyze", "hint": "synonyms for analyze", "clues": ["canvas", "dissect", "psychoanalyze", "analyse", "study", "break down", "examine", "take apart"]}, {"answer": "anathematise", "hint": "synonyms for anathematise", "clues": ["anathematize", "anathemise", "accurse", "execrate", "comminate"]}, {"answer": "anathematize", "hint": "synonyms for anathematize", "clues": ["anathemise", "accurse", "execrate", "comminate", "anathematize"]}, {"answer": "anathemise", "hint": "synonyms for anathemise", "clues": ["anathematize", "accurse", "damn", "beshrew", "comminate", "maledict", "curse", "execrate", "bedamn", "imprecate", "anathemise"]}, {"answer": "anathemize", "hint": "synonyms for anathemize", "clues": ["anathematize", "accurse", "damn", "beshrew", "comminate", "maledict", "anathemise", "curse", "execrate", "bedamn", "imprecate"]}, {"answer": "anele", "hint": "synonyms for anele", "clues": ["oil", "embrocate", "inunct", "anoint", "anele"]}, {"answer": "animadvert", "hint": "synonyms for animadvert", "clues": ["speak out", "sound off", "speak up", "opine", "animadvert"]}, {"answer": "annihilate", "hint": "synonyms for annihilate", "clues": ["extinguish", "eliminate", "wipe out", "carry off", "decimate", "eradicate", "annihilate"]}, {"answer": "announce", "hint": "synonyms for announce", "clues": ["foretell", "harbinger", "denote", "herald", "annunciate", "declare", "announce"]}, {"answer": "annoy", "hint": "synonyms for annoy", "clues": ["nark", "chafe", "devil", "rile", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "annoy"]}, {"answer": "annul", "hint": "synonyms for annul", "clues": ["invalidate", "lift", "countermand", "repeal", "revoke", "reverse", "void", "vacate", "rescind", "quash", "nullify", "overturn", "annul"]}, {"answer": "annunciate", "hint": "synonyms for annunciate", "clues": ["herald", "foretell", "announce", "harbinger", "annunciate"]}, {"answer": "anoint", "hint": "synonyms for anoint", "clues": ["oil", "anele", "inunct", "embrocate", "anoint"]}, {"answer": "antecede", "hint": "synonyms for antecede", "clues": ["forego", "predate", "antedate", "precede", "antecede"]}, {"answer": "antedate", "hint": "synonyms for antedate", "clues": ["forego", "foredate", "predate", "antecede", "precede", "antedate"]}, {"answer": "anticipate", "hint": "synonyms for anticipate", "clues": ["foretell", "call", "promise", "forebode", "look to", "forestall", "prognosticate", "look for", "counter", "previse", "foresee", "expect", "predict", "foreknow", "anticipate"]}, {"answer": "apologise", "hint": "synonyms for apologise", "clues": ["rationalise", "excuse", "justify", "apologize"]}, {"answer": "apologize", "hint": "synonyms for apologize", "clues": ["rationalise", "excuse", "justify", "apologise"]}, {"answer": "appal", "hint": "synonyms for appal", "clues": ["offend", "dismay", "shock", "appall", "scandalize", "horrify", "alarm", "outrage"]}, {"answer": "appall", "hint": "synonyms for appall", "clues": ["offend", "dismay", "shock", "scandalize", "horrify", "alarm", "appal", "outrage"]}, {"answer": "appear", "hint": "synonyms for appear", "clues": ["look", "come along", "seem", "come out", "appear"]}, {"answer": "appease", "hint": "synonyms for appease", "clues": ["quell", "lenify", "placate", "propitiate", "assuage", "conciliate", "mollify", "pacify", "stay", "gruntle", "gentle", "appease"]}, {"answer": "append", "hint": "synonyms for append", "clues": ["tag on", "hang on", "add on", "supply", "tack", "supplement", "add", "affix", "tack on", "append"]}, {"answer": "apply", "hint": "synonyms for apply", "clues": ["employ", "go for", "lend oneself", "utilize", "implement", "give", "hold", "enforce", "practice", "put on", "use", "apply"]}, {"answer": "appoint", "hint": "synonyms for appoint", "clues": ["nominate", "name", "charge", "constitute", "appoint"]}, {"answer": "apportion", "hint": "synonyms for apportion", "clues": ["allocate", "portion out", "deal", "divvy up", "share", "apportion"]}, {"answer": "appraise", "hint": "synonyms for appraise", "clues": ["value", "survey", "evaluate", "assess", "measure", "appraise"]}, {"answer": "appreciate", "hint": "synonyms for appreciate", "clues": ["take account", "treasure", "value", "revalue", "apprize", "prize", "appreciate"]}, {"answer": "apprehend", "hint": "synonyms for apprehend", "clues": ["nab", "grok", "collar", "comprehend", "grasp", "get the picture", "pick up", "quail at", "arrest", "savvy", "compass", "cop", "nail", "dig", "apprehend"]}, {"answer": "apprise", "hint": "synonyms for apprise", "clues": ["send word", "appreciate", "instruct", "advise", "apprize", "revalue", "give notice", "notify"]}, {"answer": "apprize", "hint": "synonyms for apprize", "clues": ["send word", "appreciate", "instruct", "advise", "apprise", "revalue", "give notice", "notify"]}, {"answer": "arbitrate", "hint": "synonyms for arbitrate", "clues": ["mediate", "intercede", "intermediate", "liaise", "arbitrate"]}, {"answer": "argue", "hint": "synonyms for argue", "clues": ["indicate", "fence", "contend", "reason", "debate", "argue"]}, {"answer": "argufy", "hint": "synonyms for argufy", "clues": ["scrap", "altercate", "quarrel", "dispute", "argufy"]}, {"answer": "arise", "hint": "synonyms for arise", "clues": ["uprise", "go up", "come up", "rise", "turn out", "develop", "get up", "lift", "spring up", "originate", "stand up", "bob up", "rebel", "move up", "rise up", "grow"]}, {"answer": "arouse", "hint": "synonyms for arouse", "clues": ["put forward", "energize", "fire", "invoke", "excite", "kindle", "stimulate", "wind up", "awake", "perk up", "wake up", "come alive", "conjure", "conjure up", "bring up", "brace", "rouse", "provoke", "raise", "evoke", "turn on", "sex", "stir", "call down", "elicit", "waken", "call forth"]}, {"answer": "arrange", "hint": "synonyms for arrange", "clues": ["do", "coif", "fix up", "coiffure", "set up", "set", "put", "format", "order", "dress", "stage", "arrange"]}, {"answer": "arrive", "hint": "synonyms for arrive", "clues": ["make it", "come", "get in", "get", "go far", "arrive"]}, {"answer": "arrive_at", "hint": "synonyms for arrive at", "clues": ["gain", "make", "reach", "attain", "hit", "arrive at"]}, {"answer": "arrogate", "hint": "synonyms for arrogate", "clues": ["claim", "take over", "lay claim", "seize", "usurp", "assign", "assume", "arrogate"]}, {"answer": "arse_about", "hint": "synonyms for arse about", "clues": ["bum", "lounge around", "lounge about", "fuck off", "waste one's time", "bum around", "loaf", "loll around", "arse around", "loll", "bum about", "frig around", "arse about"]}, {"answer": "arse_around", "hint": "synonyms for arse around", "clues": ["bum", "arse about", "lounge about", "lounge around", "fuck off", "waste one's time", "fool around", "bum around", "loaf", "loll around", "horse around", "fool", "loll", "bum about", "frig around"]}, {"answer": "ascend", "hint": "synonyms for ascend", "clues": ["rise", "climb up", "uprise", "move up", "go up", "come up", "ascend"]}, {"answer": "ascertain", "hint": "synonyms for ascertain", "clues": ["insure", "control", "ensure", "see", "see to it", "learn", "assure", "find", "determine", "find out", "check", "watch", "ascertain"]}, {"answer": "ask", "hint": "synonyms for ask", "clues": ["enquire", "necessitate", "need", "involve", "take", "postulate", "call for", "demand", "expect", "ask"]}, {"answer": "asperse", "hint": "synonyms for asperse", "clues": ["sully", "smear", "defame", "calumniate", "slander", "denigrate", "besmirch", "asperse"]}, {"answer": "asphyxiate", "hint": "synonyms for asphyxiate", "clues": ["stifle", "choke", "smother", "suffocate", "asphyxiate"]}, {"answer": "assail", "hint": "synonyms for assail", "clues": ["assault", "attack", "set on", "round", "lash out", "snipe", "assail"]}, {"answer": "assemble", "hint": "synonyms for assemble", "clues": ["forgather", "set up", "get together", "put together", "tack", "tack together", "gather", "meet", "piece", "assemble"]}, {"answer": "assert", "hint": "synonyms for assert", "clues": ["avow", "verify", "aver", "put forward", "swan", "maintain", "asseverate", "affirm", "insist", "swear", "assert"]}, {"answer": "assess", "hint": "synonyms for assess", "clues": ["value", "tax", "evaluate", "appraise", "measure", "assess"]}, {"answer": "assign", "hint": "synonyms for assign", "clues": ["depute", "allot", "specify", "set apart", "arrogate", "delegate", "designate", "put", "portion", "impute", "attribute", "ascribe", "assign"]}, {"answer": "assimilate", "hint": "synonyms for assimilate", "clues": ["take in", "imbibe", "absorb", "ingest", "assimilate"]}, {"answer": "assoil", "hint": "synonyms for assoil", "clues": ["exonerate", "acquit", "exculpate", "discharge", "clear", "assoil"]}, {"answer": "assort", "hint": "synonyms for assort", "clues": ["sort", "sort out", "consort", "separate", "class", "associate", "classify", "affiliate", "assort"]}, {"answer": "assuage", "hint": "synonyms for assuage", "clues": ["lenify", "placate", "allay", "conciliate", "mollify", "appease", "pacify", "alleviate", "gruntle", "palliate", "relieve", "gentle", "slake", "quench", "assuage"]}, {"answer": "assume", "hint": "synonyms for assume", "clues": ["take up", "wear", "strike", "adopt", "arrogate", "feign", "accept", "don", "sham", "take on", "usurp", "take", "take over", "take for granted", "acquire", "seize", "simulate", "presume", "bear", "get into", "put on", "assume"]}, {"answer": "assure", "hint": "synonyms for assure", "clues": ["insure", "ascertain", "secure", "ensure", "control", "see", "see to it", "promise", "guarantee", "tell", "check", "reassure"]}, {"answer": "atone", "hint": "synonyms for atone", "clues": ["abye", "expiate", "repent", "atone"]}, {"answer": "attach", "hint": "synonyms for attach", "clues": ["tie", "confiscate", "sequester", "impound", "seize", "bond", "bind", "attach"]}, {"answer": "attach_to", "hint": "synonyms for attach to", "clues": ["inhere in", "come with", "accompany", "go with", "attach to"]}, {"answer": "attain", "hint": "synonyms for attain", "clues": ["come across", "happen upon", "make", "strike", "arrive at", "hit", "chance upon", "come upon", "fall upon", "achieve", "accomplish", "reach", "discover", "gain", "light upon", "attain"]}, {"answer": "attaint", "hint": "synonyms for attaint", "clues": ["shame", "dishonour", "disgrace", "attaint"]}, {"answer": "attend", "hint": "synonyms for attend", "clues": ["look", "see", "serve", "wait on", "give ear", "attend to", "take care", "assist", "hang", "advert", "go to", "pay heed", "attend"]}, {"answer": "attend_to", "hint": "synonyms for attend to", "clues": ["assist", "wait on", "serve", "take to heart", "attend", "attend to"]}, {"answer": "attest", "hint": "synonyms for attest", "clues": ["certify", "bear witness", "manifest", "demonstrate", "take the stand", "testify", "evidence", "attest"]}, {"answer": "attract", "hint": "synonyms for attract", "clues": ["draw in", "pull", "appeal", "draw", "pull in", "attract"]}, {"answer": "auspicate", "hint": "synonyms for auspicate", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "forecast", "betoken", "foreshadow", "predict", "auspicate"]}, {"answer": "authorise", "hint": "synonyms for authorise", "clues": ["empower", "pass", "authorize", "clear"]}, {"answer": "authorize", "hint": "synonyms for authorize", "clues": ["pass", "empower", "authorise", "clear"]}, {"answer": "aver", "hint": "synonyms for aver", "clues": ["avow", "verify", "swan", "affirm", "say", "swear", "assert", "allege", "aver"]}, {"answer": "avert", "hint": "synonyms for avert", "clues": ["fend off", "obviate", "turn away", "head off", "debar", "forefend", "ward off", "stave off", "avoid", "deflect", "avert"]}, {"answer": "avoid", "hint": "synonyms for avoid", "clues": ["fend off", "obviate", "invalidate", "avert", "head off", "debar", "forefend", "void", "ward off", "keep off", "stave off", "quash", "annul", "nullify", "deflect"]}, {"answer": "avow", "hint": "synonyms for avow", "clues": ["verify", "avouch", "aver", "swan", "swear", "assert", "affirm", "avow"]}, {"answer": "awaken", "hint": "synonyms for awaken", "clues": ["come alive", "rouse", "awake", "wake up", "waken"]}, {"answer": "babble_out", "hint": "synonyms for babble out", "clues": ["tattle", "peach", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing", "babble out"]}, {"answer": "back_away", "hint": "synonyms for back away", "clues": ["back out", "retreat", "crawfish out", "pull in one's horns", "pull back", "crawfish", "withdraw", "back away"]}, {"answer": "back_down", "hint": "synonyms for back down", "clues": ["bow out", "chicken out", "back off", "back up", "pull out", "back down"]}, {"answer": "back_off", "hint": "synonyms for back off", "clues": ["bow out", "chicken out", "back down", "back up", "pull out", "back off"]}, {"answer": "back_out", "hint": "synonyms for back out", "clues": ["retreat", "back away", "crawfish out", "pull in one's horns", "pull back", "crawfish", "withdraw", "back out"]}, {"answer": "back_up", "hint": "synonyms for back up", "clues": ["support", "congest", "clog up", "choke", "back down", "back off", "foul", "back", "clog", "choke off", "back up"]}, {"answer": "ball_over", "hint": "synonyms for ball over", "clues": ["shock", "blow out of the water", "take aback", "floor", "ball over"]}, {"answer": "ball_up", "hint": "synonyms for ball up", "clues": ["fuck up", "louse up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "ball up"]}, {"answer": "ballyrag", "hint": "synonyms for ballyrag", "clues": ["push around", "hector", "browbeat", "bully", "boss around", "strong-arm", "bullyrag"]}, {"answer": "bamboozle", "hint": "synonyms for bamboozle", "clues": ["lead by the nose", "hoodwink", "pull the wool over someone's eyes", "snow", "play false", "bamboozle"]}, {"answer": "bang_up", "hint": "synonyms for bang up", "clues": ["impregnate", "smash up", "knock up", "prang up", "smash", "bang up"]}, {"answer": "banish", "hint": "synonyms for banish", "clues": ["relegate", "ostracize", "ban", "bar", "blackball", "shun", "cast out", "banish"]}, {"answer": "barge_in", "hint": "synonyms for barge in", "clues": ["gate-crash", "put in", "cut in", "butt in", "chime in", "break in", "crash", "chisel in", "barge in"]}, {"answer": "bask", "hint": "synonyms for bask", "clues": ["savor", "relish", "enjoy", "bask"]}, {"answer": "bawl_out", "hint": "synonyms for bawl out", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "bawl out"]}, {"answer": "be_amiss", "hint": "synonyms for be amiss", "clues": ["misconceive", "misinterpret", "misapprehend", "misconstrue", "misunderstand", "be amiss"]}, {"answer": "be_given", "hint": "synonyms for be given", "clues": ["incline", "lean", "run", "tend", "be given"]}, {"answer": "be_intimate", "hint": "synonyms for be intimate", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "be intimate"]}, {"answer": "be_on_the_ball", "hint": "synonyms for be on the ball", "clues": ["know what's going on", "know the score", "be with it", "know what's what", "be on the ball"]}, {"answer": "be_quiet", "hint": "synonyms for be quiet", "clues": ["close up", "belt up", "shut up", "clam up", "button up", "keep mum", "dummy up", "be quiet"]}, {"answer": "be_sick", "hint": "synonyms for be sick", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "be sick"]}, {"answer": "be_with_it", "hint": "synonyms for be with it", "clues": ["know what's going on", "be on the ball", "know the score", "know what's what", "be with it"]}, {"answer": "bear_away", "hint": "synonyms for bear away", "clues": ["carry off", "carry away", "bear off", "take away", "bear away"]}, {"answer": "bear_down", "hint": "synonyms for bear down", "clues": ["drag down", "overbear", "bear down on", "charge", "press down on", "weigh down"]}, {"answer": "bear_down_on", "hint": "synonyms for bear down on", "clues": ["bear down upon", "drag down", "bear down", "press down on", "weigh down"]}, {"answer": "bear_off", "hint": "synonyms for bear off", "clues": ["carry off", "carry away", "bear away", "take away", "bear off"]}, {"answer": "bear_on", "hint": "synonyms for bear on", "clues": ["touch on", "bear upon", "push", "pertain", "have-to doe with", "impact", "affect", "touch", "continue", "uphold", "carry on", "come to", "refer", "concern", "preserve", "relate"]}, {"answer": "bear_upon", "hint": "synonyms for bear upon", "clues": ["touch on", "bear on", "impact", "affect", "touch"]}, {"answer": "bear_witness", "hint": "synonyms for bear witness", "clues": ["prove", "show", "take the stand", "testify", "evidence", "attest", "bear witness"]}, {"answer": "beat_around_the_bush", "hint": "synonyms for beat around the bush", "clues": ["palter", "prevaricate", "equivocate", "tergiversate", "beat around the bush"]}, {"answer": "beat_back", "hint": "synonyms for beat back", "clues": ["drive", "push back", "repel", "repulse", "force back", "beat back"]}, {"answer": "beat_out", "hint": "synonyms for beat out", "clues": ["vanquish", "tap out", "crush", "shell", "thump out", "trounce", "beat", "beat out"]}, {"answer": "beat_up", "hint": "synonyms for beat up", "clues": ["drum up", "rally", "work over", "beat", "beat up"]}, {"answer": "beatify", "hint": "synonyms for beatify", "clues": ["thrill", "exhilarate", "tickle pink", "inebriate", "exalt", "beatify"]}, {"answer": "beautify", "hint": "synonyms for beautify", "clues": ["embellish", "decorate", "ornament", "prettify", "adorn", "deck", "fancify", "grace", "beautify"]}, {"answer": "becharm", "hint": "synonyms for becharm", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "enamour", "charm", "bewitch", "becharm"]}, {"answer": "becloud", "hint": "synonyms for becloud", "clues": ["obscure", "obnubilate", "fog", "haze over", "befog", "mist", "cloud", "becloud"]}, {"answer": "become", "hint": "synonyms for become", "clues": ["suit", "go", "turn", "get", "become"]}, {"answer": "bedamn", "hint": "synonyms for bedamn", "clues": ["anathemise", "curse", "damn", "beshrew", "maledict", "imprecate", "bedamn"]}, {"answer": "bedevil", "hint": "synonyms for bedevil", "clues": ["throw", "dun", "befuddle", "confuse", "crucify", "discombobulate", "torment", "frustrate", "confound", "rag", "fox", "bedevil"]}, {"answer": "beetle_off", "hint": "synonyms for beetle off", "clues": ["run off", "bolt", "bolt out", "run out", "beetle off"]}, {"answer": "befog", "hint": "synonyms for befog", "clues": ["obscure", "obnubilate", "fog", "haze over", "mist", "cloud", "becloud", "befog"]}, {"answer": "befool", "hint": "synonyms for befool", "clues": ["put one across", "cod", "slang", "put one over", "gull", "fool", "dupe", "take in", "put on", "befool"]}, {"answer": "befuddle", "hint": "synonyms for befuddle", "clues": ["throw", "confuse", "confound", "discombobulate", "fuddle", "fox", "bedevil"]}, {"answer": "beg", "hint": "synonyms for beg", "clues": ["implore", "tap", "solicit", "pray", "beg"]}, {"answer": "beget", "hint": "synonyms for beget", "clues": ["engender", "father", "mother", "generate", "bring forth", "get", "sire", "beget"]}, {"answer": "begrime", "hint": "synonyms for begrime", "clues": ["soil", "colly", "grime", "bemire", "dirty", "begrime"]}, {"answer": "beguile", "hint": "synonyms for beguile", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "enamour", "catch", "hoodwink", "becharm", "bewitch", "charm", "juggle", "beguile"]}, {"answer": "behave", "hint": "synonyms for behave", "clues": ["do", "act", "carry", "conduct", "bear", "acquit", "comport", "deport", "behave"]}, {"answer": "beleaguer", "hint": "synonyms for beleaguer", "clues": ["besiege", "pester", "tease", "hem in", "circumvent", "surround", "badger", "bug", "beleaguer"]}, {"answer": "believe", "hint": "synonyms for believe", "clues": ["consider", "think", "trust", "conceive", "believe"]}, {"answer": "belittle", "hint": "synonyms for belittle", "clues": ["diminish", "minimize", "denigrate", "pick at", "disparage", "derogate", "belittle"]}, {"answer": "belt_along", "hint": "synonyms for belt along", "clues": ["step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "hasten"]}, {"answer": "belt_down", "hint": "synonyms for belt down", "clues": ["drink down", "down", "toss off", "bolt down", "pop", "pour down", "kill"]}, {"answer": "belt_up", "hint": "synonyms for belt up", "clues": ["close up", "be quiet", "shut up", "clam up", "button up", "keep mum", "dummy up", "belt up"]}, {"answer": "bemire", "hint": "synonyms for bemire", "clues": ["soil", "colly", "grime", "begrime", "dirty", "bemire"]}, {"answer": "berate", "hint": "synonyms for berate", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "call down", "reprimand", "trounce", "berate"]}, {"answer": "beseech", "hint": "synonyms for beseech", "clues": ["conjure", "entreat", "press", "adjure", "bid", "beseech"]}, {"answer": "beset", "hint": "synonyms for beset", "clues": ["chevvy", "chivvy", "encrust", "harass", "provoke", "set upon", "molest", "harry", "hassle", "plague", "beset"]}, {"answer": "beshrew", "hint": "synonyms for beshrew", "clues": ["bedamn", "anathemise", "curse", "damn", "maledict", "imprecate", "beshrew"]}, {"answer": "besiege", "hint": "synonyms for besiege", "clues": ["hem in", "beleaguer", "surround", "circumvent", "besiege"]}, {"answer": "besmirch", "hint": "synonyms for besmirch", "clues": ["sully", "smear", "defame", "asperse", "calumniate", "slander", "denigrate", "smirch"]}, {"answer": "bespeak", "hint": "synonyms for bespeak", "clues": ["call for", "indicate", "quest", "betoken", "point", "signal", "request", "bespeak"]}, {"answer": "bestir_oneself", "hint": "synonyms for bestir oneself", "clues": ["get going", "get rolling", "get started", "get weaving", "get cracking", "get moving", "bestir oneself"]}, {"answer": "bestow", "hint": "synonyms for bestow", "clues": ["bring", "impart", "lend", "contribute", "add", "confer", "bestow"]}, {"answer": "bestride", "hint": "synonyms for bestride", "clues": ["mount up", "jump on", "get on", "hop on", "climb on", "mount", "bestride"]}, {"answer": "bet_on", "hint": "synonyms for bet on", "clues": ["punt", "back", "gage", "game", "stake", "bet on"]}, {"answer": "betoken", "hint": "synonyms for betoken", "clues": ["omen", "foretell", "augur", "prefigure", "indicate", "forecast", "foreshadow", "point", "predict", "bode", "bespeak", "prognosticate", "portend", "presage", "auspicate", "signal", "betoken"]}, {"answer": "betray", "hint": "synonyms for betray", "clues": ["denounce", "bewray", "cheat on", "wander", "grass", "cheat", "shop", "deceive", "shit", "tell on", "give away", "cuckold", "stag", "snitch", "lead astray", "rat", "sell", "fail", "betray"]}, {"answer": "bewilder", "hint": "synonyms for bewilder", "clues": ["mystify", "pose", "bemuse", "throw", "nonplus", "dumbfound", "discombobulate", "get", "perplex", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "flummox", "stick", "amaze", "bewilder"]}, {"answer": "bewitch", "hint": "synonyms for bewitch", "clues": ["enchant", "captivate", "fascinate", "capture", "hex", "magnetise", "beguile", "catch", "becharm", "enamour", "charm", "mesmerise", "witch", "entrance", "glamour", "spellbind", "jinx", "bewitch"]}, {"answer": "bilk", "hint": "synonyms for bilk", "clues": ["elude", "scotch", "spoil", "evade", "queer", "cross", "frustrate", "baffle", "foil", "thwart", "bilk"]}, {"answer": "birl", "hint": "synonyms for birl", "clues": ["whirl", "twirl", "birle", "spin"]}, {"answer": "blab", "hint": "synonyms for blab", "clues": ["clack", "tattle", "palaver", "chatter", "piffle", "babble out", "babble", "talk", "twaddle", "spill the beans", "blab out", "sing", "gabble", "maunder", "tittle-tattle", "peach", "gibber", "blabber", "prate", "prattle", "let the cat out of the bag", "blab"]}, {"answer": "blab_out", "hint": "synonyms for blab out", "clues": ["tattle", "peach", "babble out", "babble", "blab", "talk", "spill the beans", "let the cat out of the bag", "sing", "blab out"]}, {"answer": "blacken", "hint": "synonyms for blacken", "clues": ["melanise", "sear", "black", "char", "nigrify", "scorch", "blacken"]}, {"answer": "blaspheme", "hint": "synonyms for blaspheme", "clues": ["curse", "imprecate", "swear", "cuss", "blaspheme"]}, {"answer": "bleach_out", "hint": "synonyms for bleach out", "clues": ["discolorise", "decolour", "decolourize", "bleach", "bleach out"]}, {"answer": "bleed", "hint": "synonyms for bleed", "clues": ["shed blood", "run", "hemorrhage", "phlebotomise", "leech", "bleed"]}, {"answer": "bless", "hint": "synonyms for bless", "clues": ["consecrate", "hallow", "sign", "sanctify", "bless"]}, {"answer": "block_off", "hint": "synonyms for block off", "clues": ["blockade", "close off", "shut off", "block", "bar", "barricade", "block up", "stop", "block off"]}, {"answer": "block_up", "hint": "synonyms for block up", "clues": ["blockade", "block off", "block", "bar", "barricade", "stop", "block up"]}, {"answer": "blot_out", "hint": "synonyms for blot out", "clues": ["obscure", "obliterate", "hide", "veil", "blot out"]}, {"answer": "blow_a_fuse", "hint": "synonyms for blow a fuse", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "have kittens", "fly off the handle", "blow one's stack", "blow a fuse"]}, {"answer": "blow_one's_stack", "hint": "synonyms for blow one's stack", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack"]}, {"answer": "blow_out", "hint": "synonyms for blow out", "clues": ["snuff out", "extinguish", "blow", "burn out", "quench", "blow out"]}, {"answer": "blow_out_of_the_water", "hint": "synonyms for blow out of the water", "clues": ["ball over", "shock", "take aback", "floor", "blow out of the water"]}, {"answer": "blow_over", "hint": "synonyms for blow over", "clues": ["fleet", "pass off", "pass", "fade", "evanesce", "blow over"]}, {"answer": "blow_up", "hint": "synonyms for blow up", "clues": ["magnify", "embellish", "expand", "inflate", "detonate", "throw a fit", "dramatize", "aggrandise", "hit the ceiling", "embroider", "lose one's temper", "go ballistic", "blow a fuse", "enlarge", "lard", "blow one's stack", "pad", "amplify", "puff out", "puff up", "explode", "have a fit", "puff", "set off", "flip one's lid", "combust", "hit the roof", "have kittens", "fly off the handle", "blow up"]}, {"answer": "blub", "hint": "synonyms for blub", "clues": ["sniffle", "snivel", "blubber", "blub"]}, {"answer": "blunder_out", "hint": "synonyms for blunder out", "clues": ["ejaculate", "blunder", "blurt out", "blurt", "blunder out"]}, {"answer": "blurt", "hint": "synonyms for blurt", "clues": ["ejaculate", "blunder", "blurt out", "blunder out", "blurt"]}, {"answer": "blurt_out", "hint": "synonyms for blurt out", "clues": ["ejaculate", "blunder", "blurt", "blunder out", "blurt out"]}, {"answer": "bode", "hint": "synonyms for bode", "clues": ["omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "bode"]}, {"answer": "bodge", "hint": "synonyms for bodge", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "mess up", "bumble", "fluff", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "bodge"]}, {"answer": "bog_down", "hint": "synonyms for bog down", "clues": ["grind to a halt", "bog", "get stuck", "mire", "bog down"]}, {"answer": "boil_down", "hint": "synonyms for boil down", "clues": ["concentrate", "decoct", "reduce", "come down", "boil down"]}, {"answer": "bollix", "hint": "synonyms for bollix", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bungle", "botch up", "bobble", "bollix"]}, {"answer": "bollix_up", "hint": "synonyms for bollix up", "clues": ["fuck up", "louse up", "ball up", "muff", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "bollix up"]}, {"answer": "bollocks", "hint": "synonyms for bollocks", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "bollocks"]}, {"answer": "bollocks_up", "hint": "synonyms for bollocks up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "foul up", "bollix", "botch up", "bobble", "bollocks up"]}, {"answer": "bolt_down", "hint": "synonyms for bolt down", "clues": ["down", "toss off", "shovel in", "belt down", "drink down", "pop", "garbage down", "pour down", "gobble up", "kill"]}, {"answer": "bolt_out", "hint": "synonyms for bolt out", "clues": ["run off", "bolt", "beetle off", "run out", "bolt out"]}, {"answer": "bone_up", "hint": "synonyms for bone up", "clues": ["bone", "get up", "mug up", "drum", "swot", "swot up", "grind away", "cram", "bone up"]}, {"answer": "bonk", "hint": "synonyms for bonk", "clues": ["sleep with", "whop", "get laid", "bed", "get it on", "whap", "bop", "have a go at it", "make love", "roll in the hay", "bash", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "sock", "have sex", "sleep together", "bonk"]}, {"answer": "boot_out", "hint": "synonyms for boot out", "clues": ["oust", "eject", "turf out", "kick out", "expel", "drum out", "chuck out", "throw out", "exclude", "boot out"]}, {"answer": "bootlick", "hint": "synonyms for bootlick", "clues": ["kowtow", "suck up", "toady", "truckle", "fawn", "bootlick"]}, {"answer": "boss_around", "hint": "synonyms for boss around", "clues": ["push around", "hector", "browbeat", "bully", "ballyrag", "strong-arm", "boss around"]}, {"answer": "botch_up", "hint": "synonyms for botch up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "bobble", "botch up"]}, {"answer": "bourgeon", "hint": "synonyms for bourgeon", "clues": ["sprout", "burgeon forth", "pullulate", "shoot", "germinate", "spud", "bourgeon"]}, {"answer": "bow_out", "hint": "synonyms for bow out", "clues": ["chicken out", "withdraw", "back down", "pull out", "back off", "bow out"]}, {"answer": "bowdlerise", "hint": "synonyms for bowdlerise", "clues": ["castrate", "bowdlerize", "shorten", "expurgate"]}, {"answer": "bowdlerize", "hint": "synonyms for bowdlerize", "clues": ["castrate", "bowdlerise", "shorten", "expurgate"]}, {"answer": "bowl_over", "hint": "synonyms for bowl over", "clues": ["boggle", "knock over", "tip over", "tump over", "turn over", "upset", "flabbergast", "overturn", "bowl over"]}, {"answer": "brabble", "hint": "synonyms for brabble", "clues": ["squabble", "pettifog", "quibble", "niggle", "bicker", "brabble"]}, {"answer": "break_apart", "hint": "synonyms for break apart", "clues": ["break up", "disunify", "crash", "dismantle", "disassemble", "take apart", "break apart"]}, {"answer": "break_away", "hint": "synonyms for break away", "clues": ["break", "splinter", "fly the coop", "head for the hills", "break off", "bunk", "scat", "run", "come off", "escape", "hightail it", "turn tail", "break out", "chip", "scarper", "lam", "secede", "chip off", "run away", "take to the woods", "break away"]}, {"answer": "break_down", "hint": "synonyms for break down", "clues": ["break", "go", "dissect", "give out", "tumble", "go bad", "break up", "crumple", "lose it", "conk out", "die", "analyze", "snap", "crush", "decompose", "give way", "collapse", "fail", "take apart", "break down"]}, {"answer": "break_in", "hint": "synonyms for break in", "clues": ["break", "chime in", "barge in", "put in", "cut in", "butt in", "chisel in", "break in"]}, {"answer": "break_loose", "hint": "synonyms for break loose", "clues": ["explode", "get away", "burst forth", "escape", "break loose"]}, {"answer": "break_off", "hint": "synonyms for break off", "clues": ["break", "break away", "come off", "discontinue", "break short", "chip", "stop", "knap", "snap off", "chip off", "cut off", "cut short", "break off"]}, {"answer": "break_open", "hint": "synonyms for break open", "clues": ["flare up", "split", "flare", "irrupt", "burst", "burst out", "erupt", "break open"]}, {"answer": "break_out", "hint": "synonyms for break out", "clues": ["break", "recrudesce", "break away", "erupt", "break out"]}, {"answer": "break_through", "hint": "synonyms for break through", "clues": ["crack", "push through", "come through", "come out", "erupt", "break through"]}, {"answer": "break_up", "hint": "synonyms for break up", "clues": ["break", "crack up", "disperse", "split up", "dispel", "fragmentize", "calve", "fragment", "break apart", "adjourn", "recess", "crack", "crash", "dismantle", "cut off", "pick", "interrupt", "resolve", "split", "separate", "collapse", "part", "disassemble", "disrupt", "dissolve", "decompose", "sever", "break down", "dissipate", "scatter", "take apart", "break up"]}, {"answer": "breastfeed", "hint": "synonyms for breastfeed", "clues": ["give suck", "suck", "suckle", "nurse", "wet-nurse", "lactate", "breastfeed"]}, {"answer": "breathe", "hint": "synonyms for breathe", "clues": ["suspire", "take a breather", "emit", "catch one's breath", "pass off", "rest", "respire", "breathe"]}, {"answer": "breeze_through", "hint": "synonyms for breeze through", "clues": ["ace", "sail through", "pass with flying colors", "nail", "sweep through", "breeze through"]}, {"answer": "brighten", "hint": "synonyms for brighten", "clues": ["light up", "clear", "lighten", "clear up", "brighten"]}, {"answer": "brim_over", "hint": "synonyms for brim over", "clues": ["well over", "overflow", "overrun", "run over", "brim over"]}, {"answer": "bring", "hint": "synonyms for bring", "clues": ["convey", "institute", "take", "wreak", "work", "lend", "play", "fetch", "get", "contribute", "bestow", "add", "bring in", "land", "impart", "make for", "bring"]}, {"answer": "bring_around", "hint": "synonyms for bring around", "clues": ["heal", "bring back", "bring to", "bring round", "cure"]}, {"answer": "bring_back", "hint": "synonyms for bring back", "clues": ["bring to", "return", "bring round", "take back", "bring back"]}, {"answer": "bring_down", "hint": "synonyms for bring down", "clues": ["impose", "let down", "overthrow", "reduce", "visit", "cut back", "subvert", "take down", "lower", "overturn", "trim", "inflict", "cut", "put down", "trim back", "trim down", "land", "bring down"]}, {"answer": "bring_forth", "hint": "synonyms for bring forth", "clues": ["engender", "mother", "sire", "father", "beget", "generate", "produce", "get", "bring forth"]}, {"answer": "bring_home_the_bacon", "hint": "synonyms for bring home the bacon", "clues": ["come through", "deliver the goods", "provide", "win", "succeed", "bring home the bacon"]}, {"answer": "bring_in", "hint": "synonyms for bring in", "clues": ["make", "realise", "earn", "fetch", "introduce", "pull in", "bring", "gain", "take in", "clear", "bring in"]}, {"answer": "bring_off", "hint": "synonyms for bring off", "clues": ["carry off", "negociate", "manage", "pull off", "bring off"]}, {"answer": "bring_out", "hint": "synonyms for bring out", "clues": ["break", "issue", "let on", "put out", "introduce", "reveal", "disclose", "divulge", "discover", "let out", "produce", "unwrap", "expose", "give away", "set off", "uncover", "unveil", "release", "bring on", "publish", "bring out"]}, {"answer": "bring_up", "hint": "synonyms for bring up", "clues": ["mention", "name", "put forward", "invoke", "parent", "advert", "rear", "conjure", "conjure up", "get up", "lift", "raise", "evoke", "nurture", "cite", "arouse", "elevate", "boot", "stir", "reboot", "call down", "refer", "call forth", "bring up"]}, {"answer": "broaden", "hint": "synonyms for broaden", "clues": ["branch out", "diversify", "widen", "extend", "broaden"]}, {"answer": "browbeat", "hint": "synonyms for browbeat", "clues": ["push around", "ballyrag", "boss around", "strong-arm", "swagger", "hector", "bully", "browbeat"]}, {"answer": "brush_aside", "hint": "synonyms for brush aside", "clues": ["push aside", "disregard", "discount", "brush off", "ignore", "dismiss"]}, {"answer": "brush_off", "hint": "synonyms for brush off", "clues": ["push aside", "disregard", "discount", "ignore", "dismiss", "brush off"]}, {"answer": "brush_up", "hint": "synonyms for brush up", "clues": ["round off", "polish up", "round", "refresh", "polish", "review", "brush up"]}, {"answer": "bucket_along", "hint": "synonyms for bucket along", "clues": ["step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "race", "hasten", "bucket along"]}, {"answer": "buckle_under", "hint": "synonyms for buckle under", "clues": ["yield", "knuckle under", "succumb", "give in"]}, {"answer": "bug_out", "hint": "synonyms for bug out", "clues": ["protrude", "pop", "come out", "start", "bulge", "bulge out", "pop out"]}, {"answer": "bugger_off", "hint": "synonyms for bugger off", "clues": ["fuck off", "get", "buzz off", "scram", "bugger off"]}, {"answer": "build_up", "hint": "synonyms for build up", "clues": ["gird", "progress", "ramp up", "fortify", "develop", "arm", "work up", "build", "build up"]}, {"answer": "bulge_out", "hint": "synonyms for bulge out", "clues": ["protrude", "pop", "come out", "start", "bulge", "bug out", "pop out"]}, {"answer": "bullyrag", "hint": "synonyms for bullyrag", "clues": ["push around", "hector", "browbeat", "bully", "ballyrag", "boss around", "strong-arm"]}, {"answer": "bum_about", "hint": "synonyms for bum about", "clues": ["bum", "arse about", "lounge about", "lounge around", "waste one's time", "bum around", "loaf", "loll around", "arse around", "loll", "fuck off", "frig around", "bum about"]}, {"answer": "bum_around", "hint": "synonyms for bum around", "clues": ["bum", "arse about", "lounge about", "lounge around", "fuck off", "waste one's time", "loaf", "loll around", "arse around", "loll", "bum about", "frig around", "bum around"]}, {"answer": "bumble", "hint": "synonyms for bumble", "clues": ["fuck up", "louse up", "stammer", "ball up", "muff", "falter", "bollix up", "screw up", "bollocks", "botch", "bodge", "mess up", "fluff", "stumble", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "stutter", "foul up", "bollix", "botch up", "bobble", "bumble"]}, {"answer": "bump_into", "hint": "synonyms for bump into", "clues": ["butt against", "run into", "knock against", "jar against", "bump into"]}, {"answer": "bump_off", "hint": "synonyms for bump off", "clues": ["murder", "dispatch", "remove", "hit", "polish off", "slay", "off", "bump off"]}, {"answer": "bunch_up", "hint": "synonyms for bunch up", "clues": ["cluster", "bundle", "bunch together", "bunch", "clump", "bunch up"]}, {"answer": "burble", "hint": "synonyms for burble", "clues": ["guggle", "babble", "gurgle", "bubble", "ripple", "burble"]}, {"answer": "burgeon_forth", "hint": "synonyms for burgeon forth", "clues": ["sprout", "pullulate", "shoot", "germinate", "bourgeon", "spud", "burgeon forth"]}, {"answer": "burn_down", "hint": "synonyms for burn down", "clues": ["burn up", "burn", "go up", "fire", "burn down"]}, {"answer": "burn_up", "hint": "synonyms for burn up", "clues": ["blaze up", "go up", "burn off", "flare", "burn down", "flame up", "burn", "burn up"]}, {"answer": "burst_forth", "hint": "synonyms for burst forth", "clues": ["explode", "sally out", "break loose", "rush out", "effloresce", "leap out", "burst forth"]}, {"answer": "burst_out", "hint": "synonyms for burst out", "clues": ["erupt", "flare", "irrupt", "break open", "flare up", "pop out", "burst out"]}, {"answer": "bury", "hint": "synonyms for bury", "clues": ["inhume", "swallow", "immerse", "sink", "forget", "entomb", "lay to rest", "eat up", "swallow up", "inter", "bury"]}, {"answer": "bushwhack", "hint": "synonyms for bushwhack", "clues": ["ambush", "scupper", "lurk", "ambuscade", "lie in wait", "waylay", "bushwhack"]}, {"answer": "butt_against", "hint": "synonyms for butt against", "clues": ["butt on", "abut", "jar against", "knock against", "bump into", "march", "butt", "run into", "edge", "border", "adjoin", "butt against"]}, {"answer": "butt_in", "hint": "synonyms for butt in", "clues": ["chime in", "barge in", "break in", "put in", "cut in", "chisel in", "butt in"]}, {"answer": "butt_on", "hint": "synonyms for butt on", "clues": ["butt against", "abut", "edge", "march", "butt", "border", "adjoin", "butt on"]}, {"answer": "button_up", "hint": "synonyms for button up", "clues": ["close up", "belt up", "be quiet", "shut up", "clam up", "keep mum", "dummy up", "button up"]}, {"answer": "buy_at", "hint": "synonyms for buy at", "clues": ["patronize", "shop at", "shop", "sponsor", "frequent", "buy at"]}, {"answer": "buy_the_farm", "hint": "synonyms for buy the farm", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "buy the farm"]}, {"answer": "buzz_off", "hint": "synonyms for buzz off", "clues": ["fuck off", "bugger off", "get", "scram", "buzz off"]}, {"answer": "ca-ca", "hint": "synonyms for ca-ca", "clues": ["defecate", "crap", "make", "take a shit", "shit", "take a crap", "stool", "ca-ca"]}, {"answer": "cadge", "hint": "synonyms for cadge", "clues": ["mooch", "shnorr", "scrounge", "bum", "sponge", "grub", "cadge"]}, {"answer": "cajole", "hint": "synonyms for cajole", "clues": ["inveigle", "wheedle", "sweet-talk", "blarney", "palaver", "coax", "cajole"]}, {"answer": "calculate", "hint": "synonyms for calculate", "clues": ["look", "depend", "bet", "count", "direct", "work out", "compute", "cipher", "figure", "cypher", "forecast", "aim", "reckon", "estimate", "account", "count on", "calculate"]}, {"answer": "call_back", "hint": "synonyms for call back", "clues": ["think", "recall", "remember", "retrieve", "call up", "call in", "recollect", "withdraw", "call back"]}, {"answer": "call_down", "hint": "synonyms for call down", "clues": ["chew up", "jaw", "put forward", "remonstrate", "dress down", "invoke", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "conjure", "conjure up", "have words", "bring up", "bawl out", "lambast", "chide", "raise", "evoke", "rebuke", "lecture", "arouse", "stir", "berate", "reprimand", "call forth", "trounce", "call down"]}, {"answer": "call_for", "hint": "synonyms for call for", "clues": ["bespeak", "ask", "quest", "necessitate", "need", "involve", "take", "postulate", "collect", "gather up", "require", "pick up", "demand", "request", "invite", "call for"]}, {"answer": "call_forth", "hint": "synonyms for call forth", "clues": ["conjure", "kick up", "conjure up", "bring up", "put forward", "provoke", "invoke", "evoke", "raise", "arouse", "stir", "call down", "call forth"]}, {"answer": "call_in", "hint": "synonyms for call in", "clues": ["call back", "call", "recall", "visit", "withdraw", "call in"]}, {"answer": "call_off", "hint": "synonyms for call off", "clues": ["call", "scrub", "scratch", "cancel", "call off"]}, {"answer": "call_on_the_carpet", "hint": "synonyms for call on the carpet", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "call on the carpet"]}, {"answer": "call_out", "hint": "synonyms for call out", "clues": ["outcry", "cry out", "cry", "shout", "exclaim", "call out"]}, {"answer": "calm_down", "hint": "synonyms for calm down", "clues": ["still", "quieten", "tranquilize", "cool off", "cool it", "settle down", "lull", "quiet", "calm", "simmer down", "chill out", "calm down"]}, {"answer": "calumniate", "hint": "synonyms for calumniate", "clues": ["sully", "smear", "defame", "asperse", "slander", "denigrate", "besmirch", "calumniate"]}, {"answer": "camp_out", "hint": "synonyms for camp out", "clues": ["encamp", "camp", "bivouac", "tent", "camp out"]}, {"answer": "cannonball_along", "hint": "synonyms for cannonball along", "clues": ["step on it", "pelt along", "hotfoot", "hie", "rush", "rush along", "speed", "race", "bucket along", "hasten", "cannonball along"]}, {"answer": "cant_over", "hint": "synonyms for cant over", "clues": ["pitch", "cant", "slant", "tilt", "cant over"]}, {"answer": "captivate", "hint": "synonyms for captivate", "clues": ["enchant", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch", "captivate"]}, {"answer": "care_for", "hint": "synonyms for care for", "clues": ["treasure", "hold dear", "treat", "cherish", "care for"]}, {"answer": "cark", "hint": "synonyms for cark", "clues": ["trouble", "unhinge", "disquiet", "perturb", "disorder", "distract", "cark"]}, {"answer": "carry_away", "hint": "synonyms for carry away", "clues": ["carry off", "bear off", "bear away", "take away", "carry away"]}, {"answer": "carry_off", "hint": "synonyms for carry off", "clues": ["bring off", "bear off", "pull off", "wipe out", "negociate", "decimate", "manage", "take away", "annihilate", "carry away", "bear away", "extinguish", "eliminate", "eradicate", "carry off"]}, {"answer": "carry_on", "hint": "synonyms for carry on", "clues": ["go on", "continue", "uphold", "deal", "conduct", "proceed", "act up", "bear on", "preserve", "carry on"]}, {"answer": "carry_out", "hint": "synonyms for carry out", "clues": ["fulfill", "go through", "implement", "action", "follow through", "carry through", "execute", "put through", "follow up", "accomplish", "follow out", "carry out"]}, {"answer": "carry_through", "hint": "synonyms for carry through", "clues": ["fulfill", "bring through", "pull through", "carry out", "action", "execute", "accomplish", "save", "carry through"]}, {"answer": "carve_up", "hint": "synonyms for carve up", "clues": ["split up", "divide", "dissever", "split", "separate", "carve up"]}, {"answer": "cash_in_one's_chips", "hint": "synonyms for cash in one's chips", "clues": ["decease", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "cash in one's chips"]}, {"answer": "cast_aside", "hint": "synonyms for cast aside", "clues": ["dispose", "put away", "cast away", "toss", "toss out", "chuck out", "toss away", "fling", "throw away", "throw out", "cast out", "discard", "cast aside"]}, {"answer": "cast_away", "hint": "synonyms for cast away", "clues": ["dispose", "put away", "toss", "toss out", "chuck out", "toss away", "fling", "throw away", "cast aside", "throw out", "cast out", "discard", "cast away"]}, {"answer": "cast_down", "hint": "synonyms for cast down", "clues": ["depress", "dismay", "demoralise", "dispirit", "deject", "get down", "cast down"]}, {"answer": "cast_off", "hint": "synonyms for cast off", "clues": ["throw", "throw off", "throw away", "shed", "drop", "cast", "shake off", "cast off"]}, {"answer": "cast_out", "hint": "synonyms for cast out", "clues": ["dispose", "cast away", "shun", "toss", "toss out", "ostracize", "chuck out", "throw away", "blackball", "ban", "fling", "put away", "banish", "cast aside", "throw out", "discard", "toss away", "cast out"]}, {"answer": "castigate", "hint": "synonyms for castigate", "clues": ["chasten", "correct", "objurgate", "chastise", "castigate"]}, {"answer": "catch_fire", "hint": "synonyms for catch fire", "clues": ["combust", "take fire", "conflagrate", "erupt", "ignite", "catch fire"]}, {"answer": "catch_on", "hint": "synonyms for catch on", "clues": ["get wise", "tumble", "twig", "get it", "cotton on", "get onto", "latch on"]}, {"answer": "catch_some_z's", "hint": "synonyms for catch some z's", "clues": ["slumber", "log Z's", "sleep", "catch some Z's", "kip"]}, {"answer": "cavort", "hint": "synonyms for cavort", "clues": ["sport", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol", "cavort"]}, {"answer": "cede", "hint": "synonyms for cede", "clues": ["give up", "deliver", "yield", "surrender", "concede", "grant", "cede"]}, {"answer": "celebrate", "hint": "synonyms for celebrate", "clues": ["fete", "observe", "lionize", "keep", "celebrate"]}, {"answer": "center_on", "hint": "synonyms for center on", "clues": ["center", "focus on", "revolve about", "concentrate on", "revolve around", "center on"]}, {"answer": "certify", "hint": "synonyms for certify", "clues": ["evidence", "licence", "manifest", "demonstrate", "endorse", "attest", "certify"]}, {"answer": "chaffer", "hint": "synonyms for chaffer", "clues": ["haggle", "chitchat", "jaw", "higgle", "confab", "visit", "chatter", "gossip", "confabulate", "claver", "chew the fat", "natter", "chat", "shoot the breeze", "huckster", "chaffer"]}, {"answer": "chance_on", "hint": "synonyms for chance on", "clues": ["come across", "happen upon", "strike", "chance upon", "come upon", "fall upon", "discover", "attain", "light upon"]}, {"answer": "chance_upon", "hint": "synonyms for chance upon", "clues": ["come across", "happen upon", "strike", "come upon", "fall upon", "discover", "chance on", "attain", "light upon"]}, {"answer": "channelise", "hint": "synonyms for channelise", "clues": ["maneuver", "transfer", "direct", "manoeuvre", "transmit", "head", "channelize", "steer", "guide", "transport", "channel", "point"]}, {"answer": "channelize", "hint": "synonyms for channelize", "clues": ["maneuver", "transfer", "direct", "manoeuvre", "transmit", "head", "steer", "guide", "transport", "channel", "point", "channelise"]}, {"answer": "charge_up", "hint": "synonyms for charge up", "clues": ["commove", "turn on", "agitate", "rouse", "charge", "excite", "charge up"]}, {"answer": "chase_after", "hint": "synonyms for chase after", "clues": ["tail", "tag", "go after", "give chase", "dog", "chase", "track", "chase after"]}, {"answer": "chase_away", "hint": "synonyms for chase away", "clues": ["run off", "turn back", "drive off", "drive out", "drive away", "dispel", "chase away"]}, {"answer": "chasten", "hint": "synonyms for chasten", "clues": ["temper", "subdue", "objurgate", "moderate", "tame", "castigate", "correct", "chastise", "chasten"]}, {"answer": "chastise", "hint": "synonyms for chastise", "clues": ["castigate", "objurgate", "chasten", "correct", "chastise"]}, {"answer": "chat_up", "hint": "synonyms for chat up", "clues": ["coquet", "romance", "mash", "philander", "flirt", "dally", "butterfly", "chat up"]}, {"answer": "cheat_on", "hint": "synonyms for cheat on", "clues": ["wander", "cheat", "betray", "cuckold", "cheat on"]}, {"answer": "check_into", "hint": "synonyms for check into", "clues": ["go over", "look into", "check over", "check out", "suss out", "check", "check up on", "check into"]}, {"answer": "check_off", "hint": "synonyms for check off", "clues": ["tick", "mark", "mark off", "check", "tick off", "check off"]}, {"answer": "check_out", "hint": "synonyms for check out", "clues": ["go over", "cheque", "look into", "check into", "feel out", "sound out", "suss out", "check over", "run down", "check", "check up on", "check out"]}, {"answer": "check_over", "hint": "synonyms for check over", "clues": ["go over", "look into", "check out", "suss out", "check into", "check", "check up on", "check over"]}, {"answer": "check_up_on", "hint": "synonyms for check up on", "clues": ["go over", "look into", "check over", "check out", "suss out", "check into", "check", "check up on"]}, {"answer": "cheer_up", "hint": "synonyms for cheer up", "clues": ["jolly up", "chirk up", "cheer", "jolly along", "cheer up"]}, {"answer": "chevvy", "hint": "synonyms for chevvy", "clues": ["chivvy", "harass", "chevy", "provoke", "molest", "harry", "hassle", "plague", "beset"]}, {"answer": "chevy", "hint": "synonyms for chevy", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "harry", "hassle", "plague", "beset"]}, {"answer": "chew_out", "hint": "synonyms for chew out", "clues": ["chew up", "jaw", "remonstrate", "dress down", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "chew out"]}, {"answer": "chew_over", "hint": "synonyms for chew over", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "meditate", "speculate", "chew over"]}, {"answer": "chew_the_fat", "hint": "synonyms for chew the fat", "clues": ["chitchat", "chat", "confab", "jaw", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "confabulate", "claver", "natter", "chew the fat"]}, {"answer": "chew_up", "hint": "synonyms for chew up", "clues": ["jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "chew up"]}, {"answer": "chicken_out", "hint": "synonyms for chicken out", "clues": ["back down", "pull out", "bow out", "back off", "chicken out"]}, {"answer": "chide", "hint": "synonyms for chide", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "chide"]}, {"answer": "chill_out", "hint": "synonyms for chill out", "clues": ["cool off", "calm down", "settle down", "cool it", "calm", "simmer down", "chill out"]}, {"answer": "chime_in", "hint": "synonyms for chime in", "clues": ["barge in", "break in", "put in", "cut in", "butt in", "chisel in", "chime in"]}, {"answer": "chip_off", "hint": "synonyms for chip off", "clues": ["break off", "break away", "come off", "chip", "chip off"]}, {"answer": "chisel_in", "hint": "synonyms for chisel in", "clues": ["chime in", "barge in", "put in", "cut in", "butt in", "break in", "chisel in"]}, {"answer": "chivvy", "hint": "synonyms for chivvy", "clues": ["chevvy", "harass", "provoke", "molest", "chivy", "harry", "hassle", "plague", "beset"]}, {"answer": "chivy", "hint": "synonyms for chivy", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "harry", "hassle", "plague", "beset"]}, {"answer": "chock_up", "hint": "synonyms for chock up", "clues": ["wad", "jam", "ram", "jampack", "chock up"]}, {"answer": "choke_off", "hint": "synonyms for choke off", "clues": ["congest", "clog up", "choke down", "choke", "back up", "foul", "choke back", "clog", "choke off"]}, {"answer": "choose", "hint": "synonyms for choose", "clues": ["pick out", "take", "select", "prefer", "opt", "choose"]}, {"answer": "chouse", "hint": "synonyms for chouse", "clues": ["shaft", "cheat", "jockey", "chicane", "screw", "chouse"]}, {"answer": "chuck_out", "hint": "synonyms for chuck out", "clues": ["dispose", "eject", "turf out", "put away", "boot out", "cast away", "toss", "toss out", "toss away", "fling", "throw away", "cast aside", "throw out", "exclude", "cast out", "discard", "chuck out"]}, {"answer": "chuck_up_the_sponge", "hint": "synonyms for chuck up the sponge", "clues": ["quit", "give up", "throw in the towel", "drop out", "fall by the wayside", "throw in", "drop by the wayside", "chuck up the sponge"]}, {"answer": "churn_up", "hint": "synonyms for churn up", "clues": ["revolt", "nauseate", "sicken", "disgust", "churn up"]}, {"answer": "circularise", "hint": "synonyms for circularise", "clues": ["distribute", "disperse", "circulate", "broadcast", "spread", "disseminate", "circularize", "pass around", "diffuse", "propagate"]}, {"answer": "circularize", "hint": "synonyms for circularize", "clues": ["distribute", "disperse", "circulate", "broadcast", "circularise", "disseminate", "spread", "pass around", "diffuse", "propagate"]}, {"answer": "circulate", "hint": "synonyms for circulate", "clues": ["distribute", "pass on", "disperse", "circle", "spread", "go around", "broadcast", "circularise", "disseminate", "pass around", "mobilize", "diffuse", "propagate", "circulate"]}, {"answer": "circumvent", "hint": "synonyms for circumvent", "clues": ["put off", "dodge", "hedge", "surround", "outwit", "outfox", "beleaguer", "elude", "besiege", "evade", "beat", "skirt", "outsmart", "hem in", "overreach", "duck", "parry", "fudge", "sidestep", "circumvent"]}, {"answer": "civilise", "hint": "synonyms for civilise", "clues": ["school", "cultivate", "civilize", "educate", "train"]}, {"answer": "civilize", "hint": "synonyms for civilize", "clues": ["school", "cultivate", "educate", "civilise", "train"]}, {"answer": "clam_up", "hint": "synonyms for clam up", "clues": ["close up", "belt up", "be quiet", "shut up", "button up", "keep mum", "dummy up", "clam up"]}, {"answer": "classify", "hint": "synonyms for classify", "clues": ["sort", "sort out", "relegate", "separate", "class", "assort", "classify"]}, {"answer": "claver", "hint": "synonyms for claver", "clues": ["chitchat", "chat", "confab", "jaw", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "confabulate", "chew the fat", "natter", "claver"]}, {"answer": "clean_up", "hint": "synonyms for clean up", "clues": ["neaten", "tidy", "square away", "straighten out", "tidy up", "straighten", "clean up"]}, {"answer": "clear_up", "hint": "synonyms for clear up", "clues": ["brighten", "finish off", "sort out", "light up", "get through", "polish off", "crystallize", "straighten out", "wrap up", "shed light on", "elucidate", "enlighten", "mop up", "illuminate", "finish up", "clarify", "clear", "clear up"]}, {"answer": "cleave", "hint": "synonyms for cleave", "clues": ["cling", "cohere", "split", "rive", "stick", "adhere", "cleave"]}, {"answer": "climb_on", "hint": "synonyms for climb on", "clues": ["bestride", "mount up", "jump on", "get on", "hop on", "mount", "climb on"]}, {"answer": "climb_up", "hint": "synonyms for climb up", "clues": ["jump", "rise", "climb", "go up", "ascend", "mount", "climb up"]}, {"answer": "clog_up", "hint": "synonyms for clog up", "clues": ["congest", "clog", "choke off", "choke", "back up", "foul", "clog up"]}, {"answer": "close_down", "hint": "synonyms for close down", "clues": ["fold", "close up", "shut down", "close", "close down"]}, {"answer": "close_in", "hint": "synonyms for close in", "clues": ["draw in", "shut in", "inclose", "close in"]}, {"answer": "clothe", "hint": "synonyms for clothe", "clues": ["garment", "robe", "drape", "enclothe", "invest", "tog", "cloak", "garb", "apparel", "adorn", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "co-occur_with", "hint": "synonyms for co-occur with", "clues": ["go with", "collocate with", "construe with", "cooccur with"]}, {"answer": "coalesce", "hint": "synonyms for coalesce", "clues": ["flux", "fuse", "mix", "commingle", "conflate", "immix", "combine", "merge", "meld", "blend", "coalesce"]}, {"answer": "coddle", "hint": "synonyms for coddle", "clues": ["featherbed", "spoil", "pamper", "indulge", "mollycoddle", "cosset", "baby", "cocker", "coddle"]}, {"answer": "coerce", "hint": "synonyms for coerce", "clues": ["force", "hale", "pressure", "squeeze", "coerce"]}, {"answer": "coggle", "hint": "synonyms for coggle", "clues": ["wobble", "toddle", "waddle", "dodder", "paddle", "totter", "coggle"]}, {"answer": "cohere", "hint": "synonyms for cohere", "clues": ["cleave", "cling", "stick", "adhere", "cohere"]}, {"answer": "coiffe", "hint": "synonyms for coiffe", "clues": ["do", "coif", "coiffure", "set", "dress", "arrange"]}, {"answer": "coldcock", "hint": "synonyms for coldcock", "clues": ["dump", "knock down", "deck", "floor", "coldcock"]}, {"answer": "collide_with", "hint": "synonyms for collide with", "clues": ["hit", "strike", "run into", "impinge on", "collide with"]}, {"answer": "colligate", "hint": "synonyms for colligate", "clues": ["link up", "connect", "tie in", "subsume", "relate", "link", "associate", "colligate"]}, {"answer": "collocate_with", "hint": "synonyms for collocate with", "clues": ["go with", "co-occur with", "construe with", "collocate with"]}, {"answer": "colly", "hint": "synonyms for colly", "clues": ["soil", "grime", "begrime", "bemire", "dirty", "colly"]}, {"answer": "color_in", "hint": "synonyms for color in", "clues": ["color", "colour in", "colourize", "colorise"]}, {"answer": "colorise", "hint": "synonyms for colorise", "clues": ["color", "color in", "colourize", "colorise"]}, {"answer": "colorize", "hint": "synonyms for colorize", "clues": ["color", "colour in", "colourize", "colorise"]}, {"answer": "colour_in", "hint": "synonyms for colour in", "clues": ["color", "color in", "colourize", "colorise"]}, {"answer": "colourise", "hint": "synonyms for colourise", "clues": ["color", "colour in", "colourize", "colorise"]}, {"answer": "colourize", "hint": "synonyms for colourize", "clues": ["color", "colour in", "colorise", "colourize"]}, {"answer": "combust", "hint": "synonyms for combust", "clues": ["throw a fit", "hit the ceiling", "take fire", "lose one's temper", "go ballistic", "blow a fuse", "fly off the handle", "blow one's stack", "have a fit", "flip one's lid", "burn", "ignite", "blow up", "catch fire", "conflagrate", "hit the roof", "have kittens", "erupt", "combust"]}, {"answer": "come_about", "hint": "synonyms for come about", "clues": ["go on", "fall out", "take place", "occur", "happen", "pass off", "pass", "hap", "come about"]}, {"answer": "come_across", "hint": "synonyms for come across", "clues": ["happen upon", "see", "strike", "encounter", "come over", "chance upon", "come upon", "meet", "fall upon", "resonate", "discover", "attain", "light upon", "run into", "run across", "come across"]}, {"answer": "come_alive", "hint": "synonyms for come alive", "clues": ["arouse", "awake", "wake up", "waken", "come alive"]}, {"answer": "come_along", "hint": "synonyms for come along", "clues": ["progress", "appear", "shape up", "advance", "get on", "get along", "come on", "come along"]}, {"answer": "come_apart", "hint": "synonyms for come apart", "clues": ["break", "split up", "separate", "fall apart", "come apart"]}, {"answer": "come_back", "hint": "synonyms for come back", "clues": ["retort", "return", "rejoin", "hark back", "recall", "riposte", "repay", "come back"]}, {"answer": "come_down", "hint": "synonyms for come down", "clues": ["descend", "boil down", "precipitate", "reduce", "go down", "sicken", "fall", "come down"]}, {"answer": "come_forth", "hint": "synonyms for come forth", "clues": ["go forth", "egress", "emerge", "issue", "come out", "come forth"]}, {"answer": "come_forward", "hint": "synonyms for come forward", "clues": ["come to the fore", "step up", "come out", "step forward", "step to the fore", "come forward"]}, {"answer": "come_home", "hint": "synonyms for come home", "clues": ["penetrate", "click", "sink in", "fall into place", "get through", "dawn", "get across", "come home"]}, {"answer": "come_in", "hint": "synonyms for come in", "clues": ["move into", "go in", "put in", "inject", "interject", "come", "enter", "interpose", "go into", "get into", "place", "come out", "throw in", "come in"]}, {"answer": "come_near", "hint": "synonyms for come near", "clues": ["draw near", "near", "approach", "draw close", "go up", "come on", "come near"]}, {"answer": "come_off", "hint": "synonyms for come off", "clues": ["go over", "break away", "chip", "break off", "come away", "chip off", "detach", "go off", "come off"]}, {"answer": "come_on", "hint": "synonyms for come on", "clues": ["draw near", "show up", "turn up", "near", "go on", "advance", "shape up", "get on", "go up", "get along", "come up", "come near", "progress", "surface", "come out", "come along", "draw close", "approach", "come on"]}, {"answer": "come_out", "hint": "synonyms for come out", "clues": ["protrude", "emerge", "push through", "issue", "out", "step forward", "come to the fore", "pop", "surface", "come out of the closet", "place", "turn out", "bug out", "go forth", "erupt", "show up", "egress", "come forth", "start", "fall out", "pop out", "come forward", "appear", "step up", "break through", "turn up", "come in", "bulge", "step to the fore", "come out"]}, {"answer": "come_through", "hint": "synonyms for come through", "clues": ["win", "bring home the bacon", "make it", "get through", "pull through", "succeed", "break through", "deliver the goods", "survive", "pull round", "come through"]}, {"answer": "come_to", "hint": "synonyms for come to", "clues": ["touch on", "strike", "resuscitate", "hit", "pertain", "touch", "revive", "bear on", "have-to doe with", "refer", "concern", "relate", "come to"]}, {"answer": "come_to_the_fore", "hint": "synonyms for come to the fore", "clues": ["come forward", "step up", "come out", "step forward", "step to the fore", "come to the fore"]}, {"answer": "come_up", "hint": "synonyms for come up", "clues": ["go on", "uprise", "go up", "rise", "find", "surface", "scrape", "muster", "get hold", "lift", "come", "ascend", "muster up", "rally", "line up", "bob up", "rise up", "scratch", "move up", "come on", "scrape up", "summon", "come up"]}, {"answer": "come_upon", "hint": "synonyms for come upon", "clues": ["come across", "happen upon", "enter upon", "strike", "chance upon", "luck into", "fall upon", "discover", "attain", "light upon", "come upon"]}, {"answer": "commemorate", "hint": "synonyms for commemorate", "clues": ["memorialise", "immortalise", "remember", "record", "mark", "commemorate"]}, {"answer": "commence", "hint": "synonyms for commence", "clues": ["embark on", "set out", "begin", "start out", "start up", "start", "lead off", "get", "get down", "commence"]}, {"answer": "comminate", "hint": "synonyms for comminate", "clues": ["anathematize", "anathemise", "accurse", "execrate", "comminate"]}, {"answer": "commingle", "hint": "synonyms for commingle", "clues": ["coalesce", "flux", "fuse", "mix", "conflate", "immix", "combine", "merge", "meld", "blend", "commingle"]}, {"answer": "comminute", "hint": "synonyms for comminute", "clues": ["grind", "bray", "crunch", "mash", "comminute"]}, {"answer": "commit", "hint": "synonyms for commit", "clues": ["pull", "intrust", "dedicate", "invest", "consecrate", "give", "send", "put", "trust", "institutionalise", "practice", "confide", "charge", "devote", "perpetrate", "place", "commit"]}, {"answer": "commix", "hint": "synonyms for commix", "clues": ["mingle", "unify", "mix", "amalgamate", "commix"]}, {"answer": "commove", "hint": "synonyms for commove", "clues": ["disturb", "stir up", "rouse", "raise up", "excite", "turn on", "vex", "charge up", "agitate", "charge", "shake up", "commove"]}, {"answer": "communicate", "hint": "synonyms for communicate", "clues": ["put across", "pass on", "transmit", "intercommunicate", "pass", "pass along", "convey", "commune", "communicate"]}, {"answer": "compensate", "hint": "synonyms for compensate", "clues": ["even out", "redress", "even off", "counterbalance", "indemnify", "right", "correct", "recompense", "make up", "repair", "overcompensate", "cover", "even up", "pay", "pay off", "remunerate", "compensate"]}, {"answer": "compile", "hint": "synonyms for compile", "clues": ["compose", "roll up", "accumulate", "pile up", "amass", "collect", "hoard", "compile"]}, {"answer": "complain", "hint": "synonyms for complain", "clues": ["quetch", "plain", "kvetch", "kick", "sound off", "complain"]}, {"answer": "complicate", "hint": "synonyms for complicate", "clues": ["elaborate", "perplex", "refine", "rarify", "complicate"]}, {"answer": "complot", "hint": "synonyms for complot", "clues": ["conjure", "cabal", "conspire", "machinate", "complot"]}, {"answer": "comport", "hint": "synonyms for comport", "clues": ["conduct", "deport", "bear", "acquit", "carry", "behave", "comport"]}, {"answer": "compose", "hint": "synonyms for compose", "clues": ["draw up", "compile", "write", "frame", "indite", "pen", "compose"]}, {"answer": "comprehend", "hint": "synonyms for comprehend", "clues": ["grok", "perceive", "grasp", "get the picture", "encompass", "cover", "savvy", "apprehend", "embrace", "dig", "comprehend"]}, {"answer": "comprise", "hint": "synonyms for comprise", "clues": ["incorporate", "represent", "contain", "make up", "be", "consist", "constitute", "comprise"]}, {"answer": "compute", "hint": "synonyms for compute", "clues": ["work out", "cypher", "reckon", "cipher", "figure", "calculate", "compute"]}, {"answer": "concede", "hint": "synonyms for concede", "clues": ["cede", "confess", "yield", "profess", "grant", "concede"]}, {"answer": "conceive", "hint": "synonyms for conceive", "clues": ["consider", "conceptualize", "believe", "think", "gestate", "conceive"]}, {"answer": "concentrate_on", "hint": "synonyms for concentrate on", "clues": ["center", "focus on", "revolve about", "revolve around", "center on", "concentrate on"]}, {"answer": "conciliate", "hint": "synonyms for conciliate", "clues": ["lenify", "placate", "reconcile", "settle", "accommodate", "assuage", "mollify", "appease", "pacify", "gruntle", "make up", "gentle", "patch up", "conciliate"]}, {"answer": "conclude", "hint": "synonyms for conclude", "clues": ["reason", "resolve", "reason out", "close", "conclude"]}, {"answer": "concoct", "hint": "synonyms for concoct", "clues": ["think of", "hatch", "cook up", "dream up", "trump up", "think up", "concoct"]}, {"answer": "concur", "hint": "synonyms for concur", "clues": ["hold", "concord", "agree", "coincide", "concur"]}, {"answer": "condemn", "hint": "synonyms for condemn", "clues": ["doom", "sentence", "objurgate", "decry", "reprobate", "excoriate", "condemn"]}, {"answer": "condense", "hint": "synonyms for condense", "clues": ["concentrate", "contract", "digest", "distil", "condense"]}, {"answer": "condescend", "hint": "synonyms for condescend", "clues": ["patronize", "lower oneself", "deign", "descend", "stoop", "condescend"]}, {"answer": "condole_with", "hint": "synonyms for condole with", "clues": ["feel for", "compassionate", "sympathize with", "pity", "condole with"]}, {"answer": "confabulate", "hint": "synonyms for confabulate", "clues": ["chitchat", "chat", "confab", "jaw", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "consult", "claver", "chew the fat", "confer", "natter", "confabulate"]}, {"answer": "confer", "hint": "synonyms for confer", "clues": ["consult", "bestow", "confabulate", "confab", "confer"]}, {"answer": "confess", "hint": "synonyms for confess", "clues": ["profess", "fink", "concede", "squeal", "confess"]}, {"answer": "confide", "hint": "synonyms for confide", "clues": ["intrust", "trust", "commit", "confide"]}, {"answer": "confine", "hint": "synonyms for confine", "clues": ["restrain", "throttle", "enclose", "restrict", "limit", "circumscribe", "trammel", "hold in", "detain", "hold", "bound", "confine"]}, {"answer": "confirm", "hint": "synonyms for confirm", "clues": ["support", "corroborate", "substantiate", "sustain", "reassert", "affirm", "confirm"]}, {"answer": "conflagrate", "hint": "synonyms for conflagrate", "clues": ["inflame", "ignite", "kindle", "catch fire", "combust", "take fire", "erupt", "conflagrate"]}, {"answer": "conflate", "hint": "synonyms for conflate", "clues": ["coalesce", "flux", "fuse", "mix", "commingle", "immix", "combine", "merge", "meld", "blend", "conflate"]}, {"answer": "confound", "hint": "synonyms for confound", "clues": ["throw", "befuddle", "confuse", "discombobulate", "fox", "bedevil", "confound"]}, {"answer": "confuse", "hint": "synonyms for confuse", "clues": ["throw", "obscure", "befuddle", "put off", "disconcert", "discombobulate", "bedevil", "obnubilate", "confound", "mix up", "blur", "fox", "jumble", "flurry", "confuse"]}, {"answer": "congest", "hint": "synonyms for congest", "clues": ["clog up", "clog", "choke off", "choke", "back up", "foul", "congest"]}, {"answer": "congratulate", "hint": "synonyms for congratulate", "clues": ["pride", "plume", "felicitate", "preen", "compliment", "congratulate"]}, {"answer": "conjoin", "hint": "synonyms for conjoin", "clues": ["join", "hook up with", "get hitched with", "get married", "marry", "wed", "espouse", "conjoin"]}, {"answer": "conjure", "hint": "synonyms for conjure", "clues": ["conspire", "cabal", "entreat", "put forward", "beseech", "invoke", "machinate", "adjure", "bid", "conjure up", "bring up", "complot", "raise", "evoke", "arouse", "press", "stir", "call down", "call forth", "conjure"]}, {"answer": "conjure_up", "hint": "synonyms for conjure up", "clues": ["conjure", "bring up", "put forward", "invoke", "evoke", "raise", "arouse", "stir", "call down", "call forth", "conjure up"]}, {"answer": "conk_out", "hint": "synonyms for conk out", "clues": ["break", "go", "peter out", "give out", "go bad", "die", "give way", "poop out", "break down", "run down", "fail", "run out", "conk out"]}, {"answer": "connect", "hint": "synonyms for connect", "clues": ["tie", "unite", "link up", "link", "associate", "join", "plug into", "colligate", "touch base", "tie in", "get in touch", "relate", "connect"]}, {"answer": "conquer", "hint": "synonyms for conquer", "clues": ["subdue", "appropriate", "curb", "capture", "suppress", "stamp down", "seize", "inhibit", "conquer"]}, {"answer": "consider", "hint": "synonyms for consider", "clues": ["view", "regard", "deliberate", "moot", "deal", "debate", "think", "look at", "study", "conceive", "count", "weigh", "see", "take", "turn over", "reckon", "believe", "consider"]}, {"answer": "consist", "hint": "synonyms for consist", "clues": ["dwell", "lie", "comprise", "lie in", "consist"]}, {"answer": "conspire", "hint": "synonyms for conspire", "clues": ["conjure", "cabal", "machinate", "complot", "collude", "conspire"]}, {"answer": "constellate", "hint": "synonyms for constellate", "clues": ["stud", "clump", "cluster", "dot", "flock", "constellate"]}, {"answer": "constitute", "hint": "synonyms for constitute", "clues": ["name", "form", "make", "comprise", "represent", "institute", "plant", "found", "establish", "appoint", "make up", "be", "nominate", "constitute"]}, {"answer": "constrain", "hint": "synonyms for constrain", "clues": ["restrain", "cumber", "tighten", "tighten up", "stiffen", "constrain"]}, {"answer": "constrict", "hint": "synonyms for constrict", "clues": ["contract", "narrow", "compress", "press", "constringe", "compact", "squeeze", "constrict"]}, {"answer": "construe_with", "hint": "synonyms for construe with", "clues": ["collocate with", "co-occur with", "go with", "construe with"]}, {"answer": "consult", "hint": "synonyms for consult", "clues": ["confer with", "confabulate", "confab", "refer", "confer", "look up", "consult"]}, {"answer": "consume", "hint": "synonyms for consume", "clues": ["devour", "down", "go through", "take", "wipe out", "use up", "squander", "eat", "ware", "exhaust", "run through", "ingest", "deplete", "take in", "eat up", "waste", "have", "consume"]}, {"answer": "contain", "hint": "synonyms for contain", "clues": ["incorporate", "turn back", "control", "comprise", "take", "curb", "moderate", "carry", "hold in", "stop", "hold back", "hold", "bear", "arrest", "check", "contain"]}, {"answer": "contemplate", "hint": "synonyms for contemplate", "clues": ["think over", "mull", "muse", "mull over", "ponder", "ruminate", "excogitate", "chew over", "study", "reflect", "meditate", "speculate", "contemplate"]}, {"answer": "contend", "hint": "synonyms for contend", "clues": ["fence", "grapple", "postulate", "compete", "struggle", "debate", "deal", "fight", "make do", "manage", "contest", "repugn", "make out", "argue", "get by", "cope", "vie", "contend"]}, {"answer": "continue", "hint": "synonyms for continue", "clues": ["retain", "go on", "keep", "go along", "uphold", "keep on", "persist in", "remain", "stay", "stay on", "proceed", "go forward", "cover", "carry on", "bear on", "preserve", "extend", "continue"]}, {"answer": "contradict", "hint": "synonyms for contradict", "clues": ["oppose", "contravene", "controvert", "negate", "belie", "contradict"]}, {"answer": "contravene", "hint": "synonyms for contravene", "clues": ["infringe", "run afoul", "negate", "contradict", "conflict", "contravene"]}, {"answer": "contribute", "hint": "synonyms for contribute", "clues": ["chip in", "lend", "bestow", "kick in", "put up", "bring", "lead", "impart", "conduce", "give", "add", "contribute"]}, {"answer": "contrive", "hint": "synonyms for contrive", "clues": ["throw", "devise", "formulate", "plan", "design", "excogitate", "cast", "project", "forge", "invent", "contrive"]}, {"answer": "controvert", "hint": "synonyms for controvert", "clues": ["oppose", "rebut", "contradict", "refute", "controvert"]}, {"answer": "convey", "hint": "synonyms for convey", "clues": ["take", "express", "fetch", "carry", "communicate", "channel", "conduct", "bring", "transmit", "impart", "get", "convey"]}, {"answer": "convulse", "hint": "synonyms for convulse", "clues": ["jactitate", "slash", "thresh about", "thrash", "thresh", "toss", "convulse"]}, {"answer": "cooccur_with", "hint": "synonyms for cooccur with", "clues": ["collocate with", "co-occur with", "construe with", "go with"]}, {"answer": "cook_up", "hint": "synonyms for cook up", "clues": ["concoct", "fabricate", "make up", "manufacture", "invent", "cook up"]}, {"answer": "cool_it", "hint": "synonyms for cool it", "clues": ["cool off", "calm down", "settle down", "calm", "simmer down", "chill out", "cool it"]}, {"answer": "cool_off", "hint": "synonyms for cool off", "clues": ["calm down", "settle down", "cool it", "cool down", "calm", "simmer down", "cool", "chill out", "cool off"]}, {"answer": "coquet", "hint": "synonyms for coquet", "clues": ["romance", "mash", "chat up", "coquette", "philander", "flirt", "dally", "butterfly"]}, {"answer": "corrade", "hint": "synonyms for corrade", "clues": ["abrade", "rub off", "rub down", "abrase", "corrade"]}, {"answer": "correspond", "hint": "synonyms for correspond", "clues": ["represent", "fit", "equate", "jibe", "match", "tally", "agree", "gibe", "stand for", "check", "correspond"]}, {"answer": "corroborate", "hint": "synonyms for corroborate", "clues": ["support", "underpin", "affirm", "confirm", "validate", "bear out", "substantiate", "sustain", "corroborate"]}, {"answer": "cosset", "hint": "synonyms for cosset", "clues": ["featherbed", "spoil", "cocker", "pamper", "indulge", "mollycoddle", "baby", "coddle", "cosset"]}, {"answer": "cotton_on", "hint": "synonyms for cotton on", "clues": ["get wise", "tumble", "twig", "get it", "get onto", "catch on", "cotton on"]}, {"answer": "cotton_up", "hint": "synonyms for cotton up", "clues": ["play up", "shine up", "suck up", "sidle up", "cozy up", "cotton up"]}, {"answer": "cough_out", "hint": "synonyms for cough out", "clues": ["cough up", "spit out", "spit up", "expectorate", "cough out"]}, {"answer": "cough_up", "hint": "synonyms for cough up", "clues": ["spit up", "spit out", "expectorate", "cough out", "pony up", "cough up"]}, {"answer": "count_on", "hint": "synonyms for count on", "clues": ["forecast", "reckon", "estimate", "figure", "calculate", "count on"]}, {"answer": "counteract", "hint": "synonyms for counteract", "clues": ["weaken", "countercheck", "countermine", "counterbalance", "neutralize", "antagonise", "countervail", "sabotage", "undermine", "subvert", "counteract"]}, {"answer": "countervail", "hint": "synonyms for countervail", "clues": ["counterbalance", "counteract", "neutralize", "offset", "countervail"]}, {"answer": "cower", "hint": "synonyms for cower", "clues": ["crawl", "creep", "grovel", "fawn", "cringe", "huddle", "cower"]}, {"answer": "cozy_up", "hint": "synonyms for cozy up", "clues": ["play up", "shine up", "suck up", "sidle up", "cotton up", "cozy up"]}, {"answer": "crack_up", "hint": "synonyms for crack up", "clues": ["break up", "crack", "crock up", "collapse"]}, {"answer": "cram", "hint": "synonyms for cram", "clues": ["bone", "chock up", "get up", "mug up", "drum", "swot", "swot up", "bone up", "wad", "jam", "grind away", "ram", "jampack"]}, {"answer": "crave", "hint": "synonyms for crave", "clues": ["hunger", "starve", "lust", "thirst", "crave"]}, {"answer": "crawfish_out", "hint": "synonyms for crawfish out", "clues": ["back out", "retreat", "back away", "pull in one's horns", "pull back", "crawfish", "withdraw", "crawfish out"]}, {"answer": "crawl_in", "hint": "synonyms for crawl in", "clues": ["go to sleep", "sack out", "bed", "kip down", "turn in", "retire", "go to bed", "hit the hay", "hit the sack", "crawl in"]}, {"answer": "criminate", "hint": "synonyms for criminate", "clues": ["accuse", "reprimand", "impeach", "censure", "incriminate"]}, {"answer": "cringe", "hint": "synonyms for cringe", "clues": ["crawl", "recoil", "quail", "cower", "shrink", "fawn", "wince", "funk", "creep", "squinch", "grovel", "flinch", "cringe"]}, {"answer": "crock_up", "hint": "synonyms for crock up", "clues": ["break up", "crack up", "crack", "collapse"]}, {"answer": "cross_off", "hint": "synonyms for cross off", "clues": ["cross out", "strike off", "mark", "strike out", "cross off"]}, {"answer": "cross_out", "hint": "synonyms for cross out", "clues": ["mark", "strike off", "strike out", "cross off", "cross out"]}, {"answer": "crucify", "hint": "synonyms for crucify", "clues": ["subdue", "dun", "blast", "torment", "bedevil", "mortify", "frustrate", "rag", "pillory", "savage", "crucify"]}, {"answer": "crumble", "hint": "synonyms for crumble", "clues": ["tumble", "dilapidate", "decay", "collapse", "break down", "fall apart", "crumple"]}, {"answer": "crumple", "hint": "synonyms for crumple", "clues": ["tumble", "cockle", "rumple", "crinkle", "crumble", "buckle", "knit", "crease", "collapse", "break down", "pucker"]}, {"answer": "cry_out", "hint": "synonyms for cry out", "clues": ["call out", "outcry", "cry", "shout", "exclaim", "cry out"]}, {"answer": "crystalise", "hint": "synonyms for crystalise", "clues": ["sort out", "crystallize", "enlighten", "illuminate", "clear up", "straighten out", "effloresce", "shed light on", "elucidate", "clear"]}, {"answer": "crystalize", "hint": "synonyms for crystalize", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "effloresce", "shed light on", "elucidate", "clear"]}, {"answer": "crystallise", "hint": "synonyms for crystallise", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "shed light on", "elucidate", "clear"]}, {"answer": "crystallize", "hint": "synonyms for crystallize", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "straighten out", "clear up", "effloresce", "shed light on", "elucidate", "clear"]}, {"answer": "cultivate", "hint": "synonyms for cultivate", "clues": ["domesticate", "civilize", "work", "naturalize", "educate", "train", "crop", "school", "tame", "cultivate"]}, {"answer": "cumulate", "hint": "synonyms for cumulate", "clues": ["conglomerate", "gather", "accumulate", "pile up", "amass"]}, {"answer": "curtail", "hint": "synonyms for curtail", "clues": ["clip", "curb", "restrict", "cut back", "cut short", "curtail"]}, {"answer": "cut_across", "hint": "synonyms for cut across", "clues": ["cut through", "traverse", "cross", "get across", "pass over", "cover", "crosscut", "get over", "track", "cut across"]}, {"answer": "cut_back", "hint": "synonyms for cut back", "clues": ["trim", "clip", "reduce", "cut", "restrict", "curb", "curtail", "prune", "bring down", "cut down", "trim back", "trim down", "crop", "lop", "flash back", "snip", "dress", "cut back"]}, {"answer": "cut_down", "hint": "synonyms for cut down", "clues": ["down", "trim", "reduce", "cut", "strike down", "cut back", "knock down", "drop", "bring down", "trim back", "trim down", "mow", "slash", "pull down", "fell", "cut out", "push down", "cut down"]}, {"answer": "cut_in", "hint": "synonyms for cut in", "clues": ["chime in", "barge in", "break in", "put in", "butt in", "chisel in", "cut in"]}, {"answer": "cut_short", "hint": "synonyms for cut short", "clues": ["break off", "clip", "truncate", "curtail", "break short", "cut short"]}, {"answer": "cut_through", "hint": "synonyms for cut through", "clues": ["traverse", "cross", "get across", "cut across", "pass over", "cover", "get over", "track", "cut through"]}, {"answer": "dabble", "hint": "synonyms for dabble", "clues": ["splash around", "play around", "paddle", "smatter", "dabble"]}, {"answer": "dally", "hint": "synonyms for dally", "clues": ["coquet", "romance", "mash", "play", "toy", "trifle", "chat up", "flirt", "philander", "dawdle", "butterfly", "dally"]}, {"answer": "dampen", "hint": "synonyms for dampen", "clues": ["break", "tone down", "weaken", "stifle", "soften", "moisten", "mute", "damp", "wash", "dull", "muffle", "deaden", "dampen"]}, {"answer": "dash_off", "hint": "synonyms for dash off", "clues": ["toss off", "scratch off", "knock off", "dash down", "fling off", "dash off"]}, {"answer": "daunt", "hint": "synonyms for daunt", "clues": ["scare", "pall", "frighten away", "dash", "scare away", "frighten off", "scare off", "daunt"]}, {"answer": "dawdle", "hint": "synonyms for dawdle", "clues": ["linger", "fall back", "lag", "dally", "fall behind", "dawdle"]}, {"answer": "deaden", "hint": "synonyms for deaden", "clues": ["dampen", "girdle", "blunt", "damp", "deaden"]}, {"answer": "deal_out", "hint": "synonyms for deal out", "clues": ["distribute", "lot", "mete out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish out", "deal out"]}, {"answer": "debar", "hint": "synonyms for debar", "clues": ["fend off", "obviate", "avert", "head off", "bar", "forefend", "exclude", "suspend", "ward off", "stave off", "avoid", "deflect", "debar"]}, {"answer": "debase", "hint": "synonyms for debase", "clues": ["deprave", "stretch", "pervert", "adulterate", "corrupt", "load", "demoralize", "vitiate", "dilute", "debauch", "alloy", "misdirect", "profane", "subvert", "debase"]}, {"answer": "decamp", "hint": "synonyms for decamp", "clues": ["skip", "bolt", "make off", "break camp", "run off", "absquatulate", "abscond", "vamoose", "go off", "decamp"]}, {"answer": "deceive", "hint": "synonyms for deceive", "clues": ["lead on", "betray", "cozen", "delude", "lead astray", "deceive"]}, {"answer": "decelerate", "hint": "synonyms for decelerate", "clues": ["slow down", "slow", "slow up", "retard", "decelerate"]}, {"answer": "decide", "hint": "synonyms for decide", "clues": ["resolve", "adjudicate", "determine", "settle", "make up one's mind", "decide"]}, {"answer": "decimate", "hint": "synonyms for decimate", "clues": ["annihilate", "extinguish", "eliminate", "wipe out", "carry off", "eradicate", "decimate"]}, {"answer": "deck_out", "hint": "synonyms for deck out", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "deck out"]}, {"answer": "deck_up", "hint": "synonyms for deck up", "clues": ["trick out", "get up", "trick up", "fancy up", "fig up", "attire", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "deck up"]}, {"answer": "decolor", "hint": "synonyms for decolor", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "decolorise", "hint": "synonyms for decolorise", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "decolorize", "hint": "synonyms for decolorize", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "decolour", "hint": "synonyms for decolour", "clues": ["discolorise", "decolourize", "bleach out", "decolor", "bleach"]}, {"answer": "decolourise", "hint": "synonyms for decolourise", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "decolourize", "hint": "synonyms for decolourize", "clues": ["discolorise", "decolour", "decolorize", "bleach out", "bleach"]}, {"answer": "decompose", "hint": "synonyms for decompose", "clues": ["break up", "molder", "decay", "disintegrate", "break down", "rot", "decompose"]}, {"answer": "decompress", "hint": "synonyms for decompress", "clues": ["uncompress", "slow down", "relax", "unwind", "depressurise", "loosen up", "unbend", "decompress"]}, {"answer": "decorate", "hint": "synonyms for decorate", "clues": ["embellish", "ornament", "beautify", "adorn", "deck", "dress", "grace", "decorate"]}, {"answer": "decriminalise", "hint": "synonyms for decriminalise", "clues": ["decriminalize", "legitimate", "legalise", "legitimize"]}, {"answer": "decriminalize", "hint": "synonyms for decriminalize", "clues": ["legitimate", "legalise", "legitimize", "decriminalise"]}, {"answer": "decry", "hint": "synonyms for decry", "clues": ["condemn", "reprobate", "objurgate", "excoriate", "decry"]}, {"answer": "dedicate", "hint": "synonyms for dedicate", "clues": ["devote", "consecrate", "give", "commit", "dedicate"]}, {"answer": "deduct", "hint": "synonyms for deduct", "clues": ["subtract", "recoup", "infer", "take off", "withhold", "deduce", "derive", "deduct"]}, {"answer": "deepen", "hint": "synonyms for deepen", "clues": ["change", "intensify", "compound", "heighten", "deepen"]}, {"answer": "defalcate", "hint": "synonyms for defalcate", "clues": ["peculate", "misappropriate", "malversate", "embezzle", "defalcate"]}, {"answer": "defame", "hint": "synonyms for defame", "clues": ["sully", "smear", "asperse", "calumniate", "slander", "denigrate", "besmirch", "defame"]}, {"answer": "defecate", "hint": "synonyms for defecate", "clues": ["crap", "make", "take a shit", "shit", "take a crap", "ca-ca", "stool", "defecate"]}, {"answer": "defend", "hint": "synonyms for defend", "clues": ["support", "fight down", "oppose", "represent", "fight back", "maintain", "fight", "champion", "hold", "fend for", "guard", "defend"]}, {"answer": "defer", "hint": "synonyms for defer", "clues": ["put over", "set back", "put off", "hold over", "accede", "postpone", "give in", "bow", "shelve", "remit", "submit", "table", "prorogue", "defer"]}, {"answer": "define", "hint": "synonyms for define", "clues": ["specify", "delimit", "limit", "set", "delimitate", "delineate", "determine", "fix", "define"]}, {"answer": "deflect", "hint": "synonyms for deflect", "clues": ["fend off", "obviate", "avert", "turn away", "block", "head off", "debar", "forefend", "distract", "bend", "ward off", "stave off", "parry", "avoid", "deflect"]}, {"answer": "deflower", "hint": "synonyms for deflower", "clues": ["impair", "spoil", "ruin", "vitiate", "mar", "deflower"]}, {"answer": "deform", "hint": "synonyms for deform", "clues": ["change shape", "flex", "twist", "change form", "wring", "distort", "bend", "turn", "strain", "contort", "deform"]}, {"answer": "defraud", "hint": "synonyms for defraud", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "nobble", "bunco", "gyp", "diddle", "rook", "victimize", "hornswoggle", "short-change", "defraud"]}, {"answer": "defy", "hint": "synonyms for defy", "clues": ["hold up", "hold", "resist", "refuse", "dare", "withstand", "defy"]}, {"answer": "degrade", "hint": "synonyms for degrade", "clues": ["cheapen", "disgrace", "take down", "put down", "demean", "degrade"]}, {"answer": "deject", "hint": "synonyms for deject", "clues": ["depress", "cast down", "dismay", "demoralise", "dispirit", "get down", "deject"]}, {"answer": "delete", "hint": "synonyms for delete", "clues": ["blue-pencil", "edit", "cancel", "erase", "delete"]}, {"answer": "delimit", "hint": "synonyms for delimit", "clues": ["delineate", "specify", "subtend", "define", "demarcate", "delimitate", "delimit"]}, {"answer": "delimitate", "hint": "synonyms for delimitate", "clues": ["delineate", "specify", "delimit", "define", "demarcate", "delimitate"]}, {"answer": "deliver", "hint": "synonyms for deliver", "clues": ["deport", "hand over", "give up", "fork out", "surrender", "pitch", "give birth", "extradite", "present", "redeem", "birth", "cede", "return", "turn in", "rescue", "render", "fork up", "fork over", "bear", "have", "drive home", "save", "deliver"]}, {"answer": "deliver_the_goods", "hint": "synonyms for deliver the goods", "clues": ["win", "bring home the bacon", "come through", "succeed", "deliver the goods"]}, {"answer": "demean", "hint": "synonyms for demean", "clues": ["take down", "degrade", "put down", "disgrace", "demean"]}, {"answer": "demolish", "hint": "synonyms for demolish", "clues": ["pulverize", "crush", "destroy", "smash", "demolish"]}, {"answer": "demonstrate", "hint": "synonyms for demonstrate", "clues": ["certify", "prove", "attest", "shew", "establish", "evidence", "march", "show", "manifest", "exhibit", "present", "demo", "demonstrate"]}, {"answer": "demoralise", "hint": "synonyms for demoralise", "clues": ["cast down", "deprave", "pervert", "dismay", "corrupt", "demoralize", "vitiate", "dispirit", "depress", "debauch", "profane", "misdirect", "subvert", "deject", "debase", "get down"]}, {"answer": "demoralize", "hint": "synonyms for demoralize", "clues": ["cast down", "deprave", "pervert", "dismay", "corrupt", "vitiate", "dispirit", "depress", "debauch", "demoralise", "misdirect", "profane", "subvert", "deject", "debase", "get down"]}, {"answer": "demote", "hint": "synonyms for demote", "clues": ["break", "relegate", "kick downstairs", "bump", "demote"]}, {"answer": "denigrate", "hint": "synonyms for denigrate", "clues": ["sully", "belittle", "smear", "defame", "asperse", "calumniate", "derogate", "slander", "minimize", "besmirch", "denigrate"]}, {"answer": "denounce", "hint": "synonyms for denounce", "clues": ["stigmatize", "betray", "give away", "stag", "mark", "rat", "brand", "grass", "shop", "shit", "snitch", "tell on", "denounce"]}, {"answer": "depart", "hint": "synonyms for depart", "clues": ["quit", "go", "take off", "go away", "start out", "set forth", "vary", "leave", "take leave", "set out", "set off", "start", "part", "sidetrack", "deviate", "straggle", "pull up stakes", "digress", "diverge", "depart"]}, {"answer": "depend", "hint": "synonyms for depend", "clues": ["look", "bet", "reckon", "count", "calculate", "depend"]}, {"answer": "depend_on", "hint": "synonyms for depend on", "clues": ["rely upon", "ride", "hinge upon", "turn on", "depend upon", "devolve on"]}, {"answer": "depend_upon", "hint": "synonyms for depend upon", "clues": ["rely upon", "depend on", "ride", "hinge upon", "turn on", "devolve on"]}, {"answer": "depict", "hint": "synonyms for depict", "clues": ["describe", "picture", "show", "draw", "limn", "portray", "render", "depict"]}, {"answer": "deplete", "hint": "synonyms for deplete", "clues": ["exhaust", "run through", "wipe out", "eat up", "consume", "use up", "eat", "deplete"]}, {"answer": "deplumate", "hint": "synonyms for deplumate", "clues": ["pull", "pluck", "deplume", "displume", "tear"]}, {"answer": "deplume", "hint": "synonyms for deplume", "clues": ["pull", "pluck", "displume", "tear", "deplumate"]}, {"answer": "deport", "hint": "synonyms for deport", "clues": ["deliver", "exile", "carry", "behave", "conduct", "bear", "expatriate", "acquit", "extradite", "comport", "deport"]}, {"answer": "deprave", "hint": "synonyms for deprave", "clues": ["pervert", "corrupt", "demoralize", "vitiate", "debauch", "misdirect", "profane", "subvert", "debase", "deprave"]}, {"answer": "depreciate", "hint": "synonyms for depreciate", "clues": ["undervalue", "devalue", "deprecate", "vilipend"]}, {"answer": "depress", "hint": "synonyms for depress", "clues": ["dismay", "demoralize", "dispirit", "press down", "deject", "cast down", "lower", "get down", "depress"]}, {"answer": "depute", "hint": "synonyms for depute", "clues": ["deputize", "designate", "delegate", "assign"]}, {"answer": "derive", "hint": "synonyms for derive", "clues": ["infer", "gain", "descend", "deduct", "deduce", "come", "derive"]}, {"answer": "descend", "hint": "synonyms for descend", "clues": ["deign", "settle", "go down", "come down", "come", "condescend", "derive", "fall", "descend"]}, {"answer": "describe", "hint": "synonyms for describe", "clues": ["key", "identify", "name", "report", "line", "key out", "trace", "delineate", "draw", "discover", "account", "depict", "distinguish", "describe"]}, {"answer": "desecrate", "hint": "synonyms for desecrate", "clues": ["deconsecrate", "profane", "unhallow", "violate", "outrage"]}, {"answer": "desex", "hint": "synonyms for desex", "clues": ["sterilise", "desexualise", "unsex", "fix", "desex"]}, {"answer": "desexualise", "hint": "synonyms for desexualise", "clues": ["sterilise", "desex", "unsex", "fix", "desexualize"]}, {"answer": "desexualize", "hint": "synonyms for desexualize", "clues": ["sterilise", "desexualise", "desex", "unsex", "fix"]}, {"answer": "despoil", "hint": "synonyms for despoil", "clues": ["rape", "spoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "violate", "ransack", "despoil"]}, {"answer": "destine", "hint": "synonyms for destine", "clues": ["doom", "fate", "specify", "intend", "designate", "destine"]}, {"answer": "destroy", "hint": "synonyms for destroy", "clues": ["demolish", "ruin", "put down", "destruct", "destroy"]}, {"answer": "detain", "hint": "synonyms for detain", "clues": ["hold up", "confine", "delay", "stay", "detain"]}, {"answer": "detect", "hint": "synonyms for detect", "clues": ["find", "notice", "observe", "discover", "detect"]}, {"answer": "determine", "hint": "synonyms for determine", "clues": ["specify", "limit", "define", "find", "fix", "mold", "make up one's mind", "influence", "learn", "watch", "decide", "square off", "settle", "see", "set", "check", "regulate", "shape", "find out", "ascertain", "square up", "determine"]}, {"answer": "dethaw", "hint": "synonyms for dethaw", "clues": ["dissolve", "melt", "unthaw", "unfreeze", "thaw", "dethaw"]}, {"answer": "devastate", "hint": "synonyms for devastate", "clues": ["scourge", "lay waste to", "desolate", "ravage", "waste", "devastate"]}, {"answer": "develop", "hint": "synonyms for develop", "clues": ["break", "make grow", "formulate", "modernise", "uprise", "prepare", "train", "build up", "rise", "germinate", "explicate", "produce", "acquire", "get", "evolve", "spring up", "originate", "educate", "recrudesce", "grow", "develop"]}, {"answer": "devolve", "hint": "synonyms for devolve", "clues": ["return", "degenerate", "drop", "pass", "deteriorate", "fall", "devolve"]}, {"answer": "devolve_on", "hint": "synonyms for devolve on", "clues": ["turn on", "depend upon", "ride", "hinge upon", "devolve on"]}, {"answer": "devote", "hint": "synonyms for devote", "clues": ["dedicate", "commit", "pay", "give", "consecrate", "devote"]}, {"answer": "devour", "hint": "synonyms for devour", "clues": ["guttle", "go through", "down", "pig", "raven", "consume", "devour"]}, {"answer": "diddle", "hint": "synonyms for diddle", "clues": ["con", "swindle", "gip", "play", "goldbrick", "scam", "fiddle", "toy", "mulct", "defraud", "bunco", "gyp", "nobble", "rook", "victimize", "hornswoggle", "short-change", "diddle"]}, {"answer": "die_away", "hint": "synonyms for die away", "clues": ["slack off", "abate", "slack", "let up", "die away"]}, {"answer": "die_hard", "hint": "synonyms for die hard", "clues": ["prevail", "run", "persist", "endure", "die hard"]}, {"answer": "differentiate", "hint": "synonyms for differentiate", "clues": ["separate", "mark", "specialise", "severalize", "tell", "speciate", "secern", "secernate", "tell apart", "distinguish", "differentiate"]}, {"answer": "dig_up", "hint": "synonyms for dig up", "clues": ["excavate", "dig out", "turn up", "dig", "dig up"]}, {"answer": "digress", "hint": "synonyms for digress", "clues": ["stray", "straggle", "depart", "divagate", "wander", "sidetrack", "digress"]}, {"answer": "dilate", "hint": "synonyms for dilate", "clues": ["expatiate", "expound", "lucubrate", "exposit", "expand", "elaborate", "enlarge", "distend", "flesh out", "dilate"]}, {"answer": "dilly-dally", "hint": "synonyms for dilly-dally", "clues": ["drag one's heels", "stall", "drag one's feet", "shillyshally", "procrastinate", "dillydally"]}, {"answer": "dillydally", "hint": "synonyms for dillydally", "clues": ["drag one's heels", "stall", "drag one's feet", "shillyshally", "dilly-dally", "procrastinate"]}, {"answer": "diminish", "hint": "synonyms for diminish", "clues": ["lessen", "decrease", "belittle", "fall", "diminish"]}, {"answer": "disable", "hint": "synonyms for disable", "clues": ["handicap", "disenable", "invalid", "incapacitate"]}, {"answer": "disagree", "hint": "synonyms for disagree", "clues": ["dissent", "disaccord", "differ", "take issue", "disagree"]}, {"answer": "disallow", "hint": "synonyms for disallow", "clues": ["nix", "proscribe", "forbid", "veto", "prohibit", "interdict", "disallow"]}, {"answer": "disappear", "hint": "synonyms for disappear", "clues": ["evaporate", "go away", "melt", "vanish", "disappear"]}, {"answer": "disassemble", "hint": "synonyms for disassemble", "clues": ["break apart", "break up", "dismantle", "take apart", "disassemble"]}, {"answer": "disassociate", "hint": "synonyms for disassociate", "clues": ["divorce", "disunite", "dissociate", "disjoint"]}, {"answer": "discase", "hint": "synonyms for discase", "clues": ["undress", "unclothe", "uncase", "strip", "strip down", "disrobe", "peel", "discase"]}, {"answer": "discern", "hint": "synonyms for discern", "clues": ["pick out", "tell apart", "recognize", "make out", "spot", "distinguish", "discern"]}, {"answer": "discerp", "hint": "synonyms for discerp", "clues": ["lop", "sever", "dismember", "take apart", "discerp"]}, {"answer": "disclose", "hint": "synonyms for disclose", "clues": ["break", "unwrap", "expose", "give away", "let on", "reveal", "bring out", "divulge", "discover", "let out", "disclose"]}, {"answer": "discolorise", "hint": "synonyms for discolorise", "clues": ["discolorize", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "discolorize", "hint": "synonyms for discolorize", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "discolourise", "hint": "synonyms for discolourise", "clues": ["discolorise", "decolour", "decolourize", "bleach out", "bleach"]}, {"answer": "discombobulate", "hint": "synonyms for discombobulate", "clues": ["throw", "bemuse", "confuse", "befuddle", "bedevil", "confound", "bewilder", "fox", "discombobulate"]}, {"answer": "discomfit", "hint": "synonyms for discomfit", "clues": ["untune", "discompose", "upset", "disconcert", "discomfit"]}, {"answer": "discommode", "hint": "synonyms for discommode", "clues": ["bother", "incommode", "trouble", "inconvenience", "put out", "disoblige", "discommode"]}, {"answer": "discompose", "hint": "synonyms for discompose", "clues": ["discomfit", "untune", "upset", "disconcert", "discompose"]}, {"answer": "disconcert", "hint": "synonyms for disconcert", "clues": ["discomfit", "untune", "confuse", "discompose", "put off", "upset", "flurry", "disconcert"]}, {"answer": "discontinue", "hint": "synonyms for discontinue", "clues": ["quit", "break", "break off", "give up", "lay off", "cease", "stop", "discontinue"]}, {"answer": "discourage", "hint": "synonyms for discourage", "clues": ["warn", "admonish", "deter", "discourage"]}, {"answer": "discover", "hint": "synonyms for discover", "clues": ["break", "key", "happen upon", "name", "strike", "observe", "let on", "hear", "chance upon", "come upon", "reveal", "find", "pick up", "disclose", "divulge", "detect", "attain", "light upon", "let out", "key out", "learn", "distinguish", "unwrap", "notice", "come across", "see", "expose", "give away", "identify", "get word", "describe", "fall upon", "bring out", "get a line", "find out", "get wind", "discover"]}, {"answer": "discuss", "hint": "synonyms for discuss", "clues": ["hash out", "talk over", "discourse", "talk about", "discuss"]}, {"answer": "disentangle", "hint": "synonyms for disentangle", "clues": ["unwind", "comb", "extricate", "straighten out", "disencumber", "disembroil", "untangle", "unsnarl", "disinvolve", "comb out", "disentangle"]}, {"answer": "disgorge", "hint": "synonyms for disgorge", "clues": ["upchuck", "shed", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "regorge", "be sick", "regurgitate", "spill", "puke", "barf", "spue", "vomit up", "spew", "sick", "disgorge"]}, {"answer": "dish_out", "hint": "synonyms for dish out", "clues": ["distribute", "lot", "mete out", "serve up", "deal out", "allot", "serve", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish", "dish up", "dish out"]}, {"answer": "dish_up", "hint": "synonyms for dish up", "clues": ["serve up", "dish out", "serve", "dish", "dish up"]}, {"answer": "dislodge", "hint": "synonyms for dislodge", "clues": ["bump", "reposition", "shift", "free", "dislodge"]}, {"answer": "dismantle", "hint": "synonyms for dismantle", "clues": ["break up", "tear down", "raze", "rase", "level", "strip", "disassemble", "break apart", "pull down", "take down", "take apart", "dismantle"]}, {"answer": "dismiss", "hint": "synonyms for dismiss", "clues": ["terminate", "force out", "fire", "usher out", "give the sack", "drop", "send away", "send packing", "displace", "give the axe", "push aside", "discount", "brush off", "ignore", "dissolve", "disregard", "give notice", "throw out", "can", "sack", "dismiss"]}, {"answer": "disoblige", "hint": "synonyms for disoblige", "clues": ["bother", "incommode", "trouble", "inconvenience", "discommode", "put out", "disoblige"]}, {"answer": "dispel", "hint": "synonyms for dispel", "clues": ["turn back", "break up", "disperse", "drive away", "run off", "drive off", "chase away", "drive out", "dissipate", "scatter", "dispel"]}, {"answer": "dispense", "hint": "synonyms for dispense", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "shell out", "parcel out", "administer", "dish out", "dispense"]}, {"answer": "dispense_with", "hint": "synonyms for dispense with", "clues": ["forgo", "foreswear", "waive", "give up", "part with", "relinquish", "spare", "dispense with"]}, {"answer": "disperse", "hint": "synonyms for disperse", "clues": ["distribute", "break up", "circulate", "dot", "dispel", "broadcast", "circularise", "disseminate", "spread", "pass around", "spread out", "diffuse", "propagate", "dust", "dissipate", "scatter", "sprinkle", "disperse"]}, {"answer": "dispirit", "hint": "synonyms for dispirit", "clues": ["depress", "cast down", "dismay", "demoralise", "deject", "get down", "dispirit"]}, {"answer": "displace", "hint": "synonyms for displace", "clues": ["give the axe", "terminate", "dismiss", "move", "fire", "give the sack", "preempt", "send away", "give notice", "force out", "can", "sack", "displace"]}, {"answer": "displume", "hint": "synonyms for displume", "clues": ["pull", "pluck", "deplume", "tear", "displume"]}, {"answer": "disport", "hint": "synonyms for disport", "clues": ["sport", "gambol", "rollick", "lark", "frolic", "frisk", "run around", "amuse", "skylark", "lark about", "romp", "cavort", "divert", "disport"]}, {"answer": "dispose", "hint": "synonyms for dispose", "clues": ["incline", "put away", "cast away", "toss", "toss out", "chuck out", "toss away", "qualify", "fling", "throw away", "cast aside", "throw out", "cast out", "discard", "dispose"]}, {"answer": "disrobe", "hint": "synonyms for disrobe", "clues": ["discase", "undress", "unclothe", "uncase", "strip", "strip down", "peel", "disrobe"]}, {"answer": "dissect", "hint": "synonyms for dissect", "clues": ["take apart", "break down", "analyse", "dissect"]}, {"answer": "dissemble", "hint": "synonyms for dissemble", "clues": ["mask", "pretend", "sham", "act", "feign", "affect", "cloak", "dissemble"]}, {"answer": "disseminate", "hint": "synonyms for disseminate", "clues": ["distribute", "circulate", "disperse", "broadcast", "circularise", "spread", "pass around", "diffuse", "propagate", "disseminate"]}, {"answer": "dissever", "hint": "synonyms for dissever", "clues": ["split up", "divide", "split", "separate", "carve up", "dissever"]}, {"answer": "dissipate", "hint": "synonyms for dissipate", "clues": ["break up", "fool away", "disperse", "shoot", "frivol away", "dispel", "fritter away", "fritter", "fool", "spread out", "scatter", "dissipate"]}, {"answer": "dissociate", "hint": "synonyms for dissociate", "clues": ["disassociate", "divorce", "disunite", "decouple", "disjoint"]}, {"answer": "distill", "hint": "synonyms for distill", "clues": ["make pure", "sublimate", "purify", "distil", "extract", "condense"]}, {"answer": "distinguish", "hint": "synonyms for distinguish", "clues": ["key", "name", "differentiate", "tell", "secern", "discover", "make out", "key out", "recognise", "identify", "separate", "spot", "mark", "severalize", "discern", "signalise", "secernate", "pick out", "describe", "tell apart", "distinguish"]}, {"answer": "distort", "hint": "synonyms for distort", "clues": ["color", "twist", "garble", "wring", "deform", "falsify", "warp", "tinge", "strain", "contort", "twine", "distort"]}, {"answer": "distract", "hint": "synonyms for distract", "clues": ["cark", "trouble", "unhinge", "disquiet", "perturb", "disorder", "deflect", "distract"]}, {"answer": "distribute", "hint": "synonyms for distribute", "clues": ["give out", "deal out", "circulate", "disperse", "deal", "shell out", "circularise", "disseminate", "pass around", "hand out", "diffuse", "propagate", "lot", "mete out", "pass on", "stagger", "allot", "pass out", "dole out", "spread", "broadcast", "parcel out", "administer", "dish out", "distribute"]}, {"answer": "disturb", "hint": "synonyms for disturb", "clues": ["commove", "interrupt", "trouble", "stir up", "raise up", "upset", "touch", "vex", "agitate", "shake up", "disturb"]}, {"answer": "disunite", "hint": "synonyms for disunite", "clues": ["divide", "disassociate", "divorce", "separate", "part", "disjoint", "disunite"]}, {"answer": "divert", "hint": "synonyms for divert", "clues": ["disport", "deviate", "hive off", "amuse", "divert"]}, {"answer": "divest", "hint": "synonyms for divest", "clues": ["undress", "disinvest", "strip", "deprive", "divest"]}, {"answer": "divulge", "hint": "synonyms for divulge", "clues": ["break", "unwrap", "expose", "give away", "let on", "reveal", "bring out", "disclose", "discover", "let out", "divulge"]}, {"answer": "divvy_up", "hint": "synonyms for divvy up", "clues": ["apportion", "portion out", "deal", "share", "divvy up"]}, {"answer": "do_in", "hint": "synonyms for do in", "clues": ["neutralise", "waste", "knock off", "liquidate", "do in"]}, {"answer": "do_it", "hint": "synonyms for do it", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "bang", "have sex", "sleep together", "do it"]}, {"answer": "dole_out", "hint": "synonyms for dole out", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "deal", "dispense", "shell out", "parcel out", "administer", "dish out", "dole out"]}, {"answer": "domesticate", "hint": "synonyms for domesticate", "clues": ["cultivate", "domesticise", "naturalize", "reclaim", "tame", "domesticate"]}, {"answer": "domesticise", "hint": "synonyms for domesticise", "clues": ["reclaim", "domesticate", "domesticize", "tame"]}, {"answer": "domesticize", "hint": "synonyms for domesticize", "clues": ["reclaim", "domesticate", "domesticise", "tame"]}, {"answer": "domiciliate", "hint": "synonyms for domiciliate", "clues": ["domicile", "reside", "put up", "shack", "house", "domiciliate"]}, {"answer": "dominate", "hint": "synonyms for dominate", "clues": ["prevail", "reign", "overtop", "predominate", "master", "rule", "overshadow", "eclipse", "overlook", "command", "dominate"]}, {"answer": "dope_off", "hint": "synonyms for dope off", "clues": ["nod off", "drowse off", "fall asleep", "flake out", "drift off", "doze off", "drop off"]}, {"answer": "douse", "hint": "synonyms for douse", "clues": ["dip", "dowse", "put out", "souse", "soak", "dunk", "duck", "sop", "drench", "plunge", "douse"]}, {"answer": "downplay", "hint": "synonyms for downplay", "clues": ["minimize", "understate", "background", "play down", "downplay"]}, {"answer": "doze_off", "hint": "synonyms for doze off", "clues": ["nod off", "drowse off", "fall asleep", "flake out", "dope off", "drift off"]}, {"answer": "drag_down", "hint": "synonyms for drag down", "clues": ["bear down", "press down on", "weigh down", "drag down"]}, {"answer": "drag_in", "hint": "synonyms for drag in", "clues": ["sweep up", "sweep", "embroil", "tangle", "drag", "drag in"]}, {"answer": "drag_one's_feet", "hint": "synonyms for drag one's feet", "clues": ["drag one's heels", "stall", "shillyshally", "dilly-dally", "procrastinate", "drag one's feet"]}, {"answer": "drag_one's_heels", "hint": "synonyms for drag one's heels", "clues": ["stall", "drag one's feet", "shillyshally", "dilly-dally", "procrastinate", "drag one's heels"]}, {"answer": "dramatise", "hint": "synonyms for dramatise", "clues": ["embellish", "adopt", "dramatize", "blow up", "aggrandise", "embroider", "lard", "pad"]}, {"answer": "dramatize", "hint": "synonyms for dramatize", "clues": ["embellish", "adopt", "blow up", "aggrandise", "dramatise", "embroider", "lard", "pad"]}, {"answer": "draw_back", "hint": "synonyms for draw back", "clues": ["pull away", "move back", "retract", "retire", "pull back", "recede", "withdraw", "draw back"]}, {"answer": "draw_close", "hint": "synonyms for draw close", "clues": ["nestle", "cuddle", "draw near", "near", "go up", "snuggle", "nuzzle", "come near", "come on", "nest", "approach", "draw close"]}, {"answer": "draw_in", "hint": "synonyms for draw in", "clues": ["pull", "suck in", "close in", "curl", "pull in", "retract", "curl up", "draw", "attract", "get in", "move in", "draw in"]}, {"answer": "draw_near", "hint": "synonyms for draw near", "clues": ["come near", "near", "approach", "draw close", "go up", "come on", "draw near"]}, {"answer": "draw_off", "hint": "synonyms for draw off", "clues": ["take out", "draw away", "draw", "pull off", "withdraw", "draw off"]}, {"answer": "draw_out", "hint": "synonyms for draw out", "clues": ["pull", "extract", "prolong", "evoke", "educe", "aspirate", "take out", "pull up", "suck out", "protract", "elicit", "pull out", "extend", "draw out"]}, {"answer": "draw_up", "hint": "synonyms for draw up", "clues": ["haul up", "pull up", "compose", "straighten up", "frame", "draw up"]}, {"answer": "dream_up", "hint": "synonyms for dream up", "clues": ["hatch", "think of", "concoct", "think up", "dream up"]}, {"answer": "drench", "hint": "synonyms for drench", "clues": ["imbrue", "swamp", "soak", "dowse", "sop", "souse", "douse", "drench"]}, {"answer": "dress_down", "hint": "synonyms for dress down", "clues": ["chew up", "jaw", "remonstrate", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "underdress", "berate", "call down", "reprimand", "trounce", "dress down"]}, {"answer": "dress_up", "hint": "synonyms for dress up", "clues": ["trick out", "fancy up", "deck up", "attire", "fig up", "deck out", "bard", "tog out", "rig out", "tog up", "prink", "caparison", "dress", "window-dress", "get up", "trick up", "costume", "overdress", "gussy up", "dress up"]}, {"answer": "drift_off", "hint": "synonyms for drift off", "clues": ["nod off", "drowse off", "fall asleep", "dope off", "flake out", "drift off"]}, {"answer": "drink_down", "hint": "synonyms for drink down", "clues": ["belt down", "down", "toss off", "pop", "pour down", "kill", "drink down"]}, {"answer": "drive_away", "hint": "synonyms for drive away", "clues": ["run off", "turn back", "drive off", "chase away", "drive out", "dispel", "drive away"]}, {"answer": "drive_back", "hint": "synonyms for drive back", "clues": ["repel", "repulse", "fight off", "rebuff", "drive back"]}, {"answer": "drive_off", "hint": "synonyms for drive off", "clues": ["run off", "turn back", "chase away", "drive out", "drive away", "dispel", "drive off"]}, {"answer": "drive_out", "hint": "synonyms for drive out", "clues": ["turn back", "drive away", "dispel", "rout out", "rouse", "clear out", "run off", "drive off", "chase away", "expectorate", "force out", "drive out"]}, {"answer": "drop_back", "hint": "synonyms for drop back", "clues": ["hang back", "trail", "get behind", "drag", "drop behind", "drop back"]}, {"answer": "drop_behind", "hint": "synonyms for drop behind", "clues": ["drop back", "hang back", "trail", "get behind", "drag", "drop behind"]}, {"answer": "drop_by_the_wayside", "hint": "synonyms for drop by the wayside", "clues": ["chuck up the sponge", "quit", "throw in the towel", "drop out", "give up", "throw in", "fall by the wayside", "drop by the wayside"]}, {"answer": "drop_dead", "hint": "synonyms for drop dead", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "drop dead"]}, {"answer": "drop_off", "hint": "synonyms for drop off", "clues": ["nod off", "fall back", "slip", "fall behind", "drowse off", "drop", "lose", "unload", "discharge", "drop away", "fall away", "put down", "drift off", "doze off", "set down", "fall asleep", "recede", "flake out", "drop off"]}, {"answer": "drop_out", "hint": "synonyms for drop out", "clues": ["chuck up the sponge", "quit", "throw in the towel", "give up", "throw in", "fall by the wayside", "drop by the wayside", "drop out"]}, {"answer": "drop_the_ball", "hint": "synonyms for drop the ball", "clues": ["blunder", "goof", "boob", "sin", "drop the ball"]}, {"answer": "drowse_off", "hint": "synonyms for drowse off", "clues": ["nod off", "fall asleep", "flake out", "dope off", "drift off", "drowse off"]}, {"answer": "drub", "hint": "synonyms for drub", "clues": ["bat", "thrash", "lick", "cream", "clobber", "drub"]}, {"answer": "drum_out", "hint": "synonyms for drum out", "clues": ["oust", "boot out", "kick out", "throw out", "expel", "drum out"]}, {"answer": "dry_up", "hint": "synonyms for dry up", "clues": ["dehydrate", "exsiccate", "mummify", "dry up"]}, {"answer": "dumbfound", "hint": "synonyms for dumbfound", "clues": ["mystify", "pose", "nonplus", "get", "perplex", "flummox", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "dumbfound"]}, {"answer": "dummy_up", "hint": "synonyms for dummy up", "clues": ["clam up", "button up", "keep mum", "close up", "belt up", "be quiet", "shut up", "dummy", "dummy up"]}, {"answer": "dwell", "hint": "synonyms for dwell", "clues": ["lie", "harp", "lie in", "brood", "consist", "populate", "inhabit", "dwell"]}, {"answer": "earn", "hint": "synonyms for earn", "clues": ["make", "realise", "pull in", "bring in", "gain", "garner", "take in", "clear", "earn"]}, {"answer": "ease_off", "hint": "synonyms for ease off", "clues": ["flag", "let up", "slacken off", "ease up", "ease off"]}, {"answer": "ease_up", "hint": "synonyms for ease up", "clues": ["flag", "let up", "move over", "give way", "ease off", "slacken off", "yield", "give", "ease up"]}, {"answer": "eat", "hint": "synonyms for eat", "clues": ["corrode", "rust", "feed", "wipe out", "eat on", "exhaust", "run through", "deplete", "eat up", "consume", "use up", "eat"]}, {"answer": "eat_at", "hint": "synonyms for eat at", "clues": ["gnaw at", "gnaw", "erode", "wear away", "eat at"]}, {"answer": "eat_up", "hint": "synonyms for eat up", "clues": ["swallow", "immerse", "bury", "consume", "wipe out", "polish off", "eat", "exhaust", "run through", "deplete", "finish", "use up", "swallow up", "eat up"]}, {"answer": "ebb_away", "hint": "synonyms for ebb away", "clues": ["ebb down", "ebb off", "ebb out", "ebb", "ebb away"]}, {"answer": "ebb_down", "hint": "synonyms for ebb down", "clues": ["ebb away", "ebb off", "ebb out", "ebb", "ebb down"]}, {"answer": "ebb_off", "hint": "synonyms for ebb off", "clues": ["ebb down", "ebb away", "ebb out", "ebb", "ebb off"]}, {"answer": "ebb_out", "hint": "synonyms for ebb out", "clues": ["ebb down", "ebb away", "ebb off", "ebb", "ebb out"]}, {"answer": "economise", "hint": "synonyms for economise", "clues": ["economize", "save", "conserve", "husband"]}, {"answer": "economize", "hint": "synonyms for economize", "clues": ["conserve", "save", "economise", "husband"]}, {"answer": "edit", "hint": "synonyms for edit", "clues": ["blue-pencil", "redact", "delete", "cut", "edit out", "edit"]}, {"answer": "educate", "hint": "synonyms for educate", "clues": ["cultivate", "civilize", "prepare", "train", "school", "develop", "educate"]}, {"answer": "educe", "hint": "synonyms for educe", "clues": ["derive", "extract", "draw out", "elicit", "evoke", "educe"]}, {"answer": "eff", "hint": "synonyms for eff", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "do it", "bang", "have sex", "sleep together", "eff"]}, {"answer": "efface", "hint": "synonyms for efface", "clues": ["wipe off", "rub out", "score out", "obliterate", "erase", "efface"]}, {"answer": "effervesce", "hint": "synonyms for effervesce", "clues": ["froth", "form bubbles", "sparkle", "foam", "fizz", "effervesce"]}, {"answer": "eject", "hint": "synonyms for eject", "clues": ["squirt", "turf out", "boot out", "expel", "exhaust", "squeeze out", "chuck out", "release", "force out", "exclude", "discharge", "eject"]}, {"answer": "elapse", "hint": "synonyms for elapse", "clues": ["glide by", "lapse", "go along", "go by", "slip away", "pass", "slip by"]}, {"answer": "elate", "hint": "synonyms for elate", "clues": ["lift up", "uplift", "pick up", "intoxicate", "elate"]}, {"answer": "elevate", "hint": "synonyms for elevate", "clues": ["promote", "get up", "bring up", "lift", "advance", "raise", "kick upstairs", "upgrade", "elevate"]}, {"answer": "elicit", "hint": "synonyms for elicit", "clues": ["extract", "provoke", "draw out", "raise", "fire", "evoke", "kindle", "educe", "arouse", "elicit"]}, {"answer": "eliminate", "hint": "synonyms for eliminate", "clues": ["obviate", "rid of", "wipe out", "carry off", "decimate", "egest", "excrete", "annihilate", "extinguish", "do away with", "winnow out", "rule out", "reject", "pass", "eradicate", "get rid of", "eliminate"]}, {"answer": "elucidate", "hint": "synonyms for elucidate", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "clarify", "shed light on", "clear", "elucidate"]}, {"answer": "elude", "hint": "synonyms for elude", "clues": ["escape", "put off", "evade", "dodge", "hedge", "skirt", "bilk", "circumvent", "duck", "parry", "fudge", "sidestep", "elude"]}, {"answer": "embarrass", "hint": "synonyms for embarrass", "clues": ["blockade", "block", "obstruct", "stymie", "stymy", "hinder", "abash", "embarrass"]}, {"answer": "embed", "hint": "synonyms for embed", "clues": ["implant", "imbed", "plant", "engraft", "embed"]}, {"answer": "embellish", "hint": "synonyms for embellish", "clues": ["decorate", "ornament", "blow up", "dramatize", "aggrandise", "embroider", "beautify", "adorn", "grace", "prettify", "lard", "fancify", "pad", "deck", "embellish"]}, {"answer": "embezzle", "hint": "synonyms for embezzle", "clues": ["peculate", "misappropriate", "malversate", "defalcate", "embezzle"]}, {"answer": "embody", "hint": "synonyms for embody", "clues": ["be", "personify", "substantiate", "body forth", "incarnate", "embody"]}, {"answer": "embrocate", "hint": "synonyms for embrocate", "clues": ["oil", "anele", "inunct", "anoint", "embrocate"]}, {"answer": "embroider", "hint": "synonyms for embroider", "clues": ["embellish", "blow up", "dramatize", "aggrandise", "lard", "broider", "pad"]}, {"answer": "embroil", "hint": "synonyms for embroil", "clues": ["sweep up", "sweep", "tangle", "drag", "drag in", "embroil"]}, {"answer": "emerge", "hint": "synonyms for emerge", "clues": ["go forth", "egress", "issue", "come out", "come forth", "emerge"]}, {"answer": "emit", "hint": "synonyms for emit", "clues": ["give out", "let out", "breathe", "pass off", "utter", "give off", "let loose", "emit"]}, {"answer": "emphasise", "hint": "synonyms for emphasise", "clues": ["accent", "stress", "punctuate", "underscore", "underline", "emphasize", "accentuate"]}, {"answer": "emphasize", "hint": "synonyms for emphasize", "clues": ["accent", "stress", "underline", "emphasise", "underscore", "accentuate", "punctuate"]}, {"answer": "empower", "hint": "synonyms for empower", "clues": ["invest", "endow", "indue", "authorise", "endue", "gift", "empower"]}, {"answer": "enamor", "hint": "synonyms for enamor", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamour", "charm", "bewitch"]}, {"answer": "enamour", "hint": "synonyms for enamour", "clues": ["enchant", "captivate", "fascinate", "capture", "entrance", "beguile", "catch", "becharm", "enamor", "charm", "bewitch"]}, {"answer": "encamp", "hint": "synonyms for encamp", "clues": ["camp", "bivouac", "camp out", "tent", "encamp"]}, {"answer": "enchant", "hint": "synonyms for enchant", "clues": ["captivate", "fascinate", "capture", "hex", "beguile", "enrapture", "catch", "becharm", "enamour", "ravish", "delight", "charm", "enthrall", "witch", "entrance", "glamour", "jinx", "transport", "bewitch", "enchant"]}, {"answer": "encipher", "hint": "synonyms for encipher", "clues": ["write in code", "inscribe", "cypher", "cipher", "encrypt", "code"]}, {"answer": "enclose", "hint": "synonyms for enclose", "clues": ["close in", "wrap", "enwrap", "put in", "insert", "enfold", "hold in", "introduce", "shut in", "envelop", "confine", "stick in", "inclose"]}, {"answer": "enclothe", "hint": "synonyms for enclothe", "clues": ["garment", "clothe", "tog", "garb", "apparel", "habilitate", "fit out", "dress", "raiment"]}, {"answer": "encourage", "hint": "synonyms for encourage", "clues": ["advance", "promote", "boost", "further", "encourage"]}, {"answer": "encroach", "hint": "synonyms for encroach", "clues": ["infringe", "impinge", "entrench", "encroach"]}, {"answer": "encrypt", "hint": "synonyms for encrypt", "clues": ["write in code", "inscribe", "cypher", "cipher", "code", "encrypt"]}, {"answer": "end_up", "hint": "synonyms for end up", "clues": ["finish up", "wind up", "finish", "land up", "fetch up", "end up"]}, {"answer": "endanger", "hint": "synonyms for endanger", "clues": ["expose", "menace", "scupper", "jeopardize", "queer", "peril", "threaten", "imperil", "endanger"]}, {"answer": "endorse", "hint": "synonyms for endorse", "clues": ["support", "certify", "back", "plump for", "indorse", "second", "plunk for"]}, {"answer": "endow", "hint": "synonyms for endow", "clues": ["dower", "indue", "empower", "invest", "endue", "gift", "endow"]}, {"answer": "endue", "hint": "synonyms for endue", "clues": ["endow", "indue", "empower", "invest", "gift", "endue"]}, {"answer": "endure", "hint": "synonyms for endure", "clues": ["wear", "go", "hold out", "last", "put up", "abide", "die hard", "hold up", "survive", "run", "suffer", "support", "prevail", "persist", "stomach", "brave", "live on", "live", "weather", "bear", "tolerate", "brook", "digest", "stand", "brave out", "stick out", "endure"]}, {"answer": "energise", "hint": "synonyms for energise", "clues": ["arouse", "stimulate", "brace", "perk up", "energize", "excite"]}, {"answer": "energize", "hint": "synonyms for energize", "clues": ["energise", "arouse", "stimulate", "brace", "perk up", "excite"]}, {"answer": "enfold", "hint": "synonyms for enfold", "clues": ["wrap", "envelop", "enclose", "enwrap", "enfold"]}, {"answer": "engage", "hint": "synonyms for engage", "clues": ["employ", "engross", "lease", "charter", "pursue", "betroth", "lock", "plight", "absorb", "hire", "enlist", "take", "affiance", "prosecute", "operate", "rent", "wage", "mesh", "occupy", "engage"]}, {"answer": "engender", "hint": "synonyms for engender", "clues": ["mother", "bring forth", "sire", "father", "breed", "generate", "spawn", "beget", "get", "engender"]}, {"answer": "englut", "hint": "synonyms for englut", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "englut"]}, {"answer": "engorge", "hint": "synonyms for engorge", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "engorge"]}, {"answer": "engraft", "hint": "synonyms for engraft", "clues": ["embed", "ingraft", "imbed", "plant", "graft", "implant"]}, {"answer": "engrave", "hint": "synonyms for engrave", "clues": ["grave", "scratch", "etch", "inscribe", "engrave"]}, {"answer": "engross", "hint": "synonyms for engross", "clues": ["engulf", "immerse", "steep", "absorb", "occupy", "engage", "plunge", "soak up", "engross"]}, {"answer": "engulf", "hint": "synonyms for engulf", "clues": ["immerse", "steep", "absorb", "engross", "plunge", "soak up", "engulf"]}, {"answer": "enjoy", "hint": "synonyms for enjoy", "clues": ["revel", "relish", "bask", "delight", "savor", "love", "enjoy"]}, {"answer": "enkindle", "hint": "synonyms for enkindle", "clues": ["inflame", "provoke", "fire", "evoke", "raise", "kindle", "arouse", "conflagrate", "elicit"]}, {"answer": "enlace", "hint": "synonyms for enlace", "clues": ["intertwine", "interlace", "entwine", "lace", "twine", "enlace"]}, {"answer": "enlarge", "hint": "synonyms for enlarge", "clues": ["expatiate", "magnify", "expound", "lucubrate", "exposit", "expand", "dilate", "elaborate", "blow up", "flesh out", "enlarge"]}, {"answer": "enlighten", "hint": "synonyms for enlighten", "clues": ["sort out", "edify", "irradiate", "crystalise", "illuminate", "straighten out", "clear up", "shed light on", "elucidate", "clear", "enlighten"]}, {"answer": "enliven", "hint": "synonyms for enliven", "clues": ["liven", "exalt", "invigorate", "liven up", "inspire", "animate", "enliven"]}, {"answer": "enounce", "hint": "synonyms for enounce", "clues": ["articulate", "say", "enunciate", "pronounce", "sound out", "enounce"]}, {"answer": "enquire", "hint": "synonyms for enquire", "clues": ["investigate", "ask", "inquire", "wonder"]}, {"answer": "enrapture", "hint": "synonyms for enrapture", "clues": ["transport", "enchant", "enthral", "ravish", "delight", "enrapture"]}, {"answer": "enrol", "hint": "synonyms for enrol", "clues": ["enroll", "enter", "inscribe", "recruit"]}, {"answer": "enroll", "hint": "synonyms for enroll", "clues": ["enrol", "inscribe", "recruit", "enter"]}, {"answer": "ensnare", "hint": "synonyms for ensnare", "clues": ["snare", "frame", "set up", "trammel", "entrap", "trap", "ensnare"]}, {"answer": "ensure", "hint": "synonyms for ensure", "clues": ["insure", "ascertain", "secure", "control", "see", "see to it", "assure", "guarantee", "check", "ensure"]}, {"answer": "entangle", "hint": "synonyms for entangle", "clues": ["mat", "tangle", "snarl", "mire"]}, {"answer": "enter", "hint": "synonyms for enter", "clues": ["enrol", "insert", "introduce", "infix", "go into", "record", "participate", "get in", "move into", "go in", "accede", "embark", "put down", "inscribe", "figure", "recruit", "come in", "enter"]}, {"answer": "entertain", "hint": "synonyms for entertain", "clues": ["harbour", "think of", "flirt with", "nurse", "think about", "toy with", "hold", "entertain"]}, {"answer": "enthral", "hint": "synonyms for enthral", "clues": ["transport", "enchant", "enrapture", "ravish", "delight", "enthrall"]}, {"answer": "enthrall", "hint": "synonyms for enthrall", "clues": ["transport", "enchant", "enrapture", "enthral", "ravish", "delight"]}, {"answer": "entomb", "hint": "synonyms for entomb", "clues": ["inhume", "bury", "lay to rest", "inter", "entomb"]}, {"answer": "entrap", "hint": "synonyms for entrap", "clues": ["ensnare", "frame", "set up", "trammel", "snare", "trap", "entrap"]}, {"answer": "entreat", "hint": "synonyms for entreat", "clues": ["conjure", "beseech", "press", "adjure", "bid", "entreat"]}, {"answer": "entrench", "hint": "synonyms for entrench", "clues": ["impinge", "intrench", "encroach", "dig in"]}, {"answer": "entrust", "hint": "synonyms for entrust", "clues": ["intrust", "trust", "commit", "confide", "leave"]}, {"answer": "entwine", "hint": "synonyms for entwine", "clues": ["intertwine", "interlace", "knit", "lace", "enlace", "twine", "entwine"]}, {"answer": "enumerate", "hint": "synonyms for enumerate", "clues": ["number", "itemise", "recite", "count", "numerate"]}, {"answer": "enunciate", "hint": "synonyms for enunciate", "clues": ["articulate", "say", "vocalise", "enounce", "pronounce", "sound out", "enunciate"]}, {"answer": "envelop", "hint": "synonyms for envelop", "clues": ["wrap", "enfold", "enclose", "enwrap", "envelop"]}, {"answer": "environ", "hint": "synonyms for environ", "clues": ["skirt", "surround", "border", "ring", "environ"]}, {"answer": "envision", "hint": "synonyms for envision", "clues": ["visualize", "see", "fancy", "figure", "picture", "foresee", "project", "image", "envision"]}, {"answer": "enwrap", "hint": "synonyms for enwrap", "clues": ["wrap", "enfold", "envelop", "enclose", "enwrap"]}, {"answer": "equalise", "hint": "synonyms for equalise", "clues": ["get even", "equal", "equalize", "equate", "match"]}, {"answer": "equalize", "hint": "synonyms for equalize", "clues": ["get even", "match", "equal", "equate", "equalise"]}, {"answer": "equate", "hint": "synonyms for equate", "clues": ["liken", "correspond", "match", "equal", "equalize", "compare", "equate"]}, {"answer": "equivocate", "hint": "synonyms for equivocate", "clues": ["palter", "beat around the bush", "prevaricate", "tergiversate", "equivocate"]}, {"answer": "eradicate", "hint": "synonyms for eradicate", "clues": ["extirpate", "uproot", "wipe out", "carry off", "decimate", "root out", "annihilate", "extinguish", "eliminate", "exterminate", "eradicate"]}, {"answer": "erase", "hint": "synonyms for erase", "clues": ["wipe off", "rub out", "delete", "score out", "wipe out", "efface", "erase"]}, {"answer": "erode", "hint": "synonyms for erode", "clues": ["gnaw at", "gnaw", "wear away", "eat at", "eat away", "fret", "erode"]}, {"answer": "err", "hint": "synonyms for err", "clues": ["mistake", "stray", "drift", "slip", "err"]}, {"answer": "eruct", "hint": "synonyms for eruct", "clues": ["belch", "burp", "bubble", "spew", "spew out", "eruct"]}, {"answer": "erupt", "hint": "synonyms for erupt", "clues": ["break", "push through", "belch", "extravasate", "burst", "take fire", "come out", "flare up", "flare", "break open", "break out", "ignite", "recrudesce", "catch fire", "combust", "conflagrate", "break through", "irrupt", "burst out", "erupt"]}, {"answer": "espouse", "hint": "synonyms for espouse", "clues": ["hook up with", "conjoin", "follow", "adopt", "marry", "wed", "get hitched with", "sweep up", "get married", "embrace", "espouse"]}, {"answer": "establish", "hint": "synonyms for establish", "clues": ["base", "institute", "make", "demonstrate", "set up", "found", "shew", "constitute", "plant", "prove", "launch", "ground", "instal", "lay down", "show", "give", "build", "establish"]}, {"answer": "evade", "hint": "synonyms for evade", "clues": ["elude", "put off", "dodge", "hedge", "skirt", "bilk", "circumvent", "duck", "parry", "fudge", "sidestep", "evade"]}, {"answer": "evaluate", "hint": "synonyms for evaluate", "clues": ["value", "judge", "appraise", "assess", "measure", "valuate", "pass judgment"]}, {"answer": "evanesce", "hint": "synonyms for evanesce", "clues": ["blow over", "fleet", "pass off", "pass", "fade", "evanesce"]}, {"answer": "evaporate", "hint": "synonyms for evaporate", "clues": ["disappear", "vaporise", "melt", "evaporate"]}, {"answer": "even_off", "hint": "synonyms for even off", "clues": ["even out", "make up", "counterbalance", "even up", "correct", "compensate", "even off"]}, {"answer": "even_out", "hint": "synonyms for even out", "clues": ["even off", "counterbalance", "level", "flush", "correct", "compensate", "even", "make up", "even up", "even out"]}, {"answer": "even_up", "hint": "synonyms for even up", "clues": ["even out", "make up", "even off", "counterbalance", "jog", "correct", "compensate", "square up", "even up"]}, {"answer": "evoke", "hint": "synonyms for evoke", "clues": ["put forward", "fire", "educe", "invoke", "kindle", "paint a picture", "conjure", "kick up", "conjure up", "bring up", "extract", "provoke", "draw out", "suggest", "raise", "arouse", "stir", "call down", "elicit", "call forth", "evoke"]}, {"answer": "exaggerate", "hint": "synonyms for exaggerate", "clues": ["magnify", "hyperbolize", "overdraw", "overstate", "amplify", "overdo", "exaggerate"]}, {"answer": "exalt", "hint": "synonyms for exalt", "clues": ["thrill", "exhilarate", "proclaim", "beatify", "extol", "invigorate", "laud", "inspire", "animate", "tickle pink", "inebriate", "enliven", "glorify", "exalt"]}, {"answer": "examine", "hint": "synonyms for examine", "clues": ["canvas", "see", "prove", "try", "test", "try out", "probe", "essay", "analyse", "study", "examine"]}, {"answer": "exasperate", "hint": "synonyms for exasperate", "clues": ["exacerbate", "worsen", "incense", "aggravate", "infuriate", "exasperate"]}, {"answer": "excavate", "hint": "synonyms for excavate", "clues": ["hollow", "dig up", "unearth", "turn up", "dig", "excavate"]}, {"answer": "exceed", "hint": "synonyms for exceed", "clues": ["outmatch", "outstrip", "top", "go past", "surmount", "transcend", "outgo", "surpass", "pass", "outdo", "overstep", "outperform", "exceed"]}, {"answer": "except", "hint": "synonyms for except", "clues": ["leave off", "leave out", "take out", "omit", "exclude", "demur", "except"]}, {"answer": "excite", "hint": "synonyms for excite", "clues": ["commove", "shake", "energize", "rouse", "turn on", "stimulate", "sex", "charge up", "agitate", "stir", "wind up", "charge", "shake up", "excite"]}, {"answer": "exclaim", "hint": "synonyms for exclaim", "clues": ["promulgate", "call out", "outcry", "proclaim", "cry out", "cry", "shout", "exclaim"]}, {"answer": "exclude", "hint": "synonyms for exclude", "clues": ["leave off", "leave out", "eject", "shut", "turf out", "omit", "boot out", "debar", "bar", "take out", "chuck out", "shut out", "except", "keep out", "exclude"]}, {"answer": "excogitate", "hint": "synonyms for excogitate", "clues": ["think over", "mull", "formulate", "ruminate", "contemplate", "forge", "speculate", "devise", "contrive", "muse", "mull over", "ponder", "reflect", "chew over", "meditate", "invent", "excogitate"]}, {"answer": "excoriate", "hint": "synonyms for excoriate", "clues": ["chafe", "objurgate", "condemn", "reprobate", "decry", "excoriate"]}, {"answer": "exculpate", "hint": "synonyms for exculpate", "clues": ["exonerate", "assoil", "acquit", "discharge", "clear", "exculpate"]}, {"answer": "execrate", "hint": "synonyms for execrate", "clues": ["accurse", "comminate", "abhor", "loathe", "anathemise", "abominate", "anathematize", "execrate"]}, {"answer": "execute", "hint": "synonyms for execute", "clues": ["do", "fulfill", "carry out", "action", "carry through", "perform", "accomplish", "put to death", "run", "execute"]}, {"answer": "exhale", "hint": "synonyms for exhale", "clues": ["emanate", "expire", "give forth", "breathe out", "exhale"]}, {"answer": "exhilarate", "hint": "synonyms for exhilarate", "clues": ["thrill", "tickle pink", "inebriate", "beatify", "exalt", "exhilarate"]}, {"answer": "exhort", "hint": "synonyms for exhort", "clues": ["urge", "barrack", "pep up", "inspire", "root on", "press", "cheer", "urge on", "exhort"]}, {"answer": "exist", "hint": "synonyms for exist", "clues": ["survive", "live", "be", "subsist", "exist"]}, {"answer": "exonerate", "hint": "synonyms for exonerate", "clues": ["assoil", "acquit", "exculpate", "discharge", "clear", "exonerate"]}, {"answer": "expand", "hint": "synonyms for expand", "clues": ["expatiate", "thrive", "expound", "lucubrate", "exposit", "inflate", "dilate", "elaborate", "blow up", "boom", "flourish", "spread out", "amplify", "enlarge", "extend", "flesh out", "expand"]}, {"answer": "expatiate", "hint": "synonyms for expatiate", "clues": ["expound", "lucubrate", "exposit", "expand", "dilate", "elaborate", "enlarge", "flesh out", "expatiate"]}, {"answer": "expect", "hint": "synonyms for expect", "clues": ["look", "ask", "wait", "have a bun in the oven", "carry", "require", "gestate", "bear", "anticipate", "expect"]}, {"answer": "expectorate", "hint": "synonyms for expectorate", "clues": ["cough up", "spit out", "spit up", "drive out", "cough out", "clear out", "expectorate"]}, {"answer": "expel", "hint": "synonyms for expel", "clues": ["oust", "eject", "boot out", "kick out", "rout out", "drum out", "exhaust", "rout", "release", "throw out", "discharge", "expel"]}, {"answer": "expire", "hint": "synonyms for expire", "clues": ["decease", "cash in one's chips", "go", "pop off", "breathe out", "exhale", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "run out", "pass away", "expire"]}, {"answer": "explode", "hint": "synonyms for explode", "clues": ["irrupt", "break loose", "set off", "detonate", "burst forth", "burst", "blow up", "explode"]}, {"answer": "exposit", "hint": "synonyms for exposit", "clues": ["expatiate", "expound", "lucubrate", "dilate", "expand", "elaborate", "set forth", "enlarge", "flesh out", "exposit"]}, {"answer": "expound", "hint": "synonyms for expound", "clues": ["expatiate", "lucubrate", "dilate", "expand", "elaborate", "exposit", "set forth", "enlarge", "flesh out", "expound"]}, {"answer": "expurgate", "hint": "synonyms for expurgate", "clues": ["castrate", "bowdlerise", "shorten", "expurgate"]}, {"answer": "exsert", "hint": "synonyms for exsert", "clues": ["stretch forth", "hold out", "stretch out", "put out", "extend", "exsert"]}, {"answer": "extend", "hint": "synonyms for extend", "clues": ["poke out", "go", "stretch", "hold out", "expand", "continue", "put out", "prolong", "unfold", "carry", "lead", "stretch out", "cover", "reach out", "strain", "protract", "run", "gallop", "offer", "stretch forth", "exsert", "broaden", "draw out", "widen", "pass", "extend"]}, {"answer": "exteriorize", "hint": "synonyms for exteriorize", "clues": ["objectify", "externalise", "bring outside", "exteriorise"]}, {"answer": "exterminate", "hint": "synonyms for exterminate", "clues": ["extirpate", "uproot", "kill off", "root out", "eradicate", "exterminate"]}, {"answer": "externalise", "hint": "synonyms for externalise", "clues": ["exteriorize", "objectify", "project", "externalize"]}, {"answer": "externalize", "hint": "synonyms for externalize", "clues": ["exteriorize", "objectify", "externalise", "project"]}, {"answer": "extinguish", "hint": "synonyms for extinguish", "clues": ["snuff out", "press out", "crush out", "blow out", "wipe out", "carry off", "decimate", "eradicate", "annihilate", "do away with", "eliminate", "stub out", "get rid of", "quench", "extinguish"]}, {"answer": "extirpate", "hint": "synonyms for extirpate", "clues": ["exterminate", "uproot", "eradicate", "root out", "deracinate", "extirpate"]}, {"answer": "extol", "hint": "synonyms for extol", "clues": ["laud", "exalt", "glorify", "proclaim", "extol"]}, {"answer": "extort", "hint": "synonyms for extort", "clues": ["wring from", "gouge", "wring", "rack", "squeeze", "extort"]}, {"answer": "extrapolate", "hint": "synonyms for extrapolate", "clues": ["interpolate", "infer", "generalise", "extrapolate"]}, {"answer": "exuberate", "hint": "synonyms for exuberate", "clues": ["triumph", "exult", "rejoice", "jubilate", "exuberate"]}, {"answer": "exude", "hint": "synonyms for exude", "clues": ["transude", "exudate", "ooze out", "ooze", "exude"]}, {"answer": "exult", "hint": "synonyms for exult", "clues": ["exuberate", "rejoice", "jubilate", "jump for joy", "walk on air", "triumph", "be on cloud nine", "exult"]}, {"answer": "exuviate", "hint": "synonyms for exuviate", "clues": ["slough", "moult", "shed", "exuviate"]}, {"answer": "fabricate", "hint": "synonyms for fabricate", "clues": ["construct", "make up", "cook up", "manufacture", "invent", "fabricate"]}, {"answer": "fag_out", "hint": "synonyms for fag out", "clues": ["wear", "tire out", "wear down", "fag", "jade", "outwear", "tire", "wear upon", "wear out", "fatigue", "fag out"]}, {"answer": "fail", "hint": "synonyms for fail", "clues": ["break", "go", "betray", "give out", "go bad", "break down", "run out", "miscarry", "give way", "bomb", "flunk", "conk out", "flush it", "die", "neglect", "go wrong", "fail"]}, {"answer": "fall_apart", "hint": "synonyms for fall apart", "clues": ["break", "wear", "separate", "split up", "come apart", "go to pieces", "crumble", "wear out", "bust", "fall apart"]}, {"answer": "fall_asleep", "hint": "synonyms for fall asleep", "clues": ["nod off", "drowse off", "flake out", "dope off", "drift off", "fall asleep"]}, {"answer": "fall_away", "hint": "synonyms for fall away", "clues": ["fall off", "drop away", "slip", "drop off", "fall away"]}, {"answer": "fall_back", "hint": "synonyms for fall back", "clues": ["lapse", "drop off", "resort", "fall behind", "retrogress", "lag", "regress", "relapse", "lose", "recede", "recidivate", "dawdle", "recur", "fall back"]}, {"answer": "fall_behind", "hint": "synonyms for fall behind", "clues": ["fall back", "lag", "lose", "recede", "dawdle", "drop off", "fall behind"]}, {"answer": "fall_by_the_wayside", "hint": "synonyms for fall by the wayside", "clues": ["chuck up the sponge", "quit", "throw in the towel", "drop out", "give up", "throw in", "drop by the wayside", "fall by the wayside"]}, {"answer": "fall_in", "hint": "synonyms for fall in", "clues": ["break", "join", "cave in", "give way", "get together", "collapse", "founder", "give", "fall in"]}, {"answer": "fall_into_place", "hint": "synonyms for fall into place", "clues": ["penetrate", "click", "come home", "sink in", "get through", "dawn", "get across", "fall into place"]}, {"answer": "fall_out", "hint": "synonyms for fall out", "clues": ["go on", "follow", "take place", "occur", "happen", "come about", "pass off", "pass", "hap", "fall out"]}, {"answer": "fall_upon", "hint": "synonyms for fall upon", "clues": ["come across", "happen upon", "strike", "chance upon", "come upon", "attain", "discover", "light upon", "fall upon"]}, {"answer": "falsify", "hint": "synonyms for falsify", "clues": ["alter", "manipulate", "cook", "garble", "misrepresent", "fake", "distort", "warp", "wangle", "interpolate", "fudge", "falsify"]}, {"answer": "fancy_up", "hint": "synonyms for fancy up", "clues": ["trick out", "get up", "trick up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "fancy up"]}, {"answer": "farm_out", "hint": "synonyms for farm out", "clues": ["job", "rent out", "hire out", "subcontract", "farm out"]}, {"answer": "fascinate", "hint": "synonyms for fascinate", "clues": ["enchant", "captivate", "capture", "beguile", "catch", "becharm", "enamour", "transfix", "charm", "intrigue", "entrance", "spellbind", "grip", "bewitch", "fascinate"]}, {"answer": "fasten_on", "hint": "synonyms for fasten on", "clues": ["take up", "seize on", "hook on", "latch on", "fasten on"]}, {"answer": "fatten", "hint": "synonyms for fatten", "clues": ["fill out", "plump", "fatten out", "plump out", "fatten up", "fat", "flesh out", "fatten"]}, {"answer": "fatten_out", "hint": "synonyms for fatten out", "clues": ["fill out", "plump", "fatten", "plump out", "fatten up", "fat", "flesh out", "fatten out"]}, {"answer": "fatten_up", "hint": "synonyms for fatten up", "clues": ["fill out", "plump", "fatten out", "fatten", "plump out", "fat", "flesh out", "fatten up"]}, {"answer": "feel_for", "hint": "synonyms for feel for", "clues": ["condole with", "compassionate", "sympathize with", "pity", "feel for"]}, {"answer": "feign", "hint": "synonyms for feign", "clues": ["simulate", "pretend", "sham", "affect", "dissemble", "assume", "feign"]}, {"answer": "felt_up", "hint": "synonyms for felt up", "clues": ["mat", "matt-up", "matte up", "matte", "felt", "felt up"]}, {"answer": "fence_in", "hint": "synonyms for fence in", "clues": ["fence", "palisade", "wall", "surround", "fence in"]}, {"answer": "fend_off", "hint": "synonyms for fend off", "clues": ["obviate", "avert", "head off", "debar", "forefend", "ward off", "stave off", "avoid", "deflect", "fend off"]}, {"answer": "fertilise", "hint": "synonyms for fertilise", "clues": ["feed", "inseminate", "fecundate", "fertilize"]}, {"answer": "fertilize", "hint": "synonyms for fertilize", "clues": ["feed", "fertilise", "inseminate", "fecundate"]}, {"answer": "festinate", "hint": "synonyms for festinate", "clues": ["rush", "hurry", "look sharp", "hasten", "festinate"]}, {"answer": "fetch_up", "hint": "synonyms for fetch up", "clues": ["finish up", "wind up", "finish", "land up", "end up", "fetch up"]}, {"answer": "fig_out", "hint": "synonyms for fig out", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up"]}, {"answer": "fig_up", "hint": "synonyms for fig up", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "fig up"]}, {"answer": "fight_back", "hint": "synonyms for fight back", "clues": ["fight down", "oppose", "fight", "defend", "fight back"]}, {"answer": "fight_down", "hint": "synonyms for fight down", "clues": ["fight back", "oppose", "fight", "defend", "fight down"]}, {"answer": "fight_off", "hint": "synonyms for fight off", "clues": ["repel", "repulse", "drive back", "rebuff", "fight off"]}, {"answer": "figure_out", "hint": "synonyms for figure out", "clues": ["solve", "work", "work out", "lick", "puzzle out", "figure out"]}, {"answer": "filch", "hint": "synonyms for filch", "clues": ["lift", "abstract", "pilfer", "pinch", "snarf", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage", "filch"]}, {"answer": "fill_in", "hint": "synonyms for fill in", "clues": ["fill out", "shade", "substitute", "complete", "make out", "stand in", "sub", "fill in"]}, {"answer": "fill_out", "hint": "synonyms for fill out", "clues": ["round out", "plump", "fatten", "plump out", "fill in", "fat", "fatten out", "make out", "fatten up", "round", "complete", "eke out", "pad", "flesh out", "fill out"]}, {"answer": "filter_out", "hint": "synonyms for filter out", "clues": ["separate out", "strain", "filter", "filtrate", "filter out"]}, {"answer": "find_out", "hint": "synonyms for find out", "clues": ["get wind", "see", "catch out", "learn", "hear", "check", "get word", "find", "pick up", "determine", "get a line", "discover", "ascertain", "watch", "find out"]}, {"answer": "fine-tune", "hint": "synonyms for fine-tune", "clues": ["down", "graduate", "refine", "calibrate", "polish", "tweak", "fine-tune"]}, {"answer": "finish_off", "hint": "synonyms for finish off", "clues": ["wrap up", "finish up", "get through", "polish off", "mop up", "clear up", "finish off"]}, {"answer": "finish_up", "hint": "synonyms for finish up", "clues": ["finish off", "get through", "polish off", "mop up", "end up", "wrap up", "clear up", "wind up", "finish", "land up", "fetch up", "finish up"]}, {"answer": "fire_up", "hint": "synonyms for fire up", "clues": ["light", "inflame", "stir up", "heat", "wake", "light up", "ignite", "fire up"]}, {"answer": "fit_in", "hint": "synonyms for fit in", "clues": ["concord", "consort", "harmonize", "accord", "agree", "fit in"]}, {"answer": "fit_out", "hint": "synonyms for fit out", "clues": ["garment", "outfit", "fit", "clothe", "tog", "equip", "garb", "apparel", "habilitate", "dress", "raiment", "fit out"]}, {"answer": "flake_out", "hint": "synonyms for flake out", "clues": ["nod off", "drowse off", "fall asleep", "dope off", "drift off", "flake out"]}, {"answer": "flare_up", "hint": "synonyms for flare up", "clues": ["flare", "irrupt", "break open", "burst out", "erupt", "flare up"]}, {"answer": "flesh_out", "hint": "synonyms for flesh out", "clues": ["expatiate", "fill out", "plump", "expound", "fatten", "plump out", "lucubrate", "dilate", "expand", "fatten out", "fat", "elaborate", "exposit", "round", "fatten up", "enlarge", "flesh out"]}, {"answer": "flim-flam", "hint": "synonyms for flim-flam", "clues": ["play tricks", "pull a fast one on", "play a trick on", "play a joke on", "trick", "fox", "fob", "flim-flam"]}, {"answer": "fling_off", "hint": "synonyms for fling off", "clues": ["knock off", "dash off", "scratch off", "toss off", "fling off"]}, {"answer": "flip_one's_lid", "hint": "synonyms for flip one's lid", "clues": ["have a fit", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "flip one's wig"]}, {"answer": "flip_one's_wig", "hint": "synonyms for flip one's wig", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack"]}, {"answer": "flirt_with", "hint": "synonyms for flirt with", "clues": ["think about", "think of", "entertain", "toy with", "flirt with"]}, {"answer": "flitter", "hint": "synonyms for flitter", "clues": ["waver", "flicker", "quiver", "flutter"]}, {"answer": "flog", "hint": "synonyms for flog", "clues": ["lash", "whip", "lather", "lambast", "welt", "cane", "strap", "trounce", "flog"]}, {"answer": "flout", "hint": "synonyms for flout", "clues": ["barrack", "gibe", "jeer", "scoff", "flout"]}, {"answer": "flummox", "hint": "synonyms for flummox", "clues": ["mystify", "pose", "nonplus", "dumbfound", "get", "perplex", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "flummox"]}, {"answer": "flump", "hint": "synonyms for flump", "clues": ["plump", "plunk", "plank", "plonk", "plop", "flump down", "plunk down", "flump"]}, {"answer": "fly_off_the_handle", "hint": "synonyms for fly off the handle", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "blow one's stack", "fly off the handle"]}, {"answer": "fly_the_coop", "hint": "synonyms for fly the coop", "clues": ["break away", "escape", "hightail it", "scat", "turn tail", "head for the hills", "scarper", "bunk", "lam", "run", "run away", "take to the woods", "fly the coop"]}, {"answer": "focalise", "hint": "synonyms for focalise", "clues": ["focalize", "concentre", "localise", "focus", "sharpen"]}, {"answer": "focalize", "hint": "synonyms for focalize", "clues": ["focalise", "concentre", "focus", "sharpen", "localize"]}, {"answer": "focus_on", "hint": "synonyms for focus on", "clues": ["center", "revolve about", "concentrate on", "revolve around", "center on", "focus on"]}, {"answer": "follow", "hint": "synonyms for follow", "clues": ["stick to", "observe", "travel along", "adopt", "abide by", "keep an eye on", "keep abreast", "espouse", "keep up", "postdate", "stick with", "pursue", "conform to", "accompany", "watch", "watch over", "take after", "come after", "survey", "come", "play along", "fall out", "succeed", "trace", "be", "comply", "surveil", "follow"]}, {"answer": "follow_out", "hint": "synonyms for follow out", "clues": ["put through", "go through", "follow up", "implement", "carry out", "follow through", "follow out"]}, {"answer": "follow_through", "hint": "synonyms for follow through", "clues": ["put through", "go through", "follow up", "follow out", "implement", "carry out", "follow through"]}, {"answer": "follow_up", "hint": "synonyms for follow up", "clues": ["put through", "go through", "follow out", "implement", "carry out", "follow through", "follow up"]}, {"answer": "fool_around", "hint": "synonyms for fool around", "clues": ["play around", "horse around", "fool", "fool around"]}, {"answer": "fool_away", "hint": "synonyms for fool away", "clues": ["fritter", "shoot", "frivol away", "fool", "fritter away", "dissipate", "fool away"]}, {"answer": "footle", "hint": "synonyms for footle", "clues": ["linger", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about", "footle"]}, {"answer": "footslog", "hint": "synonyms for footslog", "clues": ["tramp", "pad", "plod", "slog", "trudge", "footslog"]}, {"answer": "forbid", "hint": "synonyms for forbid", "clues": ["disallow", "veto", "forestall", "prevent", "preclude", "proscribe", "nix", "foreclose", "prohibit", "interdict", "forbid"]}, {"answer": "force_back", "hint": "synonyms for force back", "clues": ["drive", "push back", "repel", "repulse", "beat back", "force back"]}, {"answer": "forebode", "hint": "synonyms for forebode", "clues": ["foretell", "call", "promise", "predict", "anticipate", "prognosticate", "forebode"]}, {"answer": "foreclose", "hint": "synonyms for foreclose", "clues": ["prevent", "forestall", "preclude", "forbid", "foreclose"]}, {"answer": "forefend", "hint": "synonyms for forefend", "clues": ["fend off", "obviate", "avert", "head off", "debar", "forfend", "ward off", "stave off", "avoid", "deflect"]}, {"answer": "foregather", "hint": "synonyms for foregather", "clues": ["gather", "meet", "forgather", "assemble"]}, {"answer": "forego", "hint": "synonyms for forego", "clues": ["forgo", "foreswear", "throw overboard", "waive", "predate", "give up", "antecede", "precede", "forfeit", "relinquish", "dispense with", "antedate"]}, {"answer": "foresee", "hint": "synonyms for foresee", "clues": ["envision", "counter", "previse", "forestall", "anticipate", "foreknow", "foresee"]}, {"answer": "foreshadow", "hint": "synonyms for foreshadow", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "predict", "foreshadow"]}, {"answer": "foreshorten", "hint": "synonyms for foreshorten", "clues": ["contract", "abbreviate", "shorten", "reduce", "cut", "abridge", "foreshorten"]}, {"answer": "forestall", "hint": "synonyms for forestall", "clues": ["prevent", "counter", "anticipate", "preclude", "forbid", "foresee", "foreclose", "forestall"]}, {"answer": "foreswear", "hint": "synonyms for foreswear", "clues": ["forego", "relinquish", "quit", "dispense with", "renounce", "waive", "foreswear"]}, {"answer": "foretell", "hint": "synonyms for foretell", "clues": ["omen", "call", "promise", "forebode", "harbinger", "augur", "prefigure", "forecast", "betoken", "foreshadow", "herald", "predict", "annunciate", "bode", "announce", "prognosticate", "portend", "presage", "auspicate", "anticipate", "foretell"]}, {"answer": "forfend", "hint": "synonyms for forfend", "clues": ["fend off", "obviate", "avert", "head off", "debar", "forefend", "ward off", "stave off", "avoid", "deflect"]}, {"answer": "forgather", "hint": "synonyms for forgather", "clues": ["gather", "foregather", "meet", "assemble"]}, {"answer": "forget", "hint": "synonyms for forget", "clues": ["block", "bury", "draw a blank", "blank out", "leave", "forget"]}, {"answer": "forgo", "hint": "synonyms for forgo", "clues": ["foreswear", "throw overboard", "waive", "predate", "give up", "antecede", "precede", "forego", "relinquish", "forfeit", "dispense with", "antedate"]}, {"answer": "fork_out", "hint": "synonyms for fork out", "clues": ["fork up", "fork over", "deliver", "turn in", "hand over", "render", "fork out"]}, {"answer": "fork_over", "hint": "synonyms for fork over", "clues": ["fork up", "deliver", "turn in", "hand over", "fork out", "render", "fork over"]}, {"answer": "fork_up", "hint": "synonyms for fork up", "clues": ["fork over", "deliver", "turn in", "hand over", "fork out", "render", "fork up"]}, {"answer": "form_bubbles", "hint": "synonyms for form bubbles", "clues": ["froth", "effervesce", "sparkle", "foam", "fizz", "form bubbles"]}, {"answer": "formulate", "hint": "synonyms for formulate", "clues": ["devise", "phrase", "contrive", "word", "articulate", "give voice", "excogitate", "explicate", "forge", "develop", "invent", "formulate"]}, {"answer": "forswear", "hint": "synonyms for forswear", "clues": ["recant", "abjure", "resile", "retract", "forswear"]}, {"answer": "fortify", "hint": "synonyms for fortify", "clues": ["build up", "fort", "gird", "beef up", "lace", "spike", "arm", "strengthen", "fortify"]}, {"answer": "foul_up", "hint": "synonyms for foul up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "bollix", "botch up", "bobble", "foul up"]}, {"answer": "freeze_off", "hint": "synonyms for freeze off", "clues": ["spurn", "pooh-pooh", "disdain", "reject", "turn down", "scorn", "freeze off"]}, {"answer": "freshen_up", "hint": "synonyms for freshen up", "clues": ["renovate", "refresh", "refurbish", "freshen", "freshen up"]}, {"answer": "frig_around", "hint": "synonyms for frig around", "clues": ["bum", "arse about", "lounge around", "fuck off", "waste one's time", "bum around", "loaf", "loll around", "arse around", "loll", "bum about", "lounge about", "frig around"]}, {"answer": "frighten_away", "hint": "synonyms for frighten away", "clues": ["scare", "pall", "dash", "scare away", "frighten off", "daunt", "scare off", "frighten away"]}, {"answer": "frighten_off", "hint": "synonyms for frighten off", "clues": ["scare", "pall", "frighten away", "scare away", "dash", "daunt", "scare off", "frighten off"]}, {"answer": "fritter_away", "hint": "synonyms for fritter away", "clues": ["fritter", "fool away", "shoot", "frivol away", "fool", "dissipate", "fritter away"]}, {"answer": "frivol_away", "hint": "synonyms for frivol away", "clues": ["fritter", "fool away", "shoot", "fool", "fritter away", "dissipate", "frivol away"]}, {"answer": "frizzle", "hint": "synonyms for frizzle", "clues": ["kink", "frizz", "kink up", "crimp", "crape", "frizzle"]}, {"answer": "frustrate", "hint": "synonyms for frustrate", "clues": ["dun", "scotch", "crucify", "spoil", "queer", "cross", "torment", "bedevil", "baffle", "bilk", "rag", "foil", "thwart", "frustrate"]}, {"answer": "fuck_off", "hint": "synonyms for fuck off", "clues": ["lounge around", "scram", "jack off", "loaf", "she-bop", "bum about", "bugger off", "lounge about", "frig around", "masturbate", "bum", "arse about", "jerk off", "waste one's time", "bum around", "loll around", "wank", "arse around", "loll", "get", "buzz off", "fuck off"]}, {"answer": "fuck_up", "hint": "synonyms for fuck up", "clues": ["louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "muck up", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble"]}, {"answer": "fulfil", "hint": "synonyms for fulfil", "clues": ["fulfill", "satisfy", "live up to", "carry out", "action", "carry through", "execute", "meet", "accomplish", "fill"]}, {"answer": "fulfill", "hint": "synonyms for fulfill", "clues": ["fulfil", "satisfy", "fill", "carry out", "action", "carry through", "execute", "meet", "accomplish", "live up to"]}, {"answer": "furbish_up", "hint": "synonyms for furbish up", "clues": ["touch on", "repair", "fix", "doctor", "restore", "bushel", "mend", "furbish up"]}, {"answer": "furcate", "hint": "synonyms for furcate", "clues": ["branch", "separate", "ramify", "fork", "furcate"]}, {"answer": "gain_ground", "hint": "synonyms for gain ground", "clues": ["gain", "pull ahead", "make headway", "advance", "win", "get ahead", "gain ground"]}, {"answer": "gain_vigor", "hint": "synonyms for gain vigor", "clues": ["perk", "pick up", "percolate", "perk up", "gain vigor"]}, {"answer": "gather_up", "hint": "synonyms for gather up", "clues": ["call for", "pick up", "collect", "lift up", "gather up"]}, {"answer": "gazump", "hint": "synonyms for gazump", "clues": ["pluck", "fleece", "overcharge", "plume", "rob", "soak", "hook", "surcharge", "gazump"]}, {"answer": "gear_up", "hint": "synonyms for gear up", "clues": ["ready", "fix", "set up", "set", "prepare", "gear up"]}, {"answer": "generalise", "hint": "synonyms for generalise", "clues": ["popularise", "generalize", "extrapolate", "vulgarize", "infer"]}, {"answer": "generalize", "hint": "synonyms for generalize", "clues": ["popularise", "extrapolate", "vulgarize", "generalise", "infer"]}, {"answer": "generate", "hint": "synonyms for generate", "clues": ["engender", "mother", "return", "render", "sire", "father", "beget", "yield", "give", "bring forth", "get", "generate"]}, {"answer": "germinate", "hint": "synonyms for germinate", "clues": ["sprout", "burgeon forth", "pullulate", "shoot", "bourgeon", "spud", "develop", "evolve", "germinate"]}, {"answer": "gestate", "hint": "synonyms for gestate", "clues": ["conceptualize", "bear", "expect", "conceive", "carry", "have a bun in the oven", "gestate"]}, {"answer": "get_a_line", "hint": "synonyms for get a line", "clues": ["see", "learn", "hear", "get word", "pick up", "discover", "find out", "get wind", "get a line"]}, {"answer": "get_across", "hint": "synonyms for get across", "clues": ["cut through", "put over", "click", "come home", "traverse", "track", "sink in", "get through", "cross", "penetrate", "cut across", "pass over", "cover", "get over", "dawn", "fall into place", "get across"]}, {"answer": "get_ahead", "hint": "synonyms for get ahead", "clues": ["gain", "gain ground", "pull ahead", "make headway", "advance", "win", "get ahead"]}, {"answer": "get_along", "hint": "synonyms for get along", "clues": ["do", "get on with", "advance", "shape up", "come", "fare", "get on", "progress", "make out", "come along", "come on", "get along"]}, {"answer": "get_around", "hint": "synonyms for get around", "clues": ["break", "short-circuit", "bypass", "swing", "get about", "go around", "get around"]}, {"answer": "get_at", "hint": "synonyms for get at", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "access", "nettle", "get at"]}, {"answer": "get_away", "hint": "synonyms for get away", "clues": ["escape", "break loose", "get by", "get out", "get off", "get away"]}, {"answer": "get_behind", "hint": "synonyms for get behind", "clues": ["drop back", "hang back", "trail", "drag", "drop behind", "get behind"]}, {"answer": "get_by", "hint": "synonyms for get by", "clues": ["grapple", "escape", "contend", "deal", "get off", "manage", "make do", "get out", "get away", "make out", "cope", "get by"]}, {"answer": "get_cracking", "hint": "synonyms for get cracking", "clues": ["bestir oneself", "get rolling", "get going", "get weaving", "get started", "get moving", "get cracking"]}, {"answer": "get_down", "hint": "synonyms for get down", "clues": ["swallow", "let down", "start out", "demoralize", "depress", "set about", "unhorse", "take down", "write down", "deject", "cast down", "commence", "lower", "dismount", "light", "dismay", "begin", "start", "put down", "get off", "bring down", "dispirit", "get"]}, {"answer": "get_going", "hint": "synonyms for get going", "clues": ["go", "bestir oneself", "get rolling", "get weaving", "start", "get cracking", "get moving", "get started", "get going"]}, {"answer": "get_hitched_with", "hint": "synonyms for get hitched with", "clues": ["hook up with", "conjoin", "get married", "marry", "wed", "espouse", "get hitched with"]}, {"answer": "get_hold_of", "hint": "synonyms for get hold of", "clues": ["clutch", "take", "reach", "seize", "get through", "contact", "get hold of"]}, {"answer": "get_in", "hint": "synonyms for get in", "clues": ["move into", "go in", "make it", "enter", "pull in", "draw in", "go into", "get into", "arrive", "come in", "go far"]}, {"answer": "get_into", "hint": "synonyms for get into", "clues": ["move into", "wear", "go in", "enter", "don", "go into", "tangle with", "come in", "put on", "get in", "assume"]}, {"answer": "get_it", "hint": "synonyms for get it", "clues": ["get wise", "tumble", "twig", "cotton on", "get onto", "catch on", "get it"]}, {"answer": "get_it_on", "hint": "synonyms for get it on", "clues": ["sleep with", "get laid", "bed", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "get it on"]}, {"answer": "get_laid", "hint": "synonyms for get laid", "clues": ["sleep with", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "get laid"]}, {"answer": "get_married", "hint": "synonyms for get married", "clues": ["get hitched with", "hook up with", "conjoin", "marry", "wed", "espouse", "get married"]}, {"answer": "get_moving", "hint": "synonyms for get moving", "clues": ["bestir oneself", "get rolling", "get going", "get started", "get weaving", "get cracking", "get moving"]}, {"answer": "get_off", "hint": "synonyms for get off", "clues": ["escape", "light", "get out", "send", "send off", "mail", "trip out", "dismount", "turn on", "trip", "get away", "unhorse", "hop out", "get by", "get down", "get off"]}, {"answer": "get_on", "hint": "synonyms for get on", "clues": ["get on with", "senesce", "advance", "be on", "board", "progress", "bestride", "mount up", "age", "mature", "shape up", "hop on", "get along", "jump on", "climb on", "come along", "come on", "mount", "get on"]}, {"answer": "get_onto", "hint": "synonyms for get onto", "clues": ["get wise", "tumble", "twig", "get it", "cotton on", "catch on", "get onto"]}, {"answer": "get_out", "hint": "synonyms for get out", "clues": ["pull", "break", "escape", "exit", "get off", "pull out", "take out", "bring out", "draw", "get away", "get by", "get around", "go out", "leave", "get out"]}, {"answer": "get_over", "hint": "synonyms for get over", "clues": ["subdue", "cut through", "traverse", "get well", "bounce back", "cross", "get across", "master", "cut across", "pass over", "surmount", "cover", "overcome", "track", "get over"]}, {"answer": "get_rid_of", "hint": "synonyms for get rid of", "clues": ["do away with", "eliminate", "extinguish", "remove", "abolish", "get rid of"]}, {"answer": "get_rolling", "hint": "synonyms for get rolling", "clues": ["bestir oneself", "get going", "get started", "get weaving", "get cracking", "get moving", "get rolling"]}, {"answer": "get_started", "hint": "synonyms for get started", "clues": ["bestir oneself", "get rolling", "get going", "get weaving", "get cracking", "get moving", "get started"]}, {"answer": "get_the_picture", "hint": "synonyms for get the picture", "clues": ["comprehend", "grasp", "savvy", "compass", "grok", "apprehend", "dig", "get the picture"]}, {"answer": "get_through", "hint": "synonyms for get through", "clues": ["finish off", "get hold of", "click", "come home", "while away", "sink in", "polish off", "mop up", "wrap up", "clear up", "get across", "finish up", "penetrate", "reach", "come through", "contact", "dawn", "fall into place", "get through"]}, {"answer": "get_to", "hint": "synonyms for get to", "clues": ["make", "nark", "chafe", "devil", "rile", "annoy", "bother", "irritate", "vex", "progress to", "reach", "gravel", "rag", "get at", "nettle", "get to"]}, {"answer": "get_up", "hint": "synonyms for get up", "clues": ["drum", "deck up", "fig up", "prepare", "rise", "tog out", "tog up", "bone up", "lift", "bone", "devise", "mug up", "swot", "overdress", "swot up", "elevate", "fig out", "gussy up", "dress up", "trick out", "uprise", "fancy up", "attire", "deck out", "machinate", "grind away", "turn out", "prink", "work up", "cram", "organize", "bring up", "trick up", "stand up", "get up"]}, {"answer": "get_weaving", "hint": "synonyms for get weaving", "clues": ["bestir oneself", "get rolling", "get going", "get started", "get cracking", "get moving", "get weaving"]}, {"answer": "get_wind", "hint": "synonyms for get wind", "clues": ["see", "hear", "get word", "pick up", "get a line", "discover", "find out", "learn", "get wind"]}, {"answer": "get_wise", "hint": "synonyms for get wise", "clues": ["tumble", "get it", "twig", "cotton on", "get onto", "catch on", "get wise"]}, {"answer": "get_word", "hint": "synonyms for get word", "clues": ["see", "learn", "hear", "pick up", "get a line", "discover", "find out", "get wind", "get word"]}, {"answer": "gip", "hint": "synonyms for gip", "clues": ["con", "swindle", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change", "gip"]}, {"answer": "gird", "hint": "synonyms for gird", "clues": ["build up", "encircle", "fortify", "girdle", "arm", "gird"]}, {"answer": "give-up_the_ghost", "hint": "synonyms for give-up the ghost", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "perish", "snuff it", "pass", "kick the bucket", "pass away", "give-up the ghost"]}, {"answer": "give_away", "hint": "synonyms for give away", "clues": ["break", "denounce", "betray", "let on", "reveal", "grass", "shop", "disclose", "divulge", "discover", "shit", "let out", "tell on", "unwrap", "expose", "stag", "rat", "bring out", "snitch", "give away"]}, {"answer": "give_birth", "hint": "synonyms for give birth", "clues": ["have", "bear", "deliver", "birth", "give birth"]}, {"answer": "give_chase", "hint": "synonyms for give chase", "clues": ["tail", "tag", "chase after", "go after", "dog", "chase", "track", "give chase"]}, {"answer": "give_ear", "hint": "synonyms for give ear", "clues": ["hang", "pay heed", "advert", "attend", "give ear"]}, {"answer": "give_in", "hint": "synonyms for give in", "clues": ["succumb", "accede", "buckle under", "bow", "submit", "yield", "defer", "give in"]}, {"answer": "give_notice", "hint": "synonyms for give notice", "clues": ["displace", "give the axe", "terminate", "dismiss", "notify", "fire", "advise", "give the sack", "apprise", "send away", "send word", "force out", "can", "sack", "give notice"]}, {"answer": "give_out", "hint": "synonyms for give out", "clues": ["distribute", "break", "go", "pass out", "go bad", "break down", "die", "emit", "hand out", "give way", "conk out", "give off", "fail", "run out", "give out"]}, {"answer": "give_suck", "hint": "synonyms for give suck", "clues": ["suck", "breastfeed", "suckle", "nurse", "wet-nurse", "lactate", "give suck"]}, {"answer": "give_the_axe", "hint": "synonyms for give the axe", "clues": ["displace", "terminate", "dismiss", "give the gate", "fire", "give the bounce", "give the sack", "send away", "give notice", "force out", "can", "sack"]}, {"answer": "give_the_sack", "hint": "synonyms for give the sack", "clues": ["displace", "give the axe", "terminate", "dismiss", "fire", "send away", "give notice", "force out", "can", "sack", "give the sack"]}, {"answer": "give_tongue_to", "hint": "synonyms for give tongue to", "clues": ["utter", "verbalize", "express", "give tongue to"]}, {"answer": "give_up", "hint": "synonyms for give up", "clues": ["chuck up the sponge", "quit", "deliver", "throw overboard", "fall by the wayside", "surrender", "drop by the wayside", "forfeit", "forego", "throw in the towel", "part with", "allow", "throw in", "free", "renounce", "cede", "drop out", "waive", "discontinue", "resign", "stop", "abandon", "cease", "relinquish", "vacate", "dispense with", "release", "kick", "lay off", "spare", "give up"]}, {"answer": "give_voice", "hint": "synonyms for give voice", "clues": ["articulate", "word", "phrase", "formulate", "give voice"]}, {"answer": "give_way", "hint": "synonyms for give way", "clues": ["break", "go", "conk out", "give out", "cave in", "go bad", "move over", "break down", "fall in", "die", "give", "collapse", "yield", "founder", "ease up", "fail", "give way"]}, {"answer": "glance_over", "hint": "synonyms for glance over", "clues": ["skim", "scan", "run down", "rake", "glance over"]}, {"answer": "glaze_over", "hint": "synonyms for glaze over", "clues": ["film over", "glaze", "glass over", "blur", "glass", "glaze over"]}, {"answer": "glide_by", "hint": "synonyms for glide by", "clues": ["elapse", "go along", "slide by", "go by", "slip away", "pass", "slip by"]}, {"answer": "glom", "hint": "synonyms for glom", "clues": ["hook", "thieve", "knock off", "cop", "snitch", "glom"]}, {"answer": "glorify", "hint": "synonyms for glorify", "clues": ["laud", "transfigure", "spiritualize", "proclaim", "exalt", "extol", "glorify"]}, {"answer": "gloss_over", "hint": "synonyms for gloss over", "clues": ["skate over", "skimp over", "sleek over", "hush up", "whitewash", "slur over", "smooth over", "gloss over"]}, {"answer": "gnaw", "hint": "synonyms for gnaw", "clues": ["gnaw at", "eat at", "erode", "wear away", "gnaw"]}, {"answer": "gnaw_at", "hint": "synonyms for gnaw at", "clues": ["eat at", "gnaw", "erode", "wear away", "gnaw at"]}, {"answer": "go_after", "hint": "synonyms for go after", "clues": ["tail", "quest after", "tag", "chase after", "give chase", "dog", "chase", "pursue", "quest for", "track", "go after"]}, {"answer": "go_against", "hint": "synonyms for go against", "clues": ["break", "offend", "transgress", "buck", "infract", "breach", "violate", "go against"]}, {"answer": "go_along", "hint": "synonyms for go along", "clues": ["go on", "elapse", "glide by", "continue", "keep", "play along", "go by", "proceed", "slip away", "pass", "slip by", "go along"]}, {"answer": "go_around", "hint": "synonyms for go around", "clues": ["revolve", "short-circuit", "circulate", "rotate", "bypass", "get around", "spread", "outflank", "go around"]}, {"answer": "go_away", "hint": "synonyms for go away", "clues": ["go forth", "go", "disappear", "depart", "vanish", "leave", "go away"]}, {"answer": "go_back", "hint": "synonyms for go back", "clues": ["recuperate", "date from", "date back", "recover", "recur", "go back"]}, {"answer": "go_bad", "hint": "synonyms for go bad", "clues": ["break", "go", "give out", "spoil", "die", "give way", "conk out", "break down", "fail", "go bad"]}, {"answer": "go_ballistic", "hint": "synonyms for go ballistic", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "combust", "hit the ceiling", "lose one's temper", "hit the roof", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "go ballistic"]}, {"answer": "go_by", "hint": "synonyms for go by", "clues": ["elapse", "glide by", "go under", "go along", "go past", "pass by", "surpass", "slip away", "travel by", "pass", "slip by", "go by"]}, {"answer": "go_down", "hint": "synonyms for go down", "clues": ["sink", "settle", "come down", "go under", "set", "decline", "wane", "crash", "fall", "descend", "go down"]}, {"answer": "go_far", "hint": "synonyms for go far", "clues": ["make it", "go deep", "arrive", "get in", "go far"]}, {"answer": "go_for", "hint": "synonyms for go for", "clues": ["hope", "hold", "take to", "fancy", "consent", "apply", "try for", "accept", "go for"]}, {"answer": "go_forth", "hint": "synonyms for go forth", "clues": ["go away", "emerge", "egress", "issue", "come out", "come forth", "leave", "go forth"]}, {"answer": "go_in", "hint": "synonyms for go in", "clues": ["move into", "go into", "get into", "come in", "enter", "go in"]}, {"answer": "go_into", "hint": "synonyms for go into", "clues": ["move into", "go in", "get into", "come in", "enter", "go into"]}, {"answer": "go_off", "hint": "synonyms for go off", "clues": ["go over", "implode", "come off", "decamp", "bolt", "make off", "fire", "run off", "absquatulate", "abscond", "discharge", "go off"]}, {"answer": "go_on", "hint": "synonyms for go on", "clues": ["move on", "advance", "continue", "keep", "march on", "come up", "progress", "occur", "carry on", "pass on", "go along", "fall out", "take place", "happen", "come about", "proceed", "pass off", "pass", "come on", "hap", "go on"]}, {"answer": "go_out", "hint": "synonyms for go out", "clues": ["go steady", "see", "exit", "get out", "date", "leave", "go out"]}, {"answer": "go_over", "hint": "synonyms for go over", "clues": ["come off", "survey", "look into", "review", "check", "check into", "check over", "check out", "suss out", "fall over", "go off", "check up on", "go over"]}, {"answer": "go_past", "hint": "synonyms for go past", "clues": ["top", "exceed", "pass by", "go by", "transcend", "travel by", "surpass", "pass", "overstep", "go past"]}, {"answer": "go_through", "hint": "synonyms for go through", "clues": ["devour", "down", "see", "implement", "carry out", "follow through", "put through", "experience", "run through", "go across", "follow up", "work through", "pass", "consume", "follow out", "go through"]}, {"answer": "go_to_bed", "hint": "synonyms for go to bed", "clues": ["go to sleep", "sack out", "bed", "kip down", "turn in", "retire", "crawl in", "hit the hay", "hit the sack", "go to bed"]}, {"answer": "go_to_sleep", "hint": "synonyms for go to sleep", "clues": ["sack out", "bed", "kip down", "turn in", "retire", "go to bed", "crawl in", "hit the hay", "hit the sack", "go to sleep"]}, {"answer": "go_under", "hint": "synonyms for go under", "clues": ["sink", "go by", "settle", "go down", "set", "go under"]}, {"answer": "go_up", "hint": "synonyms for go up", "clues": ["lift", "draw near", "arise", "near", "climb up", "uprise", "burn down", "burn up", "ascend", "come up", "come on", "come near", "mount", "climb", "move up", "draw close", "approach", "go up"]}, {"answer": "go_with", "hint": "synonyms for go with", "clues": ["accompany", "co-occur with", "attach to", "construe with", "collocate with", "come with", "go with"]}, {"answer": "gormandise", "hint": "synonyms for gormandise", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "satiate", "englut", "stuff", "scarf out", "gourmandize", "overgorge", "glut", "binge", "gorge"]}, {"answer": "gormandize", "hint": "synonyms for gormandize", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "satiate", "englut", "stuff", "scarf out", "gourmandize", "overgorge", "glut", "binge", "gorge"]}, {"answer": "gourmandize", "hint": "synonyms for gourmandize", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge"]}, {"answer": "govern", "hint": "synonyms for govern", "clues": ["rule", "regulate", "order", "regularize", "govern"]}, {"answer": "grind_away", "hint": "synonyms for grind away", "clues": ["bone", "get up", "mug up", "drum", "swot", "swot up", "bone up", "cram", "grind away"]}, {"answer": "grok", "hint": "synonyms for grok", "clues": ["comprehend", "grasp", "get the picture", "savvy", "compass", "apprehend", "dig", "grok"]}, {"answer": "gross_out", "hint": "synonyms for gross out", "clues": ["revolt", "disgust", "repel", "freak out", "freak", "gross out"]}, {"answer": "grovel", "hint": "synonyms for grovel", "clues": ["crawl", "creep", "cower", "fawn", "cringe", "grovel"]}, {"answer": "grow", "hint": "synonyms for grow", "clues": ["maturate", "arise", "acquire", "uprise", "get", "farm", "spring up", "originate", "raise", "turn", "produce", "develop", "grow"]}, {"answer": "gruntle", "hint": "synonyms for gruntle", "clues": ["lenify", "placate", "assuage", "conciliate", "mollify", "appease", "pacify", "gentle", "gruntle"]}, {"answer": "guggle", "hint": "synonyms for guggle", "clues": ["burble", "babble", "gurgle", "bubble", "ripple", "guggle"]}, {"answer": "gussy_up", "hint": "synonyms for gussy up", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "dress up", "gussy up"]}, {"answer": "gyrate", "hint": "synonyms for gyrate", "clues": ["whirl", "spin around", "coil", "spin", "spiral", "reel", "gyrate"]}, {"answer": "habilitate", "hint": "synonyms for habilitate", "clues": ["garment", "clothe", "tog", "garb", "apparel", "fit out", "dress", "raiment", "habilitate"]}, {"answer": "hand_over", "hint": "synonyms for hand over", "clues": ["fork up", "fork over", "deliver", "turn in", "fork out", "render", "hand over"]}, {"answer": "hang_around", "hint": "synonyms for hang around", "clues": ["linger", "footle", "lounge", "loiter", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about", "hang around"]}, {"answer": "hang_back", "hint": "synonyms for hang back", "clues": ["drop back", "trail", "get behind", "drag", "drop behind", "hang back"]}, {"answer": "hang_in", "hint": "synonyms for hang in", "clues": ["persevere", "hold on", "hang on", "persist"]}, {"answer": "hang_on", "hint": "synonyms for hang on", "clues": ["hold the line", "tag on", "hold on", "persist", "tack", "hang in", "persevere", "append", "tack on"]}, {"answer": "happen", "hint": "synonyms for happen", "clues": ["befall", "go on", "materialise", "encounter", "bump", "chance", "fall out", "take place", "occur", "come about", "find", "pass off", "pass", "hap", "happen"]}, {"answer": "happen_upon", "hint": "synonyms for happen upon", "clues": ["come across", "strike", "chance upon", "come upon", "fall upon", "attain", "discover", "light upon", "happen upon"]}, {"answer": "harass", "hint": "synonyms for harass", "clues": ["chevvy", "chivvy", "provoke", "molest", "harry", "hassle", "plague", "beset", "harass"]}, {"answer": "harden", "hint": "synonyms for harden", "clues": ["temper", "inure", "indurate", "season", "harden"]}, {"answer": "harmonise", "hint": "synonyms for harmonise", "clues": ["consort", "harmonize", "reconcile", "chord", "agree", "concord", "accord", "fit in"]}, {"answer": "harmonize", "hint": "synonyms for harmonize", "clues": ["consort", "reconcile", "chord", "harmonise", "agree", "concord", "accord", "fit in"]}, {"answer": "harry", "hint": "synonyms for harry", "clues": ["chevvy", "chivvy", "harass", "provoke", "molest", "hassle", "ravage", "plague", "beset", "harry"]}, {"answer": "hasten", "hint": "synonyms for hasten", "clues": ["step on it", "induce", "pelt along", "expedite", "hotfoot", "hie", "look sharp", "cannonball along", "rush", "rush along", "speed", "race", "stimulate", "festinate", "bucket along", "hurry", "hasten"]}, {"answer": "have-to_doe_with", "hint": "synonyms for have-to doe with", "clues": ["touch on", "pertain", "touch", "bear on", "come to", "refer", "concern", "relate", "have-to doe with"]}, {"answer": "have_a_bun_in_the_oven", "hint": "synonyms for have a bun in the oven", "clues": ["gestate", "carry", "bear", "expect", "have a bun in the oven"]}, {"answer": "have_a_fit", "hint": "synonyms for have a fit", "clues": ["flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "have a fit"]}, {"answer": "have_a_go_at_it", "hint": "synonyms for have a go at it", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "have a go at it"]}, {"answer": "have_intercourse", "hint": "synonyms for have intercourse", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "have intercourse"]}, {"answer": "have_it_away", "hint": "synonyms for have it away", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "have it away"]}, {"answer": "have_it_off", "hint": "synonyms for have it off", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "have it off"]}, {"answer": "have_kittens", "hint": "synonyms for have kittens", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "fly off the handle", "blow one's stack", "have kittens"]}, {"answer": "have_sex", "hint": "synonyms for have sex", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "sleep together", "have sex"]}, {"answer": "have_words", "hint": "synonyms for have words", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "have words"]}, {"answer": "haze_over", "hint": "synonyms for haze over", "clues": ["obscure", "obnubilate", "fog", "befog", "mist", "cloud", "becloud", "haze over"]}, {"answer": "head_for_the_hills", "hint": "synonyms for head for the hills", "clues": ["break away", "escape", "hightail it", "scat", "turn tail", "fly the coop", "scarper", "bunk", "lam", "run", "run away", "take to the woods", "head for the hills"]}, {"answer": "head_off", "hint": "synonyms for head off", "clues": ["fend off", "obviate", "avert", "debar", "forefend", "ward off", "stave off", "avoid", "deflect", "head off"]}, {"answer": "hear", "hint": "synonyms for hear", "clues": ["see", "learn", "get word", "pick up", "get a line", "discover", "listen", "find out", "get wind", "take heed", "try", "hear"]}, {"answer": "heighten", "hint": "synonyms for heighten", "clues": ["compound", "rise", "deepen", "sharpen", "intensify", "enhance", "heighten"]}, {"answer": "hem_in", "hint": "synonyms for hem in", "clues": ["beleaguer", "surround", "circumvent", "besiege", "hem in"]}, {"answer": "hero-worship", "hint": "synonyms for hero-worship", "clues": ["idolise", "revere", "worship", "hero-worship"]}, {"answer": "hie", "hint": "synonyms for hie", "clues": ["step on it", "pelt along", "hotfoot", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "hasten", "hie"]}, {"answer": "hightail_it", "hint": "synonyms for hightail it", "clues": ["break away", "escape", "scat", "turn tail", "fly the coop", "head for the hills", "scarper", "bunk", "lam", "run", "run away", "take to the woods", "hightail it"]}, {"answer": "hinge_on", "hint": "synonyms for hinge on", "clues": ["turn on", "depend upon", "ride", "hinge upon", "devolve on"]}, {"answer": "hinge_upon", "hint": "synonyms for hinge upon", "clues": ["turn on", "depend upon", "ride", "devolve on", "hinge on"]}, {"answer": "hit_the_ceiling", "hint": "synonyms for hit the ceiling", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "hit the ceiling"]}, {"answer": "hit_the_hay", "hint": "synonyms for hit the hay", "clues": ["go to sleep", "sack out", "bed", "kip down", "turn in", "retire", "go to bed", "crawl in", "hit the sack", "hit the hay"]}, {"answer": "hit_the_roof", "hint": "synonyms for hit the roof", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "hit the roof"]}, {"answer": "hit_the_sack", "hint": "synonyms for hit the sack", "clues": ["go to sleep", "sack out", "bed", "kip down", "turn in", "retire", "go to bed", "crawl in", "hit the hay", "hit the sack"]}, {"answer": "hive_away", "hint": "synonyms for hive away", "clues": ["salt away", "lay in", "put in", "stack away", "store", "stash away", "hive away"]}, {"answer": "hive_up", "hint": "synonyms for hive up", "clues": ["lay away", "squirrel away", "stash", "cache", "hoard", "hive up"]}, {"answer": "hold_back", "hint": "synonyms for hold back", "clues": ["restrain", "turn back", "wait", "conceal", "keep", "hold in", "stop", "forbear", "hold", "contain", "arrest", "keep back", "hold off", "check", "hold back"]}, {"answer": "hold_fast", "hint": "synonyms for hold fast", "clues": ["stick to", "stick", "bond", "bind", "adhere", "hold fast"]}, {"answer": "hold_in", "hint": "synonyms for hold in", "clues": ["control", "enclose", "curb", "moderate", "conceal", "hold back", "hold", "confine", "contain", "check", "hold in"]}, {"answer": "hold_on", "hint": "synonyms for hold on", "clues": ["grasp", "hold the line", "persist", "hang on", "persevere", "keep", "stop", "hold on"]}, {"answer": "hold_out", "hint": "synonyms for hold out", "clues": ["wear", "go", "stretch forth", "exsert", "withstand", "put out", "last", "live on", "live", "hold up", "stand firm", "resist", "stretch out", "survive", "endure", "extend", "hold out"]}, {"answer": "hold_over", "hint": "synonyms for hold over", "clues": ["put over", "defer", "set back", "put off", "postpone", "carry over", "shelve", "remit", "table", "prorogue", "hold over"]}, {"answer": "hold_up", "hint": "synonyms for hold up", "clues": ["support", "go", "hold out", "withstand", "last", "live on", "detain", "live", "hold", "stand up", "hold water", "stick up", "delay", "survive", "sustain", "endure", "defy", "hold up"]}, {"answer": "hoodwink", "hint": "synonyms for hoodwink", "clues": ["beguile", "lead by the nose", "pull the wool over someone's eyes", "bamboozle", "snow", "play false", "juggle", "hoodwink"]}, {"answer": "hook_on", "hint": "synonyms for hook on", "clues": ["take up", "seize on", "fasten on", "latch on", "hook on"]}, {"answer": "hook_up_with", "hint": "synonyms for hook up with", "clues": ["get hitched with", "conjoin", "get married", "marry", "wed", "espouse", "hook up with"]}, {"answer": "hop_on", "hint": "synonyms for hop on", "clues": ["bestride", "mount up", "get on", "jump on", "climb on", "mount", "hop on"]}, {"answer": "horn_in", "hint": "synonyms for horn in", "clues": ["intrude", "poke", "pry", "nose", "horn in"]}, {"answer": "hornswoggle", "hint": "synonyms for hornswoggle", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "victimize", "short-change", "hornswoggle"]}, {"answer": "horrify", "hint": "synonyms for horrify", "clues": ["appall", "dismay", "alarm", "horrify"]}, {"answer": "hot_up", "hint": "synonyms for hot up", "clues": ["hop up", "soup up", "heat", "heat up", "screw up", "hot up"]}, {"answer": "hover", "hint": "synonyms for hover", "clues": ["vacillate", "linger", "bulk large", "brood", "levitate", "loom", "vibrate", "oscillate", "hover"]}, {"answer": "humiliate", "hint": "synonyms for humiliate", "clues": ["mortify", "chagrin", "humble", "abase", "humiliate"]}, {"answer": "hunker", "hint": "synonyms for hunker", "clues": ["scrunch up", "crouch", "scrunch", "hunker down", "squat", "hunker"]}, {"answer": "hunker_down", "hint": "synonyms for hunker down", "clues": ["scrunch up", "crouch", "scrunch", "hunker", "squat", "hunker down"]}, {"answer": "hurtle", "hint": "synonyms for hurtle", "clues": ["lunge", "cast", "thrust", "hurl", "hurtle"]}, {"answer": "hush_up", "hint": "synonyms for hush up", "clues": ["hush", "still", "quieten", "whitewash", "silence", "sleek over", "shut up", "gloss over", "hush up"]}, {"answer": "hybridise", "hint": "synonyms for hybridise", "clues": ["crossbreed", "hybridize", "interbreed", "cross"]}, {"answer": "hybridize", "hint": "synonyms for hybridize", "clues": ["crossbreed", "hybridise", "interbreed", "cross"]}, {"answer": "hyperbolise", "hint": "synonyms for hyperbolise", "clues": ["magnify", "hyperbolize", "overdraw", "overstate", "exaggerate", "amplify"]}, {"answer": "hyperbolize", "hint": "synonyms for hyperbolize", "clues": ["magnify", "overdraw", "exaggerate", "overstate", "hyperbolise", "amplify"]}, {"answer": "hypothecate", "hint": "synonyms for hypothecate", "clues": ["hypothesize", "conjecture", "theorise", "speculate", "suppose", "hypothecate"]}, {"answer": "hypothesise", "hint": "synonyms for hypothesise", "clues": ["hypothesize", "conjecture", "theorise", "speculate", "hypothecate", "suppose"]}, {"answer": "hypothesize", "hint": "synonyms for hypothesize", "clues": ["conjecture", "theorise", "speculate", "hypothecate", "hypothesise", "suppose"]}, {"answer": "identify", "hint": "synonyms for identify", "clues": ["name", "key", "describe", "discover", "place", "key out", "distinguish", "identify"]}, {"answer": "idolise", "hint": "synonyms for idolise", "clues": ["hero-worship", "idolize", "revere", "worship"]}, {"answer": "idolize", "hint": "synonyms for idolize", "clues": ["idolise", "hero-worship", "revere", "worship"]}, {"answer": "ignite", "hint": "synonyms for ignite", "clues": ["light", "inflame", "catch fire", "combust", "take fire", "conflagrate", "heat", "wake", "erupt", "stir up", "fire up", "ignite"]}, {"answer": "ignore", "hint": "synonyms for ignore", "clues": ["push aside", "cut", "discount", "brush off", "dismiss", "snub", "disregard", "neglect", "ignore"]}, {"answer": "ill-treat", "hint": "synonyms for ill-treat", "clues": ["step", "ill-use", "mistreat", "maltreat", "abuse", "ill-treat"]}, {"answer": "ill-use", "hint": "synonyms for ill-use", "clues": ["step", "ill-treat", "mistreat", "maltreat", "abuse", "ill-use"]}, {"answer": "illuminate", "hint": "synonyms for illuminate", "clues": ["sort out", "illumine", "light", "light up", "crystalise", "enlighten", "straighten out", "clear up", "shed light on", "elucidate", "clear"]}, {"answer": "illumine", "hint": "synonyms for illumine", "clues": ["light", "illuminate", "light up", "illume"]}, {"answer": "imagine", "hint": "synonyms for imagine", "clues": ["envisage", "ideate", "think", "suppose", "opine", "guess", "reckon", "conceive of", "imagine"]}, {"answer": "imbed", "hint": "synonyms for imbed", "clues": ["embed", "implant", "plant", "engraft", "imbed"]}, {"answer": "imbibe", "hint": "synonyms for imbibe", "clues": ["sop up", "suck", "take up", "drink", "absorb", "suck up", "draw", "take in", "assimilate", "soak up", "imbibe"]}, {"answer": "imbue", "hint": "synonyms for imbue", "clues": ["permeate", "penetrate", "hue", "soak", "riddle", "diffuse", "interpenetrate", "pervade", "imbue"]}, {"answer": "immerse", "hint": "synonyms for immerse", "clues": ["engulf", "swallow", "steep", "bury", "absorb", "engross", "eat up", "swallow up", "plunge", "soak up", "immerse"]}, {"answer": "immix", "hint": "synonyms for immix", "clues": ["coalesce", "flux", "fuse", "mix", "commingle", "conflate", "combine", "merge", "meld", "blend", "immix"]}, {"answer": "immobilise", "hint": "synonyms for immobilise", "clues": ["freeze", "block", "pin", "immobilize", "trap"]}, {"answer": "immobilize", "hint": "synonyms for immobilize", "clues": ["freeze", "block", "pin", "immobilise", "trap"]}, {"answer": "immortalise", "hint": "synonyms for immortalise", "clues": ["memorialise", "eternalise", "eternize", "immortalize", "record", "commemorate"]}, {"answer": "immortalize", "hint": "synonyms for immortalize", "clues": ["memorialise", "eternalise", "eternize", "immortalise", "record", "commemorate"]}, {"answer": "immure", "hint": "synonyms for immure", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "jail", "lag", "incarcerate", "imprison", "immure"]}, {"answer": "impair", "hint": "synonyms for impair", "clues": ["mar", "spoil", "vitiate", "deflower", "impair"]}, {"answer": "impale", "hint": "synonyms for impale", "clues": ["stake", "empale", "spike", "transfix", "impale"]}, {"answer": "impart", "hint": "synonyms for impart", "clues": ["pass on", "lend", "transmit", "contribute", "bestow", "carry", "bring", "conduct", "channel", "add", "give", "convey", "leave", "impart"]}, {"answer": "impede", "hint": "synonyms for impede", "clues": ["obstruct", "close up", "occlude", "jam", "block", "obturate", "hinder", "impede"]}, {"answer": "imperil", "hint": "synonyms for imperil", "clues": ["peril", "jeopardise", "menace", "endanger", "threaten", "imperil"]}, {"answer": "impinge", "hint": "synonyms for impinge", "clues": ["entrench", "infringe", "encroach", "impinge"]}, {"answer": "impinge_on", "hint": "synonyms for impinge on", "clues": ["hit", "collide with", "strike", "run into", "impinge on"]}, {"answer": "imply", "hint": "synonyms for imply", "clues": ["mean", "entail", "inculpate", "involve", "connote", "incriminate", "imply"]}, {"answer": "impose", "hint": "synonyms for impose", "clues": ["bring down", "inflict", "enforce", "visit", "levy", "impose"]}, {"answer": "impound", "hint": "synonyms for impound", "clues": ["confiscate", "attach", "sequester", "pound", "seize", "impound"]}, {"answer": "imprecate", "hint": "synonyms for imprecate", "clues": ["damn", "beshrew", "maledict", "anathemise", "blaspheme", "curse", "swear", "bedamn", "cuss", "imprecate"]}, {"answer": "impregnate", "hint": "synonyms for impregnate", "clues": ["tincture", "instill", "saturate", "infuse", "bang up", "knock up", "prang up", "impregnate"]}, {"answer": "imprison", "hint": "synonyms for imprison", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison"]}, {"answer": "improve", "hint": "synonyms for improve", "clues": ["amend", "ameliorate", "better", "improve"]}, {"answer": "incapacitate", "hint": "synonyms for incapacitate", "clues": ["handicap", "disenable", "invalid", "incapacitate"]}, {"answer": "incarcerate", "hint": "synonyms for incarcerate", "clues": ["put behind bars", "gaol", "jug", "remand", "put away", "immure", "jail", "lag", "imprison", "incarcerate"]}, {"answer": "incite", "hint": "synonyms for incite", "clues": ["motivate", "move", "egg on", "set off", "instigate", "prod", "actuate", "propel", "stir up", "prompt", "incite"]}, {"answer": "inclose", "hint": "synonyms for inclose", "clues": ["close in", "enclose", "put in", "insert", "introduce", "shut in", "stick in"]}, {"answer": "incommode", "hint": "synonyms for incommode", "clues": ["bother", "trouble", "inconvenience", "discommode", "put out", "disoblige", "incommode"]}, {"answer": "incriminate", "hint": "synonyms for incriminate", "clues": ["inculpate", "accuse", "criminate", "imply", "impeach"]}, {"answer": "incur", "hint": "synonyms for incur", "clues": ["find", "obtain", "get", "receive", "incur"]}, {"answer": "indicate", "hint": "synonyms for indicate", "clues": ["bespeak", "show", "betoken", "point", "signal", "designate", "suggest", "argue", "indicate"]}, {"answer": "indorse", "hint": "synonyms for indorse", "clues": ["support", "certify", "endorse", "back", "plump for", "second", "plunk for"]}, {"answer": "induce", "hint": "synonyms for induce", "clues": ["make", "cause", "rush", "induct", "stimulate", "bring on", "have", "get", "hasten", "induce"]}, {"answer": "induct", "hint": "synonyms for induct", "clues": ["initiate", "invest", "induce", "seat", "induct"]}, {"answer": "indue", "hint": "synonyms for indue", "clues": ["endow", "empower", "invest", "endue", "gift", "indue"]}, {"answer": "indulge", "hint": "synonyms for indulge", "clues": ["featherbed", "spoil", "pamper", "mollycoddle", "gratify", "pander", "cosset", "luxuriate", "baby", "coddle", "cocker", "indulge"]}, {"answer": "infer", "hint": "synonyms for infer", "clues": ["understand", "generalise", "deduct", "guess", "extrapolate", "deduce", "derive", "infer"]}, {"answer": "inflame", "hint": "synonyms for inflame", "clues": ["ignite", "kindle", "wake", "conflagrate", "heat", "stir up", "fire up", "inflame"]}, {"answer": "inflate", "hint": "synonyms for inflate", "clues": ["balloon", "expand", "amplify", "billow", "blow up", "inflate"]}, {"answer": "infract", "hint": "synonyms for infract", "clues": ["break", "offend", "go against", "breach", "transgress", "violate", "infract"]}, {"answer": "infringe", "hint": "synonyms for infringe", "clues": ["run afoul", "impinge", "contravene", "encroach", "conflict", "infringe"]}, {"answer": "infuse", "hint": "synonyms for infuse", "clues": ["inculcate", "instill", "tincture", "steep", "impregnate", "infuse"]}, {"answer": "ingeminate", "hint": "synonyms for ingeminate", "clues": ["retell", "reiterate", "restate", "repeat", "ingeminate"]}, {"answer": "ingest", "hint": "synonyms for ingest", "clues": ["take", "absorb", "take in", "assimilate", "consume", "have", "ingest"]}, {"answer": "ingurgitate", "hint": "synonyms for ingurgitate", "clues": ["overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "ingurgitate"]}, {"answer": "inhibit", "hint": "synonyms for inhibit", "clues": ["subdue", "bottle up", "curb", "conquer", "suppress", "stamp down", "inhibit"]}, {"answer": "inhume", "hint": "synonyms for inhume", "clues": ["entomb", "bury", "lay to rest", "inter", "inhume"]}, {"answer": "inject", "hint": "synonyms for inject", "clues": ["come in", "shoot", "interject", "put in", "throw in", "interpose", "inject"]}, {"answer": "injure", "hint": "synonyms for injure", "clues": ["spite", "offend", "hurt", "wound", "bruise", "injure"]}, {"answer": "inquire", "hint": "synonyms for inquire", "clues": ["enquire", "ask", "investigate", "wonder"]}, {"answer": "inscribe", "hint": "synonyms for inscribe", "clues": ["enrol", "write in code", "engrave", "cipher", "enter", "code", "grave", "scratch", "cypher", "recruit", "encrypt", "autograph", "inscribe"]}, {"answer": "inseminate", "hint": "synonyms for inseminate", "clues": ["sow in", "fertilise", "sow", "fecundate", "inseminate"]}, {"answer": "inspect", "hint": "synonyms for inspect", "clues": ["visit", "scrutinise", "audit", "inspect"]}, {"answer": "inspire", "hint": "synonyms for inspire", "clues": ["inhale", "barrack", "urge", "exalt", "instigate", "urge on", "invigorate", "pep up", "exhort", "revolutionize", "breathe in", "root on", "animate", "cheer", "enliven", "prompt", "inspire"]}, {"answer": "instal", "hint": "synonyms for instal", "clues": ["put in", "set up", "install", "establish"]}, {"answer": "install", "hint": "synonyms for install", "clues": ["establish", "put in", "set up", "instal"]}, {"answer": "instigate", "hint": "synonyms for instigate", "clues": ["inspire", "set off", "stir up", "incite", "prompt", "instigate"]}, {"answer": "instill", "hint": "synonyms for instill", "clues": ["inculcate", "tincture", "impregnate", "transfuse", "impress", "infuse", "instil", "ingrain"]}, {"answer": "institutionalise", "hint": "synonyms for institutionalise", "clues": ["charge", "send", "institutionalize", "commit"]}, {"answer": "institutionalize", "hint": "synonyms for institutionalize", "clues": ["charge", "send", "institutionalise", "commit"]}, {"answer": "instruct", "hint": "synonyms for instruct", "clues": ["apprise", "teach", "learn", "instruct"]}, {"answer": "insure", "hint": "synonyms for insure", "clues": ["control", "ensure", "see", "secure", "see to it", "assure", "check", "guarantee", "underwrite", "cover", "ascertain", "insure"]}, {"answer": "intend", "hint": "synonyms for intend", "clues": ["mean", "specify", "signify", "stand for", "destine", "designate", "think", "intend"]}, {"answer": "intensify", "hint": "synonyms for intensify", "clues": ["deepen", "step up", "escalate", "compound", "heighten", "intensify"]}, {"answer": "inter", "hint": "synonyms for inter", "clues": ["entomb", "inhume", "bury", "lay to rest", "inter"]}, {"answer": "interbreed", "hint": "synonyms for interbreed", "clues": ["crossbreed", "hybridise", "cross", "interbreed"]}, {"answer": "intercede", "hint": "synonyms for intercede", "clues": ["mediate", "intermediate", "arbitrate", "liaise", "intercede"]}, {"answer": "interject", "hint": "synonyms for interject", "clues": ["come in", "put in", "throw in", "interpose", "inject", "interject"]}, {"answer": "interlace", "hint": "synonyms for interlace", "clues": ["intertwine", "entwine", "lace", "interlock", "enlace", "lock", "twine", "interlace"]}, {"answer": "interpenetrate", "hint": "synonyms for interpenetrate", "clues": ["permeate", "imbue", "penetrate", "riddle", "diffuse", "pervade", "interpenetrate"]}, {"answer": "interpose", "hint": "synonyms for interpose", "clues": ["come in", "intervene", "interject", "put in", "throw in", "inject", "interfere", "step in", "interpose"]}, {"answer": "interpret", "hint": "synonyms for interpret", "clues": ["construe", "see", "represent", "render", "read", "translate", "rede", "understand", "interpret"]}, {"answer": "intertwine", "hint": "synonyms for intertwine", "clues": ["interlace", "entwine", "lace", "tat", "loop", "enlace", "twine", "intertwine"]}, {"answer": "intone", "hint": "synonyms for intone", "clues": ["intonate", "chant", "cantillate", "tone"]}, {"answer": "intoxicate", "hint": "synonyms for intoxicate", "clues": ["uplift", "elate", "pick up", "soak", "inebriate", "lift up", "intoxicate"]}, {"answer": "introduce", "hint": "synonyms for introduce", "clues": ["usher in", "enclose", "put in", "insert", "enter", "inaugurate", "bring in", "acquaint", "precede", "infix", "preface", "bring out", "premise", "stick in", "innovate", "present", "introduce"]}, {"answer": "intrude", "hint": "synonyms for intrude", "clues": ["trespass", "nose", "poke", "horn in", "irrupt", "pry", "obtrude", "intrude"]}, {"answer": "intrust", "hint": "synonyms for intrust", "clues": ["confide", "entrust", "trust", "commit"]}, {"answer": "intumesce", "hint": "synonyms for intumesce", "clues": ["swell up", "bubble up", "tumesce", "swell", "tumefy"]}, {"answer": "inunct", "hint": "synonyms for inunct", "clues": ["oil", "anele", "anoint", "embrocate", "inunct"]}, {"answer": "inundate", "hint": "synonyms for inundate", "clues": ["swamp", "deluge", "submerge", "flood", "inundate"]}, {"answer": "invade", "hint": "synonyms for invade", "clues": ["intrude on", "encroach upon", "infest", "obtrude upon", "overrun", "occupy", "invade"]}, {"answer": "invalidate", "hint": "synonyms for invalidate", "clues": ["void", "vitiate", "cancel", "quash", "annul", "nullify", "invalidate"]}, {"answer": "inveigle", "hint": "synonyms for inveigle", "clues": ["wheedle", "cajole", "sweet-talk", "blarney", "palaver", "coax", "inveigle"]}, {"answer": "invent", "hint": "synonyms for invent", "clues": ["devise", "fabricate", "formulate", "manufacture", "contrive", "excogitate", "make up", "cook up", "forge", "invent"]}, {"answer": "invest", "hint": "synonyms for invest", "clues": ["empower", "commit", "clothe", "seat", "induct", "gift", "enthrone", "endow", "adorn", "indue", "place", "put", "vest", "endue", "invest"]}, {"answer": "invigorate", "hint": "synonyms for invigorate", "clues": ["liven", "exalt", "quicken", "liven up", "reinvigorate", "inspire", "animate", "enliven"]}, {"answer": "invoke", "hint": "synonyms for invoke", "clues": ["conjure", "conjure up", "appeal", "bring up", "put forward", "raise", "evoke", "arouse", "stir", "call down", "call forth", "invoke"]}, {"answer": "involve", "hint": "synonyms for involve", "clues": ["regard", "ask", "necessitate", "need", "take", "postulate", "imply", "affect", "require", "call for", "demand", "involve"]}, {"answer": "iron_out", "hint": "synonyms for iron out", "clues": ["put right", "straighten out", "press", "iron", "iron out"]}, {"answer": "irritate", "hint": "synonyms for irritate", "clues": ["nark", "chafe", "devil", "rile", "annoy", "bother", "get to", "gravel", "vex", "rag", "get at", "nettle", "irritate"]}, {"answer": "irrupt", "hint": "synonyms for irrupt", "clues": ["flare up", "explode", "flare", "intrude", "erupt", "break open", "burst out", "irrupt"]}, {"answer": "isolate", "hint": "synonyms for isolate", "clues": ["sequestrate", "keep apart", "sequester", "set apart", "insulate", "isolate"]}, {"answer": "iterate", "hint": "synonyms for iterate", "clues": ["retell", "reiterate", "ingeminate", "restate", "repeat"]}, {"answer": "jack_off", "hint": "synonyms for jack off", "clues": ["jerk off", "wank", "she-bop", "fuck off", "masturbate", "jack off"]}, {"answer": "jactitate", "hint": "synonyms for jactitate", "clues": ["slash", "thresh about", "convulse", "thrash", "thresh", "toss", "jactitate"]}, {"answer": "jampack", "hint": "synonyms for jampack", "clues": ["chock up", "wad", "jam", "ram", "jampack"]}, {"answer": "jar_against", "hint": "synonyms for jar against", "clues": ["butt against", "run into", "knock against", "bump into", "jar against"]}, {"answer": "jeopardise", "hint": "synonyms for jeopardise", "clues": ["peril", "endanger", "menace", "threaten", "imperil", "jeopardize"]}, {"answer": "jeopardize", "hint": "synonyms for jeopardize", "clues": ["menace", "hazard", "stake", "peril", "jeopardise", "endanger", "threaten", "adventure", "imperil"]}, {"answer": "jerk_off", "hint": "synonyms for jerk off", "clues": ["jack off", "wank", "she-bop", "fuck off", "masturbate", "jerk off"]}, {"answer": "jest_at", "hint": "synonyms for jest at", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "poke fun", "make fun", "jest at"]}, {"answer": "jollify", "hint": "synonyms for jollify", "clues": ["revel", "make merry", "racket", "whoop it up", "wassail", "make happy", "make whoopie", "jollify"]}, {"answer": "josh", "hint": "synonyms for josh", "clues": ["banter", "jolly", "chaff", "kid", "josh"]}, {"answer": "jubilate", "hint": "synonyms for jubilate", "clues": ["triumph", "exult", "exuberate", "rejoice", "jubilate"]}, {"answer": "jump_on", "hint": "synonyms for jump on", "clues": ["bestride", "mount up", "get on", "hop on", "climb on", "mount", "jump on"]}, {"answer": "jump_out", "hint": "synonyms for jump out", "clues": ["jump", "leap out", "stand out", "stick out", "jump out"]}, {"answer": "justify", "hint": "synonyms for justify", "clues": ["apologise", "warrant", "absolve", "excuse", "rationalise", "vindicate", "free", "justify"]}, {"answer": "jut_out", "hint": "synonyms for jut out", "clues": ["project", "protrude", "jut", "stick out", "jut out"]}, {"answer": "keep_an_eye_on", "hint": "synonyms for keep an eye on", "clues": ["watch over", "observe", "watch", "follow", "keep an eye on"]}, {"answer": "keep_apart", "hint": "synonyms for keep apart", "clues": ["sequestrate", "isolate", "sequester", "set apart", "keep apart"]}, {"answer": "keep_back", "hint": "synonyms for keep back", "clues": ["restrain", "hold", "withhold", "keep", "hold back", "keep back"]}, {"answer": "keep_down", "hint": "synonyms for keep down", "clues": ["subdue", "subjugate", "repress", "reduce", "number", "quash", "keep down"]}, {"answer": "keep_going", "hint": "synonyms for keep going", "clues": ["patronize", "tide over", "support", "patronage", "bridge over", "run on", "keep going"]}, {"answer": "keep_mum", "hint": "synonyms for keep mum", "clues": ["close up", "belt up", "be quiet", "shut up", "clam up", "button up", "dummy up", "keep mum"]}, {"answer": "keep_one's_distance", "hint": "synonyms for keep one's distance", "clues": ["keep one's eyes off", "stand back", "keep one's hands off", "stay away", "keep one's distance"]}, {"answer": "keep_one's_eyes_off", "hint": "synonyms for keep one's eyes off", "clues": ["keep one's distance", "stand back", "keep one's hands off", "stay away", "keep one's eyes off"]}, {"answer": "keep_one's_hands_off", "hint": "synonyms for keep one's hands off", "clues": ["keep one's eyes off", "keep one's distance", "stand back", "stay away", "keep one's hands off"]}, {"answer": "keep_one's_nose_to_the_grindstone", "hint": "synonyms for keep one's nose to the grindstone", "clues": ["plug away", "slog", "keep one's shoulder to the wheel", "peg away", "keep one's nose to the grindstone"]}, {"answer": "keep_one's_shoulder_to_the_wheel", "hint": "synonyms for keep one's shoulder to the wheel", "clues": ["keep one's nose to the grindstone", "plug away", "slog", "peg away", "keep one's shoulder to the wheel"]}, {"answer": "keep_up", "hint": "synonyms for keep up", "clues": ["follow", "keep abreast", "maintain", "prolong", "sustain", "preserve", "conserve", "keep up"]}, {"answer": "key_out", "hint": "synonyms for key out", "clues": ["key", "identify", "name", "describe", "discover", "distinguish", "key out"]}, {"answer": "kick_downstairs", "hint": "synonyms for kick downstairs", "clues": ["break", "relegate", "demote", "bump", "kick downstairs"]}, {"answer": "kick_in", "hint": "synonyms for kick in", "clues": ["kick down", "chip in", "set in", "contribute", "give", "kick in"]}, {"answer": "kick_out", "hint": "synonyms for kick out", "clues": ["oust", "drum out", "boot out", "throw out", "expel", "kick out"]}, {"answer": "kick_the_bucket", "hint": "synonyms for kick the bucket", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "pass away", "kick the bucket"]}, {"answer": "kick_upstairs", "hint": "synonyms for kick upstairs", "clues": ["promote", "elevate", "advance", "upgrade", "raise", "kick upstairs"]}, {"answer": "kindle", "hint": "synonyms for kindle", "clues": ["inflame", "provoke", "fire", "evoke", "raise", "arouse", "conflagrate", "enkindle", "elicit"]}, {"answer": "kink_up", "hint": "synonyms for kink up", "clues": ["kink", "frizz", "crimp", "crape", "frizzle", "kink up"]}, {"answer": "kip_down", "hint": "synonyms for kip down", "clues": ["go to sleep", "sack out", "bed", "turn in", "retire", "go to bed", "crawl in", "hit the hay", "hit the sack", "kip down"]}, {"answer": "knap", "hint": "synonyms for knap", "clues": ["break off", "cut off", "rap", "chip", "knap"]}, {"answer": "knock_about", "hint": "synonyms for knock about", "clues": ["kick around", "kick about", "batter", "buffet"]}, {"answer": "knock_against", "hint": "synonyms for knock against", "clues": ["butt against", "run into", "jar against", "bump into", "knock against"]}, {"answer": "knock_down", "hint": "synonyms for knock down", "clues": ["down", "blast", "floor", "cut down", "pull down", "deck", "push down", "dump", "coldcock", "knock down"]}, {"answer": "knock_off", "hint": "synonyms for knock off", "clues": ["toss off", "scratch off", "thieve", "dash off", "shave", "drop", "neutralize", "fling off", "glom", "do in", "hook", "snitch", "cop", "waste", "liquidate", "knock off"]}, {"answer": "knock_over", "hint": "synonyms for knock over", "clues": ["bowl over", "tip over", "tump over", "turn over", "upset", "overturn", "knock over"]}, {"answer": "know_the_score", "hint": "synonyms for know the score", "clues": ["know what's going on", "be on the ball", "be with it", "know what's what", "know the score"]}, {"answer": "know_what's_going_on", "hint": "synonyms for know what's going on", "clues": ["be on the ball", "know the score", "be with it", "know what's what", "know what's going on"]}, {"answer": "know_what's_what", "hint": "synonyms for know what's what", "clues": ["know what's going on", "be on the ball", "know the score", "be with it", "know what's what"]}, {"answer": "knuckle_under", "hint": "synonyms for knuckle under", "clues": ["yield", "buckle under", "succumb", "give in"]}, {"answer": "lace_into", "hint": "synonyms for lace into", "clues": ["lam into", "tear into", "pitch into", "lace into"]}, {"answer": "lade", "hint": "synonyms for lade", "clues": ["laden", "ladle", "load", "load up"]}, {"answer": "lallygag", "hint": "synonyms for lallygag", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about"]}, {"answer": "lam_into", "hint": "synonyms for lam into", "clues": ["lace into", "lay into", "tear into", "pitch into"]}, {"answer": "lambast", "hint": "synonyms for lambast", "clues": ["flog", "chew up", "jaw", "remonstrate", "dress down", "cane", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "chide", "lambaste", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce"]}, {"answer": "lambaste", "hint": "synonyms for lambaste", "clues": ["flog", "chew up", "jaw", "remonstrate", "dress down", "cane", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce"]}, {"answer": "land_up", "hint": "synonyms for land up", "clues": ["finish up", "wind up", "earth up", "finish", "fetch up", "end up", "land up"]}, {"answer": "languish", "hint": "synonyms for languish", "clues": ["yearn", "ache", "pine away", "pine", "fade", "waste", "yen", "languish"]}, {"answer": "lark_about", "hint": "synonyms for lark about", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "run around", "skylark", "romp", "gambol", "lark about"]}, {"answer": "lash_out", "hint": "synonyms for lash out", "clues": ["assail", "assault", "round", "attack", "snipe", "lash out"]}, {"answer": "latch_on", "hint": "synonyms for latch on", "clues": ["take up", "get wise", "tumble", "twig", "cotton on", "get onto", "seize on", "hook on", "catch on", "get it", "fasten on"]}, {"answer": "laud", "hint": "synonyms for laud", "clues": ["exalt", "glorify", "extol", "proclaim", "laud"]}, {"answer": "laugh_at", "hint": "synonyms for laugh at", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "jest at", "poke fun", "make fun", "laugh at"]}, {"answer": "lay_away", "hint": "synonyms for lay away", "clues": ["squirrel away", "stash", "cache", "hive up", "hoard", "lay away"]}, {"answer": "lay_in", "hint": "synonyms for lay in", "clues": ["hive away", "salt away", "stack away", "put in", "store", "stash away", "lay in"]}, {"answer": "lay_into", "hint": "synonyms for lay into", "clues": ["lace into", "lam into", "tear into", "pitch into"]}, {"answer": "lay_off", "hint": "synonyms for lay off", "clues": ["quit", "give up", "discontinue", "furlough", "cease", "stop", "lay off"]}, {"answer": "lay_out", "hint": "synonyms for lay out", "clues": ["array", "range", "set out", "represent", "set up", "set", "lay out"]}, {"answer": "lay_to_rest", "hint": "synonyms for lay to rest", "clues": ["entomb", "inhume", "bury", "inter", "lay to rest"]}, {"answer": "lay_waste_to", "hint": "synonyms for lay waste to", "clues": ["scourge", "waste", "desolate", "ravage", "devastate", "lay waste to"]}, {"answer": "lead_astray", "hint": "synonyms for lead astray", "clues": ["lead off", "betray", "deceive", "misdirect", "mislead", "misguide", "lead astray"]}, {"answer": "lead_by_the_nose", "hint": "synonyms for lead by the nose", "clues": ["hoodwink", "pull the wool over someone's eyes", "bamboozle", "snow", "play false", "lead by the nose"]}, {"answer": "lead_off", "hint": "synonyms for lead off", "clues": ["start", "lead astray", "commence", "begin", "lead off"]}, {"answer": "leap_out", "hint": "synonyms for leap out", "clues": ["jump", "burst forth", "sally out", "stick out", "rush out", "jump out", "stand out", "leap out"]}, {"answer": "learn", "hint": "synonyms for learn", "clues": ["ascertain", "hear", "memorise", "instruct", "pick up", "determine", "discover", "study", "larn", "teach", "watch", "con", "see", "take", "acquire", "get wind", "check", "get word", "read", "get a line", "find out"]}, {"answer": "leave_off", "hint": "synonyms for leave off", "clues": ["leave out", "take out", "omit", "except", "exclude", "leave off"]}, {"answer": "leave_out", "hint": "synonyms for leave out", "clues": ["leave off", "overleap", "neglect", "omit", "pretermit", "take out", "drop", "overlook", "except", "exclude", "miss", "leave out"]}, {"answer": "legalise", "hint": "synonyms for legalise", "clues": ["decriminalize", "legitimate", "legitimize", "legalize"]}, {"answer": "legalize", "hint": "synonyms for legalize", "clues": ["decriminalize", "legitimate", "legalise", "legitimize"]}, {"answer": "legitimatise", "hint": "synonyms for legitimatise", "clues": ["decriminalize", "legitimate", "legalise", "legitimize"]}, {"answer": "legitimatize", "hint": "synonyms for legitimatize", "clues": ["decriminalize", "legitimate", "legalise", "legitimize"]}, {"answer": "legitimise", "hint": "synonyms for legitimise", "clues": ["decriminalize", "legitimate", "legalise", "legitimize"]}, {"answer": "legitimize", "hint": "synonyms for legitimize", "clues": ["decriminalize", "legitimate", "legalise", "legitimise"]}, {"answer": "lend", "hint": "synonyms for lend", "clues": ["bring", "impart", "contribute", "bestow", "add", "loan", "lend"]}, {"answer": "lenify", "hint": "synonyms for lenify", "clues": ["placate", "assuage", "conciliate", "mollify", "appease", "pacify", "gruntle", "gentle", "lenify"]}, {"answer": "lessen", "hint": "synonyms for lessen", "clues": ["diminish", "subside", "decrease", "minify", "fall", "lessen"]}, {"answer": "let_down", "hint": "synonyms for let down", "clues": ["bring down", "take down", "disappoint", "lower", "get down"]}, {"answer": "let_in", "hint": "synonyms for let in", "clues": ["include", "allow in", "admit", "intromit", "let in"]}, {"answer": "let_loose", "hint": "synonyms for let loose", "clues": ["loose", "emit", "unleash", "utter", "let out", "let loose"]}, {"answer": "let_on", "hint": "synonyms for let on", "clues": ["break", "unwrap", "expose", "give away", "reveal", "bring out", "disclose", "divulge", "discover", "let out", "let on"]}, {"answer": "let_out", "hint": "synonyms for let out", "clues": ["break", "unwrap", "expose", "give away", "let on", "let loose", "widen", "reveal", "emit", "bring out", "disclose", "divulge", "discover", "utter", "let out"]}, {"answer": "let_the_cat_out_of_the_bag", "hint": "synonyms for let the cat out of the bag", "clues": ["tattle", "peach", "babble out", "babble", "blab", "talk", "spill the beans", "blab out", "sing", "let the cat out of the bag"]}, {"answer": "let_up", "hint": "synonyms for let up", "clues": ["abate", "slack", "ease off", "slack off", "ease up", "die away", "let up"]}, {"answer": "liaise", "hint": "synonyms for liaise", "clues": ["mediate", "intercede", "intermediate", "arbitrate", "liaise"]}, {"answer": "liberate", "hint": "synonyms for liberate", "clues": ["set free", "unloose", "emancipate", "release", "loose", "free", "liberate"]}, {"answer": "lie_in_wait", "hint": "synonyms for lie in wait", "clues": ["ambush", "scupper", "lurk", "ambuscade", "waylay", "bushwhack", "lie in wait"]}, {"answer": "lie_with", "hint": "synonyms for lie with", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "lie with"]}, {"answer": "lift_out", "hint": "synonyms for lift out", "clues": ["take up", "scoop out", "scoop up", "scoop", "lift out"]}, {"answer": "lift_up", "hint": "synonyms for lift up", "clues": ["uplift", "elate", "pick up", "gather up", "intoxicate", "lift up"]}, {"answer": "light_up", "hint": "synonyms for light up", "clues": ["brighten", "illumine", "light", "fire up", "clear up", "clear", "light up"]}, {"answer": "light_upon", "hint": "synonyms for light upon", "clues": ["come across", "happen upon", "strike", "chance upon", "come upon", "fall upon", "attain", "discover", "light upon"]}, {"answer": "lighten", "hint": "synonyms for lighten", "clues": ["brighten", "relieve", "lighten up", "buoy up", "lighten"]}, {"answer": "limn", "hint": "synonyms for limn", "clues": ["portray", "outline", "delineate", "depict", "limn"]}, {"answer": "line_up", "hint": "synonyms for line up", "clues": ["dress", "align", "queue up", "come up", "find", "adjust", "aline", "queue", "get hold", "line up"]}, {"answer": "linger", "hint": "synonyms for linger", "clues": ["footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "hover", "mill about", "loaf", "mill around", "lurk", "mess about", "dawdle", "linger"]}, {"answer": "link_up", "hint": "synonyms for link up", "clues": ["tie", "unite", "connect", "link", "associate", "join", "colligate", "tie in", "relate", "link up"]}, {"answer": "liquidate", "hint": "synonyms for liquidate", "clues": ["neutralise", "waste", "do in", "knock off", "pay off", "liquidate"]}, {"answer": "liquidize", "hint": "synonyms for liquidize", "clues": ["sell out", "liquefy", "sell up", "liquidise"]}, {"answer": "listen", "hint": "synonyms for listen", "clues": ["mind", "hear", "heed", "take heed", "listen"]}, {"answer": "live_on", "hint": "synonyms for live on", "clues": ["go", "hold up", "hold out", "endure", "survive", "last", "live", "live on"]}, {"answer": "liven", "hint": "synonyms for liven", "clues": ["enliven", "liven up", "invigorate", "animate", "liven"]}, {"answer": "liven_up", "hint": "synonyms for liven up", "clues": ["liven", "enliven", "invigorate", "animate", "liven up"]}, {"answer": "localise", "hint": "synonyms for localise", "clues": ["focalise", "place", "set", "localize"]}, {"answer": "localize", "hint": "synonyms for localize", "clues": ["focalise", "place", "set", "localize"]}, {"answer": "locate", "hint": "synonyms for locate", "clues": ["site", "situate", "settle", "place", "turn up", "locate"]}, {"answer": "lock_away", "hint": "synonyms for lock away", "clues": ["shut away", "lock up", "shut up", "put away", "lock in", "lock", "lock away"]}, {"answer": "lock_in", "hint": "synonyms for lock in", "clues": ["shut away", "seal in", "lock up", "shut up", "put away", "lock away", "lock", "lock in"]}, {"answer": "lock_up", "hint": "synonyms for lock up", "clues": ["shut away", "shut up", "put away", "lock in", "lock away", "lock", "lock up"]}, {"answer": "log_z's", "hint": "synonyms for log z's", "clues": ["slumber", "log Z's", "sleep", "catch some Z's", "kip"]}, {"answer": "loiter", "hint": "synonyms for loiter", "clues": ["linger", "footle", "lounge", "lollygag", "hang around", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about", "loiter"]}, {"answer": "loll", "hint": "synonyms for loll", "clues": ["bum", "arse about", "lounge around", "frig around", "waste one's time", "bum around", "loaf", "loll around", "bum about", "arse around", "fuck off", "lounge about", "droop", "loll"]}, {"answer": "loll_around", "hint": "synonyms for loll around", "clues": ["bum", "arse about", "lounge about", "lounge around", "fuck off", "waste one's time", "bum around", "loaf", "arse around", "loll", "bum about", "frig around", "loll around"]}, {"answer": "lollygag", "hint": "synonyms for lollygag", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "tarry", "lallygag", "mill about", "loaf", "mill around", "lurk", "mess about"]}, {"answer": "look_at", "hint": "synonyms for look at", "clues": ["view", "consider", "take", "deal", "look at"]}, {"answer": "look_for", "hint": "synonyms for look for", "clues": ["search", "seek", "anticipate", "look to", "look for"]}, {"answer": "look_into", "hint": "synonyms for look into", "clues": ["investigate", "go over", "check into", "check over", "check out", "suss out", "check", "check up on", "look into"]}, {"answer": "look_on", "hint": "synonyms for look on", "clues": ["think of", "take to be", "esteem", "look upon", "repute", "watch", "regard as"]}, {"answer": "look_sharp", "hint": "synonyms for look sharp", "clues": ["rush", "hurry", "festinate", "hasten", "look sharp"]}, {"answer": "look_upon", "hint": "synonyms for look upon", "clues": ["think of", "take to be", "look on", "esteem", "repute", "regard as"]}, {"answer": "loosen", "hint": "synonyms for loosen", "clues": ["undo", "tease", "loose", "relax", "untie", "tease apart"]}, {"answer": "loosen_up", "hint": "synonyms for loosen up", "clues": ["slow down", "make relaxed", "relax", "unwind", "unstrain", "unlax", "decompress", "warm up", "unbend", "unstuff", "limber up", "loosen up"]}, {"answer": "lop", "hint": "synonyms for lop", "clues": ["clip", "trim", "cut back", "prune", "crop", "sever", "dress", "snip", "discerp", "lop"]}, {"answer": "lose", "hint": "synonyms for lose", "clues": ["fall back", "turn a loss", "fall behind", "drop off", "misplace", "mislay", "suffer", "recede", "miss", "lose"]}, {"answer": "lose_one's_temper", "hint": "synonyms for lose one's temper", "clues": ["have a fit", "flip one's lid", "throw a fit", "blow up", "hit the roof", "combust", "hit the ceiling", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "lose one's temper"]}, {"answer": "lose_weight", "hint": "synonyms for lose weight", "clues": ["reduce", "slim down", "melt off", "slenderize", "slim", "thin", "lose weight"]}, {"answer": "lounge_about", "hint": "synonyms for lounge about", "clues": ["bum", "arse about", "lounge around", "fuck off", "waste one's time", "bum around", "loaf", "loll around", "arse around", "loll", "bum about", "frig around", "lounge about"]}, {"answer": "lounge_around", "hint": "synonyms for lounge around", "clues": ["bum", "arse about", "lounge about", "fuck off", "waste one's time", "bum around", "loaf", "loll around", "arse around", "loll", "bum about", "frig around", "lounge around"]}, {"answer": "lour", "hint": "synonyms for lour", "clues": ["turn down", "frown", "glower", "lour"]}, {"answer": "louse_up", "hint": "synonyms for louse up", "clues": ["fuck up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "louse up"]}, {"answer": "lucubrate", "hint": "synonyms for lucubrate", "clues": ["expatiate", "expound", "dilate", "expand", "elaborate", "exposit", "enlarge", "flesh out", "lucubrate"]}, {"answer": "lurk", "hint": "synonyms for lurk", "clues": ["ambush", "footle", "ambuscade", "waylay", "loiter", "hang around", "lollygag", "mill about", "loaf", "mess about", "bushwhack", "linger", "scupper", "lie in wait", "lounge", "tarry", "skulk", "mill around", "lurk"]}, {"answer": "machinate", "hint": "synonyms for machinate", "clues": ["conjure", "get up", "organize", "devise", "cabal", "conspire", "prepare", "complot", "machinate"]}, {"answer": "magnetise", "hint": "synonyms for magnetise", "clues": ["spellbind", "magnetize", "mesmerize", "bewitch"]}, {"answer": "magnetize", "hint": "synonyms for magnetize", "clues": ["spellbind", "mesmerize", "magnetise", "bewitch"]}, {"answer": "magnify", "hint": "synonyms for magnify", "clues": ["hyperbolize", "overdraw", "overstate", "exaggerate", "amplify", "enlarge", "blow up", "magnify"]}, {"answer": "maintain", "hint": "synonyms for maintain", "clues": ["wield", "exert", "defend", "conserve", "observe", "keep", "uphold", "asseverate", "keep up", "hold", "sustain", "preserve", "assert", "maintain"]}, {"answer": "make_do", "hint": "synonyms for make do", "clues": ["grapple", "contend", "make out", "cope", "deal", "get by", "manage", "make do"]}, {"answer": "make_for", "hint": "synonyms for make for", "clues": ["bring", "wreak", "work", "play", "make for"]}, {"answer": "make_fun", "hint": "synonyms for make fun", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "poke fun", "make fun"]}, {"answer": "make_happy", "hint": "synonyms for make happy", "clues": ["jollify", "revel", "make merry", "racket", "whoop it up", "wassail", "make whoopie", "make happy"]}, {"answer": "make_headway", "hint": "synonyms for make headway", "clues": ["gain", "gain ground", "pull ahead", "advance", "win", "get ahead", "make headway"]}, {"answer": "make_it", "hint": "synonyms for make it", "clues": ["arrive", "pass", "come through", "survive", "pull through", "get in", "pull round", "go far", "make it"]}, {"answer": "make_love", "hint": "synonyms for make love", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "make love"]}, {"answer": "make_merry", "hint": "synonyms for make merry", "clues": ["jollify", "revel", "racket", "whoop it up", "wassail", "make happy", "make whoopie", "make merry"]}, {"answer": "make_off", "hint": "synonyms for make off", "clues": ["run off", "absquatulate", "decamp", "bolt", "go off", "abscond", "make off"]}, {"answer": "make_out", "hint": "synonyms for make out", "clues": ["do", "issue", "fare", "deal", "bed", "get it on", "have a go at it", "make love", "complete", "have it away", "fuck", "cope", "love", "be intimate", "have it off", "grapple", "fill in", "come", "know", "get along", "eff", "pick out", "tell apart", "neck", "sleep with", "get laid", "bonk", "make do", "roll in the hay", "lie with", "get by", "distinguish", "recognise", "fill out", "have intercourse", "cut", "spot", "screw", "contend", "jazz", "write out", "manage", "hump", "discern", "do it", "bang", "have sex", "sleep together", "make out"]}, {"answer": "make_over", "hint": "synonyms for make over", "clues": ["redo", "refashion", "rework", "retread", "remake", "make over"]}, {"answer": "make_relaxed", "hint": "synonyms for make relaxed", "clues": ["loosen up", "relax", "unwind", "unlax", "unstrain", "make relaxed"]}, {"answer": "make_up", "hint": "synonyms for make up", "clues": ["even out", "make", "represent", "fabricate", "correct", "cook up", "even up", "pay", "patch up", "constitute", "comprise", "reconcile", "settle", "even off", "manufacture", "counterbalance", "conciliate", "compensate", "be", "catch up with", "pay off", "invent", "make up"]}, {"answer": "make_water", "hint": "synonyms for make water", "clues": ["make", "puddle", "wee-wee", "spend a penny", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "make water"]}, {"answer": "make_whoopie", "hint": "synonyms for make whoopie", "clues": ["jollify", "revel", "make merry", "racket", "whoop it up", "wassail", "make happy", "make whoopie"]}, {"answer": "maltreat", "hint": "synonyms for maltreat", "clues": ["step", "ill-use", "ill-treat", "mistreat", "abuse", "maltreat"]}, {"answer": "malversate", "hint": "synonyms for malversate", "clues": ["peculate", "misappropriate", "defalcate", "embezzle", "malversate"]}, {"answer": "manage", "hint": "synonyms for manage", "clues": ["bring off", "superintend", "do", "supervise", "carry off", "negociate", "deal", "make do", "make out", "finagle", "cope", "get by", "care", "wield", "handle", "grapple", "pull off", "contend", "wangle", "oversee", "manage"]}, {"answer": "manipulate", "hint": "synonyms for manipulate", "clues": ["pull strings", "rig", "cook", "control", "misrepresent", "fake", "keep in line", "falsify", "pull wires", "wangle", "fudge", "manipulate"]}, {"answer": "manoeuver", "hint": "synonyms for manoeuver", "clues": ["maneuver", "manoeuvre", "direct", "head", "channelize", "steer", "guide", "operate", "point"]}, {"answer": "march_on", "hint": "synonyms for march on", "clues": ["progress", "pass on", "go on", "move on", "advance", "march on"]}, {"answer": "mark_off", "hint": "synonyms for mark off", "clues": ["check off", "tick", "mark", "mark out", "check", "tick off", "mark off"]}, {"answer": "marry", "hint": "synonyms for marry", "clues": ["tie", "hook up with", "conjoin", "splice", "wed", "espouse", "get hitched with", "get married", "marry"]}, {"answer": "masturbate", "hint": "synonyms for masturbate", "clues": ["jack off", "jerk off", "wank", "she-bop", "fuck off", "masturbate"]}, {"answer": "mat_up", "hint": "synonyms for mat up", "clues": ["mat", "matte", "matte up", "matt-up", "felt up", "felt"]}, {"answer": "matt-up", "hint": "synonyms for matt-up", "clues": ["mat", "matte", "matte up", "felt up", "felt", "matt-up"]}, {"answer": "matte_up", "hint": "synonyms for matte up", "clues": ["mat", "matt-up", "mat up", "matte", "felt up", "felt"]}, {"answer": "maturate", "hint": "synonyms for maturate", "clues": ["age", "suppurate", "senesce", "fester", "get on", "grow", "mature"]}, {"answer": "maunder", "hint": "synonyms for maunder", "clues": ["clack", "mutter", "mumble", "tattle", "palaver", "chatter", "piffle", "twaddle", "mussitate", "gabble", "blab", "tittle-tattle", "gibber", "blabber", "prate", "prattle", "maunder"]}, {"answer": "meditate", "hint": "synonyms for meditate", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "chew over", "study", "speculate", "meditate"]}, {"answer": "melanise", "hint": "synonyms for melanise", "clues": ["black", "blacken", "nigrify", "melanize"]}, {"answer": "melanize", "hint": "synonyms for melanize", "clues": ["melanise", "black", "blacken", "nigrify"]}, {"answer": "meliorate", "hint": "synonyms for meliorate", "clues": ["improve", "amend", "ameliorate", "better"]}, {"answer": "melt_off", "hint": "synonyms for melt off", "clues": ["lose weight", "reduce", "slim down", "slenderize", "slim", "thin", "melt off"]}, {"answer": "memorialise", "hint": "synonyms for memorialise", "clues": ["immortalise", "record", "memorialize", "commemorate"]}, {"answer": "memorialize", "hint": "synonyms for memorialize", "clues": ["memorialise", "immortalise", "record", "commemorate"]}, {"answer": "merge", "hint": "synonyms for merge", "clues": ["coalesce", "unite", "unify", "flux", "fuse", "mix", "commingle", "conflate", "immix", "combine", "meld", "blend", "merge"]}, {"answer": "mesmerise", "hint": "synonyms for mesmerise", "clues": ["hypnotise", "spellbind", "mesmerize", "magnetize", "bewitch"]}, {"answer": "mesmerize", "hint": "synonyms for mesmerize", "clues": ["spellbind", "hypnotize", "magnetize", "mesmerise", "bewitch"]}, {"answer": "mess_about", "hint": "synonyms for mess about", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill around", "lurk", "mess about"]}, {"answer": "mess_around", "hint": "synonyms for mess around", "clues": ["putter", "tinker", "muck around", "monkey around", "potter", "monkey", "muck about", "mess around"]}, {"answer": "mess_up", "hint": "synonyms for mess up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "ruffle", "bollocks", "botch", "bodge", "bumble", "fluff", "bungle", "flub", "fumble", "blow", "spoil", "mess", "rumple", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "ruffle up", "mess up"]}, {"answer": "metamorphose", "hint": "synonyms for metamorphose", "clues": ["transmogrify", "transform", "transfigure", "transmute", "metamorphose"]}, {"answer": "mete_out", "hint": "synonyms for mete out", "clues": ["distribute", "lot", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "parcel out", "administer", "dish out", "mete out"]}, {"answer": "micturate", "hint": "synonyms for micturate", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "micturate"]}, {"answer": "mill_about", "hint": "synonyms for mill about", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "loaf", "mill", "mill around", "lurk", "mess about", "mill about"]}, {"answer": "mill_around", "hint": "synonyms for mill around", "clues": ["linger", "footle", "lounge", "loiter", "hang around", "lollygag", "tarry", "mill about", "loaf", "mill", "lurk", "mess about", "mill around"]}, {"answer": "mingle", "hint": "synonyms for mingle", "clues": ["jumble", "commix", "unify", "mix", "amalgamate", "mingle"]}, {"answer": "minimize", "hint": "synonyms for minimize", "clues": ["belittle", "denigrate", "understate", "derogate", "downplay", "minimise"]}, {"answer": "misapprehend", "hint": "synonyms for misapprehend", "clues": ["misconceive", "be amiss", "misinterpret", "misconstrue", "misunderstand", "misapprehend"]}, {"answer": "misappropriate", "hint": "synonyms for misappropriate", "clues": ["peculate", "malversate", "defalcate", "embezzle", "misappropriate"]}, {"answer": "misconceive", "hint": "synonyms for misconceive", "clues": ["be amiss", "misinterpret", "misapprehend", "misconstrue", "misunderstand", "misconceive"]}, {"answer": "misconstrue", "hint": "synonyms for misconstrue", "clues": ["misconceive", "misinterpret", "misapprehend", "be amiss", "misunderstand", "misconstrue"]}, {"answer": "misdirect", "hint": "synonyms for misdirect", "clues": ["deprave", "pervert", "corrupt", "mislead", "lead astray", "demoralize", "vitiate", "misguide", "debauch", "misaddress", "profane", "subvert", "debase", "misdirect"]}, {"answer": "misguide", "hint": "synonyms for misguide", "clues": ["misadvise", "mislead", "lead astray", "misdirect", "misguide"]}, {"answer": "mishandle", "hint": "synonyms for mishandle", "clues": ["misconduct", "fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mismanage", "bollocks up", "foul up", "bollix", "botch up", "bobble", "mishandle"]}, {"answer": "misinterpret", "hint": "synonyms for misinterpret", "clues": ["misconceive", "be amiss", "misread", "misapprehend", "misconstrue", "misunderstand", "misinterpret"]}, {"answer": "mislead", "hint": "synonyms for mislead", "clues": ["misinform", "lead astray", "misguide", "misdirect", "mislead"]}, {"answer": "misrepresent", "hint": "synonyms for misrepresent", "clues": ["manipulate", "falsify", "cook", "wangle", "fudge", "fake", "belie", "misrepresent"]}, {"answer": "mistreat", "hint": "synonyms for mistreat", "clues": ["step", "ill-use", "ill-treat", "maltreat", "abuse", "mistreat"]}, {"answer": "misunderstand", "hint": "synonyms for misunderstand", "clues": ["misconceive", "be amiss", "misinterpret", "misapprehend", "misconstrue", "misunderstand"]}, {"answer": "mobilise", "hint": "synonyms for mobilise", "clues": ["mobilize", "rally", "circulate", "marshal", "summon", "call up"]}, {"answer": "mobilize", "hint": "synonyms for mobilize", "clues": ["rally", "circulate", "marshal", "mobilise", "summon", "call up"]}, {"answer": "moil", "hint": "synonyms for moil", "clues": ["labour", "fag", "drudge", "grind", "travail", "churn", "boil", "toil", "roil", "dig", "moil"]}, {"answer": "molest", "hint": "synonyms for molest", "clues": ["chevvy", "chivvy", "harass", "provoke", "harry", "hassle", "plague", "beset", "molest"]}, {"answer": "mollify", "hint": "synonyms for mollify", "clues": ["lenify", "placate", "assuage", "conciliate", "appease", "pacify", "temper", "gruntle", "gentle", "season", "mollify"]}, {"answer": "monish", "hint": "synonyms for monish", "clues": ["caution", "warn", "admonish", "discourage"]}, {"answer": "monkey_around", "hint": "synonyms for monkey around", "clues": ["putter", "tinker", "mess around", "muck around", "potter", "monkey", "muck about", "monkey around"]}, {"answer": "moon_around", "hint": "synonyms for moon around", "clues": ["moon on", "moon about", "moon", "mope", "moon around"]}, {"answer": "mortify", "hint": "synonyms for mortify", "clues": ["subdue", "crucify", "chagrin", "gangrene", "humiliate", "sphacelate", "abase", "necrose", "humble", "mortify"]}, {"answer": "motivate", "hint": "synonyms for motivate", "clues": ["actuate", "propel", "move", "incite", "prompt", "motivate"]}, {"answer": "mount_up", "hint": "synonyms for mount up", "clues": ["bestride", "jump on", "get on", "hop on", "climb on", "mount", "mount up"]}, {"answer": "mouth_off", "hint": "synonyms for mouth off", "clues": ["rave", "jabber", "rant", "rabbit on", "spout", "mouth off"]}, {"answer": "move_back", "hint": "synonyms for move back", "clues": ["retreat", "pull away", "draw back", "retire", "pull back", "recede", "withdraw", "move back"]}, {"answer": "move_into", "hint": "synonyms for move into", "clues": ["go in", "go into", "get into", "come in", "enter", "move into"]}, {"answer": "move_on", "hint": "synonyms for move on", "clues": ["progress", "pass on", "go on", "advance", "march on", "move on"]}, {"answer": "move_over", "hint": "synonyms for move over", "clues": ["give way", "ease up", "give", "yield", "move over"]}, {"answer": "move_through", "hint": "synonyms for move through", "clues": ["pass across", "pass through", "pass over", "transit", "move through"]}, {"answer": "move_up", "hint": "synonyms for move up", "clues": ["lift", "arise", "uprise", "ascend", "go up", "come up", "move up"]}, {"answer": "muck_about", "hint": "synonyms for muck about", "clues": ["putter", "tinker", "mess around", "monkey around", "muck around", "potter", "monkey", "muck about"]}, {"answer": "muck_around", "hint": "synonyms for muck around", "clues": ["putter", "tinker", "mess around", "monkey around", "potter", "monkey", "muck about", "muck around"]}, {"answer": "muck_up", "hint": "synonyms for muck up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "screw up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "bollocks up", "foul up", "bollix", "botch up", "bobble", "mud", "muck", "mire"]}, {"answer": "mug_up", "hint": "synonyms for mug up", "clues": ["bone", "get up", "drum", "swot", "swot up", "grind away", "bone up", "cram", "mug up"]}, {"answer": "mull_over", "hint": "synonyms for mull over", "clues": ["think over", "mull", "muse", "ponder", "ruminate", "contemplate", "excogitate", "reflect", "chew over", "meditate", "speculate", "mull over"]}, {"answer": "muster_up", "hint": "synonyms for muster up", "clues": ["summon", "rally", "muster", "come up", "muster up"]}, {"answer": "mutilate", "hint": "synonyms for mutilate", "clues": ["mar", "cut up", "murder", "mangle", "mutilate"]}, {"answer": "mystify", "hint": "synonyms for mystify", "clues": ["pose", "nonplus", "dumbfound", "get", "perplex", "flummox", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "mystify"]}, {"answer": "nab", "hint": "synonyms for nab", "clues": ["pick up", "arrest", "cop", "nail", "apprehend", "collar", "nab"]}, {"answer": "nail_down", "hint": "synonyms for nail down", "clues": ["narrow", "specify", "settle", "pin down", "narrow down", "peg down", "finalise", "nail", "peg", "nail down"]}, {"answer": "narrow_down", "hint": "synonyms for narrow down", "clues": ["peg down", "narrow", "specify", "nail down", "specialise", "pin down", "narrow down"]}, {"answer": "natter", "hint": "synonyms for natter", "clues": ["chitchat", "chat", "confab", "jaw", "shoot the breeze", "visit", "chatter", "chaffer", "gossip", "confabulate", "claver", "chew the fat", "natter"]}, {"answer": "naturalise", "hint": "synonyms for naturalise", "clues": ["domesticate", "cultivate", "naturalize", "tame"]}, {"answer": "naturalize", "hint": "synonyms for naturalize", "clues": ["domesticate", "cultivate", "tame", "naturalise"]}, {"answer": "nauseate", "hint": "synonyms for nauseate", "clues": ["revolt", "disgust", "churn up", "sicken", "turn one's stomach", "nauseate"]}, {"answer": "neaten", "hint": "synonyms for neaten", "clues": ["square away", "tidy", "groom", "straighten out", "clean up", "tidy up", "straighten", "neaten"]}, {"answer": "necessitate", "hint": "synonyms for necessitate", "clues": ["ask", "need", "involve", "take", "postulate", "require", "call for", "demand", "necessitate"]}, {"answer": "negate", "hint": "synonyms for negate", "clues": ["neutralise", "contravene", "contradict", "belie", "nullify", "negate"]}, {"answer": "negociate", "hint": "synonyms for negociate", "clues": ["bring off", "negotiate", "pull off", "carry off", "talk terms", "manage"]}, {"answer": "neutralise", "hint": "synonyms for neutralise", "clues": ["waste", "do in", "negate", "knock off", "neutralize", "nullify", "liquidate"]}, {"answer": "neutralize", "hint": "synonyms for neutralize", "clues": ["counteract", "negate", "counterbalance", "knock off", "neutralise", "countervail", "do in", "waste", "nullify", "liquidate"]}, {"answer": "niggle", "hint": "synonyms for niggle", "clues": ["squabble", "pettifog", "quibble", "brabble", "bicker", "fuss", "fret", "niggle"]}, {"answer": "nigrify", "hint": "synonyms for nigrify", "clues": ["melanise", "black", "blacken", "nigrify"]}, {"answer": "nobble", "hint": "synonyms for nobble", "clues": ["kidnap", "mulct", "sneak", "bunco", "victimize", "diddle", "purloin", "swipe", "hornswoggle", "short-change", "lift", "abstract", "con", "swindle", "pilfer", "pinch", "gip", "filch", "goldbrick", "scam", "snarf", "abduct", "snatch", "defraud", "gyp", "rook", "hook", "cabbage", "nobble"]}, {"answer": "nod_off", "hint": "synonyms for nod off", "clues": ["drowse off", "fall asleep", "flake out", "dope off", "drift off", "nod off"]}, {"answer": "nominate", "hint": "synonyms for nominate", "clues": ["name", "appoint", "make", "put forward", "propose", "put up", "constitute", "nominate"]}, {"answer": "nonplus", "hint": "synonyms for nonplus", "clues": ["mystify", "pose", "dumbfound", "get", "perplex", "flummox", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "bewilder", "stick", "amaze", "nonplus"]}, {"answer": "normalize", "hint": "synonyms for normalize", "clues": ["temper", "renormalise", "anneal", "normalize"]}, {"answer": "notify", "hint": "synonyms for notify", "clues": ["give notice", "advise", "apprise", "send word", "notify"]}, {"answer": "nourish", "hint": "synonyms for nourish", "clues": ["aliment", "sustain", "nutrify", "nurture", "nourish"]}, {"answer": "nullify", "hint": "synonyms for nullify", "clues": ["invalidate", "neutralise", "void", "negate", "quash", "annul", "nullify"]}, {"answer": "nuzzle", "hint": "synonyms for nuzzle", "clues": ["nestle", "cuddle", "nose", "draw close", "nest", "snuggle", "nuzzle"]}, {"answer": "objectify", "hint": "synonyms for objectify", "clues": ["exteriorize", "depersonalize", "externalise", "objectify"]}, {"answer": "objurgate", "hint": "synonyms for objurgate", "clues": ["castigate", "condemn", "decry", "reprobate", "correct", "excoriate", "chastise", "chasten", "objurgate"]}, {"answer": "oblige", "hint": "synonyms for oblige", "clues": ["obligate", "hold", "compel", "accommodate", "bind"]}, {"answer": "obnubilate", "hint": "synonyms for obnubilate", "clues": ["obscure", "blur", "haze over", "mist", "confuse", "becloud", "fog", "befog", "cloud", "obnubilate"]}, {"answer": "observe", "hint": "synonyms for observe", "clues": ["mention", "honour", "note", "celebrate", "follow", "abide by", "keep", "keep an eye on", "maintain", "take note", "find", "discover", "detect", "watch", "notice", "watch over", "remark", "respect", "observe"]}, {"answer": "obstruct", "hint": "synonyms for obstruct", "clues": ["blockade", "occlude", "block", "stymie", "stymy", "impede", "close up", "jam", "embarrass", "obturate", "hinder", "obstruct"]}, {"answer": "obtain", "hint": "synonyms for obtain", "clues": ["prevail", "find", "hold", "get", "receive", "incur", "obtain"]}, {"answer": "obturate", "hint": "synonyms for obturate", "clues": ["obstruct", "close up", "occlude", "jam", "block", "impede", "obturate"]}, {"answer": "obviate", "hint": "synonyms for obviate", "clues": ["fend off", "rid of", "avert", "head off", "debar", "forefend", "ward off", "eliminate", "stave off", "avoid", "deflect", "obviate"]}, {"answer": "occlude", "hint": "synonyms for occlude", "clues": ["obstruct", "close up", "jam", "block", "obturate", "impede", "occlude"]}, {"answer": "occupy", "hint": "synonyms for occupy", "clues": ["engage", "take", "absorb", "engross", "busy", "use up", "invade", "lodge in", "interest", "fill", "worry", "reside", "concern", "occupy"]}, {"answer": "occur", "hint": "synonyms for occur", "clues": ["go on", "come", "fall out", "take place", "happen", "come about", "pass off", "pass", "hap", "occur"]}, {"answer": "offend", "hint": "synonyms for offend", "clues": ["break", "spite", "hurt", "shock", "appall", "scandalize", "violate", "infract", "wound", "bruise", "go against", "injure", "breach", "pique", "transgress", "outrage", "offend"]}, {"answer": "omit", "hint": "synonyms for omit", "clues": ["leave off", "leave out", "overleap", "neglect", "pretermit", "take out", "drop", "overlook", "except", "exclude", "miss", "omit"]}, {"answer": "ooze_out", "hint": "synonyms for ooze out", "clues": ["exude", "transude", "exudate", "ooze", "ooze out"]}, {"answer": "operate", "hint": "synonyms for operate", "clues": ["go", "maneuver", "control", "mesh", "work", "manoeuvre", "function", "lock", "operate on", "engage", "run", "operate"]}, {"answer": "opine", "hint": "synonyms for opine", "clues": ["imagine", "think", "speak up", "suppose", "speak out", "animadvert", "guess", "reckon", "sound off", "opine"]}, {"answer": "oppose", "hint": "synonyms for oppose", "clues": ["fight down", "defend", "controvert", "fight back", "counterbalance", "match", "fight", "contradict", "play off", "pit", "react", "oppose"]}, {"answer": "orchestrate", "hint": "synonyms for orchestrate", "clues": ["engineer", "organize", "mastermind", "direct", "orchestrate"]}, {"answer": "ordain", "hint": "synonyms for ordain", "clues": ["enact", "order", "ordinate", "consecrate", "ordain"]}, {"answer": "organise", "hint": "synonyms for organise", "clues": ["organize", "form", "get up", "devise", "direct", "prepare", "orchestrate", "unionize", "engineer", "mastermind", "machinate", "coordinate"]}, {"answer": "organize", "hint": "synonyms for organize", "clues": ["form", "get up", "devise", "organise", "direct", "prepare", "unionize", "engineer", "mastermind", "machinate", "orchestrate", "coordinate"]}, {"answer": "originate", "hint": "synonyms for originate", "clues": ["rise", "grow", "initiate", "uprise", "start", "spring up", "develop", "originate"]}, {"answer": "ostentate", "hint": "synonyms for ostentate", "clues": ["flaunt", "swank", "flash", "show off", "ostentate"]}, {"answer": "ostracise", "hint": "synonyms for ostracise", "clues": ["ostracize", "ban", "banish", "blackball", "shun", "cast out"]}, {"answer": "ostracize", "hint": "synonyms for ostracize", "clues": ["ban", "banish", "ostracise", "blackball", "shun", "cast out"]}, {"answer": "oust", "hint": "synonyms for oust", "clues": ["drum out", "boot out", "kick out", "throw out", "expel", "oust"]}, {"answer": "outdo", "hint": "synonyms for outdo", "clues": ["outmatch", "best", "scoop", "outstrip", "outflank", "exceed", "surmount", "outgo", "surpass", "trump", "outperform", "outdo"]}, {"answer": "outflank", "hint": "synonyms for outflank", "clues": ["trump", "scoop", "go around", "outdo", "best", "outflank"]}, {"answer": "outfox", "hint": "synonyms for outfox", "clues": ["outsmart", "circumvent", "overreach", "outwit", "beat", "outfox"]}, {"answer": "outmatch", "hint": "synonyms for outmatch", "clues": ["exceed", "surmount", "outgo", "surpass", "outstrip", "outdo", "outperform", "outmatch"]}, {"answer": "outperform", "hint": "synonyms for outperform", "clues": ["outmatch", "exceed", "surmount", "outgo", "surpass", "outstrip", "outdo", "outperform"]}, {"answer": "outsmart", "hint": "synonyms for outsmart", "clues": ["circumvent", "overreach", "outwit", "outfox", "outmaneuver", "beat", "outsmart"]}, {"answer": "outstrip", "hint": "synonyms for outstrip", "clues": ["outmatch", "distance", "exceed", "surmount", "outdistance", "outgo", "surpass", "outdo", "outperform", "outstrip"]}, {"answer": "outwear", "hint": "synonyms for outwear", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "jade", "tire", "wear upon", "wear out", "fatigue", "outwear"]}, {"answer": "outwit", "hint": "synonyms for outwit", "clues": ["outsmart", "circumvent", "overreach", "outfox", "beat", "outwit"]}, {"answer": "overcloud", "hint": "synonyms for overcloud", "clues": ["obscure", "cloud up", "bedim", "cloud over", "overcloud"]}, {"answer": "overcome", "hint": "synonyms for overcome", "clues": ["subdue", "overtake", "whelm", "master", "have the best", "defeat", "surmount", "overpower", "get the best", "sweep over", "overwhelm", "get the better of", "get over", "overcome"]}, {"answer": "overdraw", "hint": "synonyms for overdraw", "clues": ["magnify", "hyperbolize", "exaggerate", "overstate", "amplify", "overdraw"]}, {"answer": "overdress", "hint": "synonyms for overdress", "clues": ["trick out", "overclothe", "fancy up", "deck up", "attire", "fig up", "deck out", "tog out", "rig out", "tog up", "prink", "get up", "trick up", "gussy up", "dress up", "overdress"]}, {"answer": "overeat", "hint": "synonyms for overeat", "clues": ["ingurgitate", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "overeat"]}, {"answer": "overgorge", "hint": "synonyms for overgorge", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "glut", "binge", "gorge", "overgorge"]}, {"answer": "overindulge", "hint": "synonyms for overindulge", "clues": ["ingurgitate", "overeat", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "overindulge"]}, {"answer": "overleap", "hint": "synonyms for overleap", "clues": ["leave out", "omit", "pretermit", "vault", "drop", "overlook", "neglect", "miss", "overleap"]}, {"answer": "overpower", "hint": "synonyms for overpower", "clues": ["overtake", "overcome", "whelm", "sweep over", "overwhelm", "overmaster", "overpower"]}, {"answer": "overreach", "hint": "synonyms for overreach", "clues": ["outsmart", "circumvent", "outwit", "outfox", "beat", "overreach"]}, {"answer": "overrule", "hint": "synonyms for overrule", "clues": ["reverse", "override", "overthrow", "overturn", "overrule"]}, {"answer": "overshadow", "hint": "synonyms for overshadow", "clues": ["eclipse", "dwarf", "dominate", "shadow", "overshadow"]}, {"answer": "overstate", "hint": "synonyms for overstate", "clues": ["magnify", "hyperbolize", "overdraw", "exaggerate", "amplify", "overstate"]}, {"answer": "overstep", "hint": "synonyms for overstep", "clues": ["go past", "trespass", "exceed", "transcend", "transgress", "pass", "top", "overstep"]}, {"answer": "overtake", "hint": "synonyms for overtake", "clues": ["overhaul", "whelm", "sweep over", "catch", "overpower", "overcome", "pass", "catch up with", "overwhelm", "overtake"]}, {"answer": "overwhelm", "hint": "synonyms for overwhelm", "clues": ["overtake", "flood out", "whelm", "drown", "overmaster", "deluge", "overpower", "overcome", "submerge", "sweep over", "overwhelm"]}, {"answer": "pacify", "hint": "synonyms for pacify", "clues": ["lenify", "placate", "assuage", "conciliate", "mollify", "appease", "gruntle", "gentle", "pacify"]}, {"answer": "palliate", "hint": "synonyms for palliate", "clues": ["mitigate", "relieve", "assuage", "extenuate", "alleviate", "palliate"]}, {"answer": "palter", "hint": "synonyms for palter", "clues": ["beat around the bush", "prevaricate", "equivocate", "tergiversate", "palter"]}, {"answer": "pamper", "hint": "synonyms for pamper", "clues": ["featherbed", "spoil", "cocker", "indulge", "mollycoddle", "cosset", "baby", "coddle", "pamper"]}, {"answer": "parcel_out", "hint": "synonyms for parcel out", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "shell out", "administer", "dish out", "parcel out"]}, {"answer": "pare", "hint": "synonyms for pare", "clues": ["trim", "pare down", "peel", "skin", "whittle", "pare"]}, {"answer": "pass_across", "hint": "synonyms for pass across", "clues": ["pass through", "pass over", "move through", "transit", "pass across"]}, {"answer": "pass_along", "hint": "synonyms for pass along", "clues": ["put across", "pass", "pass on", "communicate", "pass along"]}, {"answer": "pass_around", "hint": "synonyms for pass around", "clues": ["distribute", "pass on", "circulate", "disperse", "broadcast", "circularise", "disseminate", "spread", "diffuse", "propagate", "pass around"]}, {"answer": "pass_away", "hint": "synonyms for pass away", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away"]}, {"answer": "pass_by", "hint": "synonyms for pass by", "clues": ["go past", "go by", "travel by", "surpass", "pass", "pass by"]}, {"answer": "pass_off", "hint": "synonyms for pass off", "clues": ["go on", "breathe", "fleet", "evanesce", "fall out", "take place", "occur", "blow over", "happen", "come about", "emit", "pass", "fade", "hap", "pass off"]}, {"answer": "pass_on", "hint": "synonyms for pass on", "clues": ["go on", "move on", "circulate", "advance", "march on", "hand", "progress", "pass around", "impart", "pass along", "leave", "distribute", "put across", "turn over", "communicate", "relegate", "reach", "submit", "pass", "give", "pass on"]}, {"answer": "pass_out", "hint": "synonyms for pass out", "clues": ["distribute", "zonk out", "give out", "faint", "swoon", "hand out", "black out", "conk", "pass out"]}, {"answer": "pass_over", "hint": "synonyms for pass over", "clues": ["jump", "skip over", "skip", "cut through", "track", "move through", "overfly", "pass across", "cross", "transit", "get across", "pass through", "cut across", "cover", "wipe", "get over", "traverse", "pass over"]}, {"answer": "pass_through", "hint": "synonyms for pass through", "clues": ["pass over", "move through", "pass across", "infiltrate", "transit", "pass through"]}, {"answer": "pass_up", "hint": "synonyms for pass up", "clues": ["refuse", "decline", "reject", "turn down", "pass up"]}, {"answer": "pass_water", "hint": "synonyms for pass water", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "relieve oneself", "piddle", "take a leak", "pee-pee", "urinate", "pee", "piss", "pass water"]}, {"answer": "pass_with_flying_colors", "hint": "synonyms for pass with flying colors", "clues": ["ace", "sail through", "breeze through", "nail", "sweep through", "pass with flying colors"]}, {"answer": "patch_up", "hint": "synonyms for patch up", "clues": ["patch", "reconcile", "make up", "settle", "conciliate", "patch up"]}, {"answer": "patronise", "hint": "synonyms for patronise", "clues": ["patronize", "support", "shop at", "sponsor", "condescend", "frequent", "buy at", "patronage", "keep going", "shop"]}, {"answer": "patronize", "hint": "synonyms for patronize", "clues": ["support", "shop at", "sponsor", "condescend", "buy at", "frequent", "patronage", "keep going", "shop", "patronise"]}, {"answer": "pay_back", "hint": "synonyms for pay back", "clues": ["fix", "repay", "pay off", "get", "reward", "pay back"]}, {"answer": "pay_heed", "hint": "synonyms for pay heed", "clues": ["hang", "advert", "attend", "give ear", "pay heed"]}, {"answer": "pay_off", "hint": "synonyms for pay off", "clues": ["buy off", "compensate", "make up", "fix", "pay back", "pay", "get", "redeem", "liquidate", "pay off"]}, {"answer": "peculate", "hint": "synonyms for peculate", "clues": ["misappropriate", "malversate", "defalcate", "embezzle", "peculate"]}, {"answer": "peddle", "hint": "synonyms for peddle", "clues": ["huckster", "monger", "vend", "pitch", "hawk", "peddle"]}, {"answer": "pee-pee", "hint": "synonyms for pee-pee", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "urinate", "pee", "piss", "pee-pee"]}, {"answer": "peel_off", "hint": "synonyms for peel off", "clues": ["desquamate", "flake off", "flake", "peel", "peel off"]}, {"answer": "peg_away", "hint": "synonyms for peg away", "clues": ["keep one's nose to the grindstone", "plug away", "slog", "keep one's shoulder to the wheel", "peg away"]}, {"answer": "peg_down", "hint": "synonyms for peg down", "clues": ["narrow", "specify", "nail down", "peg", "pin down", "narrow down", "peg down"]}, {"answer": "pelt_along", "hint": "synonyms for pelt along", "clues": ["step on it", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "belt along", "hasten"]}, {"answer": "penetrate", "hint": "synonyms for penetrate", "clues": ["fathom", "imbue", "click", "come home", "sink in", "get through", "infiltrate", "pervade", "get across", "permeate", "bottom", "riddle", "diffuse", "perforate", "interpenetrate", "dawn", "fall into place", "penetrate"]}, {"answer": "pep_up", "hint": "synonyms for pep up", "clues": ["urge", "barrack", "juice up", "jazz up", "exhort", "ginger up", "inspire", "root on", "cheer", "urge on", "pep up"]}, {"answer": "perish", "hint": "synonyms for perish", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "snuff it", "pass", "kick the bucket", "pass away", "perish"]}, {"answer": "perk_up", "hint": "synonyms for perk up", "clues": ["perk", "brace", "percolate", "energise", "arouse", "pick up", "stimulate", "gain vigor", "perk up"]}, {"answer": "permeate", "hint": "synonyms for permeate", "clues": ["imbue", "sink in", "percolate", "pervade", "penetrate", "riddle", "filter", "diffuse", "interpenetrate", "permeate"]}, {"answer": "perplex", "hint": "synonyms for perplex", "clues": ["mystify", "pose", "nonplus", "dumbfound", "get", "flummox", "beat", "baffle", "puzzle", "vex", "gravel", "stupefy", "complicate", "bewilder", "stick", "amaze", "perplex"]}, {"answer": "persevere", "hint": "synonyms for persevere", "clues": ["hang on", "hold on", "persist", "persevere"]}, {"answer": "persist", "hint": "synonyms for persist", "clues": ["prevail", "hold on", "hang on", "remain", "die hard", "stay", "persevere", "run", "endure", "persist"]}, {"answer": "personify", "hint": "synonyms for personify", "clues": ["personate", "be", "body", "embody", "personify"]}, {"answer": "pertain", "hint": "synonyms for pertain", "clues": ["touch on", "have-to doe with", "touch", "appertain", "bear on", "come to", "refer", "concern", "relate"]}, {"answer": "perturb", "hint": "synonyms for perturb", "clues": ["cark", "trouble", "unhinge", "disquiet", "derange", "disorder", "distract", "throw out of kilter", "perturb"]}, {"answer": "pervade", "hint": "synonyms for pervade", "clues": ["imbue", "permeate", "penetrate", "riddle", "diffuse", "interpenetrate", "pervade"]}, {"answer": "pester", "hint": "synonyms for pester", "clues": ["beleaguer", "badger", "bug", "tease", "pester"]}, {"answer": "peter_out", "hint": "synonyms for peter out", "clues": ["fizzle out", "conk out", "taper off", "fizzle", "poop out", "run out", "run down", "peter out"]}, {"answer": "pettifog", "hint": "synonyms for pettifog", "clues": ["squabble", "quibble", "brabble", "niggle", "bicker", "pettifog"]}, {"answer": "philander", "hint": "synonyms for philander", "clues": ["womanize", "coquet", "romance", "mash", "chat up", "flirt", "dally", "butterfly", "philander"]}, {"answer": "pick_at", "hint": "synonyms for pick at", "clues": ["pluck at", "peck at", "belittle", "peck", "pull at", "disparage"]}, {"answer": "pick_out", "hint": "synonyms for pick out", "clues": ["take", "select", "recognize", "spot", "discern", "choose", "make out", "tell apart", "distinguish", "pick out"]}, {"answer": "pick_up", "hint": "synonyms for pick up", "clues": ["intoxicate", "perk", "peck", "hear", "collar", "call for", "uplift", "catch", "perk up", "discover", "cop", "gain vigor", "apprehend", "nab", "learn", "lift up", "elate", "see", "gather up", "turn around", "collect", "percolate", "receive", "get word", "get a line", "arrest", "nail", "find out", "get wind", "pick up"]}, {"answer": "piddle_away", "hint": "synonyms for piddle away", "clues": ["trifle", "piddle", "wanton", "wanton away", "piddle away"]}, {"answer": "pig_out", "hint": "synonyms for pig out", "clues": ["ingurgitate", "overeat", "overindulge", "engorge", "gormandize", "englut", "satiate", "stuff", "scarf out", "overgorge", "glut", "binge", "gorge", "pig out"]}, {"answer": "pile_up", "hint": "synonyms for pile up", "clues": ["roll up", "accumulate", "amass", "collect", "hoard", "conglomerate", "gather", "stack up", "compile", "heap up", "pile up"]}, {"answer": "pilfer", "hint": "synonyms for pilfer", "clues": ["lift", "abstract", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage", "pilfer"]}, {"answer": "pin_down", "hint": "synonyms for pin down", "clues": ["peg down", "pin up", "narrow", "specify", "nail down", "trap", "narrow down", "pin down"]}, {"answer": "pipe_down", "hint": "synonyms for pipe down", "clues": ["hush", "quieten", "quiesce", "quiet", "quiet down", "pipe down"]}, {"answer": "pitch_into", "hint": "synonyms for pitch into", "clues": ["lace into", "lam into", "tear into", "pitch into"]}, {"answer": "placate", "hint": "synonyms for placate", "clues": ["lenify", "assuage", "conciliate", "mollify", "appease", "pacify", "gruntle", "gentle", "placate"]}, {"answer": "play_a_joke_on", "hint": "synonyms for play a joke on", "clues": ["play tricks", "pull someone's leg", "hoax", "trick", "fob", "pull a fast one on", "play a trick on", "fox", "flim-flam", "play a joke on"]}, {"answer": "play_a_trick_on", "hint": "synonyms for play a trick on", "clues": ["play tricks", "pull a fast one on", "play a joke on", "trick", "fox", "fob", "flim-flam", "play a trick on"]}, {"answer": "play_false", "hint": "synonyms for play false", "clues": ["lead by the nose", "hoodwink", "pull the wool over someone's eyes", "bamboozle", "snow", "play false"]}, {"answer": "play_out", "hint": "synonyms for play out", "clues": ["exhaust", "run down", "tire", "sap", "play out"]}, {"answer": "play_tricks", "hint": "synonyms for play tricks", "clues": ["pull a fast one on", "play a trick on", "play a joke on", "trick", "fox", "fob", "flim-flam", "play tricks"]}, {"answer": "play_up", "hint": "synonyms for play up", "clues": ["highlight", "cotton up", "spotlight", "shine up", "suck up", "sidle up", "cozy up", "foreground", "play up"]}, {"answer": "plug_away", "hint": "synonyms for plug away", "clues": ["plug", "peg away", "keep one's nose to the grindstone", "slog", "keep one's shoulder to the wheel", "plug away"]}, {"answer": "plump_down", "hint": "synonyms for plump down", "clues": ["plump", "plunk", "plank", "plonk", "flump", "plop", "plonk down", "plump down"]}, {"answer": "plump_for", "hint": "synonyms for plump for", "clues": ["support", "endorse", "back", "plunk for", "plump for"]}, {"answer": "plump_out", "hint": "synonyms for plump out", "clues": ["fill out", "plump", "fatten out", "fatten", "fatten up", "fat", "flesh out", "plump out"]}, {"answer": "plunk_down", "hint": "synonyms for plunk down", "clues": ["plump", "flump", "plop", "plump down", "plonk", "plunk", "plank", "plunk down"]}, {"answer": "plunk_for", "hint": "synonyms for plunk for", "clues": ["support", "endorse", "back", "plump for", "plunk for"]}, {"answer": "point_out", "hint": "synonyms for point out", "clues": ["signalise", "notice", "remonstrate", "call attention", "remark", "comment", "point out"]}, {"answer": "poke_fun", "hint": "synonyms for poke fun", "clues": ["rib", "roast", "blackguard", "ridicule", "guy", "laugh at", "jest at", "make fun", "poke fun"]}, {"answer": "polish_off", "hint": "synonyms for polish off", "clues": ["finish off", "dispatch", "remove", "hit", "get through", "mop up", "slay", "wrap up", "clear up", "bump off", "finish up", "murder", "eat up", "finish", "off", "polish off"]}, {"answer": "polish_up", "hint": "synonyms for polish up", "clues": ["polish", "round off", "round", "brush up", "polish up"]}, {"answer": "ponder", "hint": "synonyms for ponder", "clues": ["think over", "mull", "muse", "mull over", "ruminate", "contemplate", "excogitate", "reflect", "chew over", "meditate", "speculate", "ponder"]}, {"answer": "pooh-pooh", "hint": "synonyms for pooh-pooh", "clues": ["spurn", "scorn", "disdain", "reject", "turn down", "freeze off", "pooh-pooh"]}, {"answer": "poop_out", "hint": "synonyms for poop out", "clues": ["conk out", "peter out", "run out", "run down", "poop out"]}, {"answer": "pop_off", "hint": "synonyms for pop off", "clues": ["decease", "cash in one's chips", "go", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "snuff it", "pass", "kick the bucket", "pass away", "pop off"]}, {"answer": "pop_out", "hint": "synonyms for pop out", "clues": ["protrude", "bug out", "start", "pop", "come out", "bulge", "burst out", "pop out"]}, {"answer": "portend", "hint": "synonyms for portend", "clues": ["bode", "omen", "foretell", "augur", "prefigure", "prognosticate", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "portend"]}, {"answer": "portion_out", "hint": "synonyms for portion out", "clues": ["apportion", "deal", "divvy up", "share", "portion out"]}, {"answer": "portray", "hint": "synonyms for portray", "clues": ["impersonate", "present", "depict", "limn", "portray"]}, {"answer": "postpone", "hint": "synonyms for postpone", "clues": ["put over", "set back", "put off", "hold over", "table", "shelve", "remit", "defer", "prorogue", "postpone"]}, {"answer": "pour", "hint": "synonyms for pour", "clues": ["teem", "pelt", "swarm", "rain cats and dogs", "pour out", "pullulate", "rain buckets", "decant", "stream", "pour"]}, {"answer": "pour_down", "hint": "synonyms for pour down", "clues": ["belt down", "drink down", "down", "toss off", "pop", "kill", "pour down"]}, {"answer": "pour_out", "hint": "synonyms for pour out", "clues": ["effuse", "spill out", "pour", "decant", "spill over", "pour out"]}, {"answer": "practise", "hint": "synonyms for practise", "clues": ["do", "drill", "practice", "rehearse", "exercise"]}, {"answer": "precede", "hint": "synonyms for precede", "clues": ["forgo", "predate", "antecede", "introduce", "preface", "lead", "premise", "come before", "antedate", "precede"]}, {"answer": "preclude", "hint": "synonyms for preclude", "clues": ["prevent", "forbid", "rule out", "close out", "forestall", "foreclose", "preclude"]}, {"answer": "predate", "hint": "synonyms for predate", "clues": ["forgo", "raven", "antecede", "precede", "foredate", "prey", "antedate", "predate"]}, {"answer": "predict", "hint": "synonyms for predict", "clues": ["omen", "foretell", "call", "promise", "forebode", "augur", "prefigure", "forecast", "betoken", "foreshadow", "bode", "prognosticate", "portend", "presage", "auspicate", "anticipate", "predict"]}, {"answer": "preen", "hint": "synonyms for preen", "clues": ["plume", "primp", "congratulate", "dress", "preen"]}, {"answer": "prefer", "hint": "synonyms for prefer", "clues": ["choose", "favor", "opt", "prefer"]}, {"answer": "prefigure", "hint": "synonyms for prefigure", "clues": ["bode", "omen", "foretell", "augur", "prognosticate", "portend", "presage", "auspicate", "forecast", "betoken", "foreshadow", "predict", "prefigure"]}, {"answer": "prepare", "hint": "synonyms for prepare", "clues": ["get up", "organize", "make", "cook", "devise", "set up", "set", "gear up", "groom", "train", "educate", "machinate", "fix", "ready", "develop", "prepare"]}, {"answer": "press_down_on", "hint": "synonyms for press down on", "clues": ["bear down", "drag down", "weigh down", "press down on"]}, {"answer": "press_out", "hint": "synonyms for press out", "clues": ["extinguish", "crush out", "press", "extract", "express", "stub out", "press out"]}, {"answer": "presume", "hint": "synonyms for presume", "clues": ["make bold", "dare", "take for granted", "assume", "presume"]}, {"answer": "pretermit", "hint": "synonyms for pretermit", "clues": ["leave out", "overleap", "omit", "drop", "overlook", "neglect", "miss", "pretermit"]}, {"answer": "prevail", "hint": "synonyms for prevail", "clues": ["persist", "reign", "predominate", "obtain", "triumph", "die hard", "hold", "rule", "dominate", "run", "endure", "prevail"]}, {"answer": "prevaricate", "hint": "synonyms for prevaricate", "clues": ["palter", "beat around the bush", "equivocate", "tergiversate", "prevaricate"]}, {"answer": "prevent", "hint": "synonyms for prevent", "clues": ["keep", "preclude", "forbid", "forestall", "foreclose", "prevent"]}, {"answer": "previse", "hint": "synonyms for previse", "clues": ["forewarn", "anticipate", "foreknow", "foresee", "previse"]}, {"answer": "prink", "hint": "synonyms for prink", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "gussy up", "dress up", "prink"]}, {"answer": "prise", "hint": "synonyms for prise", "clues": ["value", "lever", "jimmy", "esteem", "prize", "pry", "respect", "prise"]}, {"answer": "proceed", "hint": "synonyms for proceed", "clues": ["go", "go on", "move", "continue", "keep", "go along", "go forward", "carry on", "proceed"]}, {"answer": "proclaim", "hint": "synonyms for proclaim", "clues": ["laud", "promulgate", "predicate", "exalt", "glorify", "extol", "exclaim", "proclaim"]}, {"answer": "procrastinate", "hint": "synonyms for procrastinate", "clues": ["drag one's heels", "stall", "drag one's feet", "shillyshally", "dilly-dally", "procrastinate"]}, {"answer": "prognosticate", "hint": "synonyms for prognosticate", "clues": ["omen", "foretell", "call", "promise", "forebode", "augur", "prefigure", "forecast", "betoken", "foreshadow", "predict", "bode", "portend", "presage", "auspicate", "anticipate", "prognosticate"]}, {"answer": "prohibit", "hint": "synonyms for prohibit", "clues": ["disallow", "nix", "proscribe", "forbid", "veto", "interdict", "prohibit"]}, {"answer": "prolong", "hint": "synonyms for prolong", "clues": ["sustain", "keep up", "draw out", "protract", "extend", "prolong"]}, {"answer": "promote", "hint": "synonyms for promote", "clues": ["advance", "push", "raise", "further", "kick upstairs", "advertize", "encourage", "elevate", "boost", "upgrade", "promote"]}, {"answer": "pronounce", "hint": "synonyms for pronounce", "clues": ["articulate", "say", "label", "judge", "enunciate", "enounce", "sound out", "pronounce"]}, {"answer": "propagate", "hint": "synonyms for propagate", "clues": ["distribute", "circulate", "disperse", "spread", "broadcast", "circularise", "disseminate", "pass around", "diffuse", "propagate"]}, {"answer": "propel", "hint": "synonyms for propel", "clues": ["impel", "actuate", "motivate", "move", "incite", "prompt", "propel"]}, {"answer": "propose", "hint": "synonyms for propose", "clues": ["offer", "pop the question", "purpose", "suggest", "declare oneself", "advise", "aim", "nominate", "project", "purport"]}, {"answer": "prorogue", "hint": "synonyms for prorogue", "clues": ["put over", "set back", "put off", "hold over", "postpone", "table", "shelve", "remit", "defer", "prorogue"]}, {"answer": "proscribe", "hint": "synonyms for proscribe", "clues": ["disallow", "nix", "forbid", "veto", "prohibit", "interdict", "proscribe"]}, {"answer": "protrude", "hint": "synonyms for protrude", "clues": ["jut out", "start", "bulge out", "pop out", "pouch", "pop", "come out", "project", "bulge", "jut", "stick out", "protrude"]}, {"answer": "prove", "hint": "synonyms for prove", "clues": ["demonstrate", "testify", "evidence", "shew", "establish", "test", "try out", "raise", "bear witness", "show", "essay", "turn up", "turn out", "leaven", "examine", "try", "prove"]}, {"answer": "provide", "hint": "synonyms for provide", "clues": ["ply", "offer", "render", "put up", "supply", "allow", "cater", "allow for", "furnish", "bring home the bacon", "leave", "provide"]}, {"answer": "provoke", "hint": "synonyms for provoke", "clues": ["chivvy", "chevy", "fire", "kindle", "stimulate", "plague", "beset", "kick up", "harass", "raise", "evoke", "arouse", "molest", "harry", "hassle", "elicit", "call forth", "provoke"]}, {"answer": "ptyalise", "hint": "synonyms for ptyalise", "clues": ["ptyalize", "spew", "spue", "spit"]}, {"answer": "ptyalize", "hint": "synonyms for ptyalize", "clues": ["spew", "spue", "spit", "ptyalise"]}, {"answer": "publicise", "hint": "synonyms for publicise", "clues": ["advertize", "publicize", "bare", "air"]}, {"answer": "publicize", "hint": "synonyms for publicize", "clues": ["advertize", "publicise", "bare", "air"]}, {"answer": "publish", "hint": "synonyms for publish", "clues": ["bring out", "print", "release", "issue", "write", "put out", "publish"]}, {"answer": "puff_up", "hint": "synonyms for puff up", "clues": ["puff", "puff out", "swell", "blow up", "puff up"]}, {"answer": "pull_a_fast_one_on", "hint": "synonyms for pull a fast one on", "clues": ["play tricks", "play a trick on", "play a joke on", "trick", "fox", "fob", "flim-flam", "pull a fast one on"]}, {"answer": "pull_ahead", "hint": "synonyms for pull ahead", "clues": ["gain", "gain ground", "make headway", "advance", "win", "get ahead", "pull ahead"]}, {"answer": "pull_away", "hint": "synonyms for pull away", "clues": ["retreat", "draw back", "retire", "pull back", "recede", "move back", "withdraw", "pull away"]}, {"answer": "pull_back", "hint": "synonyms for pull back", "clues": ["pull away", "draw back", "move back", "crawfish", "retract", "back out", "back away", "retire", "draw", "pull in one's horns", "recede", "crawfish out", "withdraw", "pull back"]}, {"answer": "pull_down", "hint": "synonyms for pull down", "clues": ["tear down", "raze", "rase", "down", "level", "knock down", "cut down", "take down", "dismantle", "push down", "pull down"]}, {"answer": "pull_in", "hint": "synonyms for pull in", "clues": ["pull", "take in", "make", "realise", "move in", "earn", "collect", "bring in", "draw in", "gain", "draw", "attract", "get in", "clear", "pull in"]}, {"answer": "pull_in_one's_horns", "hint": "synonyms for pull in one's horns", "clues": ["back out", "retreat", "back away", "crawfish out", "pull back", "crawfish", "withdraw", "pull in one's horns"]}, {"answer": "pull_off", "hint": "synonyms for pull off", "clues": ["bring off", "pluck", "draw off", "draw away", "carry off", "negociate", "pick off", "manage", "tweak", "pull off"]}, {"answer": "pull_out", "hint": "synonyms for pull out", "clues": ["pull", "bow out", "extract", "draw out", "get out", "back down", "back off", "take out", "draw", "pull up", "chicken out", "pull out"]}, {"answer": "pull_round", "hint": "synonyms for pull round", "clues": ["make it", "survive", "pull through", "come through", "pull round"]}, {"answer": "pull_the_wool_over_someone's_eyes", "hint": "synonyms for pull the wool over someone's eyes", "clues": ["lead by the nose", "hoodwink", "bamboozle", "snow", "play false", "pull the wool over someone's eyes"]}, {"answer": "pull_through", "hint": "synonyms for pull through", "clues": ["bring through", "save", "come through", "make it", "survive", "pull round", "carry through", "pull through"]}, {"answer": "pull_up", "hint": "synonyms for pull up", "clues": ["pull", "draw up", "extract", "draw out", "take out", "haul up", "straighten up", "pull out", "pull up"]}, {"answer": "pullulate", "hint": "synonyms for pullulate", "clues": ["teem", "sprout", "swarm", "shoot", "burgeon forth", "germinate", "bourgeon", "pour", "spud", "stream", "pullulate"]}, {"answer": "pulsate", "hint": "synonyms for pulsate", "clues": ["pulse", "throb", "quiver", "beat", "pulsate"]}, {"answer": "pulverise", "hint": "synonyms for pulverise", "clues": ["pulverize", "powderize", "powder", "demolish"]}, {"answer": "pulverize", "hint": "synonyms for pulverize", "clues": ["powderize", "demolish", "powder", "pulverise"]}, {"answer": "punctuate", "hint": "synonyms for punctuate", "clues": ["accent", "stress", "mark", "emphasize", "accentuate", "punctuate"]}, {"answer": "purify", "hint": "synonyms for purify", "clues": ["sanctify", "sublimate", "purge", "make pure", "distill", "purify"]}, {"answer": "purloin", "hint": "synonyms for purloin", "clues": ["lift", "abstract", "pilfer", "pinch", "filch", "snarf", "sneak", "nobble", "hook", "swipe", "cabbage", "purloin"]}, {"answer": "pursue", "hint": "synonyms for pursue", "clues": ["go after", "act on", "follow", "engage", "prosecute", "follow up on", "quest after", "quest for", "pursue"]}, {"answer": "push_around", "hint": "synonyms for push around", "clues": ["hector", "browbeat", "bully", "ballyrag", "boss around", "strong-arm", "push around"]}, {"answer": "push_aside", "hint": "synonyms for push aside", "clues": ["brush aside", "dismiss", "disregard", "discount", "brush off", "ignore", "push away"]}, {"answer": "push_down", "hint": "synonyms for push down", "clues": ["cut down", "down", "knock down", "pull down", "push down"]}, {"answer": "put_across", "hint": "synonyms for put across", "clues": ["pass", "pass on", "pass along", "communicate", "put across"]}, {"answer": "put_away", "hint": "synonyms for put away", "clues": ["dispose", "lock up", "cast away", "lock away", "toss", "toss out", "shut away", "discard", "jail", "chuck out", "shut up", "throw away", "fling", "cast out", "put behind bars", "gaol", "tuck away", "jug", "remand", "put to sleep", "immure", "put aside", "lag", "tuck in", "incarcerate", "lock in", "cast aside", "throw out", "imprison", "lock", "toss away", "put away"]}, {"answer": "put_behind_bars", "hint": "synonyms for put behind bars", "clues": ["gaol", "jug", "remand", "put away", "immure", "jail", "lag", "incarcerate", "imprison", "put behind bars"]}, {"answer": "put_down", "hint": "synonyms for put down", "clues": ["repose", "destroy", "drop off", "degrade", "record", "drop", "take down", "write down", "unload", "place down", "discharge", "enter", "demean", "land", "bring down", "disgrace", "set down", "lay", "put down"]}, {"answer": "put_forward", "hint": "synonyms for put forward", "clues": ["conjure", "conjure up", "bring up", "state", "invoke", "evoke", "raise", "put up", "nominate", "arouse", "stir", "submit", "call down", "posit", "call forth", "assert", "put forward"]}, {"answer": "put_in", "hint": "synonyms for put in", "clues": ["barge in", "lay in", "inject", "set up", "insert", "introduce", "hive away", "stack away", "throw in", "break in", "chisel in", "submit", "salt away", "enclose", "stick in", "cut in", "butt in", "interpose", "interject", "instal", "chime in", "stash away", "store", "come in", "put in"]}, {"answer": "put_off", "hint": "synonyms for put off", "clues": ["confuse", "hold over", "disconcert", "dodge", "turn off", "hedge", "shelve", "flurry", "prorogue", "put over", "dishearten", "set back", "defer", "elude", "evade", "postpone", "skirt", "circumvent", "duck", "remit", "parry", "fudge", "table", "sidestep", "put off"]}, {"answer": "put_one_across", "hint": "synonyms for put one across", "clues": ["cod", "befool", "slang", "put one over", "gull", "fool", "dupe", "take in", "put on", "put one across"]}, {"answer": "put_one_over", "hint": "synonyms for put one over", "clues": ["put one across", "cod", "befool", "slang", "gull", "fool", "dupe", "take in", "put on", "put one over"]}, {"answer": "put_out", "hint": "synonyms for put out", "clues": ["hold out", "issue", "anaesthetise", "put under", "douse", "bother", "stretch out", "retire", "trouble", "inconvenience", "disoblige", "stretch forth", "exsert", "smother", "incommode", "bring out", "discommode", "release", "publish", "extend", "put out"]}, {"answer": "put_over", "hint": "synonyms for put over", "clues": ["defer", "set back", "put off", "hold over", "postpone", "get across", "shelve", "remit", "table", "prorogue", "put over"]}, {"answer": "put_through", "hint": "synonyms for put through", "clues": ["go through", "follow up", "follow out", "implement", "carry out", "follow through", "put through"]}, {"answer": "put_together", "hint": "synonyms for put together", "clues": ["set up", "assemble", "piece", "tack", "tack together", "put together"]}, {"answer": "put_up", "hint": "synonyms for put up", "clues": ["put forward", "set up", "contribute", "erect", "abide", "rear", "nominate", "domiciliate", "suffer", "support", "offer", "stomach", "provide", "raise", "bear", "tolerate", "brook", "digest", "tin", "post", "stand", "endure", "stick out", "can", "house", "put up"]}, {"answer": "puzzle_out", "hint": "synonyms for puzzle out", "clues": ["solve", "work", "figure out", "work out", "lick", "puzzle out"]}, {"answer": "qualify", "hint": "synonyms for qualify", "clues": ["condition", "dispose", "characterize", "specify", "restrict", "measure up", "stipulate", "modify", "qualify"]}, {"answer": "quash", "hint": "synonyms for quash", "clues": ["subdue", "subjugate", "invalidate", "reduce", "avoid", "repress", "keep down", "annul", "nullify", "quash"]}, {"answer": "quell", "hint": "synonyms for quell", "clues": ["stay", "appease", "squelch", "quench", "quell"]}, {"answer": "quench", "hint": "synonyms for quench", "clues": ["snuff out", "quell", "extinguish", "allay", "blow out", "assuage", "slake", "squelch", "quench"]}, {"answer": "quetch", "hint": "synonyms for quetch", "clues": ["complain", "plain", "kvetch", "kick", "sound off", "quetch"]}, {"answer": "quicken", "hint": "synonyms for quicken", "clues": ["recreate", "renovate", "whet", "reanimate", "invigorate", "accelerate", "speed", "vivify", "repair", "revive", "speed up", "quicken"]}, {"answer": "quiesce", "hint": "synonyms for quiesce", "clues": ["hush", "quieten", "quiet", "quiet down", "pipe down", "quiesce"]}, {"answer": "quiet_down", "hint": "synonyms for quiet down", "clues": ["hush", "quieten", "quiesce", "quiet", "pipe down", "quiet down"]}, {"answer": "quieten", "hint": "synonyms for quieten", "clues": ["hush", "still", "tranquilize", "pipe down", "silence", "calm down", "quiesce", "lull", "hush up", "shut up", "quiet", "calm", "quiet down", "quieten"]}, {"answer": "quit", "hint": "synonyms for quit", "clues": ["chuck up the sponge", "give up", "fall by the wayside", "drop by the wayside", "throw in the towel", "depart", "throw in", "leave office", "take leave", "renounce", "foreswear", "drop out", "discontinue", "resign", "step down", "cease", "stop", "relinquish", "lay off", "quit"]}, {"answer": "rabbit_on", "hint": "synonyms for rabbit on", "clues": ["rave", "mouth off", "jabber", "rant", "spout", "rabbit on"]}, {"answer": "rack_up", "hint": "synonyms for rack up", "clues": ["whip", "pip", "mop up", "hit", "worst", "tally", "score", "rack up"]}, {"answer": "rain_buckets", "hint": "synonyms for rain buckets", "clues": ["pour", "pelt", "stream", "rain cats and dogs", "rain buckets"]}, {"answer": "rain_cats_and_dogs", "hint": "synonyms for rain cats and dogs", "clues": ["pour", "rain buckets", "pelt", "stream", "rain cats and dogs"]}, {"answer": "raise_up", "hint": "synonyms for raise up", "clues": ["commove", "vex", "disturb", "agitate", "stir up", "shake up", "raise up"]}, {"answer": "ram_down", "hint": "synonyms for ram down", "clues": ["beat in", "pound", "ram", "hammer in", "drill in", "ram down"]}, {"answer": "ramify", "hint": "synonyms for ramify", "clues": ["branch", "fork", "furcate", "separate", "complexify", "ramify"]}, {"answer": "ransack", "hint": "synonyms for ransack", "clues": ["despoil", "comb", "strip", "rifle", "foray", "plunder", "pillage", "loot", "reave", "ransack"]}, {"answer": "rase", "hint": "synonyms for rase", "clues": ["tear down", "raze", "pull down", "take down", "level", "dismantle", "rase"]}, {"answer": "rationalise", "hint": "synonyms for rationalise", "clues": ["excuse", "justify", "apologize", "cut", "prune", "rationalize"]}, {"answer": "rationalize", "hint": "synonyms for rationalize", "clues": ["rationalise", "justify", "apologize", "cut", "prune", "excuse"]}, {"answer": "rattle_down", "hint": "synonyms for rattle down", "clues": ["rattle off", "roll off", "spiel off", "reel off", "rattle down"]}, {"answer": "rattle_off", "hint": "synonyms for rattle off", "clues": ["rattle down", "spiel off", "reel off", "roll off", "rattle off"]}, {"answer": "rattle_on", "hint": "synonyms for rattle on", "clues": ["yack", "jaw", "yack away", "yap away", "rattle on"]}, {"answer": "ravish", "hint": "synonyms for ravish", "clues": ["enchant", "assault", "enthral", "rape", "dishonour", "transport", "enrapture", "violate", "delight", "outrage", "ravish"]}, {"answer": "raze", "hint": "synonyms for raze", "clues": ["tear down", "rase", "pull down", "take down", "level", "dismantle", "raze"]}, {"answer": "realise", "hint": "synonyms for realise", "clues": ["agnize", "make", "see", "recognize", "earn", "pull in", "actualise", "agnise", "bring in", "understand", "gain", "substantiate", "take in", "realize", "clear"]}, {"answer": "realize", "hint": "synonyms for realize", "clues": ["take in", "agnize", "make", "see", "realise", "recognize", "earn", "agnise", "actualise", "pull in", "bring in", "clear", "gain", "substantiate", "understand"]}, {"answer": "reanimate", "hint": "synonyms for reanimate", "clues": ["recreate", "renovate", "vivify", "quicken", "repair", "animate", "revive"]}, {"answer": "reave", "hint": "synonyms for reave", "clues": ["despoil", "strip", "rifle", "foray", "plunder", "pillage", "loot", "ransack", "reave"]}, {"answer": "recant", "hint": "synonyms for recant", "clues": ["forswear", "abjure", "resile", "retract", "recant"]}, {"answer": "recapitulate", "hint": "synonyms for recapitulate", "clues": ["recap", "reprize", "repeat", "recapitulate"]}, {"answer": "recast", "hint": "synonyms for recast", "clues": ["reforge", "remould", "remodel", "recast"]}, {"answer": "recede", "hint": "synonyms for recede", "clues": ["pull away", "fall back", "draw back", "move back", "fall behind", "retreat", "drop off", "retire", "pull back", "lose", "withdraw", "recede"]}, {"answer": "receive", "hint": "synonyms for receive", "clues": ["encounter", "obtain", "meet", "find", "experience", "pick up", "welcome", "take in", "have", "get", "invite", "incur", "receive"]}, {"answer": "recidivate", "hint": "synonyms for recidivate", "clues": ["retrogress", "fall back", "regress", "relapse", "lapse", "recidivate"]}, {"answer": "recite", "hint": "synonyms for recite", "clues": ["narrate", "retell", "itemise", "enumerate", "recount", "declaim", "tell", "recite"]}, {"answer": "reckon", "hint": "synonyms for reckon", "clues": ["regard", "view", "look", "bet", "cipher", "think", "suppose", "consider", "forecast", "guess", "estimate", "depend", "count on", "count", "see", "compute", "work out", "figure", "opine", "cypher", "imagine", "calculate", "reckon"]}, {"answer": "reclaim", "hint": "synonyms for reclaim", "clues": ["domesticate", "domesticise", "repossess", "recover", "rectify", "tame", "reform", "regenerate", "reclaim"]}, {"answer": "recognise", "hint": "synonyms for recognise", "clues": ["agnize", "greet", "realise", "recognize", "spot", "agnise", "know", "discern", "pick out", "acknowledge", "make out", "tell apart", "distinguish", "accredit"]}, {"answer": "recognize", "hint": "synonyms for recognize", "clues": ["agnize", "greet", "realise", "spot", "agnise", "know", "discern", "pick out", "tell apart", "acknowledge", "accredit", "make out", "distinguish", "recognise"]}, {"answer": "recollect", "hint": "synonyms for recollect", "clues": ["call back", "remember", "recall", "retrieve", "think", "call up", "recollect"]}, {"answer": "reconcile", "hint": "synonyms for reconcile", "clues": ["patch up", "harmonize", "settle", "conciliate", "resign", "make up", "submit", "accommodate", "reconcile"]}, {"answer": "reconstruct", "hint": "synonyms for reconstruct", "clues": ["rebuild", "construct", "redo", "retrace", "restore", "remodel"]}, {"answer": "recoup", "hint": "synonyms for recoup", "clues": ["recuperate", "withhold", "deduct", "recover", "reimburse", "recoup"]}, {"answer": "recover", "hint": "synonyms for recover", "clues": ["recuperate", "find", "recoup", "retrieve", "go back", "convalesce", "regain", "reclaim", "recover"]}, {"answer": "recreate", "hint": "synonyms for recreate", "clues": ["renovate", "play", "reanimate", "quicken", "vivify", "hearten", "embolden", "repair", "revive", "cheer", "recreate"]}, {"answer": "recrudesce", "hint": "synonyms for recrudesce", "clues": ["break", "erupt", "break out", "develop", "recrudesce"]}, {"answer": "rectify", "hint": "synonyms for rectify", "clues": ["reclaim", "amend", "right", "remedy", "correct", "repair", "refine", "remediate", "reform", "regenerate", "rectify"]}, {"answer": "recuperate", "hint": "synonyms for recuperate", "clues": ["recoup", "go back", "recover", "convalesce", "recuperate"]}, {"answer": "recur", "hint": "synonyms for recur", "clues": ["resort", "fall back", "go back", "repeat", "recur"]}, {"answer": "redeem", "hint": "synonyms for redeem", "clues": ["ransom", "deliver", "pay off", "save", "redeem"]}, {"answer": "redo", "hint": "synonyms for redo", "clues": ["refashion", "make over", "reconstruct", "remake", "remodel", "redo"]}, {"answer": "reduce", "hint": "synonyms for reduce", "clues": ["subjugate", "lose weight", "foreshorten", "come down", "slim down", "cut back", "shrink", "dilute", "concentrate", "thin out", "decoct", "repress", "keep down", "quash", "abridge", "melt off", "subdue", "shorten", "trim", "cut", "deoxidize", "tighten", "scale down", "slenderize", "thin", "bring down", "cut down", "trim back", "trim down", "boil down", "contract", "abbreviate", "slim", "reduce"]}, {"answer": "reduplicate", "hint": "synonyms for reduplicate", "clues": ["double", "duplicate", "geminate", "repeat", "replicate"]}, {"answer": "reel_off", "hint": "synonyms for reel off", "clues": ["rattle off", "rattle down", "unreel", "spiel off", "roll off", "reel off"]}, {"answer": "refer", "hint": "synonyms for refer", "clues": ["mention", "name", "touch on", "bring up", "come to", "pertain", "touch", "look up", "cite", "advert", "denote", "consult", "bear on", "have-to doe with", "concern", "relate", "refer"]}, {"answer": "refine", "hint": "synonyms for refine", "clues": ["down", "fine-tune", "elaborate", "polish", "complicate", "rectify", "rarify", "refine"]}, {"answer": "reflect", "hint": "synonyms for reflect", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "shine", "excogitate", "chew over", "reverberate", "meditate", "speculate", "reflect"]}, {"answer": "refresh", "hint": "synonyms for refresh", "clues": ["freshen up", "brush up", "refreshen", "review"]}, {"answer": "regard_as", "hint": "synonyms for regard as", "clues": ["think of", "take to be", "look on", "esteem", "repute", "regard as"]}, {"answer": "regorge", "hint": "synonyms for regorge", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "regorge"]}, {"answer": "regularise", "hint": "synonyms for regularise", "clues": ["regulate", "govern", "order", "regularize"]}, {"answer": "regularize", "hint": "synonyms for regularize", "clues": ["regulate", "govern", "order", "regularise"]}, {"answer": "regulate", "hint": "synonyms for regulate", "clues": ["regularise", "baffle", "govern", "determine", "shape", "mold", "order", "influence", "modulate", "regulate"]}, {"answer": "regurgitate", "hint": "synonyms for regurgitate", "clues": ["upchuck", "purge", "chuck", "reproduce", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "puke", "barf", "spue", "vomit up", "spew", "sick", "regurgitate"]}, {"answer": "reiterate", "hint": "synonyms for reiterate", "clues": ["retell", "iterate", "ingeminate", "restate", "repeat"]}, {"answer": "rejoice", "hint": "synonyms for rejoice", "clues": ["exuberate", "jubilate", "exult", "wallow", "triumph", "joy", "rejoice"]}, {"answer": "rejoin", "hint": "synonyms for rejoin", "clues": ["retort", "riposte", "return", "repay", "come back", "rejoin"]}, {"answer": "relate", "hint": "synonyms for relate", "clues": ["touch on", "come to", "bear on", "link up", "connect", "pertain", "interrelate", "touch", "link", "associate", "colligate", "tie in", "have-to doe with", "refer", "concern", "relate"]}, {"answer": "relax", "hint": "synonyms for relax", "clues": ["slow down", "make relaxed", "unwind", "loosen", "unstrain", "unlax", "slack up", "decompress", "loosen up", "slack", "unbend", "slacken", "relax"]}, {"answer": "relegate", "hint": "synonyms for relegate", "clues": ["break", "pass on", "bar", "demote", "classify", "banish", "submit", "kick downstairs", "bump", "relegate"]}, {"answer": "relieve", "hint": "synonyms for relieve", "clues": ["exempt", "still", "salve", "ease", "take over", "allay", "unbosom", "assuage", "salvage", "excuse", "alleviate", "palliate", "let off", "remedy", "lighten", "free", "relieve"]}, {"answer": "relieve_oneself", "hint": "synonyms for relieve oneself", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "take a leak", "pee-pee", "urinate", "pee", "piss", "relieve oneself"]}, {"answer": "relinquish", "hint": "synonyms for relinquish", "clues": ["quit", "forgo", "renounce", "foreswear", "waive", "give up", "let go", "resign", "dispense with", "let go of", "release", "free", "relinquish"]}, {"answer": "remain", "hint": "synonyms for remain", "clues": ["stay on", "persist", "continue", "rest", "stay", "remain"]}, {"answer": "remediate", "hint": "synonyms for remediate", "clues": ["rectify", "amend", "remedy", "repair", "remediate"]}, {"answer": "remember", "hint": "synonyms for remember", "clues": ["call back", "think of", "commend", "think", "recall", "retrieve", "think back", "commemorate", "recollect", "call up", "remember"]}, {"answer": "remodel", "hint": "synonyms for remodel", "clues": ["reforge", "redo", "recast", "reconstruct", "remodel"]}, {"answer": "remold", "hint": "synonyms for remold", "clues": ["remould", "recast", "reshape", "retread"]}, {"answer": "remonstrate", "hint": "synonyms for remonstrate", "clues": ["chew up", "jaw", "dress down", "chew out", "call on the carpet", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "lambast", "chide", "point out", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "remonstrate"]}, {"answer": "renounce", "hint": "synonyms for renounce", "clues": ["quit", "foreswear", "give up", "abdicate", "resign", "relinquish", "vacate", "disown", "repudiate", "renounce"]}, {"answer": "renovate", "hint": "synonyms for renovate", "clues": ["recreate", "refurbish", "reanimate", "quicken", "vivify", "freshen up", "repair", "revive", "restitute", "renovate"]}, {"answer": "repay", "hint": "synonyms for repay", "clues": ["retort", "requite", "return", "give back", "rejoin", "refund", "reward", "come back", "riposte", "pay back", "repay"]}, {"answer": "repel", "hint": "synonyms for repel", "clues": ["fight off", "revolt", "rebuff", "gross out", "repulse", "force back", "snub", "drive back", "push back", "disgust", "drive", "beat back", "repel"]}, {"answer": "replace", "hint": "synonyms for replace", "clues": ["put back", "supersede", "substitute", "interchange", "supervene upon", "supplant", "exchange", "replace"]}, {"answer": "replicate", "hint": "synonyms for replicate", "clues": ["reduplicate", "double", "copy", "repeat", "retroflex"]}, {"answer": "represent", "hint": "synonyms for represent", "clues": ["correspond", "comprise", "defend", "symbolise", "play", "act", "stage", "typify", "interpret", "exemplify", "lay out", "map", "make up", "stand for", "be", "present", "constitute"]}, {"answer": "repress", "hint": "synonyms for repress", "clues": ["subdue", "subjugate", "keep down", "stifle", "reduce", "suppress", "smother", "strangle", "muffle", "quash", "repress"]}, {"answer": "require", "hint": "synonyms for require", "clues": ["ask", "necessitate", "need", "involve", "take", "postulate", "call for", "want", "demand", "expect", "command", "require"]}, {"answer": "rescind", "hint": "synonyms for rescind", "clues": ["lift", "countermand", "repeal", "reverse", "vacate", "annul", "revoke", "overturn", "rescind"]}, {"answer": "reside", "hint": "synonyms for reside", "clues": ["repose", "domiciliate", "domicile", "lodge in", "rest", "occupy", "shack", "reside"]}, {"answer": "resign", "hint": "synonyms for resign", "clues": ["quit", "renounce", "reconcile", "give up", "step down", "relinquish", "vacate", "submit", "release", "leave office", "free", "resign"]}, {"answer": "resile", "hint": "synonyms for resile", "clues": ["recoil", "ricochet", "abjure", "retract", "forswear", "take a hop", "bound", "reverberate", "bounce", "recant", "rebound", "spring", "resile"]}, {"answer": "resist", "hint": "synonyms for resist", "clues": ["hold out", "jib", "withstand", "fend", "dissent", "stand firm", "refuse", "protest", "reject", "stand", "balk", "defy", "resist"]}, {"answer": "resound", "hint": "synonyms for resound", "clues": ["noise", "echo", "ring", "reverberate", "make noise", "resound"]}, {"answer": "rest_on", "hint": "synonyms for rest on", "clues": ["build on", "lean on", "lean against", "repose on", "rest on"]}, {"answer": "restate", "hint": "synonyms for restate", "clues": ["retell", "iterate", "ingeminate", "repeat", "restate"]}, {"answer": "restore", "hint": "synonyms for restore", "clues": ["touch on", "rejuvenate", "reconstruct", "furbish up", "doctor", "reestablish", "mend", "reinstate", "repair", "fix", "bushel", "restitute", "regenerate", "restore"]}, {"answer": "restrain", "hint": "synonyms for restrain", "clues": ["throttle", "restrict", "limit", "keep", "trammel", "encumber", "hold back", "hold", "constrain", "confine", "keep back", "bound", "intimidate", "restrain"]}, {"answer": "restrict", "hint": "synonyms for restrict", "clues": ["restrain", "throttle", "curb", "limit", "cut back", "curtail", "trammel", "confine", "qualify", "bound", "restrict"]}, {"answer": "resurrect", "hint": "synonyms for resurrect", "clues": ["rise", "revive", "uprise", "resurrect"]}, {"answer": "retain", "hint": "synonyms for retain", "clues": ["hold", "keep back", "continue", "keep", "keep on", "hold back", "retain"]}, {"answer": "retell", "hint": "synonyms for retell", "clues": ["reiterate", "fictionalise", "restate", "repeat", "recite", "ingeminate", "retell"]}, {"answer": "retire", "hint": "synonyms for retire", "clues": ["pull away", "draw back", "put out", "bed", "kip down", "adjourn", "go to bed", "crawl in", "strike out", "withdraw", "go to sleep", "sack out", "turn in", "move back", "retreat", "pull back", "recede", "hit the hay", "hit the sack", "retire"]}, {"answer": "retract", "hint": "synonyms for retract", "clues": ["forswear", "shrink back", "draw in", "draw back", "resile", "pull back", "recant", "abjure", "retract"]}, {"answer": "retrieve", "hint": "synonyms for retrieve", "clues": ["call back", "recover", "regain", "think", "find", "remember", "recall", "recollect", "call up", "retrieve"]}, {"answer": "retrogress", "hint": "synonyms for retrogress", "clues": ["fall back", "regress", "relapse", "lapse", "recidivate", "retrograde", "retrogress"]}, {"answer": "retrovert", "hint": "synonyms for retrovert", "clues": ["revert", "turn back", "regress", "return", "retrovert"]}, {"answer": "reveal", "hint": "synonyms for reveal", "clues": ["break", "unwrap", "expose", "give away", "let on", "uncover", "unveil", "bring out", "disclose", "divulge", "discover", "let out", "reveal"]}, {"answer": "reverberate", "hint": "synonyms for reverberate", "clues": ["recoil", "echo", "ring", "resile", "ricochet", "take a hop", "resound", "reflect", "bound", "bounce", "spring", "reverberate"]}, {"answer": "revert", "hint": "synonyms for revert", "clues": ["turn back", "regress", "return", "retrovert", "revert"]}, {"answer": "revive", "hint": "synonyms for revive", "clues": ["recreate", "renovate", "resuscitate", "resurrect", "reanimate", "quicken", "vivify", "repair", "come to", "revive"]}, {"answer": "revivify", "hint": "synonyms for revivify", "clues": ["recreate", "renovate", "reanimate", "quicken", "vivify", "repair", "revive"]}, {"answer": "revolve", "hint": "synonyms for revolve", "clues": ["orbit", "rotate", "orb", "roll", "go around", "revolve"]}, {"answer": "revolve_about", "hint": "synonyms for revolve about", "clues": ["center", "focus on", "concentrate on", "revolve around", "center on", "revolve about"]}, {"answer": "revolve_around", "hint": "synonyms for revolve around", "clues": ["center", "circle round", "focus on", "revolve about", "concentrate on", "center on", "revolve around"]}, {"answer": "rig_out", "hint": "synonyms for rig out", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "fig out", "tog up", "prink", "gussy up", "dress up"]}, {"answer": "rile", "hint": "synonyms for rile", "clues": ["nark", "chafe", "devil", "annoy", "bother", "irritate", "get to", "gravel", "vex", "rag", "get at", "nettle", "roil", "rile"]}, {"answer": "rise_up", "hint": "synonyms for rise up", "clues": ["rise", "surface", "rebel", "rear", "come up", "rise up"]}, {"answer": "rive", "hint": "synonyms for rive", "clues": ["pull", "split", "cleave", "rend", "rip", "rive"]}, {"answer": "roam", "hint": "synonyms for roam", "clues": ["stray", "range", "rove", "ramble", "swan", "wander", "drift", "roll", "vagabond", "tramp", "cast", "roam"]}, {"answer": "rob", "hint": "synonyms for rob", "clues": ["pluck", "fleece", "overcharge", "plume", "gazump", "soak", "hook", "surcharge", "rob"]}, {"answer": "roil", "hint": "synonyms for roil", "clues": ["boil", "moil", "churn", "rile", "roil"]}, {"answer": "roll_off", "hint": "synonyms for roll off", "clues": ["rattle off", "rattle down", "spiel off", "reel off", "roll off"]}, {"answer": "roll_up", "hint": "synonyms for roll up", "clues": ["accumulate", "furl", "amass", "collect", "roll", "bundle up", "hoard", "wrap up", "compile", "pile up", "bundle", "roll up"]}, {"answer": "rollick", "hint": "synonyms for rollick", "clues": ["sport", "cavort", "lark", "frolic", "disport", "frisk", "run around", "skylark", "lark about", "romp", "gambol", "rollick"]}, {"answer": "root_on", "hint": "synonyms for root on", "clues": ["urge", "inspire", "barrack", "urge on", "pep up", "exhort", "cheer", "root on"]}, {"answer": "root_out", "hint": "synonyms for root out", "clues": ["exterminate", "extirpate", "uproot", "eradicate", "deracinate", "root out"]}, {"answer": "rotate", "hint": "synonyms for rotate", "clues": ["revolve", "splay", "spread out", "circumvolve", "turn out", "go around", "rotate"]}, {"answer": "round_off", "hint": "synonyms for round off", "clues": ["round out", "polish up", "round", "brush up", "polish", "round down", "round off"]}, {"answer": "round_out", "hint": "synonyms for round out", "clues": ["fill out", "round off", "round", "round down", "finish out", "round out"]}, {"answer": "rouse", "hint": "synonyms for rouse", "clues": ["commove", "rout out", "excite", "turn on", "wake", "arouse", "charge up", "drive out", "agitate", "wake up", "bestir", "charge", "force out", "awaken"]}, {"answer": "rout_out", "hint": "synonyms for rout out", "clues": ["rout", "drive out", "rouse", "force out", "rout up", "expel", "rout out"]}, {"answer": "rove", "hint": "synonyms for rove", "clues": ["stray", "range", "swan", "ramble", "wander", "drift", "roll", "vagabond", "tramp", "cast", "roam", "reeve", "rove"]}, {"answer": "rub_along", "hint": "synonyms for rub along", "clues": ["scrape along", "squeeze by", "scrape by", "scratch along", "squeak by", "rub along"]}, {"answer": "rub_down", "hint": "synonyms for rub down", "clues": ["corrade", "knead", "massage", "abrade", "rub off", "abrase", "rub down"]}, {"answer": "rub_off", "hint": "synonyms for rub off", "clues": ["corrade", "abrade", "rub down", "abrase", "rub off"]}, {"answer": "rub_out", "hint": "synonyms for rub out", "clues": ["score out", "wipe off", "efface", "erase", "rub out"]}, {"answer": "ruckle", "hint": "synonyms for ruckle", "clues": ["crisp", "scrunch", "crease", "wrinkle", "scrunch up", "ruckle"]}, {"answer": "rule_out", "hint": "synonyms for rule out", "clues": ["preclude", "eliminate", "winnow out", "reject", "close out", "rule in", "rule out"]}, {"answer": "ruminate", "hint": "synonyms for ruminate", "clues": ["think over", "mull", "muse", "mull over", "ponder", "contemplate", "excogitate", "reflect", "chew over", "meditate", "speculate", "ruminate"]}, {"answer": "rumple", "hint": "synonyms for rumple", "clues": ["cockle", "crumple", "ruffle", "crinkle", "knit", "crease", "mess up", "pucker", "ruffle up"]}, {"answer": "run_a_risk", "hint": "synonyms for run a risk", "clues": ["risk", "gamble", "take a chance", "adventure", "hazard", "chance", "run a risk"]}, {"answer": "run_across", "hint": "synonyms for run across", "clues": ["meet", "come across", "see", "encounter", "run into", "run across"]}, {"answer": "run_around", "hint": "synonyms for run around", "clues": ["sport", "cavort", "rollick", "lark", "frolic", "disport", "frisk", "skylark", "lark about", "romp", "gambol", "run around"]}, {"answer": "run_away", "hint": "synonyms for run away", "clues": ["break away", "escape", "hightail it", "scat", "turn tail", "fly the coop", "head for the hills", "scarper", "bunk", "lam", "run", "take to the woods", "run away"]}, {"answer": "run_down", "hint": "synonyms for run down", "clues": ["peter out", "run over", "sap", "tire", "play out", "glance over", "scan", "exhaust", "skim", "conk out", "poop out", "check out", "run out", "rake", "run down"]}, {"answer": "run_into", "hint": "synonyms for run into", "clues": ["come across", "see", "strike", "encounter", "jar against", "knock against", "bump into", "hit", "butt against", "meet", "collide with", "run across", "impinge on", "run into"]}, {"answer": "run_off", "hint": "synonyms for run off", "clues": ["turn back", "dispel", "photocopy", "drive off", "elope", "beetle off", "xerox", "decamp", "drive away", "bolt", "make off", "absquatulate", "bolt out", "chase away", "drive out", "abscond", "waste", "go off", "run out", "run off"]}, {"answer": "run_out", "hint": "synonyms for run out", "clues": ["peter out", "give out", "bolt", "expire", "drain", "run off", "spill", "bolt out", "conk out", "poop out", "beetle off", "run down", "fail", "run out"]}, {"answer": "run_over", "hint": "synonyms for run over", "clues": ["well over", "overrun", "brim over", "run down", "overflow", "run over"]}, {"answer": "run_through", "hint": "synonyms for run through", "clues": ["go through", "wipe out", "eat", "exhaust", "deplete", "work through", "eat up", "consume", "use up", "run through"]}, {"answer": "run_up", "hint": "synonyms for run up", "clues": ["hoist", "chalk up", "sew", "stitch", "sew together", "run up"]}, {"answer": "rush_along", "hint": "synonyms for rush along", "clues": ["step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush", "speed", "race", "bucket along", "hasten", "rush along"]}, {"answer": "sack_out", "hint": "synonyms for sack out", "clues": ["go to sleep", "bed", "kip down", "turn in", "retire", "go to bed", "crawl in", "hit the hay", "hit the sack", "sack out"]}, {"answer": "sail_through", "hint": "synonyms for sail through", "clues": ["ace", "pass with flying colors", "breeze through", "nail", "sweep through", "sail through"]}, {"answer": "sally_out", "hint": "synonyms for sally out", "clues": ["rush out", "burst forth", "sally forth", "leap out", "sally out"]}, {"answer": "salt_away", "hint": "synonyms for salt away", "clues": ["hive away", "lay in", "put in", "stack away", "store", "stash away", "salt away"]}, {"answer": "sanctify", "hint": "synonyms for sanctify", "clues": ["bless", "hallow", "purify", "purge", "consecrate", "sanctify"]}, {"answer": "satisfy", "hint": "synonyms for satisfy", "clues": ["fulfill", "fill", "meet", "gratify", "live up to", "satisfy"]}, {"answer": "scandalise", "hint": "synonyms for scandalise", "clues": ["offend", "shock", "appall", "scandalize", "outrage"]}, {"answer": "scandalize", "hint": "synonyms for scandalize", "clues": ["offend", "scandalise", "shock", "appall", "outrage"]}, {"answer": "scare_away", "hint": "synonyms for scare away", "clues": ["scare", "pall", "frighten away", "dash", "frighten off", "daunt", "scare off", "scare away"]}, {"answer": "scare_off", "hint": "synonyms for scare off", "clues": ["scare", "pall", "frighten away", "dash", "scare away", "frighten off", "daunt", "scare off"]}, {"answer": "scarf_out", "hint": "synonyms for scarf out", "clues": ["ingurgitate", "overeat", "overindulge", "pig out", "engorge", "gormandize", "englut", "satiate", "stuff", "overgorge", "glut", "binge", "gorge", "scarf out"]}, {"answer": "scarper", "hint": "synonyms for scarper", "clues": ["break away", "escape", "hightail it", "scat", "turn tail", "fly the coop", "head for the hills", "bunk", "lam", "run", "run away", "take to the woods", "scarper"]}, {"answer": "scintillate", "hint": "synonyms for scintillate", "clues": ["winkle", "coruscate", "sparkle", "scintillate"]}, {"answer": "scoop_out", "hint": "synonyms for scoop out", "clues": ["take up", "lift out", "scoop up", "scoop", "scoop out"]}, {"answer": "scoop_up", "hint": "synonyms for scoop up", "clues": ["take up", "lift out", "scoop out", "scoop", "scoop up"]}, {"answer": "scoot", "hint": "synonyms for scoot", "clues": ["flash", "shoot", "scud", "dart", "dash", "scoot"]}, {"answer": "score_out", "hint": "synonyms for score out", "clues": ["wipe off", "rub out", "efface", "erase", "score out"]}, {"answer": "scram", "hint": "synonyms for scram", "clues": ["fuck off", "bugger off", "get", "buzz off", "scram"]}, {"answer": "scrape_along", "hint": "synonyms for scrape along", "clues": ["rub along", "squeeze by", "scrape by", "scratch along", "squeak by", "scrape along"]}, {"answer": "scrape_by", "hint": "synonyms for scrape by", "clues": ["rub along", "scrape along", "squeeze by", "scratch along", "squeak by", "scrape by"]}, {"answer": "scratch_along", "hint": "synonyms for scratch along", "clues": ["rub along", "scrape along", "squeeze by", "scrape by", "squeak by", "scratch along"]}, {"answer": "scratch_off", "hint": "synonyms for scratch off", "clues": ["knock off", "dash off", "fling off", "toss off", "scratch off"]}, {"answer": "screak", "hint": "synonyms for screak", "clues": ["whine", "skreigh", "creak", "screech", "squawk", "skreak", "squeak"]}, {"answer": "screw_up", "hint": "synonyms for screw up", "clues": ["fuck up", "louse up", "ball up", "muff", "bollix up", "hot up", "bollocks", "botch", "bodge", "bumble", "fluff", "mess up", "bungle", "flub", "fumble", "blow", "spoil", "mishandle", "heat up", "bollocks up", "foul up", "bollix", "botch up", "bobble", "screw up"]}, {"answer": "scrounge", "hint": "synonyms for scrounge", "clues": ["shnorr", "cadge", "forage", "scrounge"]}, {"answer": "scrunch_up", "hint": "synonyms for scrunch up", "clues": ["scrunch", "squat", "ruckle", "crisp", "crinkle", "crouch", "hunker down", "crease", "hunker", "scrunch up"]}, {"answer": "scrutinise", "hint": "synonyms for scrutinise", "clues": ["scrutinize", "take stock", "inspect", "size up", "audit"]}, {"answer": "scrutinize", "hint": "synonyms for scrutinize", "clues": ["scrutinise", "take stock", "inspect", "size up", "audit"]}, {"answer": "secern", "hint": "synonyms for secern", "clues": ["separate", "differentiate", "severalize", "tell", "secernate", "tell apart", "distinguish", "secern"]}, {"answer": "secernate", "hint": "synonyms for secernate", "clues": ["separate", "differentiate", "severalize", "tell", "secern", "tell apart", "distinguish", "secernate"]}, {"answer": "see_to_it", "hint": "synonyms for see to it", "clues": ["insure", "ascertain", "control", "ensure", "see", "assure", "check", "see to it"]}, {"answer": "seethe", "hint": "synonyms for seethe", "clues": ["boil", "roll", "hum", "buzz", "seethe"]}, {"answer": "seize", "hint": "synonyms for seize", "clues": ["clutch", "prehend", "attach", "take over", "get hold of", "capture", "arrogate", "grab", "confiscate", "sequester", "impound", "usurp", "conquer", "appropriate", "assume", "seize"]}, {"answer": "seize_on", "hint": "synonyms for seize on", "clues": ["take up", "hook on", "fasten on", "latch on", "seize on"]}, {"answer": "send", "hint": "synonyms for send", "clues": ["direct", "ship", "station", "commit", "transmit", "beam", "broadcast", "send off", "mail", "get off", "transport", "air", "send out", "place", "post", "charge", "institutionalise", "send"]}, {"answer": "send_away", "hint": "synonyms for send away", "clues": ["displace", "give the axe", "terminate", "dismiss", "fire", "give the sack", "drop", "give notice", "force out", "send packing", "can", "sack", "send away"]}, {"answer": "send_off", "hint": "synonyms for send off", "clues": ["dispatch", "project", "send", "get off", "send off"]}, {"answer": "send_word", "hint": "synonyms for send word", "clues": ["advise", "apprise", "give notice", "notify", "send word"]}, {"answer": "senesce", "hint": "synonyms for senesce", "clues": ["maturate", "age", "get on", "senesce"]}, {"answer": "separate_out", "hint": "synonyms for separate out", "clues": ["filter out", "strain", "filter", "filtrate", "separate out"]}, {"answer": "sequester", "hint": "synonyms for sequester", "clues": ["attach", "seclude", "set apart", "seize", "confiscate", "sequestrate", "keep apart", "impound", "isolate", "withdraw", "sequester"]}, {"answer": "sequestrate", "hint": "synonyms for sequestrate", "clues": ["keep apart", "seclude", "sequester", "isolate", "set apart", "withdraw", "sequestrate"]}, {"answer": "serve_up", "hint": "synonyms for serve up", "clues": ["serve", "dish out", "dish up", "dish", "serve up"]}, {"answer": "set_about", "hint": "synonyms for set about", "clues": ["set out", "begin", "start out", "start", "get", "attempt", "go about", "commence", "undertake", "approach", "get down"]}, {"answer": "set_apart", "hint": "synonyms for set apart", "clues": ["sequestrate", "specify", "keep apart", "isolate", "sequester", "assign", "set apart"]}, {"answer": "set_aside", "hint": "synonyms for set aside", "clues": ["allow", "suspend", "earmark", "reserve", "appropriate", "set aside"]}, {"answer": "set_back", "hint": "synonyms for set back", "clues": ["put over", "put off", "hold over", "postpone", "table", "put back", "shelve", "remit", "knock back", "defer", "prorogue", "set back"]}, {"answer": "set_down", "hint": "synonyms for set down", "clues": ["place down", "drop", "put down", "unload", "drop off", "land", "write down", "debark", "disembark", "discharge", "get down"]}, {"answer": "set_forth", "hint": "synonyms for set forth", "clues": ["expound", "take off", "set out", "exposit", "start out", "set off", "start", "part", "depart", "set forth"]}, {"answer": "set_off", "hint": "synonyms for set off", "clues": ["take off", "start out", "cancel", "trigger", "set forth", "detonate", "spark", "touch off", "activate", "depart", "spark off", "explode", "trigger off", "set out", "start", "instigate", "part", "offset", "incite", "blow up", "actuate", "trip", "bring out", "stir up", "set off"]}, {"answer": "set_out", "hint": "synonyms for set out", "clues": ["array", "range", "take off", "begin", "start out", "set forth", "start", "set off", "part", "lay out", "set about", "depart", "commence", "get", "get down"]}, {"answer": "set_up", "hint": "synonyms for set up", "clues": ["rig", "gear up", "erect", "found", "pitch", "put up", "put", "tack together", "prepare", "effect", "fix", "ensnare", "entrap", "rear", "assemble", "piece", "effectuate", "launch", "put in", "set", "ready", "establish", "put together", "tack", "raise", "lay out", "instal", "frame", "order", "arrange", "set up"]}, {"answer": "settle_down", "hint": "synonyms for settle down", "clues": ["root", "settle", "take root", "steady down", "cool off", "calm down", "cool it", "calm", "simmer down", "chill out", "settle down"]}, {"answer": "severalise", "hint": "synonyms for severalise", "clues": ["separate", "severalize", "differentiate", "tell", "secern", "secernate", "tell apart", "distinguish"]}, {"answer": "severalize", "hint": "synonyms for severalize", "clues": ["separate", "differentiate", "tell", "secern", "secernate", "tell apart", "severalise", "distinguish"]}, {"answer": "sew", "hint": "synonyms for sew", "clues": ["run up", "tailor-make", "tailor", "stitch", "sew together", "sew"]}, {"answer": "shake_off", "hint": "synonyms for shake off", "clues": ["escape from", "throw", "throw off", "shake", "shed", "cast off", "drop", "cast", "throw away", "shake off"]}, {"answer": "shake_up", "hint": "synonyms for shake up", "clues": ["commove", "fluff up", "plump up", "reorganise", "shake", "bump around", "jar", "disturb", "raise up", "excite", "stimulate", "vex", "agitate", "stir", "succuss", "stir up", "shake up"]}, {"answer": "shape_up", "hint": "synonyms for shape up", "clues": ["progress", "advance", "come along", "get on", "get along", "come on", "shape up"]}, {"answer": "sharpen", "hint": "synonyms for sharpen", "clues": ["focalise", "taper", "focus", "point", "heighten", "sharpen"]}, {"answer": "she-bop", "hint": "synonyms for she-bop", "clues": ["jack off", "jerk off", "wank", "fuck off", "masturbate", "she-bop"]}, {"answer": "shed_light_on", "hint": "synonyms for shed light on", "clues": ["sort out", "crystalise", "enlighten", "illuminate", "clear up", "straighten out", "elucidate", "clear", "shed light on"]}, {"answer": "shell_out", "hint": "synonyms for shell out", "clues": ["distribute", "lot", "mete out", "deal out", "allot", "dole out", "deal", "dispense", "parcel out", "administer", "dish out", "shell out"]}, {"answer": "shelve", "hint": "synonyms for shelve", "clues": ["put over", "set back", "put off", "hold over", "postpone", "table", "remit", "defer", "prorogue", "shelve"]}, {"answer": "shew", "hint": "synonyms for shew", "clues": ["show", "prove", "establish", "demonstrate", "shew"]}, {"answer": "shine_up", "hint": "synonyms for shine up", "clues": ["play up", "suck up", "sidle up", "cozy up", "cotton up", "shine up"]}, {"answer": "shoot_a_line", "hint": "synonyms for shoot a line", "clues": ["swash", "blow", "bluster", "vaunt", "boast", "gasconade", "brag", "tout", "gas", "shoot a line"]}, {"answer": "shoot_down", "hint": "synonyms for shoot down", "clues": ["buck", "down", "vote out", "shoot", "vote down", "kill", "defeat", "land", "charge", "tear", "shoot down"]}, {"answer": "shoot_the_breeze", "hint": "synonyms for shoot the breeze", "clues": ["chitchat", "chat", "confab", "jaw", "visit", "chatter", "chaffer", "gossip", "confabulate", "claver", "chew the fat", "natter", "shoot the breeze"]}, {"answer": "shop_at", "hint": "synonyms for shop at", "clues": ["patronize", "frequent", "shop", "sponsor", "buy at", "shop at"]}, {"answer": "short-change", "hint": "synonyms for short-change", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "short", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "victimize", "short-change"]}, {"answer": "short-circuit", "hint": "synonyms for short-circuit", "clues": ["short", "get around", "go around", "bypass", "short-circuit"]}, {"answer": "shorten", "hint": "synonyms for shorten", "clues": ["foreshorten", "cut", "reduce", "contract", "abbreviate", "castrate", "bowdlerize", "expurgate", "abridge", "shorten"]}, {"answer": "shout_out", "hint": "synonyms for shout out", "clues": ["hollo", "yell", "call", "scream", "cry", "squall", "vociferate", "shout", "holler", "shout out"]}, {"answer": "shovel_in", "hint": "synonyms for shovel in", "clues": ["garbage down", "rake in", "gobble up", "bolt down", "shovel in"]}, {"answer": "show_off", "hint": "synonyms for show off", "clues": ["flaunt", "ostentate", "swank", "flash", "show off"]}, {"answer": "show_up", "hint": "synonyms for show up", "clues": ["turn up", "surface", "show", "come out", "come on", "show up"]}, {"answer": "shun", "hint": "synonyms for shun", "clues": ["ostracize", "ban", "banish", "eschew", "blackball", "cast out", "shun"]}, {"answer": "shut_away", "hint": "synonyms for shut away", "clues": ["lock up", "shut up", "put away", "lock in", "lock away", "lock", "shut away"]}, {"answer": "shut_down", "hint": "synonyms for shut down", "clues": ["fold", "close up", "close down", "close", "shut down"]}, {"answer": "sicken", "hint": "synonyms for sicken", "clues": ["revolt", "nauseate", "disgust", "churn up", "turn one's stomach", "come down", "sicken"]}, {"answer": "sidle_up", "hint": "synonyms for sidle up", "clues": ["play up", "shine up", "suck up", "cozy up", "cotton up", "sidle up"]}, {"answer": "signalise", "hint": "synonyms for signalise", "clues": ["distinguish", "point out", "signalize", "call attention", "signal", "sign"]}, {"answer": "signalize", "hint": "synonyms for signalize", "clues": ["signalise", "distinguish", "point out", "call attention", "signal", "sign"]}, {"answer": "simmer_down", "hint": "synonyms for simmer down", "clues": ["cool off", "calm down", "cool it", "settle down", "calm", "chill out", "simmer down"]}, {"answer": "simulate", "hint": "synonyms for simulate", "clues": ["imitate", "sham", "copy", "feign", "model", "assume", "simulate"]}, {"answer": "sing", "hint": "synonyms for sing", "clues": ["whistle", "tattle", "peach", "babble out", "babble", "blab", "talk", "spill the beans", "blab out", "let the cat out of the bag", "sing"]}, {"answer": "sink_in", "hint": "synonyms for sink in", "clues": ["click", "come home", "get through", "percolate", "get across", "permeate", "penetrate", "filter", "dawn", "fall into place", "sink in"]}, {"answer": "sit", "hint": "synonyms for sit", "clues": ["pose", "seat", "baby-sit", "ride", "posture", "sit around", "sit down", "model", "sit"]}, {"answer": "situate", "hint": "synonyms for situate", "clues": ["deposit", "posit", "fix", "locate", "situate"]}, {"answer": "skate_over", "hint": "synonyms for skate over", "clues": ["slur over", "skimp over", "smooth over", "gloss over", "skate over"]}, {"answer": "skimp_over", "hint": "synonyms for skimp over", "clues": ["skate over", "slur over", "smooth over", "gloss over", "skimp over"]}, {"answer": "skitter", "hint": "synonyms for skitter", "clues": ["scurry", "skip", "skim", "scamper", "scuttle", "skitter"]}, {"answer": "skreak", "hint": "synonyms for skreak", "clues": ["whine", "skreigh", "creak", "screech", "squawk", "squeak", "skreak"]}, {"answer": "skreigh", "hint": "synonyms for skreigh", "clues": ["screech", "skreak", "squawk", "screak", "skreigh"]}, {"answer": "slabber", "hint": "synonyms for slabber", "clues": ["drool", "slaver", "slobber", "dribble", "drivel"]}, {"answer": "slack_off", "hint": "synonyms for slack off", "clues": ["abate", "die away", "let up", "slack", "slack off"]}, {"answer": "slacken", "hint": "synonyms for slacken", "clues": ["slow down", "relax", "slack", "remit", "slack up", "slow", "slow up", "slacken"]}, {"answer": "slake", "hint": "synonyms for slake", "clues": ["abate", "slack", "allay", "assuage", "quench", "slake"]}, {"answer": "slay", "hint": "synonyms for slay", "clues": ["bump off", "murder", "dispatch", "remove", "hit", "polish off", "off", "slay"]}, {"answer": "sleep_together", "hint": "synonyms for sleep together", "clues": ["sleep with", "get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together"]}, {"answer": "sleep_with", "hint": "synonyms for sleep with", "clues": ["get laid", "bed", "get it on", "bonk", "have a go at it", "make love", "roll in the hay", "have it away", "fuck", "make out", "lie with", "love", "be intimate", "have it off", "have intercourse", "screw", "know", "jazz", "hump", "eff", "do it", "bang", "have sex", "sleep together", "sleep with"]}, {"answer": "slenderize", "hint": "synonyms for slenderize", "clues": ["slenderise", "lose weight", "reduce", "slim down", "melt off", "slim", "thin"]}, {"answer": "slick_up", "hint": "synonyms for slick up", "clues": ["smarten up", "tittivate", "spiff up", "spruce up", "spruce", "slick up"]}, {"answer": "slide_by", "hint": "synonyms for slide by", "clues": ["elapse", "glide by", "go along", "go by", "slip away", "pass", "slip by"]}, {"answer": "slim_down", "hint": "synonyms for slim down", "clues": ["lose weight", "reduce", "melt off", "slenderize", "slim", "thin", "slim down"]}, {"answer": "slip_away", "hint": "synonyms for slip away", "clues": ["elapse", "slip by", "sneak away", "steal away", "glide by", "go along", "go by", "sneak out", "pass", "sneak off", "slip away"]}, {"answer": "slip_by", "hint": "synonyms for slip by", "clues": ["elapse", "glide by", "go along", "go by", "slip away", "pass", "slip by"]}, {"answer": "slog", "hint": "synonyms for slog", "clues": ["peg away", "keep one's nose to the grindstone", "plug away", "plod", "keep one's shoulder to the wheel", "trudge", "tramp", "footslog", "swig", "pad", "slug", "slog"]}, {"answer": "slosh", "hint": "synonyms for slosh", "clues": ["slosh around", "splash", "slop", "squish", "squelch", "slush", "splosh"]}, {"answer": "slow_down", "hint": "synonyms for slow down", "clues": ["relax", "unwind", "slow", "decompress", "loosen up", "slack", "decelerate", "unbend", "slacken", "slow up", "retard", "slow down"]}, {"answer": "slow_up", "hint": "synonyms for slow up", "clues": ["slow down", "slack", "slacken", "decelerate", "slow", "retard", "slow up"]}, {"answer": "slue", "hint": "synonyms for slue", "clues": ["trend", "veer", "sheer", "slip", "cut", "slide", "slew", "swerve", "curve", "skid", "slue"]}, {"answer": "slur_over", "hint": "synonyms for slur over", "clues": ["skate over", "skimp over", "smooth over", "gloss over", "slur over"]}, {"answer": "smarten_up", "hint": "synonyms for smarten up", "clues": ["slick up", "tittivate", "spiff up", "spruce up", "spruce", "smarten up"]}, {"answer": "smatter", "hint": "synonyms for smatter", "clues": ["blether", "babble", "play around", "dabble", "smatter"]}, {"answer": "smell_out", "hint": "synonyms for smell out", "clues": ["scent out", "sniff out", "smell", "sense", "nose out", "smell out"]}, {"answer": "smooth_over", "hint": "synonyms for smooth over", "clues": ["skate over", "skimp over", "slur over", "gloss over", "smooth over"]}, {"answer": "snarf", "hint": "synonyms for snarf", "clues": ["lift", "abstract", "pilfer", "pinch", "filch", "sneak", "nobble", "hook", "purloin", "swipe", "cabbage", "snarf"]}, {"answer": "sneak_away", "hint": "synonyms for sneak away", "clues": ["steal away", "sneak off", "sneak out", "slip away", "sneak away"]}, {"answer": "sneak_in", "hint": "synonyms for sneak in", "clues": ["stick in", "insert", "creep in", "slip in", "sneak in"]}, {"answer": "sneak_off", "hint": "synonyms for sneak off", "clues": ["sneak away", "sneak out", "steal away", "slip away", "sneak off"]}, {"answer": "sneak_out", "hint": "synonyms for sneak out", "clues": ["sneak away", "sneak off", "steal away", "slip away", "sneak out"]}, {"answer": "snuff_it", "hint": "synonyms for snuff it", "clues": ["decease", "cash in one's chips", "go", "pop off", "expire", "drop dead", "die", "croak", "buy the farm", "exit", "choke", "conk", "give-up the ghost", "perish", "pass", "kick the bucket", "pass away", "snuff it"]}, {"answer": "soak_up", "hint": "synonyms for soak up", "clues": ["sop up", "suck", "imbibe", "take up", "absorb", "engulf", "immerse", "steep", "engross", "suck up", "draw", "take in", "plunge", "soak up"]}, {"answer": "soar_up", "hint": "synonyms for soar up", "clues": ["soar", "surge", "zoom", "soar upwards", "soar up"]}, {"answer": "soar_upwards", "hint": "synonyms for soar upwards", "clues": ["soar", "surge", "soar up", "zoom", "soar upwards"]}, {"answer": "soften", "hint": "synonyms for soften", "clues": ["break", "weaken", "moderate", "damp", "cushion", "relent", "mince", "buffer", "yield", "dampen", "soften"]}, {"answer": "solicit", "hint": "synonyms for solicit", "clues": ["court", "beg", "romance", "hook", "accost", "tap", "woo", "solicit"]}, {"answer": "solve", "hint": "synonyms for solve", "clues": ["resolve", "work", "figure out", "work out", "lick", "puzzle out", "clear", "solve"]}, {"answer": "sop_up", "hint": "synonyms for sop up", "clues": ["take up", "suck", "imbibe", "suck in", "absorb", "suck up", "draw", "take in", "soak up", "sop up"]}, {"answer": "sort_out", "hint": "synonyms for sort out", "clues": ["crystallize", "straighten out", "correct", "discipline", "assort", "shed light on", "elucidate", "sort", "separate", "class", "enlighten", "illuminate", "clear up", "classify", "clear", "sort out"]}, {"answer": "sound_off", "hint": "synonyms for sound off", "clues": ["quetch", "complain", "speak up", "opine", "speak out", "animadvert", "strike up", "plain", "kvetch", "kick", "sound off"]}, {"answer": "sound_out", "hint": "synonyms for sound out", "clues": ["articulate", "say", "enunciate", "enounce", "pronounce", "check out", "feel out", "sound out"]}, {"answer": "spark_off", "hint": "synonyms for spark off", "clues": ["trigger off", "trigger", "set off", "spark", "touch off", "activate", "actuate", "trip", "spark off"]}, {"answer": "speak", "hint": "synonyms for speak", "clues": ["address", "talk", "mouth", "utter", "verbalize", "speak"]}, {"answer": "speak_out", "hint": "synonyms for speak out", "clues": ["animadvert", "sound off", "speak up", "opine", "speak out"]}, {"answer": "speak_up", "hint": "synonyms for speak up", "clues": ["speak out", "animadvert", "sound off", "opine", "speak up"]}, {"answer": "specialise", "hint": "synonyms for specialise", "clues": ["narrow", "specify", "differentiate", "specialize", "narrow down", "particularize", "speciate"]}, {"answer": "specialize", "hint": "synonyms for specialize", "clues": ["narrow", "specify", "specialise", "differentiate", "narrow down", "particularize", "speciate"]}, {"answer": "specify", "hint": "synonyms for specify", "clues": ["narrow", "limit", "define", "designate", "intend", "assign", "determine", "fix", "stipulate", "condition", "delimit", "destine", "set apart", "set", "specialise", "pin down", "delimitate", "narrow down", "peg down", "delineate", "qualify", "nail down", "particularize", "specify"]}, {"answer": "speculate", "hint": "synonyms for speculate", "clues": ["think over", "mull", "job", "ruminate", "contemplate", "hypothesise", "suppose", "meditate", "theorise", "muse", "mull over", "ponder", "hypothecate", "excogitate", "conjecture", "reflect", "chew over", "speculate"]}, {"answer": "spellbind", "hint": "synonyms for spellbind", "clues": ["fascinate", "magnetize", "entrance", "transfix", "mesmerize", "grip", "bewitch", "spellbind"]}, {"answer": "spend_a_penny", "hint": "synonyms for spend a penny", "clues": ["make", "puddle", "wee-wee", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "spend a penny"]}, {"answer": "spew", "hint": "synonyms for spew", "clues": ["upchuck", "purge", "ptyalise", "chuck", "honk", "retch", "throw up", "eruct", "cast", "vomit", "disgorge", "regorge", "be sick", "sick", "regurgitate", "puke", "spue", "spit", "barf", "vomit up", "spew out", "spew"]}, {"answer": "spiel_off", "hint": "synonyms for spiel off", "clues": ["rattle off", "rattle down", "reel off", "roll off", "spiel off"]}, {"answer": "spiff_up", "hint": "synonyms for spiff up", "clues": ["slick up", "smarten up", "tittivate", "spruce up", "spruce", "spiff up"]}, {"answer": "spill_over", "hint": "synonyms for spill over", "clues": ["pour out", "overflow", "bubble over", "spill out", "spill over"]}, {"answer": "spill_the_beans", "hint": "synonyms for spill the beans", "clues": ["tattle", "peach", "babble out", "babble", "blab", "talk", "blab out", "let the cat out of the bag", "sing", "spill the beans"]}, {"answer": "spin_around", "hint": "synonyms for spin around", "clues": ["whirl", "gyrate", "reel", "spin", "spin around"]}, {"answer": "spit_out", "hint": "synonyms for spit out", "clues": ["cough up", "spit up", "spit", "sputter", "expectorate", "cough out", "spit out"]}, {"answer": "spit_up", "hint": "synonyms for spit up", "clues": ["cough up", "spit out", "expectorate", "cough out", "pony up", "spit up"]}, {"answer": "splosh", "hint": "synonyms for splosh", "clues": ["swash", "splash", "slop", "squish", "squelch", "slush", "spatter", "slosh", "sprinkle"]}, {"answer": "spread_out", "hint": "synonyms for spread out", "clues": ["fan out", "rotate", "expand", "disperse", "string out", "open", "spread", "unfold", "splay", "diffuse", "turn out", "dissipate", "scatter", "spread out"]}, {"answer": "spring_up", "hint": "synonyms for spring up", "clues": ["rise", "grow", "uprise", "develop", "originate", "spring up"]}, {"answer": "spruce_up", "hint": "synonyms for spruce up", "clues": ["slick up", "smarten up", "tittivate", "spiff up", "spruce", "spruce up"]}, {"answer": "spue", "hint": "synonyms for spue", "clues": ["upchuck", "purge", "ptyalise", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spit", "vomit up", "spew", "sick", "spue"]}, {"answer": "spurn", "hint": "synonyms for spurn", "clues": ["pooh-pooh", "scorn", "disdain", "reject", "turn down", "freeze off", "spurn"]}, {"answer": "squander", "hint": "synonyms for squander", "clues": ["ware", "blow", "consume", "waste", "squander"]}, {"answer": "square_away", "hint": "synonyms for square away", "clues": ["neaten", "tidy", "straighten out", "clean up", "tidy up", "straighten", "square away"]}, {"answer": "square_up", "hint": "synonyms for square up", "clues": ["square", "square off", "determine", "settle", "even up", "jog", "square up"]}, {"answer": "squeak_by", "hint": "synonyms for squeak by", "clues": ["rub along", "scrape along", "squeeze by", "scrape by", "scratch along", "squeak through", "squeak by"]}, {"answer": "squeeze_by", "hint": "synonyms for squeeze by", "clues": ["rub along", "scrape along", "scrape by", "scratch along", "squeak by", "squeeze by"]}, {"answer": "squeeze_out", "hint": "synonyms for squeeze out", "clues": ["eject", "wring out", "squirt", "eke out", "force out", "extrude", "squeeze out"]}, {"answer": "squirrel_away", "hint": "synonyms for squirrel away", "clues": ["lay away", "stash", "cache", "hive up", "hoard", "squirrel away"]}, {"answer": "stack_away", "hint": "synonyms for stack away", "clues": ["hive away", "salt away", "lay in", "put in", "store", "stash away", "stack away"]}, {"answer": "stamp_down", "hint": "synonyms for stamp down", "clues": ["subdue", "curb", "conquer", "suppress", "inhibit", "stamp down"]}, {"answer": "stand_back", "hint": "synonyms for stand back", "clues": ["keep one's eyes off", "keep one's distance", "keep one's hands off", "stay away", "stand back"]}, {"answer": "stand_by", "hint": "synonyms for stand by", "clues": ["stick about", "stick", "stick by", "stick around", "adhere", "stand by"]}, {"answer": "stand_firm", "hint": "synonyms for stand firm", "clues": ["hold firm", "stand fast", "resist", "stand pat", "hold out", "withstand", "stand firm"]}, {"answer": "stand_for", "hint": "synonyms for stand for", "clues": ["correspond", "represent", "symbolise", "intend", "typify", "mean", "signify", "hold still for", "stand for"]}, {"answer": "stand_out", "hint": "synonyms for stand out", "clues": ["jump", "surpass", "excel", "jump out", "leap out", "stick out", "stand out"]}, {"answer": "stand_up", "hint": "synonyms for stand up", "clues": ["bristle", "get up", "arise", "uprise", "hold water", "hold up", "stick up", "place upright", "stand", "stand up"]}, {"answer": "start_out", "hint": "synonyms for start out", "clues": ["take off", "set out", "begin", "set forth", "start", "set off", "part", "depart", "commence", "get", "get down", "start out"]}, {"answer": "starve", "hint": "synonyms for starve", "clues": ["crave", "hunger", "famish", "thirst", "lust", "starve"]}, {"answer": "stash_away", "hint": "synonyms for stash away", "clues": ["hive away", "salt away", "lay in", "put in", "stack away", "store", "stash away"]}, {"answer": "stave_off", "hint": "synonyms for stave off", "clues": ["fend off", "obviate", "avert", "head off", "debar", "forefend", "ward off", "avoid", "deflect", "stave off"]}, {"answer": "stay_away", "hint": "synonyms for stay away", "clues": ["keep one's eyes off", "keep one's distance", "stand back", "keep one's hands off", "stay away"]}, {"answer": "steady_down", "hint": "synonyms for steady down", "clues": ["root", "settle down", "take root", "settle", "steady down"]}, {"answer": "steal_away", "hint": "synonyms for steal away", "clues": ["sneak away", "sneak off", "sneak out", "slip away", "steal away"]}, {"answer": "step_down", "hint": "synonyms for step down", "clues": ["quit", "weaken", "resign", "leave office", "de-escalate", "step down"]}, {"answer": "step_forward", "hint": "synonyms for step forward", "clues": ["come forward", "come to the fore", "step up", "come out", "step to the fore", "step forward"]}, {"answer": "step_in", "hint": "synonyms for step in", "clues": ["deputize", "intervene", "substitute", "interpose", "interfere", "step in"]}, {"answer": "step_on_it", "hint": "synonyms for step on it", "clues": ["pelt along", "hotfoot", "hie", "cannonball along", "rush", "rush along", "speed", "race", "bucket along", "hasten", "step on it"]}, {"answer": "step_to_the_fore", "hint": "synonyms for step to the fore", "clues": ["come forward", "come to the fore", "step up", "come out", "step forward", "step to the fore"]}, {"answer": "step_up", "hint": "synonyms for step up", "clues": ["rev up", "escalate", "step forward", "come forward", "come to the fore", "come out", "intensify", "step to the fore", "step up"]}, {"answer": "sterilise", "hint": "synonyms for sterilise", "clues": ["desex", "desexualise", "unsex", "sterilize", "fix"]}, {"answer": "sterilize", "hint": "synonyms for sterilize", "clues": ["sterilise", "desex", "desexualise", "unsex", "fix"]}, {"answer": "stick_around", "hint": "synonyms for stick around", "clues": ["stand by", "stick about", "stay put", "stick", "stay", "stick around"]}, {"answer": "stick_in", "hint": "synonyms for stick in", "clues": ["enclose", "sneak in", "put in", "insert", "introduce", "slip in", "stick in"]}, {"answer": "stick_out", "hint": "synonyms for stick out", "clues": ["protrude", "jut out", "stand out", "put up", "abide", "endure", "suffer", "jump", "support", "stomach", "leap out", "bear", "tolerate", "brook", "digest", "stand", "project", "jump out", "jut", "stick out"]}, {"answer": "stick_to", "hint": "synonyms for stick to", "clues": ["hold fast", "stick with", "follow", "stick", "bond", "bind", "adhere", "stick to"]}, {"answer": "stigmatise", "hint": "synonyms for stigmatise", "clues": ["denounce", "stigmatize", "mark", "brand"]}, {"answer": "stigmatize", "hint": "synonyms for stigmatize", "clues": ["denounce", "mark", "stigmatise", "brand"]}, {"answer": "stimulate", "hint": "synonyms for stimulate", "clues": ["induce", "make", "shake", "brace", "energize", "rush", "get", "provoke", "excite", "arouse", "perk up", "stir", "shake up", "have", "cause", "hasten", "stimulate"]}, {"answer": "stir_up", "hint": "synonyms for stir up", "clues": ["commove", "disturb", "inflame", "raise up", "set off", "instigate", "ignite", "incite", "foment", "vex", "agitate", "heat", "wake", "shake up", "fire up", "stir up"]}, {"answer": "straighten", "hint": "synonyms for straighten", "clues": ["straighten out", "tidy up", "roll out", "neaten", "tidy", "unbend", "square away", "clean up", "straighten"]}, {"answer": "straighten_out", "hint": "synonyms for straighten out", "clues": ["sort out", "see the light", "crystallize", "neaten", "disentangle", "reform", "shed light on", "elucidate", "straighten", "enlighten", "illuminate", "tidy up", "clear up", "put right", "iron out", "tidy", "unsnarl", "square away", "clear", "straighten out"]}, {"answer": "strangle", "hint": "synonyms for strangle", "clues": ["throttle", "stifle", "gag", "strangulate", "choke", "cramp", "smother", "suffocate", "repress", "muffle", "hamper", "halter", "strangle"]}, {"answer": "strengthen", "hint": "synonyms for strengthen", "clues": ["fortify", "tone up", "tone", "beef up", "strengthen"]}, {"answer": "stretch_forth", "hint": "synonyms for stretch forth", "clues": ["stretch out", "hold out", "exsert", "put out", "extend", "stretch forth"]}, {"answer": "stretch_out", "hint": "synonyms for stretch out", "clues": ["stretch", "stretch forth", "hold out", "exsert", "put out", "unfold", "crane", "extend", "stretch out"]}, {"answer": "strike_a_chord", "hint": "synonyms for strike a chord", "clues": ["hit home", "strike home", "strike a note", "touch a chord", "strike a chord"]}, {"answer": "strike_down", "hint": "synonyms for strike down", "clues": ["cut down", "fell", "cancel", "drop", "strike down"]}, {"answer": "strike_off", "hint": "synonyms for strike off", "clues": ["cross out", "mark", "strike out", "cross off", "strike off"]}, {"answer": "strike_out", "hint": "synonyms for strike out", "clues": ["cross out", "retire", "cross off", "strike off", "mark", "strike out"]}, {"answer": "strip_down", "hint": "synonyms for strip down", "clues": ["discase", "undress", "unclothe", "uncase", "strip", "disrobe", "peel", "strip down"]}, {"answer": "strive", "hint": "synonyms for strive", "clues": ["endeavor", "strain", "reach", "strive"]}, {"answer": "stun", "hint": "synonyms for stun", "clues": ["daze", "stupefy", "sandbag", "bedaze", "stun"]}, {"answer": "stupefy", "hint": "synonyms for stupefy", "clues": ["pose", "nonplus", "dumbfound", "puzzle", "vex", "gravel", "stun", "bewilder", "stick", "amaze", "mystify", "besot", "perplex", "beat", "baffle", "flummox", "get", "stupefy"]}, {"answer": "subdue", "hint": "synonyms for subdue", "clues": ["subjugate", "crucify", "reduce", "overcome", "surmount", "repress", "tame", "conquer", "keep down", "quash", "curb", "suppress", "subordinate", "mortify", "master", "chasten", "stamp down", "get over", "inhibit", "subdue"]}, {"answer": "subjugate", "hint": "synonyms for subjugate", "clues": ["subdue", "repress", "reduce", "subject", "quash", "keep down", "subjugate"]}, {"answer": "submerge", "hint": "synonyms for submerge", "clues": ["deluge", "inundate", "overwhelm", "drown", "submerse"]}, {"answer": "submit", "hint": "synonyms for submit", "clues": ["pass on", "posit", "defer", "put forward", "accede", "take", "put in", "reconcile", "render", "subject", "resign", "give in", "bow", "relegate", "present", "state", "submit"]}, {"answer": "subscribe", "hint": "synonyms for subscribe", "clues": ["support", "pledge", "take", "subscribe to", "sign"]}, {"answer": "substantiate", "hint": "synonyms for substantiate", "clues": ["support", "realise", "body forth", "actualise", "embody", "affirm", "confirm", "corroborate", "incarnate", "sustain", "substantiate"]}, {"answer": "subvert", "hint": "synonyms for subvert", "clues": ["weaken", "counteract", "overthrow", "deprave", "pervert", "countermine", "corrupt", "demoralize", "vitiate", "bring down", "sabotage", "debauch", "undermine", "misdirect", "profane", "debase", "overturn", "subvert"]}, {"answer": "succeed", "hint": "synonyms for succeed", "clues": ["bring home the bacon", "come after", "come through", "follow", "deliver the goods", "win", "succeed"]}, {"answer": "succumb", "hint": "synonyms for succumb", "clues": ["knuckle under", "yield", "give in", "succumb"]}, {"answer": "suck_in", "hint": "synonyms for suck in", "clues": ["sop up", "suck", "take up", "draw in", "take in", "suck in"]}, {"answer": "suck_up", "hint": "synonyms for suck up", "clues": ["take up", "fawn", "play up", "shine up", "draw", "take in", "soak up", "sop up", "suck", "imbibe", "absorb", "truckle", "cotton up", "kowtow", "toady", "sidle up", "cozy up", "bootlick", "suck up"]}, {"answer": "suckle", "hint": "synonyms for suckle", "clues": ["give suck", "suck", "breastfeed", "wet-nurse", "nurse", "lactate", "suckle"]}, {"answer": "suffer", "hint": "synonyms for suffer", "clues": ["support", "hurt", "stomach", "stick out", "put up", "abide", "meet", "lose", "bear", "tolerate", "brook", "digest", "ache", "endure", "stand", "sustain", "have", "get", "suffer"]}, {"answer": "suffocate", "hint": "synonyms for suffocate", "clues": ["stifle", "strangle", "gag", "choke", "smother", "asphyxiate", "suffocate"]}, {"answer": "suggest", "hint": "synonyms for suggest", "clues": ["intimate", "indicate", "advise", "hint", "paint a picture", "propose", "evoke", "suggest"]}, {"answer": "sum_up", "hint": "synonyms for sum up", "clues": ["summarise", "total", "sum", "summate", "add together", "tot", "resume", "tally", "tote up", "add up", "add", "sum up"]}, {"answer": "summarise", "hint": "synonyms for summarise", "clues": ["sum up", "sum", "resume", "summarize"]}, {"answer": "summarize", "hint": "synonyms for summarize", "clues": ["summarise", "sum up", "sum", "resume"]}, {"answer": "summate", "hint": "synonyms for summate", "clues": ["total", "sum", "sum up", "add together", "tot", "tally", "tote up", "add up", "add", "summate"]}, {"answer": "summon", "hint": "synonyms for summon", "clues": ["mobilise", "come up", "muster up", "cite", "rally", "marshal", "summons", "muster"]}, {"answer": "supercede", "hint": "synonyms for supercede", "clues": ["supplant", "supervene upon", "supersede", "replace"]}, {"answer": "supercharge", "hint": "synonyms for supercharge", "clues": ["advance", "boost", "pressurise", "supercharge"]}, {"answer": "supersede", "hint": "synonyms for supersede", "clues": ["supplant", "supervene upon", "supercede", "replace"]}, {"answer": "supervene_upon", "hint": "synonyms for supervene upon", "clues": ["supplant", "supersede", "replace", "supervene upon"]}, {"answer": "supervise", "hint": "synonyms for supervise", "clues": ["monitor", "superintend", "oversee", "manage", "supervise"]}, {"answer": "supplant", "hint": "synonyms for supplant", "clues": ["supersede", "supervene upon", "replace", "supplant"]}, {"answer": "suppose", "hint": "synonyms for suppose", "clues": ["hypothesize", "speculate", "think", "hypothecate", "opine", "say", "guess", "conjecture", "imagine", "reckon", "presuppose", "theorize", "suppose"]}, {"answer": "suppress", "hint": "synonyms for suppress", "clues": ["subdue", "bottle up", "curb", "crush", "oppress", "repress", "conquer", "stamp down", "inhibit", "suppress"]}, {"answer": "surmount", "hint": "synonyms for surmount", "clues": ["subdue", "outmatch", "outstrip", "scale", "master", "exceed", "overcome", "outgo", "surpass", "outdo", "get over", "outperform", "surmount"]}, {"answer": "surpass", "hint": "synonyms for surpass", "clues": ["outmatch", "outstrip", "stand out", "go past", "exceed", "pass by", "surmount", "go by", "pass", "outgo", "travel by", "transcend", "excel", "outdo", "outperform", "surpass"]}, {"answer": "survive", "hint": "synonyms for survive", "clues": ["go", "hold out", "make it", "pull through", "last", "live on", "live", "subsist", "hold up", "outlive", "outlast", "come through", "exist", "endure", "pull round", "survive"]}, {"answer": "suspire", "hint": "synonyms for suspire", "clues": ["sigh", "respire", "breathe", "take a breath", "suspire"]}, {"answer": "suss_out", "hint": "synonyms for suss out", "clues": ["go over", "look into", "check over", "check out", "check into", "check", "check up on", "suss out"]}, {"answer": "sustain", "hint": "synonyms for sustain", "clues": ["support", "nourish", "maintain", "prolong", "keep", "nurture", "keep up", "affirm", "hold up", "hold", "confirm", "corroborate", "substantiate", "have", "get", "suffer", "sustain"]}, {"answer": "swallow_up", "hint": "synonyms for swallow up", "clues": ["swallow", "eat up", "bury", "immerse", "swallow up"]}, {"answer": "swear", "hint": "synonyms for swear", "clues": ["cuss", "avow", "verify", "aver", "assert", "swan", "depose", "rely", "affirm", "blaspheme", "trust", "curse", "bank", "depone", "imprecate", "swear"]}, {"answer": "sweep_over", "hint": "synonyms for sweep over", "clues": ["overtake", "overpower", "overcome", "whelm", "overwhelm", "sweep over"]}, {"answer": "sweep_through", "hint": "synonyms for sweep through", "clues": ["ace", "sail through", "pass with flying colors", "breeze through", "nail", "sweep through"]}, {"answer": "sweep_up", "hint": "synonyms for sweep up", "clues": ["tangle", "embrace", "sweep", "adopt", "embroil", "espouse", "drag", "drag in", "sweep up"]}, {"answer": "sweet-talk", "hint": "synonyms for sweet-talk", "clues": ["inveigle", "wheedle", "cajole", "blarney", "palaver", "coax", "sweet-talk"]}, {"answer": "swell_up", "hint": "synonyms for swell up", "clues": ["tumesce", "swell", "tumefy", "swell up"]}, {"answer": "swot_up", "hint": "synonyms for swot up", "clues": ["bone", "get up", "mug up", "drum", "swot", "grind away", "bone up", "cram", "swot up"]}, {"answer": "symbolise", "hint": "synonyms for symbolise", "clues": ["represent", "stand for", "symbolize", "typify"]}, {"answer": "symbolize", "hint": "synonyms for symbolize", "clues": ["represent", "stand for", "symbolise", "typify"]}, {"answer": "sympathise", "hint": "synonyms for sympathise", "clues": ["commiserate", "empathize", "understand", "sympathize"]}, {"answer": "sympathize", "hint": "synonyms for sympathize", "clues": ["commiserate", "empathize", "understand", "sympathise"]}, {"answer": "sympathize_with", "hint": "synonyms for sympathize with", "clues": ["condole with", "compassionate", "pity", "feel for", "sympathize with"]}, {"answer": "tack_on", "hint": "synonyms for tack on", "clues": ["tack", "append", "tag on", "hang on", "tack on"]}, {"answer": "tack_together", "hint": "synonyms for tack together", "clues": ["piece", "set up", "assemble", "put together", "tack", "tack together"]}, {"answer": "tag_on", "hint": "synonyms for tag on", "clues": ["tack", "append", "tack on", "hang on", "tag on"]}, {"answer": "tailor-make", "hint": "synonyms for tailor-make", "clues": ["sew", "tailor", "customise", "custom-make", "tailor-make"]}, {"answer": "take_a_chance", "hint": "synonyms for take a chance", "clues": ["risk", "gamble", "adventure", "run a risk", "hazard", "take chances", "chance"]}, {"answer": "take_a_crap", "hint": "synonyms for take a crap", "clues": ["defecate", "crap", "shit", "make", "take a shit", "stool", "ca-ca", "take a crap"]}, {"answer": "take_a_hop", "hint": "synonyms for take a hop", "clues": ["recoil", "resile", "ricochet", "bound", "reverberate", "bounce", "rebound", "spring", "take a hop"]}, {"answer": "take_a_leak", "hint": "synonyms for take a leak", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "pee-pee", "urinate", "pee", "piss", "take a leak"]}, {"answer": "take_a_shit", "hint": "synonyms for take a shit", "clues": ["defecate", "crap", "shit", "make", "stool", "take a crap", "ca-ca", "take a shit"]}, {"answer": "take_aback", "hint": "synonyms for take aback", "clues": ["ball over", "shock", "blow out of the water", "floor", "take aback"]}, {"answer": "take_aim", "hint": "synonyms for take aim", "clues": ["take", "direct", "aim", "train", "take aim"]}, {"answer": "take_apart", "hint": "synonyms for take apart", "clues": ["break up", "dissect", "disassemble", "break apart", "analyse", "dismember", "dismantle", "break down", "discerp", "take apart"]}, {"answer": "take_away", "hint": "synonyms for take away", "clues": ["bear off", "take", "remove", "carry off", "take out", "carry away", "bear away", "detract", "withdraw", "take away"]}, {"answer": "take_back", "hint": "synonyms for take back", "clues": ["swallow", "bring back", "return", "repossess", "unsay", "withdraw", "take back"]}, {"answer": "take_care", "hint": "synonyms for take care", "clues": ["mind", "see", "attend", "look", "take care"]}, {"answer": "take_chances", "hint": "synonyms for take chances", "clues": ["risk", "gamble", "take a chance", "adventure", "run a risk", "hazard", "chance"]}, {"answer": "take_down", "hint": "synonyms for take down", "clues": ["tear down", "raze", "let down", "rase", "note", "level", "put down", "demean", "bring down", "degrade", "disgrace", "pull down", "dismantle", "lower", "take down"]}, {"answer": "take_fire", "hint": "synonyms for take fire", "clues": ["catch fire", "combust", "conflagrate", "erupt", "ignite", "take fire"]}, {"answer": "take_in", "hint": "synonyms for take in", "clues": ["view", "take up", "earn", "catch", "gain", "draw", "soak up", "put one across", "imbibe", "cod", "absorb", "see", "suck in", "collect", "pull in", "overhear", "suck up", "ingest", "fool", "gather in", "put on", "have", "invite", "clear", "make", "befool", "slang", "adopt", "put one over", "bring in", "gull", "assimilate", "watch", "sop up", "suck", "take", "realise", "receive", "dupe", "consume", "take in"]}, {"answer": "take_off", "hint": "synonyms for take off", "clues": ["subtract", "set out", "start out", "take time off", "set forth", "start", "set off", "get off the ground", "part", "deduct", "depart", "lift off", "take off"]}, {"answer": "take_on", "hint": "synonyms for take on", "clues": ["take", "take over", "acquire", "adopt", "encounter", "play", "admit", "accept", "tackle", "meet", "undertake", "assume", "take on"]}, {"answer": "take_out", "hint": "synonyms for take out", "clues": ["leave out", "remove", "draw off", "invite out", "excerpt", "draw", "pull out", "exclude", "withdraw", "pull", "leave off", "move out", "extract", "omit", "unpack", "draw out", "get out", "take away", "buy food", "pull up", "ask out", "take out"]}, {"answer": "take_over", "hint": "synonyms for take over", "clues": ["take up", "absorb", "adopt", "arrogate", "seize", "accept", "buy out", "buy up", "repeat", "bear", "take on", "relieve", "usurp", "borrow", "assume", "take over"]}, {"answer": "take_place", "hint": "synonyms for take place", "clues": ["go on", "fall out", "occur", "happen", "come about", "pass off", "pass", "hap", "take place"]}, {"answer": "take_root", "hint": "synonyms for take root", "clues": ["root", "settle down", "settle", "steady down", "take root"]}, {"answer": "take_stock", "hint": "synonyms for take stock", "clues": ["scrutinize", "size up", "stock-take", "inventory", "take stock"]}, {"answer": "take_to_be", "hint": "synonyms for take to be", "clues": ["think of", "look on", "esteem", "repute", "regard as", "take to be"]}, {"answer": "take_to_task", "hint": "synonyms for take to task", "clues": ["chew up", "jaw", "remonstrate", "dress down", "chew out", "call on the carpet", "rag", "scold", "reproof", "have words", "bawl out", "lambast", "chide", "rebuke", "lecture", "berate", "call down", "reprimand", "trounce", "take to task"]}, {"answer": "take_to_the_woods", "hint": "synonyms for take to the woods", "clues": ["break away", "escape", "hightail it", "scat", "turn tail", "fly the coop", "head for the hills", "scarper", "bunk", "lam", "run", "run away", "take to the woods"]}, {"answer": "take_up", "hint": "synonyms for take up", "clues": ["scoop out", "strike", "adopt", "lift out", "draw", "take in", "borrow", "soak up", "sop up", "suck", "imbibe", "suck in", "take", "take over", "absorb", "scoop", "start", "resume", "seize on", "hook on", "suck up", "sorb", "fasten on", "latch on", "assume", "take up"]}, {"answer": "tantalise", "hint": "synonyms for tantalise", "clues": ["cod", "twit", "bait", "ride", "tantalize", "taunt", "rally", "tease", "rag", "razz"]}, {"answer": "tantalize", "hint": "synonyms for tantalize", "clues": ["cod", "twit", "bait", "ride", "taunt", "rally", "tease", "rag", "tantalise", "razz"]}, {"answer": "tear_down", "hint": "synonyms for tear down", "clues": ["raze", "rase", "pull down", "take down", "level", "dismantle", "tear down"]}, {"answer": "tear_into", "hint": "synonyms for tear into", "clues": ["lace into", "lam into", "pitch into", "tear into"]}, {"answer": "teem", "hint": "synonyms for teem", "clues": ["pullulate", "swarm", "pour", "stream", "teem"]}, {"answer": "tell_apart", "hint": "synonyms for tell apart", "clues": ["recognize", "separate", "spot", "differentiate", "severalize", "tell", "discern", "secern", "secernate", "pick out", "make out", "distinguish", "tell apart"]}, {"answer": "tell_on", "hint": "synonyms for tell on", "clues": ["denounce", "betray", "give away", "stag", "rat", "grass", "shop", "shit", "snitch", "tell on"]}, {"answer": "tempt", "hint": "synonyms for tempt", "clues": ["allure", "entice", "lure", "charm", "influence", "invite", "tempt"]}, {"answer": "tend", "hint": "synonyms for tend", "clues": ["incline", "lean", "run", "be given", "tend"]}, {"answer": "tergiversate", "hint": "synonyms for tergiversate", "clues": ["beat around the bush", "equivocate", "apostatize", "palter", "prevaricate", "tergiversate"]}, {"answer": "terminate", "hint": "synonyms for terminate", "clues": ["displace", "give the axe", "dismiss", "end", "fire", "cease", "stop", "give the sack", "send away", "give notice", "finish", "force out", "can", "sack", "terminate"]}, {"answer": "testify", "hint": "synonyms for testify", "clues": ["bear witness", "prove", "evidence", "show", "take the stand", "attest", "testify"]}, {"answer": "theorise", "hint": "synonyms for theorise", "clues": ["hypothesize", "conjecture", "theorize", "speculate", "hypothecate", "suppose"]}, {"answer": "theorize", "hint": "synonyms for theorize", "clues": ["hypothesize", "conjecture", "theorise", "speculate", "hypothecate", "suppose"]}, {"answer": "thieve", "hint": "synonyms for thieve", "clues": ["glom", "hook", "cop", "knock off", "snitch", "thieve"]}, {"answer": "thin_out", "hint": "synonyms for thin out", "clues": ["reduce", "thin", "cut", "dilute", "thin out"]}, {"answer": "think_about", "hint": "synonyms for think about", "clues": ["toy with", "think of", "entertain", "flirt with", "think about"]}, {"answer": "think_of", "hint": "synonyms for think of", "clues": ["take to be", "flirt with", "hatch", "think up", "repute", "think about", "entertain", "toy with", "mean", "remember", "look on", "have in mind", "concoct", "esteem", "dream up", "regard as", "think of"]}, {"answer": "think_over", "hint": "synonyms for think over", "clues": ["mull", "muse", "mull over", "ponder", "contemplate", "ruminate", "excogitate", "reflect", "chew over", "meditate", "speculate", "think over"]}, {"answer": "think_up", "hint": "synonyms for think up", "clues": ["hatch", "think of", "concoct", "dream up", "think up"]}, {"answer": "thrash_about", "hint": "synonyms for thrash about", "clues": ["jactitate", "slash", "thresh about", "convulse", "thrash", "thresh", "toss"]}, {"answer": "threaten", "hint": "synonyms for threaten", "clues": ["jeopardise", "endanger", "menace", "peril", "imperil", "threaten"]}, {"answer": "thresh", "hint": "synonyms for thresh", "clues": ["jactitate", "convulse", "thrash", "flail", "toss", "lam", "slash", "thresh about", "thresh"]}, {"answer": "thresh_about", "hint": "synonyms for thresh about", "clues": ["jactitate", "slash", "convulse", "thrash", "thrash about", "thresh", "toss"]}, {"answer": "thrive", "hint": "synonyms for thrive", "clues": ["boom", "flourish", "prosper", "expand", "fly high", "thrive"]}, {"answer": "throw_a_fit", "hint": "synonyms for throw a fit", "clues": ["have a fit", "flip one's lid", "blow up", "hit the roof", "combust", "hit the ceiling", "lose one's temper", "go ballistic", "blow a fuse", "have kittens", "fly off the handle", "blow one's stack", "throw a fit"]}, {"answer": "throw_away", "hint": "synonyms for throw away", "clues": ["dispose", "throw off", "shed", "cast off", "cast away", "toss", "toss out", "chuck out", "drop", "cast", "fling", "cast out", "throw", "put away", "shake off", "cast aside", "throw out", "discard", "toss away", "throw away"]}, {"answer": "throw_in", "hint": "synonyms for throw in", "clues": ["chuck up the sponge", "quit", "drop out", "put in", "give up", "fall by the wayside", "inject", "interpose", "drop by the wayside", "interject", "throw in the towel", "come in", "throw in"]}, {"answer": "throw_in_the_towel", "hint": "synonyms for throw in the towel", "clues": ["chuck up the sponge", "quit", "drop out", "give up", "throw in", "fall by the wayside", "drop by the wayside", "throw in the towel"]}, {"answer": "throw_off", "hint": "synonyms for throw off", "clues": ["throw", "escape from", "shake", "shed", "shake off", "cast off", "drop", "cast", "throw away", "throw off"]}, {"answer": "throw_out", "hint": "synonyms for throw out", "clues": ["dispose", "kick out", "advance", "dismiss", "cast away", "toss", "expel", "toss out", "drum out", "chuck out", "toss away", "throw away", "cast out", "fling", "oust", "put away", "boot out", "cast aside", "discard", "throw out"]}, {"answer": "throw_overboard", "hint": "synonyms for throw overboard", "clues": ["forego", "waive", "give up", "deep-six", "forfeit", "throw overboard"]}, {"answer": "throw_up", "hint": "synonyms for throw up", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "throw up"]}, {"answer": "tick_off", "hint": "synonyms for tick off", "clues": ["check off", "tick", "mark", "mark off", "check", "tick off"]}, {"answer": "tickle_pink", "hint": "synonyms for tickle pink", "clues": ["thrill", "exhilarate", "inebriate", "beatify", "exalt", "tickle pink"]}, {"answer": "tidy_up", "hint": "synonyms for tidy up", "clues": ["neaten", "tidy", "square away", "straighten out", "clean up", "straighten", "tidy up"]}, {"answer": "tie_in", "hint": "synonyms for tie in", "clues": ["colligate", "link up", "connect", "relate", "link", "associate", "tie in"]}, {"answer": "tie_up", "hint": "synonyms for tie up", "clues": ["bind off", "tie down", "berth", "moor", "truss", "bind", "tie up"]}, {"answer": "tighten", "hint": "synonyms for tighten", "clues": ["constrain", "reduce", "tighten up", "stiffen", "fasten", "tighten"]}, {"answer": "tip_over", "hint": "synonyms for tip over", "clues": ["knock over", "tump over", "turn over", "upset", "bowl over", "overturn", "tip over"]}, {"answer": "tire_out", "hint": "synonyms for tire out", "clues": ["wear", "wear down", "fag", "fag out", "jade", "outwear", "tire", "wear upon", "wear out", "fatigue", "tire out"]}, {"answer": "titivate", "hint": "synonyms for titivate", "clues": ["slick up", "smarten up", "tittivate", "spiff up", "spruce up", "spruce"]}, {"answer": "tittivate", "hint": "synonyms for tittivate", "clues": ["slick up", "smarten up", "titivate", "spiff up", "spruce up", "spruce"]}, {"answer": "tittup", "hint": "synonyms for tittup", "clues": ["sashay", "cock", "strut", "prance", "swagger", "ruffle", "tittup"]}, {"answer": "toddle", "hint": "synonyms for toddle", "clues": ["coggle", "dodder", "waddle", "paddle", "totter", "toddle"]}, {"answer": "tog", "hint": "synonyms for tog", "clues": ["garment", "clothe", "garb", "apparel", "habilitate", "fit out", "dress", "raiment", "tog"]}, {"answer": "tog_out", "hint": "synonyms for tog out", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "rig out", "tog up", "prink", "gussy up", "dress up", "tog out"]}, {"answer": "tog_up", "hint": "synonyms for tog up", "clues": ["trick out", "get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "prink", "gussy up", "dress up", "tog up"]}, {"answer": "tolerate", "hint": "synonyms for tolerate", "clues": ["support", "permit", "stomach", "put up", "abide", "allow", "bear", "brook", "digest", "stand", "endure", "stick out", "suffer", "tolerate"]}, {"answer": "tone_down", "hint": "synonyms for tone down", "clues": ["dull", "mute", "muffle", "moderate", "tame", "dampen", "damp", "tone down"]}, {"answer": "toss_away", "hint": "synonyms for toss away", "clues": ["dispose", "put away", "cast away", "toss", "toss out", "chuck out", "fling", "throw away", "cast aside", "throw out", "cast out", "discard", "toss away"]}, {"answer": "toss_off", "hint": "synonyms for toss off", "clues": ["down", "scratch off", "knock off", "pour down", "fling off", "belt down", "drink down", "pop", "dash off", "kill", "toss off"]}, {"answer": "toss_out", "hint": "synonyms for toss out", "clues": ["dispose", "put away", "cast away", "toss", "chuck out", "toss away", "fling", "throw away", "cast aside", "throw out", "cast out", "discard", "toss out"]}, {"answer": "tot_up", "hint": "synonyms for tot up", "clues": ["total", "sum", "sum up", "summate", "add together", "tot", "tally", "tote up", "add up", "add"]}, {"answer": "tote_up", "hint": "synonyms for tote up", "clues": ["total", "sum", "sum up", "summate", "add together", "tot", "tally", "add up", "add", "tot up"]}, {"answer": "totter", "hint": "synonyms for totter", "clues": ["coggle", "toddle", "waddle", "dodder", "teeter", "seesaw", "paddle", "totter"]}, {"answer": "touch_off", "hint": "synonyms for touch off", "clues": ["trigger off", "trigger", "set off", "spark", "activate", "actuate", "trip", "spark off", "touch off"]}, {"answer": "touch_on", "hint": "synonyms for touch on", "clues": ["doctor", "restore", "impact", "affect", "repair", "fix", "bear on", "come to", "bushel", "relate", "furbish up", "pertain", "touch", "mend", "have-to doe with", "refer", "concern", "touch on"]}, {"answer": "toy_with", "hint": "synonyms for toy with", "clues": ["think about", "think of", "entertain", "flirt with", "toy with"]}, {"answer": "tranquilize", "hint": "synonyms for tranquilize", "clues": ["still", "quieten", "tranquillize", "calm down", "lull", "sedate", "quiet", "calm"]}, {"answer": "tranquillise", "hint": "synonyms for tranquillise", "clues": ["still", "quieten", "tranquilize", "calm down", "lull", "sedate", "quiet", "calm"]}, {"answer": "tranquillize", "hint": "synonyms for tranquillize", "clues": ["still", "quieten", "tranquilize", "calm down", "lull", "sedate", "quiet", "calm"]}, {"answer": "transcend", "hint": "synonyms for transcend", "clues": ["go past", "exceed", "surpass", "pass", "top", "overstep", "transcend"]}, {"answer": "transfigure", "hint": "synonyms for transfigure", "clues": ["transmogrify", "glorify", "spiritualize", "metamorphose", "transfigure"]}, {"answer": "transfix", "hint": "synonyms for transfix", "clues": ["impale", "spellbind", "empale", "fascinate", "spike", "grip", "transfix"]}, {"answer": "transform", "hint": "synonyms for transform", "clues": ["transubstantiate", "translate", "transmute", "metamorphose", "transform"]}, {"answer": "transgress", "hint": "synonyms for transgress", "clues": ["break", "offend", "sin", "infract", "go against", "trespass", "breach", "violate", "overstep", "transgress"]}, {"answer": "translate", "hint": "synonyms for translate", "clues": ["transform", "understand", "render", "interpret", "read", "translate"]}, {"answer": "transmit", "hint": "synonyms for transmit", "clues": ["transfer", "beam", "carry", "broadcast", "communicate", "send", "channelize", "conduct", "air", "transport", "channel", "impart", "convey", "transmit"]}, {"answer": "transude", "hint": "synonyms for transude", "clues": ["exude", "exudate", "ooze out", "ooze", "transude"]}, {"answer": "travel_by", "hint": "synonyms for travel by", "clues": ["go past", "pass by", "go by", "surpass", "pass", "travel by"]}, {"answer": "trick_out", "hint": "synonyms for trick out", "clues": ["get up", "trick up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "trick out"]}, {"answer": "trick_up", "hint": "synonyms for trick up", "clues": ["trick out", "get up", "fancy up", "deck up", "attire", "fig up", "deck out", "overdress", "tog out", "rig out", "tog up", "prink", "gussy up", "dress up", "trick up"]}, {"answer": "trigger_off", "hint": "synonyms for trigger off", "clues": ["trigger", "set off", "spark", "touch off", "activate", "actuate", "trip", "spark off", "trigger off"]}, {"answer": "trim_back", "hint": "synonyms for trim back", "clues": ["bring down", "cut down", "trim down", "trim", "reduce", "cut", "cut back", "trim back"]}, {"answer": "trim_down", "hint": "synonyms for trim down", "clues": ["bring down", "cut down", "trim back", "trim", "reduce", "cut", "cut back", "trim down"]}, {"answer": "trip_up", "hint": "synonyms for trip up", "clues": ["catch", "trip", "stumble", "slip up", "trip up"]}, {"answer": "trounce", "hint": "synonyms for trounce", "clues": ["chew up", "dress down", "welt", "chew out", "slash", "call on the carpet", "beat out", "whip", "lather", "lambast", "rebuke", "lecture", "strap", "call down", "reprimand", "vanquish", "flog", "jaw", "remonstrate", "rag", "scold", "take to task", "reproof", "have words", "bawl out", "crush", "chide", "beat", "berate", "shell", "trounce"]}, {"answer": "try_out", "hint": "synonyms for try out", "clues": ["prove", "test", "experiment", "taste", "audition", "essay", "sample", "examine", "try", "try out"]}, {"answer": "tucker_out", "hint": "synonyms for tucker out", "clues": ["tucker", "exhaust", "wash up", "beat", "tucker out"]}, {"answer": "tumefy", "hint": "synonyms for tumefy", "clues": ["swell up", "tumesce", "swell", "tumefy"]}, {"answer": "tumesce", "hint": "synonyms for tumesce", "clues": ["swell up", "swell", "intumesce", "tumefy"]}, {"answer": "tump_over", "hint": "synonyms for tump over", "clues": ["knock over", "turn over", "upset", "bowl over", "tip over", "overturn", "tump over"]}, {"answer": "turf_out", "hint": "synonyms for turf out", "clues": ["eject", "chuck out", "boot out", "turn out", "exclude"]}, {"answer": "turn_away", "hint": "synonyms for turn away", "clues": ["bend", "refuse", "avert", "turn down", "reject", "deflect", "turn away"]}, {"answer": "turn_back", "hint": "synonyms for turn back", "clues": ["dispel", "reverse", "drive off", "regress", "invert", "return", "drive away", "retrovert", "stop", "run off", "hold back", "backtrack", "revert", "chase away", "drive out", "contain", "double back", "arrest", "check", "turn back"]}, {"answer": "turn_down", "hint": "synonyms for turn down", "clues": ["turn away", "freeze off", "decline", "lour", "spurn", "pooh-pooh", "refuse", "disdain", "reject", "scorn", "pass up", "lower", "turn down"]}, {"answer": "turn_in", "hint": "synonyms for turn in", "clues": ["deliver", "hand over", "fork out", "bed", "kip down", "retire", "go to bed", "crawl in", "go to sleep", "sack out", "render", "fork up", "fork over", "put on", "hit the hay", "hit the sack", "turn in"]}, {"answer": "turn_off", "hint": "synonyms for turn off", "clues": ["switch off", "turn out", "put off", "cut", "turn off"]}, {"answer": "turn_on", "hint": "synonyms for turn on", "clues": ["commove", "ride", "hinge upon", "excite", "depend upon", "wind up", "charge up", "agitate", "charge", "rouse", "trip out", "get off", "switch on", "sex", "trip", "devolve on", "turn on"]}, {"answer": "turn_out", "hint": "synonyms for turn out", "clues": ["eject", "turf out", "uprise", "turn off", "rise", "chuck out", "splay", "spread out", "come out", "exclude", "get up", "prove", "rotate", "cut", "boot out", "switch off", "bear", "turn up"]}, {"answer": "turn_over", "hint": "synonyms for turn over", "clues": ["flip over", "knock over", "deliberate", "moot", "roll", "debate", "give", "hand", "consider", "bowl over", "dig", "overturn", "flip", "pass on", "tump over", "upset", "reach", "cut into", "tip over", "turn", "pass", "delve", "turn over"]}, {"answer": "turn_tail", "hint": "synonyms for turn tail", "clues": ["break away", "escape", "hightail it", "scat", "fly the coop", "head for the hills", "scarper", "bunk", "lam", "run", "run away", "take to the woods", "turn tail"]}, {"answer": "turn_up", "hint": "synonyms for turn up", "clues": ["dig up", "show up", "prove", "excavate", "turn out", "surface", "come out", "fold", "come on", "locate", "fold up", "turn up"]}, {"answer": "twist_around", "hint": "synonyms for twist around", "clues": ["pervert", "sophisticate", "convolute", "twist", "twist around"]}, {"answer": "typify", "hint": "synonyms for typify", "clues": ["epitomise", "represent", "stand for", "symbolise", "typify"]}, {"answer": "ululate", "hint": "synonyms for ululate", "clues": ["roar", "wail", "yaup", "yawl", "howl", "ululate"]}, {"answer": "unbend", "hint": "synonyms for unbend", "clues": ["decompress", "slow down", "loosen up", "relax", "unwind", "straighten", "unbend"]}, {"answer": "uncase", "hint": "synonyms for uncase", "clues": ["discase", "undress", "unclothe", "strip", "strip down", "disrobe", "peel", "uncase"]}, {"answer": "unclothe", "hint": "synonyms for unclothe", "clues": ["discase", "undress", "uncase", "strip", "strip down", "disrobe", "peel", "unclothe"]}, {"answer": "uncover", "hint": "synonyms for uncover", "clues": ["reveal", "bring out", "expose", "unveil", "uncover"]}, {"answer": "undermine", "hint": "synonyms for undermine", "clues": ["weaken", "counteract", "sabotage", "countermine", "subvert", "cave", "undermine"]}, {"answer": "understand", "hint": "synonyms for understand", "clues": ["see", "realise", "interpret", "sympathize", "read", "translate", "empathize", "infer", "understand"]}, {"answer": "undertake", "hint": "synonyms for undertake", "clues": ["tackle", "set about", "contract", "take on", "take in charge", "guarantee", "attempt", "undertake"]}, {"answer": "undervalue", "hint": "synonyms for undervalue", "clues": ["devalue", "depreciate", "underestimate", "undervalue"]}, {"answer": "underwrite", "hint": "synonyms for underwrite", "clues": ["insure", "subvent", "cover", "subvention", "underwrite"]}, {"answer": "undo", "hint": "synonyms for undo", "clues": ["unmake", "unwrap", "untie", "loosen", "undo"]}, {"answer": "unfold", "hint": "synonyms for unfold", "clues": ["blossom forth", "stretch", "open", "spread", "blossom", "stretch out", "spread out", "blossom out", "extend", "unfold"]}, {"answer": "unfreeze", "hint": "synonyms for unfreeze", "clues": ["free", "dissolve", "unblock", "melt", "unthaw", "release", "dethaw", "thaw", "unfreeze"]}, {"answer": "unhinge", "hint": "synonyms for unhinge", "clues": ["cark", "trouble", "disquiet", "perturb", "disorder", "distract", "unhinge"]}, {"answer": "unhorse", "hint": "synonyms for unhorse", "clues": ["light", "get down", "get off", "dismount", "unhorse"]}, {"answer": "unify", "hint": "synonyms for unify", "clues": ["commix", "unite", "merge", "mingle", "mix", "amalgamate", "unify"]}, {"answer": "unite", "hint": "synonyms for unite", "clues": ["unify", "link up", "connect", "link", "join", "combine", "merge", "unite"]}, {"answer": "unknot", "hint": "synonyms for unknot", "clues": ["unpick", "untangle", "unravel", "unscramble", "unknot"]}, {"answer": "unlax", "hint": "synonyms for unlax", "clues": ["loosen up", "make relaxed", "relax", "unwind", "unstrain", "unlax"]}, {"answer": "unload", "hint": "synonyms for unload", "clues": ["set down", "offload", "drop", "put down", "unlade", "discharge", "drop off", "unload"]}, {"answer": "unloose", "hint": "synonyms for unloose", "clues": ["loose", "release", "liberate", "unloosen", "free"]}, {"answer": "unloosen", "hint": "synonyms for unloosen", "clues": ["unloose", "loose", "liberate", "release", "free"]}, {"answer": "unpick", "hint": "synonyms for unpick", "clues": ["untangle", "unravel", "unknot", "unscramble", "unpick"]}, {"answer": "unravel", "hint": "synonyms for unravel", "clues": ["ravel", "ravel out", "unscramble", "unpick", "untangle", "run", "unknot", "unravel"]}, {"answer": "unscramble", "hint": "synonyms for unscramble", "clues": ["unpick", "untangle", "unravel", "unknot", "unscramble"]}, {"answer": "unsex", "hint": "synonyms for unsex", "clues": ["sterilise", "desex", "desexualise", "fix", "unsex"]}, {"answer": "unstrain", "hint": "synonyms for unstrain", "clues": ["loosen up", "make relaxed", "relax", "unwind", "unlax", "unstrain"]}, {"answer": "untangle", "hint": "synonyms for untangle", "clues": ["disencumber", "unravel", "unscramble", "unpick", "extricate", "disentangle", "unknot", "untangle"]}, {"answer": "unthaw", "hint": "synonyms for unthaw", "clues": ["dethaw", "dissolve", "melt", "unfreeze", "thaw", "unthaw"]}, {"answer": "untie", "hint": "synonyms for untie", "clues": ["unlace", "undo", "loosen", "unbrace", "untie"]}, {"answer": "untune", "hint": "synonyms for untune", "clues": ["discomfit", "discompose", "upset", "disconcert", "untune"]}, {"answer": "unwind", "hint": "synonyms for unwind", "clues": ["slow down", "make relaxed", "relax", "unstrain", "unlax", "wind off", "decompress", "loosen up", "unbend", "disentangle", "unroll", "unwind"]}, {"answer": "unwrap", "hint": "synonyms for unwrap", "clues": ["break", "expose", "give away", "let on", "undo", "reveal", "bring out", "disclose", "divulge", "discover", "let out", "unwrap"]}, {"answer": "upchuck", "hint": "synonyms for upchuck", "clues": ["purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "vomit up", "spew", "sick", "upchuck"]}, {"answer": "uphold", "hint": "synonyms for uphold", "clues": ["continue", "maintain", "carry on", "bear on", "preserve", "uphold"]}, {"answer": "uprise", "hint": "synonyms for uprise", "clues": ["bristle", "go up", "come up", "rise", "turn out", "develop", "get up", "lift", "resurrect", "ascend", "spring up", "originate", "stand up", "move up", "grow", "uprise"]}, {"answer": "uproot", "hint": "synonyms for uproot", "clues": ["exterminate", "extirpate", "eradicate", "root out", "deracinate", "uproot"]}, {"answer": "urge_on", "hint": "synonyms for urge on", "clues": ["urge", "barrack", "pep up", "exhort", "inspire", "root on", "press", "cheer", "urge on"]}, {"answer": "urinate", "hint": "synonyms for urinate", "clues": ["make", "puddle", "wee-wee", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "pee", "piss", "urinate"]}, {"answer": "use_up", "hint": "synonyms for use up", "clues": ["take", "wipe out", "eat", "exhaust", "run through", "deplete", "eat up", "consume", "occupy", "use up"]}, {"answer": "usurp", "hint": "synonyms for usurp", "clues": ["arrogate", "seize", "take over", "assume", "usurp"]}, {"answer": "utilise", "hint": "synonyms for utilise", "clues": ["utilize", "employ", "apply", "use"]}, {"answer": "utilize", "hint": "synonyms for utilize", "clues": ["utilise", "employ", "apply", "use"]}, {"answer": "vacate", "hint": "synonyms for vacate", "clues": ["renounce", "lift", "countermand", "give up", "repeal", "resign", "abandon", "reverse", "empty", "rescind", "annul", "revoke", "overturn", "vacate"]}, {"answer": "vacillate", "hint": "synonyms for vacillate", "clues": ["waver", "hover", "vibrate", "fluctuate", "oscillate", "vacillate"]}, {"answer": "valuate", "hint": "synonyms for valuate", "clues": ["value", "evaluate", "appraise", "assess", "measure"]}, {"answer": "vanish", "hint": "synonyms for vanish", "clues": ["disappear", "fell", "go away", "fly", "vaporize", "vanish"]}, {"answer": "vanquish", "hint": "synonyms for vanquish", "clues": ["crush", "shell", "beat out", "trounce", "beat", "vanquish"]}, {"answer": "vaporise", "hint": "synonyms for vaporise", "clues": ["evaporate", "gasify", "aerify", "vaporize"]}, {"answer": "vaporize", "hint": "synonyms for vaporize", "clues": ["zap", "evaporate", "gasify", "fly", "aerify", "vaporise", "vanish"]}, {"answer": "vary", "hint": "synonyms for vary", "clues": ["alter", "deviate", "depart", "motley", "variegate", "change", "diverge", "vary"]}, {"answer": "veer", "hint": "synonyms for veer", "clues": ["trend", "swerve", "sheer", "slue", "cut", "curve", "slew", "veer"]}, {"answer": "vend", "hint": "synonyms for vend", "clues": ["huckster", "monger", "pitch", "peddle", "hawk", "vend"]}, {"answer": "ventilate", "hint": "synonyms for ventilate", "clues": ["vent", "give vent", "air out", "air", "ventilate"]}, {"answer": "verbalise", "hint": "synonyms for verbalise", "clues": ["express", "mouth", "give tongue to", "talk", "utter", "verbalize", "speak"]}, {"answer": "verbalize", "hint": "synonyms for verbalize", "clues": ["express", "mouth", "give tongue to", "verbalise", "talk", "utter", "speak"]}, {"answer": "verify", "hint": "synonyms for verify", "clues": ["avow", "control", "aver", "swan", "swear", "assert", "affirm", "verify"]}, {"answer": "vex", "hint": "synonyms for vex", "clues": ["commove", "pose", "nark", "nonplus", "disturb", "dumbfound", "chafe", "rile", "annoy", "bother", "puzzle", "get to", "gravel", "stupefy", "rag", "agitate", "get at", "bewilder", "shake up", "nettle", "stick", "amaze", "mystify", "stir up", "raise up", "devil", "perplex", "beat", "irritate", "baffle", "flummox", "worry", "get", "vex"]}, {"answer": "vibrate", "hint": "synonyms for vibrate", "clues": ["vacillate", "thrill", "resonate", "tickle", "hover", "oscillate", "vibrate"]}, {"answer": "victimize", "hint": "synonyms for victimize", "clues": ["con", "swindle", "gip", "goldbrick", "scam", "mulct", "victimise", "defraud", "bunco", "gyp", "diddle", "nobble", "rook", "hornswoggle", "short-change"]}, {"answer": "violate", "hint": "synonyms for violate", "clues": ["break", "offend", "assault", "despoil", "rape", "dishonor", "spoil", "desecrate", "infract", "go against", "plunder", "breach", "profane", "ravish", "transgress", "outrage", "violate"]}, {"answer": "visualise", "hint": "synonyms for visualise", "clues": ["visualize", "see", "envision", "fancy", "figure", "picture", "project", "image"]}, {"answer": "visualize", "hint": "synonyms for visualize", "clues": ["see", "envision", "fancy", "figure", "picture", "visualise", "project", "image"]}, {"answer": "vitiate", "hint": "synonyms for vitiate", "clues": ["invalidate", "deprave", "pervert", "spoil", "corrupt", "mar", "demoralize", "void", "debauch", "impair", "misdirect", "profane", "subvert", "debase", "deflower", "vitiate"]}, {"answer": "vivify", "hint": "synonyms for vivify", "clues": ["recreate", "renovate", "reanimate", "quicken", "repair", "revive", "revivify"]}, {"answer": "vocalise", "hint": "synonyms for vocalise", "clues": ["phonate", "vowelise", "enunciate", "sound", "articulate", "voice", "vocalize"]}, {"answer": "vocalize", "hint": "synonyms for vocalize", "clues": ["phonate", "vocalise", "vowelise", "enunciate", "sound", "articulate", "voice"]}, {"answer": "vomit_up", "hint": "synonyms for vomit up", "clues": ["upchuck", "purge", "chuck", "honk", "retch", "throw up", "cast", "vomit", "disgorge", "regorge", "be sick", "regurgitate", "puke", "barf", "spue", "spew", "sick", "vomit up"]}, {"answer": "vote_down", "hint": "synonyms for vote down", "clues": ["vote out", "defeat", "shoot down", "turn thumbs down", "kill", "vote down"]}, {"answer": "vote_out", "hint": "synonyms for vote out", "clues": ["vote down", "defeat", "shoot down", "kill", "vote out"]}, {"answer": "wait_on", "hint": "synonyms for wait on", "clues": ["attend to", "assist", "attend", "serve", "wait on"]}, {"answer": "waive", "hint": "synonyms for waive", "clues": ["forgo", "foreswear", "throw overboard", "give up", "forfeit", "relinquish", "dispense with", "waive"]}, {"answer": "wake_up", "hint": "synonyms for wake up", "clues": ["come alive", "rouse", "awake", "waken", "wake up"]}, {"answer": "waken", "hint": "synonyms for waken", "clues": ["come alive", "rouse", "awake", "wake up", "waken"]}, {"answer": "wander", "hint": "synonyms for wander", "clues": ["betray", "cheat on", "ramble", "divagate", "drift", "roll", "tramp", "cheat", "cast", "meander", "stray", "range", "wind", "rove", "swan", "cuckold", "vagabond", "thread", "roam", "digress", "weave", "wander"]}, {"answer": "wanton_away", "hint": "synonyms for wanton away", "clues": ["piddle", "wanton", "trifle away", "trifle", "piddle away", "wanton away"]}, {"answer": "ward_off", "hint": "synonyms for ward off", "clues": ["fend off", "obviate", "avert", "head off", "debar", "forefend", "stave off", "avoid", "deflect", "ward off"]}, {"answer": "wash_out", "hint": "synonyms for wash out", "clues": ["rain out", "wash", "wash off", "wash away", "wash out"]}, {"answer": "wash_up", "hint": "synonyms for wash up", "clues": ["exhaust", "tucker out", "do the dishes", "lave", "tucker", "beat", "wash up"]}, {"answer": "waste_one's_time", "hint": "synonyms for waste one's time", "clues": ["bum", "arse about", "lounge about", "lounge around", "fuck off", "bum around", "loaf", "loll around", "arse around", "loll", "bum about", "frig around", "waste one's time"]}, {"answer": "watch_over", "hint": "synonyms for watch over", "clues": ["keep an eye on", "observe", "watch", "follow", "watch over"]}, {"answer": "waylay", "hint": "synonyms for waylay", "clues": ["ambush", "scupper", "lurk", "ambuscade", "lie in wait", "bushwhack", "waylay"]}, {"answer": "weaken", "hint": "synonyms for weaken", "clues": ["break", "counteract", "soften", "countermine", "step down", "damp", "de-escalate", "sabotage", "undermine", "subvert", "dampen", "weaken"]}, {"answer": "wear_away", "hint": "synonyms for wear away", "clues": ["gnaw at", "erode", "gnaw", "whittle away", "eat at", "wear off", "whittle down", "wear away"]}, {"answer": "wear_down", "hint": "synonyms for wear down", "clues": ["wear", "tire out", "fag", "fag out", "jade", "wear off", "outwear", "tire", "wear upon", "wear out", "fatigue", "wear thin", "wear down"]}, {"answer": "wear_off", "hint": "synonyms for wear off", "clues": ["wear", "wear away", "wear out", "wear down", "wear thin", "wear off"]}, {"answer": "wear_out", "hint": "synonyms for wear out", "clues": ["wear", "break", "tire out", "wear down", "fag", "fag out", "jade", "wear off", "outwear", "tire", "wear upon", "bust", "fatigue", "fall apart", "wear thin", "wear out"]}, {"answer": "wear_thin", "hint": "synonyms for wear thin", "clues": ["wear", "wear off", "wear out", "wear down", "wear thin"]}, {"answer": "wear_upon", "hint": "synonyms for wear upon", "clues": ["wear", "tire out", "wear down", "fag", "fag out", "jade", "outwear", "tire", "wear out", "fatigue", "wear upon"]}, {"answer": "wee-wee", "hint": "synonyms for wee-wee", "clues": ["make", "puddle", "spend a penny", "make water", "wee", "micturate", "pass water", "piddle", "relieve oneself", "take a leak", "pee-pee", "urinate", "pee", "piss", "wee-wee"]}, {"answer": "weigh", "hint": "synonyms for weigh", "clues": ["consider", "librate", "matter", "press", "count", "weigh"]}, {"answer": "weigh_down", "hint": "synonyms for weigh down", "clues": ["weigh on", "drag down", "bear down on", "press down on"]}, {"answer": "well_over", "hint": "synonyms for well over", "clues": ["brim over", "overflow", "overrun", "run over", "well over"]}, {"answer": "whap", "hint": "synonyms for whap", "clues": ["bash", "sock", "whop", "bonk", "bop", "whap"]}, {"answer": "wheedle", "hint": "synonyms for wheedle", "clues": ["inveigle", "cajole", "sweet-talk", "blarney", "palaver", "coax", "wheedle"]}, {"answer": "whelm", "hint": "synonyms for whelm", "clues": ["overtake", "overpower", "overcome", "sweep over", "overwhelm", "whelm"]}, {"answer": "whoop_it_up", "hint": "synonyms for whoop it up", "clues": ["jollify", "revel", "make merry", "racket", "make happy", "wassail", "make whoopie", "whoop it up"]}, {"answer": "whop", "hint": "synonyms for whop", "clues": ["wallop", "wham", "whap", "bonk", "bop", "bash", "sock", "whack", "whop"]}, {"answer": "wield", "hint": "synonyms for wield", "clues": ["maintain", "handle", "exert", "manage", "wield"]}, {"answer": "wind_up", "hint": "synonyms for wind up", "clues": ["wind", "excite", "end up", "turn on", "finish up", "arouse", "sex", "finish", "land up", "fetch up", "wind up"]}, {"answer": "wipe_off", "hint": "synonyms for wipe off", "clues": ["rub out", "score out", "efface", "wipe away", "erase", "wipe off"]}, {"answer": "wipe_out", "hint": "synonyms for wipe out", "clues": ["cancel out", "carry off", "obliterate", "decimate", "eradicate", "eat", "erase", "exhaust", "annihilate", "run through", "extinguish", "deplete", "eliminate", "sweep away", "eat up", "consume", "use up", "kill", "wipe out"]}, {"answer": "withdraw", "hint": "synonyms for withdraw", "clues": ["swallow", "pull away", "call back", "bow out", "draw back", "draw off", "remove", "back out", "adjourn", "back away", "retire", "draw", "pull in one's horns", "pull back", "crawfish out", "disengage", "seclude", "take", "move back", "crawfish", "take away", "retreat", "take out", "recall", "sequestrate", "sequester", "call in", "recede", "unsay", "take back", "withdraw"]}, {"answer": "wither", "hint": "synonyms for wither", "clues": ["shrivel", "fade", "shrink", "shrivel up", "wither"]}, {"answer": "withstand", "hint": "synonyms for withstand", "clues": ["hold up", "hold", "stand firm", "resist", "hold out", "defy", "withstand"]}, {"answer": "womanize", "hint": "synonyms for womanize", "clues": ["feminize", "effeminise", "womanise", "philander"]}, {"answer": "work_out", "hint": "synonyms for work out", "clues": ["work", "elaborate", "exercise", "cipher", "compute", "lick", "puzzle out", "figure", "solve", "cypher", "reckon", "figure out", "work up", "calculate", "work out"]}, {"answer": "work_up", "hint": "synonyms for work up", "clues": ["build up", "get up", "progress", "ramp up", "work out", "build", "work up"]}, {"answer": "worsen", "hint": "synonyms for worsen", "clues": ["exacerbate", "aggravate", "decline", "exasperate", "worsen"]}, {"answer": "wrap_up", "hint": "synonyms for wrap up", "clues": ["finish off", "roll up", "wrap", "get through", "polish off", "mop up", "clear up", "finish up", "cover", "wrap up"]}, {"answer": "wreak", "hint": "synonyms for wreak", "clues": ["bring", "make for", "work", "play", "wreak"]}, {"answer": "write", "hint": "synonyms for write", "clues": ["drop a line", "compose", "indite", "publish", "save", "spell", "pen", "write"]}, {"answer": "write_down", "hint": "synonyms for write down", "clues": ["expense", "set down", "write off", "put down", "write down"]}, {"answer": "write_in_code", "hint": "synonyms for write in code", "clues": ["inscribe", "cypher", "cipher", "encrypt", "code", "write in code"]}, {"answer": "write_out", "hint": "synonyms for write out", "clues": ["issue", "write up", "cut", "make out", "write out"]}, {"answer": "writhe", "hint": "synonyms for writhe", "clues": ["twist", "wriggle", "wrestle", "squirm", "worm", "writhe"]}, {"answer": "yack_away", "hint": "synonyms for yack away", "clues": ["yack", "rattle on", "jaw", "yap away", "yack away"]}, {"answer": "yammer", "hint": "synonyms for yammer", "clues": ["yowl", "grizzle", "whine", "wrawl", "yawp", "howl", "yammer"]}, {"answer": "yap_away", "hint": "synonyms for yap away", "clues": ["yack", "rattle on", "jaw", "yack away", "yap away"]}, {"answer": "yaup", "hint": "synonyms for yaup", "clues": ["roar", "wail", "ululate", "yawl", "howl", "yaup"]}, {"answer": "yawp", "hint": "synonyms for yawp", "clues": ["grizzle", "yammer", "whine", "bawl", "yawp"]}, {"answer": "yearn", "hint": "synonyms for yearn", "clues": ["languish", "long", "hanker", "ache", "pine", "yen", "yearn"]}], "portion": 0.6}, {"name": "adverbs", "groups": [{"answer": "about", "hint": "synonyms for about", "clues": ["virtually", "well-nigh", "roughly", "nigh", "near", "almost", "some", "close to", "approximately", "most", "or so", "around", "more or less", "just about", "about"]}, {"answer": "above", "hint": "synonyms for above", "clues": ["to a higher place", "supra", "higher up", "above"]}, {"answer": "after", "hint": "synonyms for after", "clues": ["later on", "subsequently", "afterward", "later", "after"]}, {"answer": "ahead", "hint": "synonyms for ahead", "clues": ["in front", "beforehand", "before", "forward", "onwards", "out front", "forrader", "in the lead", "in advance", "ahead"]}, {"answer": "all", "hint": "synonyms for all", "clues": ["totally", "completely", "entirely", "altogether", "wholly", "whole", "all"]}, {"answer": "all_right", "hint": "synonyms for all right", "clues": ["O.K.", "alright", "okay", "fine", "very well", "OK"]}, {"answer": "alone", "hint": "synonyms for alone", "clues": ["unaccompanied", "solely", "solo", "only", "entirely", "exclusively", "alone"]}, {"answer": "alright", "hint": "synonyms for alright", "clues": ["O.K.", "okay", "fine", "very well", "OK", "all right"]}, {"answer": "apropos", "hint": "synonyms for apropos", "clues": ["timely", "incidentally", "well-timed", "by the bye", "by the way", "seasonably", "apropos"]}, {"answer": "away", "hint": "synonyms for away", "clues": ["by", "aside", "forth", "out", "off", "away"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["considerably", "better", "good", "advantageously", "substantially", "comfortably", "intimately", "easily", "well", "best"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["considerably", "advantageously", "good", "substantially", "comfortably", "intimately", "easily", "well", "best", "better"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["closely", "tight", "near", "nigh"]}, {"answer": "dead", "hint": "synonyms for dead", "clues": ["short", "utterly", "suddenly", "abruptly", "absolutely", "perfectly", "dead"]}, {"answer": "deadly", "hint": "synonyms for deadly", "clues": ["devilishly", "insanely", "deucedly", "madly", "lifelessly", "deadly"]}, {"answer": "decent", "hint": "synonyms for decent", "clues": ["decently", "in good order", "right", "the right way", "properly"]}, {"answer": "each", "hint": "synonyms for each", "clues": ["from each one", "apiece", "to each one", "each"]}, {"answer": "earlier", "hint": "synonyms for earlier", "clues": ["originally", "sooner", "to begin with", "in the beginning", "before", "in the first place", "earlier"]}, {"answer": "early", "hint": "synonyms for early", "clues": ["too soon", "betimes", "early on", "ahead of time", "early"]}, {"answer": "easy", "hint": "synonyms for easy", "clues": ["soft", "easily", "tardily", "slowly", "easy"]}, {"answer": "erstwhile", "hint": "synonyms for erstwhile", "clues": ["erst", "at one time", "formerly", "once", "erstwhile"]}, {"answer": "false", "hint": "synonyms for false", "clues": ["treacherously", "faithlessly", "treasonably", "traitorously", "false"]}, {"answer": "fine", "hint": "synonyms for fine", "clues": ["finely", "delicately", "exquisitely", "alright", "very well", "OK"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["for the first time", "first of all", "foremost", "first off", "firstly"]}, {"answer": "for_sure", "hint": "synonyms for for sure", "clues": ["surely", "sure enough", "for certain", "sure as shooting", "certainly", "for sure"]}, {"answer": "foremost", "hint": "synonyms for foremost", "clues": ["first of all", "first off", "first", "foremost"]}, {"answer": "forward", "hint": "synonyms for forward", "clues": ["ahead", "onwards", "forrader", "frontward", "fore", "forwards", "forth", "forrard"]}, {"answer": "hard", "hint": "synonyms for hard", "clues": ["severely", "intemperately", "firmly", "heavily", "hard"]}, {"answer": "inside", "hint": "synonyms for inside", "clues": ["deep down", "within", "in spite of appearance", "inwardly", "indoors", "at heart", "at bottom", "inside"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["fairly", "pretty", "reasonably", "somewhat", "moderately", "middling", "passably", "jolly"]}, {"answer": "just", "hint": "synonyms for just", "clues": ["hardly", "only", "merely", "but", "scarcely", "simply", "just now", "exactly", "precisely", "barely", "just"]}, {"answer": "late", "hint": "synonyms for late", "clues": ["lately", "recently", "tardily", "belatedly", "of late", "deep"]}, {"answer": "later", "hint": "synonyms for later", "clues": ["later on", "by and by", "subsequently", "afterward", "after", "later"]}, {"answer": "lengthways", "hint": "synonyms for lengthways", "clues": ["longitudinally", "longways", "longwise", "lengthwise", "lengthways"]}, {"answer": "lengthwise", "hint": "synonyms for lengthwise", "clues": ["longitudinally", "lengthways", "longwise", "longways", "lengthwise"]}, {"answer": "likely", "hint": "synonyms for likely", "clues": ["in all probability", "probably", "in all likelihood", "belike", "likely"]}, {"answer": "middling", "hint": "synonyms for middling", "clues": ["fairly", "jolly", "pretty", "reasonably", "somewhat", "moderately", "passably", "middling"]}, {"answer": "most", "hint": "synonyms for most", "clues": ["virtually", "well-nigh", "to the highest degree", "nigh", "near", "almost", "about", "most"]}, {"answer": "much", "hint": "synonyms for much", "clues": ["very much", "practically", "often", "lots", "a great deal", "a lot", "a good deal", "much"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["virtually", "well-nigh", "nigh", "almost", "close", "nearly", "most", "about"]}, {"answer": "nigh", "hint": "synonyms for nigh", "clues": ["virtually", "well-nigh", "near", "almost", "close", "most", "about", "nigh"]}, {"answer": "ok", "hint": "synonyms for ok", "clues": ["alright", "fine", "very well", "OK"]}, {"answer": "on_the_button", "hint": "synonyms for on the button", "clues": ["exactly", "on the nose", "precisely", "on the dot", "on the button"]}, {"answer": "on_the_nose", "hint": "synonyms for on the nose", "clues": ["precisely", "exactly", "on the dot", "on the button", "on the nose"]}, {"answer": "only", "hint": "synonyms for only", "clues": ["just", "but", "merely", "only when", "simply", "solely", "alone", "entirely", "only if", "exclusively", "only"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["patently", "evidently", "plainly", "manifestly", "obviously", "apparently"]}, {"answer": "pretty", "hint": "synonyms for pretty", "clues": ["fairly", "jolly", "reasonably", "somewhat", "moderately", "middling", "passably", "pretty"]}, {"answer": "regardless", "hint": "synonyms for regardless", "clues": ["disregardless", "no matter", "disregarding", "irrespective"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["decently", "mightily", "flop", "in good order", "justly", "the right way", "powerful", "correctly", "aright", "right on", "properly"]}, {"answer": "scarce", "hint": "synonyms for scarce", "clues": ["just", "hardly", "scarcely", "barely"]}, {"answer": "short", "hint": "synonyms for short", "clues": ["shortly", "suddenly", "dead", "abruptly", "unawares", "curtly"]}, {"answer": "sideways", "hint": "synonyms for sideways", "clues": ["sideway", "obliquely", "sidewise", "sidelong"]}, {"answer": "slapdash", "hint": "synonyms for slapdash", "clues": ["bang", "bolt", "slam-bang", "smack", "slap", "slapdash"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["behind", "tardily", "slowly", "easy"]}, {"answer": "some", "hint": "synonyms for some", "clues": ["roughly", "close to", "about", "approximately", "or so", "around", "more or less", "just about", "some"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["stock-still", "even so", "all the same", "withal", "even", "nevertheless", "nonetheless", "however", "yet", "notwithstanding", "still"]}, {"answer": "straightaway", "hint": "synonyms for straightaway", "clues": ["forthwith", "immediately", "directly", "instantly", "straight off", "like a shot", "at once", "right away", "now", "straightaway"]}, {"answer": "sure", "hint": "synonyms for sure", "clues": ["for certain", "surely", "sure enough", "for sure", "sure as shooting", "certainly"]}, {"answer": "sure_as_shooting", "hint": "synonyms for sure as shooting", "clues": ["for certain", "surely", "sure enough", "for sure", "certainly", "sure as shooting"]}, {"answer": "topsy-turvy", "hint": "synonyms for topsy-turvy", "clues": ["in great confusion", "heels over head", "higgledy-piggledy", "head over heels", "topsy-turvily"]}, {"answer": "well", "hint": "synonyms for well", "clues": ["intimately", "considerably", "easily", "advantageously", "good", "substantially", "comfortably", "well"]}, {"answer": "whole", "hint": "synonyms for whole", "clues": ["totally", "completely", "all", "entirely", "altogether", "wholly", "whole"]}, {"answer": "wondrous", "hint": "synonyms for wondrous", "clues": ["marvelously", "superbly", "wondrously", "wonderfully", "terrifically", "toppingly"]}, {"answer": "a_good_deal", "hint": "synonyms for a good deal", "clues": ["very much", "lots", "a great deal", "a lot", "much", "a good deal"]}, {"answer": "a_great_deal", "hint": "synonyms for a great deal", "clues": ["very much", "often", "lots", "a lot", "a good deal", "much", "a great deal"]}, {"answer": "a_lot", "hint": "synonyms for a lot", "clues": ["very much", "lots", "a great deal", "a good deal", "much", "a lot"]}, {"answer": "abominably", "hint": "synonyms for abominably", "clues": ["awfully", "abysmally", "repulsively", "odiously", "detestably", "atrociously", "rottenly", "terribly", "abominably"]}, {"answer": "abysmally", "hint": "synonyms for abysmally", "clues": ["awfully", "abominably", "terribly", "atrociously", "rottenly", "abysmally"]}, {"answer": "accidentally", "hint": "synonyms for accidentally", "clues": ["circumstantially", "incidentally", "unintentionally", "by chance", "unexpectedly", "accidentally"]}, {"answer": "acutely", "hint": "synonyms for acutely", "clues": ["sapiently", "sharp", "astutely", "sagaciously", "shrewdly", "acutely"]}, {"answer": "advisedly", "hint": "synonyms for advisedly", "clues": ["designedly", "purposely", "intentionally", "deliberately", "by design", "on purpose", "by choice", "advisedly"]}, {"answer": "afterward", "hint": "synonyms for afterward", "clues": ["later on", "later", "subsequently", "afterwards", "after"]}, {"answer": "afterwards", "hint": "synonyms for afterwards", "clues": ["later on", "later", "subsequently", "afterward", "after"]}, {"answer": "again_and_again", "hint": "synonyms for again and again", "clues": ["time and again", "over and over again", "time and time again", "over and over", "again and again"]}, {"answer": "all_the_same", "hint": "synonyms for all the same", "clues": ["still", "even so", "withal", "nonetheless", "nevertheless", "however", "yet", "notwithstanding", "all the same"]}, {"answer": "almost", "hint": "synonyms for almost", "clues": ["about", "virtually", "well-nigh", "most", "nigh", "near", "almost"]}, {"answer": "also", "hint": "synonyms for also", "clues": ["as well", "likewise", "besides", "too", "also"]}, {"answer": "altogether", "hint": "synonyms for altogether", "clues": ["all in all", "totally", "all told", "all", "on the whole", "wholly", "in all", "completely", "entirely", "tout ensemble", "whole", "altogether"]}, {"answer": "always", "hint": "synonyms for always", "clues": ["forever", "ever", "perpetually", "e'er", "incessantly", "invariably", "constantly", "always"]}, {"answer": "annually", "hint": "synonyms for annually", "clues": ["p.a.", "per year", "yearly", "each year", "every year", "per annum", "annually"]}, {"answer": "anyhow", "hint": "synonyms for anyhow", "clues": ["in any case", "anyways", "in any event", "at any rate", "anyhow"]}, {"answer": "anyway", "hint": "synonyms for anyway", "clues": ["in any case", "anyways", "anyhow", "in any event", "at any rate"]}, {"answer": "anyways", "hint": "synonyms for anyways", "clues": ["in any case", "anyhow", "in any event", "anyway", "at any rate"]}, {"answer": "apace", "hint": "synonyms for apace", "clues": ["quickly", "speedily", "rapidly", "chop-chop", "apace"]}, {"answer": "apiece", "hint": "synonyms for apiece", "clues": ["from each one", "each", "to each one", "apiece"]}, {"answer": "apparently", "hint": "synonyms for apparently", "clues": ["patently", "evidently", "ostensibly", "on the face of it", "obviously", "plain", "manifestly", "seemingly", "apparently"]}, {"answer": "appropriately", "hint": "synonyms for appropriately", "clues": ["fitly", "fittingly", "suitably", "appropriately"]}, {"answer": "approximately", "hint": "synonyms for approximately", "clues": ["roughly", "some", "close to", "about", "or so", "around", "more or less", "just about", "approximately"]}, {"answer": "arbitrarily", "hint": "synonyms for arbitrarily", "clues": ["randomly", "every which way", "willy-nilly", "haphazardly", "indiscriminately", "at random", "arbitrarily"]}, {"answer": "around", "hint": "synonyms for around", "clues": ["roughly", "some", "close to", "just about", "approximately", "round", "or so", "more or less", "about"]}, {"answer": "artfully", "hint": "synonyms for artfully", "clues": ["disingenuously", "cunningly", "slyly", "knavishly", "foxily", "trickily", "craftily", "artfully"]}, {"answer": "as_well", "hint": "synonyms for as well", "clues": ["likewise", "besides", "too", "also", "as well"]}, {"answer": "as_yet", "hint": "synonyms for as yet", "clues": ["til now", "so far", "thus far", "hitherto", "yet", "up to now", "heretofore", "as yet"]}, {"answer": "astutely", "hint": "synonyms for astutely", "clues": ["sapiently", "acutely", "sagaciously", "shrewdly", "astutely"]}, {"answer": "at_any_rate", "hint": "synonyms for at any rate", "clues": ["in any case", "leastways", "at least", "anyways", "anyhow", "leastwise", "in any event", "at any rate"]}, {"answer": "at_bottom", "hint": "synonyms for at bottom", "clues": ["deep down", "inside", "at heart", "in spite of appearance", "at bottom"]}, {"answer": "at_heart", "hint": "synonyms for at heart", "clues": ["deep down", "inside", "in spite of appearance", "at bottom", "at heart"]}, {"answer": "at_last", "hint": "synonyms for at last", "clues": ["in the end", "at long last", "finally", "ultimately", "at last"]}, {"answer": "at_least", "hint": "synonyms for at least", "clues": ["at the least", "leastwise", "leastways", "at any rate", "at least"]}, {"answer": "at_long_last", "hint": "synonyms for at long last", "clues": ["at last", "ultimately", "finally", "in the end", "at long last"]}, {"answer": "at_once", "hint": "synonyms for at once", "clues": ["forthwith", "immediately", "directly", "instantly", "straight off", "at one time", "straightaway", "like a shot", "right away", "at a time", "now", "at once"]}, {"answer": "at_one_time", "hint": "synonyms for at one time", "clues": ["erst", "erstwhile", "at once", "at a time", "formerly", "once", "at one time"]}, {"answer": "at_random", "hint": "synonyms for at random", "clues": ["randomly", "indiscriminately", "every which way", "willy-nilly", "haphazardly", "arbitrarily", "at random"]}, {"answer": "at_times", "hint": "synonyms for at times", "clues": ["on occasion", "now and then", "from time to time", "occasionally", "once in a while", "now and again", "at times"]}, {"answer": "atrociously", "hint": "synonyms for atrociously", "clues": ["awfully", "abominably", "abysmally", "terribly", "outrageously", "rottenly", "atrociously"]}, {"answer": "avowedly", "hint": "synonyms for avowedly", "clues": ["professedly", "admittedly", "confessedly", "true", "avowedly"]}, {"answer": "awfully", "hint": "synonyms for awfully", "clues": ["abominably", "abysmally", "atrociously", "rottenly", "awful", "dreadfully", "terribly", "horribly", "frightfully"]}, {"answer": "badly", "hint": "synonyms for badly", "clues": ["gravely", "ill", "poorly", "severely", "naughtily", "bad", "mischievously", "disadvantageously", "seriously"]}, {"answer": "balmily", "hint": "synonyms for balmily", "clues": ["nuttily", "wackily", "daftly", "dottily", "balmily"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["bolt", "smack", "slap", "slapdash", "bang"]}, {"answer": "barely", "hint": "synonyms for barely", "clues": ["just", "hardly", "scantily", "scarcely", "barely"]}, {"answer": "befittingly", "hint": "synonyms for befittingly", "clues": ["appropriately", "fittingly", "suitably", "fitly"]}, {"answer": "belike", "hint": "synonyms for belike", "clues": ["in all probability", "in all likelihood", "likely", "probably", "belike"]}, {"answer": "below", "hint": "synonyms for below", "clues": ["downstairs", "under", "infra", "to a lower place", "beneath", "on a lower floor", "down the stairs", "below"]}, {"answer": "beseechingly", "hint": "synonyms for beseechingly", "clues": ["pleadingly", "imploringly", "importunately", "entreatingly", "beseechingly"]}, {"answer": "besides", "hint": "synonyms for besides", "clues": ["as well", "in any case", "too", "also", "likewise", "besides"]}, {"answer": "bit_by_bit", "hint": "synonyms for bit by bit", "clues": ["in stages", "step by step", "piecemeal", "gradually", "little by little", "bit by bit"]}, {"answer": "blithely", "hint": "synonyms for blithely", "clues": ["jubilantly", "gayly", "happily", "merrily", "mirthfully", "blithely"]}, {"answer": "bluffly", "hint": "synonyms for bluffly", "clues": ["brusquely", "roundly", "flat out", "bluntly", "bluffly"]}, {"answer": "bluntly", "hint": "synonyms for bluntly", "clues": ["brusquely", "bluffly", "roundly", "flat out", "bluntly"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["rigidly", "bang", "slap", "smack", "stiffly", "slapdash", "bolt"]}, {"answer": "briefly", "hint": "synonyms for briefly", "clues": ["in short", "shortly", "concisely", "in brief", "briefly"]}, {"answer": "brusquely", "hint": "synonyms for brusquely", "clues": ["bluffly", "roundly", "flat out", "bluntly", "brusquely"]}, {"answer": "but", "hint": "synonyms for but", "clues": ["just", "only", "merely", "simply", "but"]}, {"answer": "by_all_odds", "hint": "synonyms for by all odds", "clues": ["emphatically", "decidedly", "definitely", "in spades", "unquestionably", "by all odds"]}, {"answer": "by_chance", "hint": "synonyms for by chance", "clues": ["circumstantially", "accidentally", "by luck", "haply", "perchance", "unexpectedly", "by chance"]}, {"answer": "by_choice", "hint": "synonyms for by choice", "clues": ["designedly", "purposely", "intentionally", "deliberately", "by design", "on purpose", "advisedly", "by choice"]}, {"answer": "by_design", "hint": "synonyms for by design", "clues": ["designedly", "purposely", "deliberately", "intentionally", "on purpose", "advisedly", "by choice", "by design"]}, {"answer": "carelessly", "hint": "synonyms for carelessly", "clues": ["incautiously", "raffishly", "rakishly", "heedlessly", "carelessly"]}, {"answer": "ceaselessly", "hint": "synonyms for ceaselessly", "clues": ["incessantly", "continuously", "unendingly", "endlessly", "unceasingly", "ceaselessly"]}, {"answer": "certainly", "hint": "synonyms for certainly", "clues": ["surely", "sure enough", "for sure", "sure as shooting", "for certain", "certainly"]}, {"answer": "cheaply", "hint": "synonyms for cheaply", "clues": ["stingily", "inexpensively", "chintzily", "tattily", "cheaply"]}, {"answer": "chiefly", "hint": "synonyms for chiefly", "clues": ["in the main", "principally", "mainly", "primarily", "chiefly"]}, {"answer": "chop-chop", "hint": "synonyms for chop-chop", "clues": ["quickly", "apace", "speedily", "rapidly", "chop-chop"]}, {"answer": "circumstantially", "hint": "synonyms for circumstantially", "clues": ["by chance", "accidentally", "minutely", "unexpectedly", "circumstantially"]}, {"answer": "clearly", "hint": "synonyms for clearly", "clues": ["distinctly", "understandably", "clear", "intelligibly"]}, {"answer": "close_to", "hint": "synonyms for close to", "clues": ["roughly", "some", "about", "approximately", "or so", "around", "more or less", "just about", "close to"]}, {"answer": "closely", "hint": "synonyms for closely", "clues": ["intimately", "tight", "nearly", "close"]}, {"answer": "commonly", "hint": "synonyms for commonly", "clues": ["normally", "usually", "ordinarily", "unremarkably", "commonly"]}, {"answer": "completely", "hint": "synonyms for completely", "clues": ["totally", "all", "entirely", "altogether", "wholly", "whole", "completely"]}, {"answer": "concisely", "hint": "synonyms for concisely", "clues": ["briefly", "in short", "shortly", "in brief", "concisely"]}, {"answer": "constantly", "hint": "synonyms for constantly", "clues": ["incessantly", "always", "forever", "invariably", "perpetually", "constantly"]}, {"answer": "continuously", "hint": "synonyms for continuously", "clues": ["incessantly", "ceaselessly", "unendingly", "endlessly", "unceasingly", "continuously"]}, {"answer": "contrarily", "hint": "synonyms for contrarily", "clues": ["perversely", "contrariwise", "on the contrary", "contrarily"]}, {"answer": "contrariwise", "hint": "synonyms for contrariwise", "clues": ["perversely", "to the contrary", "vice versa", "contrarily", "the other way around", "contrariwise"]}, {"answer": "covetously", "hint": "synonyms for covetously", "clues": ["jealously", "greedily", "avariciously", "enviously", "covetously"]}, {"answer": "craftily", "hint": "synonyms for craftily", "clues": ["cunningly", "slyly", "knavishly", "foxily", "trickily", "artfully", "craftily"]}, {"answer": "cunningly", "hint": "synonyms for cunningly", "clues": ["slyly", "knavishly", "cutely", "foxily", "trickily", "artfully", "craftily", "cunningly"]}, {"answer": "curiously", "hint": "synonyms for curiously", "clues": ["oddly", "inquisitively", "peculiarly", "interrogatively", "curiously"]}, {"answer": "cussedly", "hint": "synonyms for cussedly", "clues": ["stubbornly", "obstinately", "obdurately", "pig-headedly", "mulishly", "cussedly"]}, {"answer": "daftly", "hint": "synonyms for daftly", "clues": ["balmily", "nuttily", "dottily", "wackily", "daftly"]}, {"answer": "decently", "hint": "synonyms for decently", "clues": ["in good order", "decent", "right", "the right way", "properly"]}, {"answer": "decidedly", "hint": "synonyms for decidedly", "clues": ["emphatically", "definitely", "in spades", "by all odds", "unquestionably", "decidedly"]}, {"answer": "deep_down", "hint": "synonyms for deep down", "clues": ["in spite of appearance", "inside", "at heart", "at bottom", "deep down"]}, {"answer": "definitely", "hint": "synonyms for definitely", "clues": ["emphatically", "decidedly", "in spades", "by all odds", "unquestionably", "definitely"]}, {"answer": "deliberately", "hint": "synonyms for deliberately", "clues": ["designedly", "purposely", "intentionally", "by design", "on purpose", "measuredly", "advisedly", "by choice", "deliberately"]}, {"answer": "designedly", "hint": "synonyms for designedly", "clues": ["purposely", "intentionally", "deliberately", "by design", "on purpose", "advisedly", "by choice", "designedly"]}, {"answer": "deucedly", "hint": "synonyms for deucedly", "clues": ["devilishly", "madly", "deadly", "insanely", "deucedly"]}, {"answer": "devilishly", "hint": "synonyms for devilishly", "clues": ["deadly", "insanely", "deucedly", "fiendishly", "madly", "devilish", "diabolically"]}, {"answer": "dimly", "hint": "synonyms for dimly", "clues": ["palely", "pallidly", "murkily", "indistinctly", "dimly"]}, {"answer": "directly", "hint": "synonyms for directly", "clues": ["straight", "forthwith", "direct", "immediately", "instantly", "straight off", "straightaway", "like a shot", "flat", "at once", "right away", "now"]}, {"answer": "discreditably", "hint": "synonyms for discreditably", "clues": ["disgracefully", "dishonourably", "ingloriously", "shamefully", "ignominiously", "discreditably"]}, {"answer": "disdainfully", "hint": "synonyms for disdainfully", "clues": ["scornfully", "contumeliously", "contemptuously", "cavalierly", "disdainfully"]}, {"answer": "disgracefully", "hint": "synonyms for disgracefully", "clues": ["dishonourably", "ingloriously", "discreditably", "shamefully", "ignominiously", "disgracefully"]}, {"answer": "dishonorably", "hint": "synonyms for dishonorably", "clues": ["disgracefully", "dishonourably", "ingloriously", "discreditably", "shamefully", "ignominiously"]}, {"answer": "dishonourably", "hint": "synonyms for dishonourably", "clues": ["disgracefully", "dishonorably", "ingloriously", "discreditably", "shamefully", "ignominiously"]}, {"answer": "disregarding", "hint": "synonyms for disregarding", "clues": ["disregardless", "no matter", "irrespective", "disregarding"]}, {"answer": "disregardless", "hint": "synonyms for disregardless", "clues": ["no matter", "regardless", "disregarding", "irrespective"]}, {"answer": "dottily", "hint": "synonyms for dottily", "clues": ["balmily", "nuttily", "daftly", "wackily", "dottily"]}, {"answer": "each_year", "hint": "synonyms for each year", "clues": ["annually", "p.a.", "per year", "yearly", "every year", "per annum", "each year"]}, {"answer": "emphatically", "hint": "synonyms for emphatically", "clues": ["decidedly", "definitely", "in spades", "by all odds", "unquestionably", "emphatically"]}, {"answer": "endlessly", "hint": "synonyms for endlessly", "clues": ["incessantly", "ceaselessly", "unendingly", "interminably", "infinitely", "continuously", "unceasingly", "endlessly"]}, {"answer": "entirely", "hint": "synonyms for entirely", "clues": ["totally", "only", "all", "wholly", "exclusively", "completely", "solely", "alone", "altogether", "whole", "entirely"]}, {"answer": "entreatingly", "hint": "synonyms for entreatingly", "clues": ["pleadingly", "beseechingly", "imploringly", "importunately", "entreatingly"]}, {"answer": "erst", "hint": "synonyms for erst", "clues": ["erstwhile", "at one time", "formerly", "once", "erst"]}, {"answer": "even_so", "hint": "synonyms for even so", "clues": ["still", "withal", "all the same", "nonetheless", "nevertheless", "however", "yet", "notwithstanding", "even so"]}, {"answer": "ever", "hint": "synonyms for ever", "clues": ["of all time", "e'er", "always", "ever so", "ever"]}, {"answer": "evermore", "hint": "synonyms for evermore", "clues": ["forevermore", "eternally", "forever", "everlastingly", "evermore"]}, {"answer": "every_which_way", "hint": "synonyms for every which way", "clues": ["randomly", "indiscriminately", "willy-nilly", "helter-skelter", "haphazardly", "arbitrarily", "at random", "every which way"]}, {"answer": "evidently", "hint": "synonyms for evidently", "clues": ["patently", "plain", "manifestly", "obviously", "apparently", "evidently"]}, {"answer": "exactly", "hint": "synonyms for exactly", "clues": ["just", "on the nose", "on the button", "on the dot", "precisely", "incisively", "exactly"]}, {"answer": "exclusively", "hint": "synonyms for exclusively", "clues": ["alone", "only", "entirely", "solely", "exclusively"]}, {"answer": "extravagantly", "hint": "synonyms for extravagantly", "clues": ["abundantly", "profusely", "lavishly", "richly", "copiously", "extravagantly"]}, {"answer": "extremely", "hint": "synonyms for extremely", "clues": ["super", "exceedingly", "passing", "highly", "extremely"]}, {"answer": "fairly", "hint": "synonyms for fairly", "clues": ["jolly", "pretty", "evenhandedly", "fair", "reasonably", "moderately", "clean", "middling", "passably", "somewhat"]}, {"answer": "faithlessly", "hint": "synonyms for faithlessly", "clues": ["treasonably", "treacherously", "false", "traitorously", "faithlessly"]}, {"answer": "finally", "hint": "synonyms for finally", "clues": ["at last", "ultimately", "in the end", "lastly", "in conclusion", "at long last", "eventually", "finally"]}, {"answer": "firmly", "hint": "synonyms for firmly", "clues": ["unwaveringly", "hard", "firm", "securely", "steadfastly"]}, {"answer": "first_of_all", "hint": "synonyms for first of all", "clues": ["first off", "foremost", "first", "first of all"]}, {"answer": "first_off", "hint": "synonyms for first off", "clues": ["first of all", "foremost", "first", "first off"]}, {"answer": "firstly", "hint": "synonyms for firstly", "clues": ["foremost", "first of all", "first off", "first"]}, {"answer": "fitly", "hint": "synonyms for fitly", "clues": ["appropriately", "fittingly", "suitably", "fitly"]}, {"answer": "fittingly", "hint": "synonyms for fittingly", "clues": ["appropriately", "befittingly", "suitably", "fitly"]}, {"answer": "flat_out", "hint": "synonyms for flat out", "clues": ["bluffly", "brusquely", "like blue murder", "roundly", "bluntly", "flat out"]}, {"answer": "for_certain", "hint": "synonyms for for certain", "clues": ["surely", "sure enough", "for sure", "sure as shooting", "certainly", "for certain"]}, {"answer": "for_each_one", "hint": "synonyms for for each one", "clues": ["from each one", "apiece", "each", "to each one"]}, {"answer": "forever", "hint": "synonyms for forever", "clues": ["forever and a day", "everlastingly", "perpetually", "incessantly", "always", "evermore", "eternally", "constantly", "forever"]}, {"answer": "formerly", "hint": "synonyms for formerly", "clues": ["erst", "at one time", "erstwhile", "once", "formerly"]}, {"answer": "forrader", "hint": "synonyms for forrader", "clues": ["onwards", "forwards", "ahead", "forrader"]}, {"answer": "forth", "hint": "synonyms for forth", "clues": ["forward", "away", "onward", "off", "forth"]}, {"answer": "forthwith", "hint": "synonyms for forthwith", "clues": ["immediately", "directly", "instantly", "straight off", "straightaway", "like a shot", "at once", "right away", "now", "forthwith"]}, {"answer": "forwards", "hint": "synonyms for forwards", "clues": ["forward", "ahead", "onwards", "frontward", "forrader"]}, {"answer": "foxily", "hint": "synonyms for foxily", "clues": ["cunningly", "slyly", "knavishly", "artfully", "trickily", "craftily", "foxily"]}, {"answer": "frequently", "hint": "synonyms for frequently", "clues": ["oft", "often", "oftentimes", "frequently"]}, {"answer": "freshly", "hint": "synonyms for freshly", "clues": ["fresh", "newly", "pertly", "impertinently", "saucily", "impudently"]}, {"answer": "from_each_one", "hint": "synonyms for from each one", "clues": ["apiece", "each", "to each one", "from each one"]}, {"answer": "from_time_to_time", "hint": "synonyms for from time to time", "clues": ["on occasion", "now and then", "occasionally", "at times", "once in a while", "now and again", "from time to time"]}, {"answer": "fully", "hint": "synonyms for fully", "clues": ["amply", "full", "in full", "to the full"]}, {"answer": "gayly", "hint": "synonyms for gayly", "clues": ["jubilantly", "blithely", "happily", "merrily", "mirthfully", "gayly"]}, {"answer": "generally", "hint": "synonyms for generally", "clues": ["more often than not", "mostly", "in general", "by and large", "loosely", "in the main", "broadly", "broadly speaking", "generally"]}, {"answer": "gravely", "hint": "synonyms for gravely", "clues": ["severely", "soberly", "staidly", "badly", "seriously", "gravely"]}, {"answer": "haphazardly", "hint": "synonyms for haphazardly", "clues": ["randomly", "indiscriminately", "every which way", "willy-nilly", "haphazard", "arbitrarily", "at random"]}, {"answer": "happily", "hint": "synonyms for happily", "clues": ["jubilantly", "gayly", "blithely", "merrily", "mirthfully", "happily"]}, {"answer": "hardly", "hint": "synonyms for hardly", "clues": ["just", "scarcely", "barely", "hardly"]}, {"answer": "head_over_heels", "hint": "synonyms for head over heels", "clues": ["topsy-turvily", "in great confusion", "heels over head", "head over heels"]}, {"answer": "heavily", "hint": "synonyms for heavily", "clues": ["intemperately", "heavy", "hard", "to a great extent", "heavily"]}, {"answer": "heels_over_head", "hint": "synonyms for heels over head", "clues": ["topsy-turvily", "in great confusion", "head over heels", "heels over head"]}, {"answer": "hence", "hint": "synonyms for hence", "clues": ["thence", "thus", "therefore", "so"]}, {"answer": "heretofore", "hint": "synonyms for heretofore", "clues": ["as yet", "til now", "so far", "thus far", "hitherto", "yet", "up to now", "heretofore"]}, {"answer": "hitherto", "hint": "synonyms for hitherto", "clues": ["as yet", "til now", "so far", "thus far", "yet", "up to now", "heretofore", "hitherto"]}, {"answer": "however", "hint": "synonyms for however", "clues": ["still", "even so", "all the same", "withal", "nonetheless", "nevertheless", "yet", "notwithstanding", "however"]}, {"answer": "ignominiously", "hint": "synonyms for ignominiously", "clues": ["disgracefully", "dishonourably", "ingloriously", "discreditably", "shamefully", "ignominiously"]}, {"answer": "immediately", "hint": "synonyms for immediately", "clues": ["forthwith", "directly", "instantly", "straight off", "straightaway", "like a shot", "at once", "right away", "now", "immediately"]}, {"answer": "impertinently", "hint": "synonyms for impertinently", "clues": ["pertly", "saucily", "freshly", "impudently", "impertinently"]}, {"answer": "imploringly", "hint": "synonyms for imploringly", "clues": ["pleadingly", "beseechingly", "importunately", "entreatingly", "imploringly"]}, {"answer": "importunately", "hint": "synonyms for importunately", "clues": ["pleadingly", "beseechingly", "imploringly", "entreatingly", "importunately"]}, {"answer": "impudently", "hint": "synonyms for impudently", "clues": ["pertly", "impertinently", "saucily", "freshly", "impudently"]}, {"answer": "in_all_likelihood", "hint": "synonyms for in all likelihood", "clues": ["in all probability", "probably", "likely", "belike", "in all likelihood"]}, {"answer": "in_all_probability", "hint": "synonyms for in all probability", "clues": ["probably", "in all likelihood", "likely", "belike", "in all probability"]}, {"answer": "in_any_case", "hint": "synonyms for in any case", "clues": ["besides", "anyways", "anyhow", "in any event", "at any rate", "in any case"]}, {"answer": "in_any_event", "hint": "synonyms for in any event", "clues": ["in any case", "anyways", "anyhow", "at any rate", "in any event"]}, {"answer": "in_brief", "hint": "synonyms for in brief", "clues": ["briefly", "in short", "concisely", "shortly", "in brief"]}, {"answer": "in_due_course", "hint": "synonyms for in due course", "clues": ["in good time", "when the time comes", "in due season", "in due time", "in due course"]}, {"answer": "in_due_season", "hint": "synonyms for in due season", "clues": ["in due course", "in good time", "when the time comes", "in due time", "in due season"]}, {"answer": "in_due_time", "hint": "synonyms for in due time", "clues": ["in due course", "in good time", "when the time comes", "in due season", "in due time"]}, {"answer": "in_good_order", "hint": "synonyms for in good order", "clues": ["decently", "right", "the right way", "properly", "in good order"]}, {"answer": "in_good_time", "hint": "synonyms for in good time", "clues": ["in due course", "when the time comes", "in due season", "in due time", "in good time"]}, {"answer": "in_great_confusion", "hint": "synonyms for in great confusion", "clues": ["topsy-turvily", "heels over head", "head over heels", "in great confusion"]}, {"answer": "in_short", "hint": "synonyms for in short", "clues": ["briefly", "shortly", "concisely", "in brief", "in short"]}, {"answer": "in_so_far", "hint": "synonyms for in so far", "clues": ["to that degree", "insofar", "so far", "to that extent"]}, {"answer": "in_some_manner", "hint": "synonyms for in some manner", "clues": ["in some way", "someways", "somehow", "in some manner"]}, {"answer": "in_some_way", "hint": "synonyms for in some way", "clues": ["someways", "in some manner", "somehow", "in some way"]}, {"answer": "in_spades", "hint": "synonyms for in spades", "clues": ["emphatically", "decidedly", "definitely", "by all odds", "unquestionably", "in spades"]}, {"answer": "in_spite_of_appearance", "hint": "synonyms for in spite of appearance", "clues": ["deep down", "inside", "at heart", "at bottom", "in spite of appearance"]}, {"answer": "in_the_beginning", "hint": "synonyms for in the beginning", "clues": ["originally", "primitively", "to begin with", "in the first place", "earlier", "in the beginning"]}, {"answer": "in_the_end", "hint": "synonyms for in the end", "clues": ["at last", "ultimately", "finally", "at long last", "in the long run", "in the end"]}, {"answer": "in_the_first_place", "hint": "synonyms for in the first place", "clues": ["originally", "to begin with", "in the beginning", "primarily", "earlier", "in the first place"]}, {"answer": "in_the_main", "hint": "synonyms for in the main", "clues": ["in general", "generally", "primarily", "principally", "mainly", "chiefly", "in the main"]}, {"answer": "incessantly", "hint": "synonyms for incessantly", "clues": ["unendingly", "forever", "continuously", "endlessly", "unceasingly", "perpetually", "always", "ceaselessly", "constantly", "incessantly"]}, {"answer": "incidentally", "hint": "synonyms for incidentally", "clues": ["by the bye", "accidentally", "apropos", "by the way", "incidentally"]}, {"answer": "incredibly", "hint": "synonyms for incredibly", "clues": ["improbably", "fabulously", "fantastically", "implausibly", "unbelievably", "incredibly"]}, {"answer": "indiscriminately", "hint": "synonyms for indiscriminately", "clues": ["randomly", "every which way", "willy-nilly", "haphazardly", "promiscuously", "arbitrarily", "at random", "indiscriminately"]}, {"answer": "individually", "hint": "synonyms for individually", "clues": ["severally", "separately", "on an individual basis", "one by one", "singly", "individually"]}, {"answer": "inevitably", "hint": "synonyms for inevitably", "clues": ["unavoidably", "ineluctably", "needs", "necessarily", "inescapably", "of necessity", "inevitably"]}, {"answer": "ingloriously", "hint": "synonyms for ingloriously", "clues": ["disgracefully", "dishonourably", "discreditably", "shamefully", "ignominiously", "ingloriously"]}, {"answer": "insanely", "hint": "synonyms for insanely", "clues": ["devilishly", "deadly", "dementedly", "deucedly", "crazily", "madly", "insanely"]}, {"answer": "insofar", "hint": "synonyms for insofar", "clues": ["to that degree", "in so far", "so far", "to that extent"]}, {"answer": "instantly", "hint": "synonyms for instantly", "clues": ["forthwith", "immediately", "directly", "straight off", "outright", "straightaway", "like a shot", "in a flash", "instantaneously", "at once", "right away", "now", "instantly"]}, {"answer": "intentionally", "hint": "synonyms for intentionally", "clues": ["designedly", "purposely", "deliberately", "by design", "on purpose", "advisedly", "by choice", "intentionally"]}, {"answer": "irrespective", "hint": "synonyms for irrespective", "clues": ["disregardless", "no matter", "disregarding", "irrespective"]}, {"answer": "jubilantly", "hint": "synonyms for jubilantly", "clues": ["gayly", "blithely", "happily", "merrily", "mirthfully", "jubilantly"]}, {"answer": "just_about", "hint": "synonyms for just about", "clues": ["roughly", "some", "close to", "approximately", "or so", "around", "more or less", "about", "just about"]}, {"answer": "knavishly", "hint": "synonyms for knavishly", "clues": ["cunningly", "slyly", "foxily", "artfully", "trickily", "craftily", "knavishly"]}, {"answer": "lately", "hint": "synonyms for lately", "clues": ["late", "of late", "latterly", "recently"]}, {"answer": "later_on", "hint": "synonyms for later on", "clues": ["later", "subsequently", "afterward", "after", "later on"]}, {"answer": "latterly", "hint": "synonyms for latterly", "clues": ["late", "of late", "recently", "latterly"]}, {"answer": "lawfully", "hint": "synonyms for lawfully", "clues": ["licitly", "de jure", "legally", "legitimately", "lawfully"]}, {"answer": "lightly", "hint": "synonyms for lightly", "clues": ["thinly", "softly", "gently", "light"]}, {"answer": "like_a_shot", "hint": "synonyms for like a shot", "clues": ["forthwith", "immediately", "directly", "instantly", "straight off", "straightaway", "at once", "right away", "now", "like a shot"]}, {"answer": "like_crazy", "hint": "synonyms for like crazy", "clues": ["like thunder", "like sin", "like mad", "like hell", "like the devil", "like crazy"]}, {"answer": "like_hell", "hint": "synonyms for like hell", "clues": ["like thunder", "like crazy", "like sin", "like mad", "like the devil", "like hell"]}, {"answer": "like_mad", "hint": "synonyms for like mad", "clues": ["like thunder", "like crazy", "like sin", "like hell", "like the devil", "like mad"]}, {"answer": "like_sin", "hint": "synonyms for like sin", "clues": ["like thunder", "like crazy", "like mad", "like hell", "like the devil", "like sin"]}, {"answer": "like_the_devil", "hint": "synonyms for like the devil", "clues": ["like thunder", "like crazy", "like sin", "like mad", "like hell", "like the devil"]}, {"answer": "like_thunder", "hint": "synonyms for like thunder", "clues": ["like crazy", "like sin", "like mad", "like hell", "like the devil", "like thunder"]}, {"answer": "likewise", "hint": "synonyms for likewise", "clues": ["as well", "alike", "besides", "too", "also", "similarly", "likewise"]}, {"answer": "little_by_little", "hint": "synonyms for little by little", "clues": ["in stages", "by small degrees", "piecemeal", "bit by bit", "by inches", "little by little"]}, {"answer": "longitudinally", "hint": "synonyms for longitudinally", "clues": ["lengthways", "longwise", "longways", "lengthwise", "longitudinally"]}, {"answer": "longways", "hint": "synonyms for longways", "clues": ["longitudinally", "lengthways", "longwise", "lengthwise", "longways"]}, {"answer": "longwise", "hint": "synonyms for longwise", "clues": ["longitudinally", "lengthways", "longways", "lengthwise", "longwise"]}, {"answer": "loosely", "hint": "synonyms for loosely", "clues": ["slackly", "broadly", "generally", "broadly speaking", "loosely"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["very much", "a great deal", "a lot", "a good deal", "much", "lots"]}, {"answer": "loudly", "hint": "synonyms for loudly", "clues": ["loud", "clamorously", "obstreperously", "forte"]}, {"answer": "madly", "hint": "synonyms for madly", "clues": ["deadly", "insanely", "frantically", "devilishly", "dementedly", "deucedly", "crazily", "madly"]}, {"answer": "magnificently", "hint": "synonyms for magnificently", "clues": ["splendidly", "resplendently", "excellently", "famously", "gorgeously", "magnificently"]}, {"answer": "mainly", "hint": "synonyms for mainly", "clues": ["in the main", "primarily", "principally", "chiefly", "mainly"]}, {"answer": "manifestly", "hint": "synonyms for manifestly", "clues": ["patently", "plain", "evidently", "obviously", "apparently", "manifestly"]}, {"answer": "marvellously", "hint": "synonyms for marvellously", "clues": ["marvelously", "wondrous", "superbly", "wonderfully", "terrifically", "toppingly"]}, {"answer": "marvelously", "hint": "synonyms for marvelously", "clues": ["wondrous", "marvellously", "superbly", "wonderfully", "terrifically", "toppingly"]}, {"answer": "maybe", "hint": "synonyms for maybe", "clues": ["possibly", "peradventure", "mayhap", "perhaps", "perchance", "maybe"]}, {"answer": "mayhap", "hint": "synonyms for mayhap", "clues": ["possibly", "maybe", "peradventure", "perhaps", "perchance", "mayhap"]}, {"answer": "meanly", "hint": "synonyms for meanly", "clues": ["nastily", "humbly", "scurvily", "basely", "meanly"]}, {"answer": "merely", "hint": "synonyms for merely", "clues": ["but", "only", "just", "simply", "merely"]}, {"answer": "merrily", "hint": "synonyms for merrily", "clues": ["jubilantly", "gayly", "blithely", "happily", "mirthfully", "merrily"]}, {"answer": "mirthfully", "hint": "synonyms for mirthfully", "clues": ["jubilantly", "gayly", "blithely", "happily", "merrily", "mirthfully"]}, {"answer": "mockingly", "hint": "synonyms for mockingly", "clues": ["derisively", "scoffingly", "derisorily", "gibingly", "jeeringly", "mockingly"]}, {"answer": "moderately", "hint": "synonyms for moderately", "clues": ["fairly", "jolly", "pretty", "somewhat", "reasonably", "middling", "passably", "moderately"]}, {"answer": "monstrously", "hint": "synonyms for monstrously", "clues": ["horridly", "hideously", "grotesquely", "heinously", "monstrously"]}, {"answer": "more_or_less", "hint": "synonyms for more or less", "clues": ["roughly", "somewhat", "some", "close to", "about", "approximately", "or so", "around", "slightly", "just about", "more or less"]}, {"answer": "mostly", "hint": "synonyms for mostly", "clues": ["for the most part", "more often than not", "generally", "by and large", "largely", "mostly"]}, {"answer": "mulishly", "hint": "synonyms for mulishly", "clues": ["stubbornly", "cussedly", "obdurately", "obstinately", "pig-headedly", "mulishly"]}, {"answer": "namely", "hint": "synonyms for namely", "clues": ["to wit", "videlicet", "that is to say", "viz.", "namely"]}, {"answer": "nearly", "hint": "synonyms for nearly", "clues": ["virtually", "well-nigh", "nigh", "near", "almost", "intimately", "most", "closely", "about"]}, {"answer": "necessarily", "hint": "synonyms for necessarily", "clues": ["needs", "inevitably", "needfully", "of necessity", "necessarily"]}, {"answer": "nevertheless", "hint": "synonyms for nevertheless", "clues": ["still", "even so", "all the same", "withal", "nonetheless", "however", "yet", "notwithstanding", "nevertheless"]}, {"answer": "no_matter", "hint": "synonyms for no matter", "clues": ["disregardless", "disregarding", "irrespective", "no matter"]}, {"answer": "nonetheless", "hint": "synonyms for nonetheless", "clues": ["still", "even so", "all the same", "withal", "nevertheless", "however", "yet", "notwithstanding", "nonetheless"]}, {"answer": "normally", "hint": "synonyms for normally", "clues": ["commonly", "usually", "ordinarily", "unremarkably", "normally"]}, {"answer": "notwithstanding", "hint": "synonyms for notwithstanding", "clues": ["still", "even so", "all the same", "withal", "nevertheless", "nonetheless", "however", "yet", "notwithstanding"]}, {"answer": "now", "hint": "synonyms for now", "clues": ["forthwith", "immediately", "directly", "at present", "instantly", "straight off", "straightaway", "nowadays", "like a shot", "at once", "right away", "today", "now"]}, {"answer": "now_and_again", "hint": "synonyms for now and again", "clues": ["on occasion", "now and then", "from time to time", "occasionally", "at times", "once in a while", "now and again"]}, {"answer": "now_and_then", "hint": "synonyms for now and then", "clues": ["on occasion", "from time to time", "occasionally", "at times", "once in a while", "now and again", "now and then"]}, {"answer": "nuttily", "hint": "synonyms for nuttily", "clues": ["balmily", "wackily", "daftly", "dottily", "nuttily"]}, {"answer": "obdurately", "hint": "synonyms for obdurately", "clues": ["stubbornly", "cussedly", "obstinately", "pig-headedly", "mulishly", "obdurately"]}, {"answer": "obliquely", "hint": "synonyms for obliquely", "clues": ["aslant", "athwart", "sideways", "sidelong", "obliquely"]}, {"answer": "obstinately", "hint": "synonyms for obstinately", "clues": ["stubbornly", "cussedly", "obdurately", "pig-headedly", "mulishly", "obstinately"]}, {"answer": "obviously", "hint": "synonyms for obviously", "clues": ["patently", "evidently", "plain", "manifestly", "apparently", "obviously"]}, {"answer": "occasionally", "hint": "synonyms for occasionally", "clues": ["on occasion", "now and then", "from time to time", "at times", "once in a while", "now and again", "occasionally"]}, {"answer": "oddly", "hint": "synonyms for oddly", "clues": ["queerly", "funnily", "curiously", "peculiarly", "strangely", "oddly"]}, {"answer": "of_late", "hint": "synonyms for of late", "clues": ["late", "latterly", "recently", "of late"]}, {"answer": "oft", "hint": "synonyms for oft", "clues": ["frequently", "often", "oftentimes", "oft"]}, {"answer": "often", "hint": "synonyms for often", "clues": ["oft", "oftentimes", "frequently", "a great deal", "much", "often"]}, {"answer": "oftentimes", "hint": "synonyms for oftentimes", "clues": ["frequently", "oft", "often", "ofttimes"]}, {"answer": "ofttimes", "hint": "synonyms for ofttimes", "clues": ["frequently", "oft", "often", "oftentimes"]}, {"answer": "on_an_individual_basis", "hint": "synonyms for on an individual basis", "clues": ["severally", "separately", "one by one", "individually", "singly", "on an individual basis"]}, {"answer": "on_occasion", "hint": "synonyms for on occasion", "clues": ["now and then", "from time to time", "occasionally", "at times", "once in a while", "now and again", "on occasion"]}, {"answer": "on_purpose", "hint": "synonyms for on purpose", "clues": ["designedly", "purposely", "intentionally", "deliberately", "by design", "advisedly", "by choice", "on purpose"]}, {"answer": "on_the_dot", "hint": "synonyms for on the dot", "clues": ["exactly", "on the nose", "precisely", "on the button", "on the dot"]}, {"answer": "once", "hint": "synonyms for once", "clues": ["erst", "erstwhile", "in one case", "one time", "at one time", "formerly", "once"]}, {"answer": "once_in_a_while", "hint": "synonyms for once in a while", "clues": ["on occasion", "now and then", "from time to time", "occasionally", "at times", "now and again", "once in a while"]}, {"answer": "one_by_one", "hint": "synonyms for one by one", "clues": ["individually", "singly", "severally", "one at a time", "separately", "on an individual basis", "one after another", "by the piece", "one by one"]}, {"answer": "onward", "hint": "synonyms for onward", "clues": ["onwards", "forth", "forwards", "forrader", "ahead"]}, {"answer": "onwards", "hint": "synonyms for onwards", "clues": ["forwards", "onward", "forrader", "ahead"]}, {"answer": "or_so", "hint": "synonyms for or so", "clues": ["roughly", "some", "close to", "about", "approximately", "around", "more or less", "just about", "or so"]}, {"answer": "ordinarily", "hint": "synonyms for ordinarily", "clues": ["commonly", "normally", "usually", "unremarkably", "ordinarily"]}, {"answer": "originally", "hint": "synonyms for originally", "clues": ["primitively", "to begin with", "in the beginning", "in the first place", "earlier", "originally"]}, {"answer": "over_and_over", "hint": "synonyms for over and over", "clues": ["time and again", "again and again", "over and over again", "time and time again", "over and over"]}, {"answer": "over_and_over_again", "hint": "synonyms for over and over again", "clues": ["time and again", "again and again", "time and time again", "over and over", "over and over again"]}, {"answer": "p.a.", "hint": "synonyms for p.a.", "clues": ["each year", "annually", "per annum", "per year", "p.a."]}, {"answer": "particularly", "hint": "synonyms for particularly", "clues": ["in particular", "especially", "peculiarly", "particularly"]}, {"answer": "passably", "hint": "synonyms for passably", "clues": ["fairly", "jolly", "pretty", "reasonably", "somewhat", "moderately", "middling", "passably"]}, {"answer": "patently", "hint": "synonyms for patently", "clues": ["evidently", "plain", "manifestly", "obviously", "apparently", "patently"]}, {"answer": "peculiarly", "hint": "synonyms for peculiarly", "clues": ["curiously", "especially", "oddly", "particularly", "peculiarly"]}, {"answer": "per_annum", "hint": "synonyms for per annum", "clues": ["each year", "p.a.", "annually", "per year", "per annum"]}, {"answer": "per_year", "hint": "synonyms for per year", "clues": ["each year", "p.a.", "annually", "per annum", "per year"]}, {"answer": "peradventure", "hint": "synonyms for peradventure", "clues": ["possibly", "maybe", "mayhap", "perhaps", "perchance", "peradventure"]}, {"answer": "perchance", "hint": "synonyms for perchance", "clues": ["possibly", "maybe", "peradventure", "by chance", "perhaps", "mayhap", "perchance"]}, {"answer": "perhaps", "hint": "synonyms for perhaps", "clues": ["possibly", "maybe", "peradventure", "mayhap", "perchance", "perhaps"]}, {"answer": "perpetually", "hint": "synonyms for perpetually", "clues": ["constantly", "incessantly", "always", "forever", "perpetually"]}, {"answer": "pertly", "hint": "synonyms for pertly", "clues": ["impertinently", "saucily", "freshly", "impudently", "pertly"]}, {"answer": "piercingly", "hint": "synonyms for piercingly", "clues": ["bitter", "bitingly", "shrilly", "piercingly"]}, {"answer": "pig-headedly", "hint": "synonyms for pig-headedly", "clues": ["stubbornly", "cussedly", "obdurately", "obstinately", "mulishly", "pig-headedly"]}, {"answer": "plainly", "hint": "synonyms for plainly", "clues": ["patently", "evidently", "plain", "manifestly", "obviously", "apparently", "simply"]}, {"answer": "pleadingly", "hint": "synonyms for pleadingly", "clues": ["importunately", "beseechingly", "imploringly", "entreatingly", "pleadingly"]}, {"answer": "pleasantly", "hint": "synonyms for pleasantly", "clues": ["enjoyably", "sunnily", "cheerily", "agreeably", "pleasantly"]}, {"answer": "possibly", "hint": "synonyms for possibly", "clues": ["maybe", "peradventure", "mayhap", "perhaps", "perchance", "possibly"]}, {"answer": "precisely", "hint": "synonyms for precisely", "clues": ["just", "on the dot", "on the nose", "on the button", "exactly", "incisively", "precisely"]}, {"answer": "presently", "hint": "synonyms for presently", "clues": ["shortly", "before long", "soon", "currently", "presently"]}, {"answer": "primarily", "hint": "synonyms for primarily", "clues": ["principally", "in the main", "in the first place", "mainly", "chiefly", "primarily"]}, {"answer": "principally", "hint": "synonyms for principally", "clues": ["in the main", "primarily", "mainly", "chiefly", "principally"]}, {"answer": "prn", "hint": "synonyms for prn", "clues": ["pro re nata", "as required", "PRN", "as needed"]}, {"answer": "probably", "hint": "synonyms for probably", "clues": ["in all likelihood", "believably", "in all probability", "likely", "credibly", "belike", "plausibly", "probably"]}, {"answer": "promptly", "hint": "synonyms for promptly", "clues": ["quickly", "readily", "right away", "pronto", "promptly"]}, {"answer": "properly", "hint": "synonyms for properly", "clues": ["decently", "by rights", "in good order", "right", "the right way", "properly"]}, {"answer": "purposely", "hint": "synonyms for purposely", "clues": ["designedly", "intentionally", "deliberately", "by design", "on purpose", "advisedly", "by choice", "purposely"]}, {"answer": "queerly", "hint": "synonyms for queerly", "clues": ["funnily", "oddly", "fishily", "strangely", "queerly"]}, {"answer": "quickly", "hint": "synonyms for quickly", "clues": ["promptly", "apace", "quick", "rapidly", "cursorily", "speedily", "chop-chop"]}, {"answer": "randomly", "hint": "synonyms for randomly", "clues": ["indiscriminately", "every which way", "willy-nilly", "haphazardly", "arbitrarily", "at random", "randomly"]}, {"answer": "rapidly", "hint": "synonyms for rapidly", "clues": ["quickly", "apace", "speedily", "chop-chop", "rapidly"]}, {"answer": "rather", "hint": "synonyms for rather", "clues": ["sooner", "sort of", "instead", "quite", "kinda", "preferably", "kind of", "rather"]}, {"answer": "really", "hint": "synonyms for really", "clues": ["truly", "actually", "very", "in truth", "real", "genuinely", "rattling"]}, {"answer": "reasonably", "hint": "synonyms for reasonably", "clues": ["jolly", "pretty", "sensibly", "moderately", "middling", "passably", "fairly", "sanely", "somewhat", "reasonably"]}, {"answer": "recently", "hint": "synonyms for recently", "clues": ["late", "latterly", "of late", "recently"]}, {"answer": "remarkably", "hint": "synonyms for remarkably", "clues": ["unmistakably", "signally", "outstandingly", "unusually", "unco", "remarkably"]}, {"answer": "richly", "hint": "synonyms for richly", "clues": ["high", "lavishly", "luxuriously", "amply", "extravagantly", "richly"]}, {"answer": "right_away", "hint": "synonyms for right away", "clues": ["promptly", "forthwith", "immediately", "directly", "instantly", "straight off", "straightaway", "like a shot", "at once", "now", "right away"]}, {"answer": "rottenly", "hint": "synonyms for rottenly", "clues": ["awfully", "abominably", "abysmally", "terribly", "atrociously", "rottenly"]}, {"answer": "roughly", "hint": "synonyms for roughly", "clues": ["some", "close to", "about", "approximately", "or so", "around", "more or less", "rough", "just about"]}, {"answer": "roundly", "hint": "synonyms for roundly", "clues": ["brusquely", "bluffly", "flat out", "bluntly", "roundly"]}, {"answer": "sadly", "hint": "synonyms for sadly", "clues": ["deplorably", "woefully", "unhappily", "lamentably", "sadly"]}, {"answer": "sagaciously", "hint": "synonyms for sagaciously", "clues": ["sapiently", "acutely", "shrewdly", "astutely", "sagaciously"]}, {"answer": "sapiently", "hint": "synonyms for sapiently", "clues": ["acutely", "shrewdly", "sagaciously", "astutely", "sapiently"]}, {"answer": "saucily", "hint": "synonyms for saucily", "clues": ["pertly", "impertinently", "freshly", "impudently", "saucily"]}, {"answer": "scarcely", "hint": "synonyms for scarcely", "clues": ["just", "hardly", "scarce", "barely"]}, {"answer": "separately", "hint": "synonyms for separately", "clues": ["severally", "on an individual basis", "one by one", "individually", "singly", "separately"]}, {"answer": "seriously", "hint": "synonyms for seriously", "clues": ["severely", "gravely", "badly", "earnestly", "in earnest", "seriously"]}, {"answer": "severally", "hint": "synonyms for severally", "clues": ["separately", "respectively", "independently", "on an individual basis", "one by one", "individually", "singly", "severally"]}, {"answer": "severely", "hint": "synonyms for severely", "clues": ["sternly", "hard", "gravely", "badly", "seriously", "severely"]}, {"answer": "shamefully", "hint": "synonyms for shamefully", "clues": ["disgracefully", "dishonourably", "ingloriously", "discreditably", "ignominiously", "shamefully"]}, {"answer": "sharply", "hint": "synonyms for sharply", "clues": ["acutely", "aggressively", "crisply", "sharp", "precipitously"]}, {"answer": "shortly", "hint": "synonyms for shortly", "clues": ["briefly", "in short", "presently", "concisely", "curtly", "in brief", "before long", "soon", "short"]}, {"answer": "shrewdly", "hint": "synonyms for shrewdly", "clues": ["sapiently", "acutely", "sagaciously", "astutely", "shrewdly"]}, {"answer": "simply", "hint": "synonyms for simply", "clues": ["just", "only", "merely", "plainly", "but", "simply"]}, {"answer": "singly", "hint": "synonyms for singly", "clues": ["severally", "separately", "on an individual basis", "one by one", "individually", "singly"]}, {"answer": "slap", "hint": "synonyms for slap", "clues": ["bolt", "smack", "bang", "slapdash", "slap"]}, {"answer": "slenderly", "hint": "synonyms for slenderly", "clues": ["meagerly", "slightly", "slimly", "sparingly", "slenderly"]}, {"answer": "slightly", "hint": "synonyms for slightly", "clues": ["slimly", "more or less", "slenderly", "somewhat", "slightly"]}, {"answer": "slowly", "hint": "synonyms for slowly", "clues": ["tardily", "lento", "easy", "slow"]}, {"answer": "slyly", "hint": "synonyms for slyly", "clues": ["cunningly", "knavishly", "artfully", "foxily", "trickily", "craftily", "slyly"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["bolt", "slap", "bang", "slapdash", "smack"]}, {"answer": "smartly", "hint": "synonyms for smartly", "clues": ["cleverly", "modishly", "vigorously", "sprucely", "smartly"]}, {"answer": "so", "hint": "synonyms for so", "clues": ["hence", "then", "indeed", "thus", "therefore", "and so", "and then", "so"]}, {"answer": "so_far", "hint": "synonyms for so far", "clues": ["as yet", "til now", "insofar", "to that extent", "thus far", "to that degree", "hitherto", "yet", "up to now", "heretofore", "so far"]}, {"answer": "softly", "hint": "synonyms for softly", "clues": ["quietly", "gently", "lightly", "piano", "softly"]}, {"answer": "solely", "hint": "synonyms for solely", "clues": ["alone", "only", "entirely", "exclusively", "solely"]}, {"answer": "somehow", "hint": "synonyms for somehow", "clues": ["in some way", "in some manner", "someway", "somehow"]}, {"answer": "someway", "hint": "synonyms for someway", "clues": ["in some way", "in some manner", "someways", "somehow"]}, {"answer": "someways", "hint": "synonyms for someways", "clues": ["in some way", "in some manner", "someway", "somehow"]}, {"answer": "somewhat", "hint": "synonyms for somewhat", "clues": ["jolly", "pretty", "moderately", "reasonably", "middling", "passably", "fairly", "slightly", "more or less", "somewhat"]}, {"answer": "speedily", "hint": "synonyms for speedily", "clues": ["quickly", "apace", "rapidly", "chop-chop", "speedily"]}, {"answer": "splendidly", "hint": "synonyms for splendidly", "clues": ["resplendently", "excellently", "gorgeously", "famously", "magnificently", "splendidly"]}, {"answer": "squarely", "hint": "synonyms for squarely", "clues": ["square", "forthrightly", "foursquare", "straightforwardly"]}, {"answer": "straight_off", "hint": "synonyms for straight off", "clues": ["forthwith", "immediately", "directly", "instantly", "straightaway", "like a shot", "at once", "right away", "now", "straight off"]}, {"answer": "stubbornly", "hint": "synonyms for stubbornly", "clues": ["cussedly", "obdurately", "obstinately", "pig-headedly", "mulishly", "stubbornly"]}, {"answer": "subsequently", "hint": "synonyms for subsequently", "clues": ["later on", "later", "afterward", "after", "subsequently"]}, {"answer": "suddenly", "hint": "synonyms for suddenly", "clues": ["short", "dead", "abruptly", "on the spur of the moment", "of a sudden", "all of a sudden", "suddenly"]}, {"answer": "suitably", "hint": "synonyms for suitably", "clues": ["appropriately", "fittingly", "fitly", "suitably"]}, {"answer": "superbly", "hint": "synonyms for superbly", "clues": ["marvelously", "wondrous", "wonderfully", "terrifically", "toppingly", "superbly"]}, {"answer": "sure_enough", "hint": "synonyms for sure enough", "clues": ["for certain", "surely", "for sure", "sure as shooting", "certainly", "sure enough"]}, {"answer": "surely", "hint": "synonyms for surely", "clues": ["for certain", "sure enough", "for sure", "sure as shooting", "sure", "certainly"]}, {"answer": "tardily", "hint": "synonyms for tardily", "clues": ["easy", "belatedly", "late", "slowly", "tardily"]}, {"answer": "terribly", "hint": "synonyms for terribly", "clues": ["awfully", "abominably", "abysmally", "atrociously", "rottenly", "frightfully", "terribly"]}, {"answer": "terrifically", "hint": "synonyms for terrifically", "clues": ["marvelously", "wondrous", "superbly", "wonderfully", "toppingly", "terrifically"]}, {"answer": "that_is_to_say", "hint": "synonyms for that is to say", "clues": ["to wit", "videlicet", "namely", "viz.", "that is to say"]}, {"answer": "the_right_way", "hint": "synonyms for the right way", "clues": ["decently", "in good order", "right", "properly", "the right way"]}, {"answer": "thence", "hint": "synonyms for thence", "clues": ["thereof", "therefrom", "hence", "thus", "therefore", "so"]}, {"answer": "there", "hint": "synonyms for there", "clues": ["in that respect", "on that point", "in that location", "thither", "at that place", "there"]}, {"answer": "therefore", "hint": "synonyms for therefore", "clues": ["hence", "consequently", "so", "thus", "therefore"]}, {"answer": "thus", "hint": "synonyms for thus", "clues": ["hence", "thusly", "so", "therefore"]}, {"answer": "thus_far", "hint": "synonyms for thus far", "clues": ["as yet", "til now", "so far", "hitherto", "yet", "up to now", "heretofore", "thus far"]}, {"answer": "til_now", "hint": "synonyms for til now", "clues": ["as yet", "so far", "until now", "thus far", "hitherto", "yet", "up to now", "heretofore"]}, {"answer": "time_and_again", "hint": "synonyms for time and again", "clues": ["again and again", "over and over again", "time and time again", "over and over", "time and again"]}, {"answer": "time_and_time_again", "hint": "synonyms for time and time again", "clues": ["time and again", "again and again", "over and over again", "over and over", "time and time again"]}, {"answer": "to_a_t", "hint": "synonyms for to a t", "clues": ["to a T", "to perfection", "just right", "to the letter"]}, {"answer": "to_begin_with", "hint": "synonyms for to begin with", "clues": ["in the beginning", "in the first place", "earlier", "originally", "to begin with"]}, {"answer": "to_each_one", "hint": "synonyms for to each one", "clues": ["from each one", "apiece", "each", "to each one"]}, {"answer": "to_that_degree", "hint": "synonyms for to that degree", "clues": ["insofar", "so far", "to that extent", "to that degree"]}, {"answer": "to_that_extent", "hint": "synonyms for to that extent", "clues": ["insofar", "to that degree", "so far", "to that extent"]}, {"answer": "to_wit", "hint": "synonyms for to wit", "clues": ["videlicet", "that is to say", "namely", "viz.", "to wit"]}, {"answer": "too", "hint": "synonyms for too", "clues": ["as well", "besides", "also", "excessively", "overly", "likewise", "to a fault", "too"]}, {"answer": "toppingly", "hint": "synonyms for toppingly", "clues": ["marvelously", "wondrous", "superbly", "wonderfully", "terrifically", "toppingly"]}, {"answer": "topsy-turvily", "hint": "synonyms for topsy-turvily", "clues": ["topsy-turvy", "in great confusion", "heels over head", "head over heels"]}, {"answer": "totally", "hint": "synonyms for totally", "clues": ["completely", "all", "entirely", "altogether", "wholly", "whole", "totally"]}, {"answer": "traitorously", "hint": "synonyms for traitorously", "clues": ["treacherously", "faithlessly", "treasonably", "false", "traitorously"]}, {"answer": "treacherously", "hint": "synonyms for treacherously", "clues": ["treasonably", "faithlessly", "false", "traitorously", "treacherously"]}, {"answer": "treasonably", "hint": "synonyms for treasonably", "clues": ["treacherously", "faithlessly", "false", "traitorously", "treasonably"]}, {"answer": "trickily", "hint": "synonyms for trickily", "clues": ["cunningly", "slyly", "knavishly", "artfully", "foxily", "craftily", "trickily"]}, {"answer": "truly", "hint": "synonyms for truly", "clues": ["sincerely", "really", "unfeignedly", "in truth", "rightfully", "genuinely", "truly"]}, {"answer": "ultimately", "hint": "synonyms for ultimately", "clues": ["at last", "at long last", "finally", "in the end", "ultimately"]}, {"answer": "unceasingly", "hint": "synonyms for unceasingly", "clues": ["incessantly", "continuously", "unendingly", "endlessly", "ceaselessly", "unceasingly"]}, {"answer": "unendingly", "hint": "synonyms for unendingly", "clues": ["incessantly", "ceaselessly", "continuously", "endlessly", "unceasingly", "unendingly"]}, {"answer": "unexpectedly", "hint": "synonyms for unexpectedly", "clues": ["out of the blue", "by chance", "circumstantially", "accidentally", "unexpectedly"]}, {"answer": "unprofitably", "hint": "synonyms for unprofitably", "clues": ["profitlessly", "fruitlessly", "gainlessly", "unproductively", "unprofitably"]}, {"answer": "unquestionably", "hint": "synonyms for unquestionably", "clues": ["emphatically", "decidedly", "definitely", "in spades", "unimpeachably", "by all odds", "unquestionably"]}, {"answer": "unremarkably", "hint": "synonyms for unremarkably", "clues": ["commonly", "normally", "ordinarily", "usually", "unremarkably"]}, {"answer": "until_now", "hint": "synonyms for until now", "clues": ["as yet", "til now", "so far", "thus far", "hitherto", "yet", "up to now", "heretofore"]}, {"answer": "up_to_now", "hint": "synonyms for up to now", "clues": ["as yet", "til now", "so far", "thus far", "hitherto", "yet", "heretofore", "to date", "up to now"]}, {"answer": "usually", "hint": "synonyms for usually", "clues": ["commonly", "normally", "ordinarily", "unremarkably", "usually"]}, {"answer": "very_much", "hint": "synonyms for very much", "clues": ["lots", "a great deal", "a lot", "a good deal", "much", "very much"]}, {"answer": "very_well", "hint": "synonyms for very well", "clues": ["first-rate", "alright", "fine", "OK", "very well"]}, {"answer": "videlicet", "hint": "synonyms for videlicet", "clues": ["to wit", "that is to say", "namely", "viz.", "videlicet"]}, {"answer": "virtually", "hint": "synonyms for virtually", "clues": ["about", "well-nigh", "most", "near", "almost", "nigh", "virtually"]}, {"answer": "viz.", "hint": "synonyms for viz.", "clues": ["to wit", "videlicet", "that is to say", "namely", "viz."]}, {"answer": "wackily", "hint": "synonyms for wackily", "clues": ["balmily", "nuttily", "daftly", "dottily", "wackily"]}, {"answer": "well-nigh", "hint": "synonyms for well-nigh", "clues": ["about", "virtually", "most", "near", "almost", "nigh", "well-nigh"]}, {"answer": "when_the_time_comes", "hint": "synonyms for when the time comes", "clues": ["in due course", "in good time", "in due season", "in due time", "when the time comes"]}, {"answer": "wholly", "hint": "synonyms for wholly", "clues": ["totally", "completely", "all", "entirely", "altogether", "whole", "wholly"]}, {"answer": "willy-nilly", "hint": "synonyms for willy-nilly", "clues": ["randomly", "indiscriminately", "every which way", "haphazardly", "arbitrarily", "at random", "willy-nilly"]}, {"answer": "withal", "hint": "synonyms for withal", "clues": ["still", "even so", "all the same", "nevertheless", "nonetheless", "however", "yet", "notwithstanding", "withal"]}, {"answer": "wonderfully", "hint": "synonyms for wonderfully", "clues": ["marvelously", "wondrous", "superbly", "terrifically", "toppingly", "wonderfully"]}, {"answer": "wondrously", "hint": "synonyms for wondrously", "clues": ["marvelously", "wondrous", "superbly", "wonderfully", "terrifically", "toppingly"]}, {"answer": "yet", "hint": "synonyms for yet", "clues": ["all the same", "nevertheless", "however", "up to now", "heretofore", "as yet", "til now", "so far", "still", "hitherto", "even so", "withal", "even", "in time", "thus far", "nonetheless", "notwithstanding", "yet"]}], "portion": 0.54}, {"name": "nouns", "groups": [{"answer": "0", "hint": "synonyms for 0", "clues": ["nought", "cipher", "zero", "cypher", "0"]}, {"answer": "1", "hint": "synonyms for 1", "clues": ["ace", "I", "one", "single", "unity", "1"]}, {"answer": "10", "hint": "synonyms for 10", "clues": ["decade", "X", "ten", "tenner", "10"]}, {"answer": "100", "hint": "synonyms for 100", "clues": ["C", "hundred", "century", "one C", "100"]}, {"answer": "1000", "hint": "synonyms for 1000", "clues": ["grand", "chiliad", "M", "K", "yard", "G", "one thousand", "thou", "thousand", "1000"]}, {"answer": "13", "hint": "synonyms for 13", "clues": ["baker's dozen", "thirteen", "long dozen", "XIII", "13"]}, {"answer": "3", "hint": "synonyms for 3", "clues": ["tercet", "ternary", "ternion", "III", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "3"]}, {"answer": "4", "hint": "synonyms for 4", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "tetrad", "quaternity", "quatern", "foursome", "quaternary", "4"]}, {"answer": "5", "hint": "synonyms for 5", "clues": ["V", "quintuplet", "Phoebe", "five", "quintet", "quint", "Little Phoebe", "pentad", "cinque", "fin", "fivesome", "5"]}, {"answer": "6", "hint": "synonyms for 6", "clues": ["sixer", "VI", "sise", "hexad", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six", "6"]}, {"answer": "7", "hint": "synonyms for 7", "clues": ["VII", "septenary", "sevener", "seven", "septet", "heptad", "7"]}, {"answer": "8", "hint": "synonyms for 8", "clues": ["VIII", "octet", "ogdoad", "eight", "octad", "octonary", "eighter from Decatur", "eighter", "8"]}, {"answer": "9", "hint": "synonyms for 9", "clues": ["IX", "nine", "ennead", "Nina from Carolina", "9"]}, {"answer": "abducent", "hint": "synonyms for abducent", "clues": ["nervus abducens", "abducent nerve", "abducens", "sixth cranial nerve"]}, {"answer": "aboriginal", "hint": "synonyms for aboriginal", "clues": ["indigene", "native Australian", "Abo", "Aborigine", "native", "Aboriginal", "Australian Aborigine"]}, {"answer": "abstract", "hint": "synonyms for abstract", "clues": ["outline", "precis", "abstraction", "synopsis", "abstract"]}, {"answer": "accessory", "hint": "synonyms for accessory", "clues": ["appurtenance", "accouterment", "supplement", "accessary", "add-on"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["hotshot", "I", "virtuoso", "wizard", "champion", "single", "Allied Command Europe", "maven", "sensation", "star", "one", "wiz", "ACE", "whizz", "superstar", "unity", "genius", "mavin", "adept", "angiotensin-converting enzyme", "1"]}, {"answer": "acid", "hint": "synonyms for acid", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "window pane", "back breaker", "acid"]}, {"answer": "adenoid", "hint": "synonyms for adenoid", "clues": ["Luschka's tonsil", "tonsilla adenoidea", "pharyngeal tonsil", "tonsilla pharyngealis", "third tonsil", "adenoid"]}, {"answer": "adept", "hint": "synonyms for adept", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius", "adept"]}, {"answer": "advance", "hint": "synonyms for advance", "clues": ["overture", "onward motion", "cash advance", "betterment", "progress", "improvement", "advancement", "rise", "procession", "feeler", "approach", "advance"]}, {"answer": "afghan", "hint": "synonyms for afghan", "clues": ["Afghani", "sheepskin coat", "Afghanistani", "Paxto", "Pashtu", "Pashto"]}, {"answer": "afghani", "hint": "synonyms for afghani", "clues": ["Afghani", "Paxto", "Pashtu", "Pashto"]}, {"answer": "agglomerate", "hint": "synonyms for agglomerate", "clues": ["mound", "cumulation", "cumulus", "heap", "pile", "agglomerate"]}, {"answer": "aggregate", "hint": "synonyms for aggregate", "clues": ["total", "totality", "sum", "congeries", "conglomeration", "aggregate"]}, {"answer": "agnate", "hint": "synonyms for agnate", "clues": ["patrilineal sib", "patrikin", "patrisib", "agnate"]}, {"answer": "alcoholic", "hint": "synonyms for alcoholic", "clues": ["lush", "dipsomaniac", "boozer", "souse", "alky", "soaker", "alcoholic"]}, {"answer": "alert", "hint": "synonyms for alert", "clues": ["warning signal", "alarum", "alerting", "qui vive"]}, {"answer": "alien", "hint": "synonyms for alien", "clues": ["extraterrestrial", "unknown", "stranger", "extraterrestrial being", "outlander", "noncitizen", "foreigner", "alien"]}, {"answer": "almighty", "hint": "synonyms for almighty", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "Maker", "Almighty", "Divine", "God Almighty"]}, {"answer": "amerind", "hint": "synonyms for amerind", "clues": ["American Indian", "American-Indian language", "Amerind", "Indian"]}, {"answer": "animal", "hint": "synonyms for animal", "clues": ["animate being", "creature", "beast", "fauna", "brute", "animal"]}, {"answer": "antecedent", "hint": "synonyms for antecedent", "clues": ["root", "forerunner", "ancestor", "ascendant", "antecedent"]}, {"answer": "antiaircraft", "hint": "synonyms for antiaircraft", "clues": ["flak", "pom-pom", "ack-ack", "ack-ack gun", "antiaircraft gun"]}, {"answer": "antic", "hint": "synonyms for antic", "clues": ["put-on", "prank", "joke", "trick", "caper", "antic"]}, {"answer": "antifungal", "hint": "synonyms for antifungal", "clues": ["antimycotic", "antimycotic agent", "antifungal agent", "fungicide", "antifungal"]}, {"answer": "antique", "hint": "synonyms for antique", "clues": ["old geezer", "oldtimer", "gaffer", "antique"]}, {"answer": "anxiolytic", "hint": "synonyms for anxiolytic", "clues": ["minor tranquillizer", "antianxiety drug", "anxiolytic drug", "anxiolytic"]}, {"answer": "apostate", "hint": "synonyms for apostate", "clues": ["ratter", "deserter", "turncoat", "renegade", "recreant", "apostate"]}, {"answer": "archaeozoic", "hint": "synonyms for archaeozoic", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archean", "hint": "synonyms for archean", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archeozoic", "hint": "synonyms for archeozoic", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "arctic", "hint": "synonyms for arctic", "clues": ["gumshoe", "rubber", "golosh", "Arctic", "North Frigid Zone", "galosh", "Arctic Zone"]}, {"answer": "ascendant", "hint": "synonyms for ascendant", "clues": ["root", "ancestor", "antecedent", "ascendent"]}, {"answer": "ascendent", "hint": "synonyms for ascendent", "clues": ["root", "ancestor", "ascendant", "antecedent"]}, {"answer": "aspirant", "hint": "synonyms for aspirant", "clues": ["wannabee", "hopeful", "aspirer", "aspirant"]}, {"answer": "associate", "hint": "synonyms for associate", "clues": ["associate degree", "comrade", "familiar", "companion", "fellow", "associate"]}, {"answer": "ataractic", "hint": "synonyms for ataractic", "clues": ["ataractic agent", "ataractic drug", "tranquilliser", "antianxiety agent", "ataractic"]}, {"answer": "attendant", "hint": "synonyms for attendant", "clues": ["attender", "co-occurrence", "accompaniment", "concomitant", "meeter", "attendant"]}, {"answer": "attic", "hint": "synonyms for attic", "clues": ["Attic", "Ionic dialect", "loft", "bean", "noggin", "garret", "bonce", "Ionic", "Classical Greek", "dome", "noodle"]}, {"answer": "azure", "hint": "synonyms for azure", "clues": ["cerulean", "sky-blue", "lazuline", "sapphire", "azure"]}, {"answer": "bacchanal", "hint": "synonyms for bacchanal", "clues": ["orgy", "bacchant", "drunken reveler", "riot", "debauchery", "bacchanalia", "debauch", "saturnalia"]}, {"answer": "back", "hint": "synonyms for back", "clues": ["vertebral column", "binding", "spine", "backrest", "rachis", "spinal column", "dorsum", "cover", "rear", "backbone", "book binding", "back"]}, {"answer": "barbarian", "hint": "synonyms for barbarian", "clues": ["peasant", "boor", "tyke", "Goth", "churl", "tike", "savage", "barbarian"]}, {"answer": "baroque", "hint": "synonyms for baroque", "clues": ["baroqueness", "Baroque period", "Baroque era", "Baroque"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["fundament", "root", "foot", "basis", "base of operations", "Qaeda", "al-Qa'ida", "understructure", "radix", "groundwork", "radical", "nucleotide", "cornerstone", "bag", "root word", "infrastructure", "foundation", "floor", "alkali", "pedestal", "home", "Base", "al-Qaeda", "stem", "theme", "substructure", "stand"]}, {"answer": "bass", "hint": "synonyms for bass", "clues": ["sea bass", "basso", "freshwater bass", "bass part", "bass voice"]}, {"answer": "bastard", "hint": "synonyms for bastard", "clues": ["SOB", "love child", "motherfucker", "illegitimate", "son of a bitch", "mongrel", "cocksucker", "whoreson", "illegitimate child", "shit", "by-blow", "asshole", "prick", "dickhead", "bastard"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["bat", "squash racket", "cricket bat", "at-bat"]}, {"answer": "bearing", "hint": "synonyms for bearing", "clues": ["heraldic bearing", "armorial bearing", "posture", "carriage", "heading", "comportment", "aim", "mien", "charge", "presence", "bearing"]}, {"answer": "beat", "hint": "synonyms for beat", "clues": ["musical rhythm", "meter", "cadence", "measure", "pulse", "beatnik", "round", "pulsation", "rhythm", "metre", "heartbeat", "beat"]}, {"answer": "beginning", "hint": "synonyms for beginning", "clues": ["root", "showtime", "source", "outset", "start", "offset", "rootage", "get-go", "origin", "starting time", "kickoff", "commencement", "first", "beginning"]}, {"answer": "behind", "hint": "synonyms for behind", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "tooshie", "nates", "can", "behind"]}, {"answer": "belligerent", "hint": "synonyms for belligerent", "clues": ["scrapper", "battler", "fighter", "combatant", "belligerent"]}, {"answer": "beloved", "hint": "synonyms for beloved", "clues": ["honey", "dear", "love", "dearest", "beloved"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["Best", "Charles Herbert Best", "C. H. Best", "topper"]}, {"answer": "bibless", "hint": "synonyms for bibless", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "bible", "Christian Bible", "Word", "Book", "Word of God", "bibless"]}, {"answer": "billion", "hint": "synonyms for billion", "clues": ["one thousand million", "trillion", "gazillion", "1000000000", "jillion", "one million million"]}, {"answer": "binding", "hint": "synonyms for binding", "clues": ["ski binding", "back", "bandaging", "dressing", "cover", "book binding", "binding"]}, {"answer": "biquadratic", "hint": "synonyms for biquadratic", "clues": ["biquadratic polynomial", "biquadratic equation", "biquadrate", "quartic", "fourth power"]}, {"answer": "black", "hint": "synonyms for black", "clues": ["blackamoor", "pitch blackness", "Black", "blackness", "Joseph Black", "lightlessness", "Shirley Temple Black", "Negro", "inkiness", "Black person", "total darkness", "Shirley Temple", "Negroid"]}, {"answer": "blank", "hint": "synonyms for blank", "clues": ["space", "lacuna", "blank shell", "dummy", "blank"]}, {"answer": "blaring", "hint": "synonyms for blaring", "clues": ["clamor", "blare", "cacophony", "din", "blaring"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["winking", "blink", "nictation", "eye blink"]}, {"answer": "blue", "hint": "synonyms for blue", "clues": ["Amytal", "blueing", "wild blue yonder", "blue sky", "blue air", "blue angel", "amobarbital sodium", "blue devil", "blueness"]}, {"answer": "bohemian", "hint": "synonyms for bohemian", "clues": ["Gypsy", "Romany", "Gipsy", "Romani", "Roma", "Bohemian"]}, {"answer": "bolshevik", "hint": "synonyms for bolshevik", "clues": ["bolshie", "red", "Bolshevist", "Marxist", "Bolshevik", "bolshy"]}, {"answer": "bolshy", "hint": "synonyms for bolshy", "clues": ["bolshie", "Marxist", "Bolshevik", "red", "bolshy"]}, {"answer": "bone", "hint": "synonyms for bone", "clues": ["osseous tissue", "off-white", "pearl", "os", "ivory", "bone"]}, {"answer": "borderline", "hint": "synonyms for borderline", "clues": ["delimitation", "border", "boundary line", "mete", "borderline"]}, {"answer": "boss", "hint": "synonyms for boss", "clues": ["honcho", "party boss", "gaffer", "chief", "political boss", "hirer", "knob", "foreman", "boss"]}, {"answer": "bottom", "hint": "synonyms for bottom", "clues": ["fundament", "rear end", "underside", "tush", "buns", "hindquarters", "prat", "freighter", "merchant ship", "seat", "butt", "bed", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "bottomland", "keister", "undersurface", "bottom of the inning", "rump", "tail", "merchantman", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "bottom"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["saltation", "limit", "leap", "boundary", "edge", "bounce", "bounds", "spring"]}, {"answer": "bowleg", "hint": "synonyms for bowleg", "clues": ["bow leg", "bandy leg", "tibia vara", "genu varum"]}, {"answer": "brag", "hint": "synonyms for brag", "clues": ["gasconade", "vaporing", "bragging", "crow", "line-shooting", "brag"]}, {"answer": "braggart", "hint": "synonyms for braggart", "clues": ["blowhard", "line-shooter", "boaster", "bragger", "vaunter", "braggart"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["gasconade", "vaporing", "brag", "crow", "line-shooting", "bragging"]}, {"answer": "breeding", "hint": "synonyms for breeding", "clues": ["gentility", "fostering", "training", "rearing", "reproduction", "genteelness", "procreation", "education", "nurture", "upbringing", "facts of life", "raising", "bringing up", "fosterage", "breeding"]}, {"answer": "broadside", "hint": "synonyms for broadside", "clues": ["flyer", "tirade", "bill", "throwaway", "philippic", "broadsheet", "circular", "flier", "handbill", "broadside"]}, {"answer": "brown", "hint": "synonyms for brown", "clues": ["Brown", "Robert Brown", "brownness", "John Brown", "Brown University"]}, {"answer": "brute", "hint": "synonyms for brute", "clues": ["wildcat", "creature", "animal", "beast", "animate being", "wolf", "fauna", "savage", "brute"]}, {"answer": "bucolic", "hint": "synonyms for bucolic", "clues": ["peasant", "idyll", "eclogue", "provincial", "bucolic"]}, {"answer": "buff", "hint": "synonyms for buff", "clues": ["devotee", "caramel", "yellowish brown", "buffer", "fan", "lover", "caramel brown", "raw sienna", "buff"]}, {"answer": "bully", "hint": "synonyms for bully", "clues": ["yob", "rowdy", "ruffian", "hooligan", "roughneck", "tough", "yobbo", "bully"]}, {"answer": "bum", "hint": "synonyms for bum", "clues": ["tush", "buns", "stinkpot", "seat", "loafer", "butt", "lowlife", "stinker", "tail end", "rear", "buttocks", "so-and-so", "crumb", "rat", "rump", "layabout", "rotter", "skunk", "nates", "can", "idler", "fundament", "rear end", "hindquarters", "scum bag", "dirty dog", "tramp", "derriere", "hobo", "stern", "git", "backside", "posterior", "keister", "arse", "tail", "puke", "bottom", "ass", "do-nothing", "fanny", "hind end", "behind", "tooshie", "bum"]}, {"answer": "burlesque", "hint": "synonyms for burlesque", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "parody", "lampoon", "spoof", "burlesque"]}, {"answer": "burning", "hint": "synonyms for burning", "clues": ["electrocution", "combustion", "burning at the stake", "burn"]}, {"answer": "bush", "hint": "synonyms for bush", "clues": ["pubic hair", "chaparral", "crotch hair", "scrub", "President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "George H.W. Bush", "Dubya", "Dubyuh", "Bush", "George Herbert Walker Bush", "Vannevar Bush"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["bout", "flop", "fizzle", "tear", "binge", "female chest", "bust"]}, {"answer": "c", "hint": "synonyms for c", "clues": ["degree centigrade", "C", "coke", "100", "vitamin C", "deoxycytidine monophosphate", "hundred", "nose candy", "century", "light speed", "cytosine", "degree Celsius", "blow", "atomic number 6", "carbon", "ascorbic acid", "speed of light", "ampere-second", "snow", "coulomb", "one C"]}, {"answer": "caesarean", "hint": "synonyms for caesarean", "clues": ["caesarian delivery", "cesarian", "cesarean section", "abdominal delivery", "C-section", "caesarean"]}, {"answer": "caesarian", "hint": "synonyms for caesarian", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "caller", "hint": "synonyms for caller", "clues": ["telephoner", "caller-up", "phoner", "company", "caller-out", "caller"]}, {"answer": "calm", "hint": "synonyms for calm", "clues": ["equanimity", "composure", "calmness", "calm air", "calm"]}, {"answer": "cambrian", "hint": "synonyms for cambrian", "clues": ["Cambrian", "Welsh", "Cymry", "Cambrian period", "Welshman"]}, {"answer": "camp", "hint": "synonyms for camp", "clues": ["summer camp", "pack", "cantonment", "refugee camp", "ingroup", "inner circle", "clique", "coterie", "encampment", "bivouac", "camp"]}, {"answer": "canary", "hint": "synonyms for canary", "clues": ["sneaker", "stool pigeon", "snitcher", "stoolie", "sneak", "fink", "canary yellow", "canary"]}, {"answer": "canine", "hint": "synonyms for canine", "clues": ["cuspid", "eye tooth", "canine tooth", "dogtooth", "canine"]}, {"answer": "capital", "hint": "synonyms for capital", "clues": ["Das Kapital", "working capital", "chapiter", "majuscule", "uppercase", "cap", "capital letter", "Washington", "upper-case letter", "Capital"]}, {"answer": "caramel", "hint": "synonyms for caramel", "clues": ["caramelized sugar", "yellowish brown", "buff", "caramel brown", "raw sienna", "caramel"]}, {"answer": "caramel_brown", "hint": "synonyms for caramel brown", "clues": ["caramel", "yellowish brown", "buff", "raw sienna", "caramel brown"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["detection", "spotting", "espial", "spying", "contracting", "catching"]}, {"answer": "caucasian", "hint": "synonyms for caucasian", "clues": ["White person", "Caucasian", "Caucasian language", "White"]}, {"answer": "cc", "hint": "synonyms for cc", "clues": ["ml", "mil", "cubic centimeter", "millilitre", "cc"]}, {"answer": "cd", "hint": "synonyms for cd", "clues": ["atomic number 48", "cadmium", "candela", "Cd", "certificate of deposit", "candle", "compact disc", "standard candle"]}, {"answer": "center", "hint": "synonyms for center", "clues": ["marrow", "eye", "inwardness", "shopping center", "nitty-gritty", "shopping mall", "center field", "kernel", "nub", "heart", "mall", "center of attention", "snapper", "core", "sum", "gist", "essence", "heart and soul", "nerve center", "centre", "meat", "plaza", "substance", "pith", "middle", "midpoint", "center"]}, {"answer": "cerulean", "hint": "synonyms for cerulean", "clues": ["sky-blue", "lazuline", "sapphire", "azure", "cerulean"]}, {"answer": "cesarean", "hint": "synonyms for cesarean", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "cesarian", "hint": "synonyms for cesarian", "clues": ["caesarian delivery", "caesarean", "cesarean section", "abdominal delivery", "C-section", "cesarian"]}, {"answer": "champion", "hint": "synonyms for champion", "clues": ["hotshot", "booster", "virtuoso", "wizard", "ace", "maven", "sensation", "star", "wiz", "whizz", "protagonist", "admirer", "superstar", "paladin", "genius", "mavin", "fighter", "adept", "title-holder", "champ", "supporter", "friend", "hero", "champion"]}, {"answer": "chance", "hint": "synonyms for chance", "clues": ["fortune", "hazard", "probability", "opportunity", "prospect", "luck", "chance"]}, {"answer": "charcoal", "hint": "synonyms for charcoal", "clues": ["fusain", "oxford grey", "charcoal gray", "wood coal", "charcoal"]}, {"answer": "chartreuse", "hint": "synonyms for chartreuse", "clues": ["yellow green", "pea green", "Chartreuse", "Paris green"]}, {"answer": "chic", "hint": "synonyms for chic", "clues": ["stylishness", "smartness", "swank", "last word", "chichi", "chicness", "modishness", "chic"]}, {"answer": "chichi", "hint": "synonyms for chichi", "clues": ["stylishness", "smartness", "chic", "swank", "last word", "chicness", "modishness", "chichi"]}, {"answer": "chicken", "hint": "synonyms for chicken", "clues": ["volaille", "poulet", "wimp", "crybaby", "chicken"]}, {"answer": "chief", "hint": "synonyms for chief", "clues": ["headman", "chieftain", "top dog", "head", "honcho", "boss", "tribal chief", "gaffer", "foreman", "chief"]}, {"answer": "chilly", "hint": "synonyms for chilly", "clues": ["chile", "chili pepper", "chilli", "chilly"]}, {"answer": "choice", "hint": "synonyms for choice", "clues": ["alternative", "option", "selection", "pick", "choice"]}, {"answer": "circular", "hint": "synonyms for circular", "clues": ["flyer", "broadsheet", "bill", "throwaway", "broadside", "flier", "handbill", "circular"]}, {"answer": "cl", "hint": "synonyms for cl", "clues": ["centiliter", "atomic number 17", "Cl", "chlorine"]}, {"answer": "cleft", "hint": "synonyms for cleft", "clues": ["fissure", "crack", "crevice", "scissure", "cleft"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["finale", "conclusion", "end", "stopping point", "last", "finis", "closing curtain", "closing", "close"]}, {"answer": "closing", "hint": "synonyms for closing", "clues": ["shutting", "conclusion", "windup", "close", "end", "closure", "completion", "mop up", "closedown", "culmination", "shutdown", "closing"]}, {"answer": "cognate", "hint": "synonyms for cognate", "clues": ["cognate word", "blood relative", "sib", "cognate"]}, {"answer": "cold", "hint": "synonyms for cold", "clues": ["common cold", "low temperature", "coldness", "frigidness", "frigidity", "cold"]}, {"answer": "color", "hint": "synonyms for color", "clues": ["people of colour", "colouring material", "colouring", "semblance", "gloss", "vividness", "colouration", "color"]}, {"answer": "colour", "hint": "synonyms for colour", "clues": ["color", "colouring material", "colouring", "gloss", "semblance", "colouration", "people of colour", "vividness"]}, {"answer": "combatant", "hint": "synonyms for combatant", "clues": ["belligerent", "scrapper", "battler", "fighter", "combatant"]}, {"answer": "comestible", "hint": "synonyms for comestible", "clues": ["victuals", "edible", "pabulum", "eatable", "comestible"]}, {"answer": "coming", "hint": "synonyms for coming", "clues": ["advent", "approaching", "climax", "sexual climax", "orgasm", "coming"]}, {"answer": "commonplace", "hint": "synonyms for commonplace", "clues": ["platitude", "cliche", "banality", "bromide", "commonplace"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["covenant", "concordat", "compact car", "powder compact", "compact"]}, {"answer": "confederate", "hint": "synonyms for confederate", "clues": ["accomplice", "collaborator", "partner in crime", "Confederate", "henchman"]}, {"answer": "connective", "hint": "synonyms for connective", "clues": ["conjunction", "connecter", "continuative", "connexion", "conjunctive"]}, {"answer": "constituent", "hint": "synonyms for constituent", "clues": ["element", "factor", "part", "component", "ingredient", "portion", "component part", "grammatical constituent", "constituent"]}, {"answer": "content", "hint": "synonyms for content", "clues": ["subject", "cognitive content", "capacity", "depicted object", "substance", "subject matter", "message", "mental object", "contentedness", "content"]}, {"answer": "contrabass", "hint": "synonyms for contrabass", "clues": ["double bass", "bass fiddle", "bull fiddle", "string bass", "bass viol", "contrabass"]}, {"answer": "contraceptive", "hint": "synonyms for contraceptive", "clues": ["preventive", "birth control device", "prophylactic device", "contraceptive device", "contraceptive"]}, {"answer": "cool", "hint": "synonyms for cool", "clues": ["sang-froid", "poise", "assuredness", "aplomb", "cool"]}, {"answer": "correspondent", "hint": "synonyms for correspondent", "clues": ["newswriter", "newspaperman", "pressman", "letter writer", "correspondent"]}, {"answer": "counter", "hint": "synonyms for counter", "clues": ["retort", "counterpunch", "sideboard", "comeback", "rejoinder", "return", "parry", "riposte", "replication", "heel counter", "tabulator", "buffet", "counter"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["go", "whirl", "quip", "cranny", "scissure", "cracking", "chap", "tornado", "fling", "shot", "offer", "snap", "cleft", "gap", "fracture", "crack cocaine", "sally", "fissure", "crevice", "pass", "wisecrack"]}, {"answer": "crackers", "hint": "synonyms for crackers", "clues": ["redneck", "firecracker", "cracker bonbon", "banger", "cracker", "snapper"]}, {"answer": "crackle", "hint": "synonyms for crackle", "clues": ["crackle china", "crepitation", "crackleware", "crackling", "crackle"]}, {"answer": "crank", "hint": "synonyms for crank", "clues": ["Methedrine", "churl", "grouch", "glass", "trash", "methamphetamine", "crosspatch", "shabu", "fruitcake", "crackpot", "screwball", "nut case", "deoxyephedrine", "chicken feed", "meth", "chalk", "starter", "ice", "nut", "methamphetamine hydrochloride", "grump", "crank"]}, {"answer": "crazy", "hint": "synonyms for crazy", "clues": ["loony", "nutcase", "weirdo", "crazy"]}, {"answer": "criminal", "hint": "synonyms for criminal", "clues": ["malefactor", "felon", "outlaw", "crook", "criminal"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["hybridization", "Cross", "mark", "hybridizing", "interbreeding", "crossbreeding", "crisscross", "crown of thorns"]}, {"answer": "crowing", "hint": "synonyms for crowing", "clues": ["gasconade", "vaporing", "brag", "bragging", "crow", "line-shooting"]}, {"answer": "crude", "hint": "synonyms for crude", "clues": ["rock oil", "fossil oil", "oil", "petroleum", "crude oil", "crude"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["call", "outcry", "cry", "weeping", "rallying cry", "shout", "tears", "watchword", "vociferation", "yell", "war cry", "battle cry"]}, {"answer": "cunning", "hint": "synonyms for cunning", "clues": ["foxiness", "wiliness", "slyness", "guile", "craftiness", "craft", "cunning"]}, {"answer": "custom", "hint": "synonyms for custom", "clues": ["tradition", "usage", "usance", "impost", "customs", "customs duty"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["baseball swing", "swing", "slice", "cut of meat", "deletion", "cutting", "stinger", "snub", "gash", "slash", "excision", "undercut", "cold shoulder", "cutting off", "track", "cut"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["press cutting", "carving", "cut", "clipping", "press clipping", "thinning", "newspaper clipping", "cutting off", "film editing", "cutting"]}, {"answer": "cyprian", "hint": "synonyms for cyprian", "clues": ["harlot", "working girl", "fancy woman", "bawd", "prostitute", "lady of pleasure", "Cypriot", "Cyprian", "tart", "cocotte", "whore", "woman of the street", "sporting lady"]}, {"answer": "d", "hint": "synonyms for d", "clues": ["cholecalciferol", "five hundred", "D", "viosterol", "500", "ergocalciferol", "calciferol", "vitamin D"]}, {"answer": "dainty", "hint": "synonyms for dainty", "clues": ["goody", "delicacy", "kickshaw", "treat", "dainty"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["shucks", "shit", "darn", "tinker's damn", "hoot", "red cent", "damn"]}, {"answer": "dandy", "hint": "synonyms for dandy", "clues": ["fashion plate", "fop", "gallant", "sheik", "yawl", "clotheshorse", "beau", "swell", "dude", "dandy"]}, {"answer": "daredevil", "hint": "synonyms for daredevil", "clues": ["swashbuckler", "madcap", "hothead", "lunatic", "harum-scarum", "daredevil"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["boldness", "dare", "hardihood", "hardiness", "daring"]}, {"answer": "dark", "hint": "synonyms for dark", "clues": ["shadow", "night", "darkness", "wickedness", "nighttime", "iniquity", "dark"]}, {"answer": "darling", "hint": "synonyms for darling", "clues": ["ducky", "deary", "favourite", "pet", "Darling River", "dearie", "Darling"]}, {"answer": "dear", "hint": "synonyms for dear", "clues": ["honey", "lamb", "beloved", "dearest", "love", "dear"]}, {"answer": "deceased", "hint": "synonyms for deceased", "clues": ["dead soul", "dead person", "decedent", "departed", "deceased person", "deceased"]}, {"answer": "declarative", "hint": "synonyms for declarative", "clues": ["common mood", "declarative mood", "indicative mood", "indicative", "fact mood", "declarative"]}, {"answer": "departed", "hint": "synonyms for departed", "clues": ["dead soul", "dead person", "decedent", "deceased", "deceased person", "departed"]}, {"answer": "derivative", "hint": "synonyms for derivative", "clues": ["differential", "differential coefficient", "derivative instrument", "first derivative", "derived function", "derivative"]}, {"answer": "determinant", "hint": "synonyms for determinant", "clues": ["determiner", "determining factor", "epitope", "antigenic determinant", "determinative", "causal factor", "determinant"]}, {"answer": "determinative", "hint": "synonyms for determinative", "clues": ["determiner", "determining factor", "causal factor", "determinant", "determinative"]}, {"answer": "deterrent", "hint": "synonyms for deterrent", "clues": ["hindrance", "impediment", "handicap", "balk", "check", "deterrent"]}, {"answer": "diagonal", "hint": "synonyms for diagonal", "clues": ["solidus", "virgule", "bias", "separatrix", "slash", "stroke", "diagonal"]}, {"answer": "dickey", "hint": "synonyms for dickey", "clues": ["dickie", "dickie-seat", "dicky", "shirtfront"]}, {"answer": "dicky", "hint": "synonyms for dicky", "clues": ["dickie", "dickie-seat", "dickey", "shirtfront"]}, {"answer": "differential", "hint": "synonyms for differential", "clues": ["differential coefficient", "derivative", "differential gear", "first derivative", "derived function", "differential"]}, {"answer": "dirt", "hint": "synonyms for dirt", "clues": ["soil", "crap", "malicious gossip", "grime", "poop", "grease", "turd", "stain", "grunge", "shite", "scandal", "filth", "dirt"]}, {"answer": "dissident", "hint": "synonyms for dissident", "clues": ["protester", "dissenter", "objector", "contestant", "dissident"]}, {"answer": "divers", "hint": "synonyms for divers", "clues": ["frogman", "plunger", "underwater diver", "diver"]}, {"answer": "divine", "hint": "synonyms for divine", "clues": ["cleric", "Creator", "Jehovah", "Godhead", "Lord", "Maker", "Almighty", "ecclesiastic", "Divine", "God Almighty", "churchman"]}, {"answer": "do-nothing", "hint": "synonyms for do-nothing", "clues": ["idler", "layabout", "loafer", "bum", "do-nothing"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["two-base hit", "stunt woman", "two-baser", "doubling", "look-alike", "image", "two-bagger", "double"]}, {"answer": "dowdy", "hint": "synonyms for dowdy", "clues": ["Baron Hugh Caswall Tremenheere Dowding", "pandowdy", "Hugh Dowding", "Dowding", "Dowdy"]}, {"answer": "dress", "hint": "synonyms for dress", "clues": ["frock", "clothes", "apparel", "wearing apparel", "attire", "garb", "dress"]}, {"answer": "drunk", "hint": "synonyms for drunk", "clues": ["wino", "rummy", "inebriate", "sot", "drunkard", "drunk"]}, {"answer": "dud", "hint": "synonyms for dud", "clues": ["flop", "bomb", "misfire", "washout", "turkey", "dud"]}, {"answer": "dummy", "hint": "synonyms for dummy", "clues": ["dope", "boob", "blank shell", "dumbbell", "silent person", "pinhead", "blank", "dummy"]}, {"answer": "eager", "hint": "synonyms for eager", "clues": ["eagre", "tidal bore", "bore", "aegir", "eager"]}, {"answer": "east", "hint": "synonyms for east", "clues": ["eastward", "eastern United States", "E", "East", "Orient", "due east"]}, {"answer": "eastern_orthodox", "hint": "synonyms for eastern orthodox", "clues": ["Orthodox Catholic Church", "Eastern Orthodox", "Eastern Orthodox Church", "Eastern Church", "Orthodox Church"]}, {"answer": "eatable", "hint": "synonyms for eatable", "clues": ["victuals", "edible", "pabulum", "comestible", "eatable"]}, {"answer": "ebony", "hint": "synonyms for ebony", "clues": ["jet black", "soot black", "pitch black", "coal black", "sable", "ebony"]}, {"answer": "eccentric", "hint": "synonyms for eccentric", "clues": ["oddball", "flake", "eccentric person", "case", "character", "geek", "type", "eccentric"]}, {"answer": "edible", "hint": "synonyms for edible", "clues": ["victuals", "pabulum", "comestible", "eatable", "edible"]}, {"answer": "eight", "hint": "synonyms for eight", "clues": ["Ashcan School", "VIII", "eight-spot", "octet", "ogdoad", "octad", "octonary", "8", "Eight", "eighter from Decatur", "eighter"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["elevated railway", "overhead railway", "elevated railroad", "el", "elevated"]}, {"answer": "empyrean", "hint": "synonyms for empyrean", "clues": ["sphere", "heavens", "welkin", "celestial sphere", "vault of heaven", "firmament", "empyrean"]}, {"answer": "enate", "hint": "synonyms for enate", "clues": ["matrilineal sib", "matrisib", "matrikin", "enate"]}, {"answer": "endocrine", "hint": "synonyms for endocrine", "clues": ["ductless gland", "endocrine gland", "internal secretion", "hormone", "endocrine"]}, {"answer": "english", "hint": "synonyms for english", "clues": ["English language", "English people", "side", "English"]}, {"answer": "epicene", "hint": "synonyms for epicene", "clues": ["hermaphrodite", "intersex", "gynandromorph", "androgyne", "epicene person", "epicene"]}, {"answer": "epicurean", "hint": "synonyms for epicurean", "clues": ["bon vivant", "epicure", "foodie", "gourmet", "gastronome"]}, {"answer": "essential", "hint": "synonyms for essential", "clues": ["requirement", "necessary", "necessity", "requisite", "essential"]}, {"answer": "evil", "hint": "synonyms for evil", "clues": ["evilness", "wickedness", "iniquity", "immorality", "evil"]}, {"answer": "ex", "hint": "synonyms for ex", "clues": ["X", "ex-wife", "ex-husband", "ex"]}, {"answer": "excess", "hint": "synonyms for excess", "clues": ["excessiveness", "surplus", "inordinateness", "surfeit", "overabundance", "surplusage", "overindulgence", "nimiety", "excess"]}, {"answer": "fake", "hint": "synonyms for fake", "clues": ["juke", "imposter", "pseudo", "pretender", "faker", "sham", "postiche", "role player", "shammer", "fraud"]}, {"answer": "familiar", "hint": "synonyms for familiar", "clues": ["familiar spirit", "comrade", "companion", "fellow", "associate", "familiar"]}, {"answer": "fancy", "hint": "synonyms for fancy", "clues": ["illusion", "phantasy", "partiality", "fondness", "fantasy", "fancy"]}, {"answer": "far", "hint": "synonyms for far", "clues": ["ALIR", "Interahamwe", "FAR", "Army for the Liberation of Rwanda", "Former Armed Forces"]}, {"answer": "fat", "hint": "synonyms for fat", "clues": ["avoirdupois", "blubber", "fatness", "fatty tissue", "adipose tissue", "fat"]}, {"answer": "fatty", "hint": "synonyms for fatty", "clues": ["fatso", "fat person", "butterball", "roly-poly", "fatty"]}, {"answer": "favorite", "hint": "synonyms for favorite", "clues": ["ducky", "front-runner", "favourite", "pet", "deary", "dearie", "darling"]}, {"answer": "favourite", "hint": "synonyms for favourite", "clues": ["ducky", "favorite", "dearie", "front-runner", "pet", "deary", "darling"]}, {"answer": "federal", "hint": "synonyms for federal", "clues": ["Union soldier", "federal official", "Federal", "Federal soldier", "Fed"]}, {"answer": "feudatory", "hint": "synonyms for feudatory", "clues": ["liege subject", "vassal", "liege", "liegeman", "feudatory"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["showtime", "number one", "outset", "start", "offset", "first base", "get-go", "low gear", "first-class honours degree", "kickoff", "number 1", "beginning", "commencement", "low", "starting time", "first gear", "first"]}, {"answer": "fit", "hint": "synonyms for fit", "clues": ["convulsion", "paroxysm", "scene", "burst", "conniption", "tantrum", "fit"]}, {"answer": "fitting", "hint": "synonyms for fitting", "clues": ["try-on", "accommodation", "adjustment", "trying on", "appointment", "fitting"]}, {"answer": "five", "hint": "synonyms for five", "clues": ["V", "quintuplet", "Phoebe", "5", "quintet", "quint", "basketball team", "Little Phoebe", "five-spot", "pentad", "cinque", "fin", "fivesome", "five"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["flash bulb", "photoflash", "trice", "instant", "newsflash", "jiffy", "flashgun", "New York minute", "fanfare", "split second", "flashing", "heartbeat", "flare", "wink", "ostentation", "flash lamp", "news bulletin", "twinkling", "blink of an eye", "newsbreak"]}, {"answer": "flat", "hint": "synonyms for flat", "clues": ["apartment", "flatcar", "flat tire", "flatbed", "flat"]}, {"answer": "fledgeling", "hint": "synonyms for fledgeling", "clues": ["neophyte", "newcomer", "starter", "entrant", "newbie", "fledgling", "freshman"]}, {"answer": "fledgling", "hint": "synonyms for fledgling", "clues": ["neophyte", "newcomer", "starter", "entrant", "newbie", "fledgeling", "freshman"]}, {"answer": "flip", "hint": "synonyms for flip", "clues": ["somersault", "somerset", "summerset", "pass", "toss", "flip"]}, {"answer": "flowering", "hint": "synonyms for flowering", "clues": ["anthesis", "unfolding", "efflorescence", "inflorescence", "blossoming", "flowering"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["efflorescence", "rush", "hot flash", "outpouring", "blush", "rosiness", "charge", "prime", "thrill", "flower", "bloom", "heyday", "gush", "blossom", "boot", "bang", "kick", "peak", "flush"]}, {"answer": "fly", "hint": "synonyms for fly", "clues": ["rainfly", "fly sheet", "tent-fly", "fly front", "fly ball", "tent flap", "fly"]}, {"answer": "following", "hint": "synonyms for following", "clues": ["chase", "pursuit", "pursual", "followers", "following"]}, {"answer": "formal", "hint": "synonyms for formal", "clues": ["ball", "evening gown", "dinner gown", "dinner dress", "formal"]}, {"answer": "forte", "hint": "synonyms for forte", "clues": ["long suit", "strong point", "strength", "speciality", "fortissimo", "strong suit", "metier", "forte"]}, {"answer": "four", "hint": "synonyms for four", "clues": ["IV", "Little Joe", "four-spot", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "foursome", "quaternary", "four"]}, {"answer": "fourth", "hint": "synonyms for fourth", "clues": ["twenty-five percent", "quartern", "one-fourth", "one-quarter", "fourth part", "fourth"]}, {"answer": "frank", "hint": "synonyms for frank", "clues": ["hotdog", "wienerwurst", "Frank", "frankfurter", "dog", "weenie", "wiener"]}, {"answer": "freshman", "hint": "synonyms for freshman", "clues": ["fresher", "entrant", "fledgeling", "starter", "neophyte", "newcomer", "newbie", "freshman"]}, {"answer": "front", "hint": "synonyms for front", "clues": ["front line", "strawman", "battlefront", "nominal head", "social movement", "front man", "movement", "front end", "forepart", "figurehead", "presence", "front"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["piece of tail", "screw", "shtup", "nooky", "fuck", "shag", "piece of ass", "roll in the hay", "ass", "nookie"]}, {"answer": "future", "hint": "synonyms for future", "clues": ["future tense", "futurity", "time to come", "hereafter", "future"]}, {"answer": "gallant", "hint": "synonyms for gallant", "clues": ["fashion plate", "fop", "dandy", "sheik", "clotheshorse", "squire", "beau", "swell", "dude", "gallant"]}, {"answer": "gentile", "hint": "synonyms for gentile", "clues": ["pagan", "infidel", "goy", "non-Jew", "heathen", "gentile"]}, {"answer": "giant", "hint": "synonyms for giant", "clues": ["goliath", "heavyweight", "behemoth", "whale", "giant star", "monster", "colossus", "titan", "hulk", "giant"]}, {"answer": "gimcrack", "hint": "synonyms for gimcrack", "clues": ["nonsense", "falderol", "folderal", "trumpery", "gimcrackery", "frill", "gimcrack"]}, {"answer": "ginger", "hint": "synonyms for ginger", "clues": ["gingerroot", "peppiness", "powdered ginger", "pep", "ginger"]}, {"answer": "gleaming", "hint": "synonyms for gleaming", "clues": ["gleam", "glow", "glimmer", "lambency"]}, {"answer": "go", "hint": "synonyms for go", "clues": ["tour", "offer", "Adam", "ecstasy", "hug drug", "XTC", "fling", "whirl", "go game", "crack", "turn", "pass", "disco biscuit", "cristal", "X", "spell", "go"]}, {"answer": "going", "hint": "synonyms for going", "clues": ["going away", "leaving", "exit", "sledding", "loss", "departure", "expiration", "passing", "release", "going"]}, {"answer": "good-for-naught", "hint": "synonyms for good-for-naught", "clues": ["good-for-nothing", "goldbrick", "goof-off", "ne'er-do-well", "no-account", "good-for-naught"]}, {"answer": "good-for-nothing", "hint": "synonyms for good-for-nothing", "clues": ["goof-off", "goldbrick", "good-for-naught", "ne'er-do-well", "no-account", "good-for-nothing"]}, {"answer": "governing", "hint": "synonyms for governing", "clues": ["governance", "government", "government activity", "administration", "governing"]}, {"answer": "graduate", "hint": "synonyms for graduate", "clues": ["alumnus", "alumna", "alum", "grad", "graduate"]}, {"answer": "grand", "hint": "synonyms for grand", "clues": ["chiliad", "M", "K", "grand piano", "thousand", "yard", "G", "one thousand", "thou", "1000", "grand"]}, {"answer": "gray", "hint": "synonyms for gray", "clues": ["greyness", "Asa Gray", "Robert Gray", "Gray", "Thomas Gray", "Louis Harold Gray", "grey", "Gy"]}, {"answer": "greek", "hint": "synonyms for greek", "clues": ["Hellenic language", "Greek", "Hellenic", "Hellene"]}, {"answer": "green", "hint": "synonyms for green", "clues": ["cat valium", "super C", "greenness", "park", "common", "putting green", "super acid", "viridity", "leafy vegetable", "putting surface", "special K", "William Green", "greens", "K", "honey oil", "jet", "Green River"]}, {"answer": "grey", "hint": "synonyms for grey", "clues": ["greyness", "Charles Grey", "Lady Jane Grey", "Second Earl Grey", "Zane Grey", "gray", "Grey"]}, {"answer": "growing", "hint": "synonyms for growing", "clues": ["maturation", "ontogenesis", "ontogeny", "development", "growth", "growing"]}, {"answer": "grumbling", "hint": "synonyms for grumbling", "clues": ["muttering", "grumble", "rumbling", "murmuring"]}, {"answer": "hadean", "hint": "synonyms for hadean", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "hale", "hint": "synonyms for hale", "clues": ["Edward Everett Hale", "Hale", "George Ellery Hale", "Nathan Hale"]}, {"answer": "halt", "hint": "synonyms for halt", "clues": ["freeze", "stay", "hitch", "stoppage", "arrest", "check", "stop", "halt"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["hold", "handgrip", "handle", "grip"]}, {"answer": "harum-scarum", "hint": "synonyms for harum-scarum", "clues": ["daredevil", "swashbuckler", "madcap", "hothead", "lunatic", "harum-scarum"]}, {"answer": "hearing", "hint": "synonyms for hearing", "clues": ["earshot", "listening", "earreach", "audition", "auditory modality", "auditory sense", "audience", "sense of hearing", "hearing"]}, {"answer": "hermaphrodite", "hint": "synonyms for hermaphrodite", "clues": ["intersex", "gynandromorph", "epicene", "epicene person", "androgyne", "hermaphrodite"]}, {"answer": "hick", "hint": "synonyms for hick", "clues": ["chawbacon", "yahoo", "yokel", "rube", "hayseed", "bumpkin", "hick"]}, {"answer": "high", "hint": "synonyms for high", "clues": ["senior high", "highschool", "high gear", "heights", "senior high school", "high"]}, {"answer": "hip", "hint": "synonyms for hip", "clues": ["pelvis", "coxa", "hip joint", "pelvic arch", "articulatio coxae", "pelvic girdle", "hip"]}, {"answer": "home", "hint": "synonyms for home", "clues": ["plate", "abode", "base", "dwelling house", "menage", "domicile", "nursing home", "dwelling", "home base", "family", "habitation", "household", "place", "rest home", "home plate", "house", "home"]}, {"answer": "honey", "hint": "synonyms for honey", "clues": ["love", "dear", "dearest", "beloved", "honey"]}, {"answer": "hopeful", "hint": "synonyms for hopeful", "clues": ["wannabee", "aspirer", "aspirant", "hopeful"]}, {"answer": "hundred", "hint": "synonyms for hundred", "clues": ["C", "100", "century", "one C", "hundred"]}, {"answer": "hurt", "hint": "synonyms for hurt", "clues": ["detriment", "harm", "suffering", "scathe", "damage", "trauma", "distress", "injury", "hurt"]}, {"answer": "i", "hint": "synonyms for i", "clues": ["I", "iodine", "single", "ace", "one", "atomic number 53", "1", "unity"]}, {"answer": "ic", "hint": "synonyms for ic", "clues": ["United States Intelligence Community", "Intelligence Community", "IC", "National Intelligence Community"]}, {"answer": "ideal", "hint": "synonyms for ideal", "clues": ["apotheosis", "nonsuch", "saint", "nonpareil", "paragon", "ideal"]}, {"answer": "ii", "hint": "synonyms for ii", "clues": ["2", "II", "deuce", "two"]}, {"answer": "iii", "hint": "synonyms for iii", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace"]}, {"answer": "il", "hint": "synonyms for il", "clues": ["Land of Lincoln", "Prairie State", "Illinois", "IL"]}, {"answer": "illegitimate", "hint": "synonyms for illegitimate", "clues": ["love child", "illegitimate child", "by-blow", "whoreson", "bastard", "illegitimate"]}, {"answer": "imbecile", "hint": "synonyms for imbecile", "clues": ["moron", "changeling", "half-wit", "idiot", "cretin", "retard", "imbecile"]}, {"answer": "immunosuppressive", "hint": "synonyms for immunosuppressive", "clues": ["immunosuppressor", "immunosuppressant", "immunosuppressive drug", "immune suppressant drug"]}, {"answer": "imperfect", "hint": "synonyms for imperfect", "clues": ["continuous tense", "progressive", "progressive tense", "imperfect tense", "imperfect"]}, {"answer": "in", "hint": "synonyms for in", "clues": ["Hoosier State", "IN", "inch", "atomic number 49", "Indiana", "indium"]}, {"answer": "incendiary", "hint": "synonyms for incendiary", "clues": ["firebug", "incendiary bomb", "firebomb", "arsonist", "incendiary"]}, {"answer": "incoming", "hint": "synonyms for incoming", "clues": ["entry", "entering", "ingress", "entrance", "incoming"]}, {"answer": "independent", "hint": "synonyms for independent", "clues": ["freelancer", "fencesitter", "self-employed person", "mugwump", "independent"]}, {"answer": "indian", "hint": "synonyms for indian", "clues": ["Red Indian", "American Indian", "Indian", "American-Indian language", "Amerind"]}, {"answer": "indicative", "hint": "synonyms for indicative", "clues": ["fact mood", "common mood", "declarative mood", "indicative mood", "declarative", "indicative"]}, {"answer": "individual", "hint": "synonyms for individual", "clues": ["person", "somebody", "someone", "soul", "mortal", "individual"]}, {"answer": "indo-european", "hint": "synonyms for indo-european", "clues": ["Aryan", "Indo-European", "Indo-Hittite", "Indo-European language"]}, {"answer": "infrared", "hint": "synonyms for infrared", "clues": ["infrared frequency", "infrared emission", "infrared light", "infrared radiation", "infrared"]}, {"answer": "initiative", "hint": "synonyms for initiative", "clues": ["opening move", "go-ahead", "enterprise", "enterprisingness", "opening", "first step", "initiative"]}, {"answer": "instant", "hint": "synonyms for instant", "clues": ["flash", "trice", "minute", "wink", "jiffy", "New York minute", "moment", "split second", "second", "twinkling", "blink of an eye", "heartbeat", "instant"]}, {"answer": "insurgent", "hint": "synonyms for insurgent", "clues": ["guerilla", "insurrectionist", "rebel", "irregular", "freedom fighter", "insurgent"]}, {"answer": "intent", "hint": "synonyms for intent", "clues": ["purpose", "aim", "spirit", "design", "purport", "intention", "intent"]}, {"answer": "interior", "hint": "synonyms for interior", "clues": ["inside", "Interior Department", "DoI", "Department of the Interior", "Interior"]}, {"answer": "interrogative", "hint": "synonyms for interrogative", "clues": ["interrogation", "interrogative sentence", "interrogative mood", "question", "interrogative"]}, {"answer": "intoxicant", "hint": "synonyms for intoxicant", "clues": ["alcohol", "inebriant", "alcoholic beverage", "alcoholic drink", "intoxicant"]}, {"answer": "ionic", "hint": "synonyms for ionic", "clues": ["Attic", "Ionic", "Ionic dialect", "Classical Greek"]}, {"answer": "iranian", "hint": "synonyms for iranian", "clues": ["Irani", "Persian", "Iranian language", "Iranian"]}, {"answer": "irish", "hint": "synonyms for irish", "clues": ["Irish Gaelic", "Irish whisky", "Irish people", "Irish"]}, {"answer": "iron", "hint": "synonyms for iron", "clues": ["branding iron", "atomic number 26", "Fe", "smoothing iron", "iron"]}, {"answer": "irregular", "hint": "synonyms for irregular", "clues": ["insurgent", "second", "guerrilla", "irregular"]}, {"answer": "iv", "hint": "synonyms for iv", "clues": ["IV", "Little Joe", "four", "intravenous feeding", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "foursome", "quaternary"]}, {"answer": "ix", "hint": "synonyms for ix", "clues": ["IX", "nine", "ennead", "9", "Nina from Carolina"]}, {"answer": "jade", "hint": "synonyms for jade", "clues": ["strumpet", "adulteress", "loose woman", "jadestone", "fornicatress", "slut", "trollop", "hussy", "jade green", "jade"]}, {"answer": "jet", "hint": "synonyms for jet", "clues": ["cat valium", "squirt", "jet plane", "green", "super C", "special K", "spurt", "fountain", "spirt", "super acid", "K", "jet-propelled plane", "blue jet", "honey oil", "reverse lightning", "jet"]}, {"answer": "joint", "hint": "synonyms for joint", "clues": ["roast", "marijuana cigarette", "junction", "articulatio", "join", "juncture", "stick", "reefer", "spliff"]}, {"answer": "k", "hint": "synonyms for k", "clues": ["cat valium", "grand", "super C", "atomic number 19", "super acid", "kibibyte", "yard", "G", "kelvin", "thousand", "green", "kB", "kilobyte", "special K", "chiliad", "potassium", "M", "K", "honey oil", "jet", "KiB", "one thousand", "thou", "1000"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["Florida key", "Francis Scott Key", "paint", "winder", "cay", "headstone", "keystone", "tonality", "Key"]}, {"answer": "killing", "hint": "synonyms for killing", "clues": ["cleanup", "violent death", "putting to death", "kill"]}, {"answer": "kin", "hint": "synonyms for kin", "clues": ["family", "tribe", "kinship group", "kin group", "kinsperson", "kindred", "clan", "kin"]}, {"answer": "kindred", "hint": "synonyms for kindred", "clues": ["tribe", "kinship group", "kin group", "kin", "clan", "kindred"]}, {"answer": "knockout", "hint": "synonyms for knockout", "clues": ["ravisher", "stunner", "looker", "smasher", "KO", "kayo", "peach", "mantrap", "sweetheart", "dish", "beauty", "lulu", "knockout"]}, {"answer": "l", "hint": "synonyms for l", "clues": ["liter", "litre", "lambert", "50", "L", "fifty", "cubic decimetre"]}, {"answer": "laggard", "hint": "synonyms for laggard", "clues": ["lagger", "poke", "trailer", "drone", "dawdler", "laggard"]}, {"answer": "lashing", "hint": "synonyms for lashing", "clues": ["whipping", "tanning", "flagellation", "flogging", "lashing"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["finale", "conclusion", "close", "end", "stopping point", "finis", "final stage", "shoemaker's last", "death", "cobbler's last", "last"]}, {"answer": "lean", "hint": "synonyms for lean", "clues": ["inclination", "leaning", "list", "tilt"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["propensity", "inclination", "list", "tilt", "tendency", "lean", "proclivity"]}, {"answer": "lee", "hint": "synonyms for lee", "clues": ["Rose Louise Hovick", "Bruce Lee", "Lee", "Lee Yuen Kam", "Shelton Jackson Lee", "Tsung Dao Lee", "Lighthorse Harry Lee", "lee side", "Richard Henry Lee", "Henry Lee", "Robert E. Lee", "Robert Edward Lee", "Gypsy Rose Lee", "leeward", "Spike Lee"]}, {"answer": "left", "hint": "synonyms for left", "clues": ["left field", "left hand", "left wing", "left"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["layer", "degree", "story", "floor", "grade", "stratum", "point", "spirit level", "tier", "horizontal surface", "stage", "level"]}, {"answer": "liege", "hint": "synonyms for liege", "clues": ["Liege", "Luik", "feudatory", "liege lord", "liegeman", "liege subject", "vassal"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["visible light", "sparkle", "brightness level", "spark", "ignitor", "Inner Light", "Light Within", "lighting", "lighter", "light source", "brightness", "illumination", "visible radiation", "luminance", "lightness", "Christ Within", "luminousness", "twinkle", "luminosity"]}, {"answer": "literal", "hint": "synonyms for literal", "clues": ["misprint", "literal error", "typographical error", "typo", "erratum", "literal"]}, {"answer": "living", "hint": "synonyms for living", "clues": ["support", "sustenance", "animation", "keep", "life", "bread and butter", "livelihood", "aliveness", "living"]}, {"answer": "loony", "hint": "synonyms for loony", "clues": ["looney", "crazy", "weirdo", "nutcase"]}, {"answer": "low", "hint": "synonyms for low", "clues": ["low gear", "depression", "first gear", "Sir David Alexander Cecil Low", "David Low", "Low", "first", "Sir David Low"]}, {"answer": "lunatic", "hint": "synonyms for lunatic", "clues": ["daredevil", "harum-scarum", "swashbuckler", "madcap", "hothead", "madman", "maniac", "lunatic"]}, {"answer": "lush", "hint": "synonyms for lush", "clues": ["dipsomaniac", "alcoholic", "boozer", "souse", "alky", "soaker", "lush"]}, {"answer": "lx", "hint": "synonyms for lx", "clues": ["LX", "sixty", "lux", "60"]}, {"answer": "lxxx", "hint": "synonyms for lxxx", "clues": ["LXXX", "80", "fourscore", "eighty"]}, {"answer": "m", "hint": "synonyms for m", "clues": ["grand", "yard", "G", "thou", "metre", "megabyte", "thousand", "mebibyte", "molar concentration", "molarity", "meter", "MiB", "chiliad", "M", "K", "one thousand", "MB", "1000"]}, {"answer": "madcap", "hint": "synonyms for madcap", "clues": ["daredevil", "swashbuckler", "hothead", "lunatic", "harum-scarum", "madcap"]}, {"answer": "magic", "hint": "synonyms for magic", "clues": ["illusion", "legerdemain", "thaumaturgy", "magic trick", "deception", "trick", "conjuration", "conjuring trick", "magic"]}, {"answer": "majuscule", "hint": "synonyms for majuscule", "clues": ["capital letter", "upper-case letter", "capital", "uppercase", "majuscule"]}, {"answer": "malaysian", "hint": "synonyms for malaysian", "clues": ["Bahasa Melayu", "Bahasa Malaysia", "Bahasa Kebangsaan", "Malaysian"]}, {"answer": "marine", "hint": "synonyms for marine", "clues": ["shipboard soldier", "Marine", "leatherneck", "devil dog"]}, {"answer": "maroc", "hint": "synonyms for maroc", "clues": ["Marruecos", "Morocco", "Al-Magrib", "Kingdom of Morocco", "Maroc"]}, {"answer": "marxist", "hint": "synonyms for marxist", "clues": ["bolshie", "red", "Marxist", "Bolshevik", "bolshy"]}, {"answer": "mass", "hint": "synonyms for mass", "clues": ["volume", "great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "people", "good deal", "passel", "Mass", "multitude", "pile", "stack", "tidy sum", "spate", "lot", "the great unwashed", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "hoi polloi", "bulk", "flock"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["original", "lord", "sea captain", "professional", "skipper", "maestro", "headmaster", "schoolmaster", "superior", "master copy", "passe-partout", "victor", "master key", "overlord", "captain", "passkey", "master"]}, {"answer": "mat", "hint": "synonyms for mat", "clues": ["MAT", "Master of Arts in Teaching", "lustrelessness", "matte", "gym mat", "matting", "flatness"]}, {"answer": "material", "hint": "synonyms for material", "clues": ["stuff", "textile", "cloth", "fabric", "material"]}, {"answer": "matt", "hint": "synonyms for matt", "clues": ["lustrelessness", "matte", "mat", "flatness"]}, {"answer": "matte", "hint": "synonyms for matte", "clues": ["lustrelessness", "mat", "flatness", "matte"]}, {"answer": "maximum", "hint": "synonyms for maximum", "clues": ["upper limit", "uttermost", "utmost", "level best", "maximum"]}, {"answer": "meaning", "hint": "synonyms for meaning", "clues": ["signification", "significance", "substance", "import", "meaning"]}, {"answer": "mechanic", "hint": "synonyms for mechanic", "clues": ["auto-mechanic", "machinist", "automobile mechanic", "shop mechanic", "car-mechanic", "grease monkey", "mechanic"]}, {"answer": "medical", "hint": "synonyms for medical", "clues": ["medical checkup", "medical exam", "checkup", "health check", "medical examination", "medical"]}, {"answer": "medium", "hint": "synonyms for medium", "clues": ["sensitive", "spiritualist", "mass medium", "metier", "culture medium", "medium"]}, {"answer": "merging", "hint": "synonyms for merging", "clues": ["confluence", "coming together", "conflux", "meeting", "merging"]}, {"answer": "meridian", "hint": "synonyms for meridian", "clues": ["height", "peak", "acme", "summit", "tiptop", "top", "Meridian", "superlative", "pinnacle", "line of longitude", "elevation"]}, {"answer": "middle", "hint": "synonyms for middle", "clues": ["center", "eye", "heart", "centre", "midriff", "midsection", "middle"]}, {"answer": "military", "hint": "synonyms for military", "clues": ["military machine", "armed forces", "armed services", "war machine", "military"]}, {"answer": "million", "hint": "synonyms for million", "clues": ["1000000", "meg", "trillion", "gazillion", "one thousand thousand", "billion"]}, {"answer": "minor", "hint": "synonyms for minor", "clues": ["fry", "nipper", "shaver", "nestling", "youngster", "tike", "tyke", "tiddler", "kid", "small fry", "child", "minor"]}, {"answer": "mint", "hint": "synonyms for mint", "clues": ["great deal", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "mint candy", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "mint"]}, {"answer": "minute", "hint": "synonyms for minute", "clues": ["min", "instant", "mo", "bit", "arcminute", "hour", "second", "moment", "minute of arc", "minute"]}, {"answer": "model", "hint": "synonyms for model", "clues": ["mannikin", "simulation", "theoretical account", "poser", "role model", "fashion model", "framework", "exemplar", "mannequin", "manakin", "modelling", "good example", "example", "model"]}, {"answer": "mono", "hint": "synonyms for mono", "clues": ["kissing disease", "mononucleosis", "infectious mononucleosis", "glandular fever", "mono"]}, {"answer": "moody", "hint": "synonyms for moody", "clues": ["Dwight Lyman Moody", "Helen Wills", "Helen Newington Wills", "Helen Wills Moody", "Moody"]}, {"answer": "mortal", "hint": "synonyms for mortal", "clues": ["person", "somebody", "someone", "soul", "individual", "mortal"]}, {"answer": "motley", "hint": "synonyms for motley", "clues": ["miscellany", "mixture", "variety", "salmagundi", "mixed bag", "assortment", "smorgasbord", "potpourri", "motley"]}, {"answer": "mum", "hint": "synonyms for mum", "clues": ["ma", "mamma", "momma", "mummy", "mammy", "mommy", "mom", "mum"]}, {"answer": "murmuring", "hint": "synonyms for murmuring", "clues": ["muttering", "mussitation", "murmuration", "grumble", "grumbling", "murmur"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["reflexion", "rumination", "reflection", "thoughtfulness", "contemplation", "musing"]}, {"answer": "native", "hint": "synonyms for native", "clues": ["aborigine", "indigen", "aboriginal", "native"]}, {"answer": "necessary", "hint": "synonyms for necessary", "clues": ["essential", "requirement", "necessity", "requisite", "necessary"]}, {"answer": "negro", "hint": "synonyms for negro", "clues": ["blackamoor", "Black", "Negro", "Black person", "Negroid"]}, {"answer": "negroid", "hint": "synonyms for negroid", "clues": ["blackamoor", "Black", "Negro", "Black person", "Negroid"]}, {"answer": "net", "hint": "synonyms for net", "clues": ["mesh", "meshwork", "profits", "internet", "net profit", "earnings", "net income", "network", "lucre", "cyberspace", "net"]}, {"answer": "nine", "hint": "synonyms for nine", "clues": ["IX", "club", "baseball club", "niner", "ball club", "ennead", "9", "Nina from Carolina", "nine-spot"]}, {"answer": "nip_and_tuck", "hint": "synonyms for nip and tuck", "clues": ["cosmetic surgery", "lift", "rhytidoplasty", "facelift", "face lifting", "rhytidectomy", "nip and tuck"]}, {"answer": "no-account", "hint": "synonyms for no-account", "clues": ["goof-off", "good-for-nothing", "goldbrick", "good-for-naught", "ne'er-do-well", "no-account"]}, {"answer": "nonpareil", "hint": "synonyms for nonpareil", "clues": ["apotheosis", "nonsuch", "saint", "ideal", "paragon", "nonpareil"]}, {"answer": "nonsense", "hint": "synonyms for nonsense", "clues": ["hokum", "gimcrackery", "frill", "gimcrack", "bunk", "meaninglessness", "falderol", "nonsensicality", "folderal", "trumpery", "nonsense"]}, {"answer": "nordic", "hint": "synonyms for nordic", "clues": ["Norse", "Nordic", "Scandinavian", "Scandinavian language", "North Germanic language", "North Germanic"]}, {"answer": "normal", "hint": "synonyms for normal", "clues": ["pattern", "rule", "formula", "convention", "normal"]}, {"answer": "norman", "hint": "synonyms for norman", "clues": ["Greg Norman", "Norman", "Jessye Norman", "Gregory John Norman"]}, {"answer": "norse", "hint": "synonyms for norse", "clues": ["Nordic", "Northman", "Norseman", "Norse", "Scandinavian", "Scandinavian language", "North Germanic language", "Norwegian", "North Germanic"]}, {"answer": "north", "hint": "synonyms for north", "clues": ["N", "compass north", "North", "northward", "magnetic north", "Frederick North", "due north", "Union", "Second Earl of Guilford"]}, {"answer": "northeast", "hint": "synonyms for northeast", "clues": ["northeastern United States", "NE", "Northeast", "northeastward", "nor'-east"]}, {"answer": "northwest", "hint": "synonyms for northwest", "clues": ["NW", "Northwest", "northwestern United States", "northwestward", "nor'-west"]}, {"answer": "notable", "hint": "synonyms for notable", "clues": ["luminary", "notability", "guiding light", "leading light", "notable"]}, {"answer": "nude", "hint": "synonyms for nude", "clues": ["nude statue", "nude person", "nude sculpture", "nude painting", "nude"]}, {"answer": "null", "hint": "synonyms for null", "clues": ["nothing", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zippo", "zilch", "null"]}, {"answer": "nuts", "hint": "synonyms for nuts", "clues": ["junkie", "junky", "egg", "orchis", "ball", "Nut", "fruitcake", "crackpot", "screwball", "crank", "addict", "nut case", "bollock", "en", "testicle", "testis", "freak"]}, {"answer": "o.k.", "hint": "synonyms for o.k.", "clues": ["okay", "okey", "O.K.", "OK", "okeh"]}, {"answer": "objective", "hint": "synonyms for objective", "clues": ["objective lens", "object", "target", "aim", "object glass", "objective"]}, {"answer": "oblique", "hint": "synonyms for oblique", "clues": ["abdominal external oblique muscle", "external oblique muscle", "oblique case", "musculus obliquus externus abdominis", "oblique"]}, {"answer": "occlusive", "hint": "synonyms for occlusive", "clues": ["plosive speech sound", "plosive", "plosive consonant", "stop consonant", "stop", "occlusive"]}, {"answer": "ok", "hint": "synonyms for ok", "clues": ["okay", "okey", "Oklahoma", "O.K.", "OK", "okeh", "Sooner State"]}, {"answer": "okay", "hint": "synonyms for okay", "clues": ["O.K.", "OK", "okeh", "okey", "okay"]}, {"answer": "omnibus", "hint": "synonyms for omnibus", "clues": ["coach", "autobus", "motorcoach", "jitney", "charabanc", "motorbus", "passenger vehicle", "double-decker", "bus", "omnibus"]}, {"answer": "one", "hint": "synonyms for one", "clues": ["ace", "I", "1", "single", "unity", "one"]}, {"answer": "one_thousand", "hint": "synonyms for one thousand", "clues": ["grand", "chiliad", "M", "K", "thousand", "yard", "G", "thou", "1000", "one thousand"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["out-of-doors", "surface", "clear", "open air", "outdoors", "open"]}, {"answer": "opening", "hint": "synonyms for opening", "clues": ["opening move", "curtain raising", "possible action", "hatchway", "gap", "possibility", "opening night", "porta", "orifice", "initiative", "chess opening", "first step", "scuttle", "opening"]}, {"answer": "operative", "hint": "synonyms for operative", "clues": ["shamus", "PI", "intelligence officer", "sherlock", "private investigator", "secret agent", "private detective", "private eye", "intelligence agent", "operative"]}, {"answer": "opponent", "hint": "synonyms for opponent", "clues": ["resister", "opposition", "opposite", "opposer", "antagonist", "adversary", "opponent"]}, {"answer": "opposite", "hint": "synonyms for opposite", "clues": ["reverse", "opposite word", "opposition", "opponent", "inverse", "antonym", "contrary", "opposite"]}, {"answer": "oral", "hint": "synonyms for oral", "clues": ["oral examination", "oral exam", "viva voce", "viva", "oral"]}, {"answer": "original", "hint": "synonyms for original", "clues": ["master", "pilot", "archetype", "master copy", "original"]}, {"answer": "ottoman", "hint": "synonyms for ottoman", "clues": ["tuffet", "Ottoman", "puff", "pouffe", "pouf", "Ottoman dynasty", "hassock", "Osmanli", "footrest", "Ottoman Turk", "footstool"]}, {"answer": "outlaw", "hint": "synonyms for outlaw", "clues": ["malefactor", "felon", "criminal", "crook", "outlaw"]}, {"answer": "overhead", "hint": "synonyms for overhead", "clues": ["command processing overhead", "viewgraph", "operating cost", "smash", "command overhead", "budget items", "disk overhead", "operating expense", "overhead"]}, {"answer": "pagan", "hint": "synonyms for pagan", "clues": ["pleasure seeker", "gentile", "hedonist", "infidel", "heathen", "pagan"]}, {"answer": "palatine", "hint": "synonyms for palatine", "clues": ["Palatine", "palsgrave", "os palatinum", "palatine bone"]}, {"answer": "panegyric", "hint": "synonyms for panegyric", "clues": ["pean", "eulogy", "encomium", "panegyric"]}, {"answer": "paperback", "hint": "synonyms for paperback", "clues": ["soft-cover book", "soft-cover", "softback book", "paperback book", "softback", "paperback"]}, {"answer": "parallel", "hint": "synonyms for parallel", "clues": ["analog", "latitude", "parallel of latitude", "line of latitude", "parallel"]}, {"answer": "paramilitary", "hint": "synonyms for paramilitary", "clues": ["paramilitary organisation", "paramilitary unit", "paramilitary force", "paramilitary"]}, {"answer": "particular", "hint": "synonyms for particular", "clues": ["specific", "detail", "item", "particular proposition", "particular"]}, {"answer": "partisan", "hint": "synonyms for partisan", "clues": ["zealot", "partizan", "drumbeater", "enthusiast"]}, {"answer": "pass", "hint": "synonyms for pass", "clues": ["go", "qualifying", "base on balls", "strait", "passport", "whirl", "toss", "passing", "passing play", "mountain pass", "crack", "bye", "fling", "flip", "offer", "notch", "laissez passer", "head", "passing game", "liberty chit", "pas", "walk"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["qualifying", "going", "exit", "passage", "passing game", "loss", "departure", "expiration", "passing play", "pass", "release", "overtaking"]}, {"answer": "peanut", "hint": "synonyms for peanut", "clues": ["earthnut", "goober", "monkey nut", "goober pea", "groundnut", "peanut"]}, {"answer": "pectoral", "hint": "synonyms for pectoral", "clues": ["pectoral medallion", "pecs", "pectoral muscle", "pectoralis", "musculus pectoralis"]}, {"answer": "pedal", "hint": "synonyms for pedal", "clues": ["pedal point", "treadle", "foot pedal", "foot lever", "pedal"]}, {"answer": "pedigree", "hint": "synonyms for pedigree", "clues": ["blood line", "lineage", "blood", "stemma", "line", "line of descent", "ancestry", "parentage", "origin", "descent", "stock", "pedigree"]}, {"answer": "perpendicular", "hint": "synonyms for perpendicular", "clues": ["English-Gothic", "perpendicular style", "English-Gothic architecture", "plumb line", "perpendicular"]}, {"answer": "persian", "hint": "synonyms for persian", "clues": ["Irani", "Persian", "Iranian", "Farsi"]}, {"answer": "pet", "hint": "synonyms for pet", "clues": ["positron emission tomography", "deary", "favourite", "ducky", "dearie", "PET", "darling"]}, {"answer": "phantom", "hint": "synonyms for phantom", "clues": ["phantasma", "shadow", "fantasm", "spectre", "apparition", "phantom"]}, {"answer": "phoney", "hint": "synonyms for phoney", "clues": ["hypocrite", "pretender", "dissimulator", "phony", "dissembler"]}, {"answer": "phony", "hint": "synonyms for phony", "clues": ["hypocrite", "phoney", "pretender", "dissimulator", "dissembler"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["knit", "plain stitch", "field", "knit stitch", "champaign", "plain"]}, {"answer": "plane", "hint": "synonyms for plane", "clues": ["planing machine", "aeroplane", "carpenter's plane", "woodworking plane", "planer", "sheet", "airplane"]}, {"answer": "plodding", "hint": "synonyms for plodding", "clues": ["drudgery", "grind", "plod", "donkeywork", "plodding"]}, {"answer": "pneumogastric", "hint": "synonyms for pneumogastric", "clues": ["vagus", "vagus nerve", "nervus vagus", "wandering nerve", "tenth cranial nerve", "pneumogastric nerve", "pneumogastric"]}, {"answer": "pokey", "hint": "synonyms for pokey", "clues": ["gaol", "jail", "clink", "slammer", "poky", "jailhouse"]}, {"answer": "poky", "hint": "synonyms for poky", "clues": ["pokey", "gaol", "jail", "clink", "slammer", "jailhouse"]}, {"answer": "polish", "hint": "synonyms for polish", "clues": ["glossiness", "Polish", "gloss", "refinement", "cultivation", "culture", "burnish", "finish"]}, {"answer": "pop", "hint": "synonyms for pop", "clues": ["dad", "papa", "daddy", "soda", "popping", "soda pop", "pop music", "pa", "tonic", "soda water", "pop"]}, {"answer": "port", "hint": "synonyms for port", "clues": ["larboard", "interface", "embrasure", "porthole", "port wine", "port"]}, {"answer": "posterior", "hint": "synonyms for posterior", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "back tooth", "buttocks", "bum", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "posterior"]}, {"answer": "postmortem", "hint": "synonyms for postmortem", "clues": ["necropsy", "post-mortem", "PM", "post-mortem examination", "autopsy"]}, {"answer": "potential", "hint": "synonyms for potential", "clues": ["electric potential", "potential drop", "voltage", "potential difference", "potentiality", "potency"]}, {"answer": "potty", "hint": "synonyms for potty", "clues": ["toilet", "pot", "commode", "thunder mug", "stool", "throne", "chamberpot", "can", "crapper", "potty"]}, {"answer": "premier", "hint": "synonyms for premier", "clues": ["prime minister", "chancellor", "PM", "premier"]}, {"answer": "premium", "hint": "synonyms for premium", "clues": ["insurance premium", "agio", "agiotage", "bounty", "exchange premium", "premium"]}, {"answer": "preventative", "hint": "synonyms for preventative", "clues": ["hitch", "birth control device", "prophylactic device", "hinderance", "contraceptive device", "interference", "contraceptive", "prophylactic", "incumbrance", "preventive"]}, {"answer": "preventive", "hint": "synonyms for preventive", "clues": ["hitch", "preventative", "birth control device", "hinderance", "prophylactic device", "interference", "contraceptive", "prophylactic", "incumbrance", "contraceptive device"]}, {"answer": "prime", "hint": "synonyms for prime", "clues": ["flower", "efflorescence", "bloom", "flush", "heyday", "prime quantity", "blossom", "prime of life", "peak", "prime"]}, {"answer": "principal", "hint": "synonyms for principal", "clues": ["corpus", "lead", "star", "dealer", "principal sum", "school principal", "head", "head teacher", "principal"]}, {"answer": "privy", "hint": "synonyms for privy", "clues": ["outhouse", "earth-closet", "bathroom", "john", "lavatory", "toilet", "jakes", "lav", "can", "privy"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["award", "swag", "plunder", "pillage", "loot", "dirty money", "booty", "trophy", "prize"]}, {"answer": "profligate", "hint": "synonyms for profligate", "clues": ["rakehell", "blood", "roue", "prodigal", "squanderer", "rake", "rip", "profligate"]}, {"answer": "prognostic", "hint": "synonyms for prognostic", "clues": ["omen", "prodigy", "prognostication", "presage", "portent", "prognostic"]}, {"answer": "progressive", "hint": "synonyms for progressive", "clues": ["imperfect", "liberal", "imperfect tense", "continuous tense", "liberalist", "progressive tense", "progressive"]}, {"answer": "proof", "hint": "synonyms for proof", "clues": ["cogent evidence", "trial impression", "substantiation", "test copy", "validation", "proof"]}, {"answer": "prophylactic", "hint": "synonyms for prophylactic", "clues": ["safe", "rubber", "preventative", "safety", "condom", "prophylactic"]}, {"answer": "pseudo", "hint": "synonyms for pseudo", "clues": ["shammer", "fake", "imposter", "pretender", "sham", "role player", "pseud", "fraud"]}, {"answer": "puff", "hint": "synonyms for puff", "clues": ["powderpuff", "ottoman", "quilt", "pull", "blow", "pouffe", "comfort", "hassock", "whiff", "pouf", "drag", "puff of air", "puff"]}, {"answer": "punk", "hint": "synonyms for punk", "clues": ["spunk", "punk rock", "thug", "strong-armer", "kindling", "tinder", "tough", "toughie", "touchwood", "goon", "hoodlum", "hood"]}, {"answer": "pussy", "hint": "synonyms for pussy", "clues": ["snatch", "slit", "cunt", "puss", "twat"]}, {"answer": "quality", "hint": "synonyms for quality", "clues": ["tone", "timber", "caliber", "timbre", "character", "lineament", "quality"]}, {"answer": "quaternary", "hint": "synonyms for quaternary", "clues": ["IV", "Little Joe", "four", "Age of Man", "quaternion", "Quaternary period", "Quaternary", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "foursome"]}, {"answer": "queer", "hint": "synonyms for queer", "clues": ["nance", "fairy", "fag", "poove", "faggot", "pansy", "queen", "pouf", "poof", "queer"]}, {"answer": "quicksilver", "hint": "synonyms for quicksilver", "clues": ["mercury", "hydrargyrum", "Hg", "atomic number 80", "quicksilver"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["repose", "silence", "placidity", "lull", "tranquility", "serenity", "quiet"]}, {"answer": "radical", "hint": "synonyms for radical", "clues": ["base", "free radical", "root", "group", "root word", "stem", "chemical group", "theme", "radical"]}, {"answer": "radio", "hint": "synonyms for radio", "clues": ["radio receiver", "radio set", "tuner", "wireless", "radiocommunication", "receiving set", "radio"]}, {"answer": "raising", "hint": "synonyms for raising", "clues": ["lift", "fostering", "rearing", "breeding", "nurture", "upbringing", "bringing up", "elevation", "fosterage", "raising"]}, {"answer": "rank", "hint": "synonyms for rank", "clues": ["social status", "social station", "social rank", "rank and file", "membership", "rank"]}, {"answer": "rash", "hint": "synonyms for rash", "clues": ["blizzard", "efflorescence", "skin rash", "roseola", "rash"]}, {"answer": "rear", "hint": "synonyms for rear", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "back end", "back", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "rear"]}, {"answer": "rearing", "hint": "synonyms for rearing", "clues": ["fostering", "breeding", "nurture", "upbringing", "raising", "bringing up", "fosterage", "rearing"]}, {"answer": "recent", "hint": "synonyms for recent", "clues": ["Holocene epoch", "Recent", "Recent epoch", "Holocene"]}, {"answer": "recluse", "hint": "synonyms for recluse", "clues": ["hermit", "solitary", "solitudinarian", "troglodyte", "recluse"]}, {"answer": "recreant", "hint": "synonyms for recreant", "clues": ["ratter", "deserter", "turncoat", "apostate", "craven", "poltroon", "renegade", "recreant"]}, {"answer": "red", "hint": "synonyms for red", "clues": ["Red River", "redness", "Bolshevik", "bolshie", "red ink", "loss", "Red", "Marxist", "bolshy"]}, {"answer": "reflex", "hint": "synonyms for reflex", "clues": ["unconditioned reflex", "inborn reflex", "reflex response", "instinctive reflex", "innate reflex", "reflex action", "physiological reaction", "reflex"]}, {"answer": "reformist", "hint": "synonyms for reformist", "clues": ["crusader", "social reformer", "reformer", "meliorist", "reformist"]}, {"answer": "regulation", "hint": "synonyms for regulation", "clues": ["regulating", "regularisation", "rule", "ordinance"]}, {"answer": "renegade", "hint": "synonyms for renegade", "clues": ["ratter", "deserter", "turncoat", "apostate", "recreant", "renegade"]}, {"answer": "representative", "hint": "synonyms for representative", "clues": ["instance", "spokesperson", "interpreter", "voice", "example", "congresswoman", "illustration", "representative"]}, {"answer": "requisite", "hint": "synonyms for requisite", "clues": ["essential", "necessary", "necessity", "requirement", "requisite"]}, {"answer": "resident", "hint": "synonyms for resident", "clues": ["occupier", "house physician", "occupant", "resident physician", "resident"]}, {"answer": "residual", "hint": "synonyms for residual", "clues": ["balance", "residue", "remainder", "residuum", "rest", "residual"]}, {"answer": "resultant", "hint": "synonyms for resultant", "clues": ["end point", "termination", "outcome", "vector sum", "result", "final result", "resultant"]}, {"answer": "reverse", "hint": "synonyms for reverse", "clues": ["reverse gear", "turnaround", "blow", "opposite", "black eye", "reversion", "verso", "setback", "reversal", "turnabout", "contrary", "reverse"]}, {"answer": "reverting", "hint": "synonyms for reverting", "clues": ["relapsing", "relapse", "lapse", "reversion", "backsliding", "reverting"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["rightfield", "rightfulness", "right wing", "right hand", "right"]}, {"answer": "rising", "hint": "synonyms for rising", "clues": ["rise", "ascension", "revolt", "rebellion", "ascent", "insurrection", "uprising"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["hollo", "yowl", "bellow", "thunder", "boom", "roar", "hollering", "holla"]}, {"answer": "roly-poly", "hint": "synonyms for roly-poly", "clues": ["fatty", "fat person", "fatso", "butterball", "roly-poly pudding", "roly-poly"]}, {"answer": "roman", "hint": "synonyms for roman", "clues": ["Roman", "roman letters", "roman print", "roman type"]}, {"answer": "roman_catholic", "hint": "synonyms for roman catholic", "clues": ["Roman Catholic", "Roman Church", "Roman Catholic Church", "Church of Rome", "Western Church"]}, {"answer": "romance", "hint": "synonyms for romance", "clues": ["Latinian language", "Romance language", "Romance", "love story", "love affair", "romanticism"]}, {"answer": "romani", "hint": "synonyms for romani", "clues": ["Gypsy", "Romany", "Gipsy", "Romani", "Roma", "Bohemian"]}, {"answer": "romany", "hint": "synonyms for romany", "clues": ["Gypsy", "Gipsy", "Romani", "Bohemian", "Romany", "Roma"]}, {"answer": "rose", "hint": "synonyms for rose", "clues": ["pink wine", "rose wine", "rosiness", "blush wine", "rose"]}, {"answer": "rotary", "hint": "synonyms for rotary", "clues": ["rotary converter", "circle", "traffic circle", "roundabout", "synchronous converter", "rotary"]}, {"answer": "rough-and-tumble", "hint": "synonyms for rough-and-tumble", "clues": ["hassle", "dogfight", "scuffle", "tussle", "rough-and-tumble"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["daily round", "one shot", "cycle", "bout", "round of drinks", "circle", "rung", "round of golf", "beat", "troll", "unit of ammunition", "stave", "turn", "rhythm", "round"]}, {"answer": "roundabout", "hint": "synonyms for roundabout", "clues": ["whirligig", "rotary", "carrousel", "circle", "traffic circle", "merry-go-round", "roundabout"]}, {"answer": "routine", "hint": "synonyms for routine", "clues": ["modus operandi", "number", "act", "bit", "subroutine", "subprogram", "procedure", "turn", "function", "routine"]}, {"answer": "rowdy", "hint": "synonyms for rowdy", "clues": ["yob", "bully", "ruffian", "hooligan", "roughneck", "tough", "yobbo", "rowdy"]}, {"answer": "rubber", "hint": "synonyms for rubber", "clues": ["gumshoe", "rubber eraser", "gum elastic", "pencil eraser", "safety", "caoutchouc", "arctic", "prophylactic", "galosh", "safe", "golosh", "India rubber", "condom", "natural rubber", "synthetic rubber", "rubber"]}, {"answer": "rummy", "hint": "synonyms for rummy", "clues": ["rum", "wino", "inebriate", "drunk", "sot", "drunkard", "rummy"]}, {"answer": "runaway", "hint": "synonyms for runaway", "clues": ["walkaway", "blowout", "romp", "laugher", "shoo-in", "fugitive", "fleer", "runaway"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["running game", "run", "running play", "track", "running"]}, {"answer": "rush", "hint": "synonyms for rush", "clues": ["thrill", "rushing", "flush", "haste", "upsurge", "charge", "boot", "bang", "Benjamin Rush", "kick", "hurry", "surge", "spate"]}, {"answer": "sable", "hint": "synonyms for sable", "clues": ["jet black", "soot black", "sable brush", "sable's hair pencil", "ebony", "coal black", "pitch black", "sable"]}, {"answer": "safe", "hint": "synonyms for safe", "clues": ["condom", "rubber", "prophylactic", "safety", "safe"]}, {"answer": "salt", "hint": "synonyms for salt", "clues": ["SALT", "table salt", "salinity", "common salt", "saltiness", "Strategic Arms Limitation Talks"]}, {"answer": "same", "hint": "synonyms for same", "clues": ["Lapp", "Same", "Lapplander", "Sami"]}, {"answer": "sapphire", "hint": "synonyms for sapphire", "clues": ["cerulean", "sky-blue", "lazuline", "azure", "sapphire"]}, {"answer": "savage", "hint": "synonyms for savage", "clues": ["wildcat", "beast", "wolf", "barbarian", "brute", "savage"]}, {"answer": "saving", "hint": "synonyms for saving", "clues": ["preservation", "deliverance", "economy", "rescue", "delivery", "saving"]}, {"answer": "scandinavian", "hint": "synonyms for scandinavian", "clues": ["Nordic", "Northman", "Norse", "Scandinavian", "Scandinavian language", "North Germanic language", "North Germanic"]}, {"answer": "scotch", "hint": "synonyms for scotch", "clues": ["Scotch whisky", "Scotch", "score", "Scotch malt whisky", "malt whisky"]}, {"answer": "scots", "hint": "synonyms for scots", "clues": ["Scottish", "Scotchman", "Scotsman", "Scots English", "Scots"]}, {"answer": "screwball", "hint": "synonyms for screwball", "clues": ["fruitcake", "crackpot", "nut", "crank", "nut case", "screwball"]}, {"answer": "scrub", "hint": "synonyms for scrub", "clues": ["chaparral", "scouring", "bush", "scrubbing", "scrub"]}, {"answer": "sec", "hint": "synonyms for sec", "clues": ["s", "secant", "Securities and Exchange Commission", "second", "SEC"]}, {"answer": "second", "hint": "synonyms for second", "clues": ["s", "mo", "instant", "irregular", "bit", "arcsecond", "indorsement", "second gear", "secondment", "second base", "moment", "sec", "minute", "second"]}, {"answer": "secret", "hint": "synonyms for secret", "clues": ["mystery", "enigma", "closed book", "arcanum", "secret"]}, {"answer": "seeing", "hint": "synonyms for seeing", "clues": ["eyesight", "visual perception", "sightedness", "beholding", "seeing"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["lot", "bent", "exercise set", "Seth", "circle", "solidification", "solidifying", "band", "stage set", "readiness", "hardening", "curing"]}, {"answer": "seven", "hint": "synonyms for seven", "clues": ["heptad", "VII", "septenary", "sevener", "seven-spot", "septet", "7", "seven"]}, {"answer": "sham", "hint": "synonyms for sham", "clues": ["fake", "imposter", "pseudo", "pretender", "postiche", "role player", "shammer", "fraud", "sham"]}, {"answer": "shot", "hint": "synonyms for shot", "clues": ["nip", "scene", "dead reckoning", "pellet", "shooting", "crack", "slam", "gibe", "guess", "dig", "barb", "stab", "blastoff", "snap", "stroke", "jibe", "injection", "snapshot", "shaft", "shooter", "guesswork", "shot"]}, {"answer": "siamese", "hint": "synonyms for siamese", "clues": ["Thai", "Central Thai", "Siamese", "siamese connection"]}, {"answer": "side", "hint": "synonyms for side", "clues": ["incline", "slope", "face", "English", "side of meat", "position", "side"]}, {"answer": "sign", "hint": "synonyms for sign", "clues": ["sign of the zodiac", "preindication", "star sign", "mark", "foretoken", "mansion", "signaling", "polarity", "planetary house", "signboard", "augury", "house", "sign"]}, {"answer": "silver", "hint": "synonyms for silver", "clues": ["silver gray", "ash grey", "atomic number 47", "flatware", "Ag", "silver medal", "silver"]}, {"answer": "single", "hint": "synonyms for single", "clues": ["ace", "bingle", "I", "one", "1", "unity", "single"]}, {"answer": "sissy", "hint": "synonyms for sissy", "clues": ["Milquetoast", "milksop", "pansy", "pantywaist", "sissy"]}, {"answer": "six", "hint": "synonyms for six", "clues": ["6", "sixer", "VI", "sise", "hexad", "six-spot", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six"]}, {"answer": "sky-blue", "hint": "synonyms for sky-blue", "clues": ["cerulean", "lazuline", "sapphire", "azure", "sky-blue"]}, {"answer": "slack", "hint": "synonyms for slack", "clues": ["slump", "falling off", "quag", "slackness", "falloff", "slack water", "drop-off", "quagmire", "morass", "mire", "slack"]}, {"answer": "slick", "hint": "synonyms for slick", "clues": ["slickness", "slip", "slipperiness", "slick magazine", "glossy", "slick"]}, {"answer": "sneak", "hint": "synonyms for sneak", "clues": ["sneaker", "stool pigeon", "snitcher", "stoolie", "fink", "canary", "prowler", "stalker", "sneak"]}, {"answer": "snub", "hint": "synonyms for snub", "clues": ["repulse", "cold shoulder", "rebuff", "cut", "snub"]}, {"answer": "soaring", "hint": "synonyms for soaring", "clues": ["sailplaning", "sailing", "glide", "gliding", "soaring"]}, {"answer": "solitary", "hint": "synonyms for solitary", "clues": ["hermit", "solitary confinement", "solitudinarian", "troglodyte", "recluse", "solitary"]}, {"answer": "solvent", "hint": "synonyms for solvent", "clues": ["solution", "resolvent", "dissolving agent", "dissolvent", "dissolver", "result", "answer"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["phone", "speech sound", "auditory sensation", "audio", "strait", "sound"]}, {"answer": "south", "hint": "synonyms for south", "clues": ["due south", "Confederacy", "South", "S", "Dixieland", "Confederate States", "Dixie", "southward", "Confederate States of America"]}, {"answer": "southeast", "hint": "synonyms for southeast", "clues": ["southeastern United States", "Southeast", "sou'-east", "SE", "southeastward"]}, {"answer": "southwest", "hint": "synonyms for southwest", "clues": ["southwestward", "SW", "Southwest", "southwestern United States", "sou'-west"]}, {"answer": "speaking", "hint": "synonyms for speaking", "clues": ["speechmaking", "oral presentation", "public speaking", "speech production", "speaking"]}, {"answer": "speckless", "hint": "synonyms for speckless", "clues": ["patch", "maculation", "speckle", "fleck", "dapple", "spot"]}, {"answer": "spiral", "hint": "synonyms for spiral", "clues": ["whorl", "coil", "volute", "helix", "spiral"]}, {"answer": "split", "hint": "synonyms for split", "clues": ["snag", "split up", "Split", "schism", "rip", "rent", "stock split", "tear"]}, {"answer": "spread", "hint": "synonyms for spread", "clues": ["facing pages", "bed cover", "ranch", "gap", "spreading", "banquet", "spread head", "counterpane", "paste", "feast", "bedspread", "cattle ranch", "scatter", "cattle farm"]}, {"answer": "square", "hint": "synonyms for square", "clues": ["foursquare", "second power", "square toes", "public square", "lame", "square"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["doodly-squat", "jack", "diddlyshit", "diddly", "diddlysquat", "shit", "squatting", "knee bend", "squat"]}, {"answer": "standard", "hint": "synonyms for standard", "clues": ["touchstone", "banner", "monetary standard", "criterion", "measure", "standard"]}, {"answer": "staple", "hint": "synonyms for staple", "clues": ["staple fibre", "basic", "raw material", "staple"]}, {"answer": "star", "hint": "synonyms for star", "clues": ["hotshot", "virtuoso", "wizard", "champion", "ace", "maven", "sensation", "lead", "wiz", "asterisk", "whizz", "headliner", "superstar", "genius", "mavin", "principal", "adept", "star topology", "star"]}, {"answer": "stereo", "hint": "synonyms for stereo", "clues": ["stereo system", "stereophony", "stereoscopic picture", "stereoscopic photograph", "stereophonic system", "stereo"]}, {"answer": "stern", "hint": "synonyms for stern", "clues": ["tush", "buns", "seat", "butt", "tail end", "rear", "Stern", "buttocks", "poop", "bum", "rump", "nates", "can", "fundament", "rear end", "hindquarters", "prat", "derriere", "after part", "backside", "posterior", "keister", "arse", "quarter", "tail", "bottom", "ass", "fanny", "Isaac Stern", "hind end", "behind", "tooshie"]}, {"answer": "stiff", "hint": "synonyms for stiff", "clues": ["remains", "cadaver", "corpse", "clay", "stiff"]}, {"answer": "stimulant", "hint": "synonyms for stimulant", "clues": ["stimulus", "stimulant drug", "stimulation", "excitant", "input", "stimulant"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["lineage", "blood", "neckcloth", "stemma", "line", "line of descent", "parentage", "broth", "origin", "descent", "strain", "pedigree", "breed", "bloodline", "fund", "inventory", "stock certificate", "ancestry", "store", "gunstock", "stock"]}, {"answer": "stone", "hint": "synonyms for stone", "clues": ["gemstone", "Stone", "Harlan Fisk Stone", "rock", "Edward Durell Stone", "gem", "Isidor Feinstein Stone", "Harlan Stone", "Oliver Stone", "I. F. Stone", "Lucy Stone"]}, {"answer": "straight", "hint": "synonyms for straight", "clues": ["straightaway", "heterosexual person", "straight person", "heterosexual", "straight"]}, {"answer": "straining", "hint": "synonyms for straining", "clues": ["twisting", "distortion", "strain", "overrefinement", "torture"]}, {"answer": "straw", "hint": "synonyms for straw", "clues": ["pale yellow", "stubble", "stalk", "wheat", "drinking straw", "chaff", "shuck", "husk", "straw"]}, {"answer": "stretch", "hint": "synonyms for stretch", "clues": ["stint", "reaching", "stretchiness", "stretchability", "stretching"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["hit", "impinging", "hitting", "contact", "striking"]}, {"answer": "stupid", "hint": "synonyms for stupid", "clues": ["pudding head", "poor fish", "dullard", "stupid person", "pudden-head", "dolt", "stupe", "pillock", "stupid"]}, {"answer": "subject", "hint": "synonyms for subject", "clues": ["topic", "matter", "field of study", "subject field", "field", "issue", "guinea pig", "content", "discipline", "depicted object", "bailiwick", "case", "theme", "study", "subject area", "national", "subject"]}, {"answer": "submarine", "hint": "synonyms for submarine", "clues": ["bomber", "Cuban sandwich", "U-boat", "grinder", "wedge", "pigboat", "submarine sandwich", "Italian sandwich", "torpedo", "poor boy", "zep", "hoagy", "sub", "hoagie", "hero", "hero sandwich", "submarine"]}, {"answer": "subordinate", "hint": "synonyms for subordinate", "clues": ["underling", "hyponym", "foot soldier", "subordinate word", "subsidiary", "subordinate"]}, {"answer": "subsidiary", "hint": "synonyms for subsidiary", "clues": ["underling", "subordinate", "foot soldier", "subsidiary company", "subsidiary"]}, {"answer": "substitute", "hint": "synonyms for substitute", "clues": ["backup", "stand-in", "fill-in", "reliever", "backup man", "replacement", "relief", "reserve", "second-stringer", "substitute"]}, {"answer": "suffering", "hint": "synonyms for suffering", "clues": ["excruciation", "distress", "hurt", "woe", "agony", "suffering"]}, {"answer": "sunrise", "hint": "synonyms for sunrise", "clues": ["break of day", "dayspring", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow", "sunrise"]}, {"answer": "superior", "hint": "synonyms for superior", "clues": ["master", "higher-up", "victor", "Superior", "Lake Superior", "superscript", "superordinate"]}, {"answer": "superlative", "hint": "synonyms for superlative", "clues": ["height", "peak", "meridian", "acme", "summit", "tiptop", "top", "superlative degree", "pinnacle", "elevation", "superlative"]}, {"answer": "superordinate", "hint": "synonyms for superordinate", "clues": ["higher-up", "superordinate word", "hypernym", "superior", "superordinate"]}, {"answer": "supplicant", "hint": "synonyms for supplicant", "clues": ["suppliant", "petitioner", "prayer", "requester"]}, {"answer": "surface", "hint": "synonyms for surface", "clues": ["airfoil", "open", "aerofoil", "control surface", "Earth's surface", "surface"]}, {"answer": "swagger", "hint": "synonyms for swagger", "clues": ["swagman", "prance", "swaggie", "strut"]}, {"answer": "swank", "hint": "synonyms for swank", "clues": ["stylishness", "smartness", "chic", "last word", "chichi", "chicness", "modishness", "swank"]}, {"answer": "sweet", "hint": "synonyms for sweet", "clues": ["confection", "sweetness", "sugariness", "afters", "Sweet", "Henry Sweet", "dessert"]}, {"answer": "sweetheart", "hint": "synonyms for sweetheart", "clues": ["ravisher", "stunner", "steady", "looker", "smasher", "knockout", "peach", "mantrap", "sweetie", "dish", "truelove", "beauty", "lulu", "sweetheart"]}, {"answer": "swell", "hint": "synonyms for swell", "clues": ["fashion plate", "fop", "dandy", "gallant", "sheik", "clotheshorse", "beau", "crestless wave", "dude", "swell"]}, {"answer": "swift", "hint": "synonyms for swift", "clues": ["Dean Swift", "Gustavus Franklin Swift", "Jonathan Swift", "Swift"]}, {"answer": "taiwanese", "hint": "synonyms for taiwanese", "clues": ["Amoy", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min", "Hokkianese"]}, {"answer": "tan", "hint": "synonyms for tan", "clues": ["tangent", "suntan", "sunburn", "burn", "topaz", "tan"]}, {"answer": "tart", "hint": "synonyms for tart", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "cocotte", "whore", "woman of the street", "cyprian", "tart"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["tease", "ribbing", "tantalization", "comb-out", "teasing"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["notification", "relation", "recounting", "tattle", "apprisal", "singing", "telling"]}, {"answer": "telltale", "hint": "synonyms for telltale", "clues": ["talebearer", "tattletale", "blabbermouth", "taleteller", "tattler", "telltale"]}, {"answer": "ten", "hint": "synonyms for ten", "clues": ["ten-spot", "decade", "10", "X", "tenner", "ten"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["attender", "pinnace", "stamp", "cutter", "supply ship", "ship's boat", "attendant", "legal tender", "bid"]}, {"answer": "terminal", "hint": "synonyms for terminal", "clues": ["depot", "end", "pole", "terminus", "terminal"]}, {"answer": "ternary", "hint": "synonyms for ternary", "clues": ["tercet", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "ternary"]}, {"answer": "testimonial", "hint": "synonyms for testimonial", "clues": ["tribute", "recommendation", "good word", "testimony", "testimonial"]}, {"answer": "textbook", "hint": "synonyms for textbook", "clues": ["text edition", "school text", "schoolbook", "text", "textbook"]}, {"answer": "thespian", "hint": "synonyms for thespian", "clues": ["role player", "player", "histrion", "actor", "thespian"]}, {"answer": "thickening", "hint": "synonyms for thickening", "clues": ["node", "thickener", "inspissation", "knob", "thickening"]}, {"answer": "thieving", "hint": "synonyms for thieving", "clues": ["larceny", "stealing", "thievery", "theft", "thieving"]}, {"answer": "thinking", "hint": "synonyms for thinking", "clues": ["thought", "intellection", "cerebration", "mentation", "thought process", "thinking"]}, {"answer": "third", "hint": "synonyms for third", "clues": ["tierce", "third gear", "third base", "one-third", "third"]}, {"answer": "thirteen", "hint": "synonyms for thirteen", "clues": ["13", "long dozen", "XIII", "baker's dozen", "thirteen"]}, {"answer": "thousand", "hint": "synonyms for thousand", "clues": ["grand", "chiliad", "M", "K", "yard", "G", "one thousand", "thou", "1000", "thousand"]}, {"answer": "three", "hint": "synonyms for three", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "triplet", "trey", "troika", "deuce-ace", "three"]}, {"answer": "throwaway", "hint": "synonyms for throwaway", "clues": ["flyer", "bill", "gamin", "broadsheet", "circular", "street arab", "broadside", "flier", "handbill", "throwaway"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["clunk", "thump", "thud", "clump"]}, {"answer": "tiptop", "hint": "synonyms for tiptop", "clues": ["height", "peak", "meridian", "acme", "summit", "top", "superlative", "pinnacle", "elevation", "tiptop"]}, {"answer": "token", "hint": "synonyms for token", "clues": ["item", "keepsake", "souvenir", "relic", "token"]}, {"answer": "tonic", "hint": "synonyms for tonic", "clues": ["pop", "soda", "tonic water", "restorative", "keynote", "soda pop", "soda water", "quinine water", "tonic"]}, {"answer": "top", "hint": "synonyms for top", "clues": ["height", "crest", "teetotum", "acme", "summit", "top of the inning", "whirligig", "upper side", "superlative", "cover", "elevation", "tip", "top side", "meridian", "round top", "big top", "spinning top", "tiptop", "circus tent", "crown", "pinnacle", "peak", "upside", "top"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["height", "crest", "teetotum", "acme", "summit", "top of the inning", "whirligig", "upper side", "superlative", "cover", "tip", "elevation", "top side", "meridian", "round top", "big top", "spinning top", "top", "tiptop", "circus tent", "crown", "pinnacle", "peak", "upside"]}, {"answer": "total", "hint": "synonyms for total", "clues": ["totality", "aggregate", "sum", "amount", "total"]}, {"answer": "tough", "hint": "synonyms for tough", "clues": ["street fighter", "punk", "thug", "roughneck", "strong-armer", "yob", "rowdy", "toughie", "bully", "ruffian", "hooligan", "goon", "hoodlum", "hood", "yobbo", "tough"]}, {"answer": "trembling", "hint": "synonyms for trembling", "clues": ["shaking", "vibration", "quivering", "shakiness", "palpitation", "trembling"]}, {"answer": "trillion", "hint": "synonyms for trillion", "clues": ["one million million million", "gazillion", "1000000000000", "million", "one million million", "trillion"]}, {"answer": "trim", "hint": "synonyms for trim", "clues": ["passementerie", "trimness", "clipping", "trimming", "trim"]}, {"answer": "triple", "hint": "synonyms for triple", "clues": ["three-bagger", "triplet", "triad", "trio", "three-base hit"]}, {"answer": "trojan", "hint": "synonyms for trojan", "clues": ["Dardanian", "Trojan", "Dardan", "trojan horse"]}, {"answer": "twenty-one", "hint": "synonyms for twenty-one", "clues": ["blackjack", "21", "vingt-et-un", "XXI", "twenty-one"]}, {"answer": "twilight", "hint": "synonyms for twilight", "clues": ["gloaming", "dusk", "crepuscule", "evenfall", "nightfall", "fall", "twilight"]}, {"answer": "twin", "hint": "synonyms for twin", "clues": ["Twin Falls", "similitude", "counterpart", "Gemini", "Twin"]}, {"answer": "twinkling", "hint": "synonyms for twinkling", "clues": ["flash", "trice", "instant", "wink", "jiffy", "New York minute", "split second", "blink of an eye", "heartbeat", "twinkling"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["twist", "overrefinement", "twirl", "straining", "whirl", "distortion", "spin", "torture"]}, {"answer": "u", "hint": "synonyms for u", "clues": ["uracil", "atomic number 92", "U", "uranium"]}, {"answer": "ultraviolet", "hint": "synonyms for ultraviolet", "clues": ["ultraviolet radiation", "ultraviolet illumination", "ultraviolet light", "UV", "ultraviolet"]}, {"answer": "umber", "hint": "synonyms for umber", "clues": ["deep brown", "chocolate", "coffee", "burnt umber", "umber"]}, {"answer": "underground", "hint": "synonyms for underground", "clues": ["metro", "tube", "resistance", "subway system", "subway", "underground"]}, {"answer": "understanding", "hint": "synonyms for understanding", "clues": ["apprehension", "discernment", "savvy", "reason", "intellect", "agreement", "sympathy", "understanding"]}, {"answer": "union", "hint": "synonyms for union", "clues": ["coupling", "brotherhood", "sexual union", "labor union", "spousal relationship", "jointure", "join", "trade union", "Union", "marriage", "unification", "pairing", "sum", "mating", "matrimony", "North", "conjugation", "wedlock", "uniting", "conglutination"]}, {"answer": "unknown", "hint": "synonyms for unknown", "clues": ["unknown region", "alien", "stranger", "unknown quantity", "terra incognita", "unknown"]}, {"answer": "upbeat", "hint": "synonyms for upbeat", "clues": ["welfare", "eudaemonia", "wellbeing", "offbeat", "upbeat"]}, {"answer": "upper", "hint": "synonyms for upper", "clues": ["upper berth", "pep pill", "speed", "amphetamine", "upper"]}, {"answer": "uppercase", "hint": "synonyms for uppercase", "clues": ["capital letter", "upper-case letter", "majuscule", "capital", "uppercase"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["overthrow", "disorder", "disturbance", "swage", "perturbation", "derangement", "turnover", "overturn", "upset"]}, {"answer": "upstart", "hint": "synonyms for upstart", "clues": ["parvenu", "arriviste", "nouveau-riche", "kip", "upstart"]}, {"answer": "utility", "hint": "synonyms for utility", "clues": ["public utility company", "utility program", "usefulness", "service program", "public utility", "public-service corporation", "utility"]}, {"answer": "v", "hint": "synonyms for v", "clues": ["Phoebe", "vanadium", "atomic number 23", "5", "quintet", "pentad", "cinque", "V", "quintuplet", "five", "volt", "quint", "Little Phoebe", "fin", "fivesome"]}, {"answer": "variant", "hint": "synonyms for variant", "clues": ["form", "discrepancy", "variate", "var.", "random variable", "variance", "chance variable", "version", "stochastic variable", "strain", "variation", "edition"]}, {"answer": "vernacular", "hint": "synonyms for vernacular", "clues": ["lingo", "argot", "cant", "slang", "patois", "jargon", "vernacular"]}, {"answer": "veteran", "hint": "synonyms for veteran", "clues": ["veteran soldier", "old-timer", "old hand", "old stager", "stager", "ex-serviceman", "warhorse", "vet", "veteran"]}, {"answer": "vi", "hint": "synonyms for vi", "clues": ["6", "sixer", "VI", "United States Virgin Islands", "American Virgin Islands", "sise", "hexad", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six"]}, {"answer": "vii", "hint": "synonyms for vii", "clues": ["heptad", "VII", "septenary", "sevener", "seven", "septet", "7"]}, {"answer": "viii", "hint": "synonyms for viii", "clues": ["VIII", "octet", "ogdoad", "eight", "octad", "octonary", "8", "eighter from Decatur", "eighter"]}, {"answer": "virtuoso", "hint": "synonyms for virtuoso", "clues": ["hotshot", "mavin", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius", "virtuoso"]}, {"answer": "void", "hint": "synonyms for void", "clues": ["nullity", "nihility", "nothingness", "vacancy", "emptiness", "vacuum", "void"]}, {"answer": "volunteer", "hint": "synonyms for volunteer", "clues": ["military volunteer", "Volunteer", "voluntary", "Tennessean", "unpaid worker"]}, {"answer": "volute", "hint": "synonyms for volute", "clues": ["whorl", "coil", "helix", "spiral", "volute"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["slaughter", "debacle", "drubbing", "whipping", "thrashing", "trouncing", "walloping"]}, {"answer": "waste", "hint": "synonyms for waste", "clues": ["waste material", "waste product", "dissipation", "wastefulness", "thriftlessness", "waste matter", "permissive waste", "wasteland", "barren", "waste"]}, {"answer": "wearable", "hint": "synonyms for wearable", "clues": ["wear", "habiliment", "vesture", "clothing", "article of clothing", "wearable"]}, {"answer": "wearing", "hint": "synonyms for wearing", "clues": ["wear", "erosion", "eating away", "eroding"]}, {"answer": "welsh", "hint": "synonyms for welsh", "clues": ["Cambrian", "Welsh", "Cymry", "Welshman", "Cymric"]}, {"answer": "west", "hint": "synonyms for west", "clues": ["Rebecca West", "Cicily Isabel Fairfield", "western United States", "Benjamin West", "westward", "W", "Dame Rebecca West", "Mae West", "due west", "Occident", "West"]}, {"answer": "whacking", "hint": "synonyms for whacking", "clues": ["beating", "licking", "drubbing", "lacing", "thrashing", "trouncing", "whacking"]}, {"answer": "whipping", "hint": "synonyms for whipping", "clues": ["flagellation", "trouncing", "walloping", "slaughter", "beating", "debacle", "drubbing", "thrashing", "whipstitching", "tanning", "lashing", "flogging", "whipping"]}, {"answer": "whispering", "hint": "synonyms for whispering", "clues": ["susurration", "rustling", "rustle", "whisper", "voicelessness"]}, {"answer": "white", "hint": "synonyms for white", "clues": ["ovalbumin", "Edward White", "Patrick Victor Martindale White", "White", "E. B. White", "flannel", "gabardine", "whiteness", "White person", "Caucasian", "Stanford White", "White River", "tweed", "albumen", "Theodore Harold White", "Edward Douglas White Jr.", "Patrick White", "Andrew D. White", "egg white", "Elwyn Brooks White", "Andrew Dickson White", "T. H. White"]}, {"answer": "wildcat", "hint": "synonyms for wildcat", "clues": ["beast", "wildcat well", "wolf", "savage", "brute", "wildcat"]}, {"answer": "windup", "hint": "synonyms for windup", "clues": ["closing", "culmination", "completion", "mop up", "windup"]}, {"answer": "winking", "hint": "synonyms for winking", "clues": ["blinking", "wink", "nictation", "eye blink"]}, {"answer": "wireless", "hint": "synonyms for wireless", "clues": ["receiving set", "radio receiver", "radio set", "tuner", "radiocommunication", "radio", "wireless"]}, {"answer": "wizard", "hint": "synonyms for wizard", "clues": ["hotshot", "magician", "virtuoso", "champion", "necromancer", "ace", "maven", "sensation", "star", "wiz", "sorcerer", "whizz", "superstar", "genius", "mavin", "adept", "thaumaturgist", "thaumaturge", "wizard"]}, {"answer": "world", "hint": "synonyms for world", "clues": ["creation", "earth", "worldly concern", "macrocosm", "public", "reality", "cosmos", "universe", "domain", "globe", "populace", "earthly concern", "existence", "world"]}, {"answer": "wound", "hint": "synonyms for wound", "clues": ["wounding", "combat injury", "lesion", "injury"]}, {"answer": "x", "hint": "synonyms for x", "clues": ["go", "decade", "Adam", "ecstasy", "10", "ex", "hug drug", "XTC", "disco biscuit", "cristal", "X", "ten", "tenner"]}, {"answer": "xii", "hint": "synonyms for xii", "clues": ["12", "dozen", "XII", "twelve"]}, {"answer": "xiii", "hint": "synonyms for xiii", "clues": ["long dozen", "XIII", "13", "thirteen", "baker's dozen"]}, {"answer": "xxiv", "hint": "synonyms for xxiv", "clues": ["24", "twenty-four", "XXIV", "two dozen"]}, {"answer": "yankee", "hint": "synonyms for yankee", "clues": ["Yank", "Yankee", "Northerner", "Yankee-Doodle", "New Englander"]}, {"answer": "yielding", "hint": "synonyms for yielding", "clues": ["surrender", "giving up", "concession", "conceding", "yielding"]}, {"answer": "young", "hint": "synonyms for young", "clues": ["Whitney Moore Young Jr.", "Brigham Young", "Edward Young", "Whitney Young", "Loretta Young", "Young", "Thomas Young", "Pres Young", "Lester Willis Young", "youth", "Danton True Young", "Cy Young"]}, {"answer": "zany", "hint": "synonyms for zany", "clues": ["fathead", "jackass", "goofball", "goose", "goof", "bozo", "cuckoo", "twat", "zany"]}, {"answer": "zero", "hint": "synonyms for zero", "clues": ["nought", "nothing", "null", "zip", "cipher", "aught", "nada", "nil", "0", "zero point", "cypher", "nix", "goose egg", "zippo", "zilch", "zero"]}, {"answer": "zygomatic", "hint": "synonyms for zygomatic", "clues": ["cheekbone", "zygomatic bone", "jugal bone", "malar bone", "os zygomaticum", "malar", "zygomatic"]}, {"answer": "ad", "hint": "synonyms for ad", "clues": ["advertisement", "advertising", "advert", "ad"]}, {"answer": "as", "hint": "synonyms for as", "clues": ["vitamin A", "angstrom unit", "amp", "type A", "deoxyadenosine monophosphate", "American Samoa", "adenine", "a", "ampere", "arsenic", "axerophthol", "group A", "antiophthalmic factor", "angstrom", "atomic number 33", "Eastern Samoa"]}, {"answer": "aside", "hint": "synonyms for aside", "clues": ["parenthesis", "digression", "excursus", "divagation", "aside"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["blast", "strike", "eruption", "clap", "rush", "smasher", "fringe", "flush", "knock", "bash", "charge", "thrill", "belt", "hit", "smash", "boot", "bam", "kick", "bang"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["deadbolt", "bolt of lightning", "dash", "thunderbolt", "bolt"]}, {"answer": "cf", "hint": "synonyms for cf", "clues": ["mucoviscidosis", "CF", "fibrocystic disease of the pancreas", "californium", "pancreatic fibrosis", "atomic number 98", "cystic fibrosis"]}, {"answer": "con", "hint": "synonyms for con", "clues": ["inmate", "confidence trick", "con game", "bunko game", "flimflam", "yard bird", "convict", "bunco", "gyp", "sting", "confidence game", "bunko", "hustle", "con"]}, {"answer": "course", "hint": "synonyms for course", "clues": ["trend", "form", "course of action", "course of instruction", "line", "class", "row", "grade", "course of study", "path", "track", "course"]}, {"answer": "crossways", "hint": "synonyms for crossways", "clues": ["intersection", "crossroad", "carrefour", "crossway", "crossing"]}, {"answer": "eastwards", "hint": "synonyms for eastwards", "clues": ["eastward", "E", "east", "due east"]}, {"answer": "flop", "hint": "synonyms for flop", "clues": ["dud", "collapse", "fizzle", "bust", "washout", "floating-point operation", "flop"]}, {"answer": "heaps", "hint": "synonyms for heaps", "clues": ["mint", "peck", "quite a little", "tons", "deal", "mountain", "gobs", "rafts", "jalopy", "stack", "lot", "slews", "cumulation", "batch", "mess", "wads", "plenty", "sight", "muckle", "agglomerate", "mickle", "mass", "cumulus", "loads", "piles", "great deal", "mound", "hatful", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "bus", "scads", "scores", "heap", "flock"]}, {"answer": "heart_and_soul", "hint": "synonyms for heart and soul", "clues": ["marrow", "core", "inwardness", "gist", "essence", "sum", "centre", "meat", "nitty-gritty", "center", "kernel", "nub", "substance", "heart", "pith", "heart and soul"]}, {"answer": "hereafter", "hint": "synonyms for hereafter", "clues": ["afterlife", "futurity", "future", "time to come", "hereafter"]}, {"answer": "item", "hint": "synonyms for item", "clues": ["detail", "particular", "token", "point", "item"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["mint", "peck", "quite a little", "tons", "deal", "mountain", "circle", "gobs", "rafts", "portion", "draw", "destiny", "stack", "caboodle", "lot", "slews", "heaps", "batch", "mess", "wads", "plenty", "sight", "muckle", "mickle", "mass", "loads", "circumstances", "piles", "great deal", "hatful", "bunch", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "luck", "scads", "set", "fate", "band", "fortune", "scores", "flock"]}, {"answer": "needs", "hint": "synonyms for needs", "clues": ["need", "motivation", "penury", "pauperization", "want", "demand", "motive", "pauperism", "indigence"]}, {"answer": "northwards", "hint": "synonyms for northwards", "clues": ["due north", "northward", "N", "north"]}, {"answer": "nothing", "hint": "synonyms for nothing", "clues": ["null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zippo", "zilch", "nothing"]}, {"answer": "p.a.", "hint": "synonyms for p.a.", "clues": ["PA system", "PA", "public address system", "P.A."]}, {"answer": "part", "hint": "synonyms for part", "clues": ["role", "percentage", "region", "component", "division", "portion", "voice", "character", "parting", "section", "function", "piece", "theatrical role", "constituent", "contribution", "component part", "office", "persona", "share"]}, {"answer": "plenty", "hint": "synonyms for plenty", "clues": ["great deal", "flock", "mint", "peck", "quite a little", "plenteousness", "hatful", "deal", "mountain", "pot", "plentifulness", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "sight", "plenitude", "muckle", "wad", "heap", "mickle", "plenty"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["flavour", "nip", "nose drops", "sapidity", "relish", "savor", "hell dust", "slap", "thunder", "tang", "skag", "scag", "big H", "smooch", "smacking"]}, {"answer": "smash", "hint": "synonyms for smash", "clues": ["belt", "strike", "smasher", "overhead", "hit", "knock", "bash", "bang", "crash", "smash-up", "smash"]}, {"answer": "soaking", "hint": "synonyms for soaking", "clues": ["soakage", "soak", "souse", "drenching", "sousing"]}, {"answer": "southwards", "hint": "synonyms for southwards", "clues": ["due south", "south", "southward", "S"]}, {"answer": "vis-a-vis", "hint": "synonyms for vis-a-vis", "clues": ["loveseat", "opposite number", "tete-a-tete", "counterpart", "vis-a-vis"]}, {"answer": "viva_voce", "hint": "synonyms for viva voce", "clues": ["oral examination", "oral exam", "oral", "viva", "viva voce"]}, {"answer": "way", "hint": "synonyms for way", "clues": ["means", "style", "room", "way of life", "manner", "mode", "path", "fashion", "agency", "elbow room", "direction", "way"]}, {"answer": "westwards", "hint": "synonyms for westwards", "clues": ["westward", "due west", "W", "west"]}, {"answer": "1st_baron_verulam", "hint": "synonyms for 1st baron verulam", "clues": ["Francis Bacon", "Bacon", "Viscount St. Albans", "Baron Verulam"]}, {"answer": "1st_earl_attlee", "hint": "synonyms for 1st earl attlee", "clues": ["Clement Attlee", "1st Earl Attlee", "Attlee", "Clement Richard Attlee"]}, {"answer": "24-hour_interval", "hint": "synonyms for 24-hour interval", "clues": ["mean solar day", "day", "twenty-four hours", "solar day", "twenty-four hour period", "24-hour interval"]}, {"answer": "3rd_october_organization", "hint": "synonyms for 3rd october organization", "clues": ["3rd October Organization", "ASALA", "Armenian Secret Army for the Liberation of Armenia", "Orly Group"]}, {"answer": "9-11", "hint": "synonyms for 9-11", "clues": ["Sept. 11", "September 11", "9/11", "9-11"]}, {"answer": "9/11", "hint": "synonyms for 9/11", "clues": ["Sept. 11", "September 11", "9-11", "9/11"]}, {"answer": "a", "hint": "synonyms for a", "clues": ["vitamin A", "angstrom unit", "group A", "antiophthalmic factor", "amp", "type A", "deoxyadenosine monophosphate", "angstrom", "adenine", "A", "ampere", "axerophthol"]}, {"answer": "a-bomb", "hint": "synonyms for a-bomb", "clues": ["fission bomb", "atom bomb", "plutonium bomb", "A-bomb"]}, {"answer": "a._a._michelson", "hint": "synonyms for a. a. michelson", "clues": ["Albert Michelson", "A. A. Michelson", "Michelson", "Albert Abraham Michelson"]}, {"answer": "aas", "hint": "synonyms for aas", "clues": ["Alcoholics Anonymous", "AAS", "Associate in Arts", "Associate in Applied Science"]}, {"answer": "aave", "hint": "synonyms for aave", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "ab", "hint": "synonyms for ab", "clues": ["AB", "group AB", "abdominal", "Artium Baccalaurens", "BA", "Av", "type AB", "Bachelor of Arts", "abdominal muscle"]}, {"answer": "abatement", "hint": "synonyms for abatement", "clues": ["suspension", "hiatus", "respite", "reprieve", "abatement"]}, {"answer": "abb", "hint": "synonyms for abb", "clues": ["RPA-ABB", "ABB", "Revolutionary Proletarian Army", "Alex Boncayao Brigade"]}, {"answer": "abc", "hint": "synonyms for abc", "clues": ["ABC", "first principle", "rudiment", "first rudiment", "ABC's", "alphabet"]}, {"answer": "abc's", "hint": "synonyms for abc's", "clues": ["ABC", "first principle", "rudiment", "first rudiment", "ABC's", "alphabet"]}, {"answer": "abcs", "hint": "synonyms for abcs", "clues": ["rudiment", "ABC's", "ABC", "first principle", "first rudiment", "alphabet"]}, {"answer": "abdomen", "hint": "synonyms for abdomen", "clues": ["belly", "abdominal cavity", "venter", "stomach", "abdomen"]}, {"answer": "abdominal_delivery", "hint": "synonyms for abdominal delivery", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "C-section", "abdominal delivery"]}, {"answer": "abducens", "hint": "synonyms for abducens", "clues": ["nervus abducens", "abducent nerve", "abducent", "sixth cranial nerve"]}, {"answer": "abducens_nerve", "hint": "synonyms for abducens nerve", "clues": ["nervus abducens", "abducent nerve", "abducent", "sixth cranial nerve"]}, {"answer": "abducent_nerve", "hint": "synonyms for abducent nerve", "clues": ["nervus abducens", "abducent", "abducens nerve", "sixth cranial nerve"]}, {"answer": "abductor", "hint": "synonyms for abductor", "clues": ["abductor muscle", "kidnaper", "snatcher", "abductor"]}, {"answer": "aberration", "hint": "synonyms for aberration", "clues": ["aberrance", "deviance", "distortion", "optical aberration", "aberration"]}, {"answer": "abhorrence", "hint": "synonyms for abhorrence", "clues": ["odium", "loathing", "abomination", "execration", "detestation", "abhorrence"]}, {"answer": "abidance", "hint": "synonyms for abidance", "clues": ["compliance", "conformation", "residence", "conformity", "abidance"]}, {"answer": "abnegation", "hint": "synonyms for abnegation", "clues": ["self-abnegation", "self-denial", "denial", "self-renunciation", "abnegation"]}, {"answer": "abnormality", "hint": "synonyms for abnormality", "clues": ["irregularity", "mental defectiveness", "abnormalcy", "freakishness"]}, {"answer": "abo", "hint": "synonyms for abo", "clues": ["native Australian", "Australian Aborigine", "Abo", "Aborigine", "Aboriginal"]}, {"answer": "abode", "hint": "synonyms for abode", "clues": ["habitation", "home", "residence", "dwelling house", "domicile", "dwelling", "abode"]}, {"answer": "abomination", "hint": "synonyms for abomination", "clues": ["abhorrence", "odium", "loathing", "execration", "detestation", "abomination"]}, {"answer": "abor", "hint": "synonyms for abor", "clues": ["Mirish", "Miri", "Dafla", "Abor"]}, {"answer": "aborigine", "hint": "synonyms for aborigine", "clues": ["indigene", "native Australian", "Abo", "native", "Aborigine", "Aboriginal", "Australian Aborigine"]}, {"answer": "about-face", "hint": "synonyms for about-face", "clues": ["reversal", "policy change", "about turn", "volte-face", "about-face"]}, {"answer": "abraham_lincoln", "hint": "synonyms for abraham lincoln", "clues": ["President Abraham Lincoln", "President Lincoln", "Lincoln", "Abraham Lincoln"]}, {"answer": "abrasion", "hint": "synonyms for abrasion", "clues": ["excoriation", "detrition", "scratch", "grinding", "scrape", "corrasion", "attrition", "abrasion"]}, {"answer": "abruptness", "hint": "synonyms for abruptness", "clues": ["precipitateness", "curtness", "shortness", "gruffness", "precipitance", "suddenness", "steepness", "precipitousness", "brusqueness", "abruptness"]}, {"answer": "abs", "hint": "synonyms for abs", "clues": ["AB", "group AB", "abdominal", "Artium Baccalaurens", "BA", "Av", "type AB", "acrylonitrile-butadiene-styrene", "Bachelor of Arts", "abdominal muscle"]}, {"answer": "absolutism", "hint": "synonyms for absolutism", "clues": ["one-man rule", "totalitarianism", "despotism", "authoritarianism", "monocracy", "Caesarism", "Stalinism", "shogunate", "totalism", "tyranny", "dictatorship", "absolutism"]}, {"answer": "absorption", "hint": "synonyms for absorption", "clues": ["assimilation", "engrossment", "immersion", "preoccupation", "soaking up", "concentration", "preoccupancy", "absorption"]}, {"answer": "abstraction", "hint": "synonyms for abstraction", "clues": ["abstract", "generalization", "abstractedness", "abstract entity", "abstraction"]}, {"answer": "abstruseness", "hint": "synonyms for abstruseness", "clues": ["profundity", "obscurity", "reconditeness", "abstrusity", "obscureness", "profoundness", "abstruseness"]}, {"answer": "abstrusity", "hint": "synonyms for abstrusity", "clues": ["profundity", "reconditeness", "abstruseness", "profoundness", "abstrusity"]}, {"answer": "absurdity", "hint": "synonyms for absurdity", "clues": ["ridiculousness", "silliness", "fatuity", "fatuousness", "absurdness", "absurdity"]}, {"answer": "abu_nidal_organization", "hint": "synonyms for abu nidal organization", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "abuse", "hint": "synonyms for abuse", "clues": ["ill-usage", "ill-treatment", "vilification", "misuse", "revilement", "maltreatment", "insult", "contumely", "abuse"]}, {"answer": "abyssinia", "hint": "synonyms for abyssinia", "clues": ["Ethiopia", "Yaltopya", "Abyssinia", "Federal Democratic Republic of Ethiopia"]}, {"answer": "ac", "hint": "synonyms for ac", "clues": ["AC", "actinium", "atomic number 89", "alternating electric current", "alternating current"]}, {"answer": "acaroid_resin", "hint": "synonyms for acaroid resin", "clues": ["gum accroides", "accroides resin", "accroides", "accroides gum"]}, {"answer": "accaroid_resin", "hint": "synonyms for accaroid resin", "clues": ["gum accroides", "accroides resin", "accroides gum", "accroides"]}, {"answer": "accelerator", "hint": "synonyms for accelerator", "clues": ["throttle", "atom smasher", "catalyst", "accelerator pedal", "gun", "particle accelerator", "gas pedal", "throttle valve", "gas", "accelerator"]}, {"answer": "accelerator_pedal", "hint": "synonyms for accelerator pedal", "clues": ["throttle", "accelerator", "gun", "gas pedal", "gas", "accelerator pedal"]}, {"answer": "accent", "hint": "synonyms for accent", "clues": ["speech pattern", "dialect", "stress", "emphasis", "accent mark", "idiom", "accent"]}, {"answer": "acceptance", "hint": "synonyms for acceptance", "clues": ["credence", "adoption", "acceptation", "sufferance", "banker's acceptance", "toleration", "espousal", "acceptance"]}, {"answer": "acceptation", "hint": "synonyms for acceptation", "clues": ["word sense", "adoption", "acceptance", "word meaning", "espousal", "acceptation"]}, {"answer": "acceptor_rna", "hint": "synonyms for acceptor rna", "clues": ["acceptor RNA", "tRNA", "transfer RNA", "soluble RNA"]}, {"answer": "access", "hint": "synonyms for access", "clues": ["access code", "admission", "entree", "accession", "memory access", "approach", "admittance", "access"]}, {"answer": "accessibility", "hint": "synonyms for accessibility", "clues": ["approachability", "availability", "availableness", "handiness", "accessibility"]}, {"answer": "accession", "hint": "synonyms for accession", "clues": ["assenting", "admission", "entree", "rise to power", "addition", "access", "admittance", "accession"]}, {"answer": "accho", "hint": "synonyms for accho", "clues": ["Accho", "Akko", "Acre", "Akka"]}, {"answer": "acclaim", "hint": "synonyms for acclaim", "clues": ["plaudits", "acclamation", "eclat", "acclaim"]}, {"answer": "acclamation", "hint": "synonyms for acclamation", "clues": ["acclaim", "plaudit", "eclat", "acclamation"]}, {"answer": "acclivity", "hint": "synonyms for acclivity", "clues": ["rise", "ascent", "climb", "upgrade", "acclivity"]}, {"answer": "accolade", "hint": "synonyms for accolade", "clues": ["award", "honor", "laurels", "accolade"]}, {"answer": "accompaniment", "hint": "synonyms for accompaniment", "clues": ["support", "backup", "escort", "co-occurrence", "complement", "musical accompaniment", "concomitant", "attendant", "accompaniment"]}, {"answer": "accomplishment", "hint": "synonyms for accomplishment", "clues": ["achievement", "acquirement", "acquisition", "attainment", "skill", "accomplishment"]}, {"answer": "accord", "hint": "synonyms for accord", "clues": ["accordance", "pact", "conformity", "treaty", "agreement", "accord"]}, {"answer": "account", "hint": "synonyms for account", "clues": ["invoice", "news report", "write up", "chronicle", "report", "story", "bill", "business relationship", "score", "accounting", "explanation", "account statement", "history"]}, {"answer": "account_book", "hint": "synonyms for account book", "clues": ["leger", "book", "book of account", "account book"]}, {"answer": "account_executive", "hint": "synonyms for account executive", "clues": ["customer's man", "account representative", "registered representative", "customer's broker", "account executive"]}, {"answer": "account_representative", "hint": "synonyms for account representative", "clues": ["customer's man", "registered representative", "account executive", "customer's broker", "account representative"]}, {"answer": "accounting", "hint": "synonyms for accounting", "clues": ["accounting system", "accountancy", "account", "account statement", "method of accounting"]}, {"answer": "accroides", "hint": "synonyms for accroides", "clues": ["gum accroides", "accroides resin", "accroides gum", "accroides"]}, {"answer": "accroides_gum", "hint": "synonyms for accroides gum", "clues": ["gum accroides", "accroides resin", "accroides", "accroides gum"]}, {"answer": "accroides_resin", "hint": "synonyms for accroides resin", "clues": ["gum accroides", "accroides gum", "accroides", "acaroid resin"]}, {"answer": "acculturation", "hint": "synonyms for acculturation", "clues": ["enculturation", "socialization", "assimilation", "culture", "acculturation"]}, {"answer": "accumulation", "hint": "synonyms for accumulation", "clues": ["accretion", "collection", "assemblage", "aggregation", "accruement", "accrual", "accumulation"]}, {"answer": "accumulator", "hint": "synonyms for accumulator", "clues": ["gatherer", "collector", "accumulator register", "storage battery", "accumulator"]}, {"answer": "acerbity", "hint": "synonyms for acerbity", "clues": ["acrimony", "tartness", "bitterness", "jaundice", "thorniness", "acerbity"]}, {"answer": "acetaminophen", "hint": "synonyms for acetaminophen", "clues": ["Tempra", "Anacin III", "Phenaphen", "Tylenol", "Datril", "Panadol", "acetaminophen"]}, {"answer": "acetyl", "hint": "synonyms for acetyl", "clues": ["ethanoyl group", "ethanoyl radical", "acetyl group", "acetyl radical", "acetyl"]}, {"answer": "acetyl_group", "hint": "synonyms for acetyl group", "clues": ["ethanoyl group", "ethanoyl radical", "acetyl", "acetyl radical", "acetyl group"]}, {"answer": "acetyl_radical", "hint": "synonyms for acetyl radical", "clues": ["ethanoyl group", "ethanoyl radical", "acetyl", "acetyl group", "acetyl radical"]}, {"answer": "acetylsalicylic_acid", "hint": "synonyms for acetylsalicylic acid", "clues": ["St. Joseph", "Bayer", "aspirin", "Empirin", "acetylsalicylic acid"]}, {"answer": "achromasia", "hint": "synonyms for achromasia", "clues": ["wanness", "lividness", "pallor", "luridness", "lividity", "paleness", "pallidness", "achromasia"]}, {"answer": "ack-ack", "hint": "synonyms for ack-ack", "clues": ["flak", "pom-pom", "antiaircraft gun", "ack-ack gun", "ack-ack"]}, {"answer": "ack-ack_gun", "hint": "synonyms for ack-ack gun", "clues": ["flak", "pom-pom", "ack-ack", "antiaircraft gun", "ack-ack gun"]}, {"answer": "acknowledgment", "hint": "synonyms for acknowledgment", "clues": ["mention", "credit", "citation", "acknowledgement", "recognition", "cite", "reference", "quotation"]}, {"answer": "acme", "hint": "synonyms for acme", "clues": ["height", "peak", "meridian", "vertex", "summit", "tiptop", "top", "apex", "superlative", "pinnacle", "elevation", "acme"]}, {"answer": "acoustic_meatus", "hint": "synonyms for acoustic meatus", "clues": ["ear canal", "auditory canal", "auditory meatus", "external auditory canal", "acoustic meatus"]}, {"answer": "acoustic_nerve", "hint": "synonyms for acoustic nerve", "clues": ["eighth cranial nerve", "nervus vestibulocochlearis", "vestibulocochlear nerve", "auditory nerve", "acoustic nerve"]}, {"answer": "acquaintance", "hint": "synonyms for acquaintance", "clues": ["friend", "familiarity", "conversancy", "acquaintanceship"]}, {"answer": "acquired_reflex", "hint": "synonyms for acquired reflex", "clues": ["conditioned response", "conditional reaction", "conditioned reflex", "acquired reflex"]}, {"answer": "acquirement", "hint": "synonyms for acquirement", "clues": ["acquisition", "accomplishment", "attainment", "skill", "acquirement"]}, {"answer": "acquisition", "hint": "synonyms for acquisition", "clues": ["learning", "acquirement", "accomplishment", "attainment", "skill", "acquisition"]}, {"answer": "acre", "hint": "synonyms for acre", "clues": ["Accho", "Acre", "Akko", "Akka"]}, {"answer": "acres", "hint": "synonyms for acres", "clues": ["landed estate", "estate", "acre", "Akka", "Accho", "demesne", "land", "Akko"]}, {"answer": "acrimony", "hint": "synonyms for acrimony", "clues": ["bitterness", "tartness", "jaundice", "thorniness", "acerbity", "acrimony"]}, {"answer": "acrobatics", "hint": "synonyms for acrobatics", "clues": ["stunting", "aerobatics", "tumbling", "stunt flying"]}, {"answer": "acrylic", "hint": "synonyms for acrylic", "clues": ["acrylate resin", "acrylic paint", "acrylic resin", "acrylic fiber", "acrylic"]}, {"answer": "act", "hint": "synonyms for act", "clues": ["enactment", "routine", "number", "bit", "human action", "human activity", "turn", "deed", "act"]}, {"answer": "act_of_god", "hint": "synonyms for act of god", "clues": ["unavoidable casualty", "vis major", "inevitable accident", "force majeure", "act of God"]}, {"answer": "acth", "hint": "synonyms for acth", "clues": ["ACTH", "adrenocorticotropic hormone", "adrenocorticotrophin", "corticotrophin"]}, {"answer": "actinotherapy", "hint": "synonyms for actinotherapy", "clues": ["radiotherapy", "irradiation", "radiation therapy", "actinotherapy"]}, {"answer": "action", "hint": "synonyms for action", "clues": ["natural action", "natural process", "legal action", "activity", "military action", "activeness", "action at law", "action mechanism", "action"]}, {"answer": "activity", "hint": "synonyms for activity", "clues": ["natural action", "bodily process", "natural process", "bodily function", "activeness", "action", "activity"]}, {"answer": "actor", "hint": "synonyms for actor", "clues": ["histrion", "worker", "role player", "thespian", "player", "doer", "actor"]}, {"answer": "acts", "hint": "synonyms for acts", "clues": ["Acts of the Apostles", "enactment", "routine", "act", "number", "bit", "human action", "human activity", "turn", "deed"]}, {"answer": "acuity", "hint": "synonyms for acuity", "clues": ["acuteness", "visual acuity", "sharp-sightedness", "sharpness", "keenness", "acuity"]}, {"answer": "adam", "hint": "synonyms for adam", "clues": ["go", "Adam", "ecstasy", "hug drug", "XTC", "Robert Adam", "disco biscuit", "cristal", "X"]}, {"answer": "adams", "hint": "synonyms for adams", "clues": ["go", "Adam", "Sam Adams", "John Quincy Adams", "hug drug", "Robert Adam", "President John Quincy Adams", "President Adams", "disco biscuit", "ecstasy", "XTC", "Mount Adams", "cristal", "X", "John Adams"]}, {"answer": "adams-stokes_syndrome", "hint": "synonyms for adams-stokes syndrome", "clues": ["heart block", "Adams-Stokes syndrome", "atrioventricular block", "Stokes-Adams syndrome"]}, {"answer": "adapin", "hint": "synonyms for adapin", "clues": ["doxepin hydrochloride", "Sinequan", "doxepin", "Adapin"]}, {"answer": "add", "hint": "synonyms for add", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "MBD", "minimal brain dysfunction", "ADHD", "minimal brain damage", "hyperkinetic syndrome"]}, {"answer": "add-in", "hint": "synonyms for add-in", "clues": ["circuit board", "card", "board", "plug-in", "add-in"]}, {"answer": "add-on", "hint": "synonyms for add-on", "clues": ["appurtenance", "supplement", "improver", "addition", "accessory", "add-on"]}, {"answer": "addict", "hint": "synonyms for addict", "clues": ["junkie", "junky", "nut", "freak", "addict"]}, {"answer": "addison's_disease", "hint": "synonyms for addison's disease", "clues": ["Addison's disease", "hypoadrenocorticism", "hypoadrenalism", "Addison's syndrome"]}, {"answer": "addison's_syndrome", "hint": "synonyms for addison's syndrome", "clues": ["Addison's disease", "hypoadrenocorticism", "hypoadrenalism", "Addison's syndrome"]}, {"answer": "addition", "hint": "synonyms for addition", "clues": ["gain", "accession", "improver", "plus", "increase", "summation", "add-on", "addition"]}, {"answer": "address", "hint": "synonyms for address", "clues": ["computer address", "speech", "reference", "name and address", "destination", "savoir-faire", "address"]}, {"answer": "adenomyosarcoma", "hint": "synonyms for adenomyosarcoma", "clues": ["nephroblastoma", "Wilms' tumor", "embryoma of the kidney", "adenomyosarcoma"]}, {"answer": "adeptness", "hint": "synonyms for adeptness", "clues": ["quickness", "adroitness", "facility", "deftness", "adeptness"]}, {"answer": "ader_wax", "hint": "synonyms for ader wax", "clues": ["ozocerite", "mineral wax", "earth wax", "ader wax"]}, {"answer": "adermin", "hint": "synonyms for adermin", "clues": ["pyridoxine", "pyridoxal", "vitamin B6", "adermin"]}, {"answer": "adh", "hint": "synonyms for adh", "clues": ["antidiuretic hormone", "vasopressin", "ADH", "Pitressin"]}, {"answer": "adhd", "hint": "synonyms for adhd", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "MBD", "minimal brain dysfunction", "ADHD", "minimal brain damage", "hyperkinetic syndrome"]}, {"answer": "adherence", "hint": "synonyms for adherence", "clues": ["adhesiveness", "attachment", "bond", "adhesion", "adherence"]}, {"answer": "adhesion", "hint": "synonyms for adhesion", "clues": ["adherence", "adhesiveness", "attachment", "bond", "adhesion"]}, {"answer": "adieu", "hint": "synonyms for adieu", "clues": ["good-bye", "cheerio", "good day", "so long", "arrivederci", "au revoir", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "adieu"]}, {"answer": "adios", "hint": "synonyms for adios", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "bye-bye", "bye", "adios"]}, {"answer": "adjustment", "hint": "synonyms for adjustment", "clues": ["adaption", "accommodation", "registration", "alteration", "fitting", "modification", "readjustment", "allowance"]}, {"answer": "administration", "hint": "synonyms for administration", "clues": ["brass", "presidency", "disposal", "organisation", "establishment", "giving medication", "presidential term", "government activity", "governing", "governing body", "judicature", "government", "governance", "administration"]}, {"answer": "admiral_byrd", "hint": "synonyms for admiral byrd", "clues": ["Richard E. Byrd", "Richard Evelyn Byrd", "Admiral Byrd", "Byrd"]}, {"answer": "admiral_nelson", "hint": "synonyms for admiral nelson", "clues": ["Viscount Nelson", "Admiral Nelson", "Lord Nelson", "Horatio Nelson", "Nelson"]}, {"answer": "admiral_nimitz", "hint": "synonyms for admiral nimitz", "clues": ["Nimitz", "Admiral Nimitz", "Chester William Nimitz", "Chester Nimitz"]}, {"answer": "admiralty_brass", "hint": "synonyms for admiralty brass", "clues": ["Admiralty Metal", "naval brass", "Admiralty brass", "Tobin bronze"]}, {"answer": "admiralty_metal", "hint": "synonyms for admiralty metal", "clues": ["Admiralty Metal", "naval brass", "Admiralty brass", "Tobin bronze"]}, {"answer": "admiralty_mile", "hint": "synonyms for admiralty mile", "clues": ["mile", "mi", "nautical mile", "Admiralty mile", "naut mi", "geographical mile"]}, {"answer": "admiration", "hint": "synonyms for admiration", "clues": ["wonder", "wonderment", "appreciation", "esteem", "admiration"]}, {"answer": "admirer", "hint": "synonyms for admirer", "clues": ["protagonist", "supporter", "booster", "adorer", "friend", "champion", "admirer"]}, {"answer": "admission", "hint": "synonyms for admission", "clues": ["entrance money", "entree", "admission charge", "accession", "admission fee", "access", "price of admission", "admission price", "entrance fee", "admittance", "admission"]}, {"answer": "admission_charge", "hint": "synonyms for admission charge", "clues": ["entrance money", "admission", "entrance fee", "admission price", "admission fee", "price of admission", "admission charge"]}, {"answer": "admission_fee", "hint": "synonyms for admission fee", "clues": ["entrance money", "admission", "admission charge", "entrance fee", "admission price", "price of admission", "admission fee"]}, {"answer": "admission_price", "hint": "synonyms for admission price", "clues": ["entrance money", "admission", "admission charge", "entrance fee", "admission fee", "price of admission", "admission price"]}, {"answer": "admittance", "hint": "synonyms for admittance", "clues": ["admission", "entree", "accession", "access", "admittance"]}, {"answer": "admixture", "hint": "synonyms for admixture", "clues": ["mixture", "alloy", "mixing", "commixture", "intermixture"]}, {"answer": "admonition", "hint": "synonyms for admonition", "clues": ["warning", "monition", "word of advice", "admonishment"]}, {"answer": "ado", "hint": "synonyms for ado", "clues": ["hustle", "stir", "bustle", "fuss", "flurry", "ado"]}, {"answer": "adoption", "hint": "synonyms for adoption", "clues": ["espousal", "borrowing", "acceptance", "acceptation", "adoption"]}, {"answer": "adoration", "hint": "synonyms for adoration", "clues": ["latria", "idolisation", "worship", "adoration"]}, {"answer": "adp_system", "hint": "synonyms for adp system", "clues": ["computer system", "computing system", "ADP system", "ADPS", "automatic data processing system"]}, {"answer": "adps", "hint": "synonyms for adps", "clues": ["ADPS", "automatic data processing system", "computer system", "computing system", "ADP system", "adenosine diphosphate"]}, {"answer": "adrenocorticotrophic_hormone", "hint": "synonyms for adrenocorticotrophic hormone", "clues": ["ACTH", "adrenocorticotropic hormone", "adrenocorticotrophin", "corticotrophin"]}, {"answer": "adrenocorticotrophin", "hint": "synonyms for adrenocorticotrophin", "clues": ["ACTH", "adrenocorticotropic hormone", "corticotrophin", "adrenocorticotropin"]}, {"answer": "adrenocorticotropic_hormone", "hint": "synonyms for adrenocorticotropic hormone", "clues": ["ACTH", "adrenocorticotrophin", "corticotrophin", "adrenocorticotrophic hormone"]}, {"answer": "adrenocorticotropin", "hint": "synonyms for adrenocorticotropin", "clues": ["ACTH", "adrenocorticotropic hormone", "adrenocorticotrophin", "corticotrophin"]}, {"answer": "adrian", "hint": "synonyms for adrian", "clues": ["Baron Adrian", "Hadrian", "Publius Aelius Hadrianus", "Edgar Douglas Adrian"]}, {"answer": "adroitness", "hint": "synonyms for adroitness", "clues": ["quickness", "facility", "deftness", "adeptness", "adroitness"]}, {"answer": "adult-onset_diabetes", "hint": "synonyms for adult-onset diabetes", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes", "adult-onset diabetes"]}, {"answer": "adult-onset_diabetes_mellitus", "hint": "synonyms for adult-onset diabetes mellitus", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "adulteress", "hint": "synonyms for adulteress", "clues": ["strumpet", "slut", "hussy", "loose woman", "trollop", "jade", "fornicatress", "adulteress"]}, {"answer": "advancement", "hint": "synonyms for advancement", "clues": ["onward motion", "promotion", "furtherance", "advance", "progress", "procession", "advancement"]}, {"answer": "advantageousness", "hint": "synonyms for advantageousness", "clues": ["positiveness", "favorableness", "positivity", "profitableness", "advantageousness"]}, {"answer": "advent", "hint": "synonyms for advent", "clues": ["Parousia", "coming", "Second Advent", "Second Coming", "Second Coming of Christ", "Advent"]}, {"answer": "adversary", "hint": "synonyms for adversary", "clues": ["opposer", "antagonist", "opponent", "resister", "adversary"]}, {"answer": "advert", "hint": "synonyms for advert", "clues": ["advertisement", "advertising", "ad", "advert"]}, {"answer": "advertisement", "hint": "synonyms for advertisement", "clues": ["advertising", "ad", "advert", "advertizement"]}, {"answer": "advertising", "hint": "synonyms for advertising", "clues": ["advertisement", "advert", "ad", "advertizing", "publicizing"]}, {"answer": "advertizement", "hint": "synonyms for advertizement", "clues": ["advertisement", "advertising", "advert", "ad"]}, {"answer": "advertizing", "hint": "synonyms for advertizing", "clues": ["advertisement", "advertising", "advert", "ad"]}, {"answer": "advil", "hint": "synonyms for advil", "clues": ["Nuprin", "isobutylphenyl propionic acid", "ibuprofen", "Advil", "Motrin"]}, {"answer": "advocate", "hint": "synonyms for advocate", "clues": ["proponent", "advocator", "pleader", "counsel", "counselor-at-law", "counsellor", "exponent", "advocate"]}, {"answer": "aegadean_islands", "hint": "synonyms for aegadean islands", "clues": ["Aegadean Isles", "Aegates", "Egadi Islands", "Isole Egadi"]}, {"answer": "aegadean_isles", "hint": "synonyms for aegadean isles", "clues": ["Aegadean Isles", "Aegates", "Aegates Isles", "Egadi Islands", "Isole Egadi"]}, {"answer": "aegates", "hint": "synonyms for aegates", "clues": ["Aegadean Isles", "Aegates", "Egadi Islands", "Isole Egadi"]}, {"answer": "aegir", "hint": "synonyms for aegir", "clues": ["eagre", "tidal bore", "eager", "bore", "aegir"]}, {"answer": "aegis", "hint": "synonyms for aegis", "clues": ["auspices", "protection", "breastplate", "egis"]}, {"answer": "aerial_tramway", "hint": "synonyms for aerial tramway", "clues": ["ropeway", "cable tramway", "tram", "tramway", "aerial tramway"]}, {"answer": "aeroembolism", "hint": "synonyms for aeroembolism", "clues": ["gas embolism", "caisson disease", "air embolism", "decompression sickness", "bends", "aeroembolism"]}, {"answer": "aeronaut", "hint": "synonyms for aeronaut", "clues": ["flyer", "flier", "aviator", "airman", "aeronaut"]}, {"answer": "aerosol", "hint": "synonyms for aerosol", "clues": ["spray can", "aerosol can", "aerosol container", "aerosol bomb", "aerosol"]}, {"answer": "aerosol_bomb", "hint": "synonyms for aerosol bomb", "clues": ["aerosol", "fuel-air bomb", "volume-detonation bomb", "vacuum bomb", "thermobaric bomb", "spray can", "aerosol can", "aerosol container", "aerosol bomb"]}, {"answer": "aerosol_can", "hint": "synonyms for aerosol can", "clues": ["spray can", "aerosol bomb", "aerosol container", "aerosol", "aerosol can"]}, {"answer": "aerosol_container", "hint": "synonyms for aerosol container", "clues": ["spray can", "aerosol bomb", "aerosol can", "aerosol", "aerosol container"]}, {"answer": "aesthesis", "hint": "synonyms for aesthesis", "clues": ["sensation", "esthesis", "sense experience", "sense datum", "sense impression"]}, {"answer": "affability", "hint": "synonyms for affability", "clues": ["affableness", "geniality", "bonhomie", "amiability", "amiableness", "affability"]}, {"answer": "affableness", "hint": "synonyms for affableness", "clues": ["geniality", "bonhomie", "amiability", "amiableness", "affability", "affableness"]}, {"answer": "affair", "hint": "synonyms for affair", "clues": ["matter", "intimacy", "involvement", "occasion", "affaire", "thing", "liaison", "social function", "amour", "social occasion", "function"]}, {"answer": "affaire", "hint": "synonyms for affaire", "clues": ["affair", "liaison", "amour", "intimacy", "involvement"]}, {"answer": "affairs", "hint": "synonyms for affairs", "clues": ["matter", "amour", "intimacy", "involvement", "occasion", "thing", "affair", "liaison", "personal matters", "social function", "personal business", "social occasion", "function"]}, {"answer": "affection", "hint": "synonyms for affection", "clues": ["tenderness", "warmheartedness", "heart", "affectionateness", "philia", "fondness", "warmness", "affection"]}, {"answer": "affectionateness", "hint": "synonyms for affectionateness", "clues": ["warmth", "tenderness", "affection", "fondness", "warmheartedness", "heart", "philia", "lovingness", "warmness", "affectionateness"]}, {"answer": "affirmation", "hint": "synonyms for affirmation", "clues": ["statement", "avouchment", "avowal", "assertion", "affirmation"]}, {"answer": "affirmer", "hint": "synonyms for affirmer", "clues": ["asserter", "asseverator", "avower", "declarer", "affirmer"]}, {"answer": "affray", "hint": "synonyms for affray", "clues": ["disturbance", "fray", "fracas", "altercation", "ruffle", "affray"]}, {"answer": "aflaxen", "hint": "synonyms for aflaxen", "clues": ["naproxen sodium", "Anaprox", "Aleve", "Aflaxen"]}, {"answer": "afrasian", "hint": "synonyms for afrasian", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "afrasian_language", "hint": "synonyms for afrasian language", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "african_american_english", "hint": "synonyms for african american english", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "african_american_vernacular_english", "hint": "synonyms for african american vernacular english", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "african_tea", "hint": "synonyms for african tea", "clues": ["kat", "Arabian tea", "African tea", "quat", "cat"]}, {"answer": "afro-asiatic", "hint": "synonyms for afro-asiatic", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "afroasiatic", "hint": "synonyms for afroasiatic", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "afroasiatic_language", "hint": "synonyms for afroasiatic language", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "after_part", "hint": "synonyms for after part", "clues": ["stern", "poop", "quarter", "tail", "after part"]}, {"answer": "age", "hint": "synonyms for age", "clues": ["long time", "old age", "historic period", "geezerhood", "years", "eld", "age"]}, {"answer": "agency", "hint": "synonyms for agency", "clues": ["authority", "government agency", "representation", "means", "way", "federal agency", "delegacy", "office", "bureau", "agency"]}, {"answer": "agenda", "hint": "synonyms for agenda", "clues": ["order of business", "agendum", "docket", "schedule", "agenda"]}, {"answer": "agent", "hint": "synonyms for agent", "clues": ["agentive role", "federal agent", "factor", "broker", "agent"]}, {"answer": "aggravation", "hint": "synonyms for aggravation", "clues": ["provocation", "irritation", "exasperation", "exacerbation", "aggravation"]}, {"answer": "aggregation", "hint": "synonyms for aggregation", "clues": ["collection", "assemblage", "accumulation", "assembling", "aggregation"]}, {"answer": "agility", "hint": "synonyms for agility", "clues": ["lightness", "nimbleness", "lightsomeness", "legerity", "agility"]}, {"answer": "agitation", "hint": "synonyms for agitation", "clues": ["fermentation", "upheaval", "unrest", "hullabaloo", "ferment", "turmoil", "excitement", "tempestuousness", "agitation"]}, {"answer": "agony", "hint": "synonyms for agony", "clues": ["excruciation", "suffering", "torment", "torture", "agony"]}, {"answer": "agreement", "hint": "synonyms for agreement", "clues": ["concord", "accord", "understanding", "arrangement", "correspondence", "agreement"]}, {"answer": "agriculturalist", "hint": "synonyms for agriculturalist", "clues": ["raiser", "grower", "agriculturist", "cultivator"]}, {"answer": "agriculture", "hint": "synonyms for agriculture", "clues": ["factory farm", "Department of Agriculture", "agribusiness", "farming", "husbandry", "Agriculture", "USDA", "Agriculture Department"]}, {"answer": "agriculture_department", "hint": "synonyms for agriculture department", "clues": ["USDA", "Department of Agriculture", "Agriculture Department", "Agriculture"]}, {"answer": "agriculturist", "hint": "synonyms for agriculturist", "clues": ["raiser", "grower", "cultivator", "agriculturalist"]}, {"answer": "ai", "hint": "synonyms for ai", "clues": ["AI", "artificial insemination", "Army Intelligence", "artificial intelligence"]}, {"answer": "aid", "hint": "synonyms for aid", "clues": ["assist", "economic aid", "attention", "tending", "financial aid", "help", "assistance", "care", "aid"]}, {"answer": "aides", "hint": "synonyms for aides", "clues": ["adjutant", "Hades", "aide", "Pluto", "auxiliary", "aide-de-camp", "Aidoneus"]}, {"answer": "aidoneus", "hint": "synonyms for aidoneus", "clues": ["Pluto", "Aides", "Hades", "Aidoneus"]}, {"answer": "aids", "hint": "synonyms for aids", "clues": ["acquired immune deficiency syndrome", "economic aid", "financial aid", "help", "aid", "assist", "attention", "tending", "assistance", "care"]}, {"answer": "aim", "hint": "synonyms for aim", "clues": ["object", "target", "purpose", "objective", "design", "intent", "heading", "bearing", "intention", "aim"]}, {"answer": "air", "hint": "synonyms for air", "clues": ["airwave", "zephyr", "melodic phrase", "line", "air travel", "aviation", "tune", "strain", "aura", "atmosphere", "melody", "gentle wind", "melodic line", "breeze", "air"]}, {"answer": "air-sleeve", "hint": "synonyms for air-sleeve", "clues": ["wind cone", "wind sock", "air sock", "sock", "drogue", "wind sleeve", "air-sleeve"]}, {"answer": "air_castle", "hint": "synonyms for air castle", "clues": ["oneirism", "revery", "castle in Spain", "daydream", "castle in the air", "reverie", "air castle"]}, {"answer": "air_embolism", "hint": "synonyms for air embolism", "clues": ["caisson disease", "gas embolism", "decompression sickness", "aeroembolism", "bends", "air embolism"]}, {"answer": "air_force", "hint": "synonyms for air force", "clues": ["US Air Force", "United States Air Force", "airforce", "USAF"]}, {"answer": "air_mile", "hint": "synonyms for air mile", "clues": ["mile", "mi", "nautical mile", "naut mi", "knot", "international nautical mile", "air mile"]}, {"answer": "air_sock", "hint": "synonyms for air sock", "clues": ["wind cone", "wind sock", "sock", "drogue", "air-sleeve", "wind sleeve", "air sock"]}, {"answer": "airing", "hint": "synonyms for airing", "clues": ["spreading", "ventilation", "dissemination", "public exposure", "airing"]}, {"answer": "airman", "hint": "synonyms for airman", "clues": ["flyer", "flier", "aeronaut", "aviator", "airman"]}, {"answer": "airs", "hint": "synonyms for airs", "clues": ["pose", "airwave", "zephyr", "melodic phrase", "line", "air travel", "aviation", "tune", "strain", "aura", "atmosphere", "melody", "gentle wind", "air", "melodic line", "breeze"]}, {"answer": "airstream", "hint": "synonyms for airstream", "clues": ["race", "slipstream", "wash", "backwash", "airstream"]}, {"answer": "airway", "hint": "synonyms for airway", "clues": ["airline", "flight path", "respiratory tract", "airline business", "air duct", "skyway", "air lane", "air passage", "airway"]}, {"answer": "akka", "hint": "synonyms for akka", "clues": ["Accho", "Akko", "Acre", "Akka"]}, {"answer": "akko", "hint": "synonyms for akko", "clues": ["Accho", "Akko", "Acre", "Akka"]}, {"answer": "al", "hint": "synonyms for al", "clues": ["aluminium", "AL", "atomic number 13", "Alabama", "Camellia State", "Heart of Dixie"]}, {"answer": "al-hasan_ibn_al-haytham", "hint": "synonyms for al-hasan ibn al-haytham", "clues": ["Al-Hasan ibn al-Haytham", "al-Haytham", "Alhazen", "Ibn al-Haytham"]}, {"answer": "al-haytham", "hint": "synonyms for al-haytham", "clues": ["Al-Hasan ibn al-Haytham", "al-Haytham", "Alhazen", "Ibn al-Haytham"]}, {"answer": "al-iraq", "hint": "synonyms for al-iraq", "clues": ["Al-Iraq", "Iraq", "Republic of Iraq", "Irak"]}, {"answer": "al-jama'a_al-islamiyyah_al-muqatilah_bi-libya", "hint": "synonyms for al-jama'a al-islamiyyah al-muqatilah bi-libya", "clues": ["Libyan Fighting Group", "FIG", "Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya", "Libyan Islamic Fighting Group", "Libyan Islamic Group"]}, {"answer": "al-jihad", "hint": "synonyms for al-jihad", "clues": ["Islamic Jihad", "al-Jihad", "Egyptian Islamic Jihad", "Vanguards of Conquest"]}, {"answer": "al-magrib", "hint": "synonyms for al-magrib", "clues": ["Marruecos", "Morocco", "Al-Magrib", "Kingdom of Morocco", "Maroc"]}, {"answer": "al-qa'ida", "hint": "synonyms for al-qa'ida", "clues": ["al-Qa'ida", "al-Qaeda", "Qaeda", "Base"]}, {"answer": "al-qaeda", "hint": "synonyms for al-qaeda", "clues": ["al-Qa'ida", "al-Qaeda", "Qaeda", "Base"]}, {"answer": "al-qaida", "hint": "synonyms for al-qaida", "clues": ["al-Qa'ida", "al-Qaeda", "Qaeda", "Base"]}, {"answer": "al-qur'an", "hint": "synonyms for al-qur'an", "clues": ["Koran", "Book", "Quran", "al-Qur'an"]}, {"answer": "al_capone", "hint": "synonyms for al capone", "clues": ["Scarface", "Al Capone", "Capone", "Alphonse Capone"]}, {"answer": "al_faran", "hint": "synonyms for al faran", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "al_qahira", "hint": "synonyms for al qahira", "clues": ["Cairo", "Al Qahira", "capital of Egypt", "Egyptian capital"]}, {"answer": "alabama", "hint": "synonyms for alabama", "clues": ["AL", "Alabama River", "Heart of Dixie", "Alabama", "Camellia State"]}, {"answer": "alarm", "hint": "synonyms for alarm", "clues": ["warning signal", "alarum", "consternation", "alarm clock", "dismay", "warning device", "alert", "alarm system"]}, {"answer": "alastrim", "hint": "synonyms for alastrim", "clues": ["West Indian smallpox", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox", "alastrim"]}, {"answer": "albert_abraham_michelson", "hint": "synonyms for albert abraham michelson", "clues": ["Albert Michelson", "A. A. Michelson", "Michelson", "Albert Abraham Michelson"]}, {"answer": "albert_michelson", "hint": "synonyms for albert michelson", "clues": ["Albert Michelson", "A. A. Michelson", "Michelson", "Albert Abraham Michelson"]}, {"answer": "albumen", "hint": "synonyms for albumen", "clues": ["ovalbumin", "white", "egg white", "albumen"]}, {"answer": "alcohol", "hint": "synonyms for alcohol", "clues": ["inebriant", "intoxicant", "alcoholic beverage", "alcoholic drink", "alcohol"]}, {"answer": "alcohol_amnestic_disorder", "hint": "synonyms for alcohol amnestic disorder", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcoholic dementia", "alcohol amnestic disorder"]}, {"answer": "alcoholic_beverage", "hint": "synonyms for alcoholic beverage", "clues": ["alcohol", "inebriant", "intoxicant", "alcoholic drink", "alcoholic beverage"]}, {"answer": "alcoholic_dementia", "hint": "synonyms for alcoholic dementia", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia"]}, {"answer": "alcoholic_drink", "hint": "synonyms for alcoholic drink", "clues": ["alcohol", "inebriant", "intoxicant", "alcoholic beverage", "alcoholic drink"]}, {"answer": "alcoholism", "hint": "synonyms for alcoholism", "clues": ["potomania", "inebriation", "alcohol addiction", "dipsomania", "drunkenness", "alcoholism"]}, {"answer": "aleksey_maksimovich_peshkov", "hint": "synonyms for aleksey maksimovich peshkov", "clues": ["Aleksey Maximovich Peshkov", "Gorki", "Gorky", "Maksim Gorky", "Maxim Gorki"]}, {"answer": "aleksey_maximovich_peshkov", "hint": "synonyms for aleksey maximovich peshkov", "clues": ["Aleksey Maximovich Peshkov", "Gorki", "Gorky", "Maksim Gorky", "Maxim Gorki"]}, {"answer": "aleppo_boil", "hint": "synonyms for aleppo boil", "clues": ["Old World leishmaniasis", "tropical sore", "Aleppo boil", "cutaneous leishmaniasis", "oriental sore", "Delhi boil"]}, {"answer": "alertness", "hint": "synonyms for alertness", "clues": ["on the qui vive", "wakefulness", "vigilance", "watchfulness", "sharp-sightedness", "alerting", "alertness"]}, {"answer": "aleve", "hint": "synonyms for aleve", "clues": ["naproxen sodium", "Anaprox", "Aleve", "Aflaxen"]}, {"answer": "alex_boncayao_brigade", "hint": "synonyms for alex boncayao brigade", "clues": ["RPA-ABB", "ABB", "Revolutionary Proletarian Army", "Alex Boncayao Brigade"]}, {"answer": "alexander_selcraig", "hint": "synonyms for alexander selcraig", "clues": ["Selkirk", "Selcraig", "Alexander Selcraig", "Alexander Selkirk"]}, {"answer": "alexander_selkirk", "hint": "synonyms for alexander selkirk", "clues": ["Selkirk", "Selcraig", "Alexander Selcraig", "Alexander Selkirk"]}, {"answer": "alexander_vi", "hint": "synonyms for alexander vi", "clues": ["Borgia", "Pope Alexander VI", "Rodrigo Borgia", "Alexander VI"]}, {"answer": "alhacen", "hint": "synonyms for alhacen", "clues": ["Al-Hasan ibn al-Haytham", "al-Haytham", "Alhazen", "Ibn al-Haytham"]}, {"answer": "alhazen", "hint": "synonyms for alhazen", "clues": ["Al-Hasan ibn al-Haytham", "al-Haytham", "Alhazen", "Ibn al-Haytham"]}, {"answer": "ali", "hint": "synonyms for ali", "clues": ["Cassius Marcellus Clay", "Muhammad Ali", "Cassius Clay", "Ali"]}, {"answer": "alignment", "hint": "synonyms for alignment", "clues": ["conjunction", "coalition", "alinement", "alliance"]}, {"answer": "aliment", "hint": "synonyms for aliment", "clues": ["nutrition", "alimentation", "victuals", "sustenance", "nourishment", "nutriment", "aliment"]}, {"answer": "alimentary_canal", "hint": "synonyms for alimentary canal", "clues": ["GI tract", "gastrointestinal tract", "digestive tube", "digestive tract", "alimentary tract", "alimentary canal"]}, {"answer": "alimentary_tract", "hint": "synonyms for alimentary tract", "clues": ["alimentary canal", "GI tract", "gastrointestinal tract", "digestive tube", "digestive tract", "alimentary tract"]}, {"answer": "alimentation", "hint": "synonyms for alimentation", "clues": ["aliment", "nutrition", "victuals", "sustenance", "nourishment", "nutriment", "feeding", "alimentation"]}, {"answer": "alir", "hint": "synonyms for alir", "clues": ["ALIR", "Interahamwe", "FAR", "Army for the Liberation of Rwanda", "Former Armed Forces"]}, {"answer": "aliveness", "hint": "synonyms for aliveness", "clues": ["animateness", "life", "liveness", "living", "animation"]}, {"answer": "alkane", "hint": "synonyms for alkane", "clues": ["methane series", "alkane series", "paraffin", "paraffin series", "alkane"]}, {"answer": "alkane_series", "hint": "synonyms for alkane series", "clues": ["alkane", "paraffin series", "paraffin", "methane series", "alkane series"]}, {"answer": "alky", "hint": "synonyms for alky", "clues": ["lush", "dipsomaniac", "alcoholic", "boozer", "souse", "soaker", "alky"]}, {"answer": "all_saints'_day", "hint": "synonyms for all saints' day", "clues": ["Hallowmass", "Allhallows", "All Saints' Day", "November 1"]}, {"answer": "alleghenies", "hint": "synonyms for alleghenies", "clues": ["Alleghenies", "Allegheny Mountains", "Allegheny", "Allegheny River"]}, {"answer": "allegiance", "hint": "synonyms for allegiance", "clues": ["loyalty", "commitment", "fealty", "dedication", "allegiance"]}, {"answer": "allegory", "hint": "synonyms for allegory", "clues": ["fable", "emblem", "parable", "apologue", "allegory"]}, {"answer": "allen", "hint": "synonyms for allen", "clues": ["Gracie Allen", "Allen", "Allen Stewart Konigsberg", "Ethan Allen", "Grace Ethel Cecile Rosalie Allen", "Gracie", "Woody Allen"]}, {"answer": "alleviation", "hint": "synonyms for alleviation", "clues": ["relief", "easing", "assuagement", "easement", "alleviation"]}, {"answer": "alley", "hint": "synonyms for alley", "clues": ["back street", "skittle alley", "bowling alley", "alleyway", "alley"]}, {"answer": "allhallows", "hint": "synonyms for allhallows", "clues": ["Hallowmass", "Allhallows", "All Saints' Day", "November 1"]}, {"answer": "alliance", "hint": "synonyms for alliance", "clues": ["coalition", "alinement", "confederation", "bond", "alliance"]}, {"answer": "allocation", "hint": "synonyms for allocation", "clues": ["assignation", "parcelling", "storage allocation", "allotment", "apportionment", "apportioning", "allocation"]}, {"answer": "allotment", "hint": "synonyms for allotment", "clues": ["assignation", "parcelling", "apportioning", "allocation", "apportionment", "allotment"]}, {"answer": "allowance", "hint": "synonyms for allowance", "clues": ["leeway", "valuation reserve", "allowance account", "adjustment", "valuation account", "tolerance", "margin", "allowance"]}, {"answer": "alluvion", "hint": "synonyms for alluvion", "clues": ["deluge", "alluvial deposit", "inundation", "alluvium", "alluvial sediment", "flood", "alluvion"]}, {"answer": "aloofness", "hint": "synonyms for aloofness", "clues": ["standoffishness", "withdrawnness", "remoteness", "distance", "aloofness"]}, {"answer": "alphabet", "hint": "synonyms for alphabet", "clues": ["ABC", "first principle", "rudiment", "first rudiment", "ABC's", "alphabet"]}, {"answer": "alphonse_capone", "hint": "synonyms for alphonse capone", "clues": ["Scarface", "Al Capone", "Capone", "Alphonse Capone"]}, {"answer": "alpine_scurvy", "hint": "synonyms for alpine scurvy", "clues": ["Saint Ignatius' itch", "pellagra", "mal de la rosa", "mayidism", "mal rosso", "Alpine scurvy"]}, {"answer": "als", "hint": "synonyms for als", "clues": ["aluminium", "amyotrophic lateral sclerosis", "Lou Gehrig's disease", "AL", "atomic number 13", "Alabama", "Camellia State", "Heart of Dixie"]}, {"answer": "alt", "hint": "synonyms for alt", "clues": ["elevation", "ALT", "altitude", "EL"]}, {"answer": "alteration", "hint": "synonyms for alteration", "clues": ["modification", "revision", "change", "adjustment", "alteration"]}, {"answer": "altitude", "hint": "synonyms for altitude", "clues": ["height", "ALT", "elevation", "EL", "altitude"]}, {"answer": "alum", "hint": "synonyms for alum", "clues": ["potash alum", "alumnus", "graduate", "ammonium alum", "alumna", "grad", "potassium alum", "alum"]}, {"answer": "alumna", "hint": "synonyms for alumna", "clues": ["alumnus", "graduate", "alum", "grad", "alumna"]}, {"answer": "alumnus", "hint": "synonyms for alumnus", "clues": ["alumna", "graduate", "alum", "grad", "alumnus"]}, {"answer": "am", "hint": "synonyms for am", "clues": ["amplitude modulation", "atomic number 95", "Master of Arts", "MA", "americium", "AM", "Artium Magister"]}, {"answer": "amah", "hint": "synonyms for amah", "clues": ["maid", "maidservant", "wet-nurse", "housemaid", "amah"]}, {"answer": "amandine_aurore_lucie_dupin", "hint": "synonyms for amandine aurore lucie dupin", "clues": ["Amandine Aurore Lucie Dupin", "Sand", "George Sand", "Baroness Dudevant"]}, {"answer": "amativeness", "hint": "synonyms for amativeness", "clues": ["erotism", "sexiness", "amorousness", "amativeness"]}, {"answer": "ambit", "hint": "synonyms for ambit", "clues": ["range", "orbit", "reach", "compass", "scope", "ambit"]}, {"answer": "amble", "hint": "synonyms for amble", "clues": ["perambulation", "stroll", "promenade", "saunter", "amble"]}, {"answer": "ambo", "hint": "synonyms for ambo", "clues": ["pulpit", "podium", "dais", "soapbox", "stump", "rostrum", "ambo"]}, {"answer": "amends", "hint": "synonyms for amends", "clues": ["reparation", "redress", "indemnification", "damages", "indemnity", "restitution", "amends"]}, {"answer": "amenities", "hint": "synonyms for amenities", "clues": ["amenity", "comforts", "creature comforts", "conveniences", "agreeableness", "amenities"]}, {"answer": "america", "hint": "synonyms for america", "clues": ["America", "U.S.A.", "United States", "United States of America", "the States", "USA", "US", "U.S."]}, {"answer": "american-indian_language", "hint": "synonyms for american-indian language", "clues": ["American Indian", "American-Indian language", "Amerind", "Indian"]}, {"answer": "american_capital", "hint": "synonyms for american capital", "clues": ["American capital", "capital of the United States", "Washington D.C.", "Washington"]}, {"answer": "american_cheese", "hint": "synonyms for american cheese", "clues": ["cheddar", "Armerican cheddar", "American cheese", "cheddar cheese"]}, {"answer": "american_flag", "hint": "synonyms for american flag", "clues": ["Stars and Stripes", "Old Glory", "American flag", "Star-Spangled Banner"]}, {"answer": "american_indian", "hint": "synonyms for american indian", "clues": ["Red Indian", "American Indian", "Indian", "American-Indian language", "Amerind"]}, {"answer": "american_leishmaniasis", "hint": "synonyms for american leishmaniasis", "clues": ["New World leishmaniasis", "leishmaniasis americana", "nasopharyngeal leishmaniasis", "American leishmaniasis", "mucocutaneous leishmaniasis"]}, {"answer": "american_revolution", "hint": "synonyms for american revolution", "clues": ["American Revolution", "War of American Independence", "American War of Independence", "American Revolutionary War"]}, {"answer": "american_revolutionary_war", "hint": "synonyms for american revolutionary war", "clues": ["American Revolution", "War of American Independence", "American War of Independence", "American Revolutionary War"]}, {"answer": "american_war_of_independence", "hint": "synonyms for american war of independence", "clues": ["American Revolution", "War of American Independence", "American War of Independence", "American Revolutionary War"]}, {"answer": "amerindian_language", "hint": "synonyms for amerindian language", "clues": ["American Indian", "American-Indian language", "Amerind", "Indian"]}, {"answer": "amiability", "hint": "synonyms for amiability", "clues": ["affableness", "good humor", "geniality", "good temper", "bonhomie", "amiableness", "affability", "amiability"]}, {"answer": "amiableness", "hint": "synonyms for amiableness", "clues": ["affableness", "geniality", "bonhomie", "amiability", "affability", "amiableness"]}, {"answer": "amnesic_aphasia", "hint": "synonyms for amnesic aphasia", "clues": ["anomic aphasia", "amnestic aphasia", "anomia", "nominal aphasia"]}, {"answer": "amnestic_aphasia", "hint": "synonyms for amnestic aphasia", "clues": ["anomic aphasia", "anomia", "amnesic aphasia", "nominal aphasia"]}, {"answer": "amobarbital_sodium", "hint": "synonyms for amobarbital sodium", "clues": ["Amytal", "blue angel", "blue devil", "blue", "amobarbital sodium"]}, {"answer": "amorousness", "hint": "synonyms for amorousness", "clues": ["erotism", "sexiness", "amativeness", "enamoredness", "amorousness"]}, {"answer": "amount", "hint": "synonyms for amount", "clues": ["total", "sum", "quantity", "amount of money", "measure", "sum of money", "amount"]}, {"answer": "amour", "hint": "synonyms for amour", "clues": ["affair", "liaison", "intimacy", "involvement", "amour"]}, {"answer": "amoxicillin", "hint": "synonyms for amoxicillin", "clues": ["Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox", "amoxicillin"]}, {"answer": "amoxil", "hint": "synonyms for amoxil", "clues": ["amoxicillin", "Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox"]}, {"answer": "amoy", "hint": "synonyms for amoy", "clues": ["Amoy", "Hokkianese", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min"]}, {"answer": "amp", "hint": "synonyms for amp", "clues": ["adenylic acid", "AMP", "A", "ampere", "adenosine monophosphate"]}, {"answer": "ampoule", "hint": "synonyms for ampoule", "clues": ["phial", "vial", "ampul", "ampoule"]}, {"answer": "ampule", "hint": "synonyms for ampule", "clues": ["phial", "vial", "ampul", "ampoule"]}, {"answer": "amur", "hint": "synonyms for amur", "clues": ["Amur", "Amur River", "Heilong", "Heilong Jiang"]}, {"answer": "amur_river", "hint": "synonyms for amur river", "clues": ["Amur", "Amur River", "Heilong", "Heilong Jiang"]}, {"answer": "amytal", "hint": "synonyms for amytal", "clues": ["Amytal", "blue angel", "amobarbital sodium", "blue devil", "blue"]}, {"answer": "anacin_iii", "hint": "synonyms for anacin iii", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "anamnesis", "hint": "synonyms for anamnesis", "clues": ["medical history", "remembrance", "recollection", "medical record", "anamnesis"]}, {"answer": "anaprox", "hint": "synonyms for anaprox", "clues": ["naproxen sodium", "Anaprox", "Aleve", "Aflaxen"]}, {"answer": "anatomical_structure", "hint": "synonyms for anatomical structure", "clues": ["complex body part", "structure", "body structure", "anatomical structure"]}, {"answer": "anatomy", "hint": "synonyms for anatomy", "clues": ["human body", "general anatomy", "form", "soma", "bod", "physique", "material body", "flesh", "figure", "chassis", "shape", "frame", "physical body", "build", "anatomy"]}, {"answer": "ancestor", "hint": "synonyms for ancestor", "clues": ["ascendant", "antecedent", "root", "ancestor"]}, {"answer": "ancestry", "hint": "synonyms for ancestry", "clues": ["filiation", "blood line", "lineage", "blood", "stemma", "line", "line of descent", "parentage", "origin", "descent", "pedigree", "stock", "derivation", "ancestry"]}, {"answer": "anchor", "hint": "synonyms for anchor", "clues": ["mainstay", "linchpin", "anchorperson", "anchorman", "backbone", "ground tackle", "keystone", "anchor"]}, {"answer": "anchor_ring", "hint": "synonyms for anchor ring", "clues": ["ring", "doughnut", "halo", "annulus", "anchor ring"]}, {"answer": "anderson", "hint": "synonyms for anderson", "clues": ["Phil Anderson", "Carl David Anderson", "Anderson", "Philip Warren Anderson", "Maxwell Anderson", "Sherwood Anderson", "Marian Anderson", "Carl Anderson"]}, {"answer": "andre_markoff", "hint": "synonyms for andre markoff", "clues": ["Markoff", "Markov", "Andre Markoff", "Andrei Markov"]}, {"answer": "andrei_markov", "hint": "synonyms for andrei markov", "clues": ["Markoff", "Markov", "Andre Markoff", "Andrei Markov"]}, {"answer": "andres_martinez", "hint": "synonyms for andres martinez", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "andrew", "hint": "synonyms for andrew", "clues": ["St. Andrew", "Saint Andrew the Apostle", "Andrew", "Saint Andrew"]}, {"answer": "andrew_johnson", "hint": "synonyms for andrew johnson", "clues": ["President Andrew Johnson", "Johnson", "President Johnson", "Andrew Johnson"]}, {"answer": "andrews", "hint": "synonyms for andrews", "clues": ["Andrews", "Roy Chapman Andrews", "Saint Andrew", "Saint Andrew the Apostle", "St. Andrew"]}, {"answer": "androgyne", "hint": "synonyms for androgyne", "clues": ["hermaphrodite", "intersex", "gynandromorph", "epicene", "epicene person", "androgyne"]}, {"answer": "aneurin", "hint": "synonyms for aneurin", "clues": ["vitamin B1", "thiamin", "antiberiberi factor", "aneurin"]}, {"answer": "angara", "hint": "synonyms for angara", "clues": ["Tunguska", "Angara", "Angara River", "Upper Tunguska"]}, {"answer": "angara_river", "hint": "synonyms for angara river", "clues": ["Tunguska", "Angara", "Angara River", "Upper Tunguska"]}, {"answer": "angel", "hint": "synonyms for angel", "clues": ["holy person", "holy man", "saint", "backer", "Angel", "Angel Falls"]}, {"answer": "anger", "hint": "synonyms for anger", "clues": ["angriness", "wrath", "ire", "choler", "ira", "anger"]}, {"answer": "angioedema", "hint": "synonyms for angioedema", "clues": ["giant hives", "periodic edema", "atrophedema", "Quincke's edema", "angioedema"]}, {"answer": "angle_of_dip", "hint": "synonyms for angle of dip", "clues": ["inclination", "magnetic dip", "magnetic inclination", "dip", "angle of dip"]}, {"answer": "angora", "hint": "synonyms for angora", "clues": ["Ankara", "Turkish capital", "capital of Turkey", "Angora"]}, {"answer": "animate_being", "hint": "synonyms for animate being", "clues": ["creature", "beast", "animal", "fauna", "brute", "animate being"]}, {"answer": "animation", "hint": "synonyms for animation", "clues": ["invigoration", "brio", "spiritedness", "life", "vitality", "vivification", "living", "liveliness", "aliveness", "animation"]}, {"answer": "ankara", "hint": "synonyms for ankara", "clues": ["Ankara", "Turkish capital", "capital of Turkey", "Angora"]}, {"answer": "announcement", "hint": "synonyms for announcement", "clues": ["promulgation", "proclamation", "annunciation", "declaration", "announcement"]}, {"answer": "annoyance", "hint": "synonyms for annoyance", "clues": ["botheration", "infliction", "aggravator", "chafe", "annoying", "pain in the neck", "bother", "vexation", "irritation", "pain", "pain in the ass", "annoyance"]}, {"answer": "annulet", "hint": "synonyms for annulet", "clues": ["bandlet", "roundel", "square and rabbet", "bandelette", "annulet"]}, {"answer": "annulment", "hint": "synonyms for annulment", "clues": ["repeal", "revocation", "invalidation", "abrogation", "annulment"]}, {"answer": "annulus", "hint": "synonyms for annulus", "clues": ["anchor ring", "doughnut", "ring", "halo", "annulus"]}, {"answer": "annunciation", "hint": "synonyms for annunciation", "clues": ["proclamation", "Annunciation Day", "March 25", "Lady Day", "announcement", "declaration"]}, {"answer": "ano", "hint": "synonyms for ano", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "anomia", "hint": "synonyms for anomia", "clues": ["anomic aphasia", "amnestic aphasia", "nominal aphasia", "anomia"]}, {"answer": "anomic_aphasia", "hint": "synonyms for anomic aphasia", "clues": ["amnestic aphasia", "anomia", "nominal aphasia", "anomic aphasia"]}, {"answer": "anovulant", "hint": "synonyms for anovulant", "clues": ["contraceptive pill", "pill", "anovulatory drug", "oral contraceptive", "birth control pill", "anovulant"]}, {"answer": "anovulatory_drug", "hint": "synonyms for anovulatory drug", "clues": ["contraceptive pill", "anovulant", "pill", "oral contraceptive", "birth control pill", "anovulatory drug"]}, {"answer": "answer", "hint": "synonyms for answer", "clues": ["solution", "reply", "result", "solvent", "response", "answer"]}, {"answer": "antagonist", "hint": "synonyms for antagonist", "clues": ["opposer", "opponent", "adversary", "resister", "antagonist"]}, {"answer": "antecedence", "hint": "synonyms for antecedence", "clues": ["anteriority", "priority", "precedence", "antecedency"]}, {"answer": "antecedency", "hint": "synonyms for antecedency", "clues": ["anteriority", "priority", "precedence", "antecedence"]}, {"answer": "antechamber", "hint": "synonyms for antechamber", "clues": ["entrance hall", "anteroom", "foyer", "lobby", "vestibule", "hall", "antechamber"]}, {"answer": "anteriority", "hint": "synonyms for anteriority", "clues": ["priority", "precedence", "antecedence", "anteriority"]}, {"answer": "anteroom", "hint": "synonyms for anteroom", "clues": ["entrance hall", "antechamber", "foyer", "lobby", "vestibule", "hall", "anteroom"]}, {"answer": "anthesis", "hint": "synonyms for anthesis", "clues": ["flowering", "efflorescence", "inflorescence", "blossoming", "anthesis"]}, {"answer": "anthony", "hint": "synonyms for anthony", "clues": ["Mark Anthony", "Antonius", "Anthony", "Susan Anthony", "Susan Brownell Anthony", "Marcus Antonius"]}, {"answer": "anthrax_pneumonia", "hint": "synonyms for anthrax pneumonia", "clues": ["pulmonary anthrax", "woolsorter's disease", "ragsorter's disease", "woolsorter's pneumonia", "inhalation anthrax", "ragpicker's disease", "anthrax pneumonia"]}, {"answer": "antiaircraft_gun", "hint": "synonyms for antiaircraft gun", "clues": ["flak", "pom-pom", "ack-ack", "ack-ack gun", "antiaircraft"]}, {"answer": "antianxiety_agent", "hint": "synonyms for antianxiety agent", "clues": ["ataractic drug", "tranquilliser", "ataractic agent", "ataractic", "antianxiety agent"]}, {"answer": "antianxiety_drug", "hint": "synonyms for antianxiety drug", "clues": ["anxiolytic", "minor tranquillizer", "anxiolytic drug", "antianxiety drug"]}, {"answer": "antiberiberi_factor", "hint": "synonyms for antiberiberi factor", "clues": ["vitamin B1", "aneurin", "thiamin", "antiberiberi factor"]}, {"answer": "anticipation", "hint": "synonyms for anticipation", "clues": ["prevision", "expectancy", "prediction", "expectation", "anticipation"]}, {"answer": "antifungal_agent", "hint": "synonyms for antifungal agent", "clues": ["antifungal", "antimycotic", "antimycotic agent", "fungicide", "antifungal agent"]}, {"answer": "antihaemophilic_factor", "hint": "synonyms for antihaemophilic factor", "clues": ["antihemophilic factor", "Hemofil", "antihemophilic globulin", "factor VIII"]}, {"answer": "antihaemophilic_globulin", "hint": "synonyms for antihaemophilic globulin", "clues": ["antihemophilic factor", "Hemofil", "factor VIII", "antihemophilic globulin"]}, {"answer": "antihemophilic_factor", "hint": "synonyms for antihemophilic factor", "clues": ["Hemofil", "antihaemophilic factor", "factor VIII", "antihemophilic globulin"]}, {"answer": "antihemophilic_globulin", "hint": "synonyms for antihemophilic globulin", "clues": ["antihemophilic factor", "Hemofil", "factor VIII", "antihaemophilic globulin"]}, {"answer": "antimycotic", "hint": "synonyms for antimycotic", "clues": ["antifungal", "antimycotic agent", "antifungal agent", "fungicide", "antimycotic"]}, {"answer": "antimycotic_agent", "hint": "synonyms for antimycotic agent", "clues": ["antifungal", "antimycotic", "antifungal agent", "fungicide", "antimycotic agent"]}, {"answer": "antipsychotic", "hint": "synonyms for antipsychotic", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilliser", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug", "antipsychotic"]}, {"answer": "antipsychotic_agent", "hint": "synonyms for antipsychotic agent", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilliser", "antipsychotic", "neuroleptic agent", "antipsychotic drug", "antipsychotic agent"]}, {"answer": "antipsychotic_drug", "hint": "synonyms for antipsychotic drug", "clues": ["neuroleptic", "major tranquilliser", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "neuroleptic drug", "antipsychotic drug"]}, {"answer": "antoninus", "hint": "synonyms for antoninus", "clues": ["Marcus Annius Verus", "Antoninus", "Marcus Aurelius", "Marcus Aurelius Antoninus", "Aurelius"]}, {"answer": "antonio_gaudi", "hint": "synonyms for antonio gaudi", "clues": ["Antonio Gaudi", "Gaudi", "Gaudi i Cornet", "Antonio Gaudi i Cornet"]}, {"answer": "antonio_gaudi_i_cornet", "hint": "synonyms for antonio gaudi i cornet", "clues": ["Antonio Gaudi", "Gaudi", "Gaudi i Cornet", "Antonio Gaudi i Cornet"]}, {"answer": "antonius", "hint": "synonyms for antonius", "clues": ["Mark Anthony", "Antonius", "Anthony", "Marcus Antonius"]}, {"answer": "antony", "hint": "synonyms for antony", "clues": ["Mark Anthony", "Antonius", "Anthony", "Marcus Antonius"]}, {"answer": "anxiolytic_drug", "hint": "synonyms for anxiolytic drug", "clues": ["anxiolytic", "minor tranquillizer", "antianxiety drug", "anxiolytic drug"]}, {"answer": "ape", "hint": "synonyms for ape", "clues": ["aper", "anthropoid", "emulator", "copycat", "imitator"]}, {"answer": "aper", "hint": "synonyms for aper", "clues": ["ape", "copycat", "imitator", "emulator"]}, {"answer": "apex", "hint": "synonyms for apex", "clues": ["vertex", "acme", "solar apex", "peak", "apex of the sun's way", "apex"]}, {"answer": "aplomb", "hint": "synonyms for aplomb", "clues": ["poise", "assuredness", "cool", "sang-froid", "aplomb"]}, {"answer": "apocalypse", "hint": "synonyms for apocalypse", "clues": ["Revelation of Saint John the Divine", "Revelation", "Book of Revelation", "Apocalypse"]}, {"answer": "apostle_of_germany", "hint": "synonyms for apostle of germany", "clues": ["St. Boniface", "Boniface", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "apostle_of_the_gentiles", "hint": "synonyms for apostle of the gentiles", "clues": ["Apostle Paul", "Saul of Tarsus", "St. Paul", "Paul", "Saint Paul", "Saul", "Apostle of the Gentiles", "Paul the Apostle"]}, {"answer": "apostle_paul", "hint": "synonyms for apostle paul", "clues": ["Apostle Paul", "Saul of Tarsus", "St. Paul", "Paul", "Saint Paul", "Saul", "Apostle of the Gentiles", "Paul the Apostle"]}, {"answer": "apothecary", "hint": "synonyms for apothecary", "clues": ["pill roller", "pharmacist", "chemist", "druggist", "pill pusher", "apothecary"]}, {"answer": "apothecary's_shop", "hint": "synonyms for apothecary's shop", "clues": ["chemist's shop", "chemist's", "drugstore", "pharmacy", "apothecary's shop"]}, {"answer": "apotheosis", "hint": "synonyms for apotheosis", "clues": ["nonsuch", "deification", "saint", "exaltation", "ideal", "nonpareil", "paragon", "apotheosis"]}, {"answer": "apparatus_urogenitalis", "hint": "synonyms for apparatus urogenitalis", "clues": ["genitourinary system", "urogenital system", "urogenital apparatus", "urinary apparatus", "urinary system", "systema urogenitale", "apparatus urogenitalis"]}, {"answer": "apparel_industry", "hint": "synonyms for apparel industry", "clues": ["fashion business", "rag trade", "garment industry", "fashion industry", "apparel industry"]}, {"answer": "apparent_horizon", "hint": "synonyms for apparent horizon", "clues": ["sensible horizon", "horizon", "skyline", "visible horizon", "apparent horizon"]}, {"answer": "apparition", "hint": "synonyms for apparition", "clues": ["phantom", "phantasma", "shadow", "fantasm", "spectre", "apparition"]}, {"answer": "appeal", "hint": "synonyms for appeal", "clues": ["solicitation", "collection", "entreaty", "ingathering", "appealingness", "charm", "prayer", "appeal"]}, {"answer": "appearance", "hint": "synonyms for appearance", "clues": ["visual aspect", "show", "coming into court", "appearing", "appearance"]}, {"answer": "appendage", "hint": "synonyms for appendage", "clues": ["process", "outgrowth", "member", "extremity", "appendage"]}, {"answer": "apple_polisher", "hint": "synonyms for apple polisher", "clues": ["truckler", "groveler", "bootlicker", "fawner", "apple polisher"]}, {"answer": "applesauce", "hint": "synonyms for applesauce", "clues": ["apple sauce", "tripe", "wish-wash", "trumpery", "trash", "rubbish", "codswallop", "folderol"]}, {"answer": "appliance", "hint": "synonyms for appliance", "clues": ["contrivance", "gadget", "contraption", "widget", "convenience", "gismo", "gizmo", "appliance"]}, {"answer": "application", "hint": "synonyms for application", "clues": ["lotion", "coating", "covering", "practical application", "application program", "diligence", "application"]}, {"answer": "appointment", "hint": "synonyms for appointment", "clues": ["fitting", "naming", "appointee", "date", "designation", "assignment", "engagement", "appointment"]}, {"answer": "apportioning", "hint": "synonyms for apportioning", "clues": ["assignation", "parcelling", "allotment", "allocation", "apportionment", "apportioning"]}, {"answer": "apportionment", "hint": "synonyms for apportionment", "clues": ["allotment", "assignation", "parcelling", "apportioning", "allocation", "apportionment"]}, {"answer": "appreciation", "hint": "synonyms for appreciation", "clues": ["grasp", "hold", "perceptiveness", "admiration", "discernment", "taste", "appreciation"]}, {"answer": "apprehension", "hint": "synonyms for apprehension", "clues": ["savvy", "pinch", "collar", "understanding", "taking into custody", "catch", "dread", "discernment", "arrest", "apprehensiveness", "misgiving", "apprehension"]}, {"answer": "approach", "hint": "synonyms for approach", "clues": ["overture", "coming", "attack", "advance", "access", "glide slope", "approach shot", "glide path", "feeler", "approaching", "plan of attack", "approach path"]}, {"answer": "approval", "hint": "synonyms for approval", "clues": ["commendation", "favorable reception", "blessing", "approving", "approval"]}, {"answer": "approximation", "hint": "synonyms for approximation", "clues": ["idea", "estimate", "bringing close together", "estimation", "approximation"]}, {"answer": "appurtenance", "hint": "synonyms for appurtenance", "clues": ["paraphernalia", "gear", "supplement", "accessory", "add-on", "appurtenance"]}, {"answer": "apyretic_tetanus", "hint": "synonyms for apyretic tetanus", "clues": ["tetanilla", "intermittent tetanus", "tetany", "intermittent cramp", "apyretic tetanus"]}, {"answer": "aqua", "hint": "synonyms for aqua", "clues": ["greenish blue", "peacock blue", "aquamarine", "cobalt blue", "turquoise", "aqua"]}, {"answer": "aquamarine", "hint": "synonyms for aquamarine", "clues": ["greenish blue", "peacock blue", "cobalt blue", "turquoise", "aqua", "aquamarine"]}, {"answer": "aquinas", "hint": "synonyms for aquinas", "clues": ["Saint Thomas Aquinas", "Saint Thomas", "Thomas Aquinas", "St. Thomas", "Aquinas"]}, {"answer": "ar", "hint": "synonyms for ar", "clues": ["atomic number 18", "Ar", "Land of Opportunity", "are", "argon", "Arkansas"]}, {"answer": "ar_rimsal", "hint": "synonyms for ar rimsal", "clues": ["Dahna", "Rub al-Khali", "Great Sandy Desert", "Ar Rimsal"]}, {"answer": "arab_revolutionary_brigades", "hint": "synonyms for arab revolutionary brigades", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "arabian_tea", "hint": "synonyms for arabian tea", "clues": ["kat", "Arabian tea", "African tea", "quat", "cat"]}, {"answer": "arbalest", "hint": "synonyms for arbalest", "clues": ["catapult", "onager", "bricole", "trebucket", "arbalist", "ballista", "mangonel"]}, {"answer": "arbalist", "hint": "synonyms for arbalist", "clues": ["catapult", "arbalest", "onager", "bricole", "trebucket", "ballista", "mangonel"]}, {"answer": "arbitrariness", "hint": "synonyms for arbitrariness", "clues": ["whimsey", "flightiness", "whimsicality", "capriciousness", "arbitrariness"]}, {"answer": "arbor", "hint": "synonyms for arbor", "clues": ["spindle", "bower", "arbour", "mandril", "pergola"]}, {"answer": "arc", "hint": "synonyms for arc", "clues": ["electric arc", "bow", "electric discharge", "spark", "discharge", "arc"]}, {"answer": "archaeozoic_aeon", "hint": "synonyms for archaeozoic aeon", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archean_aeon", "hint": "synonyms for archean aeon", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archean_eon", "hint": "synonyms for archean eon", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archeozoic_eon", "hint": "synonyms for archeozoic eon", "clues": ["Archean", "Archaeozoic aeon", "Archaeozoic", "Archean eon"]}, {"answer": "archer", "hint": "synonyms for archer", "clues": ["Sagittarius", "Sagittarius the Archer", "Archer", "bowman"]}, {"answer": "archness", "hint": "synonyms for archness", "clues": ["perkiness", "pertness", "sauciness", "impertinence", "archness"]}, {"answer": "archpriest", "hint": "synonyms for archpriest", "clues": ["primate", "prelate", "hierarch", "high priest", "archpriest"]}, {"answer": "ardor", "hint": "synonyms for ardor", "clues": ["fervidness", "elan", "ardour", "fervour", "fire", "fervency", "zeal"]}, {"answer": "ardour", "hint": "synonyms for ardour", "clues": ["fervidness", "elan", "fervour", "fire", "ardor", "fervency", "zeal"]}, {"answer": "ards", "hint": "synonyms for ards", "clues": ["ARDS", "wet lung", "white lung", "adult respiratory distress syndrome"]}, {"answer": "area", "hint": "synonyms for area", "clues": ["sphere", "region", "field", "expanse", "surface area", "country", "orbit", "arena", "domain"]}, {"answer": "area_17_of_brodmann", "hint": "synonyms for area 17 of brodmann", "clues": ["first visual area", "area 17 of Brodmann", "striate cortex", "striate area", "Brodmann's area 17"]}, {"answer": "arena", "hint": "synonyms for arena", "clues": ["sphere", "field", "scene of action", "bowl", "orbit", "domain", "area", "stadium", "sports stadium"]}, {"answer": "argonne", "hint": "synonyms for argonne", "clues": ["Meuse-Argonne", "Meuse-Argonne operation", "Meuse River", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "argonne_forest", "hint": "synonyms for argonne forest", "clues": ["Meuse-Argonne", "Meuse-Argonne operation", "Meuse River", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "argot", "hint": "synonyms for argot", "clues": ["lingo", "vernacular", "cant", "slang", "patois", "jargon", "argot"]}, {"answer": "arguing", "hint": "synonyms for arguing", "clues": ["contention", "argument", "tilt", "disceptation", "contestation", "controversy", "arguing"]}, {"answer": "argument", "hint": "synonyms for argument", "clues": ["contention", "tilt", "disceptation", "statement", "parameter", "debate", "line", "line of reasoning", "literary argument", "logical argument", "arguing", "contestation", "controversy", "argumentation", "argument"]}, {"answer": "argumentation", "hint": "synonyms for argumentation", "clues": ["logical argument", "argument", "line", "debate", "line of reasoning", "argumentation"]}, {"answer": "aridity", "hint": "synonyms for aridity", "clues": ["fruitlessness", "aridness", "thirstiness", "barrenness", "aridity"]}, {"answer": "aristocort", "hint": "synonyms for aristocort", "clues": ["Aristopak", "Kenalog", "triamcinolone", "Aristocort"]}, {"answer": "aristopak", "hint": "synonyms for aristopak", "clues": ["Aristopak", "Kenalog", "triamcinolone", "Aristocort"]}, {"answer": "arkansas", "hint": "synonyms for arkansas", "clues": ["AR", "Land of Opportunity", "Arkansas", "Arkansas River"]}, {"answer": "arm", "hint": "synonyms for arm", "clues": ["branch", "weapon system", "subdivision", "weapon", "limb", "sleeve", "arm"]}, {"answer": "armand_jean_du_plessis", "hint": "synonyms for armand jean du plessis", "clues": ["Armand Jean du Plessis", "Cardinal Richelieu", "Richelieu", "Duc de Richelieu"]}, {"answer": "armed_forces", "hint": "synonyms for armed forces", "clues": ["military", "military machine", "armed services", "war machine", "armed forces"]}, {"answer": "armed_services", "hint": "synonyms for armed services", "clues": ["military", "armed forces", "military machine", "armed service", "service", "military service", "war machine"]}, {"answer": "armenian_secret_army_for_the_liberation_of_armenia", "hint": "synonyms for armenian secret army for the liberation of armenia", "clues": ["3rd October Organization", "ASALA", "Armenian Secret Army for the Liberation of Armenia", "Orly Group"]}, {"answer": "armerican_cheddar", "hint": "synonyms for armerican cheddar", "clues": ["cheddar", "Armerican cheddar", "American cheese", "cheddar cheese"]}, {"answer": "arminius", "hint": "synonyms for arminius", "clues": ["Jacobus Arminius", "Jacob Harmensen", "Hermann", "Armin", "Jakob Hermandszoon", "Arminius"]}, {"answer": "arms", "hint": "synonyms for arms", "clues": ["branch", "weapon system", "blazonry", "implements of war", "limb", "munition", "weapon", "sleeve", "coat of arms", "subdivision", "arm"]}, {"answer": "armstrong", "hint": "synonyms for armstrong", "clues": ["Armstrong", "Neil Armstrong", "Satchmo", "Louis Armstrong"]}, {"answer": "army", "hint": "synonyms for army", "clues": ["Army", "regular army", "USA", "U. S. Army", "United States Army", "US Army", "ground forces"]}, {"answer": "army_for_the_liberation_of_rwanda", "hint": "synonyms for army for the liberation of rwanda", "clues": ["ALIR", "Interahamwe", "FAR", "Army for the Liberation of Rwanda", "Former Armed Forces"]}, {"answer": "army_of_muhammad", "hint": "synonyms for army of muhammad", "clues": ["Jaish-e-Muhammad", "Army of Muhammad", "Jaish-i-Mohammed", "JEM"]}, {"answer": "army_of_the_pure", "hint": "synonyms for army of the pure", "clues": ["Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "army_of_the_righteous", "hint": "synonyms for army of the righteous", "clues": ["Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "aroma", "hint": "synonyms for aroma", "clues": ["smell", "olfactory property", "odour", "scent", "fragrance", "perfume", "aroma"]}, {"answer": "arrangement", "hint": "synonyms for arrangement", "clues": ["system", "musical arrangement", "arranging", "organisation", "transcription", "placement", "agreement", "arrangement"]}, {"answer": "arranger", "hint": "synonyms for arranger", "clues": ["adapter", "organizer", "transcriber", "arranger"]}, {"answer": "arrest", "hint": "synonyms for arrest", "clues": ["apprehension", "halt", "hitch", "pinch", "collar", "taking into custody", "stop", "stay", "catch", "stoppage", "check", "arrest"]}, {"answer": "arrivederci", "hint": "synonyms for arrivederci", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "arrivederci"]}, {"answer": "arrogance", "hint": "synonyms for arrogance", "clues": ["hauteur", "high-handedness", "lordliness", "haughtiness", "arrogance"]}, {"answer": "arse", "hint": "synonyms for arse", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "bunghole", "tail end", "derriere", "rear", "stern", "asshole", "backside", "arsehole", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "tooshie", "behind", "nates", "can", "arse"]}, {"answer": "arsenic", "hint": "synonyms for arsenic", "clues": ["arsenic trioxide", "arsenous oxide", "arsenous anhydride", "As", "atomic number 33", "ratsbane", "white arsenic", "arsenic"]}, {"answer": "arsenic_trioxide", "hint": "synonyms for arsenic trioxide", "clues": ["arsenous oxide", "arsenous anhydride", "arsenic", "ratsbane", "white arsenic", "arsenic trioxide"]}, {"answer": "arsenous_anhydride", "hint": "synonyms for arsenous anhydride", "clues": ["arsenic trioxide", "arsenous oxide", "arsenic", "ratsbane", "white arsenic", "arsenous anhydride"]}, {"answer": "arsenous_oxide", "hint": "synonyms for arsenous oxide", "clues": ["arsenic trioxide", "arsenous anhydride", "arsenic", "ratsbane", "white arsenic", "arsenous oxide"]}, {"answer": "art", "hint": "synonyms for art", "clues": ["artistry", "artistic creation", "artistic production", "fine art", "graphics", "artwork", "prowess", "nontextual matter", "art"]}, {"answer": "arterial_sclerosis", "hint": "synonyms for arterial sclerosis", "clues": ["induration of the arteries", "coronary-artery disease", "arteriosclerosis", "hardening of the arteries"]}, {"answer": "arteriosclerosis", "hint": "synonyms for arteriosclerosis", "clues": ["arterial sclerosis", "induration of the arteries", "coronary-artery disease", "hardening of the arteries"]}, {"answer": "arthur", "hint": "synonyms for arthur", "clues": ["President Arthur", "King Arthur", "Chester Alan Arthur", "Arthur"]}, {"answer": "arthur_wellesley", "hint": "synonyms for arthur wellesley", "clues": ["Iron Duke", "Duke of Wellington", "Arthur Wellesley", "Wellington"]}, {"answer": "article_of_clothing", "hint": "synonyms for article of clothing", "clues": ["wear", "habiliment", "vesture", "clothing", "wearable", "article of clothing"]}, {"answer": "articulated_lorry", "hint": "synonyms for articulated lorry", "clues": ["trucking rig", "rig", "trailer truck", "tractor trailer", "semi", "articulated lorry"]}, {"answer": "articulatio_cubiti", "hint": "synonyms for articulatio cubiti", "clues": ["elbow joint", "human elbow", "cubitus", "elbow", "cubital joint", "articulatio cubiti"]}, {"answer": "articulatio_genus", "hint": "synonyms for articulatio genus", "clues": ["knee", "genu", "knee joint", "human knee", "articulatio genus"]}, {"answer": "articulatio_radiocarpea", "hint": "synonyms for articulatio radiocarpea", "clues": ["carpus", "wrist joint", "wrist", "radiocarpal joint", "articulatio radiocarpea"]}, {"answer": "articulatio_spheroidea", "hint": "synonyms for articulatio spheroidea", "clues": ["cotyloid joint", "ball-and-socket joint", "enarthrodial joint", "spheroid joint", "enarthrosis", "articulatio spheroidea"]}, {"answer": "articulation", "hint": "synonyms for articulation", "clues": ["join", "juncture", "voice", "junction", "articulatio"]}, {"answer": "artificer", "hint": "synonyms for artificer", "clues": ["armourer", "inventor", "artisan", "discoverer", "journeyman", "craftsman", "artificer"]}, {"answer": "artillery", "hint": "synonyms for artillery", "clues": ["ordnance", "gun", "artillery unit", "weapon", "heavy weapon", "artillery"]}, {"answer": "artium_baccalaurens", "hint": "synonyms for artium baccalaurens", "clues": ["Artium Baccalaurens", "BA", "Bachelor of Arts", "AB"]}, {"answer": "artium_magister", "hint": "synonyms for artium magister", "clues": ["AM", "Artium Magister", "Master of Arts", "MA"]}, {"answer": "arts", "hint": "synonyms for arts", "clues": ["humanities", "liberal arts", "prowess", "nontextual matter", "humanistic discipline", "art", "artistry", "artistic creation", "artistic production", "artwork", "fine art", "graphics"]}, {"answer": "asa_dulcis", "hint": "synonyms for asa dulcis", "clues": ["benzoin", "benjamin", "gum benzoin", "gum benjamin", "asa dulcis"]}, {"answer": "asala", "hint": "synonyms for asala", "clues": ["3rd October Organization", "ASALA", "Armenian Secret Army for the Liberation of Armenia", "Orly Group"]}, {"answer": "ascendance", "hint": "synonyms for ascendance", "clues": ["dominance", "control", "ascendency", "ascendance"]}, {"answer": "ascendancy", "hint": "synonyms for ascendancy", "clues": ["dominance", "control", "ascendency", "ascendance"]}, {"answer": "ascendence", "hint": "synonyms for ascendence", "clues": ["dominance", "control", "ascendency", "ascendance"]}, {"answer": "ascendency", "hint": "synonyms for ascendency", "clues": ["dominance", "control", "ascendancy", "ascendence"]}, {"answer": "ascension", "hint": "synonyms for ascension", "clues": ["Ascension", "Ascension of the Lord", "rising", "rise", "ascending", "ascent", "Ascension of Christ", "Ascension Day"]}, {"answer": "ascent", "hint": "synonyms for ascent", "clues": ["upgrade", "raise", "rising", "ascension", "ascending", "climb", "acclivity", "ascent"]}, {"answer": "ash-bin", "hint": "synonyms for ash-bin", "clues": ["ash bin", "trash can", "garbage can", "ashcan", "trash barrel", "wastebin", "dustbin"]}, {"answer": "ash_bin", "hint": "synonyms for ash bin", "clues": ["trash can", "garbage can", "ash-bin", "ashcan", "trash barrel", "wastebin", "trash bin", "dustbin"]}, {"answer": "ashbin", "hint": "synonyms for ashbin", "clues": ["ash bin", "trash can", "garbage can", "ashcan", "trash barrel", "wastebin", "dustbin"]}, {"answer": "ashcan", "hint": "synonyms for ashcan", "clues": ["ash bin", "trash can", "garbage can", "trash barrel", "wastebin", "dustbin", "ashcan"]}, {"answer": "asiatic_cholera", "hint": "synonyms for asiatic cholera", "clues": ["Asiatic cholera", "cholera", "epidemic cholera", "Indian cholera"]}, {"answer": "asker", "hint": "synonyms for asker", "clues": ["inquirer", "questioner", "querier", "asker"]}, {"answer": "aspect", "hint": "synonyms for aspect", "clues": ["view", "look", "facial expression", "panorama", "scene", "face", "prospect", "expression", "vista", "aspect"]}, {"answer": "asperity", "hint": "synonyms for asperity", "clues": ["severity", "rigour", "sharpness", "hardship", "rigorousness", "grimness", "severeness", "asperity"]}, {"answer": "aspersion", "hint": "synonyms for aspersion", "clues": ["defamation", "slander", "slur", "sprinkling", "calumny", "denigration", "aspersion"]}, {"answer": "aspiration", "hint": "synonyms for aspiration", "clues": ["intake", "ambition", "dream", "inspiration", "breathing in", "inhalation"]}, {"answer": "aspirer", "hint": "synonyms for aspirer", "clues": ["wannabee", "hopeful", "aspirant", "aspirer"]}, {"answer": "aspirin", "hint": "synonyms for aspirin", "clues": ["St. Joseph", "Bayer", "acetylsalicylic acid", "Empirin", "aspirin"]}, {"answer": "ass", "hint": "synonyms for ass", "clues": ["tush", "buns", "seat", "butt", "tail end", "shag", "fuck", "rear", "nookie", "buttocks", "bum", "AS", "piece of tail", "rump", "nates", "atomic number 33", "can", "fundament", "rear end", "hindquarters", "prat", "screwing", "shtup", "nooky", "American Samoa", "derriere", "piece of ass", "roll in the hay", "stern", "arsenic", "backside", "posterior", "keister", "tail", "bottom", "fanny", "hind end", "tooshie", "arse", "behind", "Eastern Samoa"]}, {"answer": "ass-kisser", "hint": "synonyms for ass-kisser", "clues": ["crawler", "lackey", "sycophant", "toady", "ass-kisser"]}, {"answer": "assam_fever", "hint": "synonyms for assam fever", "clues": ["Assam fever", "visceral leishmaniasis", "kala-azar", "dumdum fever"]}, {"answer": "assemblage", "hint": "synonyms for assemblage", "clues": ["collection", "gathering", "aggregation", "accumulation", "hookup", "assembly", "assemblage"]}, {"answer": "assembly", "hint": "synonyms for assembly", "clues": ["assemblage", "gathering", "forum", "meeting place", "fabrication", "assembly"]}, {"answer": "asserter", "hint": "synonyms for asserter", "clues": ["declarer", "asseverator", "affirmer", "avower", "asserter"]}, {"answer": "assertion", "hint": "synonyms for assertion", "clues": ["statement", "averment", "affirmation", "asseveration"]}, {"answer": "asseverator", "hint": "synonyms for asseverator", "clues": ["asserter", "declarer", "affirmer", "avower", "asseverator"]}, {"answer": "asshole", "hint": "synonyms for asshole", "clues": ["SOB", "arsehole", "motherfucker", "bunghole", "son of a bitch", "shit", "cocksucker", "whoreson", "bastard", "arse", "prick", "dickhead", "asshole"]}, {"answer": "assignation", "hint": "synonyms for assignation", "clues": ["allotment", "parcelling", "apportioning", "allocation", "apportionment", "tryst", "assignation"]}, {"answer": "assignment", "hint": "synonyms for assignment", "clues": ["assigning", "naming", "appointment", "designation", "grant", "duty assignment", "assignment"]}, {"answer": "association", "hint": "synonyms for association", "clues": ["tie", "connexion", "connection", "tie-up", "affiliation", "association"]}, {"answer": "assortment", "hint": "synonyms for assortment", "clues": ["miscellany", "mixture", "variety", "salmagundi", "categorisation", "compartmentalisation", "mixed bag", "smorgasbord", "motley", "classification", "potpourri", "assortment"]}, {"answer": "assumed_name", "hint": "synonyms for assumed name", "clues": ["false name", "alias", "DBA", "fictitious name", "Doing Business As", "assumed name"]}, {"answer": "assumption", "hint": "synonyms for assumption", "clues": ["Assumption of Mary", "premiss", "presumptuousness", "August 15", "supposal", "laying claim", "Assumption", "supposition", "effrontery", "presumption"]}, {"answer": "assurance", "hint": "synonyms for assurance", "clues": ["confidence", "authority", "self-assurance", "pledge", "self-confidence", "sureness", "assurance"]}, {"answer": "assuredness", "hint": "synonyms for assuredness", "clues": ["sang-froid", "poise", "cool", "aplomb", "assuredness"]}, {"answer": "astor", "hint": "synonyms for astor", "clues": ["Astor", "Viscountess Astor", "John Jacob Astor", "Nancy Witcher Astor"]}, {"answer": "astragal", "hint": "synonyms for astragal", "clues": ["bead", "anklebone", "talus", "astragalus", "beadwork"]}, {"answer": "astuteness", "hint": "synonyms for astuteness", "clues": ["perspicaciousness", "profoundness", "deepness", "profundity", "perspicacity", "depth", "shrewdness", "astuteness"]}, {"answer": "asylum", "hint": "synonyms for asylum", "clues": ["mental hospital", "mental home", "refuge", "institution", "sanctuary", "mental institution", "insane asylum", "psychiatric hospital", "asylum"]}, {"answer": "asynchronism", "hint": "synonyms for asynchronism", "clues": ["desynchronisation", "asynchrony", "desynchronizing", "asynchronism"]}, {"answer": "asynchrony", "hint": "synonyms for asynchrony", "clues": ["desynchronisation", "asynchronism", "desynchronizing", "asynchrony"]}, {"answer": "atabrine", "hint": "synonyms for atabrine", "clues": ["mepacrine", "Atabrine", "quinacrine", "quinacrine hydrochloride"]}, {"answer": "ataractic_agent", "hint": "synonyms for ataractic agent", "clues": ["ataractic drug", "tranquilliser", "antianxiety agent", "ataractic", "ataractic agent"]}, {"answer": "ataractic_drug", "hint": "synonyms for ataractic drug", "clues": ["ataractic agent", "tranquilliser", "antianxiety agent", "ataractic", "ataractic drug"]}, {"answer": "atarax", "hint": "synonyms for atarax", "clues": ["Vistaril", "hydroxyzine", "hydroxyzine hydrochloride", "Atarax"]}, {"answer": "ataraxis", "hint": "synonyms for ataraxis", "clues": ["peacefulness", "repose", "peace", "peace of mind", "serenity", "heartsease", "ataraxis"]}, {"answer": "ataturk", "hint": "synonyms for ataturk", "clues": ["Kemal Pasha", "Kemal Ataturk", "Ataturk", "Mustafa Kemal"]}, {"answer": "ataxic_aphasia", "hint": "synonyms for ataxic aphasia", "clues": ["expressive aphasia", "nonfluent aphasia", "Broca's aphasia", "motor aphasia", "ataxic aphasia"]}, {"answer": "athena", "hint": "synonyms for athena", "clues": ["Pallas Athene", "Athene", "Athena", "Pallas"]}, {"answer": "athene", "hint": "synonyms for athene", "clues": ["Pallas Athene", "Athene", "Athena", "Pallas"]}, {"answer": "athens", "hint": "synonyms for athens", "clues": ["capital of Greece", "Athinai", "Athens", "Greek capital"]}, {"answer": "atherodyde", "hint": "synonyms for atherodyde", "clues": ["athodyd", "ramjet engine", "ramjet", "flying drainpipe", "atherodyde"]}, {"answer": "athinai", "hint": "synonyms for athinai", "clues": ["capital of Greece", "Athinai", "Athens", "Greek capital"]}, {"answer": "athletic_supporter", "hint": "synonyms for athletic supporter", "clues": ["jockstrap", "jock", "suspensor", "supporter", "athletic supporter"]}, {"answer": "athodyd", "hint": "synonyms for athodyd", "clues": ["atherodyde", "ramjet engine", "ramjet", "flying drainpipe", "athodyd"]}, {"answer": "atlas", "hint": "synonyms for atlas", "clues": ["atlas vertebra", "Atlas", "book of maps", "telamon", "map collection"]}, {"answer": "atm", "hint": "synonyms for atm", "clues": ["cash machine", "ATM", "cash dispenser", "asynchronous transfer mode", "automatic teller", "automated teller machine", "standard pressure", "atmosphere", "standard atmosphere"]}, {"answer": "atmosphere", "hint": "synonyms for atmosphere", "clues": ["ambience", "atmospheric state", "air", "aura", "standard pressure", "atm", "standard atmosphere", "atmosphere"]}, {"answer": "atom", "hint": "synonyms for atom", "clues": ["mote", "corpuscle", "particle", "molecule", "speck", "atom"]}, {"answer": "atom_bomb", "hint": "synonyms for atom bomb", "clues": ["plutonium bomb", "fission bomb", "atomic bomb", "A-bomb"]}, {"answer": "atomic_bomb", "hint": "synonyms for atomic bomb", "clues": ["plutonium bomb", "fission bomb", "atom bomb", "A-bomb"]}, {"answer": "atomic_number_104", "hint": "synonyms for atomic number 104", "clues": ["Rf", "rutherfordium", "Unq", "element 104", "unnilquadium", "atomic number 104"]}, {"answer": "atomic_number_105", "hint": "synonyms for atomic number 105", "clues": ["element 105", "hahnium", "Db", "dubnium", "atomic number 105"]}, {"answer": "atomic_number_80", "hint": "synonyms for atomic number 80", "clues": ["mercury", "quicksilver", "Hg", "hydrargyrum", "atomic number 80"]}, {"answer": "atomiser", "hint": "synonyms for atomiser", "clues": ["atomizer", "spray", "nebulizer", "sprayer"]}, {"answer": "atomizer", "hint": "synonyms for atomizer", "clues": ["atomiser", "nebulizer", "spray", "sprayer"]}, {"answer": "atrociousness", "hint": "synonyms for atrociousness", "clues": ["heinousness", "atrocity", "barbarity", "barbarousness", "atrociousness"]}, {"answer": "atrocity", "hint": "synonyms for atrocity", "clues": ["atrociousness", "barbarity", "barbarousness", "inhumanity", "heinousness", "atrocity"]}, {"answer": "atrophedema", "hint": "synonyms for atrophedema", "clues": ["angioedema", "giant hives", "periodic edema", "Quincke's edema", "atrophedema"]}, {"answer": "attachment", "hint": "synonyms for attachment", "clues": ["adherence", "fastening", "fond regard", "affixation", "bond", "adhesion", "attachment"]}, {"answer": "attack", "hint": "synonyms for attack", "clues": ["blast", "fire", "onrush", "attempt", "tone-beginning", "flak", "onset", "plan of attack", "approach", "onslaught", "attack"]}, {"answer": "attainment", "hint": "synonyms for attainment", "clues": ["acquirement", "acquisition", "accomplishment", "skill", "attainment"]}, {"answer": "attempt", "hint": "synonyms for attempt", "clues": ["effort", "endeavour", "attack", "try", "attempt"]}, {"answer": "attender", "hint": "synonyms for attender", "clues": ["hearer", "listener", "attendee", "tender", "auditor", "attendant", "meeter"]}, {"answer": "attention", "hint": "synonyms for attention", "clues": ["aid", "attending", "care", "attention"]}, {"answer": "attention_deficit_disorder", "hint": "synonyms for attention deficit disorder", "clues": ["attention deficit hyperactivity disorder", "minimal brain damage", "MBD", "ADD", "minimal brain dysfunction", "hyperkinetic syndrome", "attention deficit disorder"]}, {"answer": "attention_deficit_hyperactivity_disorder", "hint": "synonyms for attention deficit hyperactivity disorder", "clues": ["attention deficit disorder", "minimal brain damage", "MBD", "ADD", "minimal brain dysfunction", "hyperkinetic syndrome", "attention deficit hyperactivity disorder"]}, {"answer": "attestant", "hint": "synonyms for attestant", "clues": ["attester", "attestator", "witness", "attestant"]}, {"answer": "attila", "hint": "synonyms for attila", "clues": ["Scourge of the Gods", "Scourge of God", "Attila", "Attila the Hun"]}, {"answer": "attila_the_hun", "hint": "synonyms for attila the hun", "clues": ["Scourge of the Gods", "Scourge of God", "Attila", "Attila the Hun"]}, {"answer": "attlee", "hint": "synonyms for attlee", "clues": ["Clement Attlee", "1st Earl Attlee", "Attlee", "Clement Richard Attlee"]}, {"answer": "attracter", "hint": "synonyms for attracter", "clues": ["drawing card", "attractive feature", "attraction", "draw", "magnet", "attractor"]}, {"answer": "attraction", "hint": "synonyms for attraction", "clues": ["attracter", "magnet", "drawing card", "attractive feature", "draw", "attractive force", "attractiveness", "attraction"]}, {"answer": "attractive_feature", "hint": "synonyms for attractive feature", "clues": ["attracter", "attraction", "magnet", "attractive feature"]}, {"answer": "attractor", "hint": "synonyms for attractor", "clues": ["drawing card", "attracter", "attractive feature", "attraction", "draw", "magnet"]}, {"answer": "attrition", "hint": "synonyms for attrition", "clues": ["grinding", "contrition", "abrasion", "contriteness", "corrasion", "detrition", "attrition"]}, {"answer": "au", "hint": "synonyms for au", "clues": ["Astronomical Unit", "atomic number 79", "gold", "AU"]}, {"answer": "au_revoir", "hint": "synonyms for au revoir", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "au revoir"]}, {"answer": "auberge", "hint": "synonyms for auberge", "clues": ["hostel", "inn", "lodge", "auberge"]}, {"answer": "audio", "hint": "synonyms for audio", "clues": ["audio frequency", "sound", "audio recording", "sound recording", "audio"]}, {"answer": "audition", "hint": "synonyms for audition", "clues": ["auditory modality", "tryout", "auditory sense", "sense of hearing", "hearing", "audition"]}, {"answer": "auditory_canal", "hint": "synonyms for auditory canal", "clues": ["acoustic meatus", "ear canal", "auditory meatus", "external auditory canal", "auditory canal"]}, {"answer": "auditory_meatus", "hint": "synonyms for auditory meatus", "clues": ["ear canal", "acoustic meatus", "auditory canal", "external auditory canal", "auditory meatus"]}, {"answer": "auditory_modality", "hint": "synonyms for auditory modality", "clues": ["auditory sense", "hearing", "sense of hearing", "audition", "auditory modality"]}, {"answer": "auditory_nerve", "hint": "synonyms for auditory nerve", "clues": ["eighth cranial nerve", "nervus vestibulocochlearis", "acoustic nerve", "vestibulocochlear nerve", "auditory nerve"]}, {"answer": "auditory_sense", "hint": "synonyms for auditory sense", "clues": ["auditory modality", "hearing", "sense of hearing", "audition", "auditory sense"]}, {"answer": "auf_wiedersehen", "hint": "synonyms for auf wiedersehen", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "adios", "bye-bye", "bye", "auf wiedersehen"]}, {"answer": "auger", "hint": "synonyms for auger", "clues": ["screw auger", "gimlet", "plumber's snake", "wimble", "auger"]}, {"answer": "aught", "hint": "synonyms for aught", "clues": ["nothing", "null", "zip", "cipher", "zero", "nada", "nil", "cypher", "naught", "nix", "goose egg", "zippo", "zilch"]}, {"answer": "augmentin", "hint": "synonyms for augmentin", "clues": ["amoxicillin", "Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox"]}, {"answer": "augustus", "hint": "synonyms for augustus", "clues": ["Gaius Julius Caesar Octavianus", "Gaius Octavianus", "Octavian", "Augustus"]}, {"answer": "aura", "hint": "synonyms for aura", "clues": ["air", "glory", "aureole", "halo", "atmosphere", "nimbus", "gloriole", "aura"]}, {"answer": "aurelius", "hint": "synonyms for aurelius", "clues": ["Marcus Annius Verus", "Antoninus", "Marcus Aurelius", "Marcus Aurelius Antoninus", "Aurelius"]}, {"answer": "aureole", "hint": "synonyms for aureole", "clues": ["glory", "nimbus", "aura", "corona", "halo", "gloriole", "aureole"]}, {"answer": "auricle", "hint": "synonyms for auricle", "clues": ["auricula atrii", "ear", "atrial auricle", "pinna", "auricle"]}, {"answer": "aurora", "hint": "synonyms for aurora", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "sunup", "dawning", "Aurora", "first light", "morning", "cockcrow"]}, {"answer": "auspices", "hint": "synonyms for auspices", "clues": ["auspex", "protection", "augur", "auspice", "aegis"]}, {"answer": "australian_aborigine", "hint": "synonyms for australian aborigine", "clues": ["native Australian", "Australian Aborigine", "Abo", "Aborigine", "Aboriginal"]}, {"answer": "authorisation", "hint": "synonyms for authorisation", "clues": ["empowerment", "authority", "dominance", "mandate", "potency", "say-so", "sanction", "authorization"]}, {"answer": "authoritarianism", "hint": "synonyms for authoritarianism", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "tyranny", "dictatorship", "absolutism", "authoritarianism"]}, {"answer": "authorities", "hint": "synonyms for authorities", "clues": ["authority", "government agency", "say-so", "sanction", "authorisation", "self-confidence", "confidence", "regime", "dominance", "self-assurance", "assurance", "potency", "sureness", "federal agency", "office", "agency", "bureau", "government", "authorities"]}, {"answer": "authority", "hint": "synonyms for authority", "clues": ["confidence", "government agency", "dominance", "self-assurance", "self-confidence", "assurance", "potency", "say-so", "sureness", "bureau", "federal agency", "sanction", "office", "authorisation", "agency", "authority"]}, {"answer": "authorization", "hint": "synonyms for authorization", "clues": ["empowerment", "authority", "dominance", "mandate", "potency", "say-so", "sanction", "authorisation"]}, {"answer": "authorship", "hint": "synonyms for authorship", "clues": ["composition", "penning", "paternity", "writing", "authorship"]}, {"answer": "auto", "hint": "synonyms for auto", "clues": ["car", "motorcar", "automobile", "machine", "auto"]}, {"answer": "auto-mechanic", "hint": "synonyms for auto-mechanic", "clues": ["car-mechanic", "mechanic", "grease monkey", "automobile mechanic", "auto-mechanic"]}, {"answer": "auto_maker", "hint": "synonyms for auto maker", "clues": ["car manufacturer", "carmaker", "automaker", "auto manufacturer"]}, {"answer": "auto_manufacturer", "hint": "synonyms for auto manufacturer", "clues": ["car manufacturer", "carmaker", "automaker", "auto manufacturer"]}, {"answer": "autobus", "hint": "synonyms for autobus", "clues": ["omnibus", "coach", "motorcoach", "jitney", "charabanc", "motorbus", "passenger vehicle", "double-decker", "bus", "autobus"]}, {"answer": "autoimmune_diabetes", "hint": "synonyms for autoimmune diabetes", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "type I diabetes", "insulin-dependent diabetes mellitus", "autoimmune diabetes"]}, {"answer": "automaker", "hint": "synonyms for automaker", "clues": ["car manufacturer", "carmaker", "auto manufacturer", "auto maker"]}, {"answer": "automated_teller", "hint": "synonyms for automated teller", "clues": ["cash machine", "automatic teller", "automated teller machine", "ATM", "cash dispenser"]}, {"answer": "automated_teller_machine", "hint": "synonyms for automated teller machine", "clues": ["cash machine", "automatic teller", "ATM", "cash dispenser", "automatic teller machine"]}, {"answer": "automatic_data_processing_system", "hint": "synonyms for automatic data processing system", "clues": ["computing system", "computer system", "ADP system", "ADPS", "automatic data processing system"]}, {"answer": "automatic_teller", "hint": "synonyms for automatic teller", "clues": ["cash machine", "automated teller machine", "ATM", "cash dispenser", "automated teller"]}, {"answer": "automatic_teller_machine", "hint": "synonyms for automatic teller machine", "clues": ["cash machine", "automatic teller", "automated teller machine", "ATM", "cash dispenser"]}, {"answer": "automaton", "hint": "synonyms for automaton", "clues": ["golem", "zombi", "robot", "automaton"]}, {"answer": "automobile", "hint": "synonyms for automobile", "clues": ["car", "auto", "motorcar", "machine", "automobile"]}, {"answer": "automobile_horn", "hint": "synonyms for automobile horn", "clues": ["car horn", "horn", "hooter", "motor horn", "automobile horn"]}, {"answer": "automobile_mechanic", "hint": "synonyms for automobile mechanic", "clues": ["car-mechanic", "grease monkey", "mechanic", "auto-mechanic", "automobile mechanic"]}, {"answer": "autonomy", "hint": "synonyms for autonomy", "clues": ["self-reliance", "self-sufficiency", "self-direction", "liberty", "autonomy"]}, {"answer": "autopsy", "hint": "synonyms for autopsy", "clues": ["necropsy", "postmortem", "PM", "post-mortem examination", "autopsy"]}, {"answer": "avarice", "hint": "synonyms for avarice", "clues": ["avaritia", "greed", "rapacity", "cupidity", "avariciousness", "covetousness", "avarice"]}, {"answer": "avaritia", "hint": "synonyms for avaritia", "clues": ["avarice", "rapacity", "greed", "covetousness", "avaritia"]}, {"answer": "aviation", "hint": "synonyms for aviation", "clues": ["air", "air travel", "airmanship", "air power", "aviation"]}, {"answer": "aviator", "hint": "synonyms for aviator", "clues": ["flyer", "flier", "aeronaut", "airman", "aviator"]}, {"answer": "avocation", "hint": "synonyms for avocation", "clues": ["hobby", "spare-time activity", "pursuit", "by-line", "sideline", "avocation"]}, {"answer": "avoirdupois", "hint": "synonyms for avoirdupois", "clues": ["avoirdupois weight", "fat", "blubber", "fatness", "avoirdupois"]}, {"answer": "avon", "hint": "synonyms for avon", "clues": ["Avon", "Upper Avon River", "River Avon", "Upper Avon"]}, {"answer": "avower", "hint": "synonyms for avower", "clues": ["asserter", "asseverator", "affirmer", "declarer", "avower"]}, {"answer": "award", "hint": "synonyms for award", "clues": ["honour", "laurels", "prize", "accolade", "awarding"]}, {"answer": "awareness", "hint": "synonyms for awareness", "clues": ["cognizance", "consciousness", "sentience", "knowingness", "awareness"]}, {"answer": "awkwardness", "hint": "synonyms for awkwardness", "clues": ["stiffness", "cumbersomeness", "maladroitness", "gracelessness", "ineptitude", "slowness", "unwieldiness", "clumsiness", "ineptness", "nuisance value", "awkwardness"]}, {"answer": "axis", "hint": "synonyms for axis", "clues": ["bloc", "axis of rotation", "axis vertebra", "Axis"]}, {"answer": "ayatollah_khomeini", "hint": "synonyms for ayatollah khomeini", "clues": ["Khomeini", "Ayatollah Khomeini", "Ruholla Khomeini", "Ayatollah Ruholla Khomeini"]}, {"answer": "ayatollah_ruholla_khomeini", "hint": "synonyms for ayatollah ruholla khomeini", "clues": ["Khomeini", "Ayatollah Khomeini", "Ruholla Khomeini", "Ayatollah Ruholla Khomeini"]}, {"answer": "az", "hint": "synonyms for az", "clues": ["Grand Canyon State", "azimuth", "AZ", "Arizona"]}, {"answer": "azt", "hint": "synonyms for azt", "clues": ["ZDV", "Retrovir", "AZT", "zidovudine"]}, {"answer": "b", "hint": "synonyms for b", "clues": ["B-complex vitamin", "B vitamin", "atomic number 5", "B", "B complex", "vitamin B", "vitamin B complex", "group B", "type B", "barn", "boron", "Bel"]}, {"answer": "b-complex_vitamin", "hint": "synonyms for b-complex vitamin", "clues": ["B-complex vitamin", "B complex", "B vitamin", "B", "vitamin B", "vitamin B complex"]}, {"answer": "b._f._skinner", "hint": "synonyms for b. f. skinner", "clues": ["Burrhus Frederic Skinner", "B. F. Skinner", "Fred Skinner", "Skinner"]}, {"answer": "b.t.u.", "hint": "synonyms for b.t.u.", "clues": ["B.T.U.", "kW-hr", "kilowatt hour", "Board of Trade unit"]}, {"answer": "b_complex", "hint": "synonyms for b complex", "clues": ["B-complex vitamin", "B complex", "B vitamin", "B", "vitamin B", "vitamin B complex"]}, {"answer": "b_vitamin", "hint": "synonyms for b vitamin", "clues": ["B-complex vitamin", "B complex", "B vitamin", "B", "vitamin B", "vitamin B complex"]}, {"answer": "ba", "hint": "synonyms for ba", "clues": ["Artium Baccalaurens", "BA", "AB", "barium", "Bachelor of Arts", "atomic number 56"]}, {"answer": "baal_merodach", "hint": "synonyms for baal merodach", "clues": ["Bel-Merodach", "Marduk", "Baal Merodach", "Merodach"]}, {"answer": "babbler", "hint": "synonyms for babbler", "clues": ["chatterer", "prater", "spouter", "chatterbox", "magpie", "babbler"]}, {"answer": "babe_didrikson", "hint": "synonyms for babe didrikson", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "babe_ruth", "hint": "synonyms for babe ruth", "clues": ["Ruth", "Babe Ruth", "Sultan of Swat", "George Herman Ruth"]}, {"answer": "babe_zaharias", "hint": "synonyms for babe zaharias", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "baby", "hint": "synonyms for baby", "clues": ["babe", "infant", "child", "sister", "baby"]}, {"answer": "baby_buggy", "hint": "synonyms for baby buggy", "clues": ["pusher", "go-cart", "carriage", "pushchair", "baby carriage", "pram", "stroller", "perambulator", "baby buggy"]}, {"answer": "baby_carriage", "hint": "synonyms for baby carriage", "clues": ["pusher", "go-cart", "carriage", "pushchair", "baby buggy", "pram", "stroller", "perambulator", "baby carriage"]}, {"answer": "baby_grand", "hint": "synonyms for baby grand", "clues": ["parlor grand piano", "parlor grand", "baby grand piano", "baby grand"]}, {"answer": "baby_grand_piano", "hint": "synonyms for baby grand piano", "clues": ["parlor grand piano", "parlor grand", "baby grand", "baby grand piano"]}, {"answer": "bacchanalia", "hint": "synonyms for bacchanalia", "clues": ["orgy", "riot", "Dionysia", "bacchanal", "debauchery", "drunken revelry", "debauch", "saturnalia"]}, {"answer": "bachelor_of_arts", "hint": "synonyms for bachelor of arts", "clues": ["Artium Baccalaurens", "BA", "Bachelor of Arts", "AB"]}, {"answer": "back_breaker", "hint": "synonyms for back breaker", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "window pane", "acid", "back breaker"]}, {"answer": "back_pack", "hint": "synonyms for back pack", "clues": ["backpack", "haversack", "knapsack", "packsack", "rucksack"]}, {"answer": "back_talk", "hint": "synonyms for back talk", "clues": ["sass", "mouth", "backtalk", "lip"]}, {"answer": "backbiter", "hint": "synonyms for backbiter", "clues": ["libeler", "slanderer", "defamer", "traducer", "vilifier", "maligner", "backbiter"]}, {"answer": "backbone", "hint": "synonyms for backbone", "clues": ["vertebral column", "mainstay", "spine", "grit", "anchor", "keystone", "guts", "rachis", "spinal column", "back", "linchpin", "gumption", "sand", "moxie", "backbone"]}, {"answer": "background", "hint": "synonyms for background", "clues": ["backcloth", "screen background", "ground", "desktop", "background knowledge", "setting", "backdrop", "scope", "background signal", "background"]}, {"answer": "backing", "hint": "synonyms for backing", "clues": ["support", "backup", "financial backing", "funding", "patronage", "financial support", "championship", "mount", "backing"]}, {"answer": "backpack", "hint": "synonyms for backpack", "clues": ["haversack", "knapsack", "packsack", "rucksack", "back pack"]}, {"answer": "backsheesh", "hint": "synonyms for backsheesh", "clues": ["pourboire", "gratuity", "tip", "bakshis", "baksheesh"]}, {"answer": "backside", "hint": "synonyms for backside", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "buttocks", "bum", "posterior", "keister", "rump", "tail", "back end", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "backside"]}, {"answer": "backsliding", "hint": "synonyms for backsliding", "clues": ["relapsing", "reverting", "relapse", "lapse", "reversion", "backsliding"]}, {"answer": "backtalk", "hint": "synonyms for backtalk", "clues": ["sass", "mouth", "lip", "back talk"]}, {"answer": "backup", "hint": "synonyms for backup", "clues": ["support", "stand-in", "fill-in", "substitute", "accompaniment", "musical accompaniment", "computer backup", "reliever", "backup man", "backing", "patronage", "relief", "championship", "backup"]}, {"answer": "backup_man", "hint": "synonyms for backup man", "clues": ["backup", "stand-in", "fill-in", "substitute", "relief", "reliever", "backup man"]}, {"answer": "backwardness", "hint": "synonyms for backwardness", "clues": ["slowness", "retardation", "subnormality", "mental retardation", "backwardness"]}, {"answer": "backwash", "hint": "synonyms for backwash", "clues": ["race", "wash", "slipstream", "airstream", "wake", "aftermath", "backwash"]}, {"answer": "bacon", "hint": "synonyms for bacon", "clues": ["Francis Bacon", "Roger Bacon", "Baron Verulam", "Bacon", "Viscount St. Albans"]}, {"answer": "bad_hat", "hint": "synonyms for bad hat", "clues": ["troublemaker", "troubler", "mischief-maker", "bad hat"]}, {"answer": "bad_luck", "hint": "synonyms for bad luck", "clues": ["misfortune", "ill luck", "mishap", "tough luck", "mischance", "bad luck"]}, {"answer": "badness", "hint": "synonyms for badness", "clues": ["severity", "bad", "naughtiness", "mischievousness", "severeness", "badness"]}, {"answer": "baeda", "hint": "synonyms for baeda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "bafflement", "hint": "synonyms for bafflement", "clues": ["mystification", "puzzlement", "bewilderment", "obfuscation", "bemusement", "befuddlement", "bafflement"]}, {"answer": "bag", "hint": "synonyms for bag", "clues": ["base", "cup of tea", "travelling bag", "suitcase", "bagful", "pocketbook", "purse", "dish", "old bag", "handbag", "grip", "bag"]}, {"answer": "bagatelle", "hint": "synonyms for bagatelle", "clues": ["fluff", "frivolity", "frippery", "bar billiards", "bagatelle"]}, {"answer": "bagman", "hint": "synonyms for bagman", "clues": ["roadman", "commercial traveler", "traveling salesman", "bagman"]}, {"answer": "bagnio", "hint": "synonyms for bagnio", "clues": ["house of ill repute", "bordello", "sporting house", "whorehouse", "house of prostitution", "cathouse", "brothel", "bawdyhouse", "bathhouse", "bagnio"]}, {"answer": "bahasa_kebangsaan", "hint": "synonyms for bahasa kebangsaan", "clues": ["Bahasa Kebangsaan", "Bahasa Melayu", "Malaysian", "Bahasa Malaysia"]}, {"answer": "bahasa_malaysia", "hint": "synonyms for bahasa malaysia", "clues": ["Bahasa Kebangsaan", "Bahasa Melayu", "Malaysian", "Bahasa Malaysia"]}, {"answer": "bahasa_melayu", "hint": "synonyms for bahasa melayu", "clues": ["Bahasa Kebangsaan", "Bahasa Melayu", "Malaysian", "Bahasa Malaysia"]}, {"answer": "bailiwick", "hint": "synonyms for bailiwick", "clues": ["field of study", "subject field", "study", "field", "subject area", "subject", "discipline", "bailiwick"]}, {"answer": "bait", "hint": "synonyms for bait", "clues": ["hook", "lure", "decoy", "come-on", "sweetener", "bait"]}, {"answer": "baker's_dozen", "hint": "synonyms for baker's dozen", "clues": ["13", "thirteen", "long dozen", "XIII", "baker's dozen"]}, {"answer": "baking_soda", "hint": "synonyms for baking soda", "clues": ["saleratus", "sodium hydrogen carbonate", "bicarbonate of soda", "sodium bicarbonate", "baking soda"]}, {"answer": "baksheesh", "hint": "synonyms for baksheesh", "clues": ["pourboire", "gratuity", "backsheesh", "tip", "bakshis"]}, {"answer": "bakshis", "hint": "synonyms for bakshis", "clues": ["pourboire", "gratuity", "backsheesh", "tip", "bakshish"]}, {"answer": "bakshish", "hint": "synonyms for bakshish", "clues": ["pourboire", "gratuity", "backsheesh", "tip", "bakshis"]}, {"answer": "balance", "hint": "synonyms for balance", "clues": ["proportion", "proportionality", "counterpoise", "equipoise", "rest", "symmetricalness", "counterweight", "balance wheel", "remainder", "Libra the Balance", "Libra", "Libra the Scales", "equaliser", "counterbalance", "Balance", "residuum", "correspondence", "equilibrium", "symmetry", "residual", "residue"]}, {"answer": "baldwin", "hint": "synonyms for baldwin", "clues": ["James Baldwin", "Stanley Baldwin", "James Arthur Baldwin", "1st Earl Baldwin of Bewdley", "Baldwin"]}, {"answer": "balk", "hint": "synonyms for balk", "clues": ["rafter", "deterrent", "hinderance", "impediment", "handicap", "baulk", "check"]}, {"answer": "balkans", "hint": "synonyms for balkans", "clues": ["Balkan", "Balkan Peninsula", "Balkan Mountain Range", "Balkan Mountains"]}, {"answer": "ball", "hint": "synonyms for ball", "clues": ["clod", "lump", "glob", "egg", "Lucille Ball", "bollock", "chunk", "musket ball", "nut", "orchis", "Ball", "orb", "testicle", "testis", "formal"]}, {"answer": "ball-and-socket_joint", "hint": "synonyms for ball-and-socket joint", "clues": ["cotyloid joint", "enarthrodial joint", "articulatio spheroidea", "spheroid joint", "enarthrosis", "ball-and-socket joint"]}, {"answer": "ball_of_fire", "hint": "synonyms for ball of fire", "clues": ["go-getter", "powerhouse", "fireball", "human dynamo", "whizz-kid", "ball of fire"]}, {"answer": "ballista", "hint": "synonyms for ballista", "clues": ["catapult", "arbalest", "onager", "bricole", "trebucket", "mangonel", "ballista"]}, {"answer": "ballock", "hint": "synonyms for ballock", "clues": ["nut", "orchis", "testicle", "ball", "egg", "testis", "bollock"]}, {"answer": "balm", "hint": "synonyms for balm", "clues": ["unguent", "salve", "ointment", "unction", "balm"]}, {"answer": "baloney", "hint": "synonyms for baloney", "clues": ["tommyrot", "tarradiddle", "tosh", "bilgewater", "bosh", "drool", "twaddle", "humbug", "boloney"]}, {"answer": "balusters", "hint": "synonyms for balusters", "clues": ["baluster", "balustrade", "banister", "handrail"]}, {"answer": "balustrade", "hint": "synonyms for balustrade", "clues": ["balusters", "banister", "handrail", "balustrade"]}, {"answer": "bam", "hint": "synonyms for bam", "clues": ["blast", "bang", "eruption", "clap", "Bam"]}, {"answer": "ban", "hint": "synonyms for ban", "clues": ["BAN", "forbidding", "prohibition", "forbiddance", "proscription", "Bachelor of Arts in Nursing", "banning"]}, {"answer": "banality", "hint": "synonyms for banality", "clues": ["commonplace", "cliche", "platitude", "bromide", "banality"]}, {"answer": "band", "hint": "synonyms for band", "clues": ["lot", "dance band", "striation", "stripe", "banding", "ring", "stria", "set", "circle", "dance orchestra", "isthmus"]}, {"answer": "band_aid", "hint": "synonyms for band aid", "clues": ["Band Aid", "quickie", "quicky", "quick fix"]}, {"answer": "bandelet", "hint": "synonyms for bandelet", "clues": ["bandlet", "square and rabbet", "annulet", "bandelette"]}, {"answer": "banding", "hint": "synonyms for banding", "clues": ["striation", "band", "stripe", "stria"]}, {"answer": "bandy_leg", "hint": "synonyms for bandy leg", "clues": ["bow leg", "tibia vara", "genu varum", "bandyleg"]}, {"answer": "bandy_legs", "hint": "synonyms for bandy legs", "clues": ["bow leg", "tibia vara", "bandyleg", "genu varum"]}, {"answer": "bandyleg", "hint": "synonyms for bandyleg", "clues": ["bow leg", "bandy leg", "tibia vara", "genu varum"]}, {"answer": "bangle", "hint": "synonyms for bangle", "clues": ["trinket", "gaud", "bracelet", "gewgaw", "novelty", "bauble", "fallal", "bangle"]}, {"answer": "banister", "hint": "synonyms for banister", "clues": ["balusters", "bannister", "handrail", "balustrade"]}, {"answer": "bank", "hint": "synonyms for bank", "clues": ["banking concern", "bank building", "banking company", "coin bank", "money box", "cant", "savings bank", "camber", "depository financial institution", "bank"]}, {"answer": "bank_bill", "hint": "synonyms for bank bill", "clues": ["note", "government note", "banker's bill", "bill", "Federal Reserve note", "bank note", "greenback", "bank bill"]}, {"answer": "bank_line", "hint": "synonyms for bank line", "clues": ["credit line", "personal credit line", "line of credit", "line", "personal line of credit", "bank line"]}, {"answer": "bank_note", "hint": "synonyms for bank note", "clues": ["note", "government note", "banker's bill", "bill", "Federal Reserve note", "bank bill", "greenback", "banknote"]}, {"answer": "banker's_bill", "hint": "synonyms for banker's bill", "clues": ["note", "government note", "bill", "Federal Reserve note", "bank note", "bank bill", "greenback", "banker's bill"]}, {"answer": "banknote", "hint": "synonyms for banknote", "clues": ["note", "government note", "banker's bill", "bill", "Federal Reserve note", "bank note", "bank bill", "greenback"]}, {"answer": "banks", "hint": "synonyms for banks", "clues": ["banking concern", "bank building", "banking company", "coin bank", "Banks", "Sir Joseph Banks", "money box", "cant", "savings bank", "camber", "depository financial institution"]}, {"answer": "bannister", "hint": "synonyms for bannister", "clues": ["Bannister", "Sir Roger Gilbert Bannister", "Roger Bannister", "balustrade", "balusters", "handrail"]}, {"answer": "bar", "hint": "synonyms for bar", "clues": ["legal profession", "taproom", "stripe", "cake", "saloon", "barroom", "streak", "legal community", "measure", "BAR", "Browning automatic rifle", "prevention", "ginmill"]}, {"answer": "barb", "hint": "synonyms for barb", "clues": ["shaft", "shot", "slam", "gibe", "jibe", "dig", "barb"]}, {"answer": "barbarity", "hint": "synonyms for barbarity", "clues": ["atrociousness", "atrocity", "barbarism", "barbarousness", "savagery", "heinousness", "brutality", "barbarity"]}, {"answer": "barbarossa", "hint": "synonyms for barbarossa", "clues": ["Frederick I", "Frederick Barbarossa", "Khayr ad-Din", "Barbarossa"]}, {"answer": "barbarousness", "hint": "synonyms for barbarousness", "clues": ["heinousness", "atrociousness", "atrocity", "barbarity", "barbarousness"]}, {"answer": "barbital", "hint": "synonyms for barbital", "clues": ["diethylmalonylurea", "barbitone", "diethylbarbituric acid", "veronal", "barbital"]}, {"answer": "barbitone", "hint": "synonyms for barbitone", "clues": ["diethylmalonylurea", "diethylbarbituric acid", "veronal", "barbital", "barbitone"]}, {"answer": "bareness", "hint": "synonyms for bareness", "clues": ["starkness", "desolation", "bleakness", "nakedness", "bareness"]}, {"answer": "baring", "hint": "synonyms for baring", "clues": ["stripping", "husking", "denudation", "uncovering", "baring"]}, {"answer": "barium_sulphate", "hint": "synonyms for barium sulphate", "clues": ["barytes", "blanc fixe", "barium sulfate", "barite", "heavy spar"]}, {"answer": "barkeep", "hint": "synonyms for barkeep", "clues": ["barman", "mixologist", "bartender", "barkeeper"]}, {"answer": "barkeeper", "hint": "synonyms for barkeeper", "clues": ["barman", "barkeep", "bartender", "mixologist"]}, {"answer": "barman", "hint": "synonyms for barman", "clues": ["barkeep", "mixologist", "bartender", "barman"]}, {"answer": "barnstormer", "hint": "synonyms for barnstormer", "clues": ["play-actor", "stunt flier", "trouper", "stunt pilot", "barnstormer"]}, {"answer": "baron", "hint": "synonyms for baron", "clues": ["king", "business leader", "power", "tycoon", "mogul", "magnate", "big businessman", "top executive", "baron"]}, {"answer": "baron_clive", "hint": "synonyms for baron clive", "clues": ["Robert Clive", "Baron Clive of Plassey", "Baron Clive", "Clive"]}, {"answer": "baron_clive_of_plassey", "hint": "synonyms for baron clive of plassey", "clues": ["Robert Clive", "Baron Clive of Plassey", "Baron Clive", "Clive"]}, {"answer": "baron_georges_cuvier", "hint": "synonyms for baron georges cuvier", "clues": ["Cuvier", "Georges Cuvier", "Georges Leopold Chretien Frederic Dagobert Cuvier", "Baron Georges Cuvier"]}, {"answer": "baron_hugh_caswall_tremenheere_dowding", "hint": "synonyms for baron hugh caswall tremenheere dowding", "clues": ["Dowdy", "Hugh Dowding", "Dowding", "Baron Hugh Caswall Tremenheere Dowding"]}, {"answer": "baron_olivier_of_birghton", "hint": "synonyms for baron olivier of birghton", "clues": ["Sir Laurence Kerr Olivier", "Olivier", "Laurence Olivier", "Baron Olivier of Birghton"]}, {"answer": "baron_snow_of_leicester", "hint": "synonyms for baron snow of leicester", "clues": ["Snow", "Charles Percy Snow", "Baron Snow of Leicester", "C. P. Snow"]}, {"answer": "baron_verulam", "hint": "synonyms for baron verulam", "clues": ["Francis Bacon", "Bacon", "Viscount St. Albans", "Baron Verulam"]}, {"answer": "baroness_dudevant", "hint": "synonyms for baroness dudevant", "clues": ["Amandine Aurore Lucie Dupin", "Sand", "George Sand", "Baroness Dudevant"]}, {"answer": "baroness_karen_blixen", "hint": "synonyms for baroness karen blixen", "clues": ["Dinesen", "Isak Dinesen", "Karen Blixen", "Baroness Karen Blixen", "Blixen"]}, {"answer": "baroness_thatcher_of_kesteven", "hint": "synonyms for baroness thatcher of kesteven", "clues": ["Margaret Hilda Thatcher", "Thatcher", "Iron Lady", "Baroness Thatcher of Kesteven"]}, {"answer": "barrage", "hint": "synonyms for barrage", "clues": ["outpouring", "bombardment", "shelling", "battery", "barrage fire", "onslaught", "barrage"]}, {"answer": "barrage_fire", "hint": "synonyms for barrage fire", "clues": ["barrage", "bombardment", "shelling", "battery", "barrage fire"]}, {"answer": "barrel", "hint": "synonyms for barrel", "clues": ["barrelful", "drum", "bbl", "gun barrel", "cask", "barrel"]}, {"answer": "barrel_organ", "hint": "synonyms for barrel organ", "clues": ["grind organ", "street organ", "hurdy-gurdy", "hand organ", "barrel organ"]}, {"answer": "barrels", "hint": "synonyms for barrels", "clues": ["barrelful", "drum", "bbl", "gun barrel", "cask", "barrel"]}, {"answer": "barrie", "hint": "synonyms for barrie", "clues": ["Sir James Matthew Barrie", "Barrie", "J. M. Barrie", "James Barrie"]}, {"answer": "barroom", "hint": "synonyms for barroom", "clues": ["saloon", "bar", "taproom", "ginmill", "barroom"]}, {"answer": "barrow", "hint": "synonyms for barrow", "clues": ["wheelbarrow", "garden cart", "lawn cart", "grave mound", "burial mound", "barrowful", "tumulus", "barrow"]}, {"answer": "barrymore", "hint": "synonyms for barrymore", "clues": ["Georgiana Emma Barrymore", "Maurice Barrymore", "Ethel Barrymore", "Lionel Barrymore", "Barrymore", "Herbert Blythe", "John Barrymore"]}, {"answer": "bars", "hint": "synonyms for bars", "clues": ["legal profession", "taproom", "stripe", "cake", "saloon", "barroom", "bar", "measure", "parallel bars", "legal community", "streak", "Browning automatic rifle", "prevention", "ginmill"]}, {"answer": "bartender", "hint": "synonyms for bartender", "clues": ["barman", "barkeep", "mixologist", "bartender"]}, {"answer": "barth", "hint": "synonyms for barth", "clues": ["Barth", "Karl Barth", "John Simmons Barth", "John Barth"]}, {"answer": "bartlett", "hint": "synonyms for bartlett", "clues": ["Robert Abram Bartlett", "John Bartlett", "Robert Bartlett", "bartlett pear", "Captain Bob", "Bartlett"]}, {"answer": "baruch", "hint": "synonyms for baruch", "clues": ["Book of Baruch", "Bernard Mannes Baruch", "Bernard Baruch", "Baruch"]}, {"answer": "baruch_de_spinoza", "hint": "synonyms for baruch de spinoza", "clues": ["Baruch de Spinoza", "de Spinoza", "Spinoza", "Benedict de Spinoza"]}, {"answer": "baseness", "hint": "synonyms for baseness", "clues": ["despicability", "sordidness", "contemptibility", "despicableness", "baseness"]}, {"answer": "bash", "hint": "synonyms for bash", "clues": ["do", "belt", "bang", "knock", "smash", "brawl", "bash"]}, {"answer": "basic_principle", "hint": "synonyms for basic principle", "clues": ["basics", "fundamentals", "bedrock", "fundamental principle", "basic principle"]}, {"answer": "basics", "hint": "synonyms for basics", "clues": ["BASIC", "staple", "basic principle", "rudiments", "fundamental principle", "fundamentals", "bedrock"]}, {"answer": "basil", "hint": "synonyms for basil", "clues": ["Basil", "St. Basil", "Basil the Great", "Basil of Caesarea", "sweet basil"]}, {"answer": "basil_of_caesarea", "hint": "synonyms for basil of caesarea", "clues": ["Basil", "St. Basil", "Basil the Great", "Basil of Caesarea"]}, {"answer": "basil_the_great", "hint": "synonyms for basil the great", "clues": ["Basil", "St. Basil", "Basil the Great", "Basil of Caesarea"]}, {"answer": "basin", "hint": "synonyms for basin", "clues": ["basinful", "catchment basin", "catchment area", "washbasin", "lavatory", "washbowl", "drainage area", "drainage basin", "washstand", "river basin", "watershed", "basin"]}, {"answer": "basis", "hint": "synonyms for basis", "clues": ["base", "fundament", "cornerstone", "foundation", "ground", "groundwork", "footing", "basis"]}, {"answer": "basket", "hint": "synonyms for basket", "clues": ["basketball hoop", "hoop", "field goal", "basketful", "handbasket", "basket"]}, {"answer": "basque_fatherland_and_liberty", "hint": "synonyms for basque fatherland and liberty", "clues": ["Basque Homeland and Freedom", "ETA", "Euskadi ta Askatasuna", "Basque Fatherland and Liberty"]}, {"answer": "basque_homeland_and_freedom", "hint": "synonyms for basque homeland and freedom", "clues": ["Basque Homeland and Freedom", "ETA", "Euskadi ta Askatasuna", "Basque Fatherland and Liberty"]}, {"answer": "bass_fiddle", "hint": "synonyms for bass fiddle", "clues": ["double bass", "bull fiddle", "string bass", "contrabass", "bass viol", "bass fiddle"]}, {"answer": "bass_viol", "hint": "synonyms for bass viol", "clues": ["double bass", "bass fiddle", "bull fiddle", "viola da gamba", "string bass", "contrabass", "gamba", "bass viol"]}, {"answer": "bat", "hint": "synonyms for bat", "clues": ["cricket bat", "squash racket", "at-bat", "bat"]}, {"answer": "batch", "hint": "synonyms for batch", "clues": ["great deal", "mint", "clutch", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "batch"]}, {"answer": "bath", "hint": "synonyms for bath", "clues": ["bathing tub", "Bath", "bathroom", "tub", "bathtub"]}, {"answer": "bathing_costume", "hint": "synonyms for bathing costume", "clues": ["swimwear", "swimsuit", "bathing suit", "swimming costume", "bathing costume"]}, {"answer": "bathing_suit", "hint": "synonyms for bathing suit", "clues": ["swimwear", "bathing costume", "swimsuit", "swimming costume", "bathing suit"]}, {"answer": "bathroom", "hint": "synonyms for bathroom", "clues": ["lav", "can", "john", "lavatory", "toilet", "bath", "privy", "bathroom"]}, {"answer": "baton", "hint": "synonyms for baton", "clues": ["billystick", "nightstick", "billy club", "truncheon", "billy", "wand", "baton"]}, {"answer": "battalion", "hint": "synonyms for battalion", "clues": ["pack", "large number", "plurality", "multitude", "battalion"]}, {"answer": "battercake", "hint": "synonyms for battercake", "clues": ["hot cake", "griddlecake", "flapjack", "flannel cake", "flapcake", "pancake", "battercake"]}, {"answer": "battery", "hint": "synonyms for battery", "clues": ["bombardment", "shelling", "barrage", "barrage fire", "assault and battery", "stamp battery", "electric battery", "battery"]}, {"answer": "battery-acid", "hint": "synonyms for battery-acid", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "loony toons", "window pane", "acid", "back breaker", "battery-acid"]}, {"answer": "battle", "hint": "synonyms for battle", "clues": ["struggle", "fight", "conflict", "engagement", "battle"]}, {"answer": "battle_born_state", "hint": "synonyms for battle born state", "clues": ["Battle Born State", "Silver State", "Sagebrush State", "Nevada", "NV"]}, {"answer": "battle_cry", "hint": "synonyms for battle cry", "clues": ["watchword", "war whoop", "cry", "rallying cry", "war cry", "battle cry"]}, {"answer": "battle_of_soissons-reims", "hint": "synonyms for battle of soissons-reims", "clues": ["battle of the Aisne", "battle of the Chemin-des-Dames", "battle of Soissons-Reims", "Soissons"]}, {"answer": "battle_of_the_aisne", "hint": "synonyms for battle of the aisne", "clues": ["battle of the Aisne", "battle of the Chemin-des-Dames", "battle of Soissons-Reims", "Soissons"]}, {"answer": "battle_of_the_chemin-des-dames", "hint": "synonyms for battle of the chemin-des-dames", "clues": ["battle of the Aisne", "battle of the Chemin-des-Dames", "battle of Soissons-Reims", "Soissons"]}, {"answer": "battle_of_the_marne", "hint": "synonyms for battle of the marne", "clues": ["Chateau-Thierry", "Battle of the Marne", "Marne River", "Belleau Wood"]}, {"answer": "battle_of_ypres", "hint": "synonyms for battle of ypres", "clues": ["Ypres", "second battle of Ypres", "third battle of Ypres", "battle of Ypres"]}, {"answer": "battlefield", "hint": "synonyms for battlefield", "clues": ["battleground", "field of honor", "field of battle", "field", "battlefield"]}, {"answer": "battleground", "hint": "synonyms for battleground", "clues": ["battlefield", "field of honor", "field of battle", "field", "battleground"]}, {"answer": "battler", "hint": "synonyms for battler", "clues": ["belligerent", "fighter", "scrapper", "combatant", "battler"]}, {"answer": "bauble", "hint": "synonyms for bauble", "clues": ["trinket", "gaud", "gewgaw", "novelty", "bangle", "fallal", "bauble"]}, {"answer": "baulk", "hint": "synonyms for baulk", "clues": ["rafter", "deterrent", "hinderance", "impediment", "handicap", "balk", "check"]}, {"answer": "bawd", "hint": "synonyms for bawd", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "prostitute", "lady of pleasure", "tart", "cocotte", "whore", "woman of the street", "cyprian", "bawd"]}, {"answer": "bawdiness", "hint": "synonyms for bawdiness", "clues": ["salacity", "obscenity", "lewdness", "salaciousness", "bawdiness"]}, {"answer": "bawdyhouse", "hint": "synonyms for bawdyhouse", "clues": ["bagnio", "house of ill repute", "bordello", "sporting house", "whorehouse", "house of prostitution", "cathouse", "brothel", "bawdyhouse"]}, {"answer": "bawler", "hint": "synonyms for bawler", "clues": ["screamer", "yeller", "screecher", "bellower", "shouter", "roarer", "bawler"]}, {"answer": "bawling_out", "hint": "synonyms for bawling out", "clues": ["chewing out", "castigation", "dressing down", "earful", "going-over", "upbraiding", "bawling out"]}, {"answer": "bay_state", "hint": "synonyms for bay state", "clues": ["Old Colony", "Massachusetts", "Bay State", "MA"]}, {"answer": "bay_window", "hint": "synonyms for bay window", "clues": ["bow window", "tummy", "potbelly", "pot", "corporation", "bay window"]}, {"answer": "bayard", "hint": "synonyms for bayard", "clues": ["Pierre Terrail", "Bayard", "Chevalier de Bayard", "Seigneur de Bayard"]}, {"answer": "bayer", "hint": "synonyms for bayer", "clues": ["acetylsalicylic acid", "St. Joseph", "Bayer", "aspirin", "Empirin"]}, {"answer": "bayt_lahm", "hint": "synonyms for bayt lahm", "clues": ["Bethlehem Ephrathah", "Bethlehem", "Bethlehem-Judah", "Bayt Lahm"]}, {"answer": "bbs", "hint": "synonyms for bbs", "clues": ["electronic bulletin board", "BB shot", "bulletin board system", "BB", "bulletin board"]}, {"answer": "be", "hint": "synonyms for be", "clues": ["Be", "atomic number 4", "beryllium", "glucinium"]}, {"answer": "beach_waggon", "hint": "synonyms for beach waggon", "clues": ["beach wagon", "station wagon", "estate car", "waggon"]}, {"answer": "beach_wagon", "hint": "synonyms for beach wagon", "clues": ["beach waggon", "station wagon", "estate car", "waggon"]}, {"answer": "beacon", "hint": "synonyms for beacon", "clues": ["pharos", "beacon light", "radio beacon", "beacon fire", "lighthouse", "beacon"]}, {"answer": "bead", "hint": "synonyms for bead", "clues": ["drop", "pearl", "beading", "astragal", "beadwork"]}, {"answer": "beads", "hint": "synonyms for beads", "clues": ["bead", "string of beads", "pearl", "drop", "astragal", "beadwork"]}, {"answer": "beak", "hint": "synonyms for beak", "clues": ["schnozzle", "snout", "snoot", "hooter", "honker", "schnoz", "nozzle", "beak"]}, {"answer": "beam", "hint": "synonyms for beam", "clues": ["radio beam", "beam of light", "ray of light", "shaft of light", "balance beam", "light beam", "shaft", "irradiation", "electron beam", "ray", "beam"]}, {"answer": "beam_of_light", "hint": "synonyms for beam of light", "clues": ["shaft", "irradiation", "ray", "shaft of light", "ray of light", "beam", "light beam", "beam of light"]}, {"answer": "bean", "hint": "synonyms for bean", "clues": ["attic", "edible bean", "noggin", "dome", "noodle", "bonce", "bean"]}, {"answer": "bean_town", "hint": "synonyms for bean town", "clues": ["capital of Massachusetts", "Beantown", "Hub of the Universe", "Boston"]}, {"answer": "beantown", "hint": "synonyms for beantown", "clues": ["capital of Massachusetts", "Beantown", "Hub of the Universe", "Boston"]}, {"answer": "bearer", "hint": "synonyms for bearer", "clues": ["holder", "toter", "pallbearer", "carrier", "bearer"]}, {"answer": "beast", "hint": "synonyms for beast", "clues": ["wildcat", "creature", "animal", "brute", "animate being", "wolf", "fauna", "savage", "beast"]}, {"answer": "beating", "hint": "synonyms for beating", "clues": ["licking", "whacking", "drubbing", "lacing", "whipping", "thrashing", "trouncing", "beating"]}, {"answer": "beats", "hint": "synonyms for beats", "clues": ["musical rhythm", "meter", "cadence", "measure", "beat", "beat generation", "pulse", "beatnik", "round", "pulsation", "rhythm", "metre", "heartbeat"]}, {"answer": "beau", "hint": "synonyms for beau", "clues": ["fashion plate", "boyfriend", "swain", "fop", "dandy", "gallant", "sheik", "clotheshorse", "swell", "young man", "fellow", "dude", "beau"]}, {"answer": "beau_monde", "hint": "synonyms for beau monde", "clues": ["smart set", "society", "bon ton", "high society", "beau monde"]}, {"answer": "beauty", "hint": "synonyms for beauty", "clues": ["ravisher", "stunner", "looker", "smasher", "knockout", "peach", "mantrap", "beaut", "sweetheart", "dish", "lulu"]}, {"answer": "beauty_parlor", "hint": "synonyms for beauty parlor", "clues": ["beauty parlour", "beauty salon", "salon", "beauty shop"]}, {"answer": "beauty_parlour", "hint": "synonyms for beauty parlour", "clues": ["beauty parlor", "salon", "beauty salon", "beauty shop"]}, {"answer": "beauty_salon", "hint": "synonyms for beauty salon", "clues": ["beauty parlour", "salon", "beauty shop", "beauty salon"]}, {"answer": "beauty_shop", "hint": "synonyms for beauty shop", "clues": ["beauty parlour", "salon", "beauty salon", "beauty shop"]}, {"answer": "beaver", "hint": "synonyms for beaver", "clues": ["high hat", "Oregonian", "beaver fur", "top hat", "topper", "Beaver", "dress hat", "castor", "silk hat", "opera hat", "stovepipe"]}, {"answer": "bed_cover", "hint": "synonyms for bed cover", "clues": ["bedspread", "bedcover", "bed covering", "counterpane", "spread"]}, {"answer": "bed_covering", "hint": "synonyms for bed covering", "clues": ["bed cover", "bedspread", "counterpane", "spread"]}, {"answer": "beda", "hint": "synonyms for beda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "bedchamber", "hint": "synonyms for bedchamber", "clues": ["bedroom", "sleeping accommodation", "chamber", "sleeping room", "bedchamber"]}, {"answer": "bedcover", "hint": "synonyms for bedcover", "clues": ["bed cover", "bedspread", "counterpane", "spread"]}, {"answer": "bedding", "hint": "synonyms for bedding", "clues": ["bedclothes", "litter", "bed clothing", "bedding material", "bedding"]}, {"answer": "bede", "hint": "synonyms for bede", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "bedlam", "hint": "synonyms for bedlam", "clues": ["loony bin", "cuckoo's nest", "madhouse", "topsy-turvyness", "sanatorium", "booby hatch", "nut house", "funny house", "funny farm", "snake pit", "chaos", "pandemonium", "topsy-turvydom", "Bedlam", "crazy house"]}, {"answer": "bedrock", "hint": "synonyms for bedrock", "clues": ["fundamentals", "basics", "basic principle", "fundamental principle", "bedrock"]}, {"answer": "bedroom", "hint": "synonyms for bedroom", "clues": ["sleeping room", "sleeping accommodation", "chamber", "bedchamber", "bedroom"]}, {"answer": "bedspread", "hint": "synonyms for bedspread", "clues": ["bed cover", "counterpane", "spread", "bedspread"]}, {"answer": "beef", "hint": "synonyms for beef", "clues": ["boeuf", "squawk", "bitch", "kick", "gripe", "beef"]}, {"answer": "beef_patty", "hint": "synonyms for beef patty", "clues": ["hamburger steak", "chopped steak", "chopsteak", "beef patty"]}, {"answer": "beehive_state", "hint": "synonyms for beehive state", "clues": ["Utah", "Mormon State", "Beehive State", "UT"]}, {"answer": "beelzebub", "hint": "synonyms for beelzebub", "clues": ["Satan", "the Tempter", "Prince of Darkness", "Old Nick", "Beelzebub", "Devil", "Lucifer"]}, {"answer": "befuddlement", "hint": "synonyms for befuddlement", "clues": ["mystification", "puzzlement", "bewilderment", "obfuscation", "bemusement", "bafflement", "befuddlement"]}, {"answer": "beginner", "hint": "synonyms for beginner", "clues": ["initiate", "novice", "father", "founder", "founding father", "tiro", "tyro", "beginner"]}, {"answer": "beguiler", "hint": "synonyms for beguiler", "clues": ["cheat", "charmer", "slicker", "cheater", "deceiver", "trickster", "beguiler"]}, {"answer": "behavior", "hint": "synonyms for behavior", "clues": ["demeanour", "doings", "deportment", "behaviour", "conduct"]}, {"answer": "behaviour", "hint": "synonyms for behaviour", "clues": ["conduct", "demeanour", "doings", "behavior", "deportment"]}, {"answer": "behemoth", "hint": "synonyms for behemoth", "clues": ["goliath", "titan", "giant", "heavyweight", "colossus", "monster", "behemoth"]}, {"answer": "behmen", "hint": "synonyms for behmen", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "beijing", "hint": "synonyms for beijing", "clues": ["Beijing", "capital of Red China", "Peiping", "Peking"]}, {"answer": "beijing_dialect", "hint": "synonyms for beijing dialect", "clues": ["Mandarin Chinese", "Mandarin", "Mandarin dialect", "Beijing dialect"]}, {"answer": "bel-merodach", "hint": "synonyms for bel-merodach", "clues": ["Bel-Merodach", "Marduk", "Baal Merodach", "Merodach"]}, {"answer": "belarus", "hint": "synonyms for belarus", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "belau", "hint": "synonyms for belau", "clues": ["Palau Islands", "Palau", "Pelew", "Belau"]}, {"answer": "beldam", "hint": "synonyms for beldam", "clues": ["beldame", "crone", "witch", "hag"]}, {"answer": "beldame", "hint": "synonyms for beldame", "clues": ["crone", "witch", "hag", "beldam"]}, {"answer": "belem", "hint": "synonyms for belem", "clues": ["Belem", "Para", "Santa Maria de Belem", "St. Mary of Bethlehem", "Feliz Lusitania"]}, {"answer": "belgian_capital", "hint": "synonyms for belgian capital", "clues": ["capital of Belgium", "Brussels", "Bruxelles", "Belgian capital"]}, {"answer": "belgian_congo", "hint": "synonyms for belgian congo", "clues": ["Congo", "Belgian Congo", "Zaire", "Democratic Republic of the Congo"]}, {"answer": "belief", "hint": "synonyms for belief", "clues": ["opinion", "feeling", "impression", "notion", "belief"]}, {"answer": "bell", "hint": "synonyms for bell", "clues": ["chime", "Melville Bell", "Vanessa Stephen", "campana", "Alexander Melville Bell", "toll", "Alexander Bell", "doorbell", "Vanessa Bell", "Alexander Graham Bell", "buzzer", "gong", "bell shape", "ship's bell", "Bell"]}, {"answer": "bell_ringer", "hint": "synonyms for bell ringer", "clues": ["toller", "bull's eye", "home run", "mark", "ringer", "bell ringer"]}, {"answer": "bell_ringing", "hint": "synonyms for bell ringing", "clues": ["canvassing", "electioneering", "carillon playing", "carillon", "bell ringing"]}, {"answer": "bellarmine", "hint": "synonyms for bellarmine", "clues": ["Cardinal Bellarmine", "Bellarmine", "long-beard", "Roberto Francesco Romolo Bellarmine", "greybeard"]}, {"answer": "belleau_wood", "hint": "synonyms for belleau wood", "clues": ["Chateau-Thierry", "Battle of the Marne", "Marne River", "Belleau Wood"]}, {"answer": "belling", "hint": "synonyms for belling", "clues": ["callithump", "shivaree", "charivari", "belling"]}, {"answer": "bellow", "hint": "synonyms for bellow", "clues": ["hollo", "yowl", "Solomon Bellow", "Bellow", "roaring", "Saul Bellow", "hollering", "holla"]}, {"answer": "bellower", "hint": "synonyms for bellower", "clues": ["screamer", "yeller", "screecher", "shouter", "bawler", "roarer", "bellower"]}, {"answer": "bellowing", "hint": "synonyms for bellowing", "clues": ["hollo", "yowl", "bellow", "roar", "hollering", "holla"]}, {"answer": "bellows", "hint": "synonyms for bellows", "clues": ["hollo", "yowl", "bellow", "Solomon Bellow", "roaring", "Saul Bellow", "hollering", "holla"]}, {"answer": "belly", "hint": "synonyms for belly", "clues": ["abdomen", "venter", "paunch", "stomach", "belly"]}, {"answer": "belly_button", "hint": "synonyms for belly button", "clues": ["umbilicus", "navel", "omphalos", "bellybutton"]}, {"answer": "belly_laugh", "hint": "synonyms for belly laugh", "clues": ["scream", "thigh-slapper", "riot", "howler", "sidesplitter", "guffaw", "wow", "belly laugh"]}, {"answer": "bellyacher", "hint": "synonyms for bellyacher", "clues": ["grumbler", "moaner", "sniveller", "whiner", "complainer", "crybaby", "squawker", "bellyacher"]}, {"answer": "bellybutton", "hint": "synonyms for bellybutton", "clues": ["belly button", "umbilicus", "navel", "omphalos"]}, {"answer": "belorussia", "hint": "synonyms for belorussia", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "belt", "hint": "synonyms for belt", "clues": ["belt ammunition", "swath", "rap", "whang", "knock", "smash", "bash", "bang", "whack", "belt"]}, {"answer": "bemusement", "hint": "synonyms for bemusement", "clues": ["mystification", "puzzlement", "befuddlement", "bewilderment", "obfuscation", "bafflement", "bemusement"]}, {"answer": "ben_sira", "hint": "synonyms for ben sira", "clues": ["Ben Sira", "Sirach", "Wisdom of Jesus the Son of Sirach", "Ecclesiasticus"]}, {"answer": "bench", "hint": "synonyms for bench", "clues": ["judiciary", "work bench", "terrace", "Bench"]}, {"answer": "bend", "hint": "synonyms for bend", "clues": ["plication", "crook", "twist", "bending", "flexure", "bend dexter", "turn", "crease", "crimp", "fold", "curve"]}, {"answer": "bender", "hint": "synonyms for bender", "clues": ["breaking ball", "toot", "curve", "carousal", "carouse", "booze-up", "curve ball", "bender"]}, {"answer": "bendopa", "hint": "synonyms for bendopa", "clues": ["Brocadopa", "levodopa", "L-dopa", "Bendopa", "Larodopa"]}, {"answer": "bends", "hint": "synonyms for bends", "clues": ["decompression sickness", "bending", "fold", "plication", "caisson disease", "crook", "air embolism", "twist", "flexure", "bend dexter", "gas embolism", "turn", "crease", "crimp", "curve", "aeroembolism", "bends"]}, {"answer": "benedict", "hint": "synonyms for benedict", "clues": ["Ruth Benedict", "benedick", "Ruth Fulton", "St. Benedict", "Saint Benedict"]}, {"answer": "benedict_de_spinoza", "hint": "synonyms for benedict de spinoza", "clues": ["Baruch de Spinoza", "de Spinoza", "Spinoza", "Benedict de Spinoza"]}, {"answer": "beneficiation", "hint": "synonyms for beneficiation", "clues": ["ore dressing", "mineral dressing", "ore processing", "mineral extraction", "beneficiation"]}, {"answer": "bengal_kino", "hint": "synonyms for bengal kino", "clues": ["butea kino", "butea gum", "Bengal kino", "gum butea"]}, {"answer": "benjamin", "hint": "synonyms for benjamin", "clues": ["benzoin", "Benjamin", "gum benjamin", "asa dulcis", "gum benzoin"]}, {"answer": "benjamin_britten", "hint": "synonyms for benjamin britten", "clues": ["Benjamin Britten", "Edward Benjamin Britten", "Britten", "Lord Britten of Aldeburgh"]}, {"answer": "benjamin_david_goodman", "hint": "synonyms for benjamin david goodman", "clues": ["Benny Goodman", "Goodman", "Benjamin David Goodman", "King of Swing"]}, {"answer": "benjamin_harrison", "hint": "synonyms for benjamin harrison", "clues": ["President Benjamin Harrison", "Harrison", "President Harrison", "Benjamin Harrison"]}, {"answer": "benny_goodman", "hint": "synonyms for benny goodman", "clues": ["Benny Goodman", "Goodman", "Benjamin David Goodman", "King of Swing"]}, {"answer": "benzoin", "hint": "synonyms for benzoin", "clues": ["benjamin", "gum benjamin", "gum benzoin", "asa dulcis", "benzoin"]}, {"answer": "berlin", "hint": "synonyms for berlin", "clues": ["Israel Baline", "Irving Berlin", "Berlin", "German capital"]}, {"answer": "bernoulli", "hint": "synonyms for bernoulli", "clues": ["Johann Bernoulli", "James Bernoulli", "Bernoulli", "Jakob Bernoulli", "Daniel Bernoulli"]}, {"answer": "berra", "hint": "synonyms for berra", "clues": ["Berra", "Yogi", "Yogi Berra", "Lawrence Peter Berra"]}, {"answer": "berth", "hint": "synonyms for berth", "clues": ["moorage", "slip", "mooring", "spot", "billet", "situation", "bunk", "office", "place", "post", "built in bed", "position", "berth"]}, {"answer": "bertrand_arthur_william_russell", "hint": "synonyms for bertrand arthur william russell", "clues": ["Earl Russell", "Russell", "Bertrand Arthur William Russell", "Bertrand Russell"]}, {"answer": "bertrand_russell", "hint": "synonyms for bertrand russell", "clues": ["Earl Russell", "Russell", "Bertrand Arthur William Russell", "Bertrand Russell"]}, {"answer": "bestower", "hint": "synonyms for bestower", "clues": ["giver", "donor", "presenter", "conferrer", "bestower"]}, {"answer": "bethlehem", "hint": "synonyms for bethlehem", "clues": ["Bethlehem", "Bayt Lahm", "Bethlehem Ephrathah", "Bethlehem-Judah"]}, {"answer": "bethlehem-judah", "hint": "synonyms for bethlehem-judah", "clues": ["Bethlehem Ephrathah", "Bethlehem", "Bethlehem-Judah", "Bayt Lahm"]}, {"answer": "bethlehem_ephrathah", "hint": "synonyms for bethlehem ephrathah", "clues": ["Bethlehem Ephrathah", "Bethlehem", "Bethlehem-Judah", "Bayt Lahm"]}, {"answer": "betise", "hint": "synonyms for betise", "clues": ["imbecility", "foolishness", "folly", "stupidity", "betise"]}, {"answer": "betrayer", "hint": "synonyms for betrayer", "clues": ["traitor", "double-dealer", "informer", "rat", "blabber", "double-crosser", "two-timer", "squealer", "betrayer"]}, {"answer": "better_half", "hint": "synonyms for better half", "clues": ["partner", "married person", "spouse", "mate", "better half"]}, {"answer": "betterment", "hint": "synonyms for betterment", "clues": ["advance", "improvement", "melioration", "betterment"]}, {"answer": "betty_friedan", "hint": "synonyms for betty friedan", "clues": ["Betty Friedan", "Betty Naomi Goldstein Friedan", "Friedan", "Betty Naomi Friedan"]}, {"answer": "betty_naomi_friedan", "hint": "synonyms for betty naomi friedan", "clues": ["Betty Friedan", "Betty Naomi Goldstein Friedan", "Friedan", "Betty Naomi Friedan"]}, {"answer": "betty_naomi_goldstein_friedan", "hint": "synonyms for betty naomi goldstein friedan", "clues": ["Betty Friedan", "Betty Naomi Goldstein Friedan", "Friedan", "Betty Naomi Friedan"]}, {"answer": "bewilderment", "hint": "synonyms for bewilderment", "clues": ["mystification", "puzzlement", "befuddlement", "obfuscation", "bemusement", "bafflement", "bewilderment"]}, {"answer": "bh", "hint": "synonyms for bh", "clues": ["Bh", "bohrium", "element 107", "atomic number 107"]}, {"answer": "bible", "hint": "synonyms for bible", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "bicarbonate_of_soda", "hint": "synonyms for bicarbonate of soda", "clues": ["saleratus", "sodium hydrogen carbonate", "baking soda", "sodium bicarbonate", "bicarbonate of soda"]}, {"answer": "bicker", "hint": "synonyms for bicker", "clues": ["spat", "bickering", "squabble", "tiff", "pettifoggery", "fuss"]}, {"answer": "bickering", "hint": "synonyms for bickering", "clues": ["squabble", "spat", "tiff", "pettifoggery", "bicker", "fuss"]}, {"answer": "bid", "hint": "synonyms for bid", "clues": ["bidding", "tender", "play", "command", "dictation", "bid"]}, {"answer": "bida", "hint": "synonyms for bida", "clues": ["El Beda", "capital of Qatar", "Bida", "Doha"]}, {"answer": "bidding", "hint": "synonyms for bidding", "clues": ["bid", "summons", "command", "dictation", "bidding"]}, {"answer": "biff", "hint": "synonyms for biff", "clues": ["punch", "slug", "lick", "poke", "clout", "biff"]}, {"answer": "big_bucks", "hint": "synonyms for big bucks", "clues": ["pile", "megabucks", "bundle", "big money", "big bucks"]}, {"answer": "big_businessman", "hint": "synonyms for big businessman", "clues": ["king", "business leader", "baron", "power", "tycoon", "mogul", "magnate", "top executive", "big businessman"]}, {"answer": "big_cheese", "hint": "synonyms for big cheese", "clues": ["big deal", "big shot", "big wheel", "head honcho", "big fish", "big enchilada", "big gun", "big cheese"]}, {"answer": "big_deal", "hint": "synonyms for big deal", "clues": ["big shot", "big wheel", "head honcho", "big fish", "big enchilada", "big cheese", "big gun", "big deal"]}, {"answer": "big_dipper", "hint": "synonyms for big dipper", "clues": ["Dipper", "Plough", "Wagon", "Big Dipper", "chute-the-chute", "roller coaster", "Wain", "Charles's Wain"]}, {"answer": "big_enchilada", "hint": "synonyms for big enchilada", "clues": ["big deal", "big shot", "big wheel", "big fish", "head honcho", "big cheese", "big gun", "big enchilada"]}, {"answer": "big_fish", "hint": "synonyms for big fish", "clues": ["big deal", "big shot", "big wheel", "head honcho", "big enchilada", "big cheese", "big gun", "big fish"]}, {"answer": "big_gun", "hint": "synonyms for big gun", "clues": ["big deal", "big shot", "big wheel", "head honcho", "big fish", "big enchilada", "big cheese", "big gun"]}, {"answer": "big_h", "hint": "synonyms for big h", "clues": ["scag", "big H", "nose drops", "smack", "hell dust", "thunder", "skag"]}, {"answer": "big_money", "hint": "synonyms for big money", "clues": ["pile", "megabucks", "big bucks", "bundle", "big money"]}, {"answer": "big_shot", "hint": "synonyms for big shot", "clues": ["big deal", "big wheel", "head honcho", "big fish", "big enchilada", "big cheese", "big gun", "big shot"]}, {"answer": "big_wheel", "hint": "synonyms for big wheel", "clues": ["big deal", "big shot", "head honcho", "big fish", "big enchilada", "big cheese", "big gun", "big wheel"]}, {"answer": "bike", "hint": "synonyms for bike", "clues": ["bicycle", "motorcycle", "wheel", "cycle", "bike"]}, {"answer": "bilgewater", "hint": "synonyms for bilgewater", "clues": ["tommyrot", "tarradiddle", "tosh", "baloney", "bosh", "drool", "twaddle", "humbug", "bilgewater"]}, {"answer": "biliousness", "hint": "synonyms for biliousness", "clues": ["temper", "surliness", "peevishness", "pettishness", "snappishness", "irritability", "biliousness"]}, {"answer": "bill", "hint": "synonyms for bill", "clues": ["note", "government note", "billhook", "banker's bill", "Federal Reserve note", "placard", "bank note", "poster", "broadside", "flier", "handbill", "account", "invoice", "flyer", "notice", "throwaway", "card", "measure", "posting", "broadsheet", "visor", "eyeshade", "vizor", "bank bill", "circular", "peak", "greenback", "bill"]}, {"answer": "bill_clinton", "hint": "synonyms for bill clinton", "clues": ["Clinton", "Bill Clinton", "William Jefferson Clinton", "President Clinton"]}, {"answer": "bill_of_fare", "hint": "synonyms for bill of fare", "clues": ["card", "menu", "carte du jour", "carte", "bill of fare"]}, {"answer": "billet", "hint": "synonyms for billet", "clues": ["note", "short letter", "berth", "line", "spot", "situation", "office", "place", "post", "position", "billet"]}, {"answer": "billiard_hall", "hint": "synonyms for billiard hall", "clues": ["billiard room", "billiard parlor", "billiard saloon", "billiard hall"]}, {"answer": "billiard_parlor", "hint": "synonyms for billiard parlor", "clues": ["billiard room", "billiard saloon", "billiard parlour", "billiard hall"]}, {"answer": "billiard_parlour", "hint": "synonyms for billiard parlour", "clues": ["billiard room", "billiard parlor", "billiard saloon", "billiard hall"]}, {"answer": "billiard_room", "hint": "synonyms for billiard room", "clues": ["billiard parlor", "billiard saloon", "billiard hall", "billiard room"]}, {"answer": "billiard_saloon", "hint": "synonyms for billiard saloon", "clues": ["billiard room", "billiard parlor", "billiard hall", "billiard saloon"]}, {"answer": "billy", "hint": "synonyms for billy", "clues": ["nightstick", "billystick", "billy club", "truncheon", "baton", "billy"]}, {"answer": "billy_club", "hint": "synonyms for billy club", "clues": ["billystick", "nightstick", "truncheon", "billy", "baton", "billy club"]}, {"answer": "billystick", "hint": "synonyms for billystick", "clues": ["nightstick", "billy club", "truncheon", "billy", "baton", "billystick"]}, {"answer": "bin", "hint": "synonyms for bin", "clues": ["bank identification number", "BIN", "ABA transit number", "binful"]}, {"answer": "binge", "hint": "synonyms for binge", "clues": ["orgy", "bout", "splurge", "bust", "tear", "binge"]}, {"answer": "bioattack", "hint": "synonyms for bioattack", "clues": ["biological attack", "biological warfare", "BW", "bioattack"]}, {"answer": "biologic_attack", "hint": "synonyms for biologic attack", "clues": ["biological attack", "bioattack", "biological warfare", "BW"]}, {"answer": "biological_attack", "hint": "synonyms for biological attack", "clues": ["biologic attack", "bioattack", "biological warfare", "BW"]}, {"answer": "biological_warfare", "hint": "synonyms for biological warfare", "clues": ["biologic attack", "bioattack", "BW", "biological warfare"]}, {"answer": "bird", "hint": "synonyms for bird", "clues": ["chick", "boo", "dame", "hoot", "shuttle", "wench", "razz", "shuttlecock", "skirt", "raspberry", "Bronx cheer", "doll", "fowl", "snort", "birdie", "hiss", "bird"]}, {"answer": "bird-scarer", "hint": "synonyms for bird-scarer", "clues": ["strawman", "scarer", "scarecrow", "bird-scarer"]}, {"answer": "bird_parker", "hint": "synonyms for bird parker", "clues": ["Charlie Parker", "Yardbird Parker", "Bird Parker", "Parker", "Charles Christopher Parker"]}, {"answer": "biro", "hint": "synonyms for biro", "clues": ["ballpoint pen", "ballpen", "ballpoint", "Biro"]}, {"answer": "birth", "hint": "synonyms for birth", "clues": ["giving birth", "nascence", "birthing", "parturition", "nativity", "parentage"]}, {"answer": "birth_control_device", "hint": "synonyms for birth control device", "clues": ["preventative", "prophylactic device", "contraceptive device", "contraceptive", "birth control device"]}, {"answer": "birth_control_pill", "hint": "synonyms for birth control pill", "clues": ["contraceptive pill", "anovulant", "pill", "anovulatory drug", "oral contraceptive", "birth control pill"]}, {"answer": "birth_defect", "hint": "synonyms for birth defect", "clues": ["congenital defect", "congenital abnormality", "congenital disorder", "birth defect"]}, {"answer": "birth_rate", "hint": "synonyms for birth rate", "clues": ["natality", "birthrate", "fertility rate", "fertility"]}, {"answer": "birthplace", "hint": "synonyms for birthplace", "clues": ["provenience", "place of origin", "cradle", "place of birth", "birthplace"]}, {"answer": "birthrate", "hint": "synonyms for birthrate", "clues": ["natality", "fertility rate", "fertility", "birth rate"]}, {"answer": "bishop_of_rome", "hint": "synonyms for bishop of rome", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "bismarck", "hint": "synonyms for bismarck", "clues": ["Prince Otto Eduard Leopold von Bismarck", "capital of North Dakota", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "bit", "hint": "synonyms for bit", "clues": ["mo", "routine", "spot", "act", "bite", "number", "chip", "snatch", "flake", "turn", "fleck", "second", "moment", "scrap", "piece", "minute", "morsel"]}, {"answer": "bitch", "hint": "synonyms for bitch", "clues": ["squawk", "beef", "cunt", "kick", "gripe", "bitch"]}, {"answer": "bitchiness", "hint": "synonyms for bitchiness", "clues": ["spite", "spitefulness", "nastiness", "cattiness", "bitchiness"]}, {"answer": "bite", "hint": "synonyms for bite", "clues": ["sting", "insect bite", "raciness", "chomp", "pungency", "bit", "sharpness", "snack", "collation", "morsel"]}, {"answer": "bitterness", "hint": "synonyms for bitterness", "clues": ["tartness", "rancor", "gall", "acrimony", "jaundice", "thorniness", "resentment", "acerbity", "bitter", "bitterness"]}, {"answer": "bivouac", "hint": "synonyms for bivouac", "clues": ["camping site", "camp", "cantonment", "camping ground", "campground", "camping area", "encampment", "campsite", "bivouac"]}, {"answer": "blabber", "hint": "synonyms for blabber", "clues": ["betrayer", "informer", "rat", "squealer", "blabber"]}, {"answer": "blabbermouth", "hint": "synonyms for blabbermouth", "clues": ["talebearer", "tattletale", "telltale", "taleteller", "tattler", "blabbermouth"]}, {"answer": "black_english", "hint": "synonyms for black english", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "black_english_vernacular", "hint": "synonyms for black english vernacular", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "black_eye", "hint": "synonyms for black eye", "clues": ["reverse", "blow", "mouse", "shiner", "reversal", "setback", "black eye"]}, {"answer": "black_maria", "hint": "synonyms for black maria", "clues": ["Black Maria", "hearts", "paddy wagon", "patrol wagon", "police van", "police wagon", "wagon"]}, {"answer": "black_person", "hint": "synonyms for black person", "clues": ["blackamoor", "Black", "Negro", "Black person", "Negroid"]}, {"answer": "black_september", "hint": "synonyms for black september", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "black_vernacular", "hint": "synonyms for black vernacular", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "black_vernacular_english", "hint": "synonyms for black vernacular english", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "blackamoor", "hint": "synonyms for blackamoor", "clues": ["Black", "Black person", "Negro", "Negroid", "blackamoor"]}, {"answer": "blackbeard", "hint": "synonyms for blackbeard", "clues": ["Edward Teach", "Blackbeard", "Thatch", "Teach"]}, {"answer": "blackguard", "hint": "synonyms for blackguard", "clues": ["cad", "hound", "dog", "bounder", "heel", "blackguard"]}, {"answer": "blackjack", "hint": "synonyms for blackjack", "clues": ["twenty-one", "pirate flag", "cosh", "sap", "black flag", "Jolly Roger", "vingt-et-un", "blackjack"]}, {"answer": "blackness", "hint": "synonyms for blackness", "clues": ["pitch blackness", "black", "inkiness", "lightlessness", "total darkness", "blackness"]}, {"answer": "blackout", "hint": "synonyms for blackout", "clues": ["brownout", "dimout", "amnesia", "memory loss", "blackout"]}, {"answer": "blade", "hint": "synonyms for blade", "clues": ["steel", "sword", "vane", "brand", "blade"]}, {"answer": "blah", "hint": "synonyms for blah", "clues": ["fustian", "bombast", "rant", "claptrap", "blah"]}, {"answer": "blahs", "hint": "synonyms for blahs", "clues": ["fustian", "rant", "blah", "claptrap", "bombast"]}, {"answer": "blandness", "hint": "synonyms for blandness", "clues": ["suavity", "smoothness", "insipidness", "insipidity", "suaveness", "blandness"]}, {"answer": "blare", "hint": "synonyms for blare", "clues": ["clamor", "blaring", "cacophony", "din", "blare"]}, {"answer": "blast", "hint": "synonyms for blast", "clues": ["attack", "eruption", "clap", "blow", "good time", "gust", "fire", "flak", "bang", "bam", "blast"]}, {"answer": "blaze", "hint": "synonyms for blaze", "clues": ["hell", "brilliance", "blazing", "glare", "blaze"]}, {"answer": "blessed_trinity", "hint": "synonyms for blessed trinity", "clues": ["Trinity", "Blessed Trinity", "Sacred Trinity", "Holy Trinity"]}, {"answer": "blessed_virgin", "hint": "synonyms for blessed virgin", "clues": ["Madonna", "Virgin Mary", "Mary", "The Virgin", "Blessed Virgin"]}, {"answer": "blessing", "hint": "synonyms for blessing", "clues": ["benediction", "boon", "grace", "approving", "approval", "thanksgiving", "blessing"]}, {"answer": "blether", "hint": "synonyms for blether", "clues": ["prate", "idle talk", "chin music", "prattle", "blether"]}, {"answer": "blighter", "hint": "synonyms for blighter", "clues": ["lad", "fella", "gadfly", "chap", "pest", "gent", "pesterer", "feller", "bloke", "fellow", "cuss", "blighter"]}, {"answer": "blimp", "hint": "synonyms for blimp", "clues": ["Blimp", "Colonel Blimp", "sausage", "sausage balloon"]}, {"answer": "blink", "hint": "synonyms for blink", "clues": ["blinking", "winking", "nictation", "eye blink"]}, {"answer": "blink_of_an_eye", "hint": "synonyms for blink of an eye", "clues": ["flash", "trice", "instant", "wink", "jiffy", "New York minute", "split second", "twinkling", "heartbeat", "blink of an eye"]}, {"answer": "blinker", "hint": "synonyms for blinker", "clues": ["trafficator", "turn indicator", "winker", "blinder", "flasher", "turn signal"]}, {"answer": "blinks", "hint": "synonyms for blinks", "clues": ["blinking", "winking", "nictation", "eye blink", "blinks"]}, {"answer": "bliss", "hint": "synonyms for bliss", "clues": ["cloud nine", "walking on air", "blissfulness", "seventh heaven", "bliss"]}, {"answer": "blissfulness", "hint": "synonyms for blissfulness", "clues": ["cloud nine", "walking on air", "seventh heaven", "bliss", "blissfulness"]}, {"answer": "blistering_agent", "hint": "synonyms for blistering agent", "clues": ["mustard agent", "sulfur mustard", "dichloroethyl sulfide", "mustard gas", "blistering agent"]}, {"answer": "blixen", "hint": "synonyms for blixen", "clues": ["Dinesen", "Isak Dinesen", "Karen Blixen", "Baroness Karen Blixen", "Blixen"]}, {"answer": "block", "hint": "synonyms for block", "clues": ["pulley", "occlusion", "cube", "city block", "blocking", "pulley-block", "closure", "stop", "mental block", "engine block", "stoppage", "auction block", "blockage", "cylinder block"]}, {"answer": "blockage", "hint": "synonyms for blockage", "clues": ["block", "stoppage", "occlusion", "obstruction", "closure", "stop", "blockage"]}, {"answer": "blockhead", "hint": "synonyms for blockhead", "clues": ["dumbass", "fuckhead", "dunderhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "loggerhead", "shithead", "blockhead"]}, {"answer": "bloke", "hint": "synonyms for bloke", "clues": ["lad", "fella", "blighter", "gent", "feller", "chap", "fellow", "cuss", "bloke"]}, {"answer": "blood", "hint": "synonyms for blood", "clues": ["lineage", "stemma", "line", "line of descent", "roue", "parentage", "origin", "descent", "pedigree", "stock", "rake", "bloodline", "ancestry", "rakehell", "rip", "profligate", "blood"]}, {"answer": "blood_line", "hint": "synonyms for blood line", "clues": ["lineage", "blood", "stemma", "line", "line of descent", "ancestry", "parentage", "origin", "descent", "pedigree", "stock", "bloodline"]}, {"answer": "bloodline", "hint": "synonyms for bloodline", "clues": ["blood line", "lineage", "blood", "stemma", "line", "line of descent", "ancestry", "parentage", "origin", "descent", "pedigree", "stock"]}, {"answer": "bloodshed", "hint": "synonyms for bloodshed", "clues": ["gore", "bloodbath", "battue", "bloodletting", "bloodshed"]}, {"answer": "bloom", "hint": "synonyms for bloom", "clues": ["flower", "efflorescence", "bloom of youth", "blush", "flush", "heyday", "blossom", "salad days", "blooming", "rosiness", "peak", "prime"]}, {"answer": "bloomer", "hint": "synonyms for bloomer", "clues": ["flub", "blunder", "boo-boo", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle", "blooper"]}, {"answer": "bloomers", "hint": "synonyms for bloomers", "clues": ["pants", "bloomer", "flub", "knickers", "blunder", "boo-boo", "foul-up", "pratfall", "drawers", "botch", "boner", "fuckup", "bungle"]}, {"answer": "blooper", "hint": "synonyms for blooper", "clues": ["bloomer", "flub", "blunder", "boo-boo", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle"]}, {"answer": "blossom", "hint": "synonyms for blossom", "clues": ["flower", "efflorescence", "heyday", "prime", "bloom", "peak", "flush", "blossom"]}, {"answer": "blossoming", "hint": "synonyms for blossoming", "clues": ["anthesis", "flowering", "efflorescence", "inflorescence", "blossoming"]}, {"answer": "blot", "hint": "synonyms for blot", "clues": ["smear", "daub", "slur", "spot", "stain", "smirch", "smudge", "blot"]}, {"answer": "blotter", "hint": "synonyms for blotter", "clues": ["day book", "charge sheet", "rap sheet", "blotting paper", "police blotter", "blotter"]}, {"answer": "blow", "hint": "synonyms for blow", "clues": ["puff", "blast", "nose candy", "gust", "shock", "C", "black eye", "coke", "setback", "reverse", "reversal", "snow", "bump", "blow"]}, {"answer": "blowhard", "hint": "synonyms for blowhard", "clues": ["line-shooter", "bragger", "boaster", "braggart", "vaunter", "blowhard"]}, {"answer": "blowout", "hint": "synonyms for blowout", "clues": ["gala", "gala affair", "walkaway", "runaway", "romp", "laugher", "jamboree", "shoo-in", "blowout"]}, {"answer": "blowup", "hint": "synonyms for blowup", "clues": ["gush", "outburst", "magnification", "detonation", "enlargement", "effusion", "ebullition", "explosion", "blowup"]}, {"answer": "blucher", "hint": "synonyms for blucher", "clues": ["G. L. von Blucher", "Gebhard Leberecht von Blucher", "Blucher", "von Blucher"]}, {"answer": "blue_angel", "hint": "synonyms for blue angel", "clues": ["Amytal", "amobarbital sodium", "blue devil", "blue", "blue angel"]}, {"answer": "blue_devil", "hint": "synonyms for blue devil", "clues": ["Amytal", "blue angel", "amobarbital sodium", "blue", "blue devil"]}, {"answer": "blue_devils", "hint": "synonyms for blue devils", "clues": ["Amytal", "blues", "blue angel", "amobarbital sodium", "blue devil", "vapors", "megrims"]}, {"answer": "blues", "hint": "synonyms for blues", "clues": ["Amytal", "blue devils", "blueing", "wild blue yonder", "blue sky", "blue air", "blue angel", "amobarbital sodium", "vapors", "blueness", "megrims", "blues"]}, {"answer": "blunder", "hint": "synonyms for blunder", "clues": ["bloomer", "flub", "boo-boo", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle", "blunder"]}, {"answer": "blunderer", "hint": "synonyms for blunderer", "clues": ["bumbler", "bungler", "butcher", "stumbler", "fuckup", "sad sack", "blunderer"]}, {"answer": "blurriness", "hint": "synonyms for blurriness", "clues": ["fuzziness", "indistinctness", "softness", "fogginess", "blurriness"]}, {"answer": "bluster", "hint": "synonyms for bluster", "clues": ["braggadocio", "rhodomontade", "bravado", "bluster"]}, {"answer": "bm", "hint": "synonyms for bm", "clues": ["ordure", "faecal matter", "feces", "BM", "dejection", "bowel movement", "movement", "stool"]}, {"answer": "board", "hint": "synonyms for board", "clues": ["panel", "add-in", "display board", "card", "plank", "control board", "dining table", "instrument panel", "control panel", "circuit board", "display panel", "plug-in", "gameboard", "table", "board"]}, {"answer": "board_of_trade_unit", "hint": "synonyms for board of trade unit", "clues": ["B.T.U.", "kW-hr", "kilowatt hour", "Board of Trade unit"]}, {"answer": "boards", "hint": "synonyms for boards", "clues": ["panel", "add-in", "display board", "card", "board", "plank", "control board", "dining table", "instrument panel", "control panel", "circuit board", "display panel", "plug-in", "gameboard", "table"]}, {"answer": "boaster", "hint": "synonyms for boaster", "clues": ["blowhard", "line-shooter", "bragger", "braggart", "vaunter", "boaster"]}, {"answer": "boater", "hint": "synonyms for boater", "clues": ["waterman", "skimmer", "sailor", "leghorn", "boatman", "straw hat", "Panama hat", "Panama", "boater"]}, {"answer": "bob", "hint": "synonyms for bob", "clues": ["bobsleigh", "bobfloat", "bobsled", "British shilling", "bobber", "shilling", "cork", "bob"]}, {"answer": "bob_woodward", "hint": "synonyms for bob woodward", "clues": ["Robert Burns Woodward", "Robert Woodward", "Bob Woodward", "Woodward"]}, {"answer": "boche", "hint": "synonyms for boche", "clues": ["Jerry", "Boche", "Hun", "Krauthead", "Kraut"]}, {"answer": "bod", "hint": "synonyms for bod", "clues": ["human body", "form", "soma", "physical body", "physique", "flesh", "figure", "shape", "anatomy", "frame", "chassis", "material body", "build", "bod"]}, {"answer": "bodily_structure", "hint": "synonyms for bodily structure", "clues": ["complex body part", "anatomical structure", "body structure", "structure"]}, {"answer": "bodoni", "hint": "synonyms for bodoni", "clues": ["modern font", "Bodoni font", "Bodoni", "modern", "Gianbattista Bodoni"]}, {"answer": "bodoni_font", "hint": "synonyms for bodoni font", "clues": ["modern", "modern font", "Bodoni font", "Bodoni"]}, {"answer": "body", "hint": "synonyms for body", "clues": ["soundbox", "torso", "consistence", "eubstance", "trunk", "dead body", "organic structure", "physical structure", "body"]}, {"answer": "body_armor", "hint": "synonyms for body armor", "clues": ["body armour", "suit of armour", "coat of mail", "cataphract"]}, {"answer": "body_armour", "hint": "synonyms for body armour", "clues": ["suit of armour", "body armor", "coat of mail", "cataphract"]}, {"answer": "body_politic", "hint": "synonyms for body politic", "clues": ["res publica", "commonwealth", "land", "nation", "state", "country", "body politic"]}, {"answer": "body_structure", "hint": "synonyms for body structure", "clues": ["anatomical structure", "structure", "complex body part", "bodily structure"]}, {"answer": "body_waste", "hint": "synonyms for body waste", "clues": ["excretion", "excreta", "excrement", "excretory product", "body waste"]}, {"answer": "boehm", "hint": "synonyms for boehm", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "boehme", "hint": "synonyms for boehme", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "bogeyman", "hint": "synonyms for bogeyman", "clues": ["boogeyman", "bugaboo", "bugbear", "booger"]}, {"answer": "bohme", "hint": "synonyms for bohme", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "boldness", "hint": "synonyms for boldness", "clues": ["brass", "daring", "hardihood", "hardiness", "nerve", "strikingness", "face", "cheek", "boldness"]}, {"answer": "bollock", "hint": "synonyms for bollock", "clues": ["ballock", "orchis", "nut", "testicle", "ball", "egg", "testis", "bullock block"]}, {"answer": "bolo", "hint": "synonyms for bolo", "clues": ["bolo tie", "bola", "bolo knife", "bolo"]}, {"answer": "boloney", "hint": "synonyms for boloney", "clues": ["tommyrot", "tarradiddle", "tosh", "baloney", "bilgewater", "bosh", "drool", "twaddle", "humbug"]}, {"answer": "bolshie", "hint": "synonyms for bolshie", "clues": ["Marxist", "Bolshevik", "bolshy", "red", "bolshie"]}, {"answer": "bombardment", "hint": "synonyms for bombardment", "clues": ["outpouring", "shelling", "bombing", "battery", "barrage", "barrage fire", "onslaught", "bombardment"]}, {"answer": "bombast", "hint": "synonyms for bombast", "clues": ["fustian", "blah", "rant", "claptrap", "bombast"]}, {"answer": "bomber", "hint": "synonyms for bomber", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "bomber"]}, {"answer": "bon_ton", "hint": "synonyms for bon ton", "clues": ["beau monde", "society", "high society", "smart set", "bon ton"]}, {"answer": "bon_vivant", "hint": "synonyms for bon vivant", "clues": ["epicurean", "foodie", "gourmet", "gastronome", "bon vivant"]}, {"answer": "bonanza", "hint": "synonyms for bonanza", "clues": ["boom", "manna from heaven", "godsend", "gold rush", "bunce", "windfall", "gravy", "bonanza"]}, {"answer": "bonaparte", "hint": "synonyms for bonaparte", "clues": ["Bonaparte", "Napoleon I", "Napoleon Bonaparte", "Little Corporal"]}, {"answer": "bonce", "hint": "synonyms for bonce", "clues": ["attic", "noggin", "dome", "bean", "noodle", "bonce"]}, {"answer": "bond", "hint": "synonyms for bond", "clues": ["adherence", "bail", "bond paper", "adhesiveness", "trammel", "Julian Bond", "chemical bond", "adhesion", "shackle", "James Bond", "alliance", "Bond", "hamper", "attachment", "bail bond", "bond certificate"]}, {"answer": "bondage", "hint": "synonyms for bondage", "clues": ["thraldom", "thrall", "slavery", "bondage"]}, {"answer": "bonehead", "hint": "synonyms for bonehead", "clues": ["dumbass", "fuckhead", "dunderhead", "hammerhead", "dunce", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "bonehead"]}, {"answer": "boner", "hint": "synonyms for boner", "clues": ["bloomer", "flub", "blunder", "boo-boo", "foul-up", "pratfall", "botch", "bungle", "fuckup", "boner"]}, {"answer": "bones", "hint": "synonyms for bones", "clues": ["bone", "off-white", "pearl", "clappers", "ivory", "castanets", "finger cymbals", "osseous tissue", "os"]}, {"answer": "bonhomie", "hint": "synonyms for bonhomie", "clues": ["affableness", "geniality", "amiability", "amiableness", "affability", "bonhomie"]}, {"answer": "boniface", "hint": "synonyms for boniface", "clues": ["St. Boniface", "host", "Boniface", "innkeeper", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "boniness", "hint": "synonyms for boniness", "clues": ["bonyness", "maceration", "gauntness", "emaciation"]}, {"answer": "bonnet", "hint": "synonyms for bonnet", "clues": ["poke bonnet", "cowling", "hood", "bonnet"]}, {"answer": "bonyness", "hint": "synonyms for bonyness", "clues": ["gauntness", "maceration", "boniness", "emaciation"]}, {"answer": "boo", "hint": "synonyms for boo", "clues": ["bird", "snort", "hoot", "raspberry", "Bronx cheer", "razzing", "hiss", "boo"]}, {"answer": "boo-boo", "hint": "synonyms for boo-boo", "clues": ["bloomer", "flub", "blunder", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle", "boo-boo"]}, {"answer": "boob", "hint": "synonyms for boob", "clues": ["titty", "knocker", "breast", "dumbbell", "pinhead", "booby", "dope", "bosom", "dummy", "tit"]}, {"answer": "boob_tube", "hint": "synonyms for boob tube", "clues": ["tv set", "television set", "telly", "television receiver", "tv", "television", "goggle box", "idiot box", "boob tube"]}, {"answer": "booby", "hint": "synonyms for booby", "clues": ["dope", "boob", "dumbbell", "dummy", "pinhead"]}, {"answer": "booby_hatch", "hint": "synonyms for booby hatch", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "Bedlam", "crazy house", "funny house", "booby hatch"]}, {"answer": "boodle", "hint": "synonyms for boodle", "clues": ["Newmarket", "clams", "dinero", "Michigan", "bread", "lettuce", "dough", "moolah", "stops", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "Chicago", "cabbage", "boodle"]}, {"answer": "booger", "hint": "synonyms for booger", "clues": ["boogeyman", "bugbear", "bugaboo", "booger"]}, {"answer": "boogeyman", "hint": "synonyms for boogeyman", "clues": ["bugaboo", "bugbear", "bogeyman", "booger"]}, {"answer": "book", "hint": "synonyms for book", "clues": ["volume", "Good Book", "Scripture", "Holy Writ", "book of account", "Koran", "Bible", "account book", "ledger", "record", "rule book", "Book", "playscript", "Holy Scripture", "al-Qur'an", "Quran", "Christian Bible", "Word", "script", "Word of God", "record book"]}, {"answer": "book_of_account", "hint": "synonyms for book of account", "clues": ["leger", "account book", "book", "book of account"]}, {"answer": "book_of_revelation", "hint": "synonyms for book of revelation", "clues": ["Revelation of Saint John the Divine", "Revelation", "Book of Revelation", "Apocalypse"]}, {"answer": "booklet", "hint": "synonyms for booklet", "clues": ["brochure", "pamphlet", "folder", "leaflet", "booklet"]}, {"answer": "boom", "hint": "synonyms for boom", "clues": ["manna from heaven", "thunder", "bonanza", "godsend", "roar", "microphone boom", "gold rush", "bunce", "windfall", "gravy", "boom"]}, {"answer": "boor", "hint": "synonyms for boor", "clues": ["peasant", "tyke", "Goth", "churl", "tike", "barbarian", "boor"]}, {"answer": "boost", "hint": "synonyms for boost", "clues": ["encouragement", "rise", "hike", "cost increase", "boost"]}, {"answer": "booster", "hint": "synonyms for booster", "clues": ["relay link", "relay station", "recall dose", "takeoff booster", "plugger", "promoter", "champion", "booster dose", "booster station", "booster rocket", "shoplifter", "takeoff rocket", "relay transmitter", "booster unit", "protagonist", "lifter", "admirer", "booster amplifier", "supporter", "friend", "booster shot", "booster"]}, {"answer": "booster_amplifier", "hint": "synonyms for booster amplifier", "clues": ["relay link", "relay station", "booster", "relay transmitter", "booster station", "booster amplifier"]}, {"answer": "booster_rocket", "hint": "synonyms for booster rocket", "clues": ["booster unit", "takeoff booster", "takeoff rocket", "booster", "booster rocket"]}, {"answer": "booster_station", "hint": "synonyms for booster station", "clues": ["relay link", "relay station", "booster amplifier", "booster", "relay transmitter", "booster station"]}, {"answer": "booster_unit", "hint": "synonyms for booster unit", "clues": ["booster rocket", "takeoff booster", "takeoff rocket", "booster", "booster unit"]}, {"answer": "boot", "hint": "synonyms for boot", "clues": ["thrill", "kicking", "iron boot", "rush", "flush", "the boot", "iron heel", "bang", "charge", "boot"]}, {"answer": "booth", "hint": "synonyms for booth", "clues": ["cubicle", "stall", "kiosk", "John Wilkes Booth", "Booth"]}, {"answer": "bootlicker", "hint": "synonyms for bootlicker", "clues": ["truckler", "groveler", "apple polisher", "fawner", "bootlicker"]}, {"answer": "booty", "hint": "synonyms for booty", "clues": ["swag", "plunder", "pillage", "loot", "prize", "dirty money", "booty"]}, {"answer": "booze", "hint": "synonyms for booze", "clues": ["John Barleycorn", "hard drink", "liquor", "spirits", "hard liquor", "strong drink", "booze"]}, {"answer": "booze-up", "hint": "synonyms for booze-up", "clues": ["toot", "bender", "carousal", "carouse", "booze-up"]}, {"answer": "boozer", "hint": "synonyms for boozer", "clues": ["lush", "dipsomaniac", "alcoholic", "souse", "alky", "soaker", "boozer"]}, {"answer": "boozing", "hint": "synonyms for boozing", "clues": ["drink", "drunkenness", "crapulence", "boozing"]}, {"answer": "bordello", "hint": "synonyms for bordello", "clues": ["bagnio", "house of ill repute", "sporting house", "whorehouse", "house of prostitution", "cathouse", "brothel", "bawdyhouse", "bordello"]}, {"answer": "border", "hint": "synonyms for border", "clues": ["borderline", "perimeter", "moulding", "delimitation", "margin", "edge", "boundary line", "mete", "border"]}, {"answer": "bore", "hint": "synonyms for bore", "clues": ["eager", "dullard", "drill hole", "gauge", "caliber", "aegir", "eagre", "bore-hole", "tidal bore", "bore"]}, {"answer": "borgia", "hint": "synonyms for borgia", "clues": ["Borgia", "Calixtus III", "Pope Alexander VI", "Rodrigo Borgia", "Lucrezia Borgia", "Alexander VI", "Duchess of Ferrara", "Alfonso Borgia", "Cesare Borgia"]}, {"answer": "bornholm_disease", "hint": "synonyms for bornholm disease", "clues": ["epidemic myalgia", "diaphragmatic pleurisy", "myosis", "epidemic pleurodynia", "Bornholm disease"]}, {"answer": "bosh", "hint": "synonyms for bosh", "clues": ["tommyrot", "tarradiddle", "tosh", "baloney", "bilgewater", "drool", "twaddle", "humbug", "bosh"]}, {"answer": "bosin's_disease", "hint": "synonyms for bosin's disease", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "bosna_i_hercegovina", "hint": "synonyms for bosna i hercegovina", "clues": ["Bosna i Hercegovina", "Republic of Bosnia and Herzegovina", "Bosnia-Herzegovina", "Bosnia"]}, {"answer": "bosnia", "hint": "synonyms for bosnia", "clues": ["Bosna i Hercegovina", "Republic of Bosnia and Herzegovina", "Bosnia-Herzegovina", "Bosnia"]}, {"answer": "bosnia-herzegovina", "hint": "synonyms for bosnia-herzegovina", "clues": ["Bosna i Hercegovina", "Republic of Bosnia and Herzegovina", "Bosnia-Herzegovina", "Bosnia"]}, {"answer": "bosnia_and_herzegovina", "hint": "synonyms for bosnia and herzegovina", "clues": ["Bosna i Hercegovina", "Republic of Bosnia and Herzegovina", "Bosnia-Herzegovina", "Bosnia"]}, {"answer": "bosom", "hint": "synonyms for bosom", "clues": ["titty", "boob", "knocker", "breast", "heart", "embrace", "tit", "bosom"]}, {"answer": "boston", "hint": "synonyms for boston", "clues": ["capital of Massachusetts", "Beantown", "Hub of the Universe", "Boston"]}, {"answer": "botch", "hint": "synonyms for botch", "clues": ["bloomer", "flub", "blunder", "boo-boo", "foul-up", "pratfall", "boner", "fuckup", "bungle", "botch"]}, {"answer": "botcher", "hint": "synonyms for botcher", "clues": ["bumbler", "bungler", "butcher", "stumbler", "fuckup", "blunderer", "sad sack"]}, {"answer": "bother", "hint": "synonyms for bother", "clues": ["botheration", "trouble", "infliction", "pain in the neck", "fuss", "annoyance", "pain", "hassle", "pain in the ass", "bother"]}, {"answer": "botheration", "hint": "synonyms for botheration", "clues": ["infliction", "pain in the neck", "bother", "vexation", "irritation", "annoyance", "pain", "pain in the ass", "botheration"]}, {"answer": "bounce", "hint": "synonyms for bounce", "clues": ["saltation", "bouncing", "leaping", "bounciness", "bound", "spring", "bounce"]}, {"answer": "boundary", "hint": "synonyms for boundary", "clues": ["bound", "limit", "edge", "boundary"]}, {"answer": "boundary_line", "hint": "synonyms for boundary line", "clues": ["borderline", "delimitation", "border", "mete", "boundary line"]}, {"answer": "bounder", "hint": "synonyms for bounder", "clues": ["cad", "leaper", "hound", "dog", "blackguard", "heel", "bounder"]}, {"answer": "boundlessness", "hint": "synonyms for boundlessness", "clues": ["limitlessness", "unboundedness", "infiniteness", "infinitude", "boundlessness"]}, {"answer": "bounds", "hint": "synonyms for bounds", "clues": ["saltation", "limit", "leap", "boundary", "bound", "edge", "bounce", "spring"]}, {"answer": "bounty", "hint": "synonyms for bounty", "clues": ["Bounty", "bounteousness", "premium", "amplitude", "bountifulness", "H.M.S. Bounty"]}, {"answer": "bouquet", "hint": "synonyms for bouquet", "clues": ["sweetness", "fragrance", "nosegay", "corsage", "redolence", "posy", "bouquet"]}, {"answer": "bout", "hint": "synonyms for bout", "clues": ["round", "turn", "bust", "binge", "tear", "bout"]}, {"answer": "bow", "hint": "synonyms for bow", "clues": ["bowing", "fore", "bowknot", "prow", "arc", "obeisance", "curtain call", "stem"]}, {"answer": "bow_leg", "hint": "synonyms for bow leg", "clues": ["bow legs", "bandy leg", "tibia vara", "genu varum"]}, {"answer": "bow_legs", "hint": "synonyms for bow legs", "clues": ["bow leg", "tibia vara", "bandyleg", "genu varum"]}, {"answer": "bowl", "hint": "synonyms for bowl", "clues": ["bowling ball", "arena", "trough", "pipe bowl", "roll", "bowlful", "stadium", "sports stadium", "bowl"]}, {"answer": "bowler", "hint": "synonyms for bowler", "clues": ["derby hat", "derby", "plug hat", "bowler hat", "bowler"]}, {"answer": "bowler_hat", "hint": "synonyms for bowler hat", "clues": ["derby hat", "derby", "plug hat", "bowler", "bowler hat"]}, {"answer": "bowls", "hint": "synonyms for bowls", "clues": ["trough", "pipe bowl", "bowlful", "roll", "bowl", "bowling ball", "lawn bowling", "arena", "stadium", "sports stadium"]}, {"answer": "box", "hint": "synonyms for box", "clues": ["box seat", "loge", "boxful", "corner", "box"]}, {"answer": "boxberry", "hint": "synonyms for boxberry", "clues": ["wintergreen", "checkerberry", "teaberry", "spiceberry", "boxberry"]}, {"answer": "boxer", "hint": "synonyms for boxer", "clues": ["Boxer", "bagger", "packer", "pugilist"]}, {"answer": "boxers", "hint": "synonyms for boxers", "clues": ["boxershorts", "Boxer", "pugilist", "underdrawers", "drawers", "packer", "shorts", "bagger"]}, {"answer": "boxershorts", "hint": "synonyms for boxershorts", "clues": ["boxers", "underdrawers", "drawers", "shorts", "boxershorts"]}, {"answer": "boy_orator_of_the_platte", "hint": "synonyms for boy orator of the platte", "clues": ["William Jennings Bryan", "Great Commoner", "Bryan", "Boy Orator of the Platte"]}, {"answer": "boyfriend", "hint": "synonyms for boyfriend", "clues": ["young man", "swain", "fellow", "beau", "boyfriend"]}, {"answer": "bozo", "hint": "synonyms for bozo", "clues": ["fathead", "jackass", "goofball", "goose", "goof", "guy", "cuckoo", "zany", "cat", "hombre", "twat", "bozo"]}, {"answer": "br", "hint": "synonyms for br", "clues": ["Br", "Red Brigades", "atomic number 35", "Brigate Rosse", "bromine"]}, {"answer": "brace", "hint": "synonyms for brace", "clues": ["orthodontic braces", "suspender", "bracing", "couplet", "braces", "dyad", "gallus", "bitstock", "duo", "twain", "duet", "twosome", "distich", "duad", "yoke", "pair", "span"]}, {"answer": "bracelet", "hint": "synonyms for bracelet", "clues": ["watchband", "watch bracelet", "watchstrap", "bangle", "wristband", "bracelet"]}, {"answer": "braces", "hint": "synonyms for braces", "clues": ["suspender", "couplet", "dyad", "bitstock", "duo", "twain", "pair", "span", "orthodontic braces", "bracing", "brace", "duet", "twosome", "distich", "duad", "yoke", "gallus"]}, {"answer": "brady", "hint": "synonyms for brady", "clues": ["Mathew B. Brady", "James Buchanan Brady", "Brady", "Diamond Jim", "Diamond Jim Brady"]}, {"answer": "bragger", "hint": "synonyms for bragger", "clues": ["blowhard", "line-shooter", "boaster", "braggart", "vaunter", "bragger"]}, {"answer": "braid", "hint": "synonyms for braid", "clues": ["gold braid", "twist", "braiding", "plait", "tress"]}, {"answer": "brain", "hint": "synonyms for brain", "clues": ["brainiac", "psyche", "mentality", "encephalon", "head", "mind", "nous", "brainpower", "mastermind", "Einstein", "wit", "mental capacity", "learning ability", "genius", "brain"]}, {"answer": "brainiac", "hint": "synonyms for brainiac", "clues": ["mastermind", "Einstein", "brain", "genius", "brainiac"]}, {"answer": "brainpower", "hint": "synonyms for brainpower", "clues": ["wit", "mentality", "mental capacity", "learning ability", "brain", "brainpower"]}, {"answer": "brainwave", "hint": "synonyms for brainwave", "clues": ["cortical potential", "insight", "brainstorm", "brain wave"]}, {"answer": "branch", "hint": "synonyms for branch", "clues": ["leg", "limb", "offset", "offshoot", "outgrowth", "subdivision", "ramification", "arm", "branch"]}, {"answer": "brand", "hint": "synonyms for brand", "clues": ["blade", "make", "stigma", "brand name", "mark", "steel", "firebrand", "stain", "sword", "marque", "trade name", "brand"]}, {"answer": "brandy_nose", "hint": "synonyms for brandy nose", "clues": ["hammer nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "rum nose", "toper's nose", "rhinophyma", "copper nose", "brandy nose"]}, {"answer": "brashness", "hint": "synonyms for brashness", "clues": ["garishness", "tawdriness", "loudness", "glitz", "meretriciousness", "gaudiness", "flashiness", "brashness"]}, {"answer": "brass", "hint": "synonyms for brass", "clues": ["nerve", "cheek", "brass section", "face", "plaque", "organisation", "establishment", "administration", "brass instrument", "boldness", "governing body", "governance", "memorial tablet", "brass"]}, {"answer": "brat", "hint": "synonyms for brat", "clues": ["little terror", "bratwurst", "holy terror", "terror", "brat"]}, {"answer": "bratislava", "hint": "synonyms for bratislava", "clues": ["Bratislava", "capital of Slovakia", "Pressburg", "Pozsony"]}, {"answer": "braun", "hint": "synonyms for braun", "clues": ["von Braun", "Wernher Magnus Maximilian von Braun", "Braun", "Eva Braun", "Wernher von Braun"]}, {"answer": "bravery", "hint": "synonyms for bravery", "clues": ["courageousness", "braveness", "courage", "fearlessness", "bravery"]}, {"answer": "brawn", "hint": "synonyms for brawn", "clues": ["muscularity", "sinew", "brawniness", "heftiness", "muscle", "brawn"]}, {"answer": "brawniness", "hint": "synonyms for brawniness", "clues": ["muscularity", "sinew", "brawn", "muscle", "heftiness", "brawniness"]}, {"answer": "brazil", "hint": "synonyms for brazil", "clues": ["Brasil", "Brazil", "brazil nut", "Federative Republic of Brazil"]}, {"answer": "breach", "hint": "synonyms for breach", "clues": ["break", "severance", "rupture", "rift", "falling out", "breach"]}, {"answer": "bread", "hint": "synonyms for bread", "clues": ["clams", "staff of life", "dinero", "lettuce", "dough", "moolah", "lucre", "breadstuff", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "bread"]}, {"answer": "bread_and_butter", "hint": "synonyms for bread and butter", "clues": ["support", "sustenance", "living", "keep", "livelihood", "bread and butter"]}, {"answer": "break", "hint": "synonyms for break", "clues": ["breaking", "happy chance", "faulting", "severance", "gaolbreak", "pause", "intermission", "break of serve", "breach", "recess", "interruption", "falling out", "rift", "open frame", "breakage", "suspension", "prison-breaking", "respite", "jailbreak", "time out", "fracture", "gap", "prisonbreak", "good luck", "geological fault", "rupture", "disruption", "breakout", "shift"]}, {"answer": "break_of_day", "hint": "synonyms for break of day", "clues": ["sunrise", "dayspring", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "break of the day", "cockcrow"]}, {"answer": "break_of_the_day", "hint": "synonyms for break of the day", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow"]}, {"answer": "breakdown", "hint": "synonyms for breakdown", "clues": ["crack-up", "equipment failure", "partitioning", "dislocation", "breakdown"]}, {"answer": "breaker", "hint": "synonyms for breaker", "clues": ["ledgeman", "circuit breaker", "breakers", "surf"]}, {"answer": "breakers", "hint": "synonyms for breakers", "clues": ["ledgeman", "breaker", "circuit breaker", "surf"]}, {"answer": "breaking_wind", "hint": "synonyms for breaking wind", "clues": ["fart", "flatus", "wind", "breaking wind"]}, {"answer": "breakout", "hint": "synonyms for breakout", "clues": ["break", "prison-breaking", "prisonbreak", "jailbreak", "gaolbreak", "breakout"]}, {"answer": "breakwater", "hint": "synonyms for breakwater", "clues": ["mole", "jetty", "groin", "seawall", "groyne", "bulwark", "breakwater"]}, {"answer": "breast", "hint": "synonyms for breast", "clues": ["titty", "boob", "knocker", "chest", "bosom", "white meat", "tit", "breast"]}, {"answer": "breath", "hint": "synonyms for breath", "clues": ["breathing spell", "hint", "breather", "intimation", "breathing place", "breathing time"]}, {"answer": "breather", "hint": "synonyms for breather", "clues": ["breathing spell", "schnorchel", "breathing place", "breathing time", "breath", "snorkel breather", "schnorkel"]}, {"answer": "breathing_in", "hint": "synonyms for breathing in", "clues": ["inspiration", "inhalation", "intake", "breathing in"]}, {"answer": "breathing_place", "hint": "synonyms for breathing place", "clues": ["breathing spell", "breath", "breathing time", "breathing place"]}, {"answer": "breathing_space", "hint": "synonyms for breathing space", "clues": ["breathing spell", "breath", "breathing place", "breathing room", "breathing time"]}, {"answer": "breathing_time", "hint": "synonyms for breathing time", "clues": ["breathing spell", "breath", "breathing place", "breathing time"]}, {"answer": "breeches", "hint": "synonyms for breeches", "clues": ["knickerbockers", "knee breeches", "rear of tube", "knee pants", "breech", "knickers", "rear of barrel"]}, {"answer": "breeze", "hint": "synonyms for breeze", "clues": ["walkover", "snap", "zephyr", "cinch", "pushover", "child's play", "picnic", "piece of cake", "gentle wind", "air", "duck soup", "breeze"]}, {"answer": "brethren", "hint": "synonyms for brethren", "clues": ["blood brother", "sidekick", "comrade", "buddy", "brother", "chum", "pal", "crony", "brethren"]}, {"answer": "breughel", "hint": "synonyms for breughel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "breughel_the_elder", "hint": "synonyms for breughel the elder", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "bric-a-brac", "hint": "synonyms for bric-a-brac", "clues": ["whatnot", "knickknackery", "nicknack", "bric-a-brac"]}, {"answer": "bricole", "hint": "synonyms for bricole", "clues": ["catapult", "arbalest", "onager", "trebucket", "ballista", "mangonel", "bricole"]}, {"answer": "bride", "hint": "synonyms for bride", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "bridge", "hint": "synonyms for bridge", "clues": ["bridge deck", "nosepiece", "bridge circuit", "span", "bridgework", "bridge"]}, {"answer": "bridges", "hint": "synonyms for bridges", "clues": ["bridge deck", "bridge", "bridgework", "nosepiece", "Harry Bridges", "bridge circuit", "span"]}, {"answer": "bridget", "hint": "synonyms for bridget", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "brightness", "hint": "synonyms for brightness", "clues": ["smartness", "light", "luminousness", "luminosity", "brightness level", "cleverness", "luminance", "brightness"]}, {"answer": "brightness_level", "hint": "synonyms for brightness level", "clues": ["brightness", "light", "luminousness", "luminosity", "luminance", "brightness level"]}, {"answer": "brigid", "hint": "synonyms for brigid", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "brilliance", "hint": "synonyms for brilliance", "clues": ["grandeur", "magnificence", "genius", "glare", "blaze", "splendor", "grandness", "brilliance"]}, {"answer": "brilliancy", "hint": "synonyms for brilliancy", "clues": ["splendour", "luster", "lustre", "brilliancy"]}, {"answer": "bringing_up", "hint": "synonyms for bringing up", "clues": ["fostering", "upbringing", "rearing", "breeding", "raising", "fosterage", "nurture", "bringing up"]}, {"answer": "brio", "hint": "synonyms for brio", "clues": ["spiritedness", "animation", "invigoration", "vivification", "brio"]}, {"answer": "britain", "hint": "synonyms for britain", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "U.K."]}, {"answer": "british_capital", "hint": "synonyms for british capital", "clues": ["British capital", "Greater London", "London", "capital of the United Kingdom"]}, {"answer": "british_pound", "hint": "synonyms for british pound", "clues": ["British pound", "pound", "quid", "British pound sterling", "pound sterling"]}, {"answer": "british_pound_sterling", "hint": "synonyms for british pound sterling", "clues": ["British pound", "pound", "quid", "British pound sterling", "pound sterling"]}, {"answer": "brits", "hint": "synonyms for brits", "clues": ["Briton", "Brit", "British", "British people"]}, {"answer": "britten", "hint": "synonyms for britten", "clues": ["Benjamin Britten", "Edward Benjamin Britten", "Britten", "Lord Britten of Aldeburgh"]}, {"answer": "broadsheet", "hint": "synonyms for broadsheet", "clues": ["flyer", "circular", "bill", "throwaway", "broadside", "flier", "handbill", "broadsheet"]}, {"answer": "broca's_aphasia", "hint": "synonyms for broca's aphasia", "clues": ["expressive aphasia", "motor aphasia", "ataxic aphasia", "nonfluent aphasia", "Broca's aphasia"]}, {"answer": "broca's_area", "hint": "synonyms for broca's area", "clues": ["Broca's convolution", "convolution of Broca", "Broca's center", "Broca's area", "Broca's gyrus"]}, {"answer": "broca's_center", "hint": "synonyms for broca's center", "clues": ["Broca's convolution", "convolution of Broca", "Broca's center", "Broca's area", "Broca's gyrus"]}, {"answer": "broca's_convolution", "hint": "synonyms for broca's convolution", "clues": ["Broca's convolution", "convolution of Broca", "Broca's center", "Broca's area", "Broca's gyrus"]}, {"answer": "broca's_gyrus", "hint": "synonyms for broca's gyrus", "clues": ["Broca's convolution", "convolution of Broca", "Broca's center", "Broca's area", "Broca's gyrus"]}, {"answer": "brocadopa", "hint": "synonyms for brocadopa", "clues": ["Brocadopa", "levodopa", "L-dopa", "Bendopa", "Larodopa"]}, {"answer": "brochure", "hint": "synonyms for brochure", "clues": ["booklet", "pamphlet", "folder", "leaflet", "brochure"]}, {"answer": "brodmann's_area_17", "hint": "synonyms for brodmann's area 17", "clues": ["first visual area", "area 17 of Brodmann", "striate cortex", "striate area", "Brodmann's area 17"]}, {"answer": "bromide", "hint": "synonyms for bromide", "clues": ["platitude", "commonplace", "cliche", "banality", "bromide"]}, {"answer": "bronte", "hint": "synonyms for bronte", "clues": ["Charlotte Bronte", "Emily Bronte", "Emily Jane Bronte", "Anne Bronte", "Currer Bell", "Bronte"]}, {"answer": "bronx_cheer", "hint": "synonyms for bronx cheer", "clues": ["bird", "snort", "boo", "hoot", "raspberry", "Bronx cheer", "razzing", "hiss"]}, {"answer": "brothel", "hint": "synonyms for brothel", "clues": ["bagnio", "house of ill repute", "bordello", "sporting house", "whorehouse", "house of prostitution", "cathouse", "bawdyhouse", "brothel"]}, {"answer": "brother", "hint": "synonyms for brother", "clues": ["blood brother", "sidekick", "comrade", "buddy", "chum", "pal", "Brother", "crony"]}, {"answer": "brotherhood", "hint": "synonyms for brotherhood", "clues": ["fraternity", "union", "trade union", "labor union", "sodality", "brotherhood"]}, {"answer": "brow", "hint": "synonyms for brow", "clues": ["eyebrow", "hilltop", "supercilium", "forehead", "brow"]}, {"answer": "brown_bread", "hint": "synonyms for brown bread", "clues": ["dark bread", "Boston brown bread", "whole wheat bread", "whole meal bread", "brown bread"]}, {"answer": "browne", "hint": "synonyms for browne", "clues": ["Hablot Knight Browne", "Phiz", "Browne", "Artemus Ward", "Charles Farrar Browne"]}, {"answer": "brownie", "hint": "synonyms for brownie", "clues": ["hob", "pixy", "imp", "elf", "pixie", "Brownie", "gremlin"]}, {"answer": "browning", "hint": "synonyms for browning", "clues": ["John M. Browning", "Robert Browning", "toasting", "Browning", "Elizabeth Barrett Browning"]}, {"answer": "bruce", "hint": "synonyms for bruce", "clues": ["Robert the Bruce", "David Bruce", "Robert I", "Bruce", "Sir David Bruce"]}, {"answer": "brucellosis", "hint": "synonyms for brucellosis", "clues": ["Bang's disease", "Mediterranean fever", "undulant fever", "Gibraltar fever", "contagious abortion", "Rock fever", "Malta fever", "brucellosis"]}, {"answer": "bruegel", "hint": "synonyms for bruegel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "brueghel", "hint": "synonyms for brueghel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "bruno", "hint": "synonyms for bruno", "clues": ["Saint Bruno", "Leo IX", "Giordano Bruno", "St. Bruno", "Bruno", "Bruno of Toul"]}, {"answer": "brush", "hint": "synonyms for brush", "clues": ["copse", "encounter", "light touch", "clash", "thicket", "skirmish", "brushwood", "coppice", "brushing"]}, {"answer": "brushwood", "hint": "synonyms for brushwood", "clues": ["brush", "copse", "coppice", "thicket", "brushwood"]}, {"answer": "brusqueness", "hint": "synonyms for brusqueness", "clues": ["shortness", "curtness", "abruptness", "gruffness", "brusqueness"]}, {"answer": "brussels", "hint": "synonyms for brussels", "clues": ["capital of Belgium", "Brussels", "Bruxelles", "Belgian capital"]}, {"answer": "brussels_biscuit", "hint": "synonyms for brussels biscuit", "clues": ["zwieback", "rusk", "Brussels biscuit", "twice-baked bread"]}, {"answer": "brutality", "hint": "synonyms for brutality", "clues": ["barbarism", "barbarity", "savagery", "ferociousness", "viciousness", "brutality"]}, {"answer": "bruxelles", "hint": "synonyms for bruxelles", "clues": ["capital of Belgium", "Brussels", "Bruxelles", "Belgian capital"]}, {"answer": "bryan", "hint": "synonyms for bryan", "clues": ["William Jennings Bryan", "Great Commoner", "Bryan", "Boy Orator of the Platte"]}, {"answer": "bs", "hint": "synonyms for bs", "clues": ["B-complex vitamin", "SB", "B vitamin", "atomic number 5", "B", "Bachelor of Science", "vitamin B", "B complex", "vitamin B complex", "group B", "type B", "barn", "boron", "Bel"]}, {"answer": "buck", "hint": "synonyms for buck", "clues": ["sawhorse", "sawbuck", "long horse", "dollar", "one dollar bill", "vaulting horse", "Pearl Sydenstricker Buck", "dollar bill", "clam", "horse", "Buck", "Pearl Buck"]}, {"answer": "buddha", "hint": "synonyms for buddha", "clues": ["Gautama", "Gautama Siddhartha", "Gautama Buddha", "Buddha", "Siddhartha"]}, {"answer": "buddy", "hint": "synonyms for buddy", "clues": ["crony", "sidekick", "chum", "brother", "pal", "buddy"]}, {"answer": "buffalo_bill", "hint": "synonyms for buffalo bill", "clues": ["William Frederick Cody", "Buffalo Bill Cody", "Buffalo Bill", "Cody", "William F. Cody"]}, {"answer": "buffalo_bill_cody", "hint": "synonyms for buffalo bill cody", "clues": ["William Frederick Cody", "Buffalo Bill Cody", "Buffalo Bill", "Cody", "William F. Cody"]}, {"answer": "buffer", "hint": "synonyms for buffer", "clues": ["pilot", "fender", "polisher", "buffer zone", "cowcatcher", "buffer storage", "buff", "buffer"]}, {"answer": "buffet", "hint": "synonyms for buffet", "clues": ["counter", "sideboard", "snack counter", "snack bar", "buffet"]}, {"answer": "buffoon", "hint": "synonyms for buffoon", "clues": ["clown", "goofball", "goof", "merry andrew", "buffoon"]}, {"answer": "buffoonery", "hint": "synonyms for buffoonery", "clues": ["clowning", "frivolity", "japery", "harlequinade", "prank", "buffoonery"]}, {"answer": "bugaboo", "hint": "synonyms for bugaboo", "clues": ["boogeyman", "bugbear", "booger", "bugaboo"]}, {"answer": "bugbear", "hint": "synonyms for bugbear", "clues": ["boogeyman", "hobgoblin", "booger", "bugaboo", "bugbear"]}, {"answer": "build", "hint": "synonyms for build", "clues": ["form", "flesh", "anatomy", "habitus", "physical body", "human body", "body-build", "soma", "physique", "bod", "chassis", "figure", "shape", "frame", "material body", "build"]}, {"answer": "bulb", "hint": "synonyms for bulb", "clues": ["incandescent lamp", "light bulb", "electric-light bulb", "electric light", "medulla oblongata", "medulla", "bulb"]}, {"answer": "bulge", "hint": "synonyms for bulge", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "hump", "protuberance", "gibbousness", "protrusion", "jut", "bump", "bulge"]}, {"answer": "bull", "hint": "synonyms for bull", "clues": ["Samson", "crap", "dogshit", "fuzz", "bullshit", "Taurus", "Bull", "cop", "pig", "horseshit", "bull's eye", "shit", "Taurus the Bull", "papal bull", "Irish bull", "bruiser", "copper", "strapper"]}, {"answer": "bull's_eye", "hint": "synonyms for bull's eye", "clues": ["home run", "mark", "bull", "bell ringer", "bull's eye"]}, {"answer": "bull_fiddle", "hint": "synonyms for bull fiddle", "clues": ["double bass", "bass fiddle", "string bass", "contrabass", "bass viol", "bull fiddle"]}, {"answer": "bullet", "hint": "synonyms for bullet", "clues": ["smoke", "bullet train", "fastball", "hummer", "heater", "slug", "bullet"]}, {"answer": "bulletin_board", "hint": "synonyms for bulletin board", "clues": ["bbs", "notice board", "bulletin board system", "electronic bulletin board", "bulletin board"]}, {"answer": "bullheadedness", "hint": "synonyms for bullheadedness", "clues": ["self-will", "pigheadedness", "obstinacy", "obstinance", "stubbornness", "bullheadedness"]}, {"answer": "bullshit", "hint": "synonyms for bullshit", "clues": ["crap", "bull", "dogshit", "horseshit", "shit", "Irish bull", "bullshit"]}, {"answer": "bulwark", "hint": "synonyms for bulwark", "clues": ["mole", "rampart", "wall", "groin", "seawall", "jetty", "groyne", "breakwater", "bulwark"]}, {"answer": "bulwer-lytton", "hint": "synonyms for bulwer-lytton", "clues": ["Edward George Earle Bulwer-Lytton", "Bulwer-Lytton", "Lytton", "First Baron Lytton"]}, {"answer": "bumbler", "hint": "synonyms for bumbler", "clues": ["bungler", "butcher", "stumbler", "fumbler", "fuckup", "blunderer", "sad sack"]}, {"answer": "bump", "hint": "synonyms for bump", "clues": ["extrusion", "prominence", "excrescence", "swelling", "blow", "gibbosity", "protrusion", "hump", "protuberance", "gibbousness", "bulge", "jut", "bump"]}, {"answer": "bumpkin", "hint": "synonyms for bumpkin", "clues": ["chawbacon", "yahoo", "yokel", "rube", "hayseed", "hick", "bumpkin"]}, {"answer": "bunce", "hint": "synonyms for bunce", "clues": ["bonanza", "manna from heaven", "godsend", "boom", "gold rush", "windfall", "gravy", "bunce"]}, {"answer": "bunch", "hint": "synonyms for bunch", "clues": ["lot", "caboodle", "cluster", "crew", "gang", "crowd", "clump", "bunch"]}, {"answer": "bunco", "hint": "synonyms for bunco", "clues": ["bunco game", "confidence trick", "con", "hustle", "flimflam", "gyp", "sting", "bunko", "confidence game", "con game", "bunco"]}, {"answer": "bunco_game", "hint": "synonyms for bunco game", "clues": ["hustle", "confidence trick", "con", "bunko game", "flimflam", "bunco", "gyp", "sting", "bunko", "confidence game", "con game"]}, {"answer": "buncombe", "hint": "synonyms for buncombe", "clues": ["bunk", "guff", "hogwash", "bunkum", "rot", "buncombe"]}, {"answer": "bundle", "hint": "synonyms for bundle", "clues": ["package", "parcel", "big bucks", "packet", "sheaf", "pile", "megabucks", "big money", "bundle"]}, {"answer": "bundle_of_his", "hint": "synonyms for bundle of his", "clues": ["truncus atrioventricularis", "atrioventricular bundle", "atrioventricular trunk", "bundle of His"]}, {"answer": "bungle", "hint": "synonyms for bungle", "clues": ["bloomer", "flub", "blunder", "boo-boo", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle"]}, {"answer": "bungler", "hint": "synonyms for bungler", "clues": ["bumbler", "butcher", "stumbler", "fuckup", "blunderer", "sad sack", "bungler"]}, {"answer": "bunk", "hint": "synonyms for bunk", "clues": ["buncombe", "feed bunk", "guff", "nonsense", "hogwash", "berth", "hokum", "rot", "meaninglessness", "nonsensicality", "built in bed", "bunk bed", "bunkum", "bunk"]}, {"answer": "bunko", "hint": "synonyms for bunko", "clues": ["hustle", "confidence trick", "con", "bunko game", "flimflam", "bunco", "gyp", "sting", "confidence game", "con game", "bunko"]}, {"answer": "bunko_game", "hint": "synonyms for bunko game", "clues": ["bunco game", "confidence trick", "con", "hustle", "flimflam", "bunco", "gyp", "sting", "bunko", "confidence game", "con game"]}, {"answer": "bunkum", "hint": "synonyms for bunkum", "clues": ["bunk", "buncombe", "guff", "hogwash", "rot", "bunkum"]}, {"answer": "buns", "hint": "synonyms for buns", "clues": ["fundament", "rear end", "tush", "hindquarters", "prat", "seat", "butt", "roll", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "bun", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can"]}, {"answer": "bunsen", "hint": "synonyms for bunsen", "clues": ["etna", "bunsen burner", "Robert Bunsen", "Robert Wilhelm Bunsen", "Bunsen"]}, {"answer": "burden", "hint": "synonyms for burden", "clues": ["core", "gist", "essence", "load", "incumbrance", "effect", "onus", "burden"]}, {"answer": "bureau", "hint": "synonyms for bureau", "clues": ["federal agency", "authority", "government agency", "chest of drawers", "chest", "office", "agency", "dresser", "bureau"]}, {"answer": "bureau_of_customs", "hint": "synonyms for bureau of customs", "clues": ["Customs Service", "Customs Bureau", "Bureau of Customs", "USCB"]}, {"answer": "burger", "hint": "synonyms for burger", "clues": ["Burger", "Warren Earl Burger", "Warren Burger", "beefburger", "hamburger"]}, {"answer": "burial", "hint": "synonyms for burial", "clues": ["interment", "burying", "inhumation", "entombment", "sepulture", "burial"]}, {"answer": "burial_ground", "hint": "synonyms for burial ground", "clues": ["burying ground", "necropolis", "graveyard", "memorial park", "cemetery", "burial site", "burial ground"]}, {"answer": "burial_site", "hint": "synonyms for burial site", "clues": ["burial ground", "necropolis", "graveyard", "memorial park", "cemetery", "burying ground", "burial site"]}, {"answer": "burke", "hint": "synonyms for burke", "clues": ["Martha Jane Burk", "Calamity Jane", "Burk", "Edmund Burke"]}, {"answer": "burn", "hint": "synonyms for burn", "clues": ["suntan", "sunburn", "tan", "burning", "burn mark"]}, {"answer": "burns", "hint": "synonyms for burns", "clues": ["Robert Burns", "burn", "Nathan Birnbaum", "suntan", "tan", "sunburn", "burn mark", "George Burns"]}, {"answer": "burnside", "hint": "synonyms for burnside", "clues": ["sideburn", "A. E. Burnside", "side-whiskers", "Burnside", "Ambrose Everett Burnside", "mutton chop"]}, {"answer": "burnt_lime", "hint": "synonyms for burnt lime", "clues": ["calcined lime", "calcium oxide", "calx", "quicklime", "fluxing lime", "unslaked lime", "lime", "burnt lime"]}, {"answer": "burnt_sienna", "hint": "synonyms for burnt sienna", "clues": ["Venetian red", "reddish brown", "mahogany", "sepia", "burnt sienna"]}, {"answer": "burnt_umber", "hint": "synonyms for burnt umber", "clues": ["deep brown", "umber", "coffee", "chocolate", "burnt umber"]}, {"answer": "burrhus_frederic_skinner", "hint": "synonyms for burrhus frederic skinner", "clues": ["Burrhus Frederic Skinner", "B. F. Skinner", "Fred Skinner", "Skinner"]}, {"answer": "burroughs", "hint": "synonyms for burroughs", "clues": ["Burroughs", "Edgar Rice Burroughs", "William Burroughs", "William Seward Burroughs"]}, {"answer": "burst", "hint": "synonyms for burst", "clues": ["outburst", "fusillade", "fit", "volley", "flare-up", "salvo", "explosion", "burst"]}, {"answer": "burying_ground", "hint": "synonyms for burying ground", "clues": ["burial ground", "necropolis", "graveyard", "memorial park", "cemetery", "burial site", "burying ground"]}, {"answer": "bus", "hint": "synonyms for bus", "clues": ["omnibus", "coach", "busbar", "autobus", "motorcoach", "jitney", "charabanc", "bus topology", "motorbus", "passenger vehicle", "heap", "jalopy", "double-decker", "bus"]}, {"answer": "business", "hint": "synonyms for business", "clues": ["byplay", "business organisation", "line of work", "business sector", "commercial enterprise", "job", "line", "clientele", "stage business", "patronage", "business concern", "occupation", "business enterprise", "concern", "business"]}, {"answer": "business_concern", "hint": "synonyms for business concern", "clues": ["concern", "business organisation", "business", "business concern"]}, {"answer": "business_leader", "hint": "synonyms for business leader", "clues": ["king", "baron", "power", "tycoon", "mogul", "magnate", "big businessman", "top executive", "business leader"]}, {"answer": "business_line", "hint": "synonyms for business line", "clues": ["line of merchandise", "line of products", "line of business", "line", "product line", "business line"]}, {"answer": "business_organisation", "hint": "synonyms for business organisation", "clues": ["business organization", "concern", "business", "business concern"]}, {"answer": "business_organization", "hint": "synonyms for business organization", "clues": ["concern", "business organisation", "business", "business concern"]}, {"answer": "buskin", "hint": "synonyms for buskin", "clues": ["top boot", "combat boot", "half boot", "desert boot", "buskin"]}, {"answer": "buss", "hint": "synonyms for buss", "clues": ["omnibus", "coach", "busbar", "autobus", "motorcoach", "jitney", "charabanc", "bus topology", "motorbus", "passenger vehicle", "kiss", "heap", "jalopy", "osculation", "double-decker", "bus"]}, {"answer": "buster", "hint": "synonyms for buster", "clues": ["bronco buster", "baby buster", "fellow", "dude", "buster"]}, {"answer": "bustle", "hint": "synonyms for bustle", "clues": ["hustle", "ado", "stir", "fuss", "flurry", "bustle"]}, {"answer": "busy_bee", "hint": "synonyms for busy bee", "clues": ["eager beaver", "sharpy", "live wire", "sharpie", "busy bee"]}, {"answer": "butcher", "hint": "synonyms for butcher", "clues": ["bumbler", "meatman", "bungler", "slaughterer", "stumbler", "fuckup", "botcher", "blunderer", "sad sack"]}, {"answer": "butcher_cumberland", "hint": "synonyms for butcher cumberland", "clues": ["Duke of Cumberland", "Butcher Cumberland", "Cumberland", "William Augustus"]}, {"answer": "butchery", "hint": "synonyms for butchery", "clues": ["abattoir", "massacre", "carnage", "mass murder", "slaughterhouse", "butchering", "slaughter", "shambles", "butchery"]}, {"answer": "butt", "hint": "synonyms for butt", "clues": ["tush", "buns", "seat", "tail end", "rear", "buttocks", "bum", "target", "butt end", "fag", "rump", "goat", "nates", "coffin nail", "can", "fundament", "rear end", "stub", "hindquarters", "prat", "derriere", "butt joint", "stern", "backside", "posterior", "keister", "laughingstock", "tail", "cigarette", "bottom", "ass", "fanny", "hind end", "arse", "behind", "tooshie", "stooge", "butt"]}, {"answer": "butterball", "hint": "synonyms for butterball", "clues": ["fatso", "fat person", "fatty", "roly-poly", "butterball"]}, {"answer": "butterfly_nut", "hint": "synonyms for butterfly nut", "clues": ["thumbnut", "wing screw", "wing-nut", "butterfly nut"]}, {"answer": "buttocks", "hint": "synonyms for buttocks", "clues": ["fundament", "rear end", "tush", "buns", "buttock", "hindquarters", "prat", "cheek", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can"]}, {"answer": "button", "hint": "synonyms for button", "clues": ["clitoris", "release", "push", "push button", "clit", "button"]}, {"answer": "buzz_bomb", "hint": "synonyms for buzz bomb", "clues": ["V-1", "robot bomb", "flying bomb", "doodlebug", "buzz bomb"]}, {"answer": "bw", "hint": "synonyms for bw", "clues": ["biological attack", "BW", "bioattack", "biological warfare"]}, {"answer": "by-blow", "hint": "synonyms for by-blow", "clues": ["love child", "illegitimate child", "whoreson", "illegitimate", "bastard", "by-blow"]}, {"answer": "by-line", "hint": "synonyms for by-line", "clues": ["credit line", "hobby", "spare-time activity", "pursuit", "avocation", "sideline", "by-line"]}, {"answer": "bye", "hint": "synonyms for bye", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "bye-bye", "auf wiedersehen", "adios", "pass", "sayonara", "bye"]}, {"answer": "bye-bye", "hint": "synonyms for bye-bye", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye", "bye-bye"]}, {"answer": "byelarus", "hint": "synonyms for byelarus", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "byelorussia", "hint": "synonyms for byelorussia", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "byname", "hint": "synonyms for byname", "clues": ["soubriquet", "cognomen", "nickname", "moniker", "byname"]}, {"answer": "bypass", "hint": "synonyms for bypass", "clues": ["beltway", "electrical shunt", "ringway", "ring road", "shunt", "bypass"]}, {"answer": "byrd", "hint": "synonyms for byrd", "clues": ["Richard E. Byrd", "Richard Evelyn Byrd", "William Byrd", "Admiral Byrd", "Byrd"]}, {"answer": "byre", "hint": "synonyms for byre", "clues": ["cowbarn", "cowhouse", "cowshed", "byre"]}, {"answer": "c-section", "hint": "synonyms for c-section", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "c._p._snow", "hint": "synonyms for c. p. snow", "clues": ["Snow", "Charles Percy Snow", "Baron Snow of Leicester", "C. P. Snow"]}, {"answer": "c.p.u.", "hint": "synonyms for c.p.u.", "clues": ["processor", "central processing unit", "central processor", "CPU", "mainframe", "C.P.U."]}, {"answer": "ca", "hint": "synonyms for ca", "clues": ["calcium", "Golden State", "Calif.", "CA", "California", "atomic number 20"]}, {"answer": "cab", "hint": "synonyms for cab", "clues": ["taxicab", "hack", "taxi", "cabriolet", "cab"]}, {"answer": "cabal", "hint": "synonyms for cabal", "clues": ["faction", "conspiracy", "junto", "camarilla", "cabal"]}, {"answer": "cabaret", "hint": "synonyms for cabaret", "clues": ["nightclub", "floorshow", "nightspot", "club", "cabaret"]}, {"answer": "cabbage", "hint": "synonyms for cabbage", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "chou", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage"]}, {"answer": "cabby", "hint": "synonyms for cabby", "clues": ["hack driver", "taxidriver", "cabman", "cabdriver", "livery driver", "taximan", "cabby"]}, {"answer": "cabdriver", "hint": "synonyms for cabdriver", "clues": ["cabby", "taxidriver", "cabman", "hack driver", "taximan", "livery driver", "cabdriver"]}, {"answer": "cabg", "hint": "synonyms for cabg", "clues": ["coronary bypass", "coronary bypass surgery", "CABG", "coronary artery bypass graft"]}, {"answer": "cable", "hint": "synonyms for cable", "clues": ["overseas telegram", "line", "cable television", "cable television service", "cable's length", "cable system", "transmission line", "cablegram", "cable"]}, {"answer": "cable_tramway", "hint": "synonyms for cable tramway", "clues": ["aerial tramway", "ropeway", "tram", "tramway", "cable tramway"]}, {"answer": "cabman", "hint": "synonyms for cabman", "clues": ["hack driver", "taxidriver", "cabby", "cabdriver", "livery driver", "taximan", "cabman"]}, {"answer": "caboose", "hint": "synonyms for caboose", "clues": ["galley", "cabin car", "cookhouse", "ship's galley", "caboose"]}, {"answer": "cabot", "hint": "synonyms for cabot", "clues": ["Giovanni Cabato", "Sebastian Cabot", "Cabot", "John Cabot"]}, {"answer": "cackle", "hint": "synonyms for cackle", "clues": ["chatter", "yakety-yak", "yak", "cackle"]}, {"answer": "cacodyl", "hint": "synonyms for cacodyl", "clues": ["cacodyl group", "tetramethyldiarsine", "arsenic group", "cacodyl radical", "cacodyl"]}, {"answer": "cacophony", "hint": "synonyms for cacophony", "clues": ["clamor", "blaring", "blare", "din", "cacophony"]}, {"answer": "cad", "hint": "synonyms for cad", "clues": ["CAD", "hound", "dog", "blackguard", "bounder", "heel", "computer-aided design"]}, {"answer": "cadaver", "hint": "synonyms for cadaver", "clues": ["remains", "corpse", "stiff", "clay", "cadaver"]}, {"answer": "cadence", "hint": "synonyms for cadence", "clues": ["cadency", "meter", "beat", "metre", "measure"]}, {"answer": "caesar", "hint": "synonyms for caesar", "clues": ["Gaius Julius Caesar", "Sid Caesar", "Caesar", "Julius Caesar"]}, {"answer": "caesarean_delivery", "hint": "synonyms for caesarean delivery", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "caesarean_section", "hint": "synonyms for caesarean section", "clues": ["caesarian delivery", "cesarian", "cesarean section", "abdominal delivery", "C-section", "caesarean"]}, {"answer": "caesarian_delivery", "hint": "synonyms for caesarian delivery", "clues": ["cesarian", "caesarean", "cesarean delivery", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "caesarian_section", "hint": "synonyms for caesarian section", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "caesarism", "hint": "synonyms for caesarism", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "dictatorship", "tyranny", "authoritarianism", "absolutism"]}, {"answer": "cage", "hint": "synonyms for cage", "clues": ["Cage", "coop", "John Cage", "John Milton Cage Jr.", "batting cage"]}, {"answer": "cairo", "hint": "synonyms for cairo", "clues": ["Cairo", "Al Qahira", "capital of Egypt", "Egyptian capital"]}, {"answer": "caisson", "hint": "synonyms for caisson", "clues": ["pneumatic caisson", "coffer", "lacuna", "ammunition chest", "cofferdam", "caisson"]}, {"answer": "caisson_disease", "hint": "synonyms for caisson disease", "clues": ["gas embolism", "air embolism", "decompression sickness", "aeroembolism", "bends", "caisson disease"]}, {"answer": "cakehole", "hint": "synonyms for cakehole", "clues": ["maw", "gob", "yap", "hole", "trap", "cakehole"]}, {"answer": "calamity", "hint": "synonyms for calamity", "clues": ["tragedy", "catastrophe", "disaster", "cataclysm", "calamity"]}, {"answer": "calciferol", "hint": "synonyms for calciferol", "clues": ["cholecalciferol", "D", "ergocalciferol", "viosterol", "vitamin D", "calciferol"]}, {"answer": "calcined_lime", "hint": "synonyms for calcined lime", "clues": ["calcium oxide", "calx", "burnt lime", "quicklime", "fluxing lime", "unslaked lime", "lime", "calcined lime"]}, {"answer": "calcium_hydrate", "hint": "synonyms for calcium hydrate", "clues": ["lime hydrate", "hydrated lime", "lime", "slaked lime", "caustic lime", "calcium hydroxide", "calcium hydrate"]}, {"answer": "calcium_hydroxide", "hint": "synonyms for calcium hydroxide", "clues": ["calcium hydrate", "lime hydrate", "hydrated lime", "lime", "slaked lime", "caustic lime", "calcium hydroxide"]}, {"answer": "calcium_oxide", "hint": "synonyms for calcium oxide", "clues": ["calcined lime", "calx", "burnt lime", "quicklime", "fluxing lime", "unslaked lime", "lime", "calcium oxide"]}, {"answer": "calculation", "hint": "synonyms for calculation", "clues": ["reckoning", "deliberation", "computing", "figuring", "computation", "calculation"]}, {"answer": "calculator", "hint": "synonyms for calculator", "clues": ["calculating machine", "estimator", "computer", "figurer", "reckoner", "calculator"]}, {"answer": "calculus", "hint": "synonyms for calculus", "clues": ["infinitesimal calculus", "tartar", "tophus", "concretion", "calculus"]}, {"answer": "calean", "hint": "synonyms for calean", "clues": ["nargileh", "kalian", "hookah", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe", "calean"]}, {"answer": "calendar_method", "hint": "synonyms for calendar method", "clues": ["rhythm method", "rhythm method of birth control", "rhythm", "calendar method of birth control", "calendar method"]}, {"answer": "calendar_method_of_birth_control", "hint": "synonyms for calendar method of birth control", "clues": ["rhythm method", "calendar method", "rhythm method of birth control", "rhythm", "calendar method of birth control"]}, {"answer": "caliber", "hint": "synonyms for caliber", "clues": ["gauge", "calibre", "quality", "bore"]}, {"answer": "calibre", "hint": "synonyms for calibre", "clues": ["caliber", "gauge", "quality", "bore"]}, {"answer": "calif", "hint": "synonyms for calif", "clues": ["caliph", "khalif", "kaliph", "calif"]}, {"answer": "calif.", "hint": "synonyms for calif.", "clues": ["California", "Calif.", "CA", "Golden State"]}, {"answer": "california", "hint": "synonyms for california", "clues": ["California", "Calif.", "CA", "Golden State"]}, {"answer": "caliph", "hint": "synonyms for caliph", "clues": ["khalif", "calif", "kaliph", "caliph"]}, {"answer": "call", "hint": "synonyms for call", "clues": ["yell", "claim", "Call", "birdsong", "outcry", "cry", "margin call", "phone call", "song", "telephone call", "birdcall", "call option", "vociferation", "shout"]}, {"answer": "call_box", "hint": "synonyms for call box", "clues": ["telephone booth", "telephone kiosk", "Post-Office box", "PO Box", "POB", "phone booth", "letter box", "call box"]}, {"answer": "callathump", "hint": "synonyms for callathump", "clues": ["belling", "callithump", "shivaree", "callithump parade", "charivari"]}, {"answer": "callithump", "hint": "synonyms for callithump", "clues": ["belling", "shivaree", "callithump parade", "charivari", "callathump"]}, {"answer": "callosity", "hint": "synonyms for callosity", "clues": ["unfeelingness", "hardness", "callus", "callousness", "insensibility", "callosity"]}, {"answer": "callousness", "hint": "synonyms for callousness", "clues": ["hardness", "callosity", "insensibility", "unfeelingness", "callousness"]}, {"answer": "calorie", "hint": "synonyms for calorie", "clues": ["Calorie", "kilogram calorie", "nutritionist's calorie", "small calorie", "large calorie", "kilocalorie"]}, {"answer": "calumniation", "hint": "synonyms for calumniation", "clues": ["defamation", "obloquy", "calumny", "traducement", "hatchet job", "calumniation"]}, {"answer": "calumny", "hint": "synonyms for calumny", "clues": ["calumniation", "traducement", "defamation", "slander", "aspersion", "obloquy", "denigration", "hatchet job", "calumny"]}, {"answer": "calvin", "hint": "synonyms for calvin", "clues": ["Jean Caulvin", "Calvin", "John Calvin", "Melvin Calvin"]}, {"answer": "calx", "hint": "synonyms for calx", "clues": ["calcined lime", "calcium oxide", "burnt lime", "quicklime", "fluxing lime", "unslaked lime", "lime", "calx"]}, {"answer": "camaraderie", "hint": "synonyms for camaraderie", "clues": ["comradeliness", "comradery", "chumminess", "comradeship", "camaraderie"]}, {"answer": "camellia_state", "hint": "synonyms for camellia state", "clues": ["AL", "Alabama", "Camellia State", "Heart of Dixie"]}, {"answer": "campaign", "hint": "synonyms for campaign", "clues": ["cause", "hunting expedition", "crusade", "military campaign", "effort", "movement", "political campaign", "run", "drive", "safari", "campaign"]}, {"answer": "campaigning", "hint": "synonyms for campaigning", "clues": ["candidacy", "political campaign", "electioneering", "candidature", "campaigning"]}, {"answer": "campground", "hint": "synonyms for campground", "clues": ["camping site", "camping area", "encampment", "bivouac", "campsite", "camping ground", "campground"]}, {"answer": "camping_area", "hint": "synonyms for camping area", "clues": ["campground", "camping site", "encampment", "bivouac", "campsite", "camping ground", "camping area"]}, {"answer": "camping_ground", "hint": "synonyms for camping ground", "clues": ["campground", "camping site", "camping area", "encampment", "campsite", "bivouac", "camping ground"]}, {"answer": "camping_site", "hint": "synonyms for camping site", "clues": ["campground", "camping area", "encampment", "bivouac", "campsite", "camping ground", "camping site"]}, {"answer": "campsite", "hint": "synonyms for campsite", "clues": ["campground", "camping site", "camping area", "encampment", "bivouac", "camping ground", "campsite"]}, {"answer": "can", "hint": "synonyms for can", "clues": ["tush", "buns", "bathroom", "john", "toilet", "seat", "butt", "tail end", "tin can", "rear", "throne", "buttocks", "bum", "lavatory", "rump", "commode", "nates", "fundament", "rear end", "canful", "hindquarters", "prat", "pot", "privy", "derriere", "stool", "stern", "backside", "posterior", "keister", "tail", "potty", "can buoy", "lav", "bottom", "tin", "ass", "fanny", "hind end", "arse", "behind", "tooshie", "crapper", "can"]}, {"answer": "canaan", "hint": "synonyms for canaan", "clues": ["Promised Land", "Holy Land", "Canaan", "Palestine"]}, {"answer": "canaries", "hint": "synonyms for canaries", "clues": ["sneaker", "Canaries", "stool pigeon", "snitcher", "Canary Islands", "stoolie", "sneak", "fink", "canary", "canary yellow"]}, {"answer": "cancer", "hint": "synonyms for cancer", "clues": ["malignant neoplastic disease", "Cancer", "Cancer the Crab", "Crab"]}, {"answer": "candidacy", "hint": "synonyms for candidacy", "clues": ["campaigning", "political campaign", "electioneering", "candidature", "candidacy"]}, {"answer": "candidature", "hint": "synonyms for candidature", "clues": ["campaigning", "political campaign", "electioneering", "candidacy", "candidature"]}, {"answer": "candidness", "hint": "synonyms for candidness", "clues": ["candor", "directness", "frankness", "forthrightness", "candidness"]}, {"answer": "candied_apple", "hint": "synonyms for candied apple", "clues": ["taffy apple", "candy apple", "caramel apple", "toffee apple", "candied apple"]}, {"answer": "candle", "hint": "synonyms for candle", "clues": ["candela", "wax light", "cd", "taper", "standard candle", "candle"]}, {"answer": "candor", "hint": "synonyms for candor", "clues": ["candidness", "candour", "directness", "fair-mindedness", "fairness", "frankness", "forthrightness"]}, {"answer": "candour", "hint": "synonyms for candour", "clues": ["candidness", "candor", "fair-mindedness", "directness", "frankness", "fairness", "forthrightness"]}, {"answer": "candy_apple", "hint": "synonyms for candy apple", "clues": ["taffy apple", "caramel apple", "candied apple", "toffee apple", "candy apple"]}, {"answer": "canicula", "hint": "synonyms for canicula", "clues": ["Dog Star", "Canicula", "Sothis", "Sirius"]}, {"answer": "canine_tooth", "hint": "synonyms for canine tooth", "clues": ["cuspid", "canine", "eye tooth", "dogtooth", "canine tooth"]}, {"answer": "canister", "hint": "synonyms for canister", "clues": ["canister shot", "cannister", "case shot", "tin"]}, {"answer": "cant", "hint": "synonyms for cant", "clues": ["argot", "vernacular", "bevel", "slang", "patois", "lingo", "pious platitude", "chamfer", "camber", "bank", "buzzword", "jargon", "cant"]}, {"answer": "canticle_of_canticles", "hint": "synonyms for canticle of canticles", "clues": ["Song of Songs", "Canticle of Canticles", "Song of Solomon", "Canticles"]}, {"answer": "canticles", "hint": "synonyms for canticles", "clues": ["Canticle of Canticles", "Song of Solomon", "canticle", "Song of Songs"]}, {"answer": "canton", "hint": "synonyms for canton", "clues": ["Canton", "Kwangchow", "Kuangchou", "Guangzhou"]}, {"answer": "canton_river", "hint": "synonyms for canton river", "clues": ["Chu Kiang", "Zhu Jiang", "Pearl River", "Canton River"]}, {"answer": "cantonese", "hint": "synonyms for cantonese", "clues": ["Yue", "Cantonese dialect", "Yue dialect", "Cantonese"]}, {"answer": "cantonese_dialect", "hint": "synonyms for cantonese dialect", "clues": ["Yue", "Cantonese dialect", "Yue dialect", "Cantonese"]}, {"answer": "canute", "hint": "synonyms for canute", "clues": ["Canute", "Cnut", "Canute the Great", "Knut"]}, {"answer": "canute_the_great", "hint": "synonyms for canute the great", "clues": ["Canute", "Cnut", "Canute the Great", "Knut"]}, {"answer": "canvas", "hint": "synonyms for canvas", "clues": ["canvas tent", "sheet", "sail", "canvass"]}, {"answer": "canvass", "hint": "synonyms for canvass", "clues": ["canvas", "opinion poll", "canvas tent", "poll", "sheet", "public opinion poll", "sail"]}, {"answer": "canvasser", "hint": "synonyms for canvasser", "clues": ["solicitor", "scrutineer", "headcounter", "pollster", "poll taker", "canvasser"]}, {"answer": "caoutchouc", "hint": "synonyms for caoutchouc", "clues": ["gum elastic", "natural rubber", "rubber", "India rubber", "caoutchouc"]}, {"answer": "cap", "hint": "synonyms for cap", "clues": ["roof", "crownwork", "capital", "ceiling", "detonating device", "detonator", "jacket", "crown", "chapiter", "jacket crown", "hood", "cap"]}, {"answer": "capacitance", "hint": "synonyms for capacitance", "clues": ["electrical condenser", "capacitor", "condenser", "capacity", "electrical capacity", "capacitance"]}, {"answer": "capacity", "hint": "synonyms for capacity", "clues": ["capability", "capacitance", "content", "mental ability", "electrical capacity", "capacity"]}, {"answer": "capacity_measure", "hint": "synonyms for capacity measure", "clues": ["cubature unit", "capacity unit", "cubic content unit", "cubage unit", "displacement unit", "volume unit", "cubic measure", "capacity measure"]}, {"answer": "capacity_unit", "hint": "synonyms for capacity unit", "clues": ["cubature unit", "cubic content unit", "cubage unit", "capacity measure", "displacement unit", "volume unit", "cubic measure", "capacity unit"]}, {"answer": "caper", "hint": "synonyms for caper", "clues": ["put-on", "job", "play", "joke", "trick", "prank", "frolic", "capriole", "antic", "romp", "gambol", "caper"]}, {"answer": "capital_letter", "hint": "synonyms for capital letter", "clues": ["upper-case letter", "majuscule", "capital", "uppercase", "capital letter"]}, {"answer": "capital_of_belgium", "hint": "synonyms for capital of belgium", "clues": ["capital of Belgium", "Brussels", "Bruxelles", "Belgian capital"]}, {"answer": "capital_of_chile", "hint": "synonyms for capital of chile", "clues": ["Santiago", "Gran Santiago", "capital of Chile", "Santiago de Chile"]}, {"answer": "capital_of_egypt", "hint": "synonyms for capital of egypt", "clues": ["Cairo", "Al Qahira", "capital of Egypt", "Egyptian capital"]}, {"answer": "capital_of_finland", "hint": "synonyms for capital of finland", "clues": ["capital of Finland", "Helsingfors", "Helsinki", "Finnish capital"]}, {"answer": "capital_of_france", "hint": "synonyms for capital of france", "clues": ["capital of France", "City of Light", "French capital", "Paris"]}, {"answer": "capital_of_georgia", "hint": "synonyms for capital of georgia", "clues": ["Atlanta", "Tiflis", "Tbilisi", "capital of Georgia"]}, {"answer": "capital_of_greece", "hint": "synonyms for capital of greece", "clues": ["capital of Greece", "Athinai", "Athens", "Greek capital"]}, {"answer": "capital_of_italy", "hint": "synonyms for capital of italy", "clues": ["Rome", "Eternal City", "capital of Italy", "Roma", "Italian capital"]}, {"answer": "capital_of_japan", "hint": "synonyms for capital of japan", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "capital_of_kuwait", "hint": "synonyms for capital of kuwait", "clues": ["Koweit", "Kuwait City", "capital of Kuwait", "Kuwait"]}, {"answer": "capital_of_lithuania", "hint": "synonyms for capital of lithuania", "clues": ["capital of Lithuania", "Vilnius", "Vilno", "Wilno", "Vilna"]}, {"answer": "capital_of_luxembourg", "hint": "synonyms for capital of luxembourg", "clues": ["Luxembourg", "Luxembourg City", "Luxembourg-Ville", "capital of Luxembourg"]}, {"answer": "capital_of_massachusetts", "hint": "synonyms for capital of massachusetts", "clues": ["capital of Massachusetts", "Beantown", "Hub of the Universe", "Boston"]}, {"answer": "capital_of_mexico", "hint": "synonyms for capital of mexico", "clues": ["Mexican capital", "Mexico City", "Ciudad de Mexico", "capital of Mexico"]}, {"answer": "capital_of_mongolia", "hint": "synonyms for capital of mongolia", "clues": ["Ulaanbaatar", "capital of Mongolia", "Urga", "Kulun", "Ulan Bator"]}, {"answer": "capital_of_qatar", "hint": "synonyms for capital of qatar", "clues": ["El Beda", "capital of Qatar", "Bida", "Doha"]}, {"answer": "capital_of_red_china", "hint": "synonyms for capital of red china", "clues": ["Beijing", "capital of Red China", "Peiping", "Peking"]}, {"answer": "capital_of_slovakia", "hint": "synonyms for capital of slovakia", "clues": ["Bratislava", "capital of Slovakia", "Pressburg", "Pozsony"]}, {"answer": "capital_of_tajikistan", "hint": "synonyms for capital of tajikistan", "clues": ["Stalinabad", "Dusanbe", "Dyushambe", "capital of Tajikistan"]}, {"answer": "capital_of_the_united_kingdom", "hint": "synonyms for capital of the united kingdom", "clues": ["British capital", "Greater London", "London", "capital of the United Kingdom"]}, {"answer": "capital_of_the_united_states", "hint": "synonyms for capital of the united states", "clues": ["American capital", "capital of the United States", "Washington D.C.", "Washington"]}, {"answer": "capital_of_tibet", "hint": "synonyms for capital of tibet", "clues": ["Forbidden City", "Lassa", "capital of Tibet", "Lhasa"]}, {"answer": "capital_of_turkey", "hint": "synonyms for capital of turkey", "clues": ["Ankara", "Turkish capital", "capital of Turkey", "Angora"]}, {"answer": "capone", "hint": "synonyms for capone", "clues": ["Scarface", "Al Capone", "Capone", "Alphonse Capone"]}, {"answer": "capriciousness", "hint": "synonyms for capriciousness", "clues": ["whimsey", "flightiness", "arbitrariness", "unpredictability", "whimsicality", "capriciousness"]}, {"answer": "capstone", "hint": "synonyms for capstone", "clues": ["finishing touch", "stretcher", "coping stone", "copestone", "capstone"]}, {"answer": "capsule", "hint": "synonyms for capsule", "clues": ["ejector seat", "abridgment", "condensation", "space capsule", "capsule"]}, {"answer": "captain", "hint": "synonyms for captain", "clues": ["police chief", "chieftain", "sea captain", "headwaiter", "maitre d'", "police captain", "skipper", "master", "maitre d'hotel", "senior pilot", "captain"]}, {"answer": "captain_bob", "hint": "synonyms for captain bob", "clues": ["Robert Abram Bartlett", "Captain Bob", "Bartlett", "Robert Bartlett"]}, {"answer": "captain_cook", "hint": "synonyms for captain cook", "clues": ["Cook", "Captain James Cook", "James Cook", "Captain Cook"]}, {"answer": "captain_hicks", "hint": "synonyms for captain hicks", "clues": ["6", "sixer", "VI", "sise", "hexad", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six"]}, {"answer": "captain_james_cook", "hint": "synonyms for captain james cook", "clues": ["Cook", "Captain James Cook", "James Cook", "Captain Cook"]}, {"answer": "captivity", "hint": "synonyms for captivity", "clues": ["incarceration", "immurement", "imprisonment", "enslavement", "captivity"]}, {"answer": "car", "hint": "synonyms for car", "clues": ["machine", "gondola", "automobile", "auto", "railway car", "railroad car", "motorcar", "elevator car", "railcar", "cable car", "car"]}, {"answer": "car-mechanic", "hint": "synonyms for car-mechanic", "clues": ["mechanic", "grease monkey", "automobile mechanic", "auto-mechanic", "car-mechanic"]}, {"answer": "car_horn", "hint": "synonyms for car horn", "clues": ["automobile horn", "horn", "hooter", "motor horn", "car horn"]}, {"answer": "car_maker", "hint": "synonyms for car maker", "clues": ["car manufacturer", "carmaker", "automaker", "auto manufacturer"]}, {"answer": "car_manufacturer", "hint": "synonyms for car manufacturer", "clues": ["carmaker", "automaker", "auto manufacturer", "car manufacturer"]}, {"answer": "car_rental", "hint": "synonyms for car rental", "clues": ["self-drive", "you-drive", "hire car", "rent-a-car", "car rental"]}, {"answer": "caramel_apple", "hint": "synonyms for caramel apple", "clues": ["candy apple", "taffy apple", "candied apple", "toffee apple", "caramel apple"]}, {"answer": "carbolic_acid", "hint": "synonyms for carbolic acid", "clues": ["hydroxybenzene", "oxybenzene", "phenylic acid", "phenol", "carbolic acid"]}, {"answer": "carbon", "hint": "synonyms for carbon", "clues": ["C", "atomic number 6", "carbon copy", "carbon paper", "carbon"]}, {"answer": "carbon_black", "hint": "synonyms for carbon black", "clues": ["smut", "lampblack", "crock", "soot", "carbon black"]}, {"answer": "carbonated_water", "hint": "synonyms for carbonated water", "clues": ["soda water", "sparkling water", "club soda", "seltzer", "carbonated water"]}, {"answer": "card", "hint": "synonyms for card", "clues": ["batting order", "carte", "board", "placard", "wit", "poster", "visiting card", "circuit board", "plug-in", "identity card", "notice", "bill of fare", "bill", "lineup", "add-in", "calling card", "posting", "scorecard", "carte du jour", "wag", "menu", "card"]}, {"answer": "card_sharp", "hint": "synonyms for card sharp", "clues": ["sharpy", "sharpie", "cardsharper", "card shark"]}, {"answer": "cardiac_resuscitation", "hint": "synonyms for cardiac resuscitation", "clues": ["cardiopulmonary resuscitation", "mouth-to-mouth resuscitation", "kiss of life", "CPR", "cardiac resuscitation"]}, {"answer": "cardinal_richelieu", "hint": "synonyms for cardinal richelieu", "clues": ["Armand Jean du Plessis", "Cardinal Richelieu", "Richelieu", "Duc de Richelieu"]}, {"answer": "cardiopulmonary_resuscitation", "hint": "synonyms for cardiopulmonary resuscitation", "clues": ["mouth-to-mouth resuscitation", "cardiac resuscitation", "kiss of life", "CPR", "cardiopulmonary resuscitation"]}, {"answer": "cards", "hint": "synonyms for cards", "clues": ["batting order", "carte", "board", "placard", "wit", "poster", "visiting card", "card game", "circuit board", "plug-in", "identity card", "notice", "bill of fare", "bill", "lineup", "card", "add-in", "calling card", "posting", "scorecard", "carte du jour", "wag", "menu"]}, {"answer": "care", "hint": "synonyms for care", "clues": ["forethought", "upkeep", "precaution", "aid", "guardianship", "attention", "tending", "tutelage", "caution", "charge", "concern", "fear", "maintenance", "care"]}, {"answer": "caregiver", "hint": "synonyms for caregiver", "clues": ["PCP", "health care provider", "health professional", "primary care provider", "caregiver"]}, {"answer": "carelessness", "hint": "synonyms for carelessness", "clues": ["sloppiness", "negligence", "neglect", "nonperformance", "carelessness"]}, {"answer": "caressing", "hint": "synonyms for caressing", "clues": ["petting", "smooching", "cuddling", "necking", "hugging", "kissing", "fondling", "snuggling", "caressing"]}, {"answer": "cargo", "hint": "synonyms for cargo", "clues": ["payload", "shipment", "loading", "freight", "consignment", "cargo"]}, {"answer": "cargo_area", "hint": "synonyms for cargo area", "clues": ["hold", "cargo deck", "cargo hold", "storage area", "cargo area"]}, {"answer": "cargo_deck", "hint": "synonyms for cargo deck", "clues": ["cargo area", "hold", "cargo hold", "storage area", "cargo deck"]}, {"answer": "cargo_hold", "hint": "synonyms for cargo hold", "clues": ["cargo area", "cargo deck", "storage area", "hold", "cargo hold"]}, {"answer": "cargo_ships", "hint": "synonyms for cargo ships", "clues": ["merchant vessels", "cargo vessel", "shipping", "cargo ship", "merchant marine"]}, {"answer": "carl_von_linne", "hint": "synonyms for carl von linne", "clues": ["Linnaeus", "Carolus Linnaeus", "Karl Linne", "Carl von Linne"]}, {"answer": "carlos", "hint": "synonyms for carlos", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "carlos_the_jackal", "hint": "synonyms for carlos the jackal", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "carmaker", "hint": "synonyms for carmaker", "clues": ["car manufacturer", "automaker", "auto manufacturer", "car maker"]}, {"answer": "carnage", "hint": "synonyms for carnage", "clues": ["slaughter", "mass murder", "butchery", "massacre", "carnage"]}, {"answer": "carnal_knowledge", "hint": "synonyms for carnal knowledge", "clues": ["sexual relation", "coitus", "sexual intercourse", "sex act", "coition", "relation", "sexual congress", "congress", "intercourse", "copulation", "carnal knowledge"]}, {"answer": "carnality", "hint": "synonyms for carnality", "clues": ["lubricity", "prurience", "lasciviousness", "carnality"]}, {"answer": "carolus", "hint": "synonyms for carolus", "clues": ["Carolus", "Charles I", "Charlemagne", "Charles the Great"]}, {"answer": "carolus_linnaeus", "hint": "synonyms for carolus linnaeus", "clues": ["Linnaeus", "Carolus Linnaeus", "Karl Linne", "Carl von Linne"]}, {"answer": "carousal", "hint": "synonyms for carousal", "clues": ["booze-up", "toot", "bender", "carouse", "carousal"]}, {"answer": "carouse", "hint": "synonyms for carouse", "clues": ["booze-up", "toot", "bender", "carousal", "carouse"]}, {"answer": "carousel", "hint": "synonyms for carousel", "clues": ["whirligig", "carrousel", "luggage carrousel", "merry-go-round", "roundabout"]}, {"answer": "carpus", "hint": "synonyms for carpus", "clues": ["wrist", "wrist joint", "articulatio radiocarpea", "radiocarpal joint", "carpus"]}, {"answer": "carrefour", "hint": "synonyms for carrefour", "clues": ["intersection", "crossway", "crossroad", "crossing", "carrefour"]}, {"answer": "carrel", "hint": "synonyms for carrel", "clues": ["cubicle", "Carrel", "stall", "Alexis Carrel"]}, {"answer": "carriage", "hint": "synonyms for carriage", "clues": ["perambulator", "rig", "passenger car", "coach", "equipage", "pusher", "posture", "pushchair", "baby carriage", "baby buggy", "pram", "stroller", "bearing", "go-cart", "carriage"]}, {"answer": "carrier", "hint": "synonyms for carrier", "clues": ["attack aircraft carrier", "bearer", "carrier wave", "common carrier", "toter", "newsboy", "letter carrier", "mail carrier", "postman", "mailman", "immune carrier", "aircraft carrier", "flattop", "carrier"]}, {"answer": "carroll", "hint": "synonyms for carroll", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "carrousel", "hint": "synonyms for carrousel", "clues": ["whirligig", "luggage carrousel", "merry-go-round", "roundabout", "carousel"]}, {"answer": "carrying_out", "hint": "synonyms for carrying out", "clues": ["implementation", "execution", "carrying into action", "performance", "carrying out"]}, {"answer": "carson", "hint": "synonyms for carson", "clues": ["Kit Carson", "Christopher Carson", "Carson", "Rachel Carson", "Rachel Louise Carson"]}, {"answer": "carte", "hint": "synonyms for carte", "clues": ["card", "menu", "carte du jour", "bill of fare", "carte"]}, {"answer": "carte_du_jour", "hint": "synonyms for carte du jour", "clues": ["card", "menu", "carte", "bill of fare", "carte du jour"]}, {"answer": "carter", "hint": "synonyms for carter", "clues": ["Jimmy Carter", "James Earl Carter Jr.", "President Carter", "Carter", "Howard Carter"]}, {"answer": "carver", "hint": "synonyms for carver", "clues": ["sculptor", "woodcarver", "sculpturer", "statue maker", "cutter", "George Washington Carver", "Carver"]}, {"answer": "casanova", "hint": "synonyms for casanova", "clues": ["Giovanni Jacopo Casanova", "Casanova de Seingalt", "Giovanni Jacopo Casanova de Seingalt", "Casanova"]}, {"answer": "casanova_de_seingalt", "hint": "synonyms for casanova de seingalt", "clues": ["Casanova", "Giovanni Jacopo Casanova", "Casanova de Seingalt", "Giovanni Jacopo Casanova de Seingalt"]}, {"answer": "cascades", "hint": "synonyms for cascades", "clues": ["Cascades", "Cascade Mountains", "Cascade Range", "shower"]}, {"answer": "case", "hint": "synonyms for case", "clues": ["event", "slip", "guinea pig", "sheath", "grammatical case", "type", "subject", "face", "fount", "typesetter's case", "suit", "typeface", "vitrine", "character", "casing", "compositor's case", "example", "instance", "caseful", "pillow slip", "pillowcase", "causa", "display case", "lawsuit", "showcase", "shell", "cause", "eccentric"]}, {"answer": "cash", "hint": "synonyms for cash", "clues": ["hard cash", "immediate payment", "Cash", "John Cash", "hard currency"]}, {"answer": "cash_dispenser", "hint": "synonyms for cash dispenser", "clues": ["cash machine", "automatic teller", "automated teller machine", "ATM", "cash dispenser"]}, {"answer": "cash_in_hand", "hint": "synonyms for cash in hand", "clues": ["monetary resource", "pecuniary resource", "funds", "finances", "cash in hand"]}, {"answer": "cash_machine", "hint": "synonyms for cash machine", "clues": ["automatic teller", "automated teller machine", "ATM", "cash dispenser", "cash machine"]}, {"answer": "cassius_clay", "hint": "synonyms for cassius clay", "clues": ["Cassius Clay", "Ali", "Cassius Marcellus Clay", "Muhammad Ali"]}, {"answer": "cassius_marcellus_clay", "hint": "synonyms for cassius marcellus clay", "clues": ["Cassius Clay", "Ali", "Cassius Marcellus Clay", "Muhammad Ali"]}, {"answer": "cast", "hint": "synonyms for cast", "clues": ["form", "plaster cast", "roll", "mould", "cast of characters", "stamp", "plaster bandage", "hurl", "shape", "casting", "dramatis personae"]}, {"answer": "castaway", "hint": "synonyms for castaway", "clues": ["pariah", "shipwreck survivor", "outcast", "Ishmael", "castaway"]}, {"answer": "castigation", "hint": "synonyms for castigation", "clues": ["chewing out", "bawling out", "dressing down", "earful", "going-over", "upbraiding", "chastisement", "castigation"]}, {"answer": "castle_in_spain", "hint": "synonyms for castle in spain", "clues": ["revery", "daydreaming", "reverie", "oneirism", "castle in Spain", "castle in the air", "air castle"]}, {"answer": "castle_in_the_air", "hint": "synonyms for castle in the air", "clues": ["oneirism", "revery", "castle in Spain", "daydream", "air castle", "reverie", "castle in the air"]}, {"answer": "castor", "hint": "synonyms for castor", "clues": ["caster", "Alpha Geminorum", "Castor", "beaver"]}, {"answer": "cat", "hint": "synonyms for cat", "clues": ["computed tomography", "cat-o'-nine-tails", "CAT", "African tea", "quat", "guy", "bozo", "kat", "Arabian tea", "Caterpillar", "CT", "hombre", "computerized axial tomography"]}, {"answer": "cat_sleep", "hint": "synonyms for cat sleep", "clues": ["catnap", "snooze", "nap", "short sleep", "forty winks", "cat sleep"]}, {"answer": "cat_valium", "hint": "synonyms for cat valium", "clues": ["honey oil", "green", "super C", "jet", "special K", "super acid", "K", "cat valium"]}, {"answer": "cataclysm", "hint": "synonyms for cataclysm", "clues": ["disaster", "calamity", "tragedy", "catastrophe", "cataclysm"]}, {"answer": "catamenia", "hint": "synonyms for catamenia", "clues": ["menses", "menstruation", "flow", "period", "menstruum", "catamenia"]}, {"answer": "cataphract", "hint": "synonyms for cataphract", "clues": ["body armour", "suit of armour", "coat of mail", "cataphract"]}, {"answer": "catapult", "hint": "synonyms for catapult", "clues": ["sling", "arbalest", "onager", "launcher", "bricole", "trebucket", "ballista", "slingshot", "mangonel", "catapult"]}, {"answer": "catastrophe", "hint": "synonyms for catastrophe", "clues": ["calamity", "tragedy", "disaster", "cataclysm", "catastrophe"]}, {"answer": "catch", "hint": "synonyms for catch", "clues": ["apprehension", "snap", "pinch", "grab", "match", "collar", "stop", "taking into custody", "snatch", "arrest", "haul", "gimmick", "catch"]}, {"answer": "catchment_area", "hint": "synonyms for catchment area", "clues": ["drainage basin", "catchment basin", "river basin", "basin", "watershed", "drainage area", "catchment area"]}, {"answer": "catchment_basin", "hint": "synonyms for catchment basin", "clues": ["drainage basin", "catchment area", "river basin", "basin", "watershed", "drainage area", "catchment basin"]}, {"answer": "catchword", "hint": "synonyms for catchword", "clues": ["slogan", "motto", "guideword", "shibboleth", "catchword"]}, {"answer": "categorisation", "hint": "synonyms for categorisation", "clues": ["sorting", "compartmentalisation", "classification", "assortment", "categorization"]}, {"answer": "categorization", "hint": "synonyms for categorization", "clues": ["categorisation", "sorting", "compartmentalisation", "classification", "assortment"]}, {"answer": "cathay", "hint": "synonyms for cathay", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "catholic_pope", "hint": "synonyms for catholic pope", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "catholic_reaction_force", "hint": "synonyms for catholic reaction force", "clues": ["People's Liberation Army", "People's Republican Army", "Catholic Reaction Force", "Irish National Liberation Army", "INLA"]}, {"answer": "cathouse", "hint": "synonyms for cathouse", "clues": ["bagnio", "house of ill repute", "bordello", "sporting house", "whorehouse", "house of prostitution", "brothel", "bawdyhouse", "cathouse"]}, {"answer": "catnap", "hint": "synonyms for catnap", "clues": ["snooze", "nap", "short sleep", "cat sleep", "forty winks", "catnap"]}, {"answer": "cattell", "hint": "synonyms for cattell", "clues": ["R. B. Cattell", "Ray Cattell", "James McKeen Cattell", "Raymond B. Cattell", "Cattell", "Raymond Bernard Cattell"]}, {"answer": "cattiness", "hint": "synonyms for cattiness", "clues": ["spite", "bitchiness", "spitefulness", "nastiness", "cattiness"]}, {"answer": "cattleman", "hint": "synonyms for cattleman", "clues": ["cowpoke", "cowboy", "cowhand", "puncher", "cowpuncher", "cow man", "cowherd", "beef man", "cattleman"]}, {"answer": "caul", "hint": "synonyms for caul", "clues": ["embryonic membrane", "greater omentum", "gastrocolic omentum", "veil", "caul"]}, {"answer": "causa", "hint": "synonyms for causa", "clues": ["suit", "lawsuit", "case", "causa"]}, {"answer": "causal_factor", "hint": "synonyms for causal factor", "clues": ["determinative", "determiner", "determinant", "determining factor", "causal factor"]}, {"answer": "cause", "hint": "synonyms for cause", "clues": ["causal agency", "campaign", "crusade", "suit", "effort", "causa", "movement", "lawsuit", "case", "reason", "grounds", "drive"]}, {"answer": "causerie", "hint": "synonyms for causerie", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "chin-wag", "tittle-tattle", "gossip", "gab", "causerie"]}, {"answer": "caustic_lime", "hint": "synonyms for caustic lime", "clues": ["lime hydrate", "hydrated lime", "lime", "slaked lime", "calcium hydrate", "calcium hydroxide", "caustic lime"]}, {"answer": "caution", "hint": "synonyms for caution", "clues": ["precaution", "forethought", "cautiousness", "circumspection", "carefulness", "caveat", "care", "caution"]}, {"answer": "cavity", "hint": "synonyms for cavity", "clues": ["pit", "caries", "cavum", "tooth decay", "bodily cavity", "dental caries", "enclosed space", "cavity"]}, {"answer": "cbr", "hint": "synonyms for cbr", "clues": ["cosmic background radiation", "CBR", "cosmic microwave background", "cosmic microwave background radiation", "CMB"]}, {"answer": "cd-r", "hint": "synonyms for cd-r", "clues": ["CD-R", "CD-WO", "compact disc write-once", "compact disc recordable"]}, {"answer": "cd-wo", "hint": "synonyms for cd-wo", "clues": ["CD-R", "CD-WO", "compact disc write-once", "compact disc recordable"]}, {"answer": "celebration", "hint": "synonyms for celebration", "clues": ["festivity", "solemnization", "jubilation", "celebration"]}, {"answer": "celerity", "hint": "synonyms for celerity", "clues": ["speediness", "quickness", "rapidness", "rapidity", "celerity"]}, {"answer": "celestial_city", "hint": "synonyms for celestial city", "clues": ["Heavenly City", "Celestial City", "City of God", "Holy City"]}, {"answer": "celestial_sphere", "hint": "synonyms for celestial sphere", "clues": ["sphere", "heavens", "welkin", "empyrean", "vault of heaven", "firmament", "celestial sphere"]}, {"answer": "cell", "hint": "synonyms for cell", "clues": ["mobile phone", "cellphone", "prison cell", "cellular phone", "cadre", "cubicle", "jail cell", "electric cell", "cell"]}, {"answer": "cellphone", "hint": "synonyms for cellphone", "clues": ["mobile phone", "cellular telephone", "cell", "cellphone"]}, {"answer": "cellular_phone", "hint": "synonyms for cellular phone", "clues": ["mobile phone", "cellphone", "cellular telephone", "cell"]}, {"answer": "cellular_telephone", "hint": "synonyms for cellular telephone", "clues": ["mobile phone", "cellphone", "cellular phone", "cell"]}, {"answer": "cemetery", "hint": "synonyms for cemetery", "clues": ["burial ground", "burial site", "necropolis", "graveyard", "memorial park", "burying ground", "cemetery"]}, {"answer": "cental", "hint": "synonyms for cental", "clues": ["quintal", "centner", "cwt", "hundredweight", "short hundredweight", "cental"]}, {"answer": "centering", "hint": "synonyms for centering", "clues": ["snap", "focusing", "focal point", "direction", "centering"]}, {"answer": "centner", "hint": "synonyms for centner", "clues": ["cwt", "short hundredweight", "quintal", "doppelzentner", "cental", "hundredweight", "metric hundredweight", "centner"]}, {"answer": "central_office", "hint": "synonyms for central office", "clues": ["home base", "headquarters", "main office", "home office", "central office"]}, {"answer": "central_processing_unit", "hint": "synonyms for central processing unit", "clues": ["processor", "central processor", "CPU", "mainframe", "C.P.U.", "central processing unit"]}, {"answer": "central_processor", "hint": "synonyms for central processor", "clues": ["processor", "central processing unit", "CPU", "mainframe", "C.P.U.", "central processor"]}, {"answer": "centre", "hint": "synonyms for centre", "clues": ["marrow", "eye", "inwardness", "nitty-gritty", "center", "kernel", "nub", "heart", "center of attention", "core", "sum", "gist", "Centre", "essence", "heart and soul", "nerve center", "meat", "substance", "pith", "middle", "midpoint"]}, {"answer": "century", "hint": "synonyms for century", "clues": ["C", "100", "hundred", "one C", "century"]}, {"answer": "cerebration", "hint": "synonyms for cerebration", "clues": ["thought", "intellection", "thinking", "mentation", "thought process", "cerebration"]}, {"answer": "cerement", "hint": "synonyms for cerement", "clues": ["pall", "shroud", "winding-clothes", "winding-sheet", "cerement"]}, {"answer": "certificate", "hint": "synonyms for certificate", "clues": ["security", "credentials", "certification", "certificate"]}, {"answer": "certification", "hint": "synonyms for certification", "clues": ["enfranchisement", "credentials", "corroboration", "certificate", "authentication", "documentation", "certification"]}, {"answer": "cervantes", "hint": "synonyms for cervantes", "clues": ["Cervantes Saavedra", "Miguel de Cervantes", "Miguel de Cervantes Saavedra", "Cervantes"]}, {"answer": "cervantes_saavedra", "hint": "synonyms for cervantes saavedra", "clues": ["Cervantes Saavedra", "Miguel de Cervantes", "Miguel de Cervantes Saavedra", "Cervantes"]}, {"answer": "cesarean_delivery", "hint": "synonyms for cesarean delivery", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "cesarean_section", "hint": "synonyms for cesarean section", "clues": ["caesarian delivery", "cesarian", "caesarean", "abdominal delivery", "caesarian section", "C-section"]}, {"answer": "cesarian_section", "hint": "synonyms for cesarian section", "clues": ["caesarian delivery", "cesarian", "caesarean", "cesarean section", "abdominal delivery", "C-section"]}, {"answer": "ch'in", "hint": "synonyms for ch'in", "clues": ["Ch'in", "Qin dynasty", "Ch'in dynasty", "Qin"]}, {"answer": "ch'in_dynasty", "hint": "synonyms for ch'in dynasty", "clues": ["Ch'in", "Qin dynasty", "Ch'in dynasty", "Qin"]}, {"answer": "ch'ing", "hint": "synonyms for ch'ing", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "ch'ing_dynasty", "hint": "synonyms for ch'ing dynasty", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "chabad", "hint": "synonyms for chabad", "clues": ["Chabad-Lubavitch", "Chabad Hasidism", "Chabad", "Lubavitch", "Lubavitch movement"]}, {"answer": "chabad-lubavitch", "hint": "synonyms for chabad-lubavitch", "clues": ["Chabad", "Lubavitch", "Lubavitch movement", "Chabad-Lubavitch"]}, {"answer": "chad", "hint": "synonyms for chad", "clues": ["Chad", "Lake Chad", "Chadic", "Chadic language", "Republic of Chad"]}, {"answer": "chaff", "hint": "synonyms for chaff", "clues": ["stubble", "stalk", "straw", "shuck", "husk", "chaff"]}, {"answer": "chain", "hint": "synonyms for chain", "clues": ["range", "Sir Ernst Boris Chain", "Chain", "string", "concatenation", "chemical chain", "mountain chain", "mountain range", "chain of mountains", "strand", "range of mountains"]}, {"answer": "chain_armor", "hint": "synonyms for chain armor", "clues": ["ring armor", "chain mail", "chain armour", "ring mail", "mail"]}, {"answer": "chain_armour", "hint": "synonyms for chain armour", "clues": ["ring armor", "chain armor", "chain mail", "ring mail", "mail"]}, {"answer": "chain_mail", "hint": "synonyms for chain mail", "clues": ["ring armor", "chain armor", "ring mail", "mail", "chain mail"]}, {"answer": "chain_of_mountains", "hint": "synonyms for chain of mountains", "clues": ["mountain chain", "range", "mountain range", "chain", "range of mountains", "chain of mountains"]}, {"answer": "chains", "hint": "synonyms for chains", "clues": ["range", "Sir Ernst Boris Chain", "irons", "Chain", "string", "concatenation", "chemical chain", "mountain chain", "mountain range", "strand", "range of mountains", "chain of mountains"]}, {"answer": "chair", "hint": "synonyms for chair", "clues": ["death chair", "president", "professorship", "hot seat", "chairperson", "electric chair", "chairman", "chair"]}, {"answer": "chair_car", "hint": "synonyms for chair car", "clues": ["parlour car", "palace car", "drawing-room car", "chair car"]}, {"answer": "chairman", "hint": "synonyms for chairman", "clues": ["chair", "president", "chairwoman", "chairperson"]}, {"answer": "chairperson", "hint": "synonyms for chairperson", "clues": ["chair", "president", "chairwoman", "chairperson"]}, {"answer": "chairwoman", "hint": "synonyms for chairwoman", "clues": ["chair", "chairperson", "president", "chairman"]}, {"answer": "chalk", "hint": "synonyms for chalk", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "glass", "ice", "methamphetamine hydrochloride", "trash", "methamphetamine", "shabu", "chalk"]}, {"answer": "challenger", "hint": "synonyms for challenger", "clues": ["rival", "contender", "competitor", "challenger"]}, {"answer": "chamber", "hint": "synonyms for chamber", "clues": ["bedroom", "sleeping room", "sleeping accommodation", "bedchamber", "chamber"]}, {"answer": "chambers", "hint": "synonyms for chambers", "clues": ["chamber", "sleeping room", "bedroom", "bedchamber", "sleeping accommodation", "Sir William Chambers"]}, {"answer": "chammy", "hint": "synonyms for chammy", "clues": ["chamois leather", "chamois", "chammy leather", "shammy", "chammy"]}, {"answer": "chammy_leather", "hint": "synonyms for chammy leather", "clues": ["chammy", "chamois leather", "chamois", "shammy", "shammy leather"]}, {"answer": "chamois", "hint": "synonyms for chamois", "clues": ["chammy", "chamois leather", "shammy", "chammy leather", "chamois"]}, {"answer": "chamois_leather", "hint": "synonyms for chamois leather", "clues": ["chammy", "chamois", "chammy leather", "shammy", "chamois leather"]}, {"answer": "championship", "hint": "synonyms for championship", "clues": ["patronage", "title", "backing", "backup", "championship"]}, {"answer": "chance_variable", "hint": "synonyms for chance variable", "clues": ["stochastic variable", "random variable", "variate", "chance variable"]}, {"answer": "chancellor", "hint": "synonyms for chancellor", "clues": ["Chancellor", "prime minister", "premier", "Chancellor of the Exchequer"]}, {"answer": "chang", "hint": "synonyms for chang", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "chang_jiang", "hint": "synonyms for chang jiang", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "changan", "hint": "synonyms for changan", "clues": ["Hsian", "Changan", "Xian", "Singan"]}, {"answer": "change_of_mind", "hint": "synonyms for change of mind", "clues": ["flip-flop", "turnaround", "turnabout", "reversal", "change of mind"]}, {"answer": "changeling", "hint": "synonyms for changeling", "clues": ["moron", "imbecile", "half-wit", "idiot", "cretin", "retard", "changeling"]}, {"answer": "changjiang", "hint": "synonyms for changjiang", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "channel", "hint": "synonyms for channel", "clues": ["line", "communication channel", "canal", "duct", "distribution channel", "groove", "transmission channel", "TV channel", "television channel", "epithelial duct", "channel"]}, {"answer": "channels", "hint": "synonyms for channels", "clues": ["line", "communication channel", "canal", "duct", "distribution channel", "groove", "transmission channel", "TV channel", "television channel", "channel", "epithelial duct"]}, {"answer": "channukah", "hint": "synonyms for channukah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "channukkah", "hint": "synonyms for channukkah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "chanukah", "hint": "synonyms for chanukah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "chanukkah", "hint": "synonyms for chanukkah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "chaos", "hint": "synonyms for chaos", "clues": ["topsy-turvydom", "pandemonium", "topsy-turvyness", "Chaos", "bedlam"]}, {"answer": "chap", "hint": "synonyms for chap", "clues": ["lad", "fella", "blighter", "fissure", "gent", "crack", "cranny", "crevice", "feller", "bloke", "fellow", "cuss", "chap"]}, {"answer": "chaplet", "hint": "synonyms for chaplet", "clues": ["coronal", "lei", "wreath", "garland", "chaplet"]}, {"answer": "char", "hint": "synonyms for char", "clues": ["charwoman", "cleaning woman", "cleaning lady", "char"]}, {"answer": "charabanc", "hint": "synonyms for charabanc", "clues": ["omnibus", "coach", "autobus", "motorcoach", "jitney", "motorbus", "passenger vehicle", "double-decker", "bus", "charabanc"]}, {"answer": "character", "hint": "synonyms for character", "clues": ["quality", "role", "grapheme", "persona", "fiber", "theatrical role", "type", "part", "graphic symbol", "character reference", "reference", "case", "fictitious character", "fibre", "fictional character", "lineament", "eccentric", "character"]}, {"answer": "characterisation", "hint": "synonyms for characterisation", "clues": ["characterization", "depiction", "picture", "delineation", "word picture", "word-painting"]}, {"answer": "characterization", "hint": "synonyms for characterization", "clues": ["depiction", "enactment", "delineation", "personation", "characterisation", "picture", "word picture", "word-painting", "portrayal"]}, {"answer": "charade", "hint": "synonyms for charade", "clues": ["pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "parody", "lampoon", "spoof", "charade"]}, {"answer": "charades", "hint": "synonyms for charades", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "parody", "lampoon", "spoof"]}, {"answer": "charge", "hint": "synonyms for charge", "clues": ["heraldic bearing", "bursting charge", "rush", "flush", "burster", "guardianship", "mission", "bearing", "tutelage", "complaint", "explosive charge", "direction", "care", "thrill", "billing", "electric charge", "commission", "armorial bearing", "boot", "bang", "cathexis", "kick", "accusation", "charge"]}, {"answer": "charge_sheet", "hint": "synonyms for charge sheet", "clues": ["day book", "rap sheet", "blotter", "police blotter", "charge sheet"]}, {"answer": "charity_shot", "hint": "synonyms for charity shot", "clues": ["foul shot", "penalty free throw", "charity toss", "free throw", "charity throw", "charity shot"]}, {"answer": "charity_throw", "hint": "synonyms for charity throw", "clues": ["charity shot", "foul shot", "penalty free throw", "charity toss", "free throw", "charity throw"]}, {"answer": "charity_toss", "hint": "synonyms for charity toss", "clues": ["charity shot", "foul shot", "penalty free throw", "free throw", "charity throw", "charity toss"]}, {"answer": "charivari", "hint": "synonyms for charivari", "clues": ["belling", "callithump", "shivaree", "charivari"]}, {"answer": "charlemagne", "hint": "synonyms for charlemagne", "clues": ["Carolus", "Charles I", "Charlemagne", "Charles the Great"]}, {"answer": "charles", "hint": "synonyms for charles", "clues": ["Charlemagne", "Charles the Bald", "Charles Stuart", "Jacques Alexandre Cesar Charles", "Prince Charles", "Charles River", "Charles II", "Carolus", "Jacques Charles", "Charles", "Charles the Great"]}, {"answer": "charles's_wain", "hint": "synonyms for charles's wain", "clues": ["Dipper", "Plough", "Wagon", "Big Dipper", "Wain", "Charles's Wain"]}, {"answer": "charles_a._lindbergh", "hint": "synonyms for charles a. lindbergh", "clues": ["Lindbergh", "Charles Lindbergh", "Lucky Lindy", "Charles Augustus Lindbergh"]}, {"answer": "charles_andre_joseph_marie_de_gaulle", "hint": "synonyms for charles andre joseph marie de gaulle", "clues": ["Charles de Gaulle", "de Gaulle", "General de Gaulle", "General Charles de Gaulle", "Charles Andre Joseph Marie de Gaulle"]}, {"answer": "charles_augustus_lindbergh", "hint": "synonyms for charles augustus lindbergh", "clues": ["Lindbergh", "Charles Lindbergh", "Lucky Lindy", "Charles Augustus Lindbergh"]}, {"answer": "charles_christopher_parker", "hint": "synonyms for charles christopher parker", "clues": ["Charlie Parker", "Yardbird Parker", "Bird Parker", "Parker", "Charles Christopher Parker"]}, {"answer": "charles_de_gaulle", "hint": "synonyms for charles de gaulle", "clues": ["Charles de Gaulle", "de Gaulle", "General de Gaulle", "General Charles de Gaulle", "Charles Andre Joseph Marie de Gaulle"]}, {"answer": "charles_dodgson", "hint": "synonyms for charles dodgson", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "charles_i", "hint": "synonyms for charles i", "clues": ["Charlemagne", "Charles the Bald", "Charles Stuart", "Charles II", "Carolus", "Charles", "Charles the Great"]}, {"answer": "charles_lindbergh", "hint": "synonyms for charles lindbergh", "clues": ["Lindbergh", "Charles Lindbergh", "Lucky Lindy", "Charles Augustus Lindbergh"]}, {"answer": "charles_lutwidge_dodgson", "hint": "synonyms for charles lutwidge dodgson", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "charles_percy_snow", "hint": "synonyms for charles percy snow", "clues": ["Snow", "Charles Percy Snow", "Baron Snow of Leicester", "C. P. Snow"]}, {"answer": "charles_the_great", "hint": "synonyms for charles the great", "clues": ["Carolus", "Charles I", "Charlemagne", "Charles the Great"]}, {"answer": "charlie_parker", "hint": "synonyms for charlie parker", "clues": ["Charlie Parker", "Yardbird Parker", "Bird Parker", "Parker", "Charles Christopher Parker"]}, {"answer": "charm", "hint": "synonyms for charm", "clues": ["appeal", "magical spell", "appealingness", "good luck charm", "spell", "charm"]}, {"answer": "charmer", "hint": "synonyms for charmer", "clues": ["smoothy", "beguiler", "smoothie", "sweet talker", "charmer"]}, {"answer": "charwoman", "hint": "synonyms for charwoman", "clues": ["char", "cleaning woman", "cleaning lady", "charwoman"]}, {"answer": "chase", "hint": "synonyms for chase", "clues": ["Chase", "pursuit", "pursual", "following", "Salmon P. Chase", "Salmon Portland Chase"]}, {"answer": "chassis", "hint": "synonyms for chassis", "clues": ["human body", "form", "soma", "physical body", "bod", "physique", "flesh", "figure", "shape", "anatomy", "frame", "material body", "build", "chassis"]}, {"answer": "chastity", "hint": "synonyms for chastity", "clues": ["sexual abstention", "sexual morality", "virtue", "celibacy", "chastity"]}, {"answer": "chat", "hint": "synonyms for chat", "clues": ["schmoose", "confab", "confabulation", "chat"]}, {"answer": "chateau-thierry", "hint": "synonyms for chateau-thierry", "clues": ["Chateau-Thierry", "Battle of the Marne", "Marne River", "Belleau Wood"]}, {"answer": "chatter", "hint": "synonyms for chatter", "clues": ["yack", "chattering", "cackle", "yakety-yak"]}, {"answer": "chatterbox", "hint": "synonyms for chatterbox", "clues": ["babbler", "prater", "chatterer", "spouter", "magpie", "chatterbox"]}, {"answer": "chatterer", "hint": "synonyms for chatterer", "clues": ["babbler", "prater", "spouter", "chatterbox", "magpie", "chatterer"]}, {"answer": "chauvinism", "hint": "synonyms for chauvinism", "clues": ["jingoism", "superpatriotism", "ultranationalism", "male chauvinism", "antifeminism", "chauvinism"]}, {"answer": "chauvinist", "hint": "synonyms for chauvinist", "clues": ["hundred-percenter", "jingo", "flag-waver", "patrioteer", "jingoist", "chauvinist"]}, {"answer": "chavez", "hint": "synonyms for chavez", "clues": ["Cesar Estrada Chavez", "Cesar Chavez", "Chavez", "Carlos Chavez"]}, {"answer": "chaw", "hint": "synonyms for chaw", "clues": ["plug", "wad", "chew", "cud", "quid", "chaw"]}, {"answer": "chawbacon", "hint": "synonyms for chawbacon", "clues": ["yahoo", "yokel", "rube", "hayseed", "bumpkin", "hick", "chawbacon"]}, {"answer": "cheapness", "hint": "synonyms for cheapness", "clues": ["cut price", "tackiness", "tat", "sleaze", "cut rate", "bargain rate", "cheapness"]}, {"answer": "cheat", "hint": "synonyms for cheat", "clues": ["rig", "swindle", "cheating", "slicker", "beguiler", "cheater", "deceiver", "trickster"]}, {"answer": "cheater", "hint": "synonyms for cheater", "clues": ["cheat", "slicker", "beguiler", "deceiver", "trickster", "cheater"]}, {"answer": "check", "hint": "synonyms for check", "clues": ["cheque", "halt", "hitch", "check-out procedure", "checkout", "bridle", "hinderance", "impediment", "chit", "confirmation", "tab", "stoppage", "assay", "handicap", "verification", "check mark", "bank check", "deterrent", "curb", "tick", "chip", "stop", "stay", "substantiation", "arrest", "balk", "check"]}, {"answer": "checkerberry", "hint": "synonyms for checkerberry", "clues": ["wintergreen", "spiceberry", "teaberry", "boxberry", "checkerberry"]}, {"answer": "checkout", "hint": "synonyms for checkout", "clues": ["check-out procedure", "check", "checkout counter", "checkout time", "checkout"]}, {"answer": "checkup", "hint": "synonyms for checkup", "clues": ["medical checkup", "medical exam", "medical", "health check", "medical examination", "checkup"]}, {"answer": "cheddar", "hint": "synonyms for cheddar", "clues": ["Cheddar", "Armerican cheddar", "American cheese", "cheddar cheese"]}, {"answer": "cheek", "hint": "synonyms for cheek", "clues": ["brass", "buttock", "boldness", "impertinence", "nerve", "face", "impudence", "cheek"]}, {"answer": "cheekbone", "hint": "synonyms for cheekbone", "clues": ["zygomatic bone", "jugal bone", "malar bone", "os zygomaticum", "malar", "zygomatic", "cheekbone"]}, {"answer": "cheekiness", "hint": "synonyms for cheekiness", "clues": ["insolence", "crust", "impertinence", "gall", "impudence", "freshness", "cheekiness"]}, {"answer": "cheerfulness", "hint": "synonyms for cheerfulness", "clues": ["sunshine", "blitheness", "sunniness", "cheer", "cheerfulness"]}, {"answer": "cheerio", "hint": "synonyms for cheerio", "clues": ["good-bye", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "cheerio"]}, {"answer": "chemise", "hint": "synonyms for chemise", "clues": ["shimmy", "slip", "teddy", "shift", "sack", "chemise"]}, {"answer": "chemist", "hint": "synonyms for chemist", "clues": ["pill roller", "pharmacist", "apothecary", "druggist", "pill pusher", "chemist"]}, {"answer": "chemist's", "hint": "synonyms for chemist's", "clues": ["chemist's shop", "drugstore", "pharmacy", "apothecary's shop", "chemist's"]}, {"answer": "chemist's_shop", "hint": "synonyms for chemist's shop", "clues": ["chemist's", "pharmacy", "drugstore", "apothecary's shop", "chemist's shop"]}, {"answer": "chest", "hint": "synonyms for chest", "clues": ["thorax", "chest of drawers", "breast", "bureau", "dresser", "pectus", "chest"]}, {"answer": "chester_nimitz", "hint": "synonyms for chester nimitz", "clues": ["Nimitz", "Admiral Nimitz", "Chester William Nimitz", "Chester Nimitz"]}, {"answer": "chester_william_nimitz", "hint": "synonyms for chester william nimitz", "clues": ["Nimitz", "Admiral Nimitz", "Chester William Nimitz", "Chester Nimitz"]}, {"answer": "chevalier_de_bayard", "hint": "synonyms for chevalier de bayard", "clues": ["Pierre Terrail", "Bayard", "Chevalier de Bayard", "Seigneur de Bayard"]}, {"answer": "chew", "hint": "synonyms for chew", "clues": ["chewing", "plug", "wad", "manduction", "mastication", "cud", "quid", "chaw"]}, {"answer": "chewing_out", "hint": "synonyms for chewing out", "clues": ["bawling out", "castigation", "dressing down", "earful", "going-over", "upbraiding", "chewing out"]}, {"answer": "chi", "hint": "synonyms for chi", "clues": ["qi", "ki", "ch'i", "khi"]}, {"answer": "chicago", "hint": "synonyms for chicago", "clues": ["Newmarket", "Michigan", "Windy City", "stops", "boodle", "Chicago"]}, {"answer": "chicane", "hint": "synonyms for chicane", "clues": ["wile", "shenanigan", "chicanery", "guile", "trickery"]}, {"answer": "chicanery", "hint": "synonyms for chicanery", "clues": ["shenanigan", "wile", "chicane", "guile", "trickery"]}, {"answer": "chicha", "hint": "synonyms for chicha", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "shisha", "hubble-bubble", "sheesha", "water pipe", "chicha"]}, {"answer": "chick", "hint": "synonyms for chick", "clues": ["bird", "skirt", "doll", "dame", "wench", "chick"]}, {"answer": "chicken_feed", "hint": "synonyms for chicken feed", "clues": ["crank", "Methedrine", "deoxyephedrine", "meth", "chalk", "glass", "ice", "methamphetamine hydrochloride", "scratch", "trash", "methamphetamine", "shabu", "chicken feed"]}, {"answer": "chicness", "hint": "synonyms for chicness", "clues": ["stylishness", "smartness", "chic", "swank", "last word", "chichi", "modishness", "chicness"]}, {"answer": "chief_executive", "hint": "synonyms for chief executive", "clues": ["Chief Executive", "President", "President of the United States", "United States President"]}, {"answer": "chieftain", "hint": "synonyms for chieftain", "clues": ["chief", "captain", "tribal chief", "headman", "chieftain"]}, {"answer": "child", "hint": "synonyms for child", "clues": ["fry", "nipper", "shaver", "nestling", "youngster", "tike", "minor", "tyke", "tiddler", "kid", "small fry", "baby", "child"]}, {"answer": "child's_play", "hint": "synonyms for child's play", "clues": ["snap", "play", "cinch", "pushover", "picnic", "piece of cake", "walkover", "duck soup", "breeze", "child's play"]}, {"answer": "childbed", "hint": "synonyms for childbed", "clues": ["labour", "lying-in", "parturiency", "travail", "confinement", "childbed"]}, {"answer": "chile", "hint": "synonyms for chile", "clues": ["Republic of Chile", "chilli", "chilly", "chili pepper", "Chile"]}, {"answer": "chili", "hint": "synonyms for chili", "clues": ["chilli", "chilly", "chile", "chili pepper", "chili con carne"]}, {"answer": "chili_pepper", "hint": "synonyms for chili pepper", "clues": ["chile", "chilli", "chilly", "chili pepper"]}, {"answer": "chiliad", "hint": "synonyms for chiliad", "clues": ["grand", "M", "K", "thousand", "yard", "G", "one thousand", "thou", "1000", "chiliad"]}, {"answer": "chill", "hint": "synonyms for chill", "clues": ["thrill", "shivering", "iciness", "frisson", "pall", "shudder", "gelidity", "quiver", "tingle", "chill"]}, {"answer": "chilli", "hint": "synonyms for chilli", "clues": ["chile", "chili pepper", "chilly", "chili"]}, {"answer": "chilliness", "hint": "synonyms for chilliness", "clues": ["nip", "coldness", "iciness", "frigidness", "frigidity", "chilliness"]}, {"answer": "chimneypiece", "hint": "synonyms for chimneypiece", "clues": ["mantelpiece", "mantle", "mantel", "chimneypiece"]}, {"answer": "chin", "hint": "synonyms for chin", "clues": ["Kuki-Chin", "Kuki", "Chin", "mentum"]}, {"answer": "chin-wag", "hint": "synonyms for chin-wag", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "tittle-tattle", "chin wag", "gossip", "gab"]}, {"answer": "chin-wagging", "hint": "synonyms for chin-wagging", "clues": ["small talk", "chitchat", "chin wagging", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "chin_music", "hint": "synonyms for chin music", "clues": ["blether", "idle talk", "prate", "prattle", "chin music"]}, {"answer": "chin_wag", "hint": "synonyms for chin wag", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "chin_wagging", "hint": "synonyms for chin wagging", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "china", "hint": "synonyms for china", "clues": ["Nationalist China", "mainland China", "Republic of China", "China", "PRC", "Red China", "People's Republic of China", "chinaware", "Taiwan", "Cathay", "Communist China"]}, {"answer": "china_clay", "hint": "synonyms for china clay", "clues": ["kaoline", "porcelain clay", "china stone", "terra alba", "china clay"]}, {"answer": "china_stone", "hint": "synonyms for china stone", "clues": ["china clay", "kaoline", "porcelain clay", "terra alba", "china stone"]}, {"answer": "chinook", "hint": "synonyms for chinook", "clues": ["chinook wind", "Chinook", "king salmon", "chinook salmon", "snow eater"]}, {"answer": "chip", "hint": "synonyms for chip", "clues": ["micro chip", "bit", "crisp", "Saratoga chip", "scrap", "flake", "fleck", "poker chip", "microprocessor chip", "potato chip", "splintering", "buffalo chip", "cow dung", "cow chip", "chipping", "chip shot", "silicon chip", "check", "chip"]}, {"answer": "chips", "hint": "synonyms for chips", "clues": ["micro chip", "bit", "fries", "crisp", "Saratoga chip", "flake", "fleck", "poker chip", "microprocessor chip", "potato chip", "silicon chip", "splintering", "french-fried potatoes", "buffalo chip", "french fries", "chip", "cow dung", "cow chip", "chipping", "chip shot", "scrap", "check"]}, {"answer": "chiseler", "hint": "synonyms for chiseler", "clues": ["defrauder", "swindler", "scammer", "chiseller", "gouger", "grifter"]}, {"answer": "chiseller", "hint": "synonyms for chiseller", "clues": ["chiseler", "defrauder", "swindler", "scammer", "gouger", "grifter"]}, {"answer": "chit-chat", "hint": "synonyms for chit-chat", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "chit_chat", "hint": "synonyms for chit chat", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "chitchat", "hint": "synonyms for chitchat", "clues": ["small talk", "chin-wagging", "gabfest", "causerie", "chin-wag", "tittle-tattle", "chit-chat", "gossip", "gab"]}, {"answer": "chivaree", "hint": "synonyms for chivaree", "clues": ["belling", "callithump", "shivaree", "charivari"]}, {"answer": "chocolate", "hint": "synonyms for chocolate", "clues": ["umber", "cocoa", "coffee", "deep brown", "drinking chocolate", "hot chocolate", "burnt umber", "chocolate"]}, {"answer": "choice_of_words", "hint": "synonyms for choice of words", "clues": ["diction", "phraseology", "verbiage", "phrasing", "wording", "choice of words"]}, {"answer": "choker", "hint": "synonyms for choker", "clues": ["garroter", "ruff", "neck ruff", "collar", "ruffle", "neckband", "throttler", "dog collar", "strangler", "choker"]}, {"answer": "cholecalciferol", "hint": "synonyms for cholecalciferol", "clues": ["calciferol", "D", "ergocalciferol", "viosterol", "vitamin D", "cholecalciferol"]}, {"answer": "choler", "hint": "synonyms for choler", "clues": ["petulance", "anger", "peevishness", "yellow bile", "crossness", "fussiness", "ire", "fretfulness", "irritability", "choler"]}, {"answer": "cholesterosis_cutis", "hint": "synonyms for cholesterosis cutis", "clues": ["lipoid granulomatosis", "xanthoma multiplex", "xanthomatosis", "cholesterosis cutis"]}, {"answer": "chop_steak", "hint": "synonyms for chop steak", "clues": ["hamburger steak", "chopped steak", "chopsteak", "beef patty"]}, {"answer": "chopin", "hint": "synonyms for chopin", "clues": ["Chopin", "Frederic Francois Chopin", "Kate Chopin", "Kate O'Flaherty Chopin"]}, {"answer": "chopper", "hint": "synonyms for chopper", "clues": ["eggbeater", "whirlybird", "cleaver", "chop", "meat cleaver", "helicopter", "pearly", "chopper"]}, {"answer": "chopsteak", "hint": "synonyms for chopsteak", "clues": ["hamburger steak", "chopped steak", "beef patty", "chopsteak"]}, {"answer": "chou", "hint": "synonyms for chou", "clues": ["cream puff", "Chou dynasty", "Zhou", "Chou", "Chow", "cabbage"]}, {"answer": "chou_dynasty", "hint": "synonyms for chou dynasty", "clues": ["Chou dynasty", "Zhou", "Chou", "Chow"]}, {"answer": "chow", "hint": "synonyms for chow", "clues": ["Chou dynasty", "Chou", "Chow", "chuck", "grub", "eats", "Zhou"]}, {"answer": "chow_dynasty", "hint": "synonyms for chow dynasty", "clues": ["Chou dynasty", "Zhou", "Chou", "Chow"]}, {"answer": "christ", "hint": "synonyms for christ", "clues": ["Saviour", "Christ", "the Nazarene", "messiah", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "christ_within", "hint": "synonyms for christ within", "clues": ["Christ Within", "Inner Light", "Light Within", "Light"]}, {"answer": "christian_bible", "hint": "synonyms for christian bible", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "christmas", "hint": "synonyms for christmas", "clues": ["Christmastime", "Yuletide", "Dec 25", "Christmas Day", "Christmas", "Noel", "Yule", "Xmas"]}, {"answer": "christmas_day", "hint": "synonyms for christmas day", "clues": ["Christmas Day", "Christmas", "Dec 25", "Xmas"]}, {"answer": "christmastide", "hint": "synonyms for christmastide", "clues": ["Christmastime", "Yuletide", "Christmas", "Noel", "Yule"]}, {"answer": "christmastime", "hint": "synonyms for christmastime", "clues": ["Christmastime", "Yuletide", "Christmas", "Noel", "Yule"]}, {"answer": "christopher_columbus", "hint": "synonyms for christopher columbus", "clues": ["Christopher Columbus", "Cristobal Colon", "Columbus", "Cristoforo Colombo"]}, {"answer": "chronological_sequence", "hint": "synonyms for chronological sequence", "clues": ["succession", "successiveness", "chronological succession", "sequence", "chronological sequence"]}, {"answer": "chronological_succession", "hint": "synonyms for chronological succession", "clues": ["succession", "chronological sequence", "sequence", "successiveness", "chronological succession"]}, {"answer": "chu_kiang", "hint": "synonyms for chu kiang", "clues": ["Chu Kiang", "Zhu Jiang", "Pearl River", "Canton River"]}, {"answer": "chum", "hint": "synonyms for chum", "clues": ["crony", "sidekick", "buddy", "brother", "pal", "chum"]}, {"answer": "chumminess", "hint": "synonyms for chumminess", "clues": ["comradeliness", "comradery", "camaraderie", "comradeship", "chumminess"]}, {"answer": "chump", "hint": "synonyms for chump", "clues": ["soft touch", "fall guy", "mark", "mug", "gull", "patsy", "fool", "sucker", "chump"]}, {"answer": "chunk", "hint": "synonyms for chunk", "clues": ["clod", "lump", "glob", "ball", "chunk"]}, {"answer": "church_of_rome", "hint": "synonyms for church of rome", "clues": ["Roman Catholic", "Roman Church", "Roman Catholic Church", "Church of Rome", "Western Church"]}, {"answer": "churchill", "hint": "synonyms for churchill", "clues": ["Sir Winston Leonard Spenser Churchill", "Winston Churchill", "Churchill", "First Duke of Marlborough", "John Churchill"]}, {"answer": "churl", "hint": "synonyms for churl", "clues": ["skinflint", "Goth", "crank", "tike", "scrooge", "niggard", "grouch", "peasant", "tyke", "grump", "boor", "crosspatch", "barbarian", "churl"]}, {"answer": "chute", "hint": "synonyms for chute", "clues": ["slideway", "slide", "parachute", "sloping trough", "chute"]}, {"answer": "cicily_isabel_fairfield", "hint": "synonyms for cicily isabel fairfield", "clues": ["Rebecca West", "Cicily Isabel Fairfield", "Dame Rebecca West", "West"]}, {"answer": "cigaret", "hint": "synonyms for cigaret", "clues": ["coffin nail", "butt", "cigarette", "fag"]}, {"answer": "cigarette", "hint": "synonyms for cigarette", "clues": ["coffin nail", "butt", "cigaret", "fag"]}, {"answer": "cinch", "hint": "synonyms for cinch", "clues": ["snap", "pushover", "child's play", "picnic", "piece of cake", "girth", "walkover", "duck soup", "breeze", "cinch"]}, {"answer": "cincture", "hint": "synonyms for cincture", "clues": ["waistcloth", "girdle", "sash", "waistband", "cincture"]}, {"answer": "cinema", "hint": "synonyms for cinema", "clues": ["movie house", "celluloid", "picture palace", "movie theater", "film", "cinema"]}, {"answer": "cinque", "hint": "synonyms for cinque", "clues": ["V", "quintuplet", "Phoebe", "five", "5", "quintet", "quint", "Little Phoebe", "pentad", "fin", "fivesome", "cinque"]}, {"answer": "cipher", "hint": "synonyms for cipher", "clues": ["nought", "zero", "cryptograph", "secret code", "nix", "nobody", "zippo", "zilch", "null", "goose egg", "aught", "nada", "nil", "0", "cypher", "nonentity", "nothing", "zip", "cipher"]}, {"answer": "circle", "hint": "synonyms for circle", "clues": ["lot", "Mexican valium", "lap", "roach", "set", "rope", "traffic circle", "roundabout", "circuit", "forget me drug", "roofy", "rotary", "rophy", "band", "round", "R-2", "dress circle", "circle"]}, {"answer": "circuit", "hint": "synonyms for circuit", "clues": ["tour", "electrical circuit", "lap", "racing circuit", "circle", "circumference", "circuit"]}, {"answer": "circuit_board", "hint": "synonyms for circuit board", "clues": ["add-in", "card", "board", "circuit card", "plug-in"]}, {"answer": "circuit_card", "hint": "synonyms for circuit card", "clues": ["circuit board", "add-in", "card", "board", "plug-in"]}, {"answer": "circumspection", "hint": "synonyms for circumspection", "clues": ["caution", "discretion", "prudence", "discreetness", "circumspection"]}, {"answer": "circumstance", "hint": "synonyms for circumstance", "clues": ["condition", "context", "setting", "consideration", "circumstance"]}, {"answer": "circumstances", "hint": "synonyms for circumstances", "clues": ["condition", "lot", "context", "consideration", "fate", "fortune", "portion", "setting", "destiny", "circumstance", "luck"]}, {"answer": "citation", "hint": "synonyms for citation", "clues": ["mention", "credit", "commendation", "cite", "reference", "quote", "acknowledgment", "quotation", "citation"]}, {"answer": "cite", "hint": "synonyms for cite", "clues": ["mention", "reference", "credit", "acknowledgment", "citation", "quotation", "cite"]}, {"answer": "cither", "hint": "synonyms for cither", "clues": ["cithern", "zither", "citole", "gittern"]}, {"answer": "city_of_god", "hint": "synonyms for city of god", "clues": ["Heavenly City", "Celestial City", "City of God", "Holy City"]}, {"answer": "city_of_light", "hint": "synonyms for city of light", "clues": ["capital of France", "City of Light", "French capital", "Paris"]}, {"answer": "ciudad_de_mexico", "hint": "synonyms for ciudad de mexico", "clues": ["Mexican capital", "Mexico City", "Ciudad de Mexico", "capital of Mexico"]}, {"answer": "clairvoyance", "hint": "synonyms for clairvoyance", "clues": ["extrasensory perception", "ESP", "second sight", "E.S.P.", "clairvoyance"]}, {"answer": "clam", "hint": "synonyms for clam", "clues": ["dollar", "one dollar bill", "buck", "dollar bill", "clam"]}, {"answer": "clamor", "hint": "synonyms for clamor", "clues": ["clamouring", "cacophony", "hue and cry", "blaring", "blare", "din", "clamor"]}, {"answer": "clams", "hint": "synonyms for clams", "clues": ["dinero", "dollar", "bread", "lettuce", "dough", "moolah", "dollar bill", "clam", "lucre", "buck", "pelf", "wampum", "kale", "lolly", "one dollar bill", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage"]}, {"answer": "clan", "hint": "synonyms for clan", "clues": ["tribe", "kinship group", "kin group", "kindred", "kin", "clan"]}, {"answer": "clang", "hint": "synonyms for clang", "clues": ["clash", "clangoring", "clangour", "crash", "clank", "clang"]}, {"answer": "clangor", "hint": "synonyms for clangor", "clues": ["clang", "clash", "clangour", "crash", "clank", "clangoring"]}, {"answer": "clangoring", "hint": "synonyms for clangoring", "clues": ["clang", "clash", "clangour", "crash", "clank", "clangoring"]}, {"answer": "clangour", "hint": "synonyms for clangour", "clues": ["clang", "clash", "clangoring", "crash", "clank", "clangour"]}, {"answer": "clank", "hint": "synonyms for clank", "clues": ["clang", "clash", "clangoring", "clangour", "crash", "clank"]}, {"answer": "clap", "hint": "synonyms for clap", "clues": ["blast", "bang", "eruption", "bam", "clack", "gonorrhoea", "clap"]}, {"answer": "clapper", "hint": "synonyms for clapper", "clues": ["glossa", "tongue", "applauder", "lingua", "clapper"]}, {"answer": "clappers", "hint": "synonyms for clappers", "clues": ["glossa", "tongue", "applauder", "castanets", "bones", "finger cymbals", "clapper", "lingua"]}, {"answer": "claptrap", "hint": "synonyms for claptrap", "clues": ["fustian", "blah", "rant", "bombast", "claptrap"]}, {"answer": "clarity", "hint": "synonyms for clarity", "clues": ["limpidity", "lucidity", "pellucidity", "uncloudedness", "lucidness", "clearness", "clarity"]}, {"answer": "clark", "hint": "synonyms for clark", "clues": ["Charles Joseph Clark", "Mark Wayne Clark", "William Clark", "Mark Clark", "Joe Clark", "Kenneth Clark", "Clark", "Kenneth Bancroft Clark"]}, {"answer": "clash", "hint": "synonyms for clash", "clues": ["brush", "encounter", "clank", "clangoring", "clang", "clangour", "friction", "crash", "skirmish", "clash"]}, {"answer": "clasp", "hint": "synonyms for clasp", "clues": ["grasp", "hold", "clutch", "grip", "clench", "clasp"]}, {"answer": "class", "hint": "synonyms for class", "clues": ["form", "course of instruction", "social class", "course", "family", "grade", "division", "category", "course of study", "year", "socio-economic class", "stratum", "class"]}, {"answer": "classical_greek", "hint": "synonyms for classical greek", "clues": ["Attic", "Ionic", "Ionic dialect", "Classical Greek"]}, {"answer": "classification", "hint": "synonyms for classification", "clues": ["categorization", "sorting", "compartmentalisation", "assortment", "classification"]}, {"answer": "claudication", "hint": "synonyms for claudication", "clues": ["gimpiness", "gameness", "limping", "gimp", "claudication"]}, {"answer": "clay", "hint": "synonyms for clay", "clues": ["Lucius Clay", "stiff", "cadaver", "corpse", "remains", "Henry Clay", "mud", "Clay", "the Great Compromiser", "Lucius DuBignon Clay"]}, {"answer": "clay_sculpture", "hint": "synonyms for clay sculpture", "clues": ["moulding", "mold", "modeling", "clay sculpture"]}, {"answer": "cleaning_lady", "hint": "synonyms for cleaning lady", "clues": ["cleaning woman", "char", "charwoman", "cleaning lady"]}, {"answer": "cleaning_woman", "hint": "synonyms for cleaning woman", "clues": ["char", "charwoman", "cleaning lady", "cleaning woman"]}, {"answer": "cleanup", "hint": "synonyms for cleanup", "clues": ["cleaning", "cleanup position", "killing", "cleanup spot", "cleanup"]}, {"answer": "clearness", "hint": "synonyms for clearness", "clues": ["limpidity", "clarity", "lucidity", "pellucidity", "uncloudedness", "lucidness", "clearness"]}, {"answer": "clement_attlee", "hint": "synonyms for clement attlee", "clues": ["Clement Attlee", "1st Earl Attlee", "Attlee", "Clement Richard Attlee"]}, {"answer": "clement_richard_attlee", "hint": "synonyms for clement richard attlee", "clues": ["Clement Attlee", "1st Earl Attlee", "Attlee", "Clement Richard Attlee"]}, {"answer": "clench", "hint": "synonyms for clench", "clues": ["grasp", "hold", "clutch", "grip", "clasp", "clinch", "clench"]}, {"answer": "cleveland", "hint": "synonyms for cleveland", "clues": ["President Cleveland", "Grover Cleveland", "Cleveland", "Stephen Grover Cleveland"]}, {"answer": "cleverness", "hint": "synonyms for cleverness", "clues": ["smartness", "brightness", "ingenuity", "ingeniousness", "inventiveness", "cleverness"]}, {"answer": "cliche", "hint": "synonyms for cliche", "clues": ["platitude", "commonplace", "banality", "bromide", "cliche"]}, {"answer": "click", "hint": "synonyms for click", "clues": ["chink", "clink", "dog", "pawl", "suction stop", "detent", "mouse click", "click"]}, {"answer": "climax", "hint": "synonyms for climax", "clues": ["orgasm", "coming", "culmination", "sexual climax", "flood tide", "climax"]}, {"answer": "climb", "hint": "synonyms for climb", "clues": ["rise", "acclivity", "ascent", "climbing", "mounting", "upgrade"]}, {"answer": "climber", "hint": "synonyms for climber", "clues": ["mounter", "social climber", "crampon", "climbing iron", "climber"]}, {"answer": "clinch", "hint": "synonyms for clinch", "clues": ["squeeze", "hug", "clamp", "clench", "clinch"]}, {"answer": "clink", "hint": "synonyms for clink", "clues": ["chink", "gaol", "click", "poky", "jail", "slammer", "jailhouse", "clink"]}, {"answer": "clinton", "hint": "synonyms for clinton", "clues": ["President Clinton", "Hilary Clinton", "DeWitt Clinton", "Clinton", "Bill Clinton", "Hilary Rodham Clinton", "William Jefferson Clinton"]}, {"answer": "clip", "hint": "synonyms for clip", "clues": ["cartridge holder", "clipping", "snip", "cartridge clip", "magazine", "time", "clip"]}, {"answer": "clip-clop", "hint": "synonyms for clip-clop", "clues": ["clunking", "clumping", "clop", "clopping", "clippety-clop", "clip-clop"]}, {"answer": "clippety-clop", "hint": "synonyms for clippety-clop", "clues": ["clunking", "clumping", "clop", "clopping", "clip-clop", "clippety-clop"]}, {"answer": "clipping", "hint": "synonyms for clipping", "clues": ["press cutting", "trim", "clip", "trimming", "snip", "cutting", "newspaper clipping", "press clipping", "clipping"]}, {"answer": "clique", "hint": "synonyms for clique", "clues": ["coterie", "pack", "camp", "ingroup", "inner circle", "clique"]}, {"answer": "clive", "hint": "synonyms for clive", "clues": ["Robert Clive", "Baron Clive of Plassey", "Baron Clive", "Clive"]}, {"answer": "clod", "hint": "synonyms for clod", "clues": ["lump", "stumblebum", "chunk", "lubber", "gawk", "oaf", "ball", "lout", "goon", "lummox", "glob", "clod"]}, {"answer": "clog", "hint": "synonyms for clog", "clues": ["clog dancing", "clog dance", "sabot", "geta", "patten", "clog"]}, {"answer": "clone", "hint": "synonyms for clone", "clues": ["clon", "knockoff", "ringer", "dead ringer"]}, {"answer": "clop", "hint": "synonyms for clop", "clues": ["clunking", "clumping", "clopping", "clippety-clop", "clip-clop", "clop"]}, {"answer": "clopping", "hint": "synonyms for clopping", "clues": ["clunking", "clumping", "clop", "clippety-clop", "clip-clop", "clopping"]}, {"answer": "close_call", "hint": "synonyms for close call", "clues": ["close shave", "squeaker", "narrow escape", "close call"]}, {"answer": "close_shave", "hint": "synonyms for close shave", "clues": ["squeaker", "close call", "narrow escape", "close shave"]}, {"answer": "closeness", "hint": "synonyms for closeness", "clues": ["niggardness", "parsimony", "minginess", "tightness", "intimacy", "secretiveness", "parsimoniousness", "tightfistedness", "familiarity", "nearness", "meanness", "stuffiness", "closeness"]}, {"answer": "closet", "hint": "synonyms for closet", "clues": ["wardrobe", "press", "cupboard", "loo", "water closet", "W.C.", "closet"]}, {"answer": "clostridial_myonecrosis", "hint": "synonyms for clostridial myonecrosis", "clues": ["emphysematous phlegmon", "emphysematous gangrene", "progressive emphysematous necrosis", "gangrenous emphysema", "gas gangrene", "gas phlegmon", "clostridial myonecrosis"]}, {"answer": "closure", "hint": "synonyms for closure", "clues": ["cloture", "gag law", "occlusion", "gag rule", "closing", "block", "law of closure", "stop", "stoppage", "closedown", "resolution", "blockage", "settlement", "shutdown"]}, {"answer": "clotheshorse", "hint": "synonyms for clotheshorse", "clues": ["fashion plate", "fop", "dandy", "gallant", "sheik", "beau", "swell", "dude", "clotheshorse"]}, {"answer": "clothing", "hint": "synonyms for clothing", "clues": ["wear", "habiliment", "vesture", "article of clothing", "wearable", "clothing"]}, {"answer": "cloud_nine", "hint": "synonyms for cloud nine", "clues": ["walking on air", "blissfulness", "seventh heaven", "bliss", "cloud nine"]}, {"answer": "cloudburst", "hint": "synonyms for cloudburst", "clues": ["deluge", "downpour", "torrent", "pelter", "soaker", "waterspout", "cloudburst"]}, {"answer": "cloudiness", "hint": "synonyms for cloudiness", "clues": ["murkiness", "overcast", "cloud cover", "muddiness", "cloudiness"]}, {"answer": "clout", "hint": "synonyms for clout", "clues": ["pull", "clout nail", "slug", "punch", "poke", "biff", "lick", "clout"]}, {"answer": "clown", "hint": "synonyms for clown", "clues": ["buffoon", "goofball", "goof", "merry andrew", "clown"]}, {"answer": "clowning", "hint": "synonyms for clowning", "clues": ["frivolity", "comedy", "japery", "funniness", "drollery", "harlequinade", "prank", "buffoonery", "clowning"]}, {"answer": "club", "hint": "synonyms for club", "clues": ["cabaret", "nightclub", "nine", "baseball club", "society", "social club", "guild", "ball club", "lodge", "clubhouse", "golf-club", "nightspot", "order", "club"]}, {"answer": "club_soda", "hint": "synonyms for club soda", "clues": ["sparkling water", "carbonated water", "soda water", "seltzer", "club soda"]}, {"answer": "clump", "hint": "synonyms for clump", "clues": ["lump", "clod", "thud", "bunch", "chunk", "thumping", "clunk", "cluster", "ball", "glob"]}, {"answer": "clumping", "hint": "synonyms for clumping", "clues": ["clunking", "clop", "clopping", "clippety-clop", "clip-clop", "clumping"]}, {"answer": "clumsiness", "hint": "synonyms for clumsiness", "clues": ["slowness", "awkwardness", "stiffness", "gracelessness", "maladroitness", "ineptness", "ineptitude", "clumsiness"]}, {"answer": "clunk", "hint": "synonyms for clunk", "clues": ["thumping", "thud", "clump", "clunk"]}, {"answer": "clunking", "hint": "synonyms for clunking", "clues": ["clumping", "clop", "clopping", "clippety-clop", "clip-clop", "clunking"]}, {"answer": "clutch", "hint": "synonyms for clutch", "clues": ["clasp", "batch", "grasp", "hold", "clutch bag", "clutch pedal", "clutches", "grip", "clench"]}, {"answer": "clutches", "hint": "synonyms for clutches", "clues": ["clutch", "clasp", "batch", "grasp", "hold", "clutch bag", "clutch pedal", "grip", "clench"]}, {"answer": "clutter", "hint": "synonyms for clutter", "clues": ["muddle", "welter", "mare's nest", "fuddle", "smother", "jumble", "clutter"]}, {"answer": "cm", "hint": "synonyms for cm", "clues": ["atomic number 96", "curium", "centimeter", "Cm"]}, {"answer": "cmb", "hint": "synonyms for cmb", "clues": ["cosmic background radiation", "CBR", "cosmic microwave background", "cosmic microwave background radiation", "CMB"]}, {"answer": "cmbr", "hint": "synonyms for cmbr", "clues": ["cosmic background radiation", "CBR", "cosmic microwave background", "cosmic microwave background radiation", "CMB"]}, {"answer": "cnpz", "hint": "synonyms for cnpz", "clues": ["Nestor Paz Zamora Commission", "ELN", "National Liberation Army", "CNPZ"]}, {"answer": "cnut", "hint": "synonyms for cnut", "clues": ["Canute", "Cnut", "Canute the Great", "Knut"]}, {"answer": "co", "hint": "synonyms for co", "clues": ["carbon monoxide", "Colorado", "CO", "atomic number 27", "Centennial State", "cobalt", "conscientious objector"]}, {"answer": "co-occurrence", "hint": "synonyms for co-occurrence", "clues": ["conjunction", "concurrence", "accompaniment", "concomitant", "attendant", "coincidence", "co-occurrence"]}, {"answer": "coach", "hint": "synonyms for coach", "clues": ["handler", "private instructor", "omnibus", "manager", "passenger car", "charabanc", "four-in-hand", "passenger vehicle", "bus", "autobus", "motorcoach", "jitney", "tutor", "carriage", "motorbus", "coach-and-four", "double-decker", "coach"]}, {"answer": "coal_black", "hint": "synonyms for coal black", "clues": ["jet black", "soot black", "pitch black", "ebony", "sable", "coal black"]}, {"answer": "coalescence", "hint": "synonyms for coalescence", "clues": ["coalition", "conglutination", "coalescency", "concretion"]}, {"answer": "coalescency", "hint": "synonyms for coalescency", "clues": ["coalescence", "coalition", "conglutination", "concretion"]}, {"answer": "coalition", "hint": "synonyms for coalition", "clues": ["alignment", "coalescency", "alliance", "concretion", "conglutination", "fusion", "coalition"]}, {"answer": "coarseness", "hint": "synonyms for coarseness", "clues": ["grossness", "nubbiness", "vulgarity", "raunch", "graininess", "vulgarism", "commonness", "granularity", "tweediness", "saltiness", "coarseness"]}, {"answer": "coast", "hint": "synonyms for coast", "clues": ["glide", "seacoast", "slide", "seashore", "coast"]}, {"answer": "coat_of_mail", "hint": "synonyms for coat of mail", "clues": ["body armour", "suit of armour", "cataphract", "coat of mail"]}, {"answer": "coating", "hint": "synonyms for coating", "clues": ["finishing", "covering", "application", "coat"]}, {"answer": "cobalt_blue", "hint": "synonyms for cobalt blue", "clues": ["cobalt ultramarine", "greenish blue", "peacock blue", "aquamarine", "turquoise", "aqua", "cobalt blue"]}, {"answer": "cock", "hint": "synonyms for cock", "clues": ["peter", "stopcock", "hammer", "shaft", "turncock", "pecker", "tool", "prick", "dick", "putz", "cock"]}, {"answer": "cock-and-bull_story", "hint": "synonyms for cock-and-bull story", "clues": ["fairy tale", "song and dance", "fairy story", "cock-and-bull story"]}, {"answer": "cockcrow", "hint": "synonyms for cockcrow", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow"]}, {"answer": "cocksucker", "hint": "synonyms for cocksucker", "clues": ["SOB", "motherfucker", "son of a bitch", "shit", "whoreson", "bastard", "asshole", "prick", "dickhead", "cocksucker"]}, {"answer": "cocotte", "hint": "synonyms for cocotte", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "tart", "whore", "woman of the street", "cyprian", "cocotte"]}, {"answer": "cocoyam", "hint": "synonyms for cocoyam", "clues": ["edda", "taro", "taro root", "dasheen", "cocoyam"]}, {"answer": "codswallop", "hint": "synonyms for codswallop", "clues": ["wish-wash", "trumpery", "trash", "rubbish", "applesauce", "tripe", "folderol", "codswallop"]}, {"answer": "cody", "hint": "synonyms for cody", "clues": ["William Frederick Cody", "Buffalo Bill Cody", "Buffalo Bill", "Cody", "William F. Cody"]}, {"answer": "coevals", "hint": "synonyms for coevals", "clues": ["generation", "contemporaries", "contemporary", "coeval"]}, {"answer": "coffee", "hint": "synonyms for coffee", "clues": ["coffee berry", "burnt umber", "deep brown", "coffee bean", "java", "umber", "chocolate", "coffee"]}, {"answer": "coffin_nail", "hint": "synonyms for coffin nail", "clues": ["cigarette", "butt", "fag", "coffin nail"]}, {"answer": "cognation", "hint": "synonyms for cognation", "clues": ["consanguinity", "enation", "matrilineage", "blood kinship", "cognation"]}, {"answer": "cognisance", "hint": "synonyms for cognisance", "clues": ["cognizance", "awareness", "knowingness", "consciousness"]}, {"answer": "cognitive_operation", "hint": "synonyms for cognitive operation", "clues": ["process", "operation", "mental process", "cognitive process", "cognitive operation"]}, {"answer": "cognitive_process", "hint": "synonyms for cognitive process", "clues": ["operation", "cognitive operation", "process", "mental process", "cognitive process"]}, {"answer": "cognizance", "hint": "synonyms for cognizance", "clues": ["ken", "cognisance", "consciousness", "awareness", "knowingness"]}, {"answer": "cognomen", "hint": "synonyms for cognomen", "clues": ["byname", "family name", "soubriquet", "surname", "nickname", "moniker", "last name", "cognomen"]}, {"answer": "cohesiveness", "hint": "synonyms for cohesiveness", "clues": ["viscidness", "coherence", "cohesion", "tackiness", "gumminess", "ropiness", "glueyness", "gluiness", "viscidity", "cohesiveness"]}, {"answer": "coif", "hint": "synonyms for coif", "clues": ["hairstyle", "hairdo", "coiffure", "coif"]}, {"answer": "coiffure", "hint": "synonyms for coiffure", "clues": ["hairstyle", "coif", "hairdo", "coiffure"]}, {"answer": "coil", "hint": "synonyms for coil", "clues": ["whorl", "ringlet", "curl", "scroll", "roll", "spiral", "curlicue", "volute", "gyre", "helix", "coil"]}, {"answer": "coinage", "hint": "synonyms for coinage", "clues": ["neology", "neologism", "metal money", "mintage", "specie", "coinage"]}, {"answer": "coincidence", "hint": "synonyms for coincidence", "clues": ["happenstance", "co-occurrence", "concurrence", "conjunction", "coincidence"]}, {"answer": "coition", "hint": "synonyms for coition", "clues": ["sexual relation", "coitus", "sexual intercourse", "sex act", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "copulation", "coition"]}, {"answer": "coitus", "hint": "synonyms for coitus", "clues": ["sexual relation", "sexual intercourse", "sex act", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "copulation", "coitus"]}, {"answer": "coitus_interruptus", "hint": "synonyms for coitus interruptus", "clues": ["withdrawal method", "withdrawal", "onanism", "pulling out", "coitus interruptus"]}, {"answer": "coke", "hint": "synonyms for coke", "clues": ["nose candy", "blow", "Coca Cola", "C", "snow", "Coke"]}, {"answer": "cola", "hint": "synonyms for cola", "clues": ["dope", "colon", "El Salvadoran colon", "Aspinwall", "Costa Rican colon", "cola"]}, {"answer": "coldness", "hint": "synonyms for coldness", "clues": ["low temperature", "chilliness", "coolness", "iciness", "frigidity", "cold", "frigidness"]}, {"answer": "collaborator", "hint": "synonyms for collaborator", "clues": ["pardner", "cooperator", "henchman", "collaborationist", "confederate", "quisling", "partner in crime", "collaborator"]}, {"answer": "collar", "hint": "synonyms for collar", "clues": ["apprehension", "choker", "pinch", "shoe collar", "taking into custody", "neckband", "catch", "arrest", "dog collar", "leash", "collar"]}, {"answer": "colleague", "hint": "synonyms for colleague", "clues": ["confrere", "fellow worker", "co-worker", "fellow", "workfellow", "colleague"]}, {"answer": "collection", "hint": "synonyms for collection", "clues": ["appeal", "assemblage", "aggregation", "accumulation", "ingathering", "assembling", "collecting", "compendium", "solicitation"]}, {"answer": "collector_of_internal_revenue", "hint": "synonyms for collector of internal revenue", "clues": ["taxman", "internal revenue agent", "exciseman", "tax collector", "collector of internal revenue"]}, {"answer": "collins", "hint": "synonyms for collins", "clues": ["William Wilkie Collins", "Wilkie Collins", "Collins", "Tom Collins"]}, {"answer": "cologne", "hint": "synonyms for cologne", "clues": ["cologne water", "Cologne", "eau de cologne", "Koln"]}, {"answer": "colon", "hint": "synonyms for colon", "clues": ["Aspinwall", "El Salvadoran colon", "Costa Rican colon", "Colon"]}, {"answer": "colorado", "hint": "synonyms for colorado", "clues": ["Colorado River", "Colorado", "Centennial State", "CO"]}, {"answer": "coloring", "hint": "synonyms for coloring", "clues": ["color", "colouring", "food colouring", "food color"]}, {"answer": "colors", "hint": "synonyms for colors", "clues": ["people of colour", "color", "colouring", "colouring material", "semblance", "gloss", "colours", "colouration", "vividness"]}, {"answer": "colossus", "hint": "synonyms for colossus", "clues": ["goliath", "titan", "giant", "heavyweight", "behemoth", "monster", "colossus"]}, {"answer": "colouring", "hint": "synonyms for colouring", "clues": ["color", "food colouring", "food color", "colouring"]}, {"answer": "colours", "hint": "synonyms for colours", "clues": ["people of colour", "color", "colouring material", "colouring", "semblance", "gloss", "colouration", "vividness", "colours"]}, {"answer": "columbia", "hint": "synonyms for columbia", "clues": ["Columbia", "Columbia University", "capital of South Carolina", "Columbia River"]}, {"answer": "columbus", "hint": "synonyms for columbus", "clues": ["Cristoforo Colombo", "Columbus", "capital of Ohio", "Christopher Columbus", "Cristobal Colon"]}, {"answer": "column", "hint": "synonyms for column", "clues": ["editorial", "pillar", "chromatography column", "newspaper column", "tower", "column"]}, {"answer": "combat", "hint": "synonyms for combat", "clues": ["fight", "scrap", "armed combat", "combat"]}, {"answer": "combat_boot", "hint": "synonyms for combat boot", "clues": ["top boot", "desert boot", "half boot", "buskin", "combat boot"]}, {"answer": "combine", "hint": "synonyms for combine", "clues": ["cartel", "trust", "corporate trust", "combining", "combine"]}, {"answer": "come", "hint": "synonyms for come", "clues": ["ejaculate", "semen", "seed", "seminal fluid", "cum", "come"]}, {"answer": "come-on", "hint": "synonyms for come-on", "clues": ["hook", "lure", "bait", "sweetener", "enticement", "come-on"]}, {"answer": "comeback", "hint": "synonyms for comeback", "clues": ["retort", "counter", "riposte", "rejoinder", "return", "replication", "comeback"]}, {"answer": "comfort", "hint": "synonyms for comfort", "clues": ["quilt", "puff", "consolation", "ease", "solace", "comforter", "comfortableness"]}, {"answer": "comfort_station", "hint": "synonyms for comfort station", "clues": ["public toilet", "toilet facility", "wash room", "public lavatory", "public convenience", "convenience", "restroom", "comfort station"]}, {"answer": "comforter", "hint": "synonyms for comforter", "clues": ["pacifier", "quilt", "puff", "teething ring", "sympathizer", "reliever", "allayer", "baby's dummy", "comfort"]}, {"answer": "comforts", "hint": "synonyms for comforts", "clues": ["quilt", "puff", "ease", "amenities", "comfort", "conveniences", "consolation", "solace", "creature comforts", "comfortableness"]}, {"answer": "command", "hint": "synonyms for command", "clues": ["control", "bidding", "program line", "mastery", "bid", "statement", "instruction", "dictation", "command"]}, {"answer": "commemoration", "hint": "synonyms for commemoration", "clues": ["memorialization", "remembrance", "memorial", "commemoration"]}, {"answer": "commencement", "hint": "synonyms for commencement", "clues": ["showtime", "outset", "start", "offset", "get-go", "graduation", "commencement exercise", "commencement ceremony", "graduation exercise", "starting time", "kickoff", "beginning", "first", "commencement"]}, {"answer": "commencement_ceremony", "hint": "synonyms for commencement ceremony", "clues": ["graduation", "commencement", "graduation exercise", "commencement exercise", "commencement ceremony"]}, {"answer": "commencement_exercise", "hint": "synonyms for commencement exercise", "clues": ["graduation", "commencement ceremony", "commencement", "graduation exercise", "commencement exercise"]}, {"answer": "comment", "hint": "synonyms for comment", "clues": ["gossip", "scuttlebutt", "commentary", "remark", "input", "comment"]}, {"answer": "commerce", "hint": "synonyms for commerce", "clues": ["commercialism", "Commerce", "Department of Commerce", "Commerce Department", "mercantilism", "DoC"]}, {"answer": "commerce_department", "hint": "synonyms for commerce department", "clues": ["Commerce Department", "Commerce", "Department of Commerce", "DoC"]}, {"answer": "commercial_traveler", "hint": "synonyms for commercial traveler", "clues": ["roadman", "commercial traveller", "traveling salesman", "bagman"]}, {"answer": "commercial_traveller", "hint": "synonyms for commercial traveller", "clues": ["roadman", "commercial traveler", "traveling salesman", "bagman"]}, {"answer": "commiseration", "hint": "synonyms for commiseration", "clues": ["pity", "pathos", "condolence", "ruth", "commiseration"]}, {"answer": "commissariat", "hint": "synonyms for commissariat", "clues": ["provender", "viands", "provisions", "victuals", "commissariat"]}, {"answer": "commission", "hint": "synonyms for commission", "clues": ["committee", "deputation", "committal", "delegation", "delegacy", "mission", "commissioning", "military commission", "charge", "perpetration", "direction"]}, {"answer": "commitment", "hint": "synonyms for commitment", "clues": ["loyalty", "committal", "dedication", "consignment", "committedness", "allegiance", "commitment"]}, {"answer": "committal", "hint": "synonyms for committal", "clues": ["commission", "commitment", "consignment", "perpetration", "committal"]}, {"answer": "commixture", "hint": "synonyms for commixture", "clues": ["mixture", "mixing", "intermixture", "commixture"]}, {"answer": "commode", "hint": "synonyms for commode", "clues": ["crapper", "throne", "stool", "toilet", "chiffonier", "pot", "can", "potty", "commode"]}, {"answer": "common_market", "hint": "synonyms for common market", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "common_measure", "hint": "synonyms for common measure", "clues": ["common time", "quadruple time", "common factor", "common divisor", "four-four time", "common meter", "common measure"]}, {"answer": "common_mood", "hint": "synonyms for common mood", "clues": ["fact mood", "declarative mood", "indicative mood", "indicative", "declarative", "common mood"]}, {"answer": "common_scold", "hint": "synonyms for common scold", "clues": ["scold", "nag", "scolder", "nagger", "common scold"]}, {"answer": "common_sense", "hint": "synonyms for common sense", "clues": ["horse sense", "mother wit", "sense", "good sense", "gumption", "common sense"]}, {"answer": "commonness", "hint": "synonyms for commonness", "clues": ["grossness", "vulgarity", "raunch", "vulgarism", "coarseness", "commonality", "commonplaceness", "expectedness", "everydayness", "commonness"]}, {"answer": "commons", "hint": "synonyms for commons", "clues": ["green", "common land", "park", "common", "third estate", "commonality"]}, {"answer": "commonwealth", "hint": "synonyms for commonwealth", "clues": ["body politic", "res publica", "republic", "land", "democracy", "nation", "state", "country", "commonwealth"]}, {"answer": "commotion", "hint": "synonyms for commotion", "clues": ["hurly burly", "tumult", "kerfuffle", "rumpus", "disturbance", "flutter", "ruction", "whirl", "ruckus", "to-do", "hoo-ha", "disruption", "din", "commotion"]}, {"answer": "communion", "hint": "synonyms for communion", "clues": ["sharing", "manduction", "Communion", "Holy Communion", "sacramental manduction"]}, {"answer": "communism_peak", "hint": "synonyms for communism peak", "clues": ["Stalin Peak", "Mount Garmo", "Communism Peak", "Mount Communism"]}, {"answer": "communist_china", "hint": "synonyms for communist china", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "communist_party_of_kampuchea", "hint": "synonyms for communist party of kampuchea", "clues": ["Khmer Rouge", "Communist Party of Kampuchea", "Party of Democratic Kampuchea", "KR"]}, {"answer": "community", "hint": "synonyms for community", "clues": ["residential district", "residential area", "community of interests", "biotic community", "community"]}, {"answer": "commutation", "hint": "synonyms for commutation", "clues": ["re-sentencing", "commuting", "substitution", "exchange", "commutation"]}, {"answer": "compaction", "hint": "synonyms for compaction", "clues": ["crush", "densification", "concretion", "crunch", "compression", "compaction"]}, {"answer": "compactness", "hint": "synonyms for compactness", "clues": ["denseness", "tightness", "concentration", "density", "compactness"]}, {"answer": "companion", "hint": "synonyms for companion", "clues": ["comrade", "fellow traveller", "familiar", "fellow", "associate", "companion"]}, {"answer": "company", "hint": "synonyms for company", "clues": ["companionship", "troupe", "party", "society", "ship's company", "fellowship", "caller", "company"]}, {"answer": "comparison", "hint": "synonyms for comparison", "clues": ["comparability", "equivalence", "compare", "comparing", "comparison"]}, {"answer": "compartmentalisation", "hint": "synonyms for compartmentalisation", "clues": ["categorization", "classification", "assortment", "compartmentalization"]}, {"answer": "compartmentalization", "hint": "synonyms for compartmentalization", "clues": ["categorisation", "compartmentalisation", "classification", "assortment"]}, {"answer": "compass", "hint": "synonyms for compass", "clues": ["ambit", "grasp", "range", "orbit", "reach", "scope", "compass"]}, {"answer": "competition", "hint": "synonyms for competition", "clues": ["contest", "contention", "competitor", "challenger", "contender", "rivalry", "rival"]}, {"answer": "competitor", "hint": "synonyms for competitor", "clues": ["rival", "contender", "challenger", "competition"]}, {"answer": "complainer", "hint": "synonyms for complainer", "clues": ["grumbler", "moaner", "sniveller", "bellyacher", "whiner", "crybaby", "squawker", "complainer"]}, {"answer": "completion", "hint": "synonyms for completion", "clues": ["culmination", "windup", "pass completion", "closing", "mop up", "completion"]}, {"answer": "complex_body_part", "hint": "synonyms for complex body part", "clues": ["anatomical structure", "structure", "body structure", "complex body part"]}, {"answer": "compliance", "hint": "synonyms for compliance", "clues": ["complaisance", "conformation", "obligingness", "deference", "conformity", "abidance", "submission", "compliancy"]}, {"answer": "compliancy", "hint": "synonyms for compliancy", "clues": ["complaisance", "deference", "obligingness", "compliancy"]}, {"answer": "complication", "hint": "synonyms for complication", "clues": ["ramification", "knottiness", "complicatedness", "tortuousness", "complication"]}, {"answer": "component", "hint": "synonyms for component", "clues": ["element", "factor", "part", "constituent", "ingredient", "portion", "component part", "component"]}, {"answer": "component_part", "hint": "synonyms for component part", "clues": ["portion", "part", "component", "constituent", "component part"]}, {"answer": "composition", "hint": "synonyms for composition", "clues": ["authorship", "physical composition", "penning", "make-up", "composing", "opus", "report", "piece of music", "constitution", "theme", "typography", "paper", "piece", "writing", "composition"]}, {"answer": "compression", "hint": "synonyms for compression", "clues": ["condensation", "contraction", "densification", "concretion", "compaction", "compressing"]}, {"answer": "computation", "hint": "synonyms for computation", "clues": ["calculation", "reckoning", "computing", "figuring", "computation"]}, {"answer": "computed_axial_tomography", "hint": "synonyms for computed axial tomography", "clues": ["computed tomography", "CAT", "CT", "computerized axial tomography"]}, {"answer": "computed_tomography", "hint": "synonyms for computed tomography", "clues": ["CAT", "CT", "computed axial tomography", "computerized tomography"]}, {"answer": "computer", "hint": "synonyms for computer", "clues": ["computing machine", "estimator", "calculator", "data processor", "information processing system", "figurer", "electronic computer", "reckoner", "computing device", "computer"]}, {"answer": "computer_memory", "hint": "synonyms for computer memory", "clues": ["memory board", "storage", "store", "memory", "computer storage", "computer memory"]}, {"answer": "computer_software", "hint": "synonyms for computer software", "clues": ["software system", "software", "software package", "package", "software program", "computer software"]}, {"answer": "computer_storage", "hint": "synonyms for computer storage", "clues": ["memory board", "storage", "computer memory", "store", "memory", "computer storage"]}, {"answer": "computer_system", "hint": "synonyms for computer system", "clues": ["computing system", "automatic data processing system", "ADP system", "ADPS", "computer system"]}, {"answer": "computerized_axial_tomography", "hint": "synonyms for computerized axial tomography", "clues": ["computed tomography", "CAT", "CT", "computerized axial tomography"]}, {"answer": "computerized_tomography", "hint": "synonyms for computerized tomography", "clues": ["computed tomography", "CAT", "CT", "computerized axial tomography"]}, {"answer": "computing_device", "hint": "synonyms for computing device", "clues": ["information processing system", "computer", "computing machine", "electronic computer", "data processor", "computing device"]}, {"answer": "computing_machine", "hint": "synonyms for computing machine", "clues": ["information processing system", "computer", "electronic computer", "data processor", "computing device", "computing machine"]}, {"answer": "computing_system", "hint": "synonyms for computing system", "clues": ["computer system", "automatic data processing system", "ADP system", "ADPS", "computing system"]}, {"answer": "comrade", "hint": "synonyms for comrade", "clues": ["Comrade", "brother", "familiar", "companion", "fellow", "associate"]}, {"answer": "comradeliness", "hint": "synonyms for comradeliness", "clues": ["comradery", "chumminess", "camaraderie", "comradeship", "comradeliness"]}, {"answer": "comradery", "hint": "synonyms for comradery", "clues": ["comradeliness", "chumminess", "camaraderie", "comradeship", "comradery"]}, {"answer": "comradeship", "hint": "synonyms for comradeship", "clues": ["comradeliness", "comradery", "chumminess", "camaraderie", "comradeship"]}, {"answer": "comte_de_saxe", "hint": "synonyms for comte de saxe", "clues": ["Saxe", "comte de Saxe", "Hermann Maurice Saxe", "Marshal Saxe"]}, {"answer": "comte_donatien_alphonse_francois_de_sade", "hint": "synonyms for comte donatien alphonse francois de sade", "clues": ["de Sade", "Sade", "Marquis de Sade", "Comte Donatien Alphonse Francois de Sade"]}, {"answer": "con_game", "hint": "synonyms for con game", "clues": ["bunco game", "confidence trick", "con", "flimflam", "bunco", "gyp", "sting", "bunko", "confidence game", "hustle", "con game"]}, {"answer": "concavity", "hint": "synonyms for concavity", "clues": ["incurvature", "concaveness", "concave shape", "incurvation", "concavity"]}, {"answer": "concealment", "hint": "synonyms for concealment", "clues": ["screen", "privacy", "privateness", "hiding", "cover", "concealing", "secrecy", "concealment"]}, {"answer": "conceit", "hint": "synonyms for conceit", "clues": ["amour propre", "conceitedness", "vanity", "self-love", "conceit"]}, {"answer": "concentration", "hint": "synonyms for concentration", "clues": ["denseness", "assiduity", "tightness", "assiduousness", "density", "engrossment", "immersion", "absorption", "compactness", "concentration"]}, {"answer": "conception", "hint": "synonyms for conception", "clues": ["creation", "construct", "invention", "concept", "excogitation", "innovation", "design", "conception"]}, {"answer": "concern", "hint": "synonyms for concern", "clues": ["headache", "business organisation", "business concern", "vexation", "business", "worry", "fear", "care", "concern"]}, {"answer": "conciliator", "hint": "synonyms for conciliator", "clues": ["pacifier", "reconciler", "make-peace", "peacemaker", "conciliator"]}, {"answer": "conclusion", "hint": "synonyms for conclusion", "clues": ["termination", "ratiocination", "finale", "close", "end", "stopping point", "last", "finis", "decision", "closing", "conclusion"]}, {"answer": "concord", "hint": "synonyms for concord", "clues": ["Concord", "Lexington and Concord", "concordance", "harmony", "agreement", "Lexington", "capital of New Hampshire"]}, {"answer": "concretion", "hint": "synonyms for concretion", "clues": ["coalition", "calculus", "coalescency", "compression", "densification", "compaction", "conglutination", "concretion"]}, {"answer": "concurrence", "hint": "synonyms for concurrence", "clues": ["conjunction", "co-occurrence", "concurrency", "meeting of minds", "coincidence"]}, {"answer": "condemnation", "hint": "synonyms for condemnation", "clues": ["judgment of conviction", "sentence", "disapprobation", "execration", "conviction", "curse", "condemnation"]}, {"answer": "condensation", "hint": "synonyms for condensation", "clues": ["abridgment", "contraction", "condensate", "condensing", "capsule", "compression", "condensation"]}, {"answer": "condenser", "hint": "synonyms for condenser", "clues": ["electrical condenser", "optical condenser", "capacitor", "capacitance", "condenser"]}, {"answer": "condescension", "hint": "synonyms for condescension", "clues": ["disdain", "patronage", "disdainfulness", "superciliousness", "condescendingness", "condescension"]}, {"answer": "condition", "hint": "synonyms for condition", "clues": ["stipulation", "shape", "circumstance", "precondition", "term", "experimental condition", "status", "consideration"]}, {"answer": "conditional_reaction", "hint": "synonyms for conditional reaction", "clues": ["conditioned response", "conditioned reaction", "acquired reflex", "conditioned reflex"]}, {"answer": "conditional_reflex", "hint": "synonyms for conditional reflex", "clues": ["conditioned response", "conditional reaction", "acquired reflex", "conditioned reflex"]}, {"answer": "conditional_response", "hint": "synonyms for conditional response", "clues": ["conditioned response", "conditional reaction", "acquired reflex", "conditioned reflex"]}, {"answer": "conditioned_reaction", "hint": "synonyms for conditioned reaction", "clues": ["conditioned response", "conditional reaction", "acquired reflex", "conditioned reflex"]}, {"answer": "conditioned_reflex", "hint": "synonyms for conditioned reflex", "clues": ["conditioned response", "conditional reaction", "acquired reflex", "conditional reflex"]}, {"answer": "conditioned_response", "hint": "synonyms for conditioned response", "clues": ["conditional reaction", "acquired reflex", "conditioned reflex", "conditional response"]}, {"answer": "conditions", "hint": "synonyms for conditions", "clues": ["condition", "stipulation", "experimental condition", "status", "consideration", "atmospheric condition", "weather", "shape", "weather condition", "circumstance", "term"]}, {"answer": "condom", "hint": "synonyms for condom", "clues": ["safe", "rubber", "prophylactic", "safety", "condom"]}, {"answer": "conduct", "hint": "synonyms for conduct", "clues": ["demeanour", "doings", "deportment", "behaviour", "conduct"]}, {"answer": "cone", "hint": "synonyms for cone", "clues": ["conoid", "cone cell", "retinal cone", "cone shape", "cone"]}, {"answer": "conestoga", "hint": "synonyms for conestoga", "clues": ["Conestoga", "Conestoga wagon", "covered wagon", "prairie wagon", "prairie schooner"]}, {"answer": "conestoga_wagon", "hint": "synonyms for conestoga wagon", "clues": ["Conestoga", "Conestoga wagon", "covered wagon", "prairie wagon", "prairie schooner"]}, {"answer": "confab", "hint": "synonyms for confab", "clues": ["schmoose", "chat", "confabulation", "confab"]}, {"answer": "confabulation", "hint": "synonyms for confabulation", "clues": ["schmoose", "chat", "confab", "confabulation"]}, {"answer": "confederacy", "hint": "synonyms for confederacy", "clues": ["federation", "conspiracy", "Confederacy", "South", "Dixieland", "Confederate States", "Dixie", "Confederate States of America"]}, {"answer": "confederate_states", "hint": "synonyms for confederate states", "clues": ["Dixieland", "Confederate States", "Dixie", "Confederacy", "South", "Confederate States of America"]}, {"answer": "confederate_states_of_america", "hint": "synonyms for confederate states of america", "clues": ["Dixieland", "Confederate States", "Dixie", "Confederacy", "South", "Confederate States of America"]}, {"answer": "conferrer", "hint": "synonyms for conferrer", "clues": ["giver", "donor", "presenter", "bestower", "conferrer"]}, {"answer": "confidence", "hint": "synonyms for confidence", "clues": ["authority", "self-assurance", "trust", "self-confidence", "assurance", "sureness", "confidence"]}, {"answer": "confidence_game", "hint": "synonyms for confidence game", "clues": ["bunco game", "confidence trick", "con", "hustle", "flimflam", "bunco", "gyp", "sting", "bunko", "con game", "confidence game"]}, {"answer": "confidence_trick", "hint": "synonyms for confidence trick", "clues": ["bunco game", "hustle", "con", "flimflam", "bunco", "gyp", "sting", "bunko", "confidence game", "con game", "confidence trick"]}, {"answer": "confidential_information", "hint": "synonyms for confidential information", "clues": ["lead", "hint", "wind", "tip", "steer", "confidential information"]}, {"answer": "configuration", "hint": "synonyms for configuration", "clues": ["form", "constellation", "conformation", "shape", "contour", "configuration"]}, {"answer": "confinement", "hint": "synonyms for confinement", "clues": ["labour", "lying-in", "restriction", "childbed", "parturiency", "travail", "confinement"]}, {"answer": "confirmation", "hint": "synonyms for confirmation", "clues": ["verification", "ratification", "substantiation", "check", "confirmation"]}, {"answer": "conflict", "hint": "synonyms for conflict", "clues": ["difference of opinion", "battle", "difference", "struggle", "fight", "dispute", "engagement", "conflict"]}, {"answer": "confluence", "hint": "synonyms for confluence", "clues": ["conflux", "merging", "concourse", "meeting", "confluence"]}, {"answer": "conformation", "hint": "synonyms for conformation", "clues": ["form", "compliance", "shape", "configuration", "conformity", "abidance", "contour", "conformation"]}, {"answer": "conformity", "hint": "synonyms for conformity", "clues": ["accordance", "compliance", "conformation", "conformance", "accord", "ossification", "abidance", "conformism", "conformity"]}, {"answer": "confrontation", "hint": "synonyms for confrontation", "clues": ["face-off", "opposition", "encounter", "showdown", "confrontation"]}, {"answer": "confucius", "hint": "synonyms for confucius", "clues": ["Kongfuze", "Confucius", "K'ung Futzu", "Kong the Master"]}, {"answer": "confusedness", "hint": "synonyms for confusedness", "clues": ["mental confusion", "disarray", "muddiness", "confusion", "confusedness"]}, {"answer": "confusion", "hint": "synonyms for confusion", "clues": ["mix-up", "discombobulation", "confusedness", "disarray", "muddiness", "mental confusion", "confusion"]}, {"answer": "congenital_abnormality", "hint": "synonyms for congenital abnormality", "clues": ["congenital defect", "congenital anomaly", "birth defect", "congenital disorder"]}, {"answer": "congenital_anomaly", "hint": "synonyms for congenital anomaly", "clues": ["congenital defect", "congenital abnormality", "birth defect", "congenital disorder"]}, {"answer": "congenital_defect", "hint": "synonyms for congenital defect", "clues": ["congenital abnormality", "birth defect", "congenital disorder", "congenital defect"]}, {"answer": "congenital_disease", "hint": "synonyms for congenital disease", "clues": ["hereditary disease", "genetic defect", "inherited disease", "genetic disease", "genetic abnormality", "hereditary condition", "genetic disorder", "inherited disorder", "congenital disease"]}, {"answer": "congenital_disorder", "hint": "synonyms for congenital disorder", "clues": ["congenital defect", "congenital abnormality", "birth defect", "congenital disorder"]}, {"answer": "conglutination", "hint": "synonyms for conglutination", "clues": ["union", "concretion", "coalescence", "coalition", "conglutination"]}, {"answer": "congo", "hint": "synonyms for congo", "clues": ["Belgian Congo", "congou tea", "Republic of the Congo", "Zaire", "Congo", "Congo River", "Democratic Republic of the Congo", "French Congo", "English breakfast tea", "Zaire River"]}, {"answer": "congratulations", "hint": "synonyms for congratulations", "clues": ["congratulation", "felicitation", "kudos", "extolment", "praise"]}, {"answer": "congress", "hint": "synonyms for congress", "clues": ["U.S. Congress", "coitus", "sex act", "coition", "United States Congress", "relation", "copulation", "sexual congress", "carnal knowledge", "Congress", "sexual relation", "sexual intercourse", "intercourse"]}, {"answer": "conjecture", "hint": "synonyms for conjecture", "clues": ["speculation", "surmise", "hypothesis", "surmisal", "supposition", "guess", "conjecture"]}, {"answer": "conjugation", "hint": "synonyms for conjugation", "clues": ["conjunction", "coupling", "union", "sexual union", "mating", "junction", "colligation", "jointure", "uniting", "unification", "pairing", "conjugation"]}, {"answer": "conjunction", "hint": "synonyms for conjunction", "clues": ["connective", "co-occurrence", "concurrence", "continuative", "junction", "conjugation", "colligation", "alignment", "coincidence", "conjunction"]}, {"answer": "conjuration", "hint": "synonyms for conjuration", "clues": ["invocation", "incantation", "illusion", "legerdemain", "magic trick", "thaumaturgy", "conjuring", "deception", "trick", "magic", "conjury", "conjuring trick", "conjuration"]}, {"answer": "conjurer", "hint": "synonyms for conjurer", "clues": ["illusionist", "prestidigitator", "magician", "conjuror", "conjure man"]}, {"answer": "conjuring_trick", "hint": "synonyms for conjuring trick", "clues": ["illusion", "legerdemain", "magic trick", "thaumaturgy", "deception", "trick", "conjuration", "magic", "conjuring trick"]}, {"answer": "conjuror", "hint": "synonyms for conjuror", "clues": ["conjurer", "illusionist", "prestidigitator", "magician", "conjure man"]}, {"answer": "connecter", "hint": "synonyms for connecter", "clues": ["connective", "connector", "connexion", "connection"]}, {"answer": "connecticut", "hint": "synonyms for connecticut", "clues": ["CT", "Connecticut", "Connecticut River", "Constitution State", "Nutmeg State"]}, {"answer": "connection", "hint": "synonyms for connection", "clues": ["connecter", "connective", "connexion", "link", "connectedness", "association", "joining", "connection"]}, {"answer": "connector", "hint": "synonyms for connector", "clues": ["connecter", "connective", "connexion", "connection"]}, {"answer": "connexion", "hint": "synonyms for connexion", "clues": ["connecter", "connective", "connection", "link", "connectedness", "association", "joining", "connexion"]}, {"answer": "conquest", "hint": "synonyms for conquest", "clues": ["subjugation", "conquering", "seduction", "subjection", "conquest"]}, {"answer": "consciousness", "hint": "synonyms for consciousness", "clues": ["cognizance", "awareness", "knowingness", "consciousness"]}, {"answer": "consequence", "hint": "synonyms for consequence", "clues": ["event", "outcome", "upshot", "issue", "effect", "result", "import", "moment", "aftermath", "consequence"]}, {"answer": "consideration", "hint": "synonyms for consideration", "clues": ["condition", "circumstance", "retainer", "considerateness", "thoughtfulness", "consideration"]}, {"answer": "consignment", "hint": "synonyms for consignment", "clues": ["committal", "loading", "cargo", "payload", "shipment", "freight", "commitment", "consignment"]}, {"answer": "constance", "hint": "synonyms for constance", "clues": ["Constance", "Lake Constance", "Council of Constance", "Bodensee"]}, {"answer": "constantinople", "hint": "synonyms for constantinople", "clues": ["Third Council of Constantinople", "Istanbul", "Stambul", "Constantinople"]}, {"answer": "constipation", "hint": "synonyms for constipation", "clues": ["irregularity", "deadening", "impairment", "stultification", "constipation"]}, {"answer": "constitution", "hint": "synonyms for constitution", "clues": ["United States Constitution", "composition", "physical composition", "US Constitution", "make-up", "formation", "Old Ironsides", "fundamental law", "organisation", "establishment", "Constitution of the United States", "organic law"]}, {"answer": "constitution_state", "hint": "synonyms for constitution state", "clues": ["Constitution State", "CT", "Nutmeg State", "Connecticut"]}, {"answer": "constriction", "hint": "synonyms for constriction", "clues": ["chokepoint", "bottleneck", "tightness", "coarctation", "constriction"]}, {"answer": "construction", "hint": "synonyms for construction", "clues": ["grammatical construction", "expression", "building", "structure", "mental synthesis", "twist", "construction"]}, {"answer": "consumption", "hint": "synonyms for consumption", "clues": ["using up", "usance", "wasting disease", "ingestion", "phthisis", "use of goods and services", "expenditure", "pulmonary tuberculosis", "uptake", "white plague", "intake", "economic consumption", "use", "consumption"]}, {"answer": "contact", "hint": "synonyms for contact", "clues": ["contact lens", "impinging", "middleman", "touch", "link", "tangency", "liaison", "physical contact", "inter-group communication", "striking", "contact"]}, {"answer": "contemplation", "hint": "synonyms for contemplation", "clues": ["reflexion", "reflection", "musing", "thoughtfulness", "rumination", "contemplation"]}, {"answer": "contemporaneity", "hint": "synonyms for contemporaneity", "clues": ["modernity", "modernness", "contemporaneousness", "modernism", "contemporaneity"]}, {"answer": "contemporaneousness", "hint": "synonyms for contemporaneousness", "clues": ["modernity", "contemporaneity", "modernness", "modernism", "contemporaneousness"]}, {"answer": "contemporaries", "hint": "synonyms for contemporaries", "clues": ["generation", "coevals", "contemporary", "contemporaries"]}, {"answer": "contempt", "hint": "synonyms for contempt", "clues": ["despite", "disdain", "disrespect", "scorn", "contempt"]}, {"answer": "contemptibility", "hint": "synonyms for contemptibility", "clues": ["baseness", "despicability", "sordidness", "despicableness", "contemptibility"]}, {"answer": "contender", "hint": "synonyms for contender", "clues": ["rival", "competitor", "challenger", "contender"]}, {"answer": "contention", "hint": "synonyms for contention", "clues": ["tilt", "disceptation", "competition", "argument", "arguing", "contestation", "rivalry", "controversy", "contention"]}, {"answer": "contents", "hint": "synonyms for contents", "clues": ["table of contents", "content", "contentedness", "cognitive content", "subject", "depicted object", "substance", "subject matter", "message", "mental object", "capacity"]}, {"answer": "contestant", "hint": "synonyms for contestant", "clues": ["dissident", "protester", "dissenter", "objector", "contestant"]}, {"answer": "contestation", "hint": "synonyms for contestation", "clues": ["contention", "argument", "tilt", "disceptation", "arguing", "controversy", "contestation"]}, {"answer": "context", "hint": "synonyms for context", "clues": ["context of use", "linguistic context", "setting", "circumstance", "context"]}, {"answer": "continuation", "hint": "synonyms for continuation", "clues": ["protraction", "good continuation", "prolongation", "continuance", "sequel", "lengthiness", "law of continuation", "continuation"]}, {"answer": "continuous_tense", "hint": "synonyms for continuous tense", "clues": ["imperfect", "progressive", "progressive tense", "imperfect tense", "continuous tense"]}, {"answer": "contortion", "hint": "synonyms for contortion", "clues": ["deformation", "tortuosity", "torsion", "tortuousness", "crookedness", "contortion"]}, {"answer": "contour", "hint": "synonyms for contour", "clues": ["form", "contour line", "conformation", "shape", "configuration", "contour"]}, {"answer": "contra_danse", "hint": "synonyms for contra danse", "clues": ["contradance", "country-dance", "contredanse", "country dancing"]}, {"answer": "contrabandist", "hint": "synonyms for contrabandist", "clues": ["moon curser", "smuggler", "runner", "contrabandist"]}, {"answer": "contraceptive_device", "hint": "synonyms for contraceptive device", "clues": ["prophylactic device", "preventative", "birth control device", "contraceptive", "contraceptive device"]}, {"answer": "contraceptive_pill", "hint": "synonyms for contraceptive pill", "clues": ["oral contraceptive pill", "anovulant", "pill", "anovulatory drug", "birth control pill"]}, {"answer": "contraction", "hint": "synonyms for contraction", "clues": ["muscular contraction", "condensation", "compression", "contraction"]}, {"answer": "contradance", "hint": "synonyms for contradance", "clues": ["country-dance", "country dancing", "contredanse", "contradance"]}, {"answer": "contraption", "hint": "synonyms for contraption", "clues": ["contrivance", "gizmo", "gadget", "widget", "convenience", "gismo", "appliance", "contraption"]}, {"answer": "contrariness", "hint": "synonyms for contrariness", "clues": ["crankiness", "perversity", "perverseness", "grumpiness", "crotchetiness", "contrariness"]}, {"answer": "contrast", "hint": "synonyms for contrast", "clues": ["line", "demarcation", "dividing line", "direct contrast", "contrast"]}, {"answer": "contredanse", "hint": "synonyms for contredanse", "clues": ["contradance", "country-dance", "country dancing", "contredanse"]}, {"answer": "contrivance", "hint": "synonyms for contrivance", "clues": ["lash-up", "stratagem", "widget", "gadget", "convenience", "gismo", "dodge", "appliance", "devisal", "contraption", "gizmo", "contrivance"]}, {"answer": "control", "hint": "synonyms for control", "clues": ["dominance", "restraint", "mastery", "ascendance", "controller", "ascendency", "control condition", "command", "control"]}, {"answer": "control_board", "hint": "synonyms for control board", "clues": ["instrument panel", "panel", "board", "control panel", "control board"]}, {"answer": "control_panel", "hint": "synonyms for control panel", "clues": ["instrument panel", "board", "panel", "control board", "control panel"]}, {"answer": "controller", "hint": "synonyms for controller", "clues": ["control", "accountant", "restrainer", "comptroller"]}, {"answer": "controversy", "hint": "synonyms for controversy", "clues": ["contention", "argument", "tilt", "disceptation", "arguing", "contestation", "controversy"]}, {"answer": "contumely", "hint": "synonyms for contumely", "clues": ["abuse", "revilement", "insult", "vilification", "contumely"]}, {"answer": "convenience", "hint": "synonyms for convenience", "clues": ["public toilet", "contrivance", "comfort station", "widget", "gadget", "gismo", "appliance", "restroom", "wash room", "public lavatory", "contraption", "public convenience", "toilet facility", "gizmo", "convenience"]}, {"answer": "conveniences", "hint": "synonyms for conveniences", "clues": ["public toilet", "widget", "convenience", "gismo", "restroom", "comforts", "public convenience", "toilet facility", "gizmo", "contrivance", "amenities", "comfort station", "gadget", "appliance", "wash room", "public lavatory", "contraption", "creature comforts"]}, {"answer": "convention", "hint": "synonyms for convention", "clues": ["rule", "pattern", "convening", "normal", "conventionalism", "formula", "convention"]}, {"answer": "convergence", "hint": "synonyms for convergence", "clues": ["convergency", "intersection", "converging", "overlap"]}, {"answer": "conversion", "hint": "synonyms for conversion", "clues": ["spiritual rebirth", "rebirth", "changeover", "transition", "conversion"]}, {"answer": "conveyance", "hint": "synonyms for conveyance", "clues": ["transfer", "conveying", "transferral", "imparting", "transportation", "transport", "impartation", "conveyance of title", "conveyance"]}, {"answer": "convict", "hint": "synonyms for convict", "clues": ["inmate", "yardbird", "con", "convict"]}, {"answer": "conviction", "hint": "synonyms for conviction", "clues": ["judgment of conviction", "strong belief", "sentence", "condemnation", "article of faith", "conviction"]}, {"answer": "convolution", "hint": "synonyms for convolution", "clues": ["swirl", "whirl", "gyrus", "vortex", "convolution"]}, {"answer": "convolution_of_broca", "hint": "synonyms for convolution of broca", "clues": ["Broca's convolution", "convolution of Broca", "Broca's center", "Broca's area", "Broca's gyrus"]}, {"answer": "convulsion", "hint": "synonyms for convulsion", "clues": ["turmoil", "upheaval", "paroxysm", "fit", "convulsion"]}, {"answer": "cook", "hint": "synonyms for cook", "clues": ["Cook", "Captain James Cook", "James Cook", "Captain Cook"]}, {"answer": "cooke", "hint": "synonyms for cooke", "clues": ["Jay Cooke", "Alistair Cooke", "Cooke", "Alfred Alistair Cooke"]}, {"answer": "cooking_stove", "hint": "synonyms for cooking stove", "clues": ["range", "stove", "kitchen range", "kitchen stove", "cooking stove"]}, {"answer": "coolness", "hint": "synonyms for coolness", "clues": ["nip", "chilliness", "coldness", "nervelessness", "iciness", "frigidity", "imperturbability", "imperturbableness", "frigidness"]}, {"answer": "coon", "hint": "synonyms for coon", "clues": ["nigra", "nigger", "nigga", "jigaboo", "spade", "coon"]}, {"answer": "coop", "hint": "synonyms for coop", "clues": ["cage", "hencoop", "henhouse", "chicken coop", "coop"]}, {"answer": "cooper", "hint": "synonyms for cooper", "clues": ["James Fenimore Cooper", "Cooper", "barrel maker", "Gary Cooper", "Peter Cooper", "Frank Cooper"]}, {"answer": "cop", "hint": "synonyms for cop", "clues": ["pig", "bull", "copper", "fuzz", "cop"]}, {"answer": "copestone", "hint": "synonyms for copestone", "clues": ["finishing touch", "capstone", "stretcher", "coping stone", "copestone"]}, {"answer": "copper", "hint": "synonyms for copper", "clues": ["pig", "bull", "copper color", "fuzz", "cop", "Cu", "atomic number 29", "copper"]}, {"answer": "copper_nose", "hint": "synonyms for copper nose", "clues": ["brandy nose", "hammer nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "rum nose", "toper's nose", "rhinophyma", "copper nose"]}, {"answer": "coppice", "hint": "synonyms for coppice", "clues": ["brush", "brushwood", "copse", "thicket", "coppice"]}, {"answer": "copse", "hint": "synonyms for copse", "clues": ["brush", "brushwood", "coppice", "thicket", "copse"]}, {"answer": "copulation", "hint": "synonyms for copulation", "clues": ["sexual relation", "coitus", "sex act", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "sexual intercourse", "copulation"]}, {"answer": "copycat", "hint": "synonyms for copycat", "clues": ["ape", "imitator", "emulator", "copycat"]}, {"answer": "coquetry", "hint": "synonyms for coquetry", "clues": ["dalliance", "flirtation", "flirting", "toying", "coquetry"]}, {"answer": "coquette", "hint": "synonyms for coquette", "clues": ["prickteaser", "tease", "vamper", "minx", "vamp", "flirt", "coquette"]}, {"answer": "cora", "hint": "synonyms for cora", "clues": ["Cora", "Persephone", "Despoina", "Kore"]}, {"answer": "corbett", "hint": "synonyms for corbett", "clues": ["Gentleman Jim", "Corbett", "James John Corbett", "Jim Corbett"]}, {"answer": "core", "hint": "synonyms for core", "clues": ["marrow", "inwardness", "nitty-gritty", "center", "effect", "kernel", "nub", "nucleus", "heart", "magnetic core", "core group", "CORE", "sum", "gist", "essence", "heart and soul", "centre", "meat", "substance", "pith", "burden", "Congress of Racial Equality"]}, {"answer": "cork", "hint": "synonyms for cork", "clues": ["bobfloat", "bottle cork", "Cork", "bobber", "phellem", "bob"]}, {"answer": "corn", "hint": "synonyms for corn", "clues": ["clavus", "edible corn", "corn whisky", "corn"]}, {"answer": "corner", "hint": "synonyms for corner", "clues": ["recession", "nook", "recess", "turning point", "niche", "street corner", "quoin", "box", "corner"]}, {"answer": "cornerstone", "hint": "synonyms for cornerstone", "clues": ["base", "fundament", "basis", "groundwork", "foundation", "cornerstone"]}, {"answer": "cornucopia", "hint": "synonyms for cornucopia", "clues": ["profuseness", "profusion", "richness", "horn of plenty", "cornucopia"]}, {"answer": "corona", "hint": "synonyms for corona", "clues": ["Saint Ulmo's light", "electric glow", "Saint Elmo's fire", "corposant", "aureole", "corona discharge", "corona"]}, {"answer": "corona_discharge", "hint": "synonyms for corona discharge", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "St. Elmo's fire", "corona", "corona discharge"]}, {"answer": "coronach", "hint": "synonyms for coronach", "clues": ["dirge", "requiem", "lament", "threnody", "coronach"]}, {"answer": "coronal", "hint": "synonyms for coronal", "clues": ["chaplet", "lei", "wreath", "garland", "coronal"]}, {"answer": "coronary-artery_disease", "hint": "synonyms for coronary-artery disease", "clues": ["arterial sclerosis", "induration of the arteries", "hardening of the arteries", "coronary-artery disease"]}, {"answer": "coronation", "hint": "synonyms for coronation", "clues": ["investiture", "enthronization", "enthronement", "coronation"]}, {"answer": "corporation", "hint": "synonyms for corporation", "clues": ["bay window", "potbelly", "corp", "pot", "tummy", "corporation"]}, {"answer": "corposant", "hint": "synonyms for corposant", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corona discharge", "St. Elmo's fire", "corona", "corposant"]}, {"answer": "corpse", "hint": "synonyms for corpse", "clues": ["remains", "cadaver", "stiff", "clay", "corpse"]}, {"answer": "corpuscle", "hint": "synonyms for corpuscle", "clues": ["mote", "particle", "molecule", "blood corpuscle", "speck", "atom", "blood cell", "corpuscle"]}, {"answer": "correction", "hint": "synonyms for correction", "clues": ["rectification", "fudge factor", "discipline", "chastening", "chastisement", "correction"]}, {"answer": "corrections", "hint": "synonyms for corrections", "clues": ["correction", "department of corrections", "rectification", "fudge factor", "discipline", "chastening", "chastisement"]}, {"answer": "correlation", "hint": "synonyms for correlation", "clues": ["coefficient of correlation", "correlational statistics", "correlation coefficient", "correlativity", "correlation"]}, {"answer": "correspondence", "hint": "synonyms for correspondence", "clues": ["symmetry", "balance", "commensurateness", "proportionateness", "parallelism", "symmetricalness", "agreement", "correspondence"]}, {"answer": "corruption", "hint": "synonyms for corruption", "clues": ["depravation", "corruptness", "degeneracy", "subversion", "putrefaction", "depravity", "putridness", "rottenness", "putrescence", "corruption"]}, {"answer": "cortex", "hint": "synonyms for cortex", "clues": ["cerebral cortex", "lens cortex", "pallium", "cerebral mantle", "cortex"]}, {"answer": "corticotrophin", "hint": "synonyms for corticotrophin", "clues": ["ACTH", "adrenocorticotropic hormone", "adrenocorticotrophin", "corticotropin"]}, {"answer": "corticotropin", "hint": "synonyms for corticotropin", "clues": ["ACTH", "adrenocorticotropic hormone", "adrenocorticotrophin", "corticotrophin"]}, {"answer": "cos", "hint": "synonyms for cos", "clues": ["carbon monoxide", "Colorado", "romaine", "CO", "cosine", "cos lettuce", "cobalt", "atomic number 27", "Centennial State", "romaine lettuce", "conscientious objector"]}, {"answer": "cosmetic_surgery", "hint": "synonyms for cosmetic surgery", "clues": ["lift", "rhytidoplasty", "facelift", "face lifting", "nip and tuck", "rhytidectomy", "cosmetic surgery"]}, {"answer": "cosmic_background_radiation", "hint": "synonyms for cosmic background radiation", "clues": ["CBR", "cosmic microwave background", "cosmic microwave background radiation", "CMB", "cosmic background radiation"]}, {"answer": "cosmic_microwave_background", "hint": "synonyms for cosmic microwave background", "clues": ["cosmic background radiation", "CBR", "cosmic microwave background radiation", "CMB", "cosmic microwave background"]}, {"answer": "cosmic_microwave_background_radiation", "hint": "synonyms for cosmic microwave background radiation", "clues": ["cosmic background radiation", "CBR", "cosmic microwave background", "CMB", "cosmic microwave background radiation"]}, {"answer": "cosmos", "hint": "synonyms for cosmos", "clues": ["creation", "universe", "macrocosm", "world", "existence", "cosmos"]}, {"answer": "coss", "hint": "synonyms for coss", "clues": ["romaine lettuce", "kos", "romaine", "cosine", "cos", "cos lettuce"]}, {"answer": "costs", "hint": "synonyms for costs", "clues": ["monetary value", "cost", "price", "toll"]}, {"answer": "cot_death", "hint": "synonyms for cot death", "clues": ["sudden infant death syndrome", "SIDS", "crib death", "infant death", "cot death"]}, {"answer": "coterie", "hint": "synonyms for coterie", "clues": ["clique", "pack", "camp", "ingroup", "inner circle", "coterie"]}, {"answer": "cotyloid_joint", "hint": "synonyms for cotyloid joint", "clues": ["enarthrodial joint", "ball-and-socket joint", "articulatio spheroidea", "spheroid joint", "enarthrosis", "cotyloid joint"]}, {"answer": "coulomb", "hint": "synonyms for coulomb", "clues": ["C", "Charles Augustin de Coulomb", "ampere-second", "Coulomb"]}, {"answer": "counsel", "hint": "synonyms for counsel", "clues": ["counseling", "guidance", "advocate", "pleader", "counselor-at-law", "counselor", "direction"]}, {"answer": "counseling", "hint": "synonyms for counseling", "clues": ["counselling", "guidance", "direction", "counsel"]}, {"answer": "counsellor", "hint": "synonyms for counsellor", "clues": ["counselor-at-law", "counselor", "advocate", "pleader"]}, {"answer": "counselor", "hint": "synonyms for counselor", "clues": ["counselor-at-law", "advocate", "counsellor", "pleader", "counsel"]}, {"answer": "counselor-at-law", "hint": "synonyms for counselor-at-law", "clues": ["counsellor", "advocate", "pleader", "counsel", "counselor-at-law"]}, {"answer": "count", "hint": "synonyms for count", "clues": ["reckoning", "numeration", "tally", "counting"]}, {"answer": "countenance", "hint": "synonyms for countenance", "clues": ["imprimatur", "smiler", "warrant", "physiognomy", "mug", "sanction", "indorsement", "phiz", "kisser", "visage", "countenance"]}, {"answer": "counterbalance", "hint": "synonyms for counterbalance", "clues": ["counterweight", "balance", "equalizer", "equilibrium", "counterpoise", "offset", "equipoise", "counterbalance"]}, {"answer": "countercurrent", "hint": "synonyms for countercurrent", "clues": ["tide rip", "crosscurrent", "riptide", "rip", "countercurrent"]}, {"answer": "counterpane", "hint": "synonyms for counterpane", "clues": ["bed cover", "bedspread", "spread", "counterpane"]}, {"answer": "counterpart", "hint": "synonyms for counterpart", "clues": ["similitude", "vis-a-vis", "twin", "opposite number", "counterpart"]}, {"answer": "counterpoise", "hint": "synonyms for counterpoise", "clues": ["counterweight", "balance", "equalizer", "counterbalance", "counterpoise"]}, {"answer": "countersign", "hint": "synonyms for countersign", "clues": ["parole", "watchword", "password", "countersignature", "word", "countersign"]}, {"answer": "counterweight", "hint": "synonyms for counterweight", "clues": ["balance", "equalizer", "counterpoise", "counterbalance", "counterweight"]}, {"answer": "counting", "hint": "synonyms for counting", "clues": ["reckoning", "enumeration", "count", "tally"]}, {"answer": "country", "hint": "synonyms for country", "clues": ["body politic", "res publica", "commonwealth", "rural area", "land", "area", "nation", "state", "country"]}, {"answer": "country-dance", "hint": "synonyms for country-dance", "clues": ["contradance", "country dancing", "contredanse", "country-dance"]}, {"answer": "country_dancing", "hint": "synonyms for country dancing", "clues": ["contradance", "country-dance", "contredanse", "country dancing"]}, {"answer": "country_of_origin", "hint": "synonyms for country of origin", "clues": ["motherland", "native land", "fatherland", "homeland", "mother country", "country of origin"]}, {"answer": "couple", "hint": "synonyms for couple", "clues": ["couplet", "duo", "twain", "pair", "span", "mates", "brace", "match", "duad", "duet", "twosome", "distich", "dyad", "yoke"]}, {"answer": "couplet", "hint": "synonyms for couplet", "clues": ["brace", "couple", "dyad", "duo", "twain", "duet", "twosome", "distich", "duad", "yoke", "pair", "span"]}, {"answer": "coupling", "hint": "synonyms for coupling", "clues": ["union", "sexual union", "mating", "conjugation", "yoke", "coupler", "pairing", "coupling"]}, {"answer": "course_of_study", "hint": "synonyms for course of study", "clues": ["syllabus", "class", "program", "course of instruction", "curriculum", "course", "course of study"]}, {"answer": "court", "hint": "synonyms for court", "clues": ["homage", "royal court", "Margaret Court", "tribunal", "Court", "motor hotel", "motor inn", "court of justice", "motor lodge", "lawcourt", "court of law", "courtyard", "tourist court", "judicature", "courtroom"]}, {"answer": "cover", "hint": "synonyms for cover", "clues": ["screen", "binding", "cover version", "covering", "cover song", "covert", "blanket", "top", "concealment", "masking", "covering fire", "back", "natural covering", "cover charge", "book binding"]}, {"answer": "covered_wagon", "hint": "synonyms for covered wagon", "clues": ["Conestoga", "Conestoga wagon", "prairie schooner", "prairie wagon", "covered wagon"]}, {"answer": "covering", "hint": "synonyms for covering", "clues": ["screening", "coating", "cover", "natural covering", "application", "masking"]}, {"answer": "covetousness", "hint": "synonyms for covetousness", "clues": ["avarice", "avaritia", "greed", "rapacity", "cupidity", "avariciousness", "covetousness"]}, {"answer": "cow_barn", "hint": "synonyms for cow barn", "clues": ["byre", "cowhouse", "cowbarn", "cowshed"]}, {"answer": "cowbarn", "hint": "synonyms for cowbarn", "clues": ["byre", "cowhouse", "cow barn", "cowshed"]}, {"answer": "cowboy", "hint": "synonyms for cowboy", "clues": ["cattleman", "cowpuncher", "cowpoke", "rodeo rider", "cowherd", "cowhand", "puncher", "cowman", "cowboy"]}, {"answer": "cowhand", "hint": "synonyms for cowhand", "clues": ["cattleman", "cowpuncher", "cowpoke", "cowboy", "cowherd", "puncher", "cowman", "cowhand"]}, {"answer": "cowherd", "hint": "synonyms for cowherd", "clues": ["cattleman", "cowpuncher", "cowpoke", "cowboy", "cowhand", "puncher", "cowman", "cowherd"]}, {"answer": "cowhouse", "hint": "synonyms for cowhouse", "clues": ["byre", "cowbarn", "cowshed", "cowhouse"]}, {"answer": "cowman", "hint": "synonyms for cowman", "clues": ["cattleman", "cowpuncher", "cowpoke", "cowboy", "cowherd", "cowhand", "puncher", "cowman"]}, {"answer": "cowpoke", "hint": "synonyms for cowpoke", "clues": ["cattleman", "cowpuncher", "cowboy", "cowherd", "cowhand", "puncher", "cowman", "cowpoke"]}, {"answer": "cowpuncher", "hint": "synonyms for cowpuncher", "clues": ["cattleman", "cowpoke", "cowboy", "cowherd", "cowhand", "puncher", "cowman", "cowpuncher"]}, {"answer": "cowshed", "hint": "synonyms for cowshed", "clues": ["byre", "cowbarn", "cowhouse", "cowshed"]}, {"answer": "coyote_state", "hint": "synonyms for coyote state", "clues": ["Mount Rushmore State", "South Dakota", "SD", "Coyote State"]}, {"answer": "cpi", "hint": "synonyms for cpi", "clues": ["consumer price index", "California Personality Inventory", "CPI", "cost-of-living index"]}, {"answer": "cpr", "hint": "synonyms for cpr", "clues": ["cardiopulmonary resuscitation", "mouth-to-mouth resuscitation", "cardiac resuscitation", "kiss of life", "CPR"]}, {"answer": "cps", "hint": "synonyms for cps", "clues": ["Hz", "hertz", "cycles/second", "cycle", "cycle per second", "cps"]}, {"answer": "cpu", "hint": "synonyms for cpu", "clues": ["processor", "central processing unit", "central processor", "CPU", "mainframe", "C.P.U."]}, {"answer": "crab", "hint": "synonyms for crab", "clues": ["crabmeat", "Cancer", "Cancer the Crab", "Crab", "crabby person"]}, {"answer": "crabs", "hint": "synonyms for crabs", "clues": ["Crab", "crabmeat", "Cancer", "Cancer the Crab", "pediculosis pubis", "crabby person"]}, {"answer": "crack_of_doom", "hint": "synonyms for crack of doom", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "eschaton", "Last Day", "Judgement Day", "crack of doom"]}, {"answer": "cracker", "hint": "synonyms for cracker", "clues": ["redneck", "firecracker", "cracker bonbon", "banger", "snapper", "cracker"]}, {"answer": "cracklings", "hint": "synonyms for cracklings", "clues": ["crepitation", "crackle", "greaves", "crackling"]}, {"answer": "crackpot", "hint": "synonyms for crackpot", "clues": ["fruitcake", "nut", "screwball", "crank", "nut case", "crackpot"]}, {"answer": "cradle", "hint": "synonyms for cradle", "clues": ["provenience", "place of origin", "rocker", "birthplace", "cradle"]}, {"answer": "craft", "hint": "synonyms for craft", "clues": ["foxiness", "craftsmanship", "slyness", "craftiness", "wiliness", "workmanship", "guile", "trade", "cunning", "craft"]}, {"answer": "craftiness", "hint": "synonyms for craftiness", "clues": ["foxiness", "deceitfulness", "wiliness", "slyness", "guile", "craft", "cunning", "craftiness"]}, {"answer": "craftsman", "hint": "synonyms for craftsman", "clues": ["journeyman", "artisan", "crafter", "artificer", "craftsman"]}, {"answer": "crane", "hint": "synonyms for crane", "clues": ["Crane", "Harold Hart Crane", "Stephen Crane", "Hart Crane", "Grus"]}, {"answer": "cranny", "hint": "synonyms for cranny", "clues": ["crack", "fissure", "chap", "crevice", "cranny"]}, {"answer": "crap", "hint": "synonyms for crap", "clues": ["bull", "poop", "dogshit", "bullshit", "turd", "shite", "horseshit", "Irish bull", "dirt", "crap"]}, {"answer": "crapper", "hint": "synonyms for crapper", "clues": ["commode", "throne", "stool", "toilet", "pot", "can", "potty", "crapper"]}, {"answer": "craps", "hint": "synonyms for craps", "clues": ["crap", "bull", "poop", "dogshit", "bullshit", "turd", "snake eyes", "shite", "horseshit", "Irish bull", "dirt"]}, {"answer": "crapulence", "hint": "synonyms for crapulence", "clues": ["drink", "boozing", "drunkenness", "crapulence"]}, {"answer": "crash", "hint": "synonyms for crash", "clues": ["wreck", "clank", "clangoring", "smash", "clang", "clash", "clangour", "collapse", "crash"]}, {"answer": "crawl", "hint": "synonyms for crawl", "clues": ["creep", "Australian crawl", "front crawl", "crawling"]}, {"answer": "crawler", "hint": "synonyms for crawler", "clues": ["ass-kisser", "toady", "creeper", "lackey", "sycophant", "crawler"]}, {"answer": "crayfish", "hint": "synonyms for crayfish", "clues": ["crawdad", "rock lobster", "langouste", "ecrevisse", "crawfish", "spiny lobster"]}, {"answer": "craze", "hint": "synonyms for craze", "clues": ["frenzy", "delirium", "furore", "rage", "hysteria", "cult", "fury", "fad", "craze"]}, {"answer": "craziness", "hint": "synonyms for craziness", "clues": ["foolery", "madness", "flakiness", "folly", "tomfoolery", "daftness", "lunacy", "indulgence", "foolishness", "craziness"]}, {"answer": "crazy_house", "hint": "synonyms for crazy house", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "funny house", "crazy house"]}, {"answer": "crease", "hint": "synonyms for crease", "clues": ["plication", "kris", "seam", "line", "flexure", "crinkle", "furrow", "bend", "creese", "crimp", "fold", "crease"]}, {"answer": "creation", "hint": "synonyms for creation", "clues": ["Creation", "instauration", "macrocosm", "creative activity", "institution", "foundation", "conception", "introduction", "founding", "cosmos", "universe", "innovation", "world", "origination", "initiation", "existence"]}, {"answer": "creator", "hint": "synonyms for creator", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "Maker", "Almighty", "Divine", "God Almighty"]}, {"answer": "creature", "hint": "synonyms for creature", "clues": ["puppet", "animate being", "wight", "beast", "tool", "animal", "fauna", "brute", "creature"]}, {"answer": "credit", "hint": "synonyms for credit", "clues": ["mention", "credit rating", "citation", "course credit", "recognition", "cite", "reference", "acknowledgment", "credit entry", "deferred payment", "quotation", "credit"]}, {"answer": "credit_line", "hint": "synonyms for credit line", "clues": ["personal credit line", "line of credit", "by-line", "line", "bank line", "personal line of credit", "credit line"]}, {"answer": "credits", "hint": "synonyms for credits", "clues": ["mention", "credit rating", "credit", "citation", "course credit", "recognition", "cite", "reference", "acknowledgment", "credit entry", "deferred payment", "quotation"]}, {"answer": "creed", "hint": "synonyms for creed", "clues": ["church doctrine", "gospel", "credo", "religious doctrine", "creed"]}, {"answer": "creep", "hint": "synonyms for creep", "clues": ["crawl", "creeping", "weirdie", "weirdy", "spook", "weirdo"]}, {"answer": "creeps", "hint": "synonyms for creeps", "clues": ["crawl", "weirdie", "weirdy", "creep", "spook", "weirdo"]}, {"answer": "crenation", "hint": "synonyms for crenation", "clues": ["crenature", "crenel", "scallop", "crenation"]}, {"answer": "crenature", "hint": "synonyms for crenature", "clues": ["crenel", "crenation", "scallop", "crenature"]}, {"answer": "crenel", "hint": "synonyms for crenel", "clues": ["crenelle", "scallop", "crenature", "crenation"]}, {"answer": "crenelle", "hint": "synonyms for crenelle", "clues": ["crenel", "scallop", "crenature", "crenation"]}, {"answer": "crepuscle", "hint": "synonyms for crepuscle", "clues": ["gloaming", "twilight", "dusk", "crepuscule", "evenfall", "nightfall", "fall"]}, {"answer": "crepuscule", "hint": "synonyms for crepuscule", "clues": ["gloaming", "twilight", "dusk", "evenfall", "crepuscle", "nightfall", "fall"]}, {"answer": "crescent-cell_anaemia", "hint": "synonyms for crescent-cell anaemia", "clues": ["crescent-cell anemia", "sickle-cell disease", "sickle-cell anaemia", "drepanocytic anaemia"]}, {"answer": "crescent-cell_anemia", "hint": "synonyms for crescent-cell anemia", "clues": ["sickle-cell disease", "sickle-cell anaemia", "drepanocytic anaemia", "crescent-cell anaemia"]}, {"answer": "crest", "hint": "synonyms for crest", "clues": ["peak", "summit", "tip", "top", "crown", "crest"]}, {"answer": "cretin", "hint": "synonyms for cretin", "clues": ["moron", "changeling", "imbecile", "half-wit", "idiot", "retard", "cretin"]}, {"answer": "crevice", "hint": "synonyms for crevice", "clues": ["cleft", "chap", "crack", "cranny", "scissure", "fissure", "crevice"]}, {"answer": "crew", "hint": "synonyms for crew", "clues": ["work party", "bunch", "gang", "crowd", "crew"]}, {"answer": "crib", "hint": "synonyms for crib", "clues": ["pony", "cribbage", "trot", "cot", "crib"]}, {"answer": "crib_death", "hint": "synonyms for crib death", "clues": ["sudden infant death syndrome", "SIDS", "cot death", "infant death", "crib death"]}, {"answer": "crick", "hint": "synonyms for crick", "clues": ["kink", "wrick", "Francis Crick", "Francis Henry Compton Crick", "Crick"]}, {"answer": "crime", "hint": "synonyms for crime", "clues": ["offence", "criminal offence", "law-breaking", "crime"]}, {"answer": "criminal_offence", "hint": "synonyms for criminal offence", "clues": ["offence", "crime", "law-breaking", "criminal offense"]}, {"answer": "criminal_offense", "hint": "synonyms for criminal offense", "clues": ["offence", "crime", "criminal offence", "law-breaking"]}, {"answer": "crimp", "hint": "synonyms for crimp", "clues": ["bend", "plication", "crimper", "crease", "fold", "flexure", "crimp"]}, {"answer": "crimper", "hint": "synonyms for crimper", "clues": ["crimp", "curler", "roller", "hair curler", "crimper"]}, {"answer": "cringle", "hint": "synonyms for cringle", "clues": ["loop", "grommet", "eyelet", "cringle"]}, {"answer": "crinkle", "hint": "synonyms for crinkle", "clues": ["furrow", "crease", "wrinkle", "seam", "line"]}, {"answer": "cristal", "hint": "synonyms for cristal", "clues": ["go", "Adam", "ecstasy", "disco biscuit", "hug drug", "X", "XTC", "cristal"]}, {"answer": "cristobal_colon", "hint": "synonyms for cristobal colon", "clues": ["Christopher Columbus", "Cristobal Colon", "Columbus", "Cristoforo Colombo"]}, {"answer": "cristoforo_colombo", "hint": "synonyms for cristoforo colombo", "clues": ["Christopher Columbus", "Cristobal Colon", "Columbus", "Cristoforo Colombo"]}, {"answer": "critique", "hint": "synonyms for critique", "clues": ["criticism", "critical review", "review article", "review", "critique"]}, {"answer": "cro", "hint": "synonyms for cro", "clues": ["CRO", "oscilloscope", "cathode-ray oscilloscope", "scope"]}, {"answer": "crock", "hint": "synonyms for crock", "clues": ["smut", "earthenware jar", "lampblack", "carbon black", "soot", "crock"]}, {"answer": "crone", "hint": "synonyms for crone", "clues": ["witch", "hag", "beldame", "crone"]}, {"answer": "crony", "hint": "synonyms for crony", "clues": ["sidekick", "buddy", "chum", "brother", "pal", "crony"]}, {"answer": "crook", "hint": "synonyms for crook", "clues": ["outlaw", "bend", "shepherd's crook", "turn", "twist", "malefactor", "felon", "criminal", "crook"]}, {"answer": "crookedness", "hint": "synonyms for crookedness", "clues": ["tortuousness", "tortuosity", "contortion", "torsion", "deviousness", "crookedness"]}, {"answer": "crossbreeding", "hint": "synonyms for crossbreeding", "clues": ["hybridization", "miscegenation", "hybridizing", "interbreeding", "cross", "crossbreeding"]}, {"answer": "crosscurrent", "hint": "synonyms for crosscurrent", "clues": ["countercurrent", "tide rip", "riptide", "rip", "crosscurrent"]}, {"answer": "crossing", "hint": "synonyms for crossing", "clues": ["hybridization", "hybridizing", "crosswalk", "crossway", "interbreeding", "cross", "intersection", "crossroad", "crossbreeding", "ford", "carrefour", "crossover"]}, {"answer": "crossness", "hint": "synonyms for crossness", "clues": ["petulance", "fussiness", "crabbedness", "peevishness", "choler", "fretfulness", "irritability", "crossness"]}, {"answer": "crossover", "hint": "synonyms for crossover", "clues": ["crosswalk", "crossing over", "crossing", "crossover voter", "crossover"]}, {"answer": "crosspatch", "hint": "synonyms for crosspatch", "clues": ["churl", "crank", "grouch", "grump", "crosspatch"]}, {"answer": "crossroad", "hint": "synonyms for crossroad", "clues": ["carrefour", "crossway", "crossing", "intersection", "crossroad"]}, {"answer": "crossroads", "hint": "synonyms for crossroads", "clues": ["hamlet", "crossway", "critical point", "crossing", "juncture", "intersection", "crossroad", "carrefour"]}, {"answer": "crossway", "hint": "synonyms for crossway", "clues": ["carrefour", "intersection", "crossroad", "crossing", "crossway"]}, {"answer": "crotch", "hint": "synonyms for crotch", "clues": ["genitals", "fork", "private parts", "genital organ", "privates", "genitalia", "crotch"]}, {"answer": "crotchet", "hint": "synonyms for crotchet", "clues": ["oddity", "queerness", "quirk", "hook", "quarter note", "quirkiness", "crotchet"]}, {"answer": "crow", "hint": "synonyms for crow", "clues": ["vaporing", "line-shooting", "crowing", "Corvus", "gasconade", "brag", "bragging"]}, {"answer": "crown", "hint": "synonyms for crown", "clues": ["crest", "crownwork", "diadem", "pennant", "summit", "tip", "top", "jacket", "Crown", "pate", "poll", "peak", "cap", "jacket crown"]}, {"answer": "crownwork", "hint": "synonyms for crownwork", "clues": ["jacket", "crown", "jacket crown", "cap", "crownwork"]}, {"answer": "crude_oil", "hint": "synonyms for crude oil", "clues": ["crude", "rock oil", "fossil oil", "oil", "petroleum", "crude oil"]}, {"answer": "crudeness", "hint": "synonyms for crudeness", "clues": ["crudity", "rudeness", "primitivism", "primitiveness", "roughness", "gaucheness"]}, {"answer": "crudity", "hint": "synonyms for crudity", "clues": ["gaucheness", "rudeness", "primitivism", "primitiveness", "crudity"]}, {"answer": "cruelty", "hint": "synonyms for cruelty", "clues": ["inhuman treatment", "harshness", "cruelness", "ruthlessness", "pitilessness", "mercilessness", "cruelty"]}, {"answer": "cruiser", "hint": "synonyms for cruiser", "clues": ["prowl car", "pleasure boat", "pleasure craft", "police car", "patrol car", "cabin cruiser", "squad car", "police cruiser", "cruiser"]}, {"answer": "crumb", "hint": "synonyms for crumb", "clues": ["bum", "so-and-so", "stinkpot", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "puke", "rotter", "skunk", "git", "crumb"]}, {"answer": "crusade", "hint": "synonyms for crusade", "clues": ["effort", "drive", "movement", "campaign", "cause", "Crusade"]}, {"answer": "crusader", "hint": "synonyms for crusader", "clues": ["social reformer", "Crusader", "reformer", "reformist", "meliorist"]}, {"answer": "crush", "hint": "synonyms for crush", "clues": ["puppy love", "press", "jam", "crushed leather", "infatuation", "compaction", "crunch", "calf love", "crush"]}, {"answer": "crust", "hint": "synonyms for crust", "clues": ["insolence", "gall", "Earth's crust", "encrustation", "impertinence", "cheekiness", "impudence", "freshness", "crust"]}, {"answer": "crux", "hint": "synonyms for crux", "clues": ["Crux", "Southern Cross", "crux of the matter", "Crux Australis"]}, {"answer": "cry", "hint": "synonyms for cry", "clues": ["call", "outcry", "rallying cry", "shout", "watchword", "vociferation", "yell", "war cry", "battle cry", "cry"]}, {"answer": "crybaby", "hint": "synonyms for crybaby", "clues": ["bellyacher", "chicken", "whiner", "complainer", "grumbler", "moaner", "sniveller", "wimp", "squawker", "crybaby"]}, {"answer": "cryptograph", "hint": "synonyms for cryptograph", "clues": ["cypher", "secret writing", "cipher", "cryptogram", "secret code"]}, {"answer": "cryptography", "hint": "synonyms for cryptography", "clues": ["cryptanalysis", "cryptology", "steganography", "coding", "secret writing", "cryptography"]}, {"answer": "crystal", "hint": "synonyms for crystal", "clues": ["lechatelierite", "quartz", "vitreous silica", "watch crystal", "watch glass", "quartz glass", "crystallization", "crystal"]}, {"answer": "cs", "hint": "synonyms for cs", "clues": ["cesium", "degree centigrade", "C", "coke", "100", "vitamin C", "deoxycytidine monophosphate", "hundred", "nose candy", "century", "light speed", "cytosine", "degree Celsius", "blow", "atomic number 55", "carbon", "ascorbic acid", "speed of light", "ampere-second", "snow", "coulomb", "one C"]}, {"answer": "ct", "hint": "synonyms for ct", "clues": ["computed tomography", "CAT", "Constitution State", "Connecticut", "CT", "Nutmeg State", "computerized axial tomography"]}, {"answer": "cub", "hint": "synonyms for cub", "clues": ["laddie", "sonny", "greenhorn", "sonny boy", "rookie", "lad", "cub"]}, {"answer": "cubage_unit", "hint": "synonyms for cubage unit", "clues": ["cubature unit", "capacity unit", "cubic content unit", "capacity measure", "displacement unit", "volume unit", "cubic measure", "cubage unit"]}, {"answer": "cuban_itch", "hint": "synonyms for cuban itch", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox"]}, {"answer": "cuban_sandwich", "hint": "synonyms for cuban sandwich", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich"]}, {"answer": "cubature_unit", "hint": "synonyms for cubature unit", "clues": ["capacity unit", "cubic content unit", "capacity measure", "cubage unit", "displacement unit", "volume unit", "cubic measure", "cubature unit"]}, {"answer": "cubbyhole", "hint": "synonyms for cubbyhole", "clues": ["snug", "cubby", "pigeonhole", "snuggery", "cubbyhole"]}, {"answer": "cube", "hint": "synonyms for cube", "clues": ["square block", "regular hexahedron", "third power", "block", "cube"]}, {"answer": "cubic_centimeter", "hint": "synonyms for cubic centimeter", "clues": ["ml", "cc", "mil", "millilitre", "cubic centimetre"]}, {"answer": "cubic_centimetre", "hint": "synonyms for cubic centimetre", "clues": ["ml", "cc", "mil", "cubic centimeter", "millilitre"]}, {"answer": "cubic_content_unit", "hint": "synonyms for cubic content unit", "clues": ["cubature unit", "capacity unit", "cubage unit", "capacity measure", "displacement unit", "volume unit", "cubic measure", "cubic content unit"]}, {"answer": "cubic_decimeter", "hint": "synonyms for cubic decimeter", "clues": ["litre", "cubic decimetre", "liter", "l"]}, {"answer": "cubic_decimetre", "hint": "synonyms for cubic decimetre", "clues": ["litre", "cubic decimeter", "liter", "l"]}, {"answer": "cubic_measure", "hint": "synonyms for cubic measure", "clues": ["cubature unit", "capacity unit", "cubic content unit", "cubage unit", "displacement unit", "volume unit", "capacity measure", "cubic measure"]}, {"answer": "cubicle", "hint": "synonyms for cubicle", "clues": ["stall", "carrell", "kiosk", "booth", "cell", "cubicle"]}, {"answer": "cubital_joint", "hint": "synonyms for cubital joint", "clues": ["elbow joint", "human elbow", "cubitus", "articulatio cubiti", "elbow", "cubital joint"]}, {"answer": "cubitus", "hint": "synonyms for cubitus", "clues": ["elbow joint", "human elbow", "articulatio cubiti", "elbow", "cubital joint", "cubitus"]}, {"answer": "cuckoo", "hint": "synonyms for cuckoo", "clues": ["fathead", "jackass", "goofball", "goose", "goof", "bozo", "zany", "twat", "cuckoo"]}, {"answer": "cuckoo's_nest", "hint": "synonyms for cuckoo's nest", "clues": ["funny farm", "loony bin", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house", "cuckoo's nest"]}, {"answer": "cud", "hint": "synonyms for cud", "clues": ["plug", "chaw", "wad", "chew", "quid", "rechewed food", "cud"]}, {"answer": "cuddling", "hint": "synonyms for cuddling", "clues": ["petting", "smooching", "necking", "hugging", "caressing", "kissing", "fondling", "snuggling", "cuddling"]}, {"answer": "cue", "hint": "synonyms for cue", "clues": ["pool cue", "clew", "pool stick", "clue", "cue stick", "discriminative stimulus"]}, {"answer": "cuff", "hint": "synonyms for cuff", "clues": ["manacle", "handcuff", "turnup", "handlock", "cuff"]}, {"answer": "cul_de_sac", "hint": "synonyms for cul de sac", "clues": ["cul", "dead end", "impasse", "dead-end street", "blind alley", "cul de sac"]}, {"answer": "culmination", "hint": "synonyms for culmination", "clues": ["apogee", "windup", "closing", "climax", "mop up", "completion", "culmination"]}, {"answer": "cult", "hint": "synonyms for cult", "clues": ["cultus", "rage", "craze", "furore", "fad", "religious cult", "cult"]}, {"answer": "cultivated_land", "hint": "synonyms for cultivated land", "clues": ["tillage", "tilth", "tilled land", "plowland", "ploughland", "farmland", "cultivated land"]}, {"answer": "cultivation", "hint": "synonyms for cultivation", "clues": ["polish", "refinement", "finish", "culture", "cultivation"]}, {"answer": "cultivator", "hint": "synonyms for cultivator", "clues": ["grower", "raiser", "agriculturist", "tiller", "cultivator"]}, {"answer": "culture", "hint": "synonyms for culture", "clues": ["polish", "refinement", "finish", "cultivation", "civilization", "acculturation", "culture"]}, {"answer": "cum", "hint": "synonyms for cum", "clues": ["ejaculate", "semen", "seed", "come", "seminal fluid", "cum"]}, {"answer": "cumberland", "hint": "synonyms for cumberland", "clues": ["Cumberland", "Cumberland River", "William Augustus", "Duke of Cumberland", "Butcher Cumberland"]}, {"answer": "cumulation", "hint": "synonyms for cumulation", "clues": ["agglomerate", "mound", "cumulus", "heap", "pile", "cumulation"]}, {"answer": "cumulus", "hint": "synonyms for cumulus", "clues": ["agglomerate", "mound", "cumulation", "pile", "cumulus cloud", "heap", "cumulus"]}, {"answer": "cuneiform_bone", "hint": "synonyms for cuneiform bone", "clues": ["triquetral", "triquetral bone", "pyramidal bone", "os triquetrum", "cuneiform bone"]}, {"answer": "cunt", "hint": "synonyms for cunt", "clues": ["bitch", "pussy", "snatch", "slit", "twat", "cunt"]}, {"answer": "cupid's_disease", "hint": "synonyms for cupid's disease", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "cupid's_itch", "hint": "synonyms for cupid's itch", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "cuquenan", "hint": "synonyms for cuquenan", "clues": ["Kukenaam Falls", "Cuquenan", "Kukenaam", "Cuquenan Falls"]}, {"answer": "cuquenan_falls", "hint": "synonyms for cuquenan falls", "clues": ["Kukenaam Falls", "Cuquenan", "Kukenaam", "Cuquenan Falls"]}, {"answer": "curate", "hint": "synonyms for curate", "clues": ["minister of religion", "parson", "rector", "pastor", "minister", "curate"]}, {"answer": "curb", "hint": "synonyms for curb", "clues": ["kerb", "American Stock Exchange", "Curb", "check", "bridle", "AMEX", "curb bit"]}, {"answer": "curie", "hint": "synonyms for curie", "clues": ["Pierre Curie", "Ci", "Marya Sklodowska", "Madame Curie", "Curie", "Marie Curie"]}, {"answer": "curing", "hint": "synonyms for curing", "clues": ["set", "solidifying", "hardening", "solidification", "curing"]}, {"answer": "curio", "hint": "synonyms for curio", "clues": ["rarity", "oddity", "oddment", "curiosity", "peculiarity", "curio"]}, {"answer": "curiosity", "hint": "synonyms for curiosity", "clues": ["rarity", "oddity", "curio", "oddment", "wonder", "peculiarity", "curiosity"]}, {"answer": "curl", "hint": "synonyms for curl", "clues": ["whorl", "ringlet", "coil", "Robert Floyd Curl Jr.", "scroll", "roll", "curlicue", "lock", "Robert Curl", "gyre", "Curl"]}, {"answer": "curlicue", "hint": "synonyms for curlicue", "clues": ["whorl", "ringlet", "squiggle", "coil", "curl", "scroll", "gyre", "roll", "curlicue"]}, {"answer": "currer_bell", "hint": "synonyms for currer bell", "clues": ["Emily Jane Bronte", "Currer Bell", "Bronte", "Emily Bronte"]}, {"answer": "curriculum", "hint": "synonyms for curriculum", "clues": ["syllabus", "program", "course of study", "curriculum"]}, {"answer": "curse", "hint": "synonyms for curse", "clues": ["nemesis", "condemnation", "hex", "torment", "jinx", "swearword", "scourge", "curse word", "oath", "execration", "whammy", "expletive", "bane", "swearing", "cuss", "curse"]}, {"answer": "curse_word", "hint": "synonyms for curse word", "clues": ["oath", "curse", "expletive", "swearing", "cuss", "swearword", "curse word"]}, {"answer": "curtain", "hint": "synonyms for curtain", "clues": ["pall", "drapery", "mantle", "drape", "curtain"]}, {"answer": "curtiss", "hint": "synonyms for curtiss", "clues": ["Curtiss", "Glenn Curtiss", "William Curtis", "Glenn Hammond Curtiss"]}, {"answer": "curtness", "hint": "synonyms for curtness", "clues": ["shortness", "brusqueness", "abruptness", "gruffness", "curtness"]}, {"answer": "curve", "hint": "synonyms for curve", "clues": ["bend", "breaking ball", "bender", "curvature", "curve ball", "curved shape", "curve"]}, {"answer": "cuspid", "hint": "synonyms for cuspid", "clues": ["canine", "eye tooth", "canine tooth", "dogtooth", "cuspid"]}, {"answer": "cuss", "hint": "synonyms for cuss", "clues": ["blighter", "fella", "gadfly", "swearing", "chap", "swearword", "expletive", "curse word", "pest", "gent", "pesterer", "oath", "curse", "feller", "bloke", "fellow", "lad", "cuss"]}, {"answer": "custody", "hint": "synonyms for custody", "clues": ["hands", "hold", "detainment", "detention", "custody"]}, {"answer": "customer's_broker", "hint": "synonyms for customer's broker", "clues": ["customer's man", "account representative", "account executive", "registered representative", "customer's broker"]}, {"answer": "customer's_man", "hint": "synonyms for customer's man", "clues": ["account representative", "account executive", "registered representative", "customer's broker", "customer's man"]}, {"answer": "customs", "hint": "synonyms for customs", "clues": ["tradition", "usance", "impost", "customs duty", "custom", "usage"]}, {"answer": "customs_bureau", "hint": "synonyms for customs bureau", "clues": ["Customs Service", "Customs Bureau", "Bureau of Customs", "USCB"]}, {"answer": "customs_service", "hint": "synonyms for customs service", "clues": ["Customs Service", "Customs Bureau", "Bureau of Customs", "USCB"]}, {"answer": "cut-up", "hint": "synonyms for cut-up", "clues": ["practical joker", "tricker", "hoaxer", "prankster", "cut-up"]}, {"answer": "cutaneous_leishmaniasis", "hint": "synonyms for cutaneous leishmaniasis", "clues": ["Old World leishmaniasis", "tropical sore", "Aleppo boil", "oriental sore", "Delhi boil", "cutaneous leishmaniasis"]}, {"answer": "cutaneous_senses", "hint": "synonyms for cutaneous senses", "clues": ["skin senses", "sense of touch", "touch", "touch modality", "cutaneous senses"]}, {"answer": "cutter", "hint": "synonyms for cutter", "clues": ["pinnace", "tender", "carver", "stonecutter", "cutlery", "cutting tool", "ship's boat", "cutter"]}, {"answer": "cuvier", "hint": "synonyms for cuvier", "clues": ["Cuvier", "Georges Cuvier", "Georges Leopold Chretien Frederic Dagobert Cuvier", "Baron Georges Cuvier"]}, {"answer": "cva", "hint": "synonyms for cva", "clues": ["CVA", "apoplexy", "cerebrovascular accident", "stroke"]}, {"answer": "cwt", "hint": "synonyms for cwt", "clues": ["quintal", "centner", "cental", "long hundredweight", "hundredweight", "short hundredweight", "cwt"]}, {"answer": "cybele", "hint": "synonyms for cybele", "clues": ["Magna Mater", "Dindymene", "Cybele", "Mater Turrita", "Great Mother"]}, {"answer": "cyclades", "hint": "synonyms for cyclades", "clues": ["Cyclades", "Cycladic civilisation", "Cycladic culture", "Kikladhes"]}, {"answer": "cycle", "hint": "synonyms for cycle", "clues": ["Hz", "hertz", "cps", "oscillation", "cycle per second", "bicycle", "bike", "round", "rhythm", "cycles/second", "wheel", "cycle"]}, {"answer": "cycle_per_second", "hint": "synonyms for cycle per second", "clues": ["Hz", "hertz", "cps", "cycles/second", "cycle", "cycle per second"]}, {"answer": "cycles/second", "hint": "synonyms for cycles/second", "clues": ["Hz", "hertz", "cps", "cycle", "cycle per second", "cycles/second"]}, {"answer": "cymry", "hint": "synonyms for cymry", "clues": ["Cambrian", "Welshman", "Welsh", "Cymry"]}, {"answer": "cypher", "hint": "synonyms for cypher", "clues": ["nought", "cipher", "zero", "cryptograph", "secret code", "nix", "nobody", "zippo", "zilch", "null", "goose egg", "aught", "nada", "nil", "0", "nonentity", "nothing", "zip", "cypher"]}, {"answer": "cystic_fibrosis", "hint": "synonyms for cystic fibrosis", "clues": ["mucoviscidosis", "pancreatic fibrosis", "CF", "fibrocystic disease of the pancreas", "cystic fibrosis"]}, {"answer": "czarina", "hint": "synonyms for czarina", "clues": ["tsarina", "tsaritsa", "czaritza", "czarina"]}, {"answer": "czech_capital", "hint": "synonyms for czech capital", "clues": ["Prague", "Praha", "Czech capital", "Prag"]}, {"answer": "d.p.r.k.", "hint": "synonyms for d.p.r.k.", "clues": ["Democratic People's Republic of Korea", "D.P.R.K.", "DPRK", "North Korea"]}, {"answer": "dab", "hint": "synonyms for dab", "clues": ["splatter", "pat", "tap", "splash", "dab"]}, {"answer": "dad", "hint": "synonyms for dad", "clues": ["pop", "pa", "papa", "daddy", "dada"]}, {"answer": "dada", "hint": "synonyms for dada", "clues": ["dad", "pop", "dadaism", "pa", "papa", "daddy"]}, {"answer": "daddy", "hint": "synonyms for daddy", "clues": ["dad", "pop", "pa", "papa", "daddy"]}, {"answer": "dae-han-min-gook", "hint": "synonyms for dae-han-min-gook", "clues": ["Korea", "Korean Peninsula", "Dae-Han-Min-Gook", "Han-Gook"]}, {"answer": "daemon", "hint": "synonyms for daemon", "clues": ["fiend", "devil", "daimon", "demigod", "demon"]}, {"answer": "dafla", "hint": "synonyms for dafla", "clues": ["Mirish", "Miri", "Dafla", "Abor"]}, {"answer": "dag", "hint": "synonyms for dag", "clues": ["dekagram", "dkg", "jag", "dag"]}, {"answer": "dago", "hint": "synonyms for dago", "clues": ["Guinea", "ginzo", "greaseball", "wop", "dago"]}, {"answer": "dahna", "hint": "synonyms for dahna", "clues": ["Dahna", "Rub al-Khali", "Great Sandy Desert", "Ar Rimsal"]}, {"answer": "daimon", "hint": "synonyms for daimon", "clues": ["fiend", "daemon", "devil", "daimon"]}, {"answer": "dais", "hint": "synonyms for dais", "clues": ["pulpit", "podium", "ambo", "soapbox", "stump", "rostrum", "dais"]}, {"answer": "dal", "hint": "synonyms for dal", "clues": ["dekalitre", "dkl", "decaliter", "dal"]}, {"answer": "dalliance", "hint": "synonyms for dalliance", "clues": ["coquetry", "trifling", "toying", "flirtation", "dawdling", "flirt", "dalliance"]}, {"answer": "dallier", "hint": "synonyms for dallier", "clues": ["dillydallier", "mope", "lounger", "dallier"]}, {"answer": "dalton's_law", "hint": "synonyms for dalton's law", "clues": ["law of multiple proportions", "Dalton's law", "Dalton's law of partial pressures", "law of partial pressures"]}, {"answer": "dam", "hint": "synonyms for dam", "clues": ["dekametre", "decameter", "dkm", "dyke", "dike", "dam"]}, {"answer": "damage", "hint": "synonyms for damage", "clues": ["hurt", "price", "terms", "harm", "scathe", "equipment casualty", "impairment", "legal injury", "wrong", "damage"]}, {"answer": "damages", "hint": "synonyms for damages", "clues": ["hurt", "redress", "wrong", "indemnity", "harm", "scathe", "terms", "equipment casualty", "damage", "price", "amends", "indemnification", "impairment", "legal injury", "restitution"]}, {"answer": "dame", "hint": "synonyms for dame", "clues": ["bird", "chick", "madam", "wench", "gentlewoman", "lady", "skirt", "doll", "ma'am", "dame"]}, {"answer": "dame_muriel_spark", "hint": "synonyms for dame muriel spark", "clues": ["Muriel Sarah Spark", "Spark", "Muriel Spark", "Dame Muriel Spark"]}, {"answer": "dame_rebecca_west", "hint": "synonyms for dame rebecca west", "clues": ["Rebecca West", "Cicily Isabel Fairfield", "Dame Rebecca West", "West"]}, {"answer": "dandle_board", "hint": "synonyms for dandle board", "clues": ["teeterboard", "seesaw", "teeter-totter", "teeter", "tilting board", "dandle board"]}, {"answer": "dapple", "hint": "synonyms for dapple", "clues": ["patch", "maculation", "speckle", "fleck", "spot", "dapple"]}, {"answer": "dapsang", "hint": "synonyms for dapsang", "clues": ["Godwin Austen", "Mount Godwin Austen", "K2", "Dapsang"]}, {"answer": "dardanelles", "hint": "synonyms for dardanelles", "clues": ["Hellespont", "Dardanelles campaign", "Canakkale Bogazi", "Dardanelles"]}, {"answer": "darkness", "hint": "synonyms for darkness", "clues": ["shadow", "wickedness", "swarthiness", "dark", "duskiness", "iniquity", "darkness"]}, {"answer": "darn", "hint": "synonyms for darn", "clues": ["tinker's damn", "shucks", "hoot", "damn", "red cent", "mend", "patch", "shit", "darn"]}, {"answer": "dash", "hint": "synonyms for dash", "clues": ["flair", "hyphen", "style", "dah", "elan", "panache", "bolt", "sprint"]}, {"answer": "dasheen", "hint": "synonyms for dasheen", "clues": ["edda", "cocoyam", "taro", "taro root", "dasheen"]}, {"answer": "data_processor", "hint": "synonyms for data processor", "clues": ["information processing system", "computer", "computing machine", "electronic computer", "computing device", "data processor"]}, {"answer": "date", "hint": "synonyms for date", "clues": ["escort", "appointment", "day of the month", "particular date", "engagement", "date"]}, {"answer": "datril", "hint": "synonyms for datril", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "daub", "hint": "synonyms for daub", "clues": ["smear", "slur", "blot", "spot", "smirch", "smudge", "daub"]}, {"answer": "david", "hint": "synonyms for david", "clues": ["Saint David", "David", "St. David", "Jacques Louis David"]}, {"answer": "david_low", "hint": "synonyms for david low", "clues": ["Sir David Alexander Cecil Low", "David Low", "Low", "Sir David Low"]}, {"answer": "davis", "hint": "synonyms for davis", "clues": ["Davys", "Bette Davis", "Miles Davis", "Stuart Davis", "Davis", "Jefferson Davis", "John Davis", "Dwight Filley Davis", "Miles Dewey Davis Jr.", "Dwight Davis"]}, {"answer": "davy_jones", "hint": "synonyms for davy jones", "clues": ["ocean bottom", "sea floor", "seabed", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom"]}, {"answer": "davy_jones's_locker", "hint": "synonyms for davy jones's locker", "clues": ["ocean bottom", "sea floor", "seabed", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom"]}, {"answer": "davys", "hint": "synonyms for davys", "clues": ["Davis", "Davys", "John Davis", "Sir Humphrey Davy"]}, {"answer": "dawdler", "hint": "synonyms for dawdler", "clues": ["lagger", "poke", "laggard", "trailer", "drone", "dawdler"]}, {"answer": "dawn", "hint": "synonyms for dawn", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow"]}, {"answer": "dawning", "hint": "synonyms for dawning", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "aurora", "sunup", "first light", "morning", "dawn", "cockcrow"]}, {"answer": "dawson's_encephalitis", "hint": "synonyms for dawson's encephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "day", "hint": "synonyms for day", "clues": ["Clarence Shepard Day Jr.", "24-hour interval", "twenty-four hour period", "daylight", "daytime", "Day", "mean solar day", "Clarence Day", "twenty-four hours", "solar day", "sidereal day"]}, {"answer": "day_book", "hint": "synonyms for day book", "clues": ["rap sheet", "charge sheet", "blotter", "police blotter", "day book"]}, {"answer": "day_of_judgement", "hint": "synonyms for day of judgement", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "day_of_judgment", "hint": "synonyms for day of judgment", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "day_of_reckoning", "hint": "synonyms for day of reckoning", "clues": ["doom", "Last Judgment", "Day of Judgment", "Doomsday", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day", "day of reckoning"]}, {"answer": "daybreak", "hint": "synonyms for daybreak", "clues": ["sunrise", "break of day", "dayspring", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow", "daybreak"]}, {"answer": "daydream", "hint": "synonyms for daydream", "clues": ["oneirism", "revery", "castle in Spain", "castle in the air", "air castle", "daydreaming", "reverie"]}, {"answer": "daydreaming", "hint": "synonyms for daydreaming", "clues": ["oneirism", "revery", "castle in Spain", "daydream", "castle in the air", "air castle", "reverie"]}, {"answer": "days", "hint": "synonyms for days", "clues": ["Clarence Shepard Day Jr.", "day", "24-hour interval", "twenty-four hour period", "daylight", "daytime", "mean solar day", "Clarence Day", "twenty-four hours", "sidereal day", "solar day", "years"]}, {"answer": "dayspring", "hint": "synonyms for dayspring", "clues": ["sunrise", "break of day", "daybreak", "aurora", "sunup", "dawning", "first light", "morning", "cockcrow", "dayspring"]}, {"answer": "daze", "hint": "synonyms for daze", "clues": ["haze", "fog", "stupor", "shock", "daze"]}, {"answer": "db", "hint": "synonyms for db", "clues": ["atomic number 105", "decibel", "Db", "element 105", "hahnium", "dubnium"]}, {"answer": "dba", "hint": "synonyms for dba", "clues": ["assumed name", "DBA", "fictitious name", "Doing Business As"]}, {"answer": "dc", "hint": "synonyms for dc", "clues": ["DC", "D.C.", "District of Columbia", "direct electric current", "direct current"]}, {"answer": "de", "hint": "synonyms for de", "clues": ["Diamond State", "First State", "DE", "Delaware"]}, {"answer": "de_gaulle", "hint": "synonyms for de gaulle", "clues": ["Charles de Gaulle", "de Gaulle", "General de Gaulle", "General Charles de Gaulle", "Charles Andre Joseph Marie de Gaulle"]}, {"answer": "de_sade", "hint": "synonyms for de sade", "clues": ["de Sade", "Sade", "Marquis de Sade", "Comte Donatien Alphonse Francois de Sade"]}, {"answer": "de_spinoza", "hint": "synonyms for de spinoza", "clues": ["Baruch de Spinoza", "de Spinoza", "Spinoza", "Benedict de Spinoza"]}, {"answer": "dead_end", "hint": "synonyms for dead end", "clues": ["cul", "deadlock", "standstill", "impasse", "stalemate", "cul de sac", "dead end"]}, {"answer": "dead_person", "hint": "synonyms for dead person", "clues": ["dead soul", "decedent", "deceased", "departed", "deceased person", "dead person"]}, {"answer": "dead_reckoning", "hint": "synonyms for dead reckoning", "clues": ["shot", "guessing", "guesswork", "dead reckoning"]}, {"answer": "dead_soul", "hint": "synonyms for dead soul", "clues": ["dead person", "decedent", "deceased", "departed", "deceased person", "dead soul"]}, {"answer": "deadlock", "hint": "synonyms for deadlock", "clues": ["standstill", "impasse", "stalemate", "dead end", "deadlock"]}, {"answer": "deal", "hint": "synonyms for deal", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "mountain", "pot", "hand", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "bargain", "business deal", "lot", "softwood", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "trade", "flock", "deal"]}, {"answer": "dealer", "hint": "synonyms for dealer", "clues": ["bargainer", "trader", "principal", "monger", "dealer"]}, {"answer": "dealings", "hint": "synonyms for dealings", "clues": ["transaction", "dealing", "relations", "traffic"]}, {"answer": "dean", "hint": "synonyms for dean", "clues": ["James Dean", "doyen", "James Byron Dean", "Dean"]}, {"answer": "dearest", "hint": "synonyms for dearest", "clues": ["honey", "dear", "love", "beloved", "dearest"]}, {"answer": "dearie", "hint": "synonyms for dearie", "clues": ["ducky", "deary", "favourite", "pet", "darling", "dearie"]}, {"answer": "deary", "hint": "synonyms for deary", "clues": ["ducky", "favourite", "pet", "dearie", "darling", "deary"]}, {"answer": "death", "hint": "synonyms for death", "clues": ["decease", "dying", "destruction", "Death", "expiry", "end", "demise", "last"]}, {"answer": "death_rate", "hint": "synonyms for death rate", "clues": ["deathrate", "mortality rate", "mortality", "fatality rate"]}, {"answer": "deathrate", "hint": "synonyms for deathrate", "clues": ["death rate", "mortality", "mortality rate", "fatality rate"]}, {"answer": "debacle", "hint": "synonyms for debacle", "clues": ["walloping", "slaughter", "whipping", "drubbing", "fiasco", "thrashing", "trouncing", "debacle"]}, {"answer": "debate", "hint": "synonyms for debate", "clues": ["argument", "disputation", "argumentation", "public debate", "debate"]}, {"answer": "debauch", "hint": "synonyms for debauch", "clues": ["orgy", "drunken revelry", "riot", "saturnalia", "bacchanal", "debauchery", "debauch"]}, {"answer": "debauchery", "hint": "synonyms for debauchery", "clues": ["orgy", "drunken revelry", "debauch", "riot", "saturnalia", "bacchanal", "debauchery"]}, {"answer": "debility", "hint": "synonyms for debility", "clues": ["frailness", "infirmity", "frailty", "valetudinarianism", "feebleness", "debility"]}, {"answer": "debris", "hint": "synonyms for debris", "clues": ["dust", "junk", "detritus", "rubble", "debris"]}, {"answer": "debs", "hint": "synonyms for debs", "clues": ["debutante", "Eugene V. Debs", "Debs", "Eugene Victor Debs"]}, {"answer": "debut", "hint": "synonyms for debut", "clues": ["entry", "unveiling", "introduction", "launching", "first appearance", "debut"]}, {"answer": "dec", "hint": "synonyms for dec", "clues": ["December", "celestial latitude", "Dec", "declination"]}, {"answer": "dec_25", "hint": "synonyms for dec 25", "clues": ["Christmas Day", "Christmas", "Dec 25", "Xmas"]}, {"answer": "decade", "hint": "synonyms for decade", "clues": ["decennary", "10", "tenner", "X", "ten", "decennium", "decade"]}, {"answer": "decadron", "hint": "synonyms for decadron", "clues": ["dexamethasone", "Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol"]}, {"answer": "decaliter", "hint": "synonyms for decaliter", "clues": ["dekalitre", "dkl", "dal", "decaliter"]}, {"answer": "decalitre", "hint": "synonyms for decalitre", "clues": ["dekalitre", "dkl", "decaliter", "dal"]}, {"answer": "decameter", "hint": "synonyms for decameter", "clues": ["dam", "dekametre", "dkm", "decameter"]}, {"answer": "decametre", "hint": "synonyms for decametre", "clues": ["dam", "dekametre", "decameter", "dkm"]}, {"answer": "decay", "hint": "synonyms for decay", "clues": ["decomposition", "disintegration", "radioactive decay", "decline", "decay"]}, {"answer": "deceased_person", "hint": "synonyms for deceased person", "clues": ["dead soul", "dead person", "decedent", "deceased", "departed", "deceased person"]}, {"answer": "decedent", "hint": "synonyms for decedent", "clues": ["dead soul", "dead person", "deceased", "departed", "deceased person", "decedent"]}, {"answer": "deceit", "hint": "synonyms for deceit", "clues": ["misrepresentation", "fraudulence", "deception", "dissembling", "dissimulation", "deceit"]}, {"answer": "deceiver", "hint": "synonyms for deceiver", "clues": ["cheat", "beguiler", "cheater", "slicker", "trickster", "deceiver"]}, {"answer": "deception", "hint": "synonyms for deception", "clues": ["misrepresentation", "illusion", "legerdemain", "deceit", "magic trick", "thaumaturgy", "trick", "dissembling", "dissimulation", "conjuration", "magic", "conjuring trick", "deception"]}, {"answer": "declaration", "hint": "synonyms for declaration", "clues": ["contract", "resolve", "proclamation", "annunciation", "resolution", "announcement", "declaration"]}, {"answer": "declarative_mood", "hint": "synonyms for declarative mood", "clues": ["fact mood", "common mood", "indicative mood", "indicative", "declarative", "declarative mood"]}, {"answer": "declarer", "hint": "synonyms for declarer", "clues": ["asserter", "asseverator", "avower", "contractor", "affirmer", "declarer"]}, {"answer": "declension", "hint": "synonyms for declension", "clues": ["worsening", "decline", "declination", "descent", "deterioration", "decline in quality", "declivity", "downslope", "fall", "declension"]}, {"answer": "declination", "hint": "synonyms for declination", "clues": ["declension", "regrets", "celestial latitude", "decline", "descent", "declivity", "dec", "downslope", "fall", "declination"]}, {"answer": "decline", "hint": "synonyms for decline", "clues": ["declension", "decay", "declination", "descent", "declivity", "downslope", "diminution", "fall", "decline"]}, {"answer": "declivity", "hint": "synonyms for declivity", "clues": ["declension", "descent", "declination", "downslope", "decline", "fall", "declivity"]}, {"answer": "decomposition", "hint": "synonyms for decomposition", "clues": ["rot", "putrefaction", "decay", "vector decomposition", "disintegration", "chemical decomposition reaction", "rotting", "decomposition reaction", "decomposition"]}, {"answer": "decompression_sickness", "hint": "synonyms for decompression sickness", "clues": ["gas embolism", "caisson disease", "air embolism", "aeroembolism", "bends", "decompression sickness"]}, {"answer": "decoration", "hint": "synonyms for decoration", "clues": ["medallion", "ornamentation", "palm", "laurel wreath", "ribbon", "medal", "ornament", "decoration"]}, {"answer": "decorator", "hint": "synonyms for decorator", "clues": ["ornamentalist", "room decorator", "designer", "interior decorator", "house decorator", "interior designer", "decorator"]}, {"answer": "decrease", "hint": "synonyms for decrease", "clues": ["decrement", "drop-off", "reduction", "step-down", "lessening", "diminution", "decrease"]}, {"answer": "decree", "hint": "synonyms for decree", "clues": ["order", "rescript", "fiat", "edict", "decree"]}, {"answer": "dedication", "hint": "synonyms for dedication", "clues": ["loyalty", "inscription", "commitment", "allegiance", "dedication"]}, {"answer": "deduction", "hint": "synonyms for deduction", "clues": ["implication", "tax deduction", "subtraction", "synthesis", "discount", "entailment", "price reduction", "tax write-off", "deductive reasoning", "deduction"]}, {"answer": "deed", "hint": "synonyms for deed", "clues": ["title", "human activity", "deed of conveyance", "act", "human action", "deed"]}, {"answer": "deeds", "hint": "synonyms for deeds", "clues": ["works", "act", "human action", "title", "human activity", "deed of conveyance", "deed"]}, {"answer": "deep_brown", "hint": "synonyms for deep brown", "clues": ["chocolate", "umber", "coffee", "burnt umber", "deep brown"]}, {"answer": "deepness", "hint": "synonyms for deepness", "clues": ["profundity", "depth", "astuteness", "profoundness", "deepness"]}, {"answer": "deer_fly_fever", "hint": "synonyms for deer fly fever", "clues": ["yatobyo", "rabbit fever", "tularaemia", "deer fly fever"]}, {"answer": "defalcation", "hint": "synonyms for defalcation", "clues": ["embezzlement", "misappropriation", "peculation", "misapplication", "defalcation"]}, {"answer": "defamation", "hint": "synonyms for defamation", "clues": ["calumniation", "traducement", "slander", "aspersion", "obloquy", "calumny", "denigration", "hatchet job", "defamation"]}, {"answer": "defamer", "hint": "synonyms for defamer", "clues": ["libeler", "slanderer", "traducer", "vilifier", "maligner", "backbiter", "defamer"]}, {"answer": "defect", "hint": "synonyms for defect", "clues": ["fault", "blemish", "mar", "shortcoming", "flaw", "defect"]}, {"answer": "defection", "hint": "synonyms for defection", "clues": ["renunciation", "apostasy", "desertion", "abandonment", "defection"]}, {"answer": "defence", "hint": "synonyms for defence", "clues": ["defence force", "refutation", "defense", "vindication", "defense team", "defence reaction", "defending team", "defence mechanism", "defense lawyers", "demurrer", "denial", "defensive measure", "defensive structure"]}, {"answer": "defender", "hint": "synonyms for defender", "clues": ["protector", "withstander", "shielder", "guardian", "defender"]}, {"answer": "defense", "hint": "synonyms for defense", "clues": ["refutation", "vindication", "defense lawyers", "Department of Defense", "DoD", "defense reaction", "defensive measure", "defense mechanism", "defensive structure", "defence force", "Defense Department", "defense team", "defending team", "Defense", "demurrer", "denial", "United States Department of Defense"]}, {"answer": "defense_department", "hint": "synonyms for defense department", "clues": ["Department of Defense", "DoD", "Defense Department", "United States Department of Defense", "Defense"]}, {"answer": "defense_lawyers", "hint": "synonyms for defense lawyers", "clues": ["defense lawyer", "defence", "defense attorney", "defense team"]}, {"answer": "deference", "hint": "synonyms for deference", "clues": ["compliance", "obligingness", "respectfulness", "respect", "deference"]}, {"answer": "deficiency", "hint": "synonyms for deficiency", "clues": ["lack", "want", "inadequacy", "insufficiency", "deficiency"]}, {"answer": "deflection", "hint": "synonyms for deflection", "clues": ["refraction", "diversion", "divagation", "bending", "warp", "deviation", "deflexion", "digression", "deflection"]}, {"answer": "deflexion", "hint": "synonyms for deflexion", "clues": ["refraction", "diversion", "divagation", "bending", "deflection", "deviation", "digression", "deflexion"]}, {"answer": "deformity", "hint": "synonyms for deformity", "clues": ["misshapenness", "disfigurement", "malformation", "disfiguration", "deformity"]}, {"answer": "defrauder", "hint": "synonyms for defrauder", "clues": ["chiseler", "swindler", "scammer", "gouger", "grifter", "defrauder"]}, {"answer": "deftness", "hint": "synonyms for deftness", "clues": ["quickness", "adroitness", "facility", "adeptness", "deftness"]}, {"answer": "degeneracy", "hint": "synonyms for degeneracy", "clues": ["decadency", "corruption", "putrefaction", "depravation", "depravity", "degeneration", "degeneracy"]}, {"answer": "degeneration", "hint": "synonyms for degeneration", "clues": ["decadency", "retrogression", "degeneracy", "devolution", "degeneration"]}, {"answer": "degree", "hint": "synonyms for degree", "clues": ["grade", "arcdegree", "level", "point", "academic degree", "stage", "degree"]}, {"answer": "degustation", "hint": "synonyms for degustation", "clues": ["savoring", "tasting", "relishing", "degustation"]}, {"answer": "dejectedness", "hint": "synonyms for dejectedness", "clues": ["downheartedness", "lowness", "low-spiritedness", "dispiritedness", "dejectedness"]}, {"answer": "dejection", "hint": "synonyms for dejection", "clues": ["ordure", "stool", "faecal matter", "feces", "BM", "dejection"]}, {"answer": "dekaliter", "hint": "synonyms for dekaliter", "clues": ["dekalitre", "dkl", "decaliter", "dal"]}, {"answer": "dekalitre", "hint": "synonyms for dekalitre", "clues": ["dkl", "decaliter", "dal", "dekalitre"]}, {"answer": "dekameter", "hint": "synonyms for dekameter", "clues": ["dam", "dekametre", "decameter", "dkm"]}, {"answer": "dekametre", "hint": "synonyms for dekametre", "clues": ["dam", "decameter", "dkm", "dekametre"]}, {"answer": "delaware", "hint": "synonyms for delaware", "clues": ["Delaware River", "First State", "DE", "Diamond State", "Delaware"]}, {"answer": "delay", "hint": "synonyms for delay", "clues": ["hold", "postponement", "wait", "time lag", "holdup", "delay"]}, {"answer": "delegacy", "hint": "synonyms for delegacy", "clues": ["deputation", "representation", "delegation", "mission", "agency", "commission", "delegacy"]}, {"answer": "delegation", "hint": "synonyms for delegation", "clues": ["deputation", "delegating", "relegation", "commission", "delegacy", "mission"]}, {"answer": "delhi_boil", "hint": "synonyms for delhi boil", "clues": ["Old World leishmaniasis", "tropical sore", "Aleppo boil", "cutaneous leishmaniasis", "oriental sore", "Delhi boil"]}, {"answer": "deliberation", "hint": "synonyms for deliberation", "clues": ["slowness", "weighing", "calculation", "unhurriedness", "deliberateness", "advisement", "deliberation"]}, {"answer": "delicacy", "hint": "synonyms for delicacy", "clues": ["daintiness", "slightness", "kickshaw", "treat", "discretion", "goody", "diplomacy", "dainty", "fragility", "finesse", "airiness", "fineness", "discreetness", "delicacy"]}, {"answer": "delilah", "hint": "synonyms for delilah", "clues": ["femme fatale", "temptress", "Delilah", "enchantress", "siren"]}, {"answer": "delimitation", "hint": "synonyms for delimitation", "clues": ["borderline", "border", "boundary line", "mete", "delimitation"]}, {"answer": "delineation", "hint": "synonyms for delineation", "clues": ["characterization", "depiction", "limning", "picture", "word picture", "line drawing", "word-painting", "portrayal", "delineation"]}, {"answer": "delirium", "hint": "synonyms for delirium", "clues": ["fury", "frenzy", "craze", "hysteria", "delirium"]}, {"answer": "deliverer", "hint": "synonyms for deliverer", "clues": ["Saviour", "Christ", "the Nazarene", "rescuer", "Deliverer", "Good Shepherd", "Jesus Christ", "delivery boy", "deliveryman", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "delivery", "hint": "synonyms for delivery", "clues": ["speech", "livery", "legal transfer", "saving", "obstetrical delivery", "bringing", "pitch", "rescue", "deliverance", "manner of speaking"]}, {"answer": "delphic_oracle", "hint": "synonyms for delphic oracle", "clues": ["Temple of Apollo", "Oracle of Apollo", "Delphic oracle", "oracle of Delphi"]}, {"answer": "deltasone", "hint": "synonyms for deltasone", "clues": ["Meticorten", "prednisone", "Deltasone", "Orasone", "Liquid Pred"]}, {"answer": "deluge", "hint": "synonyms for deluge", "clues": ["downpour", "inundation", "cloudburst", "flood", "torrent", "alluvion", "pelter", "soaker", "waterspout", "deluge"]}, {"answer": "delusion", "hint": "synonyms for delusion", "clues": ["head game", "illusion", "psychotic belief", "hallucination", "delusion"]}, {"answer": "demarcation", "hint": "synonyms for demarcation", "clues": ["demarcation line", "limit", "dividing line", "line", "contrast", "demarcation"]}, {"answer": "demeanor", "hint": "synonyms for demeanor", "clues": ["conduct", "demeanour", "behavior", "deportment"]}, {"answer": "demeanour", "hint": "synonyms for demeanour", "clues": ["conduct", "behavior", "demeanor", "deportment"]}, {"answer": "demesne", "hint": "synonyms for demesne", "clues": ["estate", "domain", "landed estate", "land", "acres", "demesne"]}, {"answer": "democratic_people's_republic_of_korea", "hint": "synonyms for democratic people's republic of korea", "clues": ["Democratic People's Republic of Korea", "D.P.R.K.", "DPRK", "North Korea"]}, {"answer": "democratic_republic_of_the_congo", "hint": "synonyms for democratic republic of the congo", "clues": ["Congo", "Belgian Congo", "Zaire", "Democratic Republic of the Congo"]}, {"answer": "demon", "hint": "synonyms for demon", "clues": ["fiend", "daimon", "devil", "ogre", "daemon", "monster"]}, {"answer": "demonstration", "hint": "synonyms for demonstration", "clues": ["manifestation", "presentment", "monstrance", "presentation", "demo", "demonstration"]}, {"answer": "dempsey", "hint": "synonyms for dempsey", "clues": ["Dempsey", "Manassa Mauler", "William Harrison Dempsey", "Jack Dempsey"]}, {"answer": "demurrer", "hint": "synonyms for demurrer", "clues": ["defense", "denial", "demurral", "demur", "demurrer"]}, {"answer": "denali", "hint": "synonyms for denali", "clues": ["McKinley", "Mt. McKinley", "Denali", "Mount McKinley"]}, {"answer": "denial", "hint": "synonyms for denial", "clues": ["self-denial", "abnegation", "defence", "self-abnegation", "disaffirmation", "demurrer", "self-renunciation", "denial"]}, {"answer": "denigration", "hint": "synonyms for denigration", "clues": ["defamation", "slander", "aspersion", "belittling", "calumny", "deprecation", "denigration"]}, {"answer": "denseness", "hint": "synonyms for denseness", "clues": ["dumbness", "slow-wittedness", "tightness", "compactness", "concentration", "density", "denseness"]}, {"answer": "density", "hint": "synonyms for density", "clues": ["denseness", "tightness", "compactness", "concentration", "density"]}, {"answer": "dent", "hint": "synonyms for dent", "clues": ["scratch", "slit", "nick", "ding", "gouge", "prick", "incision", "dent"]}, {"answer": "denudation", "hint": "synonyms for denudation", "clues": ["stripping", "husking", "baring", "uncovering", "denudation"]}, {"answer": "deoxyephedrine", "hint": "synonyms for deoxyephedrine", "clues": ["crank", "Methedrine", "chicken feed", "meth", "chalk", "glass", "ice", "methamphetamine hydrochloride", "trash", "methamphetamine", "shabu", "deoxyephedrine"]}, {"answer": "department_of_agriculture", "hint": "synonyms for department of agriculture", "clues": ["USDA", "Department of Agriculture", "Agriculture Department", "Agriculture"]}, {"answer": "department_of_commerce", "hint": "synonyms for department of commerce", "clues": ["Commerce Department", "Commerce", "Department of Commerce", "DoC"]}, {"answer": "department_of_defense", "hint": "synonyms for department of defense", "clues": ["Department of Defense", "DoD", "Defense Department", "United States Department of Defense", "Defense"]}, {"answer": "department_of_energy", "hint": "synonyms for department of energy", "clues": ["Energy Department", "DOE", "Energy", "Department of Energy"]}, {"answer": "department_of_justice", "hint": "synonyms for department of justice", "clues": ["Department of Justice", "Justice Department", "DoJ", "Justice"]}, {"answer": "department_of_labor", "hint": "synonyms for department of labor", "clues": ["Labor", "Department of Labor", "Labor Department", "DoL"]}, {"answer": "department_of_state", "hint": "synonyms for department of state", "clues": ["State", "United States Department of State", "Department of State", "DoS", "State Department"]}, {"answer": "department_of_the_interior", "hint": "synonyms for department of the interior", "clues": ["DoI", "Interior Department", "Department of the Interior", "Interior"]}, {"answer": "department_of_the_treasury", "hint": "synonyms for department of the treasury", "clues": ["United States Treasury", "Treasury", "Treasury Department", "Department of the Treasury"]}, {"answer": "departure", "hint": "synonyms for departure", "clues": ["going away", "leaving", "going", "divergence", "exit", "loss", "expiration", "deviation", "passing", "release", "difference", "departure"]}, {"answer": "dependence", "hint": "synonyms for dependence", "clues": ["dependency", "habituation", "addiction", "dependance"]}, {"answer": "dependency", "hint": "synonyms for dependency", "clues": ["dependence", "colony", "habituation", "addiction"]}, {"answer": "depersonalisation", "hint": "synonyms for depersonalisation", "clues": ["depersonalization disorder", "depersonalisation neurosis", "reification", "depersonalization"]}, {"answer": "depersonalization", "hint": "synonyms for depersonalization", "clues": ["depersonalization disorder", "depersonalisation neurosis", "depersonalisation", "reification"]}, {"answer": "depiction", "hint": "synonyms for depiction", "clues": ["characterization", "depicting", "limning", "delineation", "portraying", "picture", "word picture", "line drawing", "word-painting", "portrayal"]}, {"answer": "deportment", "hint": "synonyms for deportment", "clues": ["conduct", "demeanour", "behavior", "deportment"]}, {"answer": "deposit", "hint": "synonyms for deposit", "clues": ["sediment", "down payment", "sedimentation", "depository", "alluviation", "deposition", "bank deposit", "deposit"]}, {"answer": "deposit_box", "hint": "synonyms for deposit box", "clues": ["safe-deposit box", "safety-deposit", "lockbox", "deposit box"]}, {"answer": "depot", "hint": "synonyms for depot", "clues": ["terminal", "storage", "entrepot", "storehouse", "store", "terminus", "depot"]}, {"answer": "depravation", "hint": "synonyms for depravation", "clues": ["depravity", "corruption", "degeneracy", "putrefaction", "depravation"]}, {"answer": "depravity", "hint": "synonyms for depravity", "clues": ["turpitude", "corruption", "putrefaction", "depravation", "degeneracy", "depravity"]}, {"answer": "depression", "hint": "synonyms for depression", "clues": ["clinical depression", "depressive disorder", "slump", "impression", "natural depression", "Great Depression", "Depression", "economic crisis", "imprint", "low"]}, {"answer": "deprivation", "hint": "synonyms for deprivation", "clues": ["loss", "want", "privation", "neediness"]}, {"answer": "depth", "hint": "synonyms for depth", "clues": ["profundity", "deepness", "astuteness", "profoundness", "depth"]}, {"answer": "deputation", "hint": "synonyms for deputation", "clues": ["delegating", "relegation", "commission", "delegacy", "mission", "deputation"]}, {"answer": "derangement", "hint": "synonyms for derangement", "clues": ["unbalance", "overthrow", "upset", "mental unsoundness", "derangement"]}, {"answer": "derby", "hint": "synonyms for derby", "clues": ["derby hat", "plug hat", "bowler hat", "bowler", "derby"]}, {"answer": "derby_hat", "hint": "synonyms for derby hat", "clues": ["derby", "plug hat", "bowler hat", "bowler", "derby hat"]}, {"answer": "derivation", "hint": "synonyms for derivation", "clues": ["filiation", "lineage", "etymologizing", "deriving", "ancestry", "derivation"]}, {"answer": "derived_function", "hint": "synonyms for derived function", "clues": ["derivative", "differential", "first derivative", "differential coefficient", "derived function"]}, {"answer": "derriere", "hint": "synonyms for derriere", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "derriere"]}, {"answer": "des", "hint": "synonyms for des", "clues": ["stilboestrol", "First State", "DE", "Delaware", "Diamond State", "diethylstilbestrol"]}, {"answer": "descent", "hint": "synonyms for descent", "clues": ["filiation", "lineage", "blood", "stemma", "line", "line of descent", "parentage", "decline", "declination", "origin", "declivity", "pedigree", "stock", "fall", "bloodline", "declension", "extraction", "ancestry", "downslope", "descent"]}, {"answer": "desert_boot", "hint": "synonyms for desert boot", "clues": ["top boot", "combat boot", "half boot", "buskin", "desert boot"]}, {"answer": "deserter", "hint": "synonyms for deserter", "clues": ["ratter", "turncoat", "apostate", "defector", "renegade", "recreant", "deserter"]}, {"answer": "desiderius_erasmus", "hint": "synonyms for desiderius erasmus", "clues": ["Geert Geerts", "Gerhard Gerhards", "Desiderius Erasmus", "Erasmus"]}, {"answer": "design", "hint": "synonyms for design", "clues": ["blueprint", "purpose", "plan", "pattern", "figure", "intent", "conception", "excogitation", "invention", "designing", "aim", "innovation"]}, {"answer": "designation", "hint": "synonyms for designation", "clues": ["appellative", "naming", "denomination", "identification", "appointment", "assignment", "appellation", "designation"]}, {"answer": "designer", "hint": "synonyms for designer", "clues": ["clothes designer", "decorator", "fashion designer", "interior decorator", "intriguer", "house decorator", "couturier", "interior designer", "architect", "graphic designer", "room decorator", "designer"]}, {"answer": "desolation", "hint": "synonyms for desolation", "clues": ["bleakness", "nakedness", "forlornness", "bareness", "loneliness", "devastation", "desolation"]}, {"answer": "despatch", "hint": "synonyms for despatch", "clues": ["dispatch", "shipment", "expedition", "communique", "expeditiousness"]}, {"answer": "despicability", "hint": "synonyms for despicability", "clues": ["baseness", "sordidness", "contemptibility", "despicableness", "despicability"]}, {"answer": "despicableness", "hint": "synonyms for despicableness", "clues": ["baseness", "sordidness", "despicability", "contemptibility", "despicableness"]}, {"answer": "despoilation", "hint": "synonyms for despoilation", "clues": ["spoliation", "spoil", "despoilment", "despoilation"]}, {"answer": "despoiler", "hint": "synonyms for despoiler", "clues": ["pillager", "plunderer", "freebooter", "raider", "spoiler", "looter"]}, {"answer": "despoilment", "hint": "synonyms for despoilment", "clues": ["spoliation", "despoilation", "spoil", "despoilment"]}, {"answer": "despoina", "hint": "synonyms for despoina", "clues": ["Cora", "Persephone", "Despoina", "Kore"]}, {"answer": "despoliation", "hint": "synonyms for despoliation", "clues": ["spoliation", "despoilation", "spoil", "despoilment"]}, {"answer": "despotism", "hint": "synonyms for despotism", "clues": ["one-man rule", "totalitarianism", "authoritarianism", "monocracy", "Caesarism", "Stalinism", "shogunate", "tyranny", "dictatorship", "absolutism", "despotism"]}, {"answer": "destination", "hint": "synonyms for destination", "clues": ["name and address", "address", "finish", "goal", "terminus", "destination"]}, {"answer": "destiny", "hint": "synonyms for destiny", "clues": ["lot", "fate", "fortune", "portion", "circumstances", "luck", "destiny"]}, {"answer": "destroyer", "hint": "synonyms for destroyer", "clues": ["guided missile destroyer", "undoer", "waster", "ruiner", "uprooter", "destroyer"]}, {"answer": "destruction", "hint": "synonyms for destruction", "clues": ["demolition", "end", "devastation", "death", "wipeout", "destruction"]}, {"answer": "desynchronization", "hint": "synonyms for desynchronization", "clues": ["desynchronisation", "asynchronism", "asynchrony", "desynchronizing"]}, {"answer": "desynchronizing", "hint": "synonyms for desynchronizing", "clues": ["desynchronisation", "asynchronism", "asynchrony", "desynchronizing"]}, {"answer": "detachment", "hint": "synonyms for detachment", "clues": ["insularism", "insulation", "withdrawal", "disengagement", "insularity", "separation", "breakup", "detachment"]}, {"answer": "detail", "hint": "synonyms for detail", "clues": ["item", "point", "particular", "contingent", "detail"]}, {"answer": "details", "hint": "synonyms for details", "clues": ["detail", "item", "particular", "point", "inside information", "contingent"]}, {"answer": "detection", "hint": "synonyms for detection", "clues": ["spotting", "espial", "sensing", "detective work", "sleuthing", "signal detection", "spying", "catching", "detecting"]}, {"answer": "deterioration", "hint": "synonyms for deterioration", "clues": ["worsening", "declension", "impairment", "decline in quality", "deterioration"]}, {"answer": "determination", "hint": "synonyms for determination", "clues": ["conclusion", "purpose", "decision", "finding", "determination"]}, {"answer": "determiner", "hint": "synonyms for determiner", "clues": ["determining factor", "clincher", "determinative", "causal factor", "determinant", "determiner"]}, {"answer": "determining_factor", "hint": "synonyms for determining factor", "clues": ["determiner", "clincher", "determinative", "causal factor", "determinant", "determining factor"]}, {"answer": "detestation", "hint": "synonyms for detestation", "clues": ["abhorrence", "loathing", "odium", "abomination", "execration", "detestation"]}, {"answer": "detrition", "hint": "synonyms for detrition", "clues": ["rubbing", "grinding", "friction", "abrasion", "corrasion", "attrition", "detrition"]}, {"answer": "detritus", "hint": "synonyms for detritus", "clues": ["debris", "dust", "junk", "rubble", "detritus"]}, {"answer": "deuce", "hint": "synonyms for deuce", "clues": ["2", "dickens", "II", "two", "devil", "deuce"]}, {"answer": "deuce-ace", "hint": "synonyms for deuce-ace", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace"]}, {"answer": "deutschland", "hint": "synonyms for deutschland", "clues": ["Germany", "Federal Republic of Germany", "Deutschland", "FRG"]}, {"answer": "development", "hint": "synonyms for development", "clues": ["maturation", "ontogenesis", "ontogeny", "developing", "evolution", "exploitation", "growth", "growing", "development"]}, {"answer": "deviance", "hint": "synonyms for deviance", "clues": ["aberration", "aberrance", "deviation", "deviance"]}, {"answer": "deviation", "hint": "synonyms for deviation", "clues": ["diversion", "deviance", "divergence", "divagation", "deflection", "departure", "deflexion", "digression", "difference", "deviation"]}, {"answer": "devil", "hint": "synonyms for devil", "clues": ["Prince of Darkness", "demon", "Beelzebub", "the Tempter", "Lucifer", "hellion", "ogre", "fiend", "deuce", "heller", "daimon", "Devil", "Satan", "dickens", "monster", "Old Nick"]}, {"answer": "devilment", "hint": "synonyms for devilment", "clues": ["mischief-making", "devilry", "shenanigan", "roguishness", "rascality", "mischief", "mischievousness", "roguery", "devilment"]}, {"answer": "devilry", "hint": "synonyms for devilry", "clues": ["mischief-making", "roguishness", "rascality", "mischief", "deviltry", "mischievousness", "roguery", "shenanigan", "devilment"]}, {"answer": "deviltry", "hint": "synonyms for deviltry", "clues": ["mischief-making", "devilry", "roguishness", "rascality", "mischief", "mischievousness", "roguery", "shenanigan", "devilment"]}, {"answer": "devotion", "hint": "synonyms for devotion", "clues": ["idolatry", "veneration", "cultism", "devotedness", "devotion"]}, {"answer": "dewey", "hint": "synonyms for dewey", "clues": ["George Dewey", "Melville Louis Kossuth Dewey", "John Dewey", "Admiral Dewey", "Melvil Dewey", "Dewey"]}, {"answer": "dexamethasone", "hint": "synonyms for dexamethasone", "clues": ["Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol", "dexamethasone"]}, {"answer": "dexamethasone_intensol", "hint": "synonyms for dexamethasone intensol", "clues": ["dexamethasone", "Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol"]}, {"answer": "dexone", "hint": "synonyms for dexone", "clues": ["dexamethasone", "Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol"]}, {"answer": "dialogue", "hint": "synonyms for dialogue", "clues": ["duologue", "negotiation", "talks", "dialog"]}, {"answer": "diamond", "hint": "synonyms for diamond", "clues": ["ball field", "baseball diamond", "baseball field", "adamant", "rhombus", "rhomb", "infield", "diamond"]}, {"answer": "diamond_dust", "hint": "synonyms for diamond dust", "clues": ["frost snow", "frost mist", "snow mist", "ice crystal", "poudrin", "ice needle", "diamond dust"]}, {"answer": "diamond_jim", "hint": "synonyms for diamond jim", "clues": ["James Buchanan Brady", "Brady", "Diamond Jim", "Diamond Jim Brady"]}, {"answer": "diamond_jim_brady", "hint": "synonyms for diamond jim brady", "clues": ["James Buchanan Brady", "Brady", "Diamond Jim", "Diamond Jim Brady"]}, {"answer": "diamond_state", "hint": "synonyms for diamond state", "clues": ["Diamond State", "First State", "DE", "Delaware"]}, {"answer": "diana", "hint": "synonyms for diana", "clues": ["Lady Diana Frances Spencer", "Princess Diana", "Diana", "Princess of Wales"]}, {"answer": "diaphoresis", "hint": "synonyms for diaphoresis", "clues": ["sweating", "hidrosis", "perspiration", "sudation", "diaphoresis"]}, {"answer": "diaphragm", "hint": "synonyms for diaphragm", "clues": ["pessary", "midriff", "contraceptive diaphragm", "stop", "diaphragm"]}, {"answer": "diaphragmatic_pleurisy", "hint": "synonyms for diaphragmatic pleurisy", "clues": ["epidemic myalgia", "Bornholm disease", "myosis", "epidemic pleurodynia", "diaphragmatic pleurisy"]}, {"answer": "dias", "hint": "synonyms for dias", "clues": ["Diaz", "Defense Intelligence Agency", "Dias", "Bartholomeu Dias"]}, {"answer": "dichloroethyl_sulfide", "hint": "synonyms for dichloroethyl sulfide", "clues": ["mustard agent", "sulfur mustard", "blistering agent", "mustard gas", "dichloroethyl sulfide"]}, {"answer": "dichromacy", "hint": "synonyms for dichromacy", "clues": ["dichromasy", "dichromia", "dichromatopsia", "dichromatism"]}, {"answer": "dichromasy", "hint": "synonyms for dichromasy", "clues": ["dichromia", "dichromacy", "dichromatism", "dichromatopsia"]}, {"answer": "dichromatism", "hint": "synonyms for dichromatism", "clues": ["dichromasy", "dichromia", "dichromatopsia", "dichromatism"]}, {"answer": "dichromatopsia", "hint": "synonyms for dichromatopsia", "clues": ["dichromasy", "dichromia", "dichromatism", "dichromatopsia"]}, {"answer": "dichromia", "hint": "synonyms for dichromia", "clues": ["dichromasy", "dichromatism", "dichromatopsia", "dichromia"]}, {"answer": "dick", "hint": "synonyms for dick", "clues": ["peter", "gumshoe", "hawkshaw", "shaft", "cock", "pecker", "tool", "prick", "putz", "dick"]}, {"answer": "dickens", "hint": "synonyms for dickens", "clues": ["deuce", "Dickens", "Charles John Huffam Dickens", "devil", "Charles Dickens"]}, {"answer": "dickhead", "hint": "synonyms for dickhead", "clues": ["SOB", "motherfucker", "son of a bitch", "shit", "cocksucker", "whoreson", "bastard", "asshole", "prick", "dickhead"]}, {"answer": "dickie", "hint": "synonyms for dickie", "clues": ["dicky-seat", "dicky", "shirtfront", "dickie"]}, {"answer": "dictatorship", "hint": "synonyms for dictatorship", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "tyranny", "authoritarianism", "absolutism", "dictatorship"]}, {"answer": "diction", "hint": "synonyms for diction", "clues": ["phraseology", "choice of words", "verbiage", "phrasing", "wording", "enunciation", "diction"]}, {"answer": "didactics", "hint": "synonyms for didactics", "clues": ["educational activity", "pedagogy", "teaching", "instruction", "education", "didactics"]}, {"answer": "diddley", "hint": "synonyms for diddley", "clues": ["doodly-squat", "jack", "diddlyshit", "diddly", "squat", "diddlysquat", "shit"]}, {"answer": "diddly", "hint": "synonyms for diddly", "clues": ["doodly-squat", "jack", "diddlyshit", "squat", "diddlysquat", "shit", "diddley"]}, {"answer": "diddly-shit", "hint": "synonyms for diddly-shit", "clues": ["doodly-squat", "jack", "diddlyshit", "diddly", "squat", "diddlysquat", "shit"]}, {"answer": "diddly-squat", "hint": "synonyms for diddly-squat", "clues": ["doodly-squat", "jack", "diddlyshit", "diddly", "squat", "diddlysquat", "shit"]}, {"answer": "diddlyshit", "hint": "synonyms for diddlyshit", "clues": ["doodly-squat", "jack", "diddly", "squat", "diddlysquat", "shit", "diddly-shit"]}, {"answer": "diddlysquat", "hint": "synonyms for diddlysquat", "clues": ["doodly-squat", "jack", "diddlyshit", "diddly", "squat", "shit", "diddly-squat"]}, {"answer": "didrikson", "hint": "synonyms for didrikson", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "diesel", "hint": "synonyms for diesel", "clues": ["Diesel", "Rudolf Christian Karl Diesel", "diesel engine", "diesel motor", "Rudolf Diesel"]}, {"answer": "diethyl_ether", "hint": "synonyms for diethyl ether", "clues": ["vinyl ether", "ether", "ethyl ether", "ethoxyethane"]}, {"answer": "diethylbarbituric_acid", "hint": "synonyms for diethylbarbituric acid", "clues": ["diethylmalonylurea", "barbitone", "veronal", "barbital", "diethylbarbituric acid"]}, {"answer": "diethylmalonylurea", "hint": "synonyms for diethylmalonylurea", "clues": ["barbitone", "diethylbarbituric acid", "veronal", "barbital", "diethylmalonylurea"]}, {"answer": "difference", "hint": "synonyms for difference", "clues": ["departure", "deviation", "divergence", "difference of opinion", "remainder", "conflict", "dispute", "difference"]}, {"answer": "differential_coefficient", "hint": "synonyms for differential coefficient", "clues": ["derivative", "differential", "first derivative", "derived function", "differential coefficient"]}, {"answer": "dig", "hint": "synonyms for dig", "clues": ["shot", "archeological site", "jibe", "digging", "jab", "shaft", "slam", "excavation", "gibe", "barb", "dig"]}, {"answer": "digestive_tract", "hint": "synonyms for digestive tract", "clues": ["alimentary canal", "GI tract", "gastrointestinal tract", "digestive tube", "alimentary tract", "digestive tract"]}, {"answer": "digestive_tube", "hint": "synonyms for digestive tube", "clues": ["alimentary canal", "GI tract", "gastrointestinal tract", "digestive tract", "alimentary tract", "digestive tube"]}, {"answer": "diggings", "hint": "synonyms for diggings", "clues": ["lodgings", "excavation", "dig", "digging", "pad", "domiciliation"]}, {"answer": "digit", "hint": "synonyms for digit", "clues": ["dactyl", "finger's breadth", "figure", "finger", "digit"]}, {"answer": "dignitary", "hint": "synonyms for dignitary", "clues": ["high-up", "very important person", "VIP", "high muckamuck", "panjandrum", "dignitary"]}, {"answer": "dignity", "hint": "synonyms for dignity", "clues": ["lordliness", "self-regard", "gravitas", "self-worth", "self-respect", "dignity"]}, {"answer": "digression", "hint": "synonyms for digression", "clues": ["excursion", "diversion", "divagation", "deflection", "deviation", "excursus", "aside", "deflexion", "parenthesis", "digression"]}, {"answer": "digs", "hint": "synonyms for digs", "clues": ["shot", "archeological site", "jibe", "digging", "jab", "domiciliation", "shaft", "slam", "lodgings", "excavation", "gibe", "pad", "barb", "dig"]}, {"answer": "dilly-dallier", "hint": "synonyms for dilly-dallier", "clues": ["dillydallier", "mope", "lounger", "dallier"]}, {"answer": "dillydallier", "hint": "synonyms for dillydallier", "clues": ["dilly-dallier", "lounger", "dallier", "mope"]}, {"answer": "diminution", "hint": "synonyms for diminution", "clues": ["reduction", "decrease", "step-down", "decline", "diminution"]}, {"answer": "diminutiveness", "hint": "synonyms for diminutiveness", "clues": ["minuteness", "weeness", "tininess", "petiteness", "diminutiveness"]}, {"answer": "din", "hint": "synonyms for din", "clues": ["clamor", "tumult", "rumpus", "commotion", "cacophony", "ruction", "ruckus", "blaring", "blare", "din"]}, {"answer": "dinar", "hint": "synonyms for dinar", "clues": ["Tunisian dinar", "Bahrain dinar", "Libyan dinar", "Kuwaiti dinar", "Yugoslavian dinar", "Algerian dinar", "Iraqi dinar", "Iranian dinar", "dinar"]}, {"answer": "dindymene", "hint": "synonyms for dindymene", "clues": ["Magna Mater", "Dindymene", "Cybele", "Mater Turrita", "Great Mother"]}, {"answer": "dinero", "hint": "synonyms for dinero", "clues": ["clams", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "dinero"]}, {"answer": "dinesen", "hint": "synonyms for dinesen", "clues": ["Dinesen", "Isak Dinesen", "Karen Blixen", "Baroness Karen Blixen", "Blixen"]}, {"answer": "diode", "hint": "synonyms for diode", "clues": ["rectifying tube", "rectifying valve", "crystal rectifier", "semiconductor diode", "junction rectifier", "diode"]}, {"answer": "dip", "hint": "synonyms for dip", "clues": ["drop", "plunge", "cutpurse", "inclination", "free fall", "fall", "magnetic dip", "magnetic inclination", "angle of dip", "pickpocket", "dip"]}, {"answer": "diplomacy", "hint": "synonyms for diplomacy", "clues": ["finesse", "discreetness", "statecraft", "delicacy", "diplomatic negotiations", "statesmanship", "diplomacy"]}, {"answer": "dipper", "hint": "synonyms for dipper", "clues": ["Plough", "Big Dipper", "Wain", "Charles's Wain", "Wagon", "Little Dipper", "Dipper"]}, {"answer": "dippers", "hint": "synonyms for dippers", "clues": ["Plough", "Big Dipper", "dipper", "Wain", "Charles's Wain", "Wagon", "Dunkers", "Little Dipper", "Church of the Brethren"]}, {"answer": "dipsomaniac", "hint": "synonyms for dipsomaniac", "clues": ["lush", "alcoholic", "boozer", "souse", "alky", "soaker", "dipsomaniac"]}, {"answer": "direction", "hint": "synonyms for direction", "clues": ["counseling", "centering", "guidance", "management", "commission", "instruction", "way", "focusing", "charge", "steering", "focal point", "direction"]}, {"answer": "directness", "hint": "synonyms for directness", "clues": ["candidness", "candor", "frankness", "forthrightness", "straightness", "directness"]}, {"answer": "director", "hint": "synonyms for director", "clues": ["theatre director", "film director", "manager", "managing director", "music director", "conductor", "director"]}, {"answer": "dirge", "hint": "synonyms for dirge", "clues": ["threnody", "requiem", "lament", "coronach", "dirge"]}, {"answer": "dirham", "hint": "synonyms for dirham", "clues": ["Libyan dirham", "Kuwaiti dirham", "Moroccan dirham", "Qatari dirham", "United Arab Emirate dirham", "Tunisian dirham", "dirham"]}, {"answer": "dirty_dog", "hint": "synonyms for dirty dog", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "scum bag", "rat", "lowlife", "stinker", "puke", "rotter", "skunk", "git", "dirty dog"]}, {"answer": "dirty_money", "hint": "synonyms for dirty money", "clues": ["swag", "plunder", "pillage", "loot", "prize", "booty", "dirty money"]}, {"answer": "dirty_word", "hint": "synonyms for dirty word", "clues": ["vulgarism", "smut", "obscenity", "filth", "dirty word"]}, {"answer": "disagreement", "hint": "synonyms for disagreement", "clues": ["dissonance", "discrepancy", "divergence", "variance", "dissension", "disagreement"]}, {"answer": "disarray", "hint": "synonyms for disarray", "clues": ["disorderliness", "confusion", "confusedness", "muddiness", "mental confusion", "disarray"]}, {"answer": "disaster", "hint": "synonyms for disaster", "clues": ["calamity", "tragedy", "catastrophe", "cataclysm", "disaster"]}, {"answer": "disbelief", "hint": "synonyms for disbelief", "clues": ["mental rejection", "unbelief", "incredulity", "skepticism", "disbelief"]}, {"answer": "disbursal", "hint": "synonyms for disbursal", "clues": ["expense", "spending", "outlay", "disbursement", "disbursal"]}, {"answer": "disbursement", "hint": "synonyms for disbursement", "clues": ["expense", "spending", "outlay", "disbursal", "disbursement"]}, {"answer": "disc", "hint": "synonyms for disc", "clues": ["platter", "magnetic disc", "phonograph recording", "record", "disk", "saucer", "disc"]}, {"answer": "disceptation", "hint": "synonyms for disceptation", "clues": ["contention", "tilt", "argument", "arguing", "disputation", "contestation", "controversy"]}, {"answer": "discernment", "hint": "synonyms for discernment", "clues": ["apprehension", "discretion", "taste", "judgment", "understanding", "perceptiveness", "sagacity", "appreciation", "savvy", "sagaciousness", "discernment"]}, {"answer": "discharge", "hint": "synonyms for discharge", "clues": ["sacking", "arc", "expelling", "spark", "outpouring", "dismission", "waiver", "run", "electric discharge", "electric arc", "firing", "firing off", "venting", "emission", "liberation", "release", "dismissal", "discharge"]}, {"answer": "discipline", "hint": "synonyms for discipline", "clues": ["bailiwick", "correction", "field of study", "subject field", "study", "field", "subject area", "subject", "discipline"]}, {"answer": "disco_biscuit", "hint": "synonyms for disco biscuit", "clues": ["go", "Adam", "ecstasy", "hug drug", "cristal", "X", "XTC", "disco biscuit"]}, {"answer": "disconnection", "hint": "synonyms for disconnection", "clues": ["disconnect", "disconnectedness", "gulf", "disjunction", "disjuncture"]}, {"answer": "discount", "hint": "synonyms for discount", "clues": ["deduction", "discount rate", "rebate", "price reduction", "bank discount", "discount"]}, {"answer": "discourse", "hint": "synonyms for discourse", "clues": ["preaching", "discussion", "treatment", "sermon", "discourse"]}, {"answer": "discourtesy", "hint": "synonyms for discourtesy", "clues": ["offence", "rudeness", "disrespect", "offensive activity", "discourtesy"]}, {"answer": "discoverer", "hint": "synonyms for discoverer", "clues": ["inventor", "finder", "artificer", "spotter", "discoverer"]}, {"answer": "discreetness", "hint": "synonyms for discreetness", "clues": ["finesse", "discretion", "circumspection", "delicacy", "diplomacy", "prudence", "discreetness"]}, {"answer": "discrepancy", "hint": "synonyms for discrepancy", "clues": ["divergence", "disagreement", "variance", "variant", "discrepancy"]}, {"answer": "discretion", "hint": "synonyms for discretion", "clues": ["discernment", "circumspection", "discreetness", "free will", "delicacy", "prudence", "discretion"]}, {"answer": "discussion", "hint": "synonyms for discussion", "clues": ["give-and-take", "discourse", "treatment", "word", "discussion"]}, {"answer": "disdain", "hint": "synonyms for disdain", "clues": ["despite", "condescension", "scorn", "patronage", "contempt", "disdain"]}, {"answer": "disgorgement", "hint": "synonyms for disgorgement", "clues": ["emesis", "regurgitation", "vomit", "puking", "disgorgement"]}, {"answer": "disgustingness", "hint": "synonyms for disgustingness", "clues": ["distastefulness", "unsavoriness", "sickeningness", "nauseatingness", "disgustingness"]}, {"answer": "dish", "hint": "synonyms for dish", "clues": ["ravisher", "stunner", "cup of tea", "looker", "smasher", "bag", "dish antenna", "knockout", "dish aerial", "peach", "mantrap", "dishful", "sweetheart", "saucer", "beauty", "lulu", "dish"]}, {"answer": "disinclination", "hint": "synonyms for disinclination", "clues": ["indisposition", "hesitancy", "reluctance", "hesitation", "disinclination"]}, {"answer": "disintegration", "hint": "synonyms for disintegration", "clues": ["decay", "decomposition", "dissolution", "annihilation", "radioactive decay", "disintegration"]}, {"answer": "disk", "hint": "synonyms for disk", "clues": ["platter", "magnetic disc", "disc", "phonograph recording", "saucer", "record", "disk"]}, {"answer": "dismay", "hint": "synonyms for dismay", "clues": ["disheartenment", "consternation", "discouragement", "alarm", "dismay"]}, {"answer": "dismissal", "hint": "synonyms for dismissal", "clues": ["sacking", "firing", "dismission", "judgement of dismissal", "liberation", "release", "pink slip", "discharge", "dismissal"]}, {"answer": "dismission", "hint": "synonyms for dismission", "clues": ["sacking", "firing", "liberation", "release", "pink slip", "dismissal", "discharge", "dismission"]}, {"answer": "disorderliness", "hint": "synonyms for disorderliness", "clues": ["roughness", "rowdyism", "rowdiness", "disarray", "disorder", "disorderliness"]}, {"answer": "dispatch", "hint": "synonyms for dispatch", "clues": ["shipment", "despatch", "expedition", "communique", "expeditiousness"]}, {"answer": "dispersion", "hint": "synonyms for dispersion", "clues": ["diffusion", "scattering", "distribution", "dissemination", "dispersal", "dispersion"]}, {"answer": "dispiritedness", "hint": "synonyms for dispiritedness", "clues": ["downheartedness", "dejectedness", "lowness", "low-spiritedness", "dispiritedness"]}, {"answer": "displacement", "hint": "synonyms for displacement", "clues": ["translation", "deracination", "supplanting", "displacement reaction", "shift", "displacement"]}, {"answer": "displacement_unit", "hint": "synonyms for displacement unit", "clues": ["cubature unit", "capacity unit", "cubic content unit", "cubage unit", "volume unit", "cubic measure", "capacity measure", "displacement unit"]}, {"answer": "display", "hint": "synonyms for display", "clues": ["video display", "show", "exhibit", "presentation", "display"]}, {"answer": "disposal", "hint": "synonyms for disposal", "clues": ["electric pig", "garbage disposal", "disposition", "administration", "disposal"]}, {"answer": "disposition", "hint": "synonyms for disposition", "clues": ["tendency", "disposal", "inclination", "temperament", "disposition"]}, {"answer": "disproof", "hint": "synonyms for disproof", "clues": ["falsification", "refutation", "falsifying", "refutal", "disproof"]}, {"answer": "disputation", "hint": "synonyms for disputation", "clues": ["contention", "tilt", "disceptation", "debate", "public debate", "argument", "arguing", "contestation", "controversy"]}, {"answer": "dispute", "hint": "synonyms for dispute", "clues": ["contravention", "difference of opinion", "conflict", "difference", "dispute"]}, {"answer": "disruption", "hint": "synonyms for disruption", "clues": ["break", "dislocation", "gap", "hurly burly", "commotion", "kerfuffle", "disturbance", "flutter", "perturbation", "to-do", "interruption", "hoo-ha", "disruption"]}, {"answer": "dissembler", "hint": "synonyms for dissembler", "clues": ["hypocrite", "phoney", "pretender", "dissimulator", "dissembler"]}, {"answer": "dissembling", "hint": "synonyms for dissembling", "clues": ["feigning", "pretense", "deceit", "deception", "dissimulation", "dissembling"]}, {"answer": "dissemination", "hint": "synonyms for dissemination", "clues": ["diffusion", "public exposure", "dispersion", "spreading", "airing", "dispersal", "dissemination"]}, {"answer": "dissenter", "hint": "synonyms for dissenter", "clues": ["dissident", "protester", "objector", "contestant", "dissenter"]}, {"answer": "dissident_irish_republican_army", "hint": "synonyms for dissident irish republican army", "clues": ["RIRA", "Real Irish Republican Army", "Real IRA", "Dissident Irish Republican Army"]}, {"answer": "dissimulator", "hint": "synonyms for dissimulator", "clues": ["hypocrite", "phoney", "pretender", "dissembler", "dissimulator"]}, {"answer": "dissipation", "hint": "synonyms for dissipation", "clues": ["profligacy", "waste", "looseness", "licentiousness", "dissolution", "wastefulness", "dissipation"]}, {"answer": "dissolution", "hint": "synonyms for dissolution", "clues": ["profligacy", "dissolving", "looseness", "dissipation", "licentiousness", "disintegration", "adjournment", "breakup", "dissolution"]}, {"answer": "dissolvent", "hint": "synonyms for dissolvent", "clues": ["dissolver", "dissolving agent", "solvent", "dissolvent"]}, {"answer": "dissolver", "hint": "synonyms for dissolver", "clues": ["resolvent", "dissolving agent", "dissolvent", "dissolver"]}, {"answer": "dissolving_agent", "hint": "synonyms for dissolving agent", "clues": ["resolvent", "dissolver", "dissolvent", "dissolving agent"]}, {"answer": "dissonance", "hint": "synonyms for dissonance", "clues": ["disagreement", "racket", "dissension", "noise", "dissonance"]}, {"answer": "distastefulness", "hint": "synonyms for distastefulness", "clues": ["disgustingness", "unsavoriness", "sickeningness", "offensiveness", "nauseatingness", "odiousness", "distastefulness"]}, {"answer": "distich", "hint": "synonyms for distich", "clues": ["brace", "couplet", "dyad", "duo", "twain", "duet", "twosome", "duad", "yoke", "pair", "span", "distich"]}, {"answer": "distinction", "hint": "synonyms for distinction", "clues": ["note", "eminence", "differentiation", "preeminence", "distinction"]}, {"answer": "distinctiveness", "hint": "synonyms for distinctiveness", "clues": ["specialness", "speciality", "disparateness", "peculiarity", "distinctiveness"]}, {"answer": "distinctness", "hint": "synonyms for distinctness", "clues": ["otherness", "separateness", "discreteness", "sharpness", "severalty", "distinctness"]}, {"answer": "distortion", "hint": "synonyms for distortion", "clues": ["aberration", "distorted shape", "optical aberration", "overrefinement", "straining", "deformation", "twisting", "torture", "distortion"]}, {"answer": "distrust", "hint": "synonyms for distrust", "clues": ["suspicion", "mistrust", "distrustfulness", "misgiving"]}, {"answer": "disturbance", "hint": "synonyms for disturbance", "clues": ["mental disturbance", "fray", "hurly burly", "commotion", "kerfuffle", "ruffle", "noise", "mental disorder", "hoo-hah", "psychological disorder", "upset", "affray", "interference", "flutter", "perturbation", "to-do", "disruption", "folie", "disturbance"]}, {"answer": "dither", "hint": "synonyms for dither", "clues": ["flap", "tizzy", "pother", "fuss", "dither"]}, {"answer": "divagation", "hint": "synonyms for divagation", "clues": ["diversion", "deflection", "deviation", "excursus", "aside", "deflexion", "parenthesis", "digression", "divagation"]}, {"answer": "dive", "hint": "synonyms for dive", "clues": ["prima donna", "diving", "nose dive", "honkytonk", "diva", "dive"]}, {"answer": "divergence", "hint": "synonyms for divergence", "clues": ["departure", "discrepancy", "deviation", "disagreement", "variance", "difference", "divergency"]}, {"answer": "diversion", "hint": "synonyms for diversion", "clues": ["diversionary attack", "deviation", "divagation", "recreation", "deflexion", "digression", "deflection", "diversion"]}, {"answer": "divination", "hint": "synonyms for divination", "clues": ["prophecy", "soothsaying", "foretelling", "fortune telling", "divination"]}, {"answer": "divining_rod", "hint": "synonyms for divining rod", "clues": ["waterfinder", "dowser", "dowsing rod", "divining rod"]}, {"answer": "divinity", "hint": "synonyms for divinity", "clues": ["god", "immortal", "deity", "theology", "divinity fudge", "divinity"]}, {"answer": "divinyl_ether", "hint": "synonyms for divinyl ether", "clues": ["vinyl ether", "ether", "ethyl ether", "ethoxyethane"]}, {"answer": "division", "hint": "synonyms for division", "clues": ["sectionalization", "air division", "partition", "class", "variance", "part", "segmentation", "section", "naval division", "division"]}, {"answer": "dixie", "hint": "synonyms for dixie", "clues": ["Dixieland", "Confederate States", "Dixie", "Confederacy", "South", "Confederate States of America"]}, {"answer": "dixieland", "hint": "synonyms for dixieland", "clues": ["Dixieland", "Confederate States", "Dixie", "Confederacy", "South", "Confederate States of America"]}, {"answer": "djibouti", "hint": "synonyms for djibouti", "clues": ["capital of Djibouti", "Djibouti", "Afars and Issas", "Republic of Djibouti"]}, {"answer": "djinn", "hint": "synonyms for djinn", "clues": ["genie", "djinny", "jinni", "jinnee"]}, {"answer": "djinni", "hint": "synonyms for djinni", "clues": ["jinni", "genie", "jinnee", "djinny"]}, {"answer": "djinny", "hint": "synonyms for djinny", "clues": ["jinni", "genie", "jinnee", "djinn"]}, {"answer": "dkl", "hint": "synonyms for dkl", "clues": ["dekalitre", "decaliter", "dal", "dkl"]}, {"answer": "dkm", "hint": "synonyms for dkm", "clues": ["dam", "dekametre", "decameter", "dkm"]}, {"answer": "do", "hint": "synonyms for do", "clues": ["doh", "Doctor of Osteopathy", "bash", "ut", "DO", "brawl"]}, {"answer": "doc", "hint": "synonyms for doc", "clues": ["physician", "Dr.", "doctor", "medico", "Commerce Department", "Commerce", "DoC", "Department of Commerce", "MD"]}, {"answer": "dock", "hint": "synonyms for dock", "clues": ["dockage", "docking facility", "loading dock", "wharf", "pier", "wharfage", "dock"]}, {"answer": "dock-walloper", "hint": "synonyms for dock-walloper", "clues": ["longshoreman", "docker", "dockhand", "loader", "dockworker", "stevedore", "lumper", "dock-walloper"]}, {"answer": "dock_worker", "hint": "synonyms for dock worker", "clues": ["longshoreman", "docker", "dockhand", "dock-walloper", "loader", "dockworker", "stevedore", "lumper"]}, {"answer": "dockage", "hint": "synonyms for dockage", "clues": ["dock", "moorage", "docking facility", "docking fee", "tying up", "dockage"]}, {"answer": "docker", "hint": "synonyms for docker", "clues": ["longshoreman", "dockhand", "dock-walloper", "loader", "dockworker", "stevedore", "lumper", "docker"]}, {"answer": "dockhand", "hint": "synonyms for dockhand", "clues": ["longshoreman", "docker", "dock-walloper", "dockworker", "loader", "stevedore", "lumper", "dockhand"]}, {"answer": "dockworker", "hint": "synonyms for dockworker", "clues": ["longshoreman", "docker", "dockhand", "dock-walloper", "loader", "stevedore", "lumper", "dock worker"]}, {"answer": "doctor", "hint": "synonyms for doctor", "clues": ["physician", "doc", "Doctor", "Dr.", "Doctor of the Church", "medico", "MD"]}, {"answer": "doctrine", "hint": "synonyms for doctrine", "clues": ["philosophical system", "school of thought", "ism", "philosophy", "doctrine"]}, {"answer": "documentation", "hint": "synonyms for documentation", "clues": ["support", "certification", "corroboration", "software documentation", "documentation"]}, {"answer": "dod", "hint": "synonyms for dod", "clues": ["Department of Defense", "DoD", "Defense Department", "United States Department of Defense", "Defense"]}, {"answer": "dodge", "hint": "synonyms for dodge", "clues": ["contrivance", "scheme", "stratagem", "dodging", "dodge"]}, {"answer": "dodger", "hint": "synonyms for dodger", "clues": ["corn dab", "corn dodger", "fox", "slyboots", "dodger"]}, {"answer": "dodging", "hint": "synonyms for dodging", "clues": ["evasion", "turning away", "escape", "dodge", "shunning", "avoidance", "scheme", "dodging"]}, {"answer": "dodgson", "hint": "synonyms for dodgson", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "doe", "hint": "synonyms for doe", "clues": ["Energy Department", "DOE", "Energy", "Department of Energy"]}, {"answer": "dog", "hint": "synonyms for dog", "clues": ["hotdog", "click", "dog-iron", "frankfurter", "hound", "frank", "heel", "pawl", "blackguard", "bounder", "wienerwurst", "detent", "firedog", "andiron", "cad", "weenie", "wiener", "frump", "dog"]}, {"answer": "dog_collar", "hint": "synonyms for dog collar", "clues": ["neckband", "clerical collar", "collar", "choker", "Roman collar", "dog collar"]}, {"answer": "dog_star", "hint": "synonyms for dog star", "clues": ["Dog Star", "Canicula", "Sothis", "Sirius"]}, {"answer": "dogfight", "hint": "synonyms for dogfight", "clues": ["hassle", "scuffle", "rough-and-tumble", "tussle", "dogfight"]}, {"answer": "doggedness", "hint": "synonyms for doggedness", "clues": ["persistence", "tenaciousness", "perseverance", "pertinacity", "tenacity", "doggedness"]}, {"answer": "dogshit", "hint": "synonyms for dogshit", "clues": ["crap", "bull", "horseshit", "shit", "bullshit", "Irish bull", "dogshit"]}, {"answer": "dogtooth", "hint": "synonyms for dogtooth", "clues": ["cuspid", "canine", "eye tooth", "canine tooth", "dogtooth"]}, {"answer": "doha", "hint": "synonyms for doha", "clues": ["El Beda", "capital of Qatar", "Bida", "Doha"]}, {"answer": "doi", "hint": "synonyms for doi", "clues": ["DoI", "Interior Department", "Department of the Interior", "Interior"]}, {"answer": "doing_business_as", "hint": "synonyms for doing business as", "clues": ["assumed name", "DBA", "fictitious name", "Doing Business As"]}, {"answer": "doj", "hint": "synonyms for doj", "clues": ["Department of Justice", "Justice Department", "DoJ", "Justice"]}, {"answer": "dol", "hint": "synonyms for dol", "clues": ["Labor", "Department of Labor", "Labor Department", "DoL"]}, {"answer": "doll", "hint": "synonyms for doll", "clues": ["bird", "skirt", "chick", "dolly", "dame", "wench"]}, {"answer": "dollar", "hint": "synonyms for dollar", "clues": ["one dollar bill", "buck", "dollar sign", "dollar mark", "dollar bill", "clam", "dollar"]}, {"answer": "dollar_bill", "hint": "synonyms for dollar bill", "clues": ["dollar", "clam", "buck", "one dollar bill", "dollar bill"]}, {"answer": "dolmen", "hint": "synonyms for dolmen", "clues": ["cromlech", "dolman", "portal tomb", "dolman jacket", "dolmen"]}, {"answer": "dolophine_hydrochloride", "hint": "synonyms for dolophine hydrochloride", "clues": ["methadon", "synthetic heroin", "fixer", "methadone hydrochloride", "dolophine hydrochloride"]}, {"answer": "dolt", "hint": "synonyms for dolt", "clues": ["pudding head", "poor fish", "dullard", "stupid person", "pudden-head", "stupe", "stupid", "pillock", "dolt"]}, {"answer": "domain", "hint": "synonyms for domain", "clues": ["sphere", "field", "land", "demesne", "orbit", "arena", "domain of a function", "knowledge domain", "world", "knowledge base", "domain"]}, {"answer": "dome", "hint": "synonyms for dome", "clues": ["domed stadium", "noggin", "covered stadium", "attic", "bean", "noodle", "bonce", "dome"]}, {"answer": "domicile", "hint": "synonyms for domicile", "clues": ["abode", "habitation", "home", "dwelling house", "legal residence", "dwelling", "domicile"]}, {"answer": "domiciliation", "hint": "synonyms for domiciliation", "clues": ["diggings", "pad", "digs", "lodgings", "domiciliation"]}, {"answer": "dominance", "hint": "synonyms for dominance", "clues": ["laterality", "authority", "control", "authorization", "potency", "ascendance", "say-so", "ascendency", "dominance"]}, {"answer": "domingo_de_guzman", "hint": "synonyms for domingo de guzman", "clues": ["Domingo de Guzman", "Dominic", "Saint Dominic", "St. Dominic"]}, {"answer": "dominic", "hint": "synonyms for dominic", "clues": ["Domingo de Guzman", "Dominic", "Saint Dominic", "St. Dominic"]}, {"answer": "dominicus", "hint": "synonyms for dominicus", "clues": ["Lord's Day", "Sun", "Sunday", "Dominicus"]}, {"answer": "dominion", "hint": "synonyms for dominion", "clues": ["rule", "territory", "territorial dominion", "Dominion", "district"]}, {"answer": "domino", "hint": "synonyms for domino", "clues": ["half mask", "Fats Domino", "Antoine Domino", "eye mask", "Domino"]}, {"answer": "dominoes", "hint": "synonyms for dominoes", "clues": ["domino", "half mask", "Fats Domino", "Antoine Domino", "eye mask"]}, {"answer": "dominos", "hint": "synonyms for dominos", "clues": ["dominoes", "half mask", "Fats Domino", "Antoine Domino", "eye mask"]}, {"answer": "don", "hint": "synonyms for don", "clues": ["Don", "father", "Don River", "preceptor"]}, {"answer": "donor", "hint": "synonyms for donor", "clues": ["giver", "conferrer", "presenter", "bestower", "donor"]}, {"answer": "doodad", "hint": "synonyms for doodad", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick", "doodad"]}, {"answer": "doodlebug", "hint": "synonyms for doodlebug", "clues": ["buzz bomb", "V-1", "robot bomb", "flying bomb", "doodlebug"]}, {"answer": "doodly-squat", "hint": "synonyms for doodly-squat", "clues": ["jack", "diddlyshit", "diddly", "squat", "diddlysquat", "shit", "doodly-squat"]}, {"answer": "doohickey", "hint": "synonyms for doohickey", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "gizmo", "thingummy", "whatsis", "gimmick", "doohickey"]}, {"answer": "doojigger", "hint": "synonyms for doojigger", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick", "doojigger"]}, {"answer": "doomsday", "hint": "synonyms for doomsday", "clues": ["doom", "Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "door_guard", "hint": "synonyms for door guard", "clues": ["gatekeeper", "doorman", "doorkeeper", "hall porter", "porter", "ostiary", "door guard"]}, {"answer": "doorkeeper", "hint": "synonyms for doorkeeper", "clues": ["gatekeeper", "usher", "door guard", "ostiary", "doorman", "hall porter", "porter", "ostiarius", "doorkeeper"]}, {"answer": "doorman", "hint": "synonyms for doorman", "clues": ["gatekeeper", "doorkeeper", "hall porter", "porter", "door guard", "ostiary", "doorman"]}, {"answer": "dope", "hint": "synonyms for dope", "clues": ["low-down", "boob", "dumbbell", "pinhead", "pot", "grass", "weed", "locoweed", "Mary Jane", "poop", "gage", "cola", "smoke", "green goddess", "sess", "dummy", "skunk", "sens", "the skinny", "dope"]}, {"answer": "dorm", "hint": "synonyms for dorm", "clues": ["student residence", "dormitory", "hall", "residence hall", "dorm"]}, {"answer": "dormitory", "hint": "synonyms for dormitory", "clues": ["dorm", "dorm room", "dormitory room", "student residence", "hall", "residence hall", "dormitory"]}, {"answer": "doroteo_arango", "hint": "synonyms for doroteo arango", "clues": ["Pancho Villa", "Francisco Villa", "Doroteo Arango", "Villa"]}, {"answer": "dos", "hint": "synonyms for dos", "clues": ["do", "United States Department of State", "Doctor of Osteopathy", "disk operating system", "State Department", "doh", "State", "bash", "ut", "brawl", "Department of State"]}, {"answer": "dose", "hint": "synonyms for dose", "clues": ["pane", "STD", "superman", "loony toons", "venereal disease", "acid", "sexually transmitted disease", "venereal infection", "dosage", "Cupid's itch", "Zen", "Cupid's disease", "Elvis", "Lucy in the sky with diamonds", "dot", "Venus's curse", "social disease", "battery-acid", "window pane", "VD", "back breaker", "dose"]}, {"answer": "dot", "hint": "synonyms for dot", "clues": ["Transportation", "pane", "dose", "superman", "loony toons", "acid", "point", "Zen", "Elvis", "Lucy in the sky with diamonds", "dit", "battery-acid", "window pane", "DoT", "Department of Transportation", "back breaker"]}, {"answer": "douay-rheims_bible", "hint": "synonyms for douay-rheims bible", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "douay-rheims_version", "hint": "synonyms for douay-rheims version", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "douay_bible", "hint": "synonyms for douay bible", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "douay_version", "hint": "synonyms for douay version", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "double-crosser", "hint": "synonyms for double-crosser", "clues": ["betrayer", "double-dealer", "traitor", "two-timer", "double-crosser"]}, {"answer": "double-dealer", "hint": "synonyms for double-dealer", "clues": ["betrayer", "traitor", "double-crosser", "two-timer", "double-dealer"]}, {"answer": "double-decker", "hint": "synonyms for double-decker", "clues": ["omnibus", "coach", "autobus", "motorcoach", "jitney", "charabanc", "motorbus", "passenger vehicle", "bus", "double-decker"]}, {"answer": "double_bass", "hint": "synonyms for double bass", "clues": ["bass fiddle", "bull fiddle", "string bass", "contrabass", "bass viol", "double bass"]}, {"answer": "doubles", "hint": "synonyms for doubles", "clues": ["two-base hit", "double", "stunt woman", "two-baser", "doubling", "two-bagger", "look-alike", "image"]}, {"answer": "doubt", "hint": "synonyms for doubt", "clues": ["incertitude", "uncertainty", "doubtfulness", "question", "dubiety", "dubiousness", "doubt"]}, {"answer": "doubtfulness", "hint": "synonyms for doubtfulness", "clues": ["incertitude", "uncertainty", "doubt", "question", "dubiety", "dubiousness", "doubtfulness"]}, {"answer": "doubting_thomas", "hint": "synonyms for doubting thomas", "clues": ["Thomas", "doubting Thomas", "Saint Thomas", "Thomas the doubting Apostle", "St. Thomas"]}, {"answer": "dough", "hint": "synonyms for dough", "clues": ["clams", "dinero", "bread", "lettuce", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "dough"]}, {"answer": "doughnut", "hint": "synonyms for doughnut", "clues": ["donut", "ring", "halo", "anchor ring", "sinker", "annulus", "doughnut"]}, {"answer": "douglass", "hint": "synonyms for douglass", "clues": ["Stephen A. Douglas", "Douglas", "Little Giant", "Frederick Douglass"]}, {"answer": "dove", "hint": "synonyms for dove", "clues": ["peacenik", "squab", "Columba", "Dove"]}, {"answer": "dowding", "hint": "synonyms for dowding", "clues": ["Dowdy", "Hugh Dowding", "Dowding", "Baron Hugh Caswall Tremenheere Dowding"]}, {"answer": "downfall", "hint": "synonyms for downfall", "clues": ["ruin", "fall", "precipitation", "ruination", "downfall"]}, {"answer": "downheartedness", "hint": "synonyms for downheartedness", "clues": ["lowness", "dejectedness", "low-spiritedness", "dispiritedness", "downheartedness"]}, {"answer": "downpour", "hint": "synonyms for downpour", "clues": ["deluge", "torrent", "pelter", "cloudburst", "soaker", "waterspout", "downpour"]}, {"answer": "downslope", "hint": "synonyms for downslope", "clues": ["declension", "descent", "declivity", "declination", "decline", "fall", "downslope"]}, {"answer": "dowser", "hint": "synonyms for dowser", "clues": ["divining rod", "waterfinder", "rhabdomancer", "water witch", "dowsing rod", "dowser"]}, {"answer": "dowsing_rod", "hint": "synonyms for dowsing rod", "clues": ["divining rod", "waterfinder", "dowser", "dowsing rod"]}, {"answer": "dozens", "hint": "synonyms for dozens", "clues": ["scads", "slews", "heaps", "lots", "tons", "12", "dozen", "wads", "gobs", "rafts", "lashings", "oodles", "scores", "stacks", "loads", "XII", "piles", "twelve"]}, {"answer": "dprk", "hint": "synonyms for dprk", "clues": ["Democratic People's Republic of Korea", "D.P.R.K.", "DPRK", "North Korea"]}, {"answer": "dr.", "hint": "synonyms for dr.", "clues": ["physician", "doc", "doctor", "Dr.", "medico", "MD"]}, {"answer": "dr._j", "hint": "synonyms for dr. j", "clues": ["Dr. J", "Erving", "Julius Erving", "Julius Winfield Erving"]}, {"answer": "drachm", "hint": "synonyms for drachm", "clues": ["fluid drachm", "dram", "drachma", "fluidram"]}, {"answer": "draft", "hint": "synonyms for draft", "clues": ["selective service", "potation", "tipple", "rough drawing", "conscription", "draught", "bill of exchange", "order of payment", "gulp", "swig", "drawing", "draft copy", "muster", "draft"]}, {"answer": "dragon", "hint": "synonyms for dragon", "clues": ["Draco", "tartar", "Dragon", "firedrake"]}, {"answer": "drainage_area", "hint": "synonyms for drainage area", "clues": ["drainage basin", "catchment basin", "catchment area", "river basin", "basin", "watershed", "drainage area"]}, {"answer": "drainage_basin", "hint": "synonyms for drainage basin", "clues": ["catchment basin", "catchment area", "river basin", "basin", "watershed", "drainage area", "drainage basin"]}, {"answer": "dramatic_art", "hint": "synonyms for dramatic art", "clues": ["theater", "dramatics", "dramaturgy", "dramatic art"]}, {"answer": "dramatics", "hint": "synonyms for dramatics", "clues": ["dramatic art", "theater", "dramaturgy", "dramatics"]}, {"answer": "dramaturgy", "hint": "synonyms for dramaturgy", "clues": ["dramatic art", "dramatics", "theatre", "dramaturgy"]}, {"answer": "drape", "hint": "synonyms for drape", "clues": ["drapery", "curtain", "mantle", "pall", "drape"]}, {"answer": "drapery", "hint": "synonyms for drapery", "clues": ["pall", "curtain", "mantle", "drape", "drapery"]}, {"answer": "draught", "hint": "synonyms for draught", "clues": ["draft", "potation", "gulp", "swig", "tipple", "drawing", "draught"]}, {"answer": "draughts", "hint": "synonyms for draughts", "clues": ["potation", "tipple", "draught", "checkers", "draft", "gulp", "swig", "drawing"]}, {"answer": "draw", "hint": "synonyms for draw", "clues": ["standoff", "tie", "attracter", "lot", "draw play", "draw poker", "drawing card", "attraction", "hook", "haul", "haulage", "draw"]}, {"answer": "drawers", "hint": "synonyms for drawers", "clues": ["pants", "boxershorts", "knickers", "draftsman", "boxers", "underdrawers", "drawer", "shorts", "bloomers"]}, {"answer": "drawing", "hint": "synonyms for drawing", "clues": ["drafting", "drawing off", "draught", "lottery", "draftsmanship", "drawing"]}, {"answer": "drawing-room_car", "hint": "synonyms for drawing-room car", "clues": ["parlour car", "palace car", "chair car", "drawing-room car"]}, {"answer": "drawing_card", "hint": "synonyms for drawing card", "clues": ["loss leader", "attracter", "attraction", "draw", "leader", "drawing card"]}, {"answer": "dream", "hint": "synonyms for dream", "clues": ["dreaming", "aspiration", "ambition", "pipe dream"]}, {"answer": "drepanocytic_anaemia", "hint": "synonyms for drepanocytic anaemia", "clues": ["crescent-cell anemia", "sickle-cell disease", "sickle-cell anaemia", "drepanocytic anemia"]}, {"answer": "drepanocytic_anemia", "hint": "synonyms for drepanocytic anemia", "clues": ["crescent-cell anemia", "sickle-cell disease", "sickle-cell anaemia", "drepanocytic anaemia"]}, {"answer": "dress_hat", "hint": "synonyms for dress hat", "clues": ["high hat", "silk hat", "top hat", "beaver", "stovepipe", "opera hat", "topper", "dress hat"]}, {"answer": "dress_suit", "hint": "synonyms for dress suit", "clues": ["white tie and tails", "tailcoat", "white tie", "full dress", "tails", "dress suit"]}, {"answer": "dresser", "hint": "synonyms for dresser", "clues": ["chest of drawers", "chest", "vanity", "bureau", "dressing table", "toilet table", "actor's assistant", "dresser"]}, {"answer": "dressing", "hint": "synonyms for dressing", "clues": ["binding", "medical dressing", "fertilization", "stuffing", "bandaging", "grooming", "salad dressing", "fecundation", "dressing"]}, {"answer": "dressing_down", "hint": "synonyms for dressing down", "clues": ["chewing out", "bawling out", "castigation", "earful", "going-over", "upbraiding", "dressing down"]}, {"answer": "dressmaker", "hint": "synonyms for dressmaker", "clues": ["modiste", "needlewoman", "sempstress", "dressmaker"]}, {"answer": "dribble", "hint": "synonyms for dribble", "clues": ["dribbling", "trickle", "drip", "drool", "slobber", "drivel", "dribble"]}, {"answer": "drier", "hint": "synonyms for drier", "clues": ["siccative", "drying agent", "desiccant", "dryer", "drier"]}, {"answer": "drift", "hint": "synonyms for drift", "clues": ["trend", "heading", "impetus", "movement", "gallery", "impulsion", "purport", "drift"]}, {"answer": "drill", "hint": "synonyms for drill", "clues": ["exercise", "recitation", "practice", "practice session", "drill"]}, {"answer": "drink", "hint": "synonyms for drink", "clues": ["swallow", "potable", "deglutition", "boozing", "beverage", "drinkable", "crapulence", "drinking", "drunkenness"]}, {"answer": "drinking", "hint": "synonyms for drinking", "clues": ["drink", "imbibition", "imbibing", "boozing", "drunkenness", "crapulence"]}, {"answer": "drip", "hint": "synonyms for drip", "clues": ["dripping", "trickle", "drip mould", "dribble", "drip"]}, {"answer": "drippiness", "hint": "synonyms for drippiness", "clues": ["mushiness", "mawkishness", "sentimentality", "sloppiness", "soupiness", "drippiness"]}, {"answer": "drive", "hint": "synonyms for drive", "clues": ["campaign", "private road", "ride", "crusade", "parkway", "driving", "effort", "movement", "driving force", "thrust", "cause", "driveway", "drive"]}, {"answer": "drivel", "hint": "synonyms for drivel", "clues": ["dribble", "garbage", "drool", "slobber", "drivel"]}, {"answer": "driveller", "hint": "synonyms for driveller", "clues": ["slobberer", "drooler", "jabberer", "dribbler", "driveller"]}, {"answer": "drogue", "hint": "synonyms for drogue", "clues": ["air sock", "drogue chute", "sea anchor", "wind cone", "wind sock", "sock", "air-sleeve", "wind sleeve", "drogue"]}, {"answer": "drollery", "hint": "synonyms for drollery", "clues": ["clowning", "comedy", "funniness", "waggery", "drollery"]}, {"answer": "drone", "hint": "synonyms for drone", "clues": ["radio-controlled aircraft", "lagger", "pilotless aircraft", "bourdon", "drone pipe", "droning", "monotone", "laggard", "trailer", "poke", "dawdler", "drone"]}, {"answer": "drool", "hint": "synonyms for drool", "clues": ["tommyrot", "tarradiddle", "tosh", "drivel", "baloney", "bilgewater", "bosh", "slobber", "twaddle", "dribble", "humbug", "drool"]}, {"answer": "drop", "hint": "synonyms for drop", "clues": ["bead", "dip", "pearl", "drop cloth", "driblet", "free fall", "drop curtain", "drop-off", "drib", "cliff", "fall", "drop"]}, {"answer": "drop-off", "hint": "synonyms for drop-off", "clues": ["decrease", "falloff", "slack", "drop", "slump", "lessening", "falling off", "cliff", "drop-off"]}, {"answer": "drop_line", "hint": "synonyms for drop line", "clues": ["stagger head", "stephead", "dropline", "stepped line"]}, {"answer": "dropline", "hint": "synonyms for dropline", "clues": ["drop line", "stagger head", "stephead", "stepped line"]}, {"answer": "drubbing", "hint": "synonyms for drubbing", "clues": ["licking", "lacing", "trouncing", "walloping", "slaughter", "beating", "debacle", "whipping", "thrashing", "whacking", "drubbing"]}, {"answer": "drudge", "hint": "synonyms for drudge", "clues": ["hacker", "peon", "galley slave", "hack", "navvy", "drudge"]}, {"answer": "drug_dealer", "hint": "synonyms for drug dealer", "clues": ["drug trafficker", "drug peddler", "peddler", "pusher", "drug dealer"]}, {"answer": "drug_peddler", "hint": "synonyms for drug peddler", "clues": ["drug dealer", "pusher", "peddler", "drug trafficker", "drug peddler"]}, {"answer": "drug_trafficker", "hint": "synonyms for drug trafficker", "clues": ["drug dealer", "drug peddler", "peddler", "pusher", "drug trafficker"]}, {"answer": "druggist", "hint": "synonyms for druggist", "clues": ["pill roller", "pharmacist", "chemist", "apothecary", "pill pusher", "druggist"]}, {"answer": "drugstore", "hint": "synonyms for drugstore", "clues": ["chemist's shop", "chemist's", "pharmacy", "apothecary's shop", "drugstore"]}, {"answer": "drum", "hint": "synonyms for drum", "clues": ["metal drum", "membranophone", "brake drum", "barrel", "tympan", "drum"]}, {"answer": "drunkard", "hint": "synonyms for drunkard", "clues": ["wino", "inebriate", "rummy", "drunk", "sot", "drunkard"]}, {"answer": "drunken_revelry", "hint": "synonyms for drunken revelry", "clues": ["orgy", "debauch", "riot", "saturnalia", "bacchanal", "debauchery", "drunken revelry"]}, {"answer": "drunkenness", "hint": "synonyms for drunkenness", "clues": ["drink", "alcoholism", "inebriety", "inebriation", "alcohol addiction", "crapulence", "intoxication", "insobriety", "tipsiness", "boozing", "drunkenness"]}, {"answer": "dry_land", "hint": "synonyms for dry land", "clues": ["terra firma", "land", "solid ground", "ground", "earth", "dry land"]}, {"answer": "dryness", "hint": "synonyms for dryness", "clues": ["dispassion", "xerotes", "sobriety", "waterlessness", "dispassionateness", "dryness"]}, {"answer": "ds", "hint": "synonyms for ds", "clues": ["Bureau of Diplomatic Security", "Ds", "darmstadtium", "cholecalciferol", "Doctor of Science", "viosterol", "five hundred", "ScD", "element 110", "500", "atomic number 110", "ergocalciferol", "calciferol", "vitamin D"]}, {"answer": "du_maurier", "hint": "synonyms for du maurier", "clues": ["Daphne du Maurier", "George du Maurier", "George Louis Palmella Busson du Maurier", "du Maurier"]}, {"answer": "duad", "hint": "synonyms for duad", "clues": ["brace", "couplet", "duo", "twain", "duet", "twosome", "distich", "dyad", "yoke", "pair", "span", "duad"]}, {"answer": "dubiety", "hint": "synonyms for dubiety", "clues": ["incertitude", "uncertainty", "doubtfulness", "doubt", "dubiousness", "dubiety"]}, {"answer": "dubiousness", "hint": "synonyms for dubiousness", "clues": ["incertitude", "uncertainty", "doubt", "question", "dubiety", "doubtfulness", "dubiousness"]}, {"answer": "dubnium", "hint": "synonyms for dubnium", "clues": ["atomic number 105", "element 105", "Db", "hahnium", "dubnium"]}, {"answer": "dubya", "hint": "synonyms for dubya", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "Dubya", "Dubyuh", "Bush"]}, {"answer": "dubyuh", "hint": "synonyms for dubyuh", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "Dubya", "Dubyuh", "Bush"]}, {"answer": "duc_de_richelieu", "hint": "synonyms for duc de richelieu", "clues": ["Armand Jean du Plessis", "Cardinal Richelieu", "Richelieu", "Duc de Richelieu"]}, {"answer": "duchess_of_windsor", "hint": "synonyms for duchess of windsor", "clues": ["Duchess of Windsor", "Wallis Warfield Simpson", "Mrs. Simpson", "Wallis Warfield Windsor", "Simpson"]}, {"answer": "duck_soup", "hint": "synonyms for duck soup", "clues": ["snap", "cinch", "pushover", "child's play", "picnic", "piece of cake", "walkover", "breeze", "duck soup"]}, {"answer": "ducking", "hint": "synonyms for ducking", "clues": ["dousing", "submersion", "immersion", "duck hunting", "ducking"]}, {"answer": "ducky", "hint": "synonyms for ducky", "clues": ["deary", "favourite", "pet", "dearie", "darling", "ducky"]}, {"answer": "dude", "hint": "synonyms for dude", "clues": ["fashion plate", "fop", "buster", "dandy", "gallant", "sheik", "clotheshorse", "beau", "swell", "fellow", "dude"]}, {"answer": "duds", "hint": "synonyms for duds", "clues": ["dud", "flop", "washout", "togs", "turkey", "bomb", "threads", "misfire"]}, {"answer": "duet", "hint": "synonyms for duet", "clues": ["duette", "brace", "couplet", "pas de deux", "dyad", "duo", "twain", "twosome", "distich", "duad", "yoke", "pair", "span", "duet"]}, {"answer": "duke_of_cumberland", "hint": "synonyms for duke of cumberland", "clues": ["Duke of Cumberland", "Butcher Cumberland", "Cumberland", "William Augustus"]}, {"answer": "duke_of_wellington", "hint": "synonyms for duke of wellington", "clues": ["Iron Duke", "Duke of Wellington", "Arthur Wellesley", "Wellington"]}, {"answer": "dullard", "hint": "synonyms for dullard", "clues": ["pudding head", "poor fish", "stupid person", "bore", "pudden-head", "dolt", "stupe", "stupid", "pillock", "dullard"]}, {"answer": "dumbass", "hint": "synonyms for dumbass", "clues": ["dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "dumbass"]}, {"answer": "dumbbell", "hint": "synonyms for dumbbell", "clues": ["dope", "boob", "dummy", "pinhead", "dumbbell"]}, {"answer": "dump", "hint": "synonyms for dump", "clues": ["dumpsite", "rubbish dump", "shit", "garbage dump", "waste-yard", "trash dump", "dump"]}, {"answer": "dump_truck", "hint": "synonyms for dump truck", "clues": ["tip truck", "tipper lorry", "dumper", "tipper", "dump truck"]}, {"answer": "dumper", "hint": "synonyms for dumper", "clues": ["tip truck", "tipper lorry", "tipper", "dump truck", "dumper"]}, {"answer": "dumps", "hint": "synonyms for dumps", "clues": ["dumpsite", "garbage dump", "trash dump", "mopes", "wasteyard", "rubbish dump", "shit", "dump"]}, {"answer": "dumpsite", "hint": "synonyms for dumpsite", "clues": ["rubbish dump", "garbage dump", "waste-yard", "trash dump", "dump", "dumpsite"]}, {"answer": "dunce", "hint": "synonyms for dunce", "clues": ["dumbass", "fuckhead", "dunderhead", "hammerhead", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "dunce"]}, {"answer": "dunderhead", "hint": "synonyms for dunderhead", "clues": ["dumbass", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "dunderhead"]}, {"answer": "dunkers", "hint": "synonyms for dunkers", "clues": ["Tunker", "Dunker", "Dippers", "Dunkard", "Church of the Brethren"]}, {"answer": "duo", "hint": "synonyms for duo", "clues": ["duette", "brace", "couplet", "dyad", "twain", "duet", "twosome", "distich", "duad", "yoke", "pair", "span", "duo"]}, {"answer": "dupery", "hint": "synonyms for dupery", "clues": ["fraudulence", "put-on", "humbug", "hoax", "fraud", "dupery"]}, {"answer": "dusanbe", "hint": "synonyms for dusanbe", "clues": ["Stalinabad", "Dusanbe", "Dyushambe", "capital of Tajikistan"]}, {"answer": "dushanbe", "hint": "synonyms for dushanbe", "clues": ["Stalinabad", "Dusanbe", "Dyushambe", "capital of Tajikistan"]}, {"answer": "dusk", "hint": "synonyms for dusk", "clues": ["gloaming", "twilight", "crepuscule", "evenfall", "nightfall", "fall", "dusk"]}, {"answer": "dust", "hint": "synonyms for dust", "clues": ["debris", "junk", "detritus", "rubble", "dust"]}, {"answer": "dust_coat", "hint": "synonyms for dust coat", "clues": ["duster", "gabardine", "smock", "dust coat"]}, {"answer": "dust_cover", "hint": "synonyms for dust cover", "clues": ["dust sheet", "book jacket", "dust wrapper", "dust jacket", "dust cover"]}, {"answer": "dustbin", "hint": "synonyms for dustbin", "clues": ["ash bin", "trash can", "garbage can", "ashcan", "trash barrel", "wastebin", "dustbin"]}, {"answer": "duster", "hint": "synonyms for duster", "clues": ["gaberdine", "sandstorm", "sirocco", "dustcloth", "dust storm", "dustrag", "smock", "dust coat", "duster"]}, {"answer": "dustman", "hint": "synonyms for dustman", "clues": ["refuse collector", "garbage collector", "garbage man", "garbage carter", "garbage hauler", "dustman"]}, {"answer": "dustup", "hint": "synonyms for dustup", "clues": ["quarrel", "words", "wrangle", "run-in", "row", "dustup"]}, {"answer": "dutch_florin", "hint": "synonyms for dutch florin", "clues": ["florin", "guilder", "Dutch florin", "gulden"]}, {"answer": "dutch_guiana", "hint": "synonyms for dutch guiana", "clues": ["Suriname", "Dutch Guiana", "Republic of Suriname", "Netherlands Guiana"]}, {"answer": "dutch_leonard", "hint": "synonyms for dutch leonard", "clues": ["Dutch Leonard", "Elmore Leonard", "Leonard", "Elmore John Leonard"]}, {"answer": "duty_tour", "hint": "synonyms for duty tour", "clues": ["tour", "hitch", "enlistment", "tour of duty", "term of enlistment", "duty tour"]}, {"answer": "duvalier", "hint": "synonyms for duvalier", "clues": ["Baby Doc", "Papa Doc", "Francois Duvalier", "Jean-Claude Duvalier", "Duvalier"]}, {"answer": "dweeb", "hint": "synonyms for dweeb", "clues": ["grind", "nerd", "swot", "wonk", "dweeb"]}, {"answer": "dwelling", "hint": "synonyms for dwelling", "clues": ["abode", "habitation", "home", "dwelling house", "domicile", "dwelling"]}, {"answer": "dwelling_house", "hint": "synonyms for dwelling house", "clues": ["abode", "habitation", "home", "domicile", "dwelling", "dwelling house"]}, {"answer": "dwight_d._eisenhower", "hint": "synonyms for dwight d. eisenhower", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "dwight_david_eisenhower", "hint": "synonyms for dwight david eisenhower", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "dwight_eisenhower", "hint": "synonyms for dwight eisenhower", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "dyad", "hint": "synonyms for dyad", "clues": ["brace", "couplet", "duo", "twain", "duet", "twosome", "distich", "duad", "yoke", "pair", "span", "dyad"]}, {"answer": "dynamism", "hint": "synonyms for dynamism", "clues": ["oomph", "heartiness", "zing", "pizzaz", "vigor", "dynamism"]}, {"answer": "dysostosis_multiplex", "hint": "synonyms for dysostosis multiplex", "clues": ["lipochondrodystrophy", "Hurler's disease", "gargoylism", "Hurler's syndrome", "dysostosis multiplex"]}, {"answer": "dyushambe", "hint": "synonyms for dyushambe", "clues": ["Stalinabad", "Dusanbe", "Dyushambe", "capital of Tajikistan"]}, {"answer": "e", "hint": "synonyms for e", "clues": ["eastward", "vitamin E", "tocopherol", "east", "atomic number 99", "E", "einsteinium", "due east"]}, {"answer": "e-mycin", "hint": "synonyms for e-mycin", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "e._a._von_willebrand", "hint": "synonyms for e. a. von willebrand", "clues": ["Willebrand", "Erik Adolf von Willebrand", "E. A. von Willebrand", "von Willebrand"]}, {"answer": "e._t._a._hoffmann", "hint": "synonyms for e. t. a. hoffmann", "clues": ["Hoffmann", "Ernst Theodor Wilhelm Hoffmann", "E. T. A. Hoffmann", "Ernst Theodor Amadeus Hoffmann"]}, {"answer": "e._t._s._walton", "hint": "synonyms for e. t. s. walton", "clues": ["Ernest Thomas Sinton Walton", "Walton", "Ernest Walton", "E. T. S. Walton"]}, {"answer": "e._w._morley", "hint": "synonyms for e. w. morley", "clues": ["Edward Morley", "Edward Williams Morley", "Morley", "E. W. Morley"]}, {"answer": "e.s.p.", "hint": "synonyms for e.s.p.", "clues": ["ESP", "clairvoyance", "extrasensory perception", "second sight", "E.S.P."]}, {"answer": "e_layer", "hint": "synonyms for e layer", "clues": ["E region", "Kennelly-Heaviside layer", "Heaviside layer", "E layer"]}, {"answer": "e_region", "hint": "synonyms for e region", "clues": ["E region", "Kennelly-Heaviside layer", "Heaviside layer", "E layer"]}, {"answer": "eager_beaver", "hint": "synonyms for eager beaver", "clues": ["busy bee", "live wire", "sharpy", "sharpie", "eager beaver"]}, {"answer": "eagerness", "hint": "synonyms for eagerness", "clues": ["forwardness", "readiness", "avidness", "avidity", "keenness", "zeal", "eagerness"]}, {"answer": "eagre", "hint": "synonyms for eagre", "clues": ["tidal bore", "eager", "bore", "aegir", "eagre"]}, {"answer": "ear-nose-and-throat_doctor", "hint": "synonyms for ear-nose-and-throat doctor", "clues": ["ENT man", "rhinolaryngologist", "otolaryngologist", "ear-nose-and-throat doctor"]}, {"answer": "ear_canal", "hint": "synonyms for ear canal", "clues": ["acoustic meatus", "auditory canal", "auditory meatus", "external auditory canal", "ear canal"]}, {"answer": "earful", "hint": "synonyms for earful", "clues": ["chewing out", "bawling out", "castigation", "dressing down", "going-over", "upbraiding", "earful"]}, {"answer": "earl_of_warwick", "hint": "synonyms for earl of warwick", "clues": ["Richard Neville", "Earl of Warwick", "Warwick", "Kingmaker"]}, {"answer": "earl_russell", "hint": "synonyms for earl russell", "clues": ["Earl Russell", "Russell", "Bertrand Arthur William Russell", "Bertrand Russell"]}, {"answer": "earnings", "hint": "synonyms for earnings", "clues": ["remuneration", "salary", "profits", "net", "net profit", "pay", "wage", "net income", "lucre", "earnings"]}, {"answer": "earth", "hint": "synonyms for earth", "clues": ["worldly concern", "solid ground", "ground", "dry land", "terra firma", "Earth", "globe", "land", "world", "earthly concern"]}, {"answer": "earth_wax", "hint": "synonyms for earth wax", "clues": ["ader wax", "ozocerite", "mineral wax", "earth wax"]}, {"answer": "earthnut", "hint": "synonyms for earthnut", "clues": ["peanut", "truffle", "goober", "monkey nut", "goober pea", "groundnut", "earthnut"]}, {"answer": "ease", "hint": "synonyms for ease", "clues": ["repose", "simplicity", "rest", "comfort", "informality", "easiness", "simpleness", "relief", "relaxation", "ease"]}, {"answer": "easiness", "hint": "synonyms for easiness", "clues": ["relaxation", "ease", "simplicity", "simpleness", "easiness"]}, {"answer": "easing", "hint": "synonyms for easing", "clues": ["alleviation", "relief", "moderation", "easement", "easing"]}, {"answer": "eastern_church", "hint": "synonyms for eastern church", "clues": ["Orthodox Catholic Church", "Eastern Orthodox", "Byzantine Church", "Eastern Orthodox Church", "Eastern Church", "Orthodox Church"]}, {"answer": "eastern_orthodox_church", "hint": "synonyms for eastern orthodox church", "clues": ["Orthodox Catholic Church", "Eastern Orthodox", "Eastern Orthodox Church", "Eastern Church", "Orthodox Church"]}, {"answer": "eastern_sioux", "hint": "synonyms for eastern sioux", "clues": ["Eastern Sioux", "Santee Sioux", "Santee Dakota", "Santee"]}, {"answer": "easy_lay", "hint": "synonyms for easy lay", "clues": ["soap", "Georgia home boy", "grievous bodily harm", "max", "scoop", "goop", "liquid ecstasy", "easy lay"]}, {"answer": "eatage", "hint": "synonyms for eatage", "clues": ["grass", "pasturage", "forage", "eatage"]}, {"answer": "eating_away", "hint": "synonyms for eating away", "clues": ["wearing", "erosion", "wearing away", "eroding"]}, {"answer": "eaton-lambert_syndrome", "hint": "synonyms for eaton-lambert syndrome", "clues": ["carcinomatous myopathy", "myasthenic syndrome", "Lambert-Eaton syndrome", "Eaton-Lambert syndrome"]}, {"answer": "eb", "hint": "synonyms for eb", "clues": ["EiB", "EB", "exabyte", "Ebit", "exbibyte", "exabit"]}, {"answer": "ebonics", "hint": "synonyms for ebonics", "clues": ["AAVE", "African American Vernacular English", "African American English", "Black English", "Black Vernacular English", "Black Vernacular", "Ebonics", "Black English Vernacular"]}, {"answer": "ebs", "hint": "synonyms for ebs", "clues": ["east by south", "EiB", "EB", "exabyte", "Ebit", "exbibyte", "exabit"]}, {"answer": "ebullition", "hint": "synonyms for ebullition", "clues": ["outburst", "effusion", "blowup", "gush", "ebullition"]}, {"answer": "ec", "hint": "synonyms for ec", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "eccentric_person", "hint": "synonyms for eccentric person", "clues": ["oddball", "geek", "flake", "eccentric", "eccentric person"]}, {"answer": "ecclesiasticus", "hint": "synonyms for ecclesiasticus", "clues": ["Ben Sira", "Sirach", "Wisdom of Jesus the Son of Sirach", "Ecclesiasticus"]}, {"answer": "eccyesis", "hint": "synonyms for eccyesis", "clues": ["extrauterine pregnancy", "extrauterine gestation", "metacyesis", "ectopic gestation", "ectopic pregnancy", "eccyesis"]}, {"answer": "ecdysiast", "hint": "synonyms for ecdysiast", "clues": ["stripper", "stripteaser", "peeler", "striptease artist", "exotic dancer", "ecdysiast"]}, {"answer": "ecg", "hint": "synonyms for ecg", "clues": ["electrocardiogram", "cardiogram", "EKG", "ECG"]}, {"answer": "echo", "hint": "synonyms for echo", "clues": ["replication", "sound reflection", "Echo", "reverberation"]}, {"answer": "eclat", "hint": "synonyms for eclat", "clues": ["plaudits", "acclaim", "acclamation", "pomp", "eclat"]}, {"answer": "economic_consumption", "hint": "synonyms for economic consumption", "clues": ["consumption", "usance", "use of goods and services", "use", "economic consumption"]}, {"answer": "ecstasy", "hint": "synonyms for ecstasy", "clues": ["go", "Adam", "hug drug", "rapture", "cristal", "XTC", "transport", "disco biscuit", "exaltation", "X", "raptus", "ecstasy"]}, {"answer": "ect", "hint": "synonyms for ect", "clues": ["electroshock", "electroshock therapy", "electroconvulsive therapy", "ECT"]}, {"answer": "ectopic_gestation", "hint": "synonyms for ectopic gestation", "clues": ["extrauterine pregnancy", "extrauterine gestation", "metacyesis", "eccyesis", "ectopic pregnancy", "ectopic gestation"]}, {"answer": "ectopic_pregnancy", "hint": "synonyms for ectopic pregnancy", "clues": ["extrauterine pregnancy", "extrauterine gestation", "metacyesis", "eccyesis", "ectopic gestation", "ectopic pregnancy"]}, {"answer": "edacity", "hint": "synonyms for edacity", "clues": ["voraciousness", "rapacity", "ravenousness", "rapaciousness", "esurience", "voracity", "edacity"]}, {"answer": "edda", "hint": "synonyms for edda", "clues": ["cocoyam", "Edda", "taro", "taro root", "dasheen"]}, {"answer": "eddy", "hint": "synonyms for eddy", "clues": ["Mary Morse Baker Eddy", "Eddy", "twist", "Mary Baker Eddy"]}, {"answer": "eden", "hint": "synonyms for eden", "clues": ["heaven", "nirvana", "Garden of Eden", "promised land", "Eden", "Shangri-la", "paradise"]}, {"answer": "edge", "hint": "synonyms for edge", "clues": ["boundary", "sharpness", "border", "bound", "edge"]}, {"answer": "edict", "hint": "synonyms for edict", "clues": ["order", "rescript", "decree", "fiat", "edict"]}, {"answer": "edith_giovanna_gassion", "hint": "synonyms for edith giovanna gassion", "clues": ["Little Sparrow", "Piaf", "Edith Piaf", "Edith Giovanna Gassion"]}, {"answer": "edith_piaf", "hint": "synonyms for edith piaf", "clues": ["Little Sparrow", "Piaf", "Edith Piaf", "Edith Giovanna Gassion"]}, {"answer": "edo", "hint": "synonyms for edo", "clues": ["Edo", "Yeddo", "Japanese capital", "Tokyo", "capital of Japan", "Tokio"]}, {"answer": "education", "hint": "synonyms for education", "clues": ["training", "breeding", "teaching", "Education Department", "instruction", "didactics", "Education", "pedagogy", "Department of Education", "educational activity"]}, {"answer": "educational_activity", "hint": "synonyms for educational activity", "clues": ["didactics", "pedagogy", "teaching", "instruction", "education", "educational activity"]}, {"answer": "edward", "hint": "synonyms for edward", "clues": ["Edward VIII", "Duke of Windsor", "Edward I", "Prince Edward", "Edward Antony Richard Louis", "Albert Edward", "Black Prince"]}, {"answer": "edward_benjamin_britten", "hint": "synonyms for edward benjamin britten", "clues": ["Benjamin Britten", "Edward Benjamin Britten", "Britten", "Lord Britten of Aldeburgh"]}, {"answer": "edward_george_earle_bulwer-lytton", "hint": "synonyms for edward george earle bulwer-lytton", "clues": ["Edward George Earle Bulwer-Lytton", "Bulwer-Lytton", "Lytton", "First Baron Lytton"]}, {"answer": "edward_morley", "hint": "synonyms for edward morley", "clues": ["Edward Morley", "Edward Williams Morley", "Morley", "E. W. Morley"]}, {"answer": "edward_teach", "hint": "synonyms for edward teach", "clues": ["Edward Teach", "Blackbeard", "Thatch", "Teach"]}, {"answer": "edward_thatch", "hint": "synonyms for edward thatch", "clues": ["Edward Teach", "Blackbeard", "Thatch", "Teach"]}, {"answer": "edward_williams_morley", "hint": "synonyms for edward williams morley", "clues": ["Edward Morley", "Edward Williams Morley", "Morley", "E. W. Morley"]}, {"answer": "edwards", "hint": "synonyms for edwards", "clues": ["Edward VIII", "Duke of Windsor", "Edward I", "Prince Edward", "Edwards", "Edward Antony Richard Louis", "Jonathan Edwards", "Albert Edward", "Black Prince"]}, {"answer": "eec", "hint": "synonyms for eec", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "effect", "hint": "synonyms for effect", "clues": ["event", "outcome", "core", "gist", "upshot", "essence", "issue", "impression", "result", "consequence", "force", "burden", "effect"]}, {"answer": "effectiveness", "hint": "synonyms for effectiveness", "clues": ["effectualness", "effectivity", "strength", "effectuality", "potency", "effectiveness"]}, {"answer": "effects", "hint": "synonyms for effects", "clues": ["event", "outcome", "core", "gist", "upshot", "essence", "issue", "impression", "effect", "result", "personal effects", "consequence", "force", "burden"]}, {"answer": "effeminacy", "hint": "synonyms for effeminacy", "clues": ["unmanliness", "womanishness", "effeminateness", "sissiness", "softness", "effeminacy"]}, {"answer": "effeminateness", "hint": "synonyms for effeminateness", "clues": ["unmanliness", "womanishness", "sissiness", "effeminacy", "softness", "effeminateness"]}, {"answer": "efflorescence", "hint": "synonyms for efflorescence", "clues": ["anthesis", "flower", "bloom", "heyday", "flush", "rash", "roseola", "blossoming", "inflorescence", "skin rash", "peak", "prime", "efflorescence"]}, {"answer": "effort", "hint": "synonyms for effort", "clues": ["campaign", "cause", "elbow grease", "endeavor", "exertion", "exploit", "attempt", "travail", "crusade", "drive", "movement", "sweat", "feat", "try", "effort"]}, {"answer": "effulgence", "hint": "synonyms for effulgence", "clues": ["refulgency", "radiancy", "shine", "effulgence"]}, {"answer": "effusion", "hint": "synonyms for effusion", "clues": ["gush", "outburst", "blowup", "ebullition", "effusion"]}, {"answer": "egadi_islands", "hint": "synonyms for egadi islands", "clues": ["Aegadean Isles", "Aegates", "Egadi Islands", "Isole Egadi"]}, {"answer": "egg", "hint": "synonyms for egg", "clues": ["eggs", "bollock", "nut", "orchis", "ball", "testicle", "testis"]}, {"answer": "eggbeater", "hint": "synonyms for eggbeater", "clues": ["eggwhisk", "helicopter", "chopper", "whirlybird", "eggbeater"]}, {"answer": "eggs", "hint": "synonyms for eggs", "clues": ["egg", "bollock", "nut", "orchis", "ball", "testicle", "testis"]}, {"answer": "egocentrism", "hint": "synonyms for egocentrism", "clues": ["self-interest", "self-concern", "egoism", "self-centeredness", "egocentrism"]}, {"answer": "egoism", "hint": "synonyms for egoism", "clues": ["self-interest", "self-concern", "egocentrism", "self-centeredness", "egoism"]}, {"answer": "egress", "hint": "synonyms for egress", "clues": ["egression", "emergence", "issue", "emersion", "egress"]}, {"answer": "egypt", "hint": "synonyms for egypt", "clues": ["Egyptian Empire", "Egypt", "Arab Republic of Egypt", "United Arab Republic"]}, {"answer": "egyptian_capital", "hint": "synonyms for egyptian capital", "clues": ["Cairo", "Al Qahira", "capital of Egypt", "Egyptian capital"]}, {"answer": "egyptian_islamic_jihad", "hint": "synonyms for egyptian islamic jihad", "clues": ["Islamic Jihad", "al-Jihad", "Egyptian Islamic Jihad", "Vanguards of Conquest"]}, {"answer": "eib", "hint": "synonyms for eib", "clues": ["exabyte", "EiB", "exbibyte", "EB"]}, {"answer": "eighter", "hint": "synonyms for eighter", "clues": ["VIII", "octet", "ogdoad", "eight", "octad", "octonary", "8", "eighter from Decatur", "eighter"]}, {"answer": "eighter_from_decatur", "hint": "synonyms for eighter from decatur", "clues": ["VIII", "octet", "ogdoad", "eight", "octad", "octonary", "8", "eighter from Decatur", "eighter"]}, {"answer": "eighth_cranial_nerve", "hint": "synonyms for eighth cranial nerve", "clues": ["nervus vestibulocochlearis", "acoustic nerve", "vestibulocochlear nerve", "auditory nerve", "eighth cranial nerve"]}, {"answer": "eighties", "hint": "synonyms for eighties", "clues": ["LXXX", "1880s", "1980s", "fourscore", "80", "mid-eighties", "eighty", "eighties"]}, {"answer": "einstein", "hint": "synonyms for einstein", "clues": ["brainiac", "mastermind", "Einstein", "Albert Einstein", "brain", "genius"]}, {"answer": "einstein's_general_theory_of_relativity", "hint": "synonyms for einstein's general theory of relativity", "clues": ["Einstein's general theory of relativity", "general theory of relativity", "general relativity theory", "general relativity"]}, {"answer": "einstein's_special_theory_of_relativity", "hint": "synonyms for einstein's special theory of relativity", "clues": ["special relativity", "Einstein's special theory of relativity", "special relativity theory", "special theory of relativity"]}, {"answer": "einstein's_theory_of_relativity", "hint": "synonyms for einstein's theory of relativity", "clues": ["relativity theory", "relativity", "Einstein's theory of relativity", "theory of relativity"]}, {"answer": "eire", "hint": "synonyms for eire", "clues": ["Irish Republic", "Republic of Ireland", "Eire", "Ireland"]}, {"answer": "eisenhower", "hint": "synonyms for eisenhower", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "ejaculate", "hint": "synonyms for ejaculate", "clues": ["semen", "seed", "come", "seminal fluid", "cum", "ejaculate"]}, {"answer": "ejection", "hint": "synonyms for ejection", "clues": ["projection", "riddance", "expulsion", "forcing out", "exclusion", "ejection"]}, {"answer": "ekg", "hint": "synonyms for ekg", "clues": ["electrocardiogram", "cardiogram", "EKG", "ECG"]}, {"answer": "el", "hint": "synonyms for el", "clues": ["overhead railway", "elevated railroad", "ALT", "altitude", "elevated railway", "elevated", "elevation", "EL"]}, {"answer": "el_beda", "hint": "synonyms for el beda", "clues": ["El Beda", "capital of Qatar", "Bida", "Doha"]}, {"answer": "el_caudillo", "hint": "synonyms for el caudillo", "clues": ["Francisco Franco", "El Caudillo", "General Franco", "Franco"]}, {"answer": "el_qahira", "hint": "synonyms for el qahira", "clues": ["Cairo", "Al Qahira", "capital of Egypt", "Egyptian capital"]}, {"answer": "elaborateness", "hint": "synonyms for elaborateness", "clues": ["elaboration", "involution", "intricacy", "ornateness", "elaborateness"]}, {"answer": "elaboration", "hint": "synonyms for elaboration", "clues": ["intricacy", "expansion", "refinement", "involution", "enlargement", "amplification", "working out", "elaborateness", "elaboration"]}, {"answer": "elan", "hint": "synonyms for elan", "clues": ["flair", "style", "ardor", "panache", "dash", "zeal", "elan"]}, {"answer": "elbow", "hint": "synonyms for elbow", "clues": ["elbow joint", "human elbow", "cubitus", "articulatio cubiti", "cubital joint", "elbow"]}, {"answer": "elbow_grease", "hint": "synonyms for elbow grease", "clues": ["effort", "exertion", "travail", "sweat", "elbow grease"]}, {"answer": "elbow_joint", "hint": "synonyms for elbow joint", "clues": ["human elbow", "cubitus", "articulatio cubiti", "elbow", "cubital joint", "elbow joint"]}, {"answer": "eld", "hint": "synonyms for eld", "clues": ["age", "geezerhood", "old age", "years", "eld"]}, {"answer": "eleanor_gwyn", "hint": "synonyms for eleanor gwyn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "eleanor_gwynn", "hint": "synonyms for eleanor gwynn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "eleanor_gwynne", "hint": "synonyms for eleanor gwynne", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "electioneering", "hint": "synonyms for electioneering", "clues": ["campaigning", "canvassing", "candidacy", "political campaign", "bell ringing", "candidature", "electioneering"]}, {"answer": "electric-light_bulb", "hint": "synonyms for electric-light bulb", "clues": ["incandescent lamp", "light bulb", "electric light", "bulb", "electric-light bulb"]}, {"answer": "electric_arc", "hint": "synonyms for electric arc", "clues": ["spark", "arc", "electric discharge", "discharge", "electric arc"]}, {"answer": "electric_discharge", "hint": "synonyms for electric discharge", "clues": ["spark", "arc", "discharge", "electric arc", "electric discharge"]}, {"answer": "electric_eye", "hint": "synonyms for electric eye", "clues": ["magic eye", "photoelectric cell", "photocell", "photoconductive cell", "electric eye"]}, {"answer": "electric_glow", "hint": "synonyms for electric glow", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "corposant", "corona discharge", "St. Elmo's fire", "corona", "electric glow"]}, {"answer": "electric_light", "hint": "synonyms for electric light", "clues": ["incandescent lamp", "light bulb", "electric-light bulb", "bulb", "electric light"]}, {"answer": "electric_outlet", "hint": "synonyms for electric outlet", "clues": ["wall plug", "outlet", "electrical outlet", "electric receptacle", "wall socket"]}, {"answer": "electric_potential", "hint": "synonyms for electric potential", "clues": ["potential drop", "potential difference", "voltage", "potential", "electric potential"]}, {"answer": "electric_receptacle", "hint": "synonyms for electric receptacle", "clues": ["wall plug", "outlet", "electrical outlet", "wall socket", "electric receptacle"]}, {"answer": "electric_resistance", "hint": "synonyms for electric resistance", "clues": ["resistivity", "resistance", "impedance", "electrical resistance", "ohmic resistance"]}, {"answer": "electrical_outlet", "hint": "synonyms for electrical outlet", "clues": ["wall plug", "outlet", "electric receptacle", "wall socket", "electric outlet"]}, {"answer": "electrical_resistance", "hint": "synonyms for electrical resistance", "clues": ["resistivity", "resistance", "electric resistance", "impedance", "ohmic resistance"]}, {"answer": "electrical_skin_response", "hint": "synonyms for electrical skin response", "clues": ["Tarchanoff phenomenon", "electrodermal response", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response", "electrical skin response"]}, {"answer": "electrodermal_response", "hint": "synonyms for electrodermal response", "clues": ["electrical skin response", "Tarchanoff phenomenon", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response", "electrodermal response"]}, {"answer": "electromotive_drug_administration", "hint": "synonyms for electromotive drug administration", "clues": ["iontophoresis", "ionic medication", "EMDA", "iontotherapy", "electromotive drug administration"]}, {"answer": "electron_tube", "hint": "synonyms for electron tube", "clues": ["thermionic tube", "tube", "thermionic vacuum tube", "thermionic valve", "vacuum tube", "electron tube"]}, {"answer": "electronic_computer", "hint": "synonyms for electronic computer", "clues": ["information processing system", "computer", "computing machine", "data processor", "computing device", "electronic computer"]}, {"answer": "element", "hint": "synonyms for element", "clues": ["chemical element", "ingredient", "factor", "component", "constituent", "element"]}, {"answer": "element_104", "hint": "synonyms for element 104", "clues": ["atomic number 104", "Rf", "rutherfordium", "Unq", "unnilquadium", "element 104"]}, {"answer": "element_105", "hint": "synonyms for element 105", "clues": ["atomic number 105", "hahnium", "Db", "dubnium", "element 105"]}, {"answer": "elements", "hint": "synonyms for elements", "clues": ["chemical element", "element", "ingredient", "factor", "component", "constituent"]}, {"answer": "elevated_railroad", "hint": "synonyms for elevated railroad", "clues": ["elevated", "elevated railway", "overhead railway", "el", "elevated railroad"]}, {"answer": "elevated_railway", "hint": "synonyms for elevated railway", "clues": ["elevated", "elevated railroad", "overhead railway", "el", "elevated railway"]}, {"answer": "elevation", "hint": "synonyms for elevation", "clues": ["height", "lift", "aggrandisement", "meridian", "acme", "summit", "ALT", "tiptop", "top", "altitude", "natural elevation", "superlative", "raising", "pinnacle", "peak", "EL", "elevation"]}, {"answer": "elf", "hint": "synonyms for elf", "clues": ["hob", "pixy", "imp", "extremely low frequency", "ELF", "pixie", "gremlin", "brownie"]}, {"answer": "elimination", "hint": "synonyms for elimination", "clues": ["liquidation", "riddance", "excretion", "evacuation", "voiding", "reasoning by elimination", "elimination"]}, {"answer": "eliot", "hint": "synonyms for eliot", "clues": ["George Eliot", "Eliot", "Mary Ann Evans", "Thomas Stearns Eliot", "T. S. Eliot"]}, {"answer": "elixophyllin", "hint": "synonyms for elixophyllin", "clues": ["Slo-Bid", "Theobid", "Elixophyllin", "theophylline"]}, {"answer": "elizabeth_cochrane_seaman", "hint": "synonyms for elizabeth cochrane seaman", "clues": ["Elizabeth Seaman", "Seaman", "Elizabeth Cochrane Seaman", "Nellie Bly"]}, {"answer": "elizabeth_seaman", "hint": "synonyms for elizabeth seaman", "clues": ["Elizabeth Seaman", "Seaman", "Elizabeth Cochrane Seaman", "Nellie Bly"]}, {"answer": "elizabeth_seton", "hint": "synonyms for elizabeth seton", "clues": ["Saint Elizabeth Ann Bayley Seton", "Mother Seton", "Seton", "Elizabeth Seton"]}, {"answer": "elmer_leopold_rice", "hint": "synonyms for elmer leopold rice", "clues": ["Elmer Reizenstein", "Elmer Leopold Rice", "Elmer Rice", "Rice"]}, {"answer": "elmer_reizenstein", "hint": "synonyms for elmer reizenstein", "clues": ["Elmer Reizenstein", "Elmer Leopold Rice", "Elmer Rice", "Rice"]}, {"answer": "elmer_rice", "hint": "synonyms for elmer rice", "clues": ["Elmer Reizenstein", "Elmer Leopold Rice", "Elmer Rice", "Rice"]}, {"answer": "elmore_john_leonard", "hint": "synonyms for elmore john leonard", "clues": ["Dutch Leonard", "Elmore Leonard", "Leonard", "Elmore John Leonard"]}, {"answer": "elmore_leonard", "hint": "synonyms for elmore leonard", "clues": ["Dutch Leonard", "Elmore Leonard", "Leonard", "Elmore John Leonard"]}, {"answer": "eln", "hint": "synonyms for eln", "clues": ["Nestor Paz Zamora Commission", "ELN", "National Liberation Army", "CNPZ"]}, {"answer": "elves", "hint": "synonyms for elves", "clues": ["hob", "pixy", "extremely low frequency", "ELF", "gremlin", "pixie", "imp", "brownie", "elves"]}, {"answer": "elvis", "hint": "synonyms for elvis", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "window pane", "acid", "back breaker"]}, {"answer": "em", "hint": "synonyms for em", "clues": ["pica em", "pica", "em quad", "mutton quad", "em"]}, {"answer": "emaciation", "hint": "synonyms for emaciation", "clues": ["bonyness", "maceration", "gauntness", "emaciation"]}, {"answer": "emanuel_svedberg", "hint": "synonyms for emanuel svedberg", "clues": ["Emanuel Svedberg", "Svedberg", "Emanuel Swedenborg", "Swedenborg"]}, {"answer": "emanuel_swedenborg", "hint": "synonyms for emanuel swedenborg", "clues": ["Emanuel Svedberg", "Svedberg", "Emanuel Swedenborg", "Swedenborg"]}, {"answer": "embezzlement", "hint": "synonyms for embezzlement", "clues": ["defalcation", "misappropriation", "peculation", "misapplication", "embezzlement"]}, {"answer": "embossment", "hint": "synonyms for embossment", "clues": ["relievo", "relief", "imprint", "sculptural relief", "embossment"]}, {"answer": "embryoma_of_the_kidney", "hint": "synonyms for embryoma of the kidney", "clues": ["adenomyosarcoma", "Wilms' tumor", "nephroblastoma", "embryoma of the kidney"]}, {"answer": "emda", "hint": "synonyms for emda", "clues": ["iontophoresis", "EMDA", "ionic medication", "electromotive drug administration", "iontotherapy"]}, {"answer": "emergence", "hint": "synonyms for emergence", "clues": ["egression", "outgrowth", "egress", "issue", "growth", "emersion", "emergence"]}, {"answer": "emergency", "hint": "synonyms for emergency", "clues": ["emergency brake", "hand brake", "pinch", "exigency", "parking brake", "emergency"]}, {"answer": "emesis", "hint": "synonyms for emesis", "clues": ["regurgitation", "disgorgement", "vomit", "puking", "emesis"]}, {"answer": "emilie_charlotte_le_breton", "hint": "synonyms for emilie charlotte le breton", "clues": ["Langtry", "Lillie Langtry", "Jersey Lillie", "Emilie Charlotte le Breton"]}, {"answer": "emily_bronte", "hint": "synonyms for emily bronte", "clues": ["Emily Jane Bronte", "Currer Bell", "Bronte", "Emily Bronte"]}, {"answer": "emily_jane_bronte", "hint": "synonyms for emily jane bronte", "clues": ["Emily Jane Bronte", "Currer Bell", "Bronte", "Emily Bronte"]}, {"answer": "eminence", "hint": "synonyms for eminence", "clues": ["distinction", "note", "tuberosity", "tubercle", "preeminence", "eminence"]}, {"answer": "emotionlessness", "hint": "synonyms for emotionlessness", "clues": ["phlegm", "unemotionality", "indifference", "impassivity", "stolidity", "impassiveness", "emotionlessness"]}, {"answer": "emphysematous_gangrene", "hint": "synonyms for emphysematous gangrene", "clues": ["clostridial myonecrosis", "emphysematous phlegmon", "progressive emphysematous necrosis", "gangrenous emphysema", "gas gangrene", "gas phlegmon", "emphysematous gangrene"]}, {"answer": "emphysematous_phlegmon", "hint": "synonyms for emphysematous phlegmon", "clues": ["clostridial myonecrosis", "emphysematous gangrene", "progressive emphysematous necrosis", "gangrenous emphysema", "gas gangrene", "gas phlegmon", "emphysematous phlegmon"]}, {"answer": "empire_state", "hint": "synonyms for empire state", "clues": ["NY", "New York", "New York State", "Empire State"]}, {"answer": "empire_state_of_the_south", "hint": "synonyms for empire state of the south", "clues": ["Empire State of the South", "Peach State", "GA", "Georgia"]}, {"answer": "empirin", "hint": "synonyms for empirin", "clues": ["acetylsalicylic acid", "St. Joseph", "Bayer", "aspirin", "Empirin"]}, {"answer": "employment", "hint": "synonyms for employment", "clues": ["employ", "work", "exercise", "utilisation", "engagement", "usage", "use", "employment"]}, {"answer": "emptiness", "hint": "synonyms for emptiness", "clues": ["vacancy", "void", "vacuum", "vanity", "emptiness"]}, {"answer": "empty_talk", "hint": "synonyms for empty talk", "clues": ["hot air", "empty words", "palaver", "rhetoric", "empty talk"]}, {"answer": "empty_words", "hint": "synonyms for empty words", "clues": ["hot air", "palaver", "rhetoric", "empty talk", "empty words"]}, {"answer": "emulator", "hint": "synonyms for emulator", "clues": ["ape", "copycat", "imitator", "emulator"]}, {"answer": "enactment", "hint": "synonyms for enactment", "clues": ["characterization", "personation", "act", "passage", "portrayal", "enactment"]}, {"answer": "enarthrodial_joint", "hint": "synonyms for enarthrodial joint", "clues": ["cotyloid joint", "ball-and-socket joint", "articulatio spheroidea", "spheroid joint", "enarthrosis", "enarthrodial joint"]}, {"answer": "enarthrosis", "hint": "synonyms for enarthrosis", "clues": ["cotyloid joint", "ball-and-socket joint", "enarthrodial joint", "articulatio spheroidea", "spheroid joint", "enarthrosis"]}, {"answer": "encampment", "hint": "synonyms for encampment", "clues": ["camping", "camping site", "tenting", "camping ground", "cantonment", "campground", "camping area", "campsite", "bivouac", "bivouacking", "encampment"]}, {"answer": "encephalitis_lethargica", "hint": "synonyms for encephalitis lethargica", "clues": ["epidemic encephalitis", "lethargic encephalitis", "sleepy sickness", "encephalitis lethargica"]}, {"answer": "enchantment", "hint": "synonyms for enchantment", "clues": ["captivation", "enthrallment", "bewitchment", "fascination", "trance", "spell", "enchantment"]}, {"answer": "enchantress", "hint": "synonyms for enchantress", "clues": ["femme fatale", "temptress", "Delilah", "siren", "witch", "enchantress"]}, {"answer": "enclosure", "hint": "synonyms for enclosure", "clues": ["inclosure", "natural enclosure", "enclosing", "envelopment"]}, {"answer": "encomium", "hint": "synonyms for encomium", "clues": ["panegyric", "pean", "eulogy", "encomium"]}, {"answer": "encounter", "hint": "synonyms for encounter", "clues": ["coming upon", "brush", "face-off", "clash", "confrontation", "skirmish", "meeting", "showdown", "encounter"]}, {"answer": "encroachment", "hint": "synonyms for encroachment", "clues": ["trespass", "intrusion", "impingement", "invasion", "usurpation", "violation", "impact", "encroachment"]}, {"answer": "encumbrance", "hint": "synonyms for encumbrance", "clues": ["hitch", "load", "preventative", "hinderance", "interference", "incumbrance", "burden", "onus"]}, {"answer": "encyclopaedism", "hint": "synonyms for encyclopaedism", "clues": ["learning", "learnedness", "encyclopedism", "scholarship", "erudition", "eruditeness"]}, {"answer": "encyclopedism", "hint": "synonyms for encyclopedism", "clues": ["learning", "learnedness", "scholarship", "erudition", "eruditeness", "encyclopaedism"]}, {"answer": "end", "hint": "synonyms for end", "clues": ["terminal", "destruction", "conclusion", "close", "goal", "last", "ending", "oddment", "remnant", "final stage", "closing", "remainder", "death"]}, {"answer": "end_of_the_world", "hint": "synonyms for end of the world", "clues": ["doom", "Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "crack of doom", "eschaton", "Last Day", "Judgement Day", "end of the world"]}, {"answer": "end_point", "hint": "synonyms for end point", "clues": ["termination", "resultant", "endpoint", "terminus"]}, {"answer": "endangerment", "hint": "synonyms for endangerment", "clues": ["risk", "hazard", "peril", "jeopardy", "endangerment"]}, {"answer": "endeavor", "hint": "synonyms for endeavor", "clues": ["effort", "enterprise", "endeavour", "attempt", "try"]}, {"answer": "endeavour", "hint": "synonyms for endeavour", "clues": ["effort", "enterprise", "endeavor", "attempt", "try"]}, {"answer": "ending", "hint": "synonyms for ending", "clues": ["termination", "conclusion", "close", "closing", "end", "finish"]}, {"answer": "endorsement", "hint": "synonyms for endorsement", "clues": ["imprimatur", "warrant", "blurb", "sanction", "indorsement", "second", "secondment", "countenance"]}, {"answer": "endowment", "hint": "synonyms for endowment", "clues": ["endowment fund", "talent", "natural endowment", "gift", "endowment"]}, {"answer": "energy", "hint": "synonyms for energy", "clues": ["vim", "push", "get-up-and-go", "free energy", "DOE", "Energy Department", "muscularity", "vitality", "Energy", "vigor", "zip", "Department of Energy"]}, {"answer": "energy_department", "hint": "synonyms for energy department", "clues": ["Energy Department", "DOE", "Energy", "Department of Energy"]}, {"answer": "enets", "hint": "synonyms for enets", "clues": ["Yeniseian", "Entsy", "Entsi", "Yenisei-Samoyed", "Enets"]}, {"answer": "engagement", "hint": "synonyms for engagement", "clues": ["interlocking", "betrothal", "participation", "troth", "appointment", "fight", "booking", "involvement", "meshing", "battle", "involution", "employment", "conflict", "date", "engagement"]}, {"answer": "engineer", "hint": "synonyms for engineer", "clues": ["applied scientist", "technologist", "locomotive engineer", "engine driver", "railroad engineer", "engineer"]}, {"answer": "engineering", "hint": "synonyms for engineering", "clues": ["engine room", "engineering science", "technology", "applied science", "engineering"]}, {"answer": "english-gothic", "hint": "synonyms for english-gothic", "clues": ["perpendicular", "English-Gothic", "perpendicular style", "English-Gothic architecture"]}, {"answer": "english-gothic_architecture", "hint": "synonyms for english-gothic architecture", "clues": ["perpendicular", "English-Gothic", "perpendicular style", "English-Gothic architecture"]}, {"answer": "english_runner_bean", "hint": "synonyms for english runner bean", "clues": ["scarlet runner bean", "scarlet runner", "English runner bean", "runner bean"]}, {"answer": "engrossment", "hint": "synonyms for engrossment", "clues": ["intentness", "preoccupation", "immersion", "absorption", "concentration", "preoccupancy", "engrossment"]}, {"answer": "enigma", "hint": "synonyms for enigma", "clues": ["conundrum", "riddle", "brain-teaser", "mystery", "closed book", "secret", "enigma"]}, {"answer": "enlargement", "hint": "synonyms for enlargement", "clues": ["elaboration", "magnification", "blowup", "expansion", "enlargement"]}, {"answer": "enlistment", "hint": "synonyms for enlistment", "clues": ["tour", "hitch", "tour of duty", "duty tour", "term of enlistment", "enlistment"]}, {"answer": "ennead", "hint": "synonyms for ennead", "clues": ["IX", "nine", "9", "Nina from Carolina", "ennead"]}, {"answer": "enormousness", "hint": "synonyms for enormousness", "clues": ["immenseness", "immensity", "vastness", "sizeableness", "greatness", "wideness", "grandness", "enormousness"]}, {"answer": "enquirer", "hint": "synonyms for enquirer", "clues": ["asker", "inquirer", "questioner", "querier"]}, {"answer": "enquiry", "hint": "synonyms for enquiry", "clues": ["inquiry", "question", "interrogation", "query", "research"]}, {"answer": "entering", "hint": "synonyms for entering", "clues": ["entry", "ingress", "incoming", "entrance", "entering"]}, {"answer": "enterprise", "hint": "synonyms for enterprise", "clues": ["go-ahead", "endeavour", "enterprisingness", "initiative", "enterprise"]}, {"answer": "enthronement", "hint": "synonyms for enthronement", "clues": ["enthronization", "coronation", "investiture", "enthronement"]}, {"answer": "enthronisation", "hint": "synonyms for enthronisation", "clues": ["investiture", "enthronization", "coronation", "enthronement"]}, {"answer": "enthronization", "hint": "synonyms for enthronization", "clues": ["investiture", "enthronisation", "coronation", "enthronement"]}, {"answer": "entombment", "hint": "synonyms for entombment", "clues": ["inhumation", "burial", "sepulture", "interment", "entombment"]}, {"answer": "entrance", "hint": "synonyms for entrance", "clues": ["entree", "ingress", "entry", "entryway", "entranceway", "entering", "incoming", "entrance"]}, {"answer": "entrance_fee", "hint": "synonyms for entrance fee", "clues": ["entrance money", "admission", "admission charge", "admission price", "admission fee", "price of admission", "entrance fee"]}, {"answer": "entrance_hall", "hint": "synonyms for entrance hall", "clues": ["antechamber", "anteroom", "foyer", "lobby", "vestibule", "hall", "entrance hall"]}, {"answer": "entrance_money", "hint": "synonyms for entrance money", "clues": ["admission", "admission charge", "entrance fee", "admission price", "admission fee", "price of admission", "entrance money"]}, {"answer": "entranceway", "hint": "synonyms for entranceway", "clues": ["entry", "entree", "entrance", "entryway", "entranceway"]}, {"answer": "entrant", "hint": "synonyms for entrant", "clues": ["neophyte", "newcomer", "starter", "newbie", "fledgeling", "freshman", "entrant"]}, {"answer": "entree", "hint": "synonyms for entree", "clues": ["accession", "main course", "entrance", "entry", "admission", "entryway", "entranceway", "access", "admittance", "entree"]}, {"answer": "entrepot", "hint": "synonyms for entrepot", "clues": ["storage", "storehouse", "transshipment center", "depot", "store", "entrepot"]}, {"answer": "entropy", "hint": "synonyms for entropy", "clues": ["randomness", "S", "selective information", "information", "entropy"]}, {"answer": "entry", "hint": "synonyms for entry", "clues": ["unveiling", "entree", "ingress", "launching", "entrance", "first appearance", "introduction", "accounting entry", "entryway", "entranceway", "entering", "incoming", "ledger entry", "submission", "debut", "entry"]}, {"answer": "entryway", "hint": "synonyms for entryway", "clues": ["entranceway", "entree", "entry", "entrance", "entryway"]}, {"answer": "entsi", "hint": "synonyms for entsi", "clues": ["Yeniseian", "Entsy", "Entsi", "Yenisei-Samoyed", "Enets"]}, {"answer": "entsy", "hint": "synonyms for entsy", "clues": ["Yeniseian", "Entsy", "Entsi", "Yenisei-Samoyed", "Enets"]}, {"answer": "enumeration", "hint": "synonyms for enumeration", "clues": ["numbering", "reckoning", "numeration", "count", "tally"]}, {"answer": "environs", "hint": "synonyms for environs", "clues": ["surroundings", "surround", "purlieu", "environment", "environs"]}, {"answer": "envoy", "hint": "synonyms for envoy", "clues": ["envoy extraordinary", "envoi", "emissary", "minister plenipotentiary", "envoy"]}, {"answer": "ephemeris_time", "hint": "synonyms for ephemeris time", "clues": ["TT", "TDT", "terrestrial time", "terrestrial dynamical time", "ephemeris time"]}, {"answer": "epicene_person", "hint": "synonyms for epicene person", "clues": ["hermaphrodite", "intersex", "gynandromorph", "epicene", "androgyne", "epicene person"]}, {"answer": "epicure", "hint": "synonyms for epicure", "clues": ["bon vivant", "epicurean", "foodie", "gourmet", "gastronome"]}, {"answer": "epidemic_encephalitis", "hint": "synonyms for epidemic encephalitis", "clues": ["sleepy sickness", "lethargic encephalitis", "encephalitis lethargica", "epidemic encephalitis"]}, {"answer": "epidemic_myalgia", "hint": "synonyms for epidemic myalgia", "clues": ["epidemic pleurodynia", "diaphragmatic pleurisy", "Bornholm disease", "myosis", "epidemic myalgia"]}, {"answer": "epidemic_pleurodynia", "hint": "synonyms for epidemic pleurodynia", "clues": ["epidemic myalgia", "diaphragmatic pleurisy", "Bornholm disease", "myosis", "epidemic pleurodynia"]}, {"answer": "epilepsia_major", "hint": "synonyms for epilepsia major", "clues": ["grand mal epilepsy", "grand mal", "generalized epilepsy", "generalized seizure", "epilepsia major"]}, {"answer": "epiphany", "hint": "synonyms for epiphany", "clues": ["Three Kings' Day", "Epiphany of Our Lord", "Epiphany", "Twelfth day", "January 6"]}, {"answer": "epiphany_of_our_lord", "hint": "synonyms for epiphany of our lord", "clues": ["Three Kings' Day", "Epiphany of Our Lord", "Epiphany", "Twelfth day", "January 6"]}, {"answer": "episcopate", "hint": "synonyms for episcopate", "clues": ["episcopacy", "bishopry", "bishopric", "diocese", "episcopate"]}, {"answer": "equaliser", "hint": "synonyms for equaliser", "clues": ["counterweight", "equalizer", "balance", "counterpoise", "counterbalance"]}, {"answer": "equalizer", "hint": "synonyms for equalizer", "clues": ["counterweight", "balance", "equaliser", "counterpoise", "counterbalance"]}, {"answer": "equanil", "hint": "synonyms for equanil", "clues": ["meprobamate", "Meprin", "Equanil", "Miltown"]}, {"answer": "equation", "hint": "synonyms for equation", "clues": ["equality", "equating", "par", "equivalence"]}, {"answer": "equilibrium", "hint": "synonyms for equilibrium", "clues": ["vestibular sense", "balance", "sense of equilibrium", "counterbalance", "labyrinthine sense", "sense of balance", "equipoise", "chemical equilibrium", "equilibrium"]}, {"answer": "equivalence", "hint": "synonyms for equivalence", "clues": ["equality", "equation", "comparability", "par", "comparison", "compare", "equivalence"]}, {"answer": "equivocation", "hint": "synonyms for equivocation", "clues": ["prevarication", "evasion", "evasiveness", "tergiversation", "equivocation"]}, {"answer": "er", "hint": "synonyms for er", "clues": ["emergency room", "ER", "erbium", "atomic number 68"]}, {"answer": "era", "hint": "synonyms for era", "clues": ["ERA", "epoch", "earned run average", "geological era"]}, {"answer": "erasmus", "hint": "synonyms for erasmus", "clues": ["Geert Geerts", "Gerhard Gerhards", "Desiderius Erasmus", "Erasmus"]}, {"answer": "ergocalciferol", "hint": "synonyms for ergocalciferol", "clues": ["calciferol", "cholecalciferol", "D", "viosterol", "vitamin D", "ergocalciferol"]}, {"answer": "eric_arthur_blair", "hint": "synonyms for eric arthur blair", "clues": ["Eric Arthur Blair", "George Orwell", "Orwell", "Eric Blair"]}, {"answer": "eric_blair", "hint": "synonyms for eric blair", "clues": ["Eric Arthur Blair", "George Orwell", "Orwell", "Eric Blair"]}, {"answer": "erik_adolf_von_willebrand", "hint": "synonyms for erik adolf von willebrand", "clues": ["Willebrand", "Erik Adolf von Willebrand", "E. A. von Willebrand", "von Willebrand"]}, {"answer": "erik_von_willebrand", "hint": "synonyms for erik von willebrand", "clues": ["Willebrand", "Erik Adolf von Willebrand", "E. A. von Willebrand", "von Willebrand"]}, {"answer": "ernest_rutherford", "hint": "synonyms for ernest rutherford", "clues": ["Rutherford", "Ernest Rutherford", "First Baron Rutherford of Nelson", "First Baron Rutherford"]}, {"answer": "ernest_thomas_sinton_walton", "hint": "synonyms for ernest thomas sinton walton", "clues": ["Ernest Thomas Sinton Walton", "Walton", "Ernest Walton", "E. T. S. Walton"]}, {"answer": "ernest_walton", "hint": "synonyms for ernest walton", "clues": ["Ernest Thomas Sinton Walton", "Walton", "Ernest Walton", "E. T. S. Walton"]}, {"answer": "ernst_theodor_amadeus_hoffmann", "hint": "synonyms for ernst theodor amadeus hoffmann", "clues": ["Hoffmann", "Ernst Theodor Wilhelm Hoffmann", "E. T. A. Hoffmann", "Ernst Theodor Amadeus Hoffmann"]}, {"answer": "ernst_theodor_wilhelm_hoffmann", "hint": "synonyms for ernst theodor wilhelm hoffmann", "clues": ["Hoffmann", "Ernst Theodor Wilhelm Hoffmann", "E. T. A. Hoffmann", "Ernst Theodor Amadeus Hoffmann"]}, {"answer": "eroding", "hint": "synonyms for eroding", "clues": ["wearing", "eating away", "erosion", "eroding"]}, {"answer": "eros", "hint": "synonyms for eros", "clues": ["concupiscence", "physical attraction", "Eros", "sexual desire"]}, {"answer": "erosion", "hint": "synonyms for erosion", "clues": ["corrosion", "wearing", "corroding", "eating away", "eroding", "erosion"]}, {"answer": "erotica", "hint": "synonyms for erotica", "clues": ["smut", "pornography", "porno", "erotica"]}, {"answer": "eroticism", "hint": "synonyms for eroticism", "clues": ["erotism", "sexiness", "amorousness", "amativeness"]}, {"answer": "erotism", "hint": "synonyms for erotism", "clues": ["sexiness", "amorousness", "amativeness", "eroticism"]}, {"answer": "erratum", "hint": "synonyms for erratum", "clues": ["misprint", "literal error", "typographical error", "literal", "typo", "erratum"]}, {"answer": "error", "hint": "synonyms for error", "clues": ["erroneous belief", "fault", "wrongdoing", "mistake", "misplay", "computer error", "erroneousness", "error"]}, {"answer": "eructation", "hint": "synonyms for eructation", "clues": ["burping", "eruption", "belching", "extravasation", "eructation"]}, {"answer": "eruditeness", "hint": "synonyms for eruditeness", "clues": ["learning", "learnedness", "encyclopedism", "scholarship", "erudition", "eruditeness"]}, {"answer": "erudition", "hint": "synonyms for erudition", "clues": ["learning", "learnedness", "encyclopedism", "scholarship", "eruditeness", "erudition"]}, {"answer": "eruption", "hint": "synonyms for eruption", "clues": ["eructation", "blast", "clap", "extravasation", "volcanic eruption", "irruption", "bang", "bam", "outbreak", "eruption"]}, {"answer": "erving", "hint": "synonyms for erving", "clues": ["Dr. J", "Erving", "Julius Erving", "Julius Winfield Erving"]}, {"answer": "erythrocin", "hint": "synonyms for erythrocin", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "erythromycin", "hint": "synonyms for erythromycin", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "es", "hint": "synonyms for es", "clues": ["eastward", "e", "vitamin E", "tocopherol", "east", "atomic number 99", "einsteinium", "due east"]}, {"answer": "escapade", "hint": "synonyms for escapade", "clues": ["adventure", "risky venture", "lark", "dangerous undertaking", "escapade"]}, {"answer": "escape", "hint": "synonyms for escape", "clues": ["evasion", "escape valve", "outflow", "relief valve", "leakage", "dodging", "leak", "flight", "escape cock", "safety valve", "escapism", "escape"]}, {"answer": "escape_cock", "hint": "synonyms for escape cock", "clues": ["relief valve", "safety valve", "escape", "escape valve", "escape cock"]}, {"answer": "escape_valve", "hint": "synonyms for escape valve", "clues": ["relief valve", "safety valve", "escape", "escape cock", "escape valve"]}, {"answer": "eschaton", "hint": "synonyms for eschaton", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "Last Day", "Judgement Day", "eschaton"]}, {"answer": "esidrix", "hint": "synonyms for esidrix", "clues": ["Esidrix", "hydrochlorothiazide", "HydroDIURIL", "Microzide"]}, {"answer": "eskalith", "hint": "synonyms for eskalith", "clues": ["lithium carbonate", "Eskalith", "Lithonate", "Lithane"]}, {"answer": "esp", "hint": "synonyms for esp", "clues": ["ESP", "clairvoyance", "extrasensory perception", "second sight", "E.S.P."]}, {"answer": "espial", "hint": "synonyms for espial", "clues": ["spying", "detection", "spotting", "catching", "espial"]}, {"answer": "espousal", "hint": "synonyms for espousal", "clues": ["bridal", "betrothal", "adoption", "acceptance", "acceptation", "espousal"]}, {"answer": "esr", "hint": "synonyms for esr", "clues": ["erythrocyte sedimentation rate", "electron paramagnetic resonance", "electron spin resonance", "sedimentation rate", "ESR", "sed rate"]}, {"answer": "essence", "hint": "synonyms for essence", "clues": ["marrow", "inwardness", "nitty-gritty", "center", "effect", "kernel", "nub", "heart", "core", "sum", "gist", "heart and soul", "centre", "meat", "perfume", "substance", "pith", "burden", "essence"]}, {"answer": "establishment", "hint": "synonyms for establishment", "clues": ["brass", "formation", "institution", "organisation", "administration", "ecesis", "governing body", "validation", "governance", "establishment"]}, {"answer": "estate", "hint": "synonyms for estate", "clues": ["demesne", "landed estate", "land", "estate of the realm", "the three estates", "acres", "estate"]}, {"answer": "estate_agent", "hint": "synonyms for estate agent", "clues": ["land agent", "real estate broker", "real estate agent", "house agent", "estate agent"]}, {"answer": "estate_car", "hint": "synonyms for estate car", "clues": ["beach wagon", "station wagon", "waggon", "estate car"]}, {"answer": "esthesis", "hint": "synonyms for esthesis", "clues": ["sensation", "aesthesis", "sense experience", "sense datum", "sense impression"]}, {"answer": "estimate", "hint": "synonyms for estimate", "clues": ["appraisal", "estimation", "idea", "approximation", "estimate"]}, {"answer": "estimation", "hint": "synonyms for estimation", "clues": ["appraisal", "idea", "estimate", "approximation", "estimation"]}, {"answer": "estimator", "hint": "synonyms for estimator", "clues": ["figurer", "computer", "calculator", "reckoner", "estimator"]}, {"answer": "esurience", "hint": "synonyms for esurience", "clues": ["voraciousness", "rapacity", "ravenousness", "rapaciousness", "edacity", "voracity", "esurience"]}, {"answer": "eta", "hint": "synonyms for eta", "clues": ["Basque Homeland and Freedom", "ETA", "Euskadi ta Askatasuna", "Basque Fatherland and Liberty"]}, {"answer": "eternal_city", "hint": "synonyms for eternal city", "clues": ["Rome", "Eternal City", "capital of Italy", "Roma", "Italian capital"]}, {"answer": "eternal_rest", "hint": "synonyms for eternal rest", "clues": ["sleep", "eternal sleep", "rest", "quietus", "eternal rest"]}, {"answer": "eternal_sleep", "hint": "synonyms for eternal sleep", "clues": ["eternal rest", "quietus", "rest", "sleep", "eternal sleep"]}, {"answer": "ethanoyl_group", "hint": "synonyms for ethanoyl group", "clues": ["ethanoyl radical", "acetyl", "acetyl radical", "acetyl group", "ethanoyl group"]}, {"answer": "ethanoyl_radical", "hint": "synonyms for ethanoyl radical", "clues": ["ethanoyl group", "acetyl", "acetyl radical", "acetyl group", "ethanoyl radical"]}, {"answer": "ether", "hint": "synonyms for ether", "clues": ["vinyl ether", "quintessence", "ethyl ether", "aether", "ethoxyethane"]}, {"answer": "ethic", "hint": "synonyms for ethic", "clues": ["moral principle", "ethical code", "value-system", "value orientation", "ethic"]}, {"answer": "ethics", "hint": "synonyms for ethics", "clues": ["ethical motive", "value orientation", "moral principle", "value-system", "morals", "moral philosophy", "ethic", "ethical code", "morality"]}, {"answer": "ethiopia", "hint": "synonyms for ethiopia", "clues": ["Ethiopia", "Yaltopya", "Abyssinia", "Federal Democratic Republic of Ethiopia"]}, {"answer": "ethoxyethane", "hint": "synonyms for ethoxyethane", "clues": ["vinyl ether", "ether", "ethyl ether", "ethoxyethane"]}, {"answer": "ethril", "hint": "synonyms for ethril", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "ethyl_alcohol", "hint": "synonyms for ethyl alcohol", "clues": ["ethanol", "fermentation alcohol", "grain alcohol", "neutral spirits", "ethyl alcohol"]}, {"answer": "ethyl_ether", "hint": "synonyms for ethyl ether", "clues": ["vinyl ether", "ether", "diethyl ether", "ethoxyethane"]}, {"answer": "etna", "hint": "synonyms for etna", "clues": ["Mount Etna", "bunsen", "bunsen burner", "Etna", "Mt Etna"]}, {"answer": "eu", "hint": "synonyms for eu", "clues": ["atomic number 63", "Europe", "EC", "European Community", "EEC", "Eu", "europium", "Common Market", "European Union", "European Economic Community"]}, {"answer": "eucharist", "hint": "synonyms for eucharist", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "eucharistic_liturgy", "hint": "synonyms for eucharistic liturgy", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "eudaemonia", "hint": "synonyms for eudaemonia", "clues": ["welfare", "wellbeing", "eudaimonia", "upbeat"]}, {"answer": "eudaimonia", "hint": "synonyms for eudaimonia", "clues": ["welfare", "eudaemonia", "wellbeing", "upbeat"]}, {"answer": "eulogy", "hint": "synonyms for eulogy", "clues": ["paean", "eulogium", "panegyric", "encomium", "eulogy"]}, {"answer": "europe", "hint": "synonyms for europe", "clues": ["Europe", "EC", "European Community", "EEC", "Common Market", "EU", "European Union", "European Economic Community"]}, {"answer": "european_community", "hint": "synonyms for european community", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "european_economic_community", "hint": "synonyms for european economic community", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "european_union", "hint": "synonyms for european union", "clues": ["Europe", "European Union", "European Community", "EEC", "Common Market", "EU", "EC", "European Economic Community"]}, {"answer": "eusebius_hieronymus", "hint": "synonyms for eusebius hieronymus", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "eusebius_sophronius_hieronymus", "hint": "synonyms for eusebius sophronius hieronymus", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "euskadi_ta_askatasuna", "hint": "synonyms for euskadi ta askatasuna", "clues": ["Basque Homeland and Freedom", "ETA", "Euskadi ta Askatasuna", "Basque Fatherland and Liberty"]}, {"answer": "evacuation", "hint": "synonyms for evacuation", "clues": ["excretion", "elimination", "voidance", "voiding", "emptying", "evacuation"]}, {"answer": "evans", "hint": "synonyms for evans", "clues": ["Herbert McLean Evans", "Arthur Evans", "Sir Arthur John Evans", "Evans"]}, {"answer": "evaporation", "hint": "synonyms for evaporation", "clues": ["vapour", "dehydration", "drying up", "vaporisation", "desiccation"]}, {"answer": "evasion", "hint": "synonyms for evasion", "clues": ["nonpayment", "equivocation", "escape", "dodging", "evasion"]}, {"answer": "evenfall", "hint": "synonyms for evenfall", "clues": ["gloaming", "twilight", "dusk", "crepuscule", "nightfall", "fall", "evenfall"]}, {"answer": "evenki", "hint": "synonyms for evenki", "clues": ["Evenki", "Tunguz", "Tungus", "Ewenki"]}, {"answer": "event", "hint": "synonyms for event", "clues": ["outcome", "effect", "case", "upshot", "issue", "result", "consequence", "event"]}, {"answer": "everglade_state", "hint": "synonyms for everglade state", "clues": ["Sunshine State", "FL", "Florida", "Everglade State"]}, {"answer": "evolution", "hint": "synonyms for evolution", "clues": ["phylogeny", "development", "phylogenesis", "organic evolution", "evolution"]}, {"answer": "ewenki", "hint": "synonyms for ewenki", "clues": ["Evenki", "Tunguz", "Tungus", "Ewenki"]}, {"answer": "exaltation", "hint": "synonyms for exaltation", "clues": ["transport", "apotheosis", "ecstasy", "rapture", "deification", "raptus", "exaltation"]}, {"answer": "examination", "hint": "synonyms for examination", "clues": ["testing", "exam", "examen", "interrogation", "interrogatory", "scrutiny", "examination"]}, {"answer": "example", "hint": "synonyms for example", "clues": ["lesson", "exercise", "illustration", "instance", "exemplar", "representative", "case", "deterrent example", "object lesson", "good example", "model", "example"]}, {"answer": "excavation", "hint": "synonyms for excavation", "clues": ["mining", "archeological site", "digging", "dig", "excavation"]}, {"answer": "exchange", "hint": "synonyms for exchange", "clues": ["rally", "interchange", "commutation", "central", "substitution", "telephone exchange", "exchange"]}, {"answer": "exciseman", "hint": "synonyms for exciseman", "clues": ["collector of internal revenue", "tax collector", "internal revenue agent", "taxman", "exciseman"]}, {"answer": "excision", "hint": "synonyms for excision", "clues": ["cut", "extirpation", "excommunication", "deracination", "deletion", "cutting out", "ablation", "excision"]}, {"answer": "excitable_area", "hint": "synonyms for excitable area", "clues": ["motor area", "motor region", "Rolando's area", "motor cortex", "excitable area"]}, {"answer": "excitation", "hint": "synonyms for excitation", "clues": ["fervor", "irritation", "innervation", "inflammation", "excitement", "excitation"]}, {"answer": "excitement", "hint": "synonyms for excitement", "clues": ["upheaval", "hullabaloo", "excitation", "exhilaration", "agitation", "fervour", "turmoil", "inflammation", "excitement"]}, {"answer": "exclusion", "hint": "synonyms for exclusion", "clues": ["elision", "riddance", "excommunication", "exception", "ejection", "expulsion", "censure", "exclusion"]}, {"answer": "excogitation", "hint": "synonyms for excogitation", "clues": ["conception", "design", "invention", "innovation", "excogitation"]}, {"answer": "excrement", "hint": "synonyms for excrement", "clues": ["excretion", "body waste", "excreta", "excretory product", "excrement"]}, {"answer": "excrescence", "hint": "synonyms for excrescence", "clues": ["extrusion", "prominence", "swelling", "gibbosity", "protrusion", "hump", "protuberance", "gibbousness", "bulge", "jut", "bump", "excrescence"]}, {"answer": "excreta", "hint": "synonyms for excreta", "clues": ["excretion", "body waste", "excrement", "excretory product", "excreta"]}, {"answer": "excreting", "hint": "synonyms for excreting", "clues": ["excretion", "evacuation", "voiding", "elimination"]}, {"answer": "excretion", "hint": "synonyms for excretion", "clues": ["excretory product", "excreta", "body waste", "evacuation", "voiding", "excrement", "elimination", "excreting"]}, {"answer": "excretory_product", "hint": "synonyms for excretory product", "clues": ["excretion", "body waste", "excreta", "excrement", "excretory product"]}, {"answer": "excursion", "hint": "synonyms for excursion", "clues": ["sashay", "jaunt", "expedition", "pleasure trip", "junket", "digression", "outing", "excursion"]}, {"answer": "excursus", "hint": "synonyms for excursus", "clues": ["parenthesis", "digression", "aside", "divagation", "excursus"]}, {"answer": "excuse", "hint": "synonyms for excuse", "clues": ["apology", "exculpation", "self-justification", "alibi", "excuse"]}, {"answer": "execration", "hint": "synonyms for execration", "clues": ["abhorrence", "odium", "loathing", "abomination", "condemnation", "curse", "detestation", "execration"]}, {"answer": "execution", "hint": "synonyms for execution", "clues": ["instruction execution", "execution of instrument", "carrying into action", "death penalty", "murder", "implementation", "capital punishment", "writ of execution", "executing", "slaying", "carrying out", "performance"]}, {"answer": "exercise", "hint": "synonyms for exercise", "clues": ["workout", "physical exertion", "example", "physical exercise", "utilisation", "practice session", "usage", "drill", "recitation", "practice", "employment", "exercising", "use", "exercise"]}, {"answer": "exercising", "hint": "synonyms for exercising", "clues": ["physical exercise", "exercise", "workout", "physical exertion", "exercising"]}, {"answer": "exertion", "hint": "synonyms for exertion", "clues": ["effort", "elbow grease", "travail", "sweat", "exertion"]}, {"answer": "exiguity", "hint": "synonyms for exiguity", "clues": ["poorness", "scantiness", "meagreness", "leanness", "exiguity"]}, {"answer": "exile", "hint": "synonyms for exile", "clues": ["deportee", "deportation", "expatriate", "expatriation", "expat", "transportation", "exile"]}, {"answer": "existence", "hint": "synonyms for existence", "clues": ["being", "creation", "beingness", "cosmos", "universe", "macrocosm", "world", "existence"]}, {"answer": "exit", "hint": "synonyms for exit", "clues": ["outlet", "going", "issue", "loss", "departure", "expiration", "passing", "release", "way out", "exit"]}, {"answer": "exodus", "hint": "synonyms for exodus", "clues": ["Exodus", "Book of Exodus", "hegira", "hejira"]}, {"answer": "exotic_dancer", "hint": "synonyms for exotic dancer", "clues": ["stripper", "ecdysiast", "stripteaser", "belly dancer", "peeler", "striptease artist", "exotic belly dancer", "exotic dancer"]}, {"answer": "expatriation", "hint": "synonyms for expatriation", "clues": ["deportation", "exile", "emigration", "transportation", "out-migration", "expatriation"]}, {"answer": "expectation", "hint": "synonyms for expectation", "clues": ["arithmetic mean", "first moment", "outlook", "anticipation", "prospect", "expected value", "expectation"]}, {"answer": "expedience", "hint": "synonyms for expedience", "clues": ["opportunism", "self-interest", "expediency", "self-seeking"]}, {"answer": "expedition", "hint": "synonyms for expedition", "clues": ["excursion", "hostile expedition", "dispatch", "military expedition", "junket", "outing", "sashay", "jaunt", "pleasure trip", "expeditiousness", "expedition"]}, {"answer": "expenditure", "hint": "synonyms for expenditure", "clues": ["expending", "using up", "spending", "outgo", "outlay", "consumption", "expenditure"]}, {"answer": "expiration", "hint": "synonyms for expiration", "clues": ["termination", "going", "exit", "exhalation", "loss", "departure", "expiry", "passing", "breathing out", "release", "expiration"]}, {"answer": "expiry", "hint": "synonyms for expiry", "clues": ["termination", "expiration", "death", "decease", "expiry"]}, {"answer": "expletive", "hint": "synonyms for expletive", "clues": ["curse word", "oath", "curse", "swearing", "cuss", "swearword", "expletive"]}, {"answer": "exploitation", "hint": "synonyms for exploitation", "clues": ["victimisation", "development", "using", "exploitation"]}, {"answer": "explorer", "hint": "synonyms for explorer", "clues": ["Explorer", "adventurer", "Internet Explorer", "IE"]}, {"answer": "explosion", "hint": "synonyms for explosion", "clues": ["detonation", "plosion", "blowup", "burst"]}, {"answer": "exponent", "hint": "synonyms for exponent", "clues": ["proponent", "power", "advocator", "index", "advocate", "exponent"]}, {"answer": "exposure", "hint": "synonyms for exposure", "clues": ["photograph", "vulnerability", "picture", "photo", "pic", "exposure"]}, {"answer": "expression", "hint": "synonyms for expression", "clues": ["look", "facial expression", "reflexion", "manifestation", "verbal expression", "formulation", "face", "verbalism", "formula", "aspect", "saying", "grammatical construction", "construction", "reflection", "locution", "expression"]}, {"answer": "expressive_aphasia", "hint": "synonyms for expressive aphasia", "clues": ["ataxic aphasia", "nonfluent aphasia", "Broca's aphasia", "motor aphasia", "expressive aphasia"]}, {"answer": "expressway", "hint": "synonyms for expressway", "clues": ["motorway", "thruway", "pike", "freeway", "superhighway", "throughway", "state highway", "expressway"]}, {"answer": "expulsion", "hint": "synonyms for expulsion", "clues": ["projection", "extrusion", "riddance", "ejection", "forcing out", "exclusion", "expulsion"]}, {"answer": "extension", "hint": "synonyms for extension", "clues": ["elongation", "annexe", "extension phone", "prolongation", "denotation", "propagation", "file name extension", "university extension", "reference", "wing", "extension service", "telephone extension", "lengthiness", "extension"]}, {"answer": "external_auditory_canal", "hint": "synonyms for external auditory canal", "clues": ["ear canal", "acoustic meatus", "auditory canal", "auditory meatus", "external auditory canal"]}, {"answer": "extinction", "hint": "synonyms for extinction", "clues": ["defunctness", "quenching", "experimental extinction", "extinguishing", "extermination", "extinction"]}, {"answer": "extirpation", "hint": "synonyms for extirpation", "clues": ["excision", "deracination", "cutting out", "ablation", "extirpation"]}, {"answer": "extract", "hint": "synonyms for extract", "clues": ["infusion", "selection", "excerpt", "excerption", "extract"]}, {"answer": "extractor", "hint": "synonyms for extractor", "clues": ["centrifuge", "cartridge remover", "separator", "cartridge extractor", "extractor"]}, {"answer": "extrasensory_perception", "hint": "synonyms for extrasensory perception", "clues": ["ESP", "clairvoyance", "second sight", "E.S.P.", "extrasensory perception"]}, {"answer": "extrauterine_gestation", "hint": "synonyms for extrauterine gestation", "clues": ["extrauterine pregnancy", "metacyesis", "eccyesis", "ectopic gestation", "ectopic pregnancy", "extrauterine gestation"]}, {"answer": "extrauterine_pregnancy", "hint": "synonyms for extrauterine pregnancy", "clues": ["extrauterine gestation", "metacyesis", "eccyesis", "ectopic gestation", "ectopic pregnancy", "extrauterine pregnancy"]}, {"answer": "extravagance", "hint": "synonyms for extravagance", "clues": ["profligacy", "prodigality", "extravagancy", "highlife", "lavishness"]}, {"answer": "extrusion", "hint": "synonyms for extrusion", "clues": ["prominence", "excrescence", "swelling", "gibbosity", "protrusion", "hump", "protuberance", "gibbousness", "bulge", "jut", "expulsion", "bump", "extrusion"]}, {"answer": "exultation", "hint": "synonyms for exultation", "clues": ["jubilance", "rejoicing", "jubilation", "exultation"]}, {"answer": "eye", "hint": "synonyms for eye", "clues": ["center", "centre", "optic", "heart", "middle", "oculus", "eye"]}, {"answer": "eye_blink", "hint": "synonyms for eye blink", "clues": ["blinking", "winking", "nictation", "eye blink"]}, {"answer": "eye_tooth", "hint": "synonyms for eye tooth", "clues": ["cuspid", "canine", "eyetooth", "canine tooth", "dogtooth"]}, {"answer": "eyeglasses", "hint": "synonyms for eyeglasses", "clues": ["glasses", "spectacles", "eyeglass", "monocle", "specs"]}, {"answer": "eyelet", "hint": "synonyms for eyelet", "clues": ["grummet", "cringle", "eyehole", "loop", "eyelet"]}, {"answer": "eyes", "hint": "synonyms for eyes", "clues": ["eye", "optic", "oculus", "centre", "center", "heart", "middle"]}, {"answer": "eyeshade", "hint": "synonyms for eyeshade", "clues": ["bill", "visor", "peak", "vizor", "eyeshade"]}, {"answer": "eyetooth", "hint": "synonyms for eyetooth", "clues": ["cuspid", "canine", "eye tooth", "canine tooth", "dogtooth"]}, {"answer": "eysenck", "hint": "synonyms for eysenck", "clues": ["Hans Eysenck", "H. J. Eysenck", "Hans Jurgen Eysenck", "Eysenck"]}, {"answer": "ezed", "hint": "synonyms for ezed", "clues": ["izzard", "z", "zee", "zed"]}, {"answer": "f", "hint": "synonyms for f", "clues": ["fluorine", "F", "farad", "degree Fahrenheit", "atomic number 9"]}, {"answer": "f._d._roosevelt", "hint": "synonyms for f. d. roosevelt", "clues": ["President Roosevelt", "Franklin Delano Roosevelt", "FDR", "F. D. Roosevelt", "Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt"]}, {"answer": "fable", "hint": "synonyms for fable", "clues": ["legend", "allegory", "apologue", "fabrication", "parable", "fiction", "fable"]}, {"answer": "fabric", "hint": "synonyms for fabric", "clues": ["framework", "textile", "cloth", "material", "fabric"]}, {"answer": "fabrication", "hint": "synonyms for fabrication", "clues": ["fictionalisation", "lying", "manufacture", "prevarication", "fable", "manufacturing", "fiction", "assembly", "fabrication"]}, {"answer": "face", "hint": "synonyms for face", "clues": ["look", "facial expression", "brass", "font", "nerve", "cheek", "grimace", "aspect", "typeface", "expression", "boldness", "case", "side", "human face", "face"]}, {"answer": "face_lift", "hint": "synonyms for face lift", "clues": ["cosmetic surgery", "lift", "rhytidoplasty", "rhytidectomy", "facelift", "face lifting", "nip and tuck"]}, {"answer": "face_lifting", "hint": "synonyms for face lifting", "clues": ["cosmetic surgery", "lift", "rhytidoplasty", "face lift", "rhytidectomy", "nip and tuck"]}, {"answer": "facelift", "hint": "synonyms for facelift", "clues": ["cosmetic surgery", "lift", "rhytidoplasty", "face lift", "rhytidectomy", "nip and tuck"]}, {"answer": "facial_expression", "hint": "synonyms for facial expression", "clues": ["look", "expression", "face", "facial gesture", "aspect", "facial expression"]}, {"answer": "facility", "hint": "synonyms for facility", "clues": ["installation", "adroitness", "readiness", "deftness", "quickness", "adeptness", "facility"]}, {"answer": "fact_mood", "hint": "synonyms for fact mood", "clues": ["common mood", "declarative mood", "indicative mood", "indicative", "declarative", "fact mood"]}, {"answer": "faction", "hint": "synonyms for faction", "clues": ["sect", "cabal", "junto", "camarilla", "faction"]}, {"answer": "factor", "hint": "synonyms for factor", "clues": ["element", "divisor", "broker", "component", "constituent", "ingredient", "cistron", "agent", "gene", "factor"]}, {"answer": "factor_v", "hint": "synonyms for factor v", "clues": ["proaccelerin", "factor V", "prothrombin accelerator", "accelerator factor"]}, {"answer": "factor_vii", "hint": "synonyms for factor vii", "clues": ["proconvertin", "stable factor", "factor VII", "cothromboplastin"]}, {"answer": "factor_viii", "hint": "synonyms for factor viii", "clues": ["antihemophilic factor", "Hemofil", "factor VIII", "antihemophilic globulin"]}, {"answer": "fad", "hint": "synonyms for fad", "clues": ["rage", "craze", "cult", "furore", "fad"]}, {"answer": "faecal_matter", "hint": "synonyms for faecal matter", "clues": ["ordure", "stool", "fecal matter", "feces", "dejection", "BM"]}, {"answer": "faeces", "hint": "synonyms for faeces", "clues": ["ordure", "stool", "fecal matter", "feces", "dejection", "BM"]}, {"answer": "faerie", "hint": "synonyms for faerie", "clues": ["fay", "fairy", "fairyland", "sprite", "faery", "faerie"]}, {"answer": "faery", "hint": "synonyms for faery", "clues": ["faerie", "fay", "fairy", "fairyland", "sprite", "faery"]}, {"answer": "fag", "hint": "synonyms for fag", "clues": ["nance", "fairy", "poove", "queer", "butt", "cigarette", "faggot", "pansy", "queen", "pouf", "poof", "coffin nail", "fag"]}, {"answer": "faggot", "hint": "synonyms for faggot", "clues": ["nance", "fairy", "fag", "poove", "queer", "pansy", "queen", "pouf", "poof", "fagot"]}, {"answer": "fagot", "hint": "synonyms for fagot", "clues": ["nance", "fairy", "fag", "poove", "queer", "faggot", "pansy", "queen", "pouf", "poof"]}, {"answer": "failure", "hint": "synonyms for failure", "clues": ["unsuccessful person", "bankruptcy", "nonstarter", "loser", "failure"]}, {"answer": "fairness", "hint": "synonyms for fairness", "clues": ["comeliness", "loveliness", "candor", "beauteousness", "fair-mindedness", "blondness", "equity", "paleness", "fairness"]}, {"answer": "fairy", "hint": "synonyms for fairy", "clues": ["fay", "nance", "fag", "poove", "queer", "sprite", "faerie", "faggot", "pansy", "queen", "pouf", "poof", "faery", "fairy"]}, {"answer": "fairy_story", "hint": "synonyms for fairy story", "clues": ["fairy tale", "song and dance", "cock-and-bull story", "fairy story"]}, {"answer": "fairy_tale", "hint": "synonyms for fairy tale", "clues": ["fairytale", "fairy story", "song and dance", "cock-and-bull story"]}, {"answer": "fairyland", "hint": "synonyms for fairyland", "clues": ["faerie", "fantasy world", "faery", "fairyland"]}, {"answer": "fairytale", "hint": "synonyms for fairytale", "clues": ["fairy tale", "fairy story", "song and dance", "cock-and-bull story"]}, {"answer": "faith", "hint": "synonyms for faith", "clues": ["organized religion", "religious belief", "trust", "religion", "faith"]}, {"answer": "faker", "hint": "synonyms for faker", "clues": ["fake", "imposter", "pseudo", "pretender", "sham", "role player", "shammer", "fraud"]}, {"answer": "falderol", "hint": "synonyms for falderol", "clues": ["nonsense", "folderal", "trumpery", "gimcrackery", "frill", "gimcrack", "falderol"]}, {"answer": "fall", "hint": "synonyms for fall", "clues": ["tumble", "twilight", "surrender", "capitulation", "decline", "declination", "pin", "downfall", "descent", "free fall", "declivity", "drop", "gloam", "crepuscle", "nightfall", "declension", "dip", "spill", "autumn", "Fall", "evenfall", "downslope", "dusk"]}, {"answer": "fall_guy", "hint": "synonyms for fall guy", "clues": ["soft touch", "mark", "mug", "gull", "patsy", "fool", "chump", "sucker", "fall guy"]}, {"answer": "fallal", "hint": "synonyms for fallal", "clues": ["bangle", "trinket", "gaud", "gewgaw", "novelty", "bauble", "fallal"]}, {"answer": "faller", "hint": "synonyms for faller", "clues": ["logger", "feller", "lumberman", "lumberjack", "faller"]}, {"answer": "falling_off", "hint": "synonyms for falling off", "clues": ["slump", "falloff", "slack", "drop-off", "falling off"]}, {"answer": "falling_out", "hint": "synonyms for falling out", "clues": ["break", "breach", "severance", "rupture", "rift", "falling out"]}, {"answer": "falloff", "hint": "synonyms for falloff", "clues": ["slump", "falling off", "drop-off", "slack", "falloff"]}, {"answer": "fallopio", "hint": "synonyms for fallopio", "clues": ["Gabriello Fallopio", "Fallopio", "Fallopius", "Gabriele Fallopius"]}, {"answer": "fallopius", "hint": "synonyms for fallopius", "clues": ["Gabriello Fallopio", "Fallopio", "Fallopius", "Gabriele Fallopius"]}, {"answer": "falls", "hint": "synonyms for falls", "clues": ["waterfall", "tumble", "twilight", "surrender", "capitulation", "decline", "declination", "pin", "downfall", "descent", "free fall", "declivity", "drop", "gloam", "crepuscle", "fall", "nightfall", "declension", "dip", "spill", "autumn", "evenfall", "downslope", "dusk"]}, {"answer": "false_vocal_cord", "hint": "synonyms for false vocal cord", "clues": ["vestibular fold", "ventricular fold", "false vocal fold", "superior vocal cord"]}, {"answer": "false_vocal_fold", "hint": "synonyms for false vocal fold", "clues": ["vestibular fold", "ventricular fold", "superior vocal cord", "false vocal cord"]}, {"answer": "falseness", "hint": "synonyms for falseness", "clues": ["falsity", "inconstancy", "insincerity", "hollowness", "fickleness", "faithlessness", "falseness"]}, {"answer": "falsification", "hint": "synonyms for falsification", "clues": ["misrepresentation", "refutation", "falsifying", "refutal", "falsehood", "disproof", "falsification"]}, {"answer": "falsifying", "hint": "synonyms for falsifying", "clues": ["falsification", "disproof", "refutation", "refutal", "falsifying"]}, {"answer": "familiarity", "hint": "synonyms for familiarity", "clues": ["indecorum", "impropriety", "intimacy", "conversancy", "acquaintance", "casualness", "closeness", "liberty", "familiarity"]}, {"answer": "family", "hint": "synonyms for family", "clues": ["syndicate", "crime syndicate", "fellowship", "sept", "category", "kin", "folk", "menage", "kinsfolk", "kinsperson", "class", "mob", "house", "household", "home", "family unit", "family line", "phratry", "family"]}, {"answer": "family_line", "hint": "synonyms for family line", "clues": ["folk", "family", "sept", "kinsfolk", "phratry", "family line"]}, {"answer": "fan", "hint": "synonyms for fan", "clues": ["devotee", "sports fan", "rooter", "buff", "lover", "fan"]}, {"answer": "fan-jet", "hint": "synonyms for fan-jet", "clues": ["turbofan", "fanjet engine", "fanjet", "turbofan engine", "turbojet", "turbojet engine"]}, {"answer": "fancy_man", "hint": "synonyms for fancy man", "clues": ["procurer", "pander", "ponce", "pandar", "pimp", "paramour", "fancy man"]}, {"answer": "fancy_woman", "hint": "synonyms for fancy woman", "clues": ["harlot", "working girl", "sporting lady", "bawd", "prostitute", "lady of pleasure", "mistress", "tart", "kept woman", "cocotte", "whore", "woman of the street", "cyprian", "fancy woman"]}, {"answer": "fanfare", "hint": "synonyms for fanfare", "clues": ["flourish", "ostentation", "flash", "tucket", "fanfare"]}, {"answer": "fanjet", "hint": "synonyms for fanjet", "clues": ["turbofan", "turbojet", "fanjet engine", "turbofan engine", "fan-jet", "turbojet engine"]}, {"answer": "fanjet_engine", "hint": "synonyms for fanjet engine", "clues": ["turbofan", "fanjet", "turbofan engine", "turbojet", "turbojet engine", "fanjet engine"]}, {"answer": "fanny", "hint": "synonyms for fanny", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "female genital organ", "female genitalia", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "hind end", "tooshie", "arse", "behind", "nates", "can", "fanny"]}, {"answer": "fanny_adams", "hint": "synonyms for fanny adams", "clues": ["bugger all", "fuck all", "Fanny Adams", "sweet Fanny Adams"]}, {"answer": "fantasm", "hint": "synonyms for fantasm", "clues": ["phantom", "phantasma", "shadow", "spectre", "apparition", "fantasm"]}, {"answer": "farewell", "hint": "synonyms for farewell", "clues": ["leave-taking", "word of farewell", "parting", "leave", "farewell"]}, {"answer": "farmer", "hint": "synonyms for farmer", "clues": ["James Leonard Farmer", "husbandman", "Fannie Farmer", "Fannie Merritt Farmer", "sodbuster", "granger", "Farmer"]}, {"answer": "farmland", "hint": "synonyms for farmland", "clues": ["tillage", "farming area", "cultivated land", "tilth", "tilled land", "ploughland", "plowland", "farmland"]}, {"answer": "farrago", "hint": "synonyms for farrago", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "hotchpotch", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "farrago"]}, {"answer": "farsightedness", "hint": "synonyms for farsightedness", "clues": ["prospicience", "longsightedness", "foresight", "presbyopia", "hypermetropia", "prevision", "hyperopia", "farsightedness"]}, {"answer": "fart", "hint": "synonyms for fart", "clues": ["farting", "flatus", "breaking wind", "wind"]}, {"answer": "farting", "hint": "synonyms for farting", "clues": ["fart", "flatus", "breaking wind", "wind"]}, {"answer": "fashion", "hint": "synonyms for fashion", "clues": ["mode", "way", "style", "manner", "fashion"]}, {"answer": "fashion_business", "hint": "synonyms for fashion business", "clues": ["apparel industry", "rag trade", "garment industry", "fashion industry", "fashion business"]}, {"answer": "fashion_industry", "hint": "synonyms for fashion industry", "clues": ["fashion business", "apparel industry", "rag trade", "garment industry", "fashion industry"]}, {"answer": "fashion_model", "hint": "synonyms for fashion model", "clues": ["mannikin", "mannequin", "manakin", "model", "fashion model"]}, {"answer": "fashion_plate", "hint": "synonyms for fashion plate", "clues": ["fop", "dandy", "gallant", "sheik", "clotheshorse", "beau", "swell", "dude", "fashion plate"]}, {"answer": "fastball", "hint": "synonyms for fastball", "clues": ["bullet", "heater", "smoke", "hummer", "fastball"]}, {"answer": "fastening", "hint": "synonyms for fastening", "clues": ["attachment", "fixing", "fastener", "holdfast", "fastening"]}, {"answer": "fastness", "hint": "synonyms for fastness", "clues": ["fixity", "fixture", "stronghold", "secureness", "swiftness", "fixedness", "speed", "fastness"]}, {"answer": "fat_person", "hint": "synonyms for fat person", "clues": ["fatso", "butterball", "roly-poly", "fatty", "fat person"]}, {"answer": "fatah-rc", "hint": "synonyms for fatah-rc", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "fatah_revolutionary_council", "hint": "synonyms for fatah revolutionary council", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "fatality_rate", "hint": "synonyms for fatality rate", "clues": ["death rate", "mortality rate", "mortality", "fatality rate"]}, {"answer": "fate", "hint": "synonyms for fate", "clues": ["lot", "fortune", "portion", "destiny", "circumstances", "luck", "fate"]}, {"answer": "fathead", "hint": "synonyms for fathead", "clues": ["jackass", "goofball", "goose", "goof", "bozo", "cuckoo", "zany", "twat", "fathead"]}, {"answer": "father", "hint": "synonyms for father", "clues": ["Padre", "founding father", "Father-God", "sire", "Fatherhood", "Church Father", "Father of the Church", "beginner", "male parent", "don", "forefather", "Father", "begetter", "founder"]}, {"answer": "father_christmas", "hint": "synonyms for father christmas", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "fatherhood", "hint": "synonyms for fatherhood", "clues": ["Fatherhood", "paternity", "Father-God", "Father"]}, {"answer": "fatherland", "hint": "synonyms for fatherland", "clues": ["country of origin", "motherland", "native land", "homeland", "mother country", "fatherland"]}, {"answer": "fatigues", "hint": "synonyms for fatigues", "clues": ["fatigue duty", "weariness", "fatigue", "tiredness"]}, {"answer": "fatso", "hint": "synonyms for fatso", "clues": ["fatty", "fat person", "butterball", "roly-poly", "fatso"]}, {"answer": "fault", "hint": "synonyms for fault", "clues": ["break", "fracture", "faulting", "shift", "error", "defect", "geological fault", "mistake", "demerit", "flaw"]}, {"answer": "faulting", "hint": "synonyms for faulting", "clues": ["break", "fault", "geological fault", "fracture", "shift"]}, {"answer": "fauna", "hint": "synonyms for fauna", "clues": ["animate being", "creature", "beast", "animal", "brute", "zoology", "fauna"]}, {"answer": "faux_pas", "hint": "synonyms for faux pas", "clues": ["solecism", "gaffe", "gaucherie", "slip", "faux pas"]}, {"answer": "favorableness", "hint": "synonyms for favorableness", "clues": ["positiveness", "positivity", "advantageousness", "favourableness", "profitableness"]}, {"answer": "favourableness", "hint": "synonyms for favourableness", "clues": ["positiveness", "favorableness", "positivity", "advantageousness", "profitableness"]}, {"answer": "fawner", "hint": "synonyms for fawner", "clues": ["truckler", "groveler", "bootlicker", "apple polisher", "fawner"]}, {"answer": "fay", "hint": "synonyms for fay", "clues": ["faerie", "sprite", "fairy", "faery", "fay"]}, {"answer": "fdr", "hint": "synonyms for fdr", "clues": ["President Roosevelt", "Franklin Delano Roosevelt", "FDR", "F. D. Roosevelt", "Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt"]}, {"answer": "fear", "hint": "synonyms for fear", "clues": ["veneration", "awe", "reverence", "fright", "fearfulness", "concern", "care", "fear"]}, {"answer": "feast", "hint": "synonyms for feast", "clues": ["banquet", "spread", "fete", "fiesta", "feast"]}, {"answer": "feast_of_booths", "hint": "synonyms for feast of booths", "clues": ["Feast of Booths", "Tabernacles", "Feast of Tabernacles", "Sukkoth", "Succos", "Succoth"]}, {"answer": "feast_of_dedication", "hint": "synonyms for feast of dedication", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "feast_of_lights", "hint": "synonyms for feast of lights", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "feast_of_tabernacles", "hint": "synonyms for feast of tabernacles", "clues": ["Feast of Booths", "Tabernacles", "Feast of Tabernacles", "Sukkoth", "Succos", "Succoth"]}, {"answer": "feast_of_the_dedication", "hint": "synonyms for feast of the dedication", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "feast_of_weeks", "hint": "synonyms for feast of weeks", "clues": ["Shavous", "Shavuot", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "feature", "hint": "synonyms for feature", "clues": ["feature film", "characteristic", "feature article", "lineament", "feature of speech", "feature"]}, {"answer": "febricity", "hint": "synonyms for febricity", "clues": ["febrility", "fever", "pyrexia", "feverishness"]}, {"answer": "febrility", "hint": "synonyms for febrility", "clues": ["febricity", "fever", "pyrexia", "feverishness"]}, {"answer": "fecal_matter", "hint": "synonyms for fecal matter", "clues": ["ordure", "stool", "faecal matter", "feces", "dejection", "BM"]}, {"answer": "feces", "hint": "synonyms for feces", "clues": ["ordure", "stool", "fecal matter", "dejection", "BM", "faeces"]}, {"answer": "fecundation", "hint": "synonyms for fecundation", "clues": ["impregnation", "fertilization", "dressing", "fecundation"]}, {"answer": "fed", "hint": "synonyms for fed", "clues": ["Federal Reserve", "federal official", "Federal", "Fed", "FRS", "Federal Reserve System"]}, {"answer": "federal_agency", "hint": "synonyms for federal agency", "clues": ["authority", "government agency", "office", "agency", "bureau", "federal agency"]}, {"answer": "federal_democratic_republic_of_ethiopia", "hint": "synonyms for federal democratic republic of ethiopia", "clues": ["Ethiopia", "Yaltopya", "Abyssinia", "Federal Democratic Republic of Ethiopia"]}, {"answer": "federal_republic_of_germany", "hint": "synonyms for federal republic of germany", "clues": ["Germany", "Federal Republic of Germany", "West Germany", "Deutschland", "FRG"]}, {"answer": "federal_republic_of_yugoslavia", "hint": "synonyms for federal republic of yugoslavia", "clues": ["Yugoslavia", "Union of Serbia and Montenegro", "Federal Republic of Yugoslavia", "Serbia and Montenegro"]}, {"answer": "federal_reserve", "hint": "synonyms for federal reserve", "clues": ["Federal Reserve", "FRS", "Federal Reserve System", "Fed"]}, {"answer": "federal_reserve_note", "hint": "synonyms for federal reserve note", "clues": ["note", "government note", "banker's bill", "bill", "Federal Reserve note", "bank note", "bank bill", "greenback"]}, {"answer": "federal_reserve_system", "hint": "synonyms for federal reserve system", "clues": ["Federal Reserve", "FRS", "Federal Reserve System", "Fed"]}, {"answer": "fedora", "hint": "synonyms for fedora", "clues": ["homburg", "Stetson", "felt hat", "trilby", "fedora"]}, {"answer": "feebleness", "hint": "synonyms for feebleness", "clues": ["frailness", "tenuity", "infirmity", "debility", "frailty", "valetudinarianism", "feebleness"]}, {"answer": "feeder", "hint": "synonyms for feeder", "clues": ["birdfeeder", "affluent", "confluent", "tributary", "eater", "self-feeder", "feeder"]}, {"answer": "feel", "hint": "synonyms for feel", "clues": ["flavour", "smell", "look", "spirit", "tactile property", "feeling", "tone"]}, {"answer": "feeler", "hint": "synonyms for feeler", "clues": ["advance", "overture", "antenna", "approach", "feeler"]}, {"answer": "feeling", "hint": "synonyms for feeling", "clues": ["flavour", "smell", "look", "tactual sensation", "spirit", "belief", "impression", "notion", "tone", "touch", "intuitive feeling", "touch sensation", "feel", "opinion"]}, {"answer": "feelings", "hint": "synonyms for feelings", "clues": ["flavour", "look", "smell", "tactual sensation", "spirit", "belief", "impression", "notion", "tone", "touch", "intuitive feeling", "touch sensation", "feel", "opinion", "feelings"]}, {"answer": "feigning", "hint": "synonyms for feigning", "clues": ["simulation", "pretense", "dissembling", "pretending", "feigning"]}, {"answer": "feliz_lusitania", "hint": "synonyms for feliz lusitania", "clues": ["Belem", "Para", "Santa Maria de Belem", "St. Mary of Bethlehem", "Feliz Lusitania"]}, {"answer": "fella", "hint": "synonyms for fella", "clues": ["lad", "blighter", "bloke", "gent", "feller", "chap", "fellow", "cuss", "fella"]}, {"answer": "fellata", "hint": "synonyms for fellata", "clues": ["Fellata", "Fulani", "Fulbe", "Fula"]}, {"answer": "feller", "hint": "synonyms for feller", "clues": ["cuss", "fella", "lumberjack", "blighter", "logger", "faller", "chap", "gent", "fellow", "bloke", "lumberman", "lad", "feller"]}, {"answer": "fellow", "hint": "synonyms for fellow", "clues": ["comrade", "fella", "blighter", "mate", "buster", "companion", "associate", "beau", "young man", "feller", "chap", "lad", "dude", "cuss", "boyfriend", "swain", "familiar", "confrere", "gent", "colleague", "bloke", "fellow"]}, {"answer": "fellowship", "hint": "synonyms for fellowship", "clues": ["family", "society", "company", "companionship", "fellowship"]}, {"answer": "felon", "hint": "synonyms for felon", "clues": ["outlaw", "crook", "malefactor", "whitlow", "criminal", "felon"]}, {"answer": "felt_hat", "hint": "synonyms for felt hat", "clues": ["homburg", "Stetson", "trilby", "fedora", "felt hat"]}, {"answer": "femme_fatale", "hint": "synonyms for femme fatale", "clues": ["siren", "temptress", "Delilah", "enchantress", "femme fatale"]}, {"answer": "fender", "hint": "synonyms for fender", "clues": ["pilot", "wing", "buffer", "cowcatcher", "fender"]}, {"answer": "ferdinand", "hint": "synonyms for ferdinand", "clues": ["King Ferdinand", "Ferdinand V", "Ferdinand the Catholic", "Ferdinand of Aragon"]}, {"answer": "ferdinand_of_aragon", "hint": "synonyms for ferdinand of aragon", "clues": ["King Ferdinand", "Ferdinand V", "Ferdinand the Catholic", "Ferdinand of Aragon"]}, {"answer": "ferdinand_the_catholic", "hint": "synonyms for ferdinand the catholic", "clues": ["King Ferdinand", "Ferdinand V", "Ferdinand the Catholic", "Ferdinand of Aragon"]}, {"answer": "ferdinand_v", "hint": "synonyms for ferdinand v", "clues": ["King Ferdinand", "Ferdinand V", "Ferdinand the Catholic", "Ferdinand of Aragon"]}, {"answer": "fere_phenomenon", "hint": "synonyms for fere phenomenon", "clues": ["electrical skin response", "Tarchanoff phenomenon", "electrodermal response", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response"]}, {"answer": "ferment", "hint": "synonyms for ferment", "clues": ["fermentation", "unrest", "agitation", "fermenting", "zymolysis", "tempestuousness"]}, {"answer": "fermentation", "hint": "synonyms for fermentation", "clues": ["unrest", "agitation", "fermenting", "zymolysis", "tempestuousness", "fermentation"]}, {"answer": "ferocity", "hint": "synonyms for ferocity", "clues": ["fierceness", "furiousness", "vehemence", "fury", "violence", "wildness", "ferocity"]}, {"answer": "fertilisation", "hint": "synonyms for fertilisation", "clues": ["impregnation", "fertilization", "dressing", "fecundation"]}, {"answer": "fertility", "hint": "synonyms for fertility", "clues": ["fecundity", "rankness", "natality", "birthrate", "fertility rate", "prolificacy", "richness", "fertility"]}, {"answer": "fertility_rate", "hint": "synonyms for fertility rate", "clues": ["natality", "birthrate", "fertility", "fertility rate"]}, {"answer": "fertilization", "hint": "synonyms for fertilization", "clues": ["impregnation", "dressing", "fertilisation", "fecundation"]}, {"answer": "fervency", "hint": "synonyms for fervency", "clues": ["fervor", "fervidness", "ardor", "fire", "fervency"]}, {"answer": "fervidness", "hint": "synonyms for fervidness", "clues": ["fervor", "ardor", "fervency", "fire", "fervidness"]}, {"answer": "fervor", "hint": "synonyms for fervor", "clues": ["fervidness", "excitation", "ardour", "fire", "fervour", "fervency", "inflammation", "excitement"]}, {"answer": "fervour", "hint": "synonyms for fervour", "clues": ["fervidness", "excitation", "ardour", "fire", "fervor", "fervency", "inflammation", "excitement"]}, {"answer": "fes", "hint": "synonyms for fes", "clues": ["Fe", "Fez", "iron", "atomic number 26"]}, {"answer": "festering", "hint": "synonyms for festering", "clues": ["ichor", "purulence", "sanies", "pus", "maturation", "suppuration", "festering"]}, {"answer": "festival_of_lights", "hint": "synonyms for festival of lights", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "fetich", "hint": "synonyms for fetich", "clues": ["voodoo", "hoodoo", "juju", "fetish", "fetich"]}, {"answer": "fetidness", "hint": "synonyms for fetidness", "clues": ["malodorousness", "rankness", "foulness", "stinkiness", "fetidness"]}, {"answer": "fetish", "hint": "synonyms for fetish", "clues": ["voodoo", "hoodoo", "fetich", "juju", "fetish"]}, {"answer": "fetor", "hint": "synonyms for fetor", "clues": ["stink", "foetor", "mephitis", "stench", "malodor", "reek"]}, {"answer": "fever", "hint": "synonyms for fever", "clues": ["febricity", "pyrexia", "feverishness", "fever"]}, {"answer": "feverishness", "hint": "synonyms for feverishness", "clues": ["febricity", "fever", "pyrexia", "feverishness"]}, {"answer": "fiat", "hint": "synonyms for fiat", "clues": ["order", "rescript", "decree", "edict", "fiat"]}, {"answer": "fib", "hint": "synonyms for fib", "clues": ["story", "taradiddle", "tale", "fib"]}, {"answer": "fiber", "hint": "synonyms for fiber", "clues": ["roughage", "vulcanized fiber", "character", "fibre", "fiber"]}, {"answer": "fibrocystic_disease_of_the_pancreas", "hint": "synonyms for fibrocystic disease of the pancreas", "clues": ["mucoviscidosis", "pancreatic fibrosis", "cystic fibrosis", "CF", "fibrocystic disease of the pancreas"]}, {"answer": "field", "hint": "synonyms for field", "clues": ["playing field", "theater", "field of study", "subject field", "athletic field", "field of honor", "subject", "discipline", "champaign", "theater of operations", "field of operations", "study", "subject area", "line of business", "plain", "airfield", "area", "battlefield", "sphere", "landing field", "field of force", "field of battle", "playing area", "bailiwick", "orbit", "domain", "field of view", "battleground", "force field", "field"]}, {"answer": "field_glasses", "hint": "synonyms for field glasses", "clues": ["opera glasses", "spyglass", "binoculars", "field glass", "glass"]}, {"answer": "field_of_battle", "hint": "synonyms for field of battle", "clues": ["battleground", "battlefield", "field of honor", "field", "field of battle"]}, {"answer": "field_of_honor", "hint": "synonyms for field of honor", "clues": ["battleground", "battlefield", "field of battle", "field", "field of honor"]}, {"answer": "field_of_operations", "hint": "synonyms for field of operations", "clues": ["theater", "theatre of operations", "field", "line of business", "field of operation"]}, {"answer": "field_of_study", "hint": "synonyms for field of study", "clues": ["bailiwick", "subject field", "study", "field", "subject area", "subject", "discipline", "field of study"]}, {"answer": "fields", "hint": "synonyms for fields", "clues": ["playing field", "subject field", "field", "subject", "discipline", "theater of operations", "study", "subject area", "sphere", "field of operation", "playing area", "bailiwick", "orbit", "domain", "battleground", "battlefield", "force field", "theater", "field of study", "W. C. Fields", "athletic field", "field of honor", "champaign", "plain", "line of business", "airfield", "area", "William Claude Dukenfield", "landing field", "field of force", "field of view", "field of battle"]}, {"answer": "fiend", "hint": "synonyms for fiend", "clues": ["daimon", "demon", "devil", "ogre", "fanatic", "monster", "fiend"]}, {"answer": "fierceness", "hint": "synonyms for fierceness", "clues": ["furiousness", "ferocity", "vehemence", "fury", "violence", "wildness", "fierceness"]}, {"answer": "fifth_cranial_nerve", "hint": "synonyms for fifth cranial nerve", "clues": ["trigeminal nerve", "nervus trigeminus", "trigeminal", "trigeminus", "fifth cranial nerve"]}, {"answer": "fifties", "hint": "synonyms for fifties", "clues": ["L", "mid-fifties", "fifty", "fifty dollar bill", "1950s", "50", "fifties"]}, {"answer": "fig", "hint": "synonyms for fig", "clues": ["Libyan Fighting Group", "FIG", "Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya", "Libyan Islamic Fighting Group", "Libyan Islamic Group", "figure"]}, {"answer": "fight", "hint": "synonyms for fight", "clues": ["combat", "competitiveness", "scrap", "battle", "conflict", "fighting", "engagement"]}, {"answer": "fighter", "hint": "synonyms for fighter", "clues": ["scrapper", "combatant", "battler", "champion", "belligerent", "fighter aircraft", "attack aircraft", "hero", "paladin", "fighter"]}, {"answer": "figure", "hint": "synonyms for figure", "clues": ["form", "name", "design", "flesh", "frame", "public figure", "anatomy", "image", "physical body", "human body", "soma", "trope", "bod", "physique", "digit", "number", "pattern", "figure of speech", "shape", "chassis", "material body", "fig", "build", "figure"]}, {"answer": "figurehead", "hint": "synonyms for figurehead", "clues": ["front", "strawman", "nominal head", "front man", "figurehead"]}, {"answer": "figurer", "hint": "synonyms for figurer", "clues": ["estimator", "computer", "calculator", "reckoner", "figurer"]}, {"answer": "file", "hint": "synonyms for file", "clues": ["single file", "filing cabinet", "file cabinet", "Indian file", "data file", "file"]}, {"answer": "filiation", "hint": "synonyms for filiation", "clues": ["descent", "lineage", "derivation", "line of descent", "ancestry", "filiation"]}, {"answer": "fill-in", "hint": "synonyms for fill-in", "clues": ["backup", "stand-in", "substitute", "relief", "reliever", "backup man", "fill-in"]}, {"answer": "fille", "hint": "synonyms for fille", "clues": ["young woman", "missy", "girl", "young lady", "fille"]}, {"answer": "fillet", "hint": "synonyms for fillet", "clues": ["tenia", "fish fillet", "stopping", "filet", "lemniscus"]}, {"answer": "filling", "hint": "synonyms for filling", "clues": ["weft", "fill", "woof", "pick"]}, {"answer": "film", "hint": "synonyms for film", "clues": ["movie", "picture show", "motion-picture show", "photographic film", "moving picture", "pic", "flick", "cinema", "picture", "celluloid", "plastic film", "film"]}, {"answer": "filth", "hint": "synonyms for filth", "clues": ["soil", "smut", "grime", "nastiness", "obscenity", "crud", "dirty word", "grease", "skank", "stain", "foulness", "filthiness", "grunge", "vulgarism", "dirt", "filth"]}, {"answer": "fin", "hint": "synonyms for fin", "clues": ["louvre", "V", "quintuplet", "Phoebe", "flipper", "five", "tailfin", "5", "louver", "quintet", "quint", "Little Phoebe", "pentad", "cinque", "fivesome", "fin"]}, {"answer": "final_result", "hint": "synonyms for final result", "clues": ["termination", "outcome", "result", "resultant", "final result"]}, {"answer": "finale", "hint": "synonyms for finale", "clues": ["conclusion", "close", "stopping point", "last", "finis", "coda", "closing curtain", "finale"]}, {"answer": "finances", "hint": "synonyms for finances", "clues": ["funds", "monetary resource", "finance", "pecuniary resource", "cash in hand"]}, {"answer": "financial_backing", "hint": "synonyms for financial backing", "clues": ["support", "financial support", "backing", "funding", "financial backing"]}, {"answer": "financial_support", "hint": "synonyms for financial support", "clues": ["support", "financial backing", "backing", "funding", "financial support"]}, {"answer": "finder", "hint": "synonyms for finder", "clues": ["view finder", "spotter", "discoverer", "finder"]}, {"answer": "fineness", "hint": "synonyms for fineness", "clues": ["daintiness", "thinness", "powderiness", "choiceness", "delicacy", "fineness"]}, {"answer": "finis", "hint": "synonyms for finis", "clues": ["finale", "conclusion", "close", "stopping point", "last", "closing curtain", "finish"]}, {"answer": "finish", "hint": "synonyms for finish", "clues": ["finale", "coating", "conclusion", "close", "polish", "refinement", "stopping point", "last", "culture", "goal", "finis", "finishing", "ending", "destination", "cultivation"]}, {"answer": "fink", "hint": "synonyms for fink", "clues": ["sneaker", "stool pigeon", "snitcher", "stoolie", "sneak", "canary", "fink"]}, {"answer": "finnish_capital", "hint": "synonyms for finnish capital", "clues": ["capital of Finland", "Helsingfors", "Helsinki", "Finnish capital"]}, {"answer": "fire", "hint": "synonyms for fire", "clues": ["flame", "firing", "blast", "fervidness", "attack", "flaming", "ardour", "fervour", "flak", "fervency", "fire"]}, {"answer": "fire-eater", "hint": "synonyms for fire-eater", "clues": ["fireman", "fire-swallower", "firefighter", "hothead", "fire-eater"]}, {"answer": "fireball", "hint": "synonyms for fireball", "clues": ["bolide", "powerhouse", "human dynamo", "ball of fire", "fireball"]}, {"answer": "firebrand", "hint": "synonyms for firebrand", "clues": ["instigator", "provoker", "inciter", "instigant", "brand", "firebrand"]}, {"answer": "fireman", "hint": "synonyms for fireman", "clues": ["reliever", "relief pitcher", "stoker", "firefighter", "fire-eater", "fireman"]}, {"answer": "firing", "hint": "synonyms for firing", "clues": ["sacking", "firing off", "dismissal", "fire", "kindling", "dismission", "liberation", "lighting", "release", "inflammation", "ignition", "discharge", "firing"]}, {"answer": "firmament", "hint": "synonyms for firmament", "clues": ["sphere", "heavens", "welkin", "empyrean", "celestial sphere", "vault of heaven", "firmament"]}, {"answer": "firmness", "hint": "synonyms for firmness", "clues": ["resolve", "resolution", "resoluteness", "firmness of purpose", "steadiness", "soundness", "firmness"]}, {"answer": "firmness_of_purpose", "hint": "synonyms for firmness of purpose", "clues": ["resoluteness", "resolution", "resolve", "firmness", "firmness of purpose"]}, {"answer": "first_appearance", "hint": "synonyms for first appearance", "clues": ["entry", "unveiling", "introduction", "launching", "debut", "first appearance"]}, {"answer": "first_baron_lytton", "hint": "synonyms for first baron lytton", "clues": ["Edward George Earle Bulwer-Lytton", "Bulwer-Lytton", "Lytton", "First Baron Lytton"]}, {"answer": "first_baron_macaulay", "hint": "synonyms for first baron macaulay", "clues": ["Macaulay", "First Baron Macaulay", "Thomas Babington Macaulay", "Lord Macaulay"]}, {"answer": "first_baron_passfield", "hint": "synonyms for first baron passfield", "clues": ["First Baron Passfield", "Webb", "Sidney James Webb", "Sidney Webb"]}, {"answer": "first_baron_rutherford", "hint": "synonyms for first baron rutherford", "clues": ["Rutherford", "Ernest Rutherford", "First Baron Rutherford of Nelson", "First Baron Rutherford"]}, {"answer": "first_baron_rutherford_of_nelson", "hint": "synonyms for first baron rutherford of nelson", "clues": ["Rutherford", "Ernest Rutherford", "First Baron Rutherford of Nelson", "First Baron Rutherford"]}, {"answer": "first_derivative", "hint": "synonyms for first derivative", "clues": ["derivative", "differential", "differential coefficient", "derived function", "first derivative"]}, {"answer": "first_duke_of_wellington", "hint": "synonyms for first duke of wellington", "clues": ["Iron Duke", "Duke of Wellington", "Arthur Wellesley", "Wellington"]}, {"answer": "first_earl_kitchener_of_khartoum", "hint": "synonyms for first earl kitchener of khartoum", "clues": ["Horatio Herbert Kitchener", "First Earl Kitchener of Khartoum", "Kitchener", "Herbert Kitchener"]}, {"answer": "first_earl_of_chatham", "hint": "synonyms for first earl of chatham", "clues": ["William Pitt", "Pitt", "Pitt the Elder", "First Earl of Chatham"]}, {"answer": "first_light", "hint": "synonyms for first light", "clues": ["break of day", "dayspring", "daybreak", "aurora", "sunup", "dawning", "sunrise", "morning", "cockcrow", "first light"]}, {"answer": "first_principle", "hint": "synonyms for first principle", "clues": ["ABC", "first rudiment", "rudiment", "ABC's", "alphabet", "first principle"]}, {"answer": "first_rudiment", "hint": "synonyms for first rudiment", "clues": ["ABC", "first principle", "rudiment", "ABC's", "alphabet", "first rudiment"]}, {"answer": "first_state", "hint": "synonyms for first state", "clues": ["Diamond State", "First State", "DE", "Delaware"]}, {"answer": "first_viscount_haldane_of_cloan", "hint": "synonyms for first viscount haldane of cloan", "clues": ["First Viscount Haldane of Cloan", "Richard Haldane", "Richard Burdon Haldane", "Haldane"]}, {"answer": "first_visual_area", "hint": "synonyms for first visual area", "clues": ["striate cortex", "striate area", "area 17 of Brodmann", "Brodmann's area 17", "first visual area"]}, {"answer": "first_world_war", "hint": "synonyms for first world war", "clues": ["World War I", "First World War", "War to End War", "Great War"]}, {"answer": "fischer", "hint": "synonyms for fischer", "clues": ["Bobby Fischer", "Hans Fischer", "Robert James Fischer", "Emil Hermann Fischer", "Fischer"]}, {"answer": "fishgig", "hint": "synonyms for fishgig", "clues": ["gig", "lance", "fizgig", "spear", "fishgig"]}, {"answer": "fishing_gear", "hint": "synonyms for fishing gear", "clues": ["tackle", "fishing rig", "fishing tackle", "rig", "fishing gear"]}, {"answer": "fishing_rig", "hint": "synonyms for fishing rig", "clues": ["tackle", "fishing tackle", "fishing gear", "rig", "fishing rig"]}, {"answer": "fishing_tackle", "hint": "synonyms for fishing tackle", "clues": ["tackle", "fishing rig", "rig", "fishing gear", "fishing tackle"]}, {"answer": "fission_bomb", "hint": "synonyms for fission bomb", "clues": ["plutonium bomb", "atom bomb", "A-bomb", "fission bomb"]}, {"answer": "fissure", "hint": "synonyms for fissure", "clues": ["cleft", "crack", "cranny", "crevice", "scissure", "chap", "fissure"]}, {"answer": "fissure_of_rolando", "hint": "synonyms for fissure of rolando", "clues": ["fissure of Rolando", "Rolando's fissure", "central sulcus", "sulcus centralis"]}, {"answer": "fissure_of_sylvius", "hint": "synonyms for fissure of sylvius", "clues": ["fissure of Sylvius", "lateral cerebral sulcus", "Sylvian fissure", "sulcus lateralis cerebri"]}, {"answer": "fisticuffs", "hint": "synonyms for fisticuffs", "clues": ["slugfest", "pugilism", "boxing", "fistfight", "fisticuffs"]}, {"answer": "fitzgerald", "hint": "synonyms for fitzgerald", "clues": ["F. Scott Fitzgerald", "Edward Fitzgerald", "Ella Fitzgerald", "Francis Scott Key Fitzgerald", "Fitzgerald"]}, {"answer": "five_nations", "hint": "synonyms for five nations", "clues": ["Iroquois League", "Five Nations", "Six Nations", "League of Iroquois"]}, {"answer": "fives", "hint": "synonyms for fives", "clues": ["V", "quintuplet", "Phoebe", "five", "5", "quintet", "quint", "basketball team", "Little Phoebe", "five-spot", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "fivesome", "hint": "synonyms for fivesome", "clues": ["V", "quintuplet", "Phoebe", "quintette", "five", "5", "quint", "Little Phoebe", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "fix", "hint": "synonyms for fix", "clues": ["muddle", "reparation", "fixing", "fixture", "localization", "kettle of fish", "mess", "location", "mend", "pickle", "jam", "repair", "hole"]}, {"answer": "fixation", "hint": "synonyms for fixation", "clues": ["arrested development", "infantile fixation", "fixing", "obsession", "regression", "fixation"]}, {"answer": "fixedness", "hint": "synonyms for fixedness", "clues": ["fastness", "fixity", "fixture", "secureness", "stationariness", "unalterability", "immobility", "fixedness"]}, {"answer": "fixer", "hint": "synonyms for fixer", "clues": ["mender", "influence peddler", "methadone hydrochloride", "methadone", "fixing agent", "dolophine hydrochloride", "synthetic heroin", "repairer", "fixer"]}, {"answer": "fixing", "hint": "synonyms for fixing", "clues": ["reparation", "holdfast", "fixture", "neutering", "mend", "altering", "repair", "fix", "fastening", "fixation", "fastener"]}, {"answer": "fixings", "hint": "synonyms for fixings", "clues": ["reparation", "fixing", "holdfast", "fixture", "neutering", "mend", "altering", "ingredient", "repair", "fastening", "trimmings", "fixation", "fastener"]}, {"answer": "fixity", "hint": "synonyms for fixity", "clues": ["fastness", "immutableness", "fixture", "secureness", "immutability", "fixedness", "fixity"]}, {"answer": "fixture", "hint": "synonyms for fixture", "clues": ["reparation", "fastness", "fixity", "fixing", "regular", "mend", "repair", "secureness", "habitue", "fixedness", "fixture"]}, {"answer": "fizgig", "hint": "synonyms for fizgig", "clues": ["lance", "fishgig", "gig", "spear", "fizgig"]}, {"answer": "fizzle", "hint": "synonyms for fizzle", "clues": ["sibilation", "hissing", "flop", "hushing", "bust", "fizzle"]}, {"answer": "fl", "hint": "synonyms for fl", "clues": ["Sunshine State", "FL", "Florida", "Everglade State"]}, {"answer": "flack", "hint": "synonyms for flack", "clues": ["blast", "attack", "pom-pom", "flack catcher", "fire", "antiaircraft", "flak", "ack-ack gun", "ack-ack"]}, {"answer": "flag", "hint": "synonyms for flag", "clues": ["signal flag", "flagstone", "masthead", "pin", "flag"]}, {"answer": "flag-waver", "hint": "synonyms for flag-waver", "clues": ["hundred-percenter", "jingo", "chauvinist", "patrioteer", "jingoist", "flag-waver"]}, {"answer": "flagellation", "hint": "synonyms for flagellation", "clues": ["whipping", "tanning", "lashing", "flogging", "flagellation"]}, {"answer": "flair", "hint": "synonyms for flair", "clues": ["style", "elan", "panache", "flare", "dash", "genius", "flair"]}, {"answer": "flak", "hint": "synonyms for flak", "clues": ["blast", "attack", "pom-pom", "flack catcher", "fire", "antiaircraft", "ack-ack gun", "ack-ack", "flack"]}, {"answer": "flake", "hint": "synonyms for flake", "clues": ["eccentric person", "geek", "snowflake", "bit", "chip", "oddball", "fleck", "scrap", "eccentric", "flake"]}, {"answer": "flannel", "hint": "synonyms for flannel", "clues": ["white", "gabardine", "face cloth", "tweed", "washcloth", "washrag", "flannel"]}, {"answer": "flannel-cake", "hint": "synonyms for flannel-cake", "clues": ["hot cake", "griddlecake", "flapjack", "flannel cake", "battercake", "flapcake", "pancake"]}, {"answer": "flannel_cake", "hint": "synonyms for flannel cake", "clues": ["hot cake", "griddlecake", "flapjack", "battercake", "flapcake", "pancake", "flannel-cake"]}, {"answer": "flap", "hint": "synonyms for flap", "clues": ["dither", "tizzy", "pother", "flapping", "fluttering", "flaps", "fuss"]}, {"answer": "flapcake", "hint": "synonyms for flapcake", "clues": ["hot cake", "griddlecake", "flapjack", "flannel cake", "battercake", "pancake", "flapcake"]}, {"answer": "flapjack", "hint": "synonyms for flapjack", "clues": ["hot cake", "griddlecake", "flannel cake", "battercake", "flapcake", "pancake", "flapjack"]}, {"answer": "flaps", "hint": "synonyms for flaps", "clues": ["pother", "flap", "fuss", "flutter", "flapping", "dither", "tizzy"]}, {"answer": "flare", "hint": "synonyms for flare", "clues": ["flair", "solar flare", "flash", "flare pass", "flare"]}, {"answer": "flash_bulb", "hint": "synonyms for flash bulb", "clues": ["flashgun", "photoflash", "flash", "flashbulb", "flash lamp"]}, {"answer": "flash_lamp", "hint": "synonyms for flash lamp", "clues": ["flashgun", "photoflash", "flash", "flashbulb", "flash lamp"]}, {"answer": "flashbulb", "hint": "synonyms for flashbulb", "clues": ["flashgun", "photoflash", "flash", "flash bulb", "flash lamp"]}, {"answer": "flashgun", "hint": "synonyms for flashgun", "clues": ["photoflash", "flash", "flashbulb", "flash lamp", "flashgun"]}, {"answer": "flashiness", "hint": "synonyms for flashiness", "clues": ["garishness", "tawdriness", "brashness", "glitz", "meretriciousness", "gaudiness", "loudness", "flashiness"]}, {"answer": "flat_coat", "hint": "synonyms for flat coat", "clues": ["primer coat", "priming coat", "undercoat", "primer", "ground", "priming", "flat coat"]}, {"answer": "flatness", "hint": "synonyms for flatness", "clues": ["lethargy", "matt", "sluggishness", "planeness", "two-dimensionality", "lustrelessness", "languor", "phlegm", "flatness"]}, {"answer": "flats", "hint": "synonyms for flats", "clues": ["apartment", "flat", "flatcar", "flat tire", "flatbed"]}, {"answer": "flattop", "hint": "synonyms for flattop", "clues": ["crew cut", "attack aircraft carrier", "aircraft carrier", "carrier", "flattop"]}, {"answer": "flatulence", "hint": "synonyms for flatulence", "clues": ["turgidness", "turgidity", "flatulency", "gas"]}, {"answer": "flatus", "hint": "synonyms for flatus", "clues": ["fart", "breaking wind", "wind", "flatus"]}, {"answer": "flavor", "hint": "synonyms for flavor", "clues": ["flavour", "smell", "look", "nip", "spirit", "sapidity", "relish", "savor", "smack", "tone", "tang", "feel"]}, {"answer": "flavorer", "hint": "synonyms for flavorer", "clues": ["seasoning", "flavoring", "seasoner", "flavourer"]}, {"answer": "flavoring", "hint": "synonyms for flavoring", "clues": ["seasoning", "flavorer", "seasoner", "flavouring"]}, {"answer": "flavour", "hint": "synonyms for flavour", "clues": ["look", "smell", "nip", "spirit", "sapidity", "relish", "savor", "smack", "tone", "tang", "flavor", "feel"]}, {"answer": "flavourer", "hint": "synonyms for flavourer", "clues": ["seasoning", "flavoring", "flavorer", "seasoner"]}, {"answer": "flavouring", "hint": "synonyms for flavouring", "clues": ["seasoning", "flavoring", "flavorer", "seasoner"]}, {"answer": "fleck", "hint": "synonyms for fleck", "clues": ["maculation", "dapple", "spot", "bit", "chip", "patch", "flake", "speckle", "scrap", "fleck"]}, {"answer": "fleming", "hint": "synonyms for fleming", "clues": ["Fleming", "Ian Fleming", "Alexander Fleming", "Ian Lancaster Fleming"]}, {"answer": "flesh", "hint": "synonyms for flesh", "clues": ["human body", "form", "soma", "physical body", "bod", "physique", "figure", "shape", "anatomy", "frame", "chassis", "material body", "build", "flesh"]}, {"answer": "flexure", "hint": "synonyms for flexure", "clues": ["flection", "bend", "plication", "crease", "flexion", "crimp", "fold", "flexure"]}, {"answer": "flick", "hint": "synonyms for flick", "clues": ["movie", "picture show", "motion-picture show", "film", "moving picture", "pic", "picture", "flick"]}, {"answer": "flicker", "hint": "synonyms for flicker", "clues": ["spark", "waver", "glint", "flutter", "flicker"]}, {"answer": "flier", "hint": "synonyms for flier", "clues": ["flyer", "bill", "throwaway", "airman", "broadsheet", "handbill", "circular", "broadside", "aviator", "aeronaut", "flier"]}, {"answer": "flies", "hint": "synonyms for flies", "clues": ["rainfly", "fly sheet", "tent-fly", "fly", "fly front", "fly ball", "tent flap", "flies"]}, {"answer": "flight", "hint": "synonyms for flight", "clues": ["escape", "flying", "flight of steps", "flight of stairs", "trajectory", "flight"]}, {"answer": "flightiness", "hint": "synonyms for flightiness", "clues": ["whimsey", "arbitrariness", "whimsicality", "capriciousness", "flightiness"]}, {"answer": "flimflam", "hint": "synonyms for flimflam", "clues": ["bunco game", "confidence trick", "con", "hustle", "bunco", "gyp", "sting", "bunko", "confidence game", "con game", "flimflam"]}, {"answer": "fling", "hint": "synonyms for fling", "clues": ["whirl", "go", "offer", "crack", "spree", "pass", "fling"]}, {"answer": "flip-flop", "hint": "synonyms for flip-flop", "clues": ["change of mind", "thong", "turnaround", "reversal", "turnabout", "flip-flop"]}, {"answer": "flirt", "hint": "synonyms for flirt", "clues": ["prickteaser", "coquetry", "minx", "dalliance", "flirtation", "flirting", "coquette", "tease", "vamper", "vamp", "toying"]}, {"answer": "flirtation", "hint": "synonyms for flirtation", "clues": ["coquetry", "dalliance", "flirting", "toying", "flirtation"]}, {"answer": "flirting", "hint": "synonyms for flirting", "clues": ["coquetry", "dalliance", "flirtation", "flirt", "toying"]}, {"answer": "floater", "hint": "synonyms for floater", "clues": ["musca volitans", "vagrant", "floating policy", "drifter", "vagabond", "spots", "floater"]}, {"answer": "flock", "hint": "synonyms for flock", "clues": ["great deal", "mint", "troop", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "fold", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock"]}, {"answer": "flogging", "hint": "synonyms for flogging", "clues": ["whipping", "tanning", "flagellation", "lashing", "flogging"]}, {"answer": "flood", "hint": "synonyms for flood", "clues": ["flowage", "inundation", "photoflood", "overflow", "flood tide", "flood lamp", "outpouring", "deluge", "rising tide", "alluvion", "torrent", "floodlight", "flood"]}, {"answer": "floodgate", "hint": "synonyms for floodgate", "clues": ["penstock", "water gate", "sluice valve", "head gate", "sluicegate", "floodgate"]}, {"answer": "floor", "hint": "synonyms for floor", "clues": ["base", "trading floor", "flooring", "level", "story"]}, {"answer": "floozie", "hint": "synonyms for floozie", "clues": ["hustler", "floozy", "hooker", "streetwalker", "slattern", "street girl", "floozie"]}, {"answer": "floozy", "hint": "synonyms for floozy", "clues": ["hustler", "hooker", "floozie", "streetwalker", "slattern", "street girl", "floozy"]}, {"answer": "flora", "hint": "synonyms for flora", "clues": ["vegetation", "botany", "plant life", "plant", "flora"]}, {"answer": "florescence", "hint": "synonyms for florescence", "clues": ["anthesis", "flowering", "efflorescence", "inflorescence", "blossoming"]}, {"answer": "florida", "hint": "synonyms for florida", "clues": ["Sunshine State", "FL", "Florida", "Everglade State"]}, {"answer": "flow", "hint": "synonyms for flow", "clues": ["current", "menses", "menstruation", "rate of flow", "period", "catamenia", "flowing", "flow rate", "stream", "menstruum"]}, {"answer": "flower", "hint": "synonyms for flower", "clues": ["efflorescence", "flush", "blossom", "prime", "bloom", "peak", "heyday", "flower"]}, {"answer": "flub", "hint": "synonyms for flub", "clues": ["bloomer", "blunder", "boo-boo", "foul-up", "pratfall", "botch", "boner", "fuckup", "bungle", "flub"]}, {"answer": "fluency", "hint": "synonyms for fluency", "clues": ["volubility", "eloquence", "smoothness", "articulateness", "fluency"]}, {"answer": "fluent_aphasia", "hint": "synonyms for fluent aphasia", "clues": ["sensory aphasia", "receptive aphasia", "impressive aphasia", "Wernicke's aphasia", "fluent aphasia"]}, {"answer": "fluidity", "hint": "synonyms for fluidity", "clues": ["liquidness", "runniness", "fluidness", "liquidity", "fluidity"]}, {"answer": "fluidness", "hint": "synonyms for fluidness", "clues": ["liquidness", "fluidity", "runniness", "liquidity", "fluidness"]}, {"answer": "flunkey", "hint": "synonyms for flunkey", "clues": ["flunky", "yes-man", "lackey", "stooge"]}, {"answer": "flunky", "hint": "synonyms for flunky", "clues": ["stooge", "yes-man", "lackey", "flunkey"]}, {"answer": "flurry", "hint": "synonyms for flurry", "clues": ["hustle", "snow flurry", "ado", "bustle", "fuss", "stir", "flurry"]}, {"answer": "flute", "hint": "synonyms for flute", "clues": ["fluting", "flute glass", "transverse flute", "champagne flute", "flute"]}, {"answer": "flutter", "hint": "synonyms for flutter", "clues": ["flicker", "hurly burly", "flap", "commotion", "kerfuffle", "disturbance", "flapping", "waver", "to-do", "fluttering", "hoo-ha", "disruption"]}, {"answer": "flux", "hint": "synonyms for flux", "clues": ["flux density", "state of flux", "fluxion", "magnetic field", "magnetic flux", "flux"]}, {"answer": "fluxing_lime", "hint": "synonyms for fluxing lime", "clues": ["calcined lime", "calcium oxide", "calx", "burnt lime", "quicklime", "unslaked lime", "lime", "fluxing lime"]}, {"answer": "fly_sheet", "hint": "synonyms for fly sheet", "clues": ["rainfly", "tent flap", "tent-fly", "fly", "fly sheet"]}, {"answer": "flyer", "hint": "synonyms for flyer", "clues": ["bill", "throwaway", "airman", "broadsheet", "aviator", "circular", "broadside", "flier", "handbill", "aeronaut", "flyer"]}, {"answer": "flying_bomb", "hint": "synonyms for flying bomb", "clues": ["buzz bomb", "V-1", "robot bomb", "doodlebug", "flying bomb"]}, {"answer": "flying_drainpipe", "hint": "synonyms for flying drainpipe", "clues": ["atherodyde", "athodyd", "ramjet engine", "ramjet", "flying drainpipe"]}, {"answer": "fm", "hint": "synonyms for fm", "clues": ["Fm", "frequency modulation", "atomic number 100", "fermium"]}, {"answer": "focal_point", "hint": "synonyms for focal point", "clues": ["centering", "focus", "nidus", "focussing", "direction", "focal point"]}, {"answer": "focus", "hint": "synonyms for focus", "clues": ["stress", "centering", "focussing", "nidus", "focal point", "direction", "focus"]}, {"answer": "focusing", "hint": "synonyms for focusing", "clues": ["centering", "focussing", "focus", "focalization", "focal point", "direction"]}, {"answer": "focussing", "hint": "synonyms for focussing", "clues": ["centering", "focusing", "focal point", "direction"]}, {"answer": "foetor", "hint": "synonyms for foetor", "clues": ["fetor", "stink", "mephitis", "malodour", "stench", "reek"]}, {"answer": "fog", "hint": "synonyms for fog", "clues": ["murk", "daze", "fogginess", "murkiness", "haze", "fog"]}, {"answer": "fogginess", "hint": "synonyms for fogginess", "clues": ["murk", "fog", "blurriness", "indistinctness", "murkiness", "fuzziness", "softness", "fogginess"]}, {"answer": "folacin", "hint": "synonyms for folacin", "clues": ["vitamin Bc", "pteroylmonoglutamic acid", "folic acid", "folate", "vitamin M", "folacin"]}, {"answer": "folate", "hint": "synonyms for folate", "clues": ["folacin", "vitamin Bc", "pteroylmonoglutamic acid", "folic acid", "vitamin M", "folate"]}, {"answer": "fold", "hint": "synonyms for fold", "clues": ["sheepfold", "plication", "folding", "sheepcote", "flexure", "bend", "sheep pen", "congregation", "crease", "flock", "crimp", "plica", "faithful"]}, {"answer": "folder", "hint": "synonyms for folder", "clues": ["brochure", "booklet", "pamphlet", "leaflet", "folder"]}, {"answer": "folderal", "hint": "synonyms for folderal", "clues": ["nonsense", "falderol", "trumpery", "gimcrackery", "frill", "gimcrack", "folderal"]}, {"answer": "folderol", "hint": "synonyms for folderol", "clues": ["wish-wash", "trumpery", "trash", "rubbish", "codswallop", "applesauce", "tripe", "folderol"]}, {"answer": "folic_acid", "hint": "synonyms for folic acid", "clues": ["folacin", "vitamin Bc", "pteroylmonoglutamic acid", "folate", "vitamin M", "folic acid"]}, {"answer": "folie", "hint": "synonyms for folie", "clues": ["psychological disorder", "mental disorder", "mental disturbance", "disturbance", "folie"]}, {"answer": "folio", "hint": "synonyms for folio", "clues": ["page number", "paging", "pagination", "leaf", "folio"]}, {"answer": "folk", "hint": "synonyms for folk", "clues": ["kinsfolk", "ethnic music", "folks", "family", "sept", "tribe", "common people", "folk music", "family line", "phratry"]}, {"answer": "folk_singer", "hint": "synonyms for folk singer", "clues": ["minstrel", "troubadour", "poet-singer", "jongleur", "folk singer"]}, {"answer": "folks", "hint": "synonyms for folks", "clues": ["folk", "kinsfolk", "ethnic music", "family", "sept", "tribe", "common people", "folk music", "family line", "phratry"]}, {"answer": "follies", "hint": "synonyms for follies", "clues": ["foolery", "betise", "craziness", "madness", "unwiseness", "folly", "tomfoolery", "lunacy", "indulgence", "imbecility", "foolishness", "stupidity", "follies"]}, {"answer": "folly", "hint": "synonyms for folly", "clues": ["foolery", "betise", "craziness", "madness", "foolishness", "tomfoolery", "lunacy", "indulgence", "imbecility", "unwiseness", "stupidity", "folly"]}, {"answer": "fondling", "hint": "synonyms for fondling", "clues": ["petting", "smooching", "cuddling", "necking", "hugging", "caressing", "kissing", "snuggling", "fondling"]}, {"answer": "fondness", "hint": "synonyms for fondness", "clues": ["warmth", "tenderness", "affection", "partiality", "fancy", "warmheartedness", "heart", "affectionateness", "philia", "lovingness", "warmness", "fondness"]}, {"answer": "font", "hint": "synonyms for font", "clues": ["typeface", "baptistery", "case", "baptismal font", "face", "fount"]}, {"answer": "food", "hint": "synonyms for food", "clues": ["solid food", "food for thought", "nutrient", "intellectual nourishment", "food"]}, {"answer": "foodie", "hint": "synonyms for foodie", "clues": ["bon vivant", "epicurean", "gourmet", "gastronome", "foodie"]}, {"answer": "fool", "hint": "synonyms for fool", "clues": ["saphead", "motley fool", "soft touch", "sap", "fall guy", "mark", "mug", "tomfool", "gull", "patsy", "chump", "muggins", "sucker", "jester", "fool"]}, {"answer": "foolery", "hint": "synonyms for foolery", "clues": ["lunacy", "craziness", "indulgence", "folly", "tomfoolery", "foolery"]}, {"answer": "foolishness", "hint": "synonyms for foolishness", "clues": ["betise", "craziness", "madness", "imbecility", "unwiseness", "folly", "stupidity", "foolishness"]}, {"answer": "foot", "hint": "synonyms for foot", "clues": ["base", "fundament", "metrical unit", "ft", "human foot", "foundation", "metrical foot", "understructure", "substructure", "infantry", "groundwork", "pes", "foot"]}, {"answer": "foot_soldier", "hint": "synonyms for foot soldier", "clues": ["underling", "subordinate", "infantryman", "footslogger", "marcher", "subsidiary", "foot soldier"]}, {"answer": "footing", "hint": "synonyms for footing", "clues": ["terms", "foothold", "ground", "basis", "footing"]}, {"answer": "footstep", "hint": "synonyms for footstep", "clues": ["step", "pace", "footfall", "stride", "footstep"]}, {"answer": "fop", "hint": "synonyms for fop", "clues": ["fashion plate", "dandy", "gallant", "sheik", "clotheshorse", "beau", "swell", "dude", "fop"]}, {"answer": "forage", "hint": "synonyms for forage", "clues": ["grass", "eatage", "pasturage", "foraging", "forage"]}, {"answer": "forbiddance", "hint": "synonyms for forbiddance", "clues": ["forbidding", "prohibition", "inhibition", "banning", "ban", "forbiddance"]}, {"answer": "forbidden_city", "hint": "synonyms for forbidden city", "clues": ["Forbidden City", "capital of Tibet", "Lassa", "Lhasa"]}, {"answer": "force", "hint": "synonyms for force", "clues": ["strength", "power", "force play", "force-out", "forcefulness", "military group", "military unit", "personnel", "effect", "military force", "violence", "force"]}, {"answer": "force-feed_lubricating_system", "hint": "synonyms for force-feed lubricating system", "clues": ["pressure-feed lubricating system", "force feed", "lubricating system", "pressure feed"]}, {"answer": "force_feed", "hint": "synonyms for force feed", "clues": ["force-feed lubricating system", "lubricating system", "pressure feed", "force feed"]}, {"answer": "force_majeure", "hint": "synonyms for force majeure", "clues": ["unavoidable casualty", "inevitable accident", "vis major", "act of God", "force majeure"]}, {"answer": "ford", "hint": "synonyms for ford", "clues": ["President Ford", "Ford", "Ford Madox Ford", "Henry Ford II", "John Ford", "Gerald Rudolph Ford", "Edsel Bryant Ford", "crossing", "Ford Hermann Hueffer", "Gerald Ford"]}, {"answer": "foreign_mission", "hint": "synonyms for foreign mission", "clues": ["missionary post", "legation", "mission", "missionary station", "foreign mission"]}, {"answer": "foreigner", "hint": "synonyms for foreigner", "clues": ["alien", "noncitizen", "outlander", "outsider", "foreigner"]}, {"answer": "foreman", "hint": "synonyms for foreman", "clues": ["chief", "honcho", "boss", "gaffer", "foreman"]}, {"answer": "forerunner", "hint": "synonyms for forerunner", "clues": ["predecessor", "harbinger", "herald", "precursor", "antecedent", "forerunner"]}, {"answer": "foresight", "hint": "synonyms for foresight", "clues": ["prospicience", "farsightedness", "prevision", "foresightfulness", "foresight"]}, {"answer": "forest", "hint": "synonyms for forest", "clues": ["timberland", "woods", "timber", "woodland", "forest"]}, {"answer": "forester", "hint": "synonyms for forester", "clues": ["tree farmer", "Cecil Scott Forester", "C. S. Forester", "arboriculturist", "Forester"]}, {"answer": "foretelling", "hint": "synonyms for foretelling", "clues": ["prediction", "prognostication", "fortune telling", "soothsaying", "forecasting", "divination", "foretelling"]}, {"answer": "forethought", "hint": "synonyms for forethought", "clues": ["precaution", "caution", "premeditation", "care", "forethought"]}, {"answer": "forget_me_drug", "hint": "synonyms for forget me drug", "clues": ["rophy", "R-2", "Mexican valium", "roach", "circle", "roofy", "rope", "forget me drug"]}, {"answer": "fork", "hint": "synonyms for fork", "clues": ["ramification", "crotch", "branching", "forking"]}, {"answer": "forking", "hint": "synonyms for forking", "clues": ["ramification", "branching", "furcation", "fork"]}, {"answer": "form", "hint": "synonyms for form", "clues": ["phase", "conformation", "var.", "variant", "flesh", "course", "grade", "descriptor", "anatomy", "strain", "cast", "word form", "physical body", "human body", "signifier", "sort", "variety", "soma", "manikin", "bod", "physique", "pattern", "class", "chassis", "figure", "mannequin", "kind", "shape", "configuration", "frame", "material body", "contour", "build", "form"]}, {"answer": "formation", "hint": "synonyms for formation", "clues": ["establishment", "geological formation", "shaping", "constitution", "organisation", "formation"]}, {"answer": "former_armed_forces", "hint": "synonyms for former armed forces", "clues": ["ALIR", "Interahamwe", "FAR", "Army for the Liberation of Rwanda", "Former Armed Forces"]}, {"answer": "formula", "hint": "synonyms for formula", "clues": ["recipe", "expression", "rule", "pattern", "convention", "normal", "chemical formula", "formula"]}, {"answer": "formulation", "hint": "synonyms for formulation", "clues": ["conceptualisation", "preparation", "expression", "formulation"]}, {"answer": "fornicatress", "hint": "synonyms for fornicatress", "clues": ["strumpet", "slut", "hussy", "loose woman", "adulteress", "jade", "trollop", "fornicatress"]}, {"answer": "forthcomingness", "hint": "synonyms for forthcomingness", "clues": ["imminence", "imminentness", "impendency", "forthcomingness"]}, {"answer": "forthrightness", "hint": "synonyms for forthrightness", "clues": ["candidness", "candor", "directness", "frankness", "forthrightness"]}, {"answer": "forties", "hint": "synonyms for forties", "clues": ["1940s", "mid-forties", "XL", "40", "forty", "forties"]}, {"answer": "fortune", "hint": "synonyms for fortune", "clues": ["lot", "chance", "hazard", "fate", "portion", "destiny", "circumstances", "luck", "fortune"]}, {"answer": "forty_winks", "hint": "synonyms for forty winks", "clues": ["catnap", "snooze", "nap", "short sleep", "cat sleep", "forty winks"]}, {"answer": "forward_motion", "hint": "synonyms for forward motion", "clues": ["progress", "advancement", "onward motion", "procession", "advance"]}, {"answer": "forwardness", "hint": "synonyms for forwardness", "clues": ["cockiness", "readiness", "bumptiousness", "eagerness", "pushiness", "zeal", "forwardness"]}, {"answer": "fossil_oil", "hint": "synonyms for fossil oil", "clues": ["crude", "rock oil", "oil", "petroleum", "crude oil", "fossil oil"]}, {"answer": "fosterage", "hint": "synonyms for fosterage", "clues": ["fostering", "rearing", "breeding", "nurture", "upbringing", "raising", "bringing up", "fosterage"]}, {"answer": "fostering", "hint": "synonyms for fostering", "clues": ["rearing", "breeding", "nurture", "upbringing", "raising", "bringing up", "fosterage", "fostering"]}, {"answer": "foul-up", "hint": "synonyms for foul-up", "clues": ["bloomer", "flub", "blunder", "boo-boo", "pratfall", "botch", "boner", "fuckup", "bungle", "foul-up"]}, {"answer": "foul_shot", "hint": "synonyms for foul shot", "clues": ["charity shot", "penalty free throw", "charity toss", "free throw", "charity throw", "foul shot"]}, {"answer": "foulness", "hint": "synonyms for foulness", "clues": ["malodorousness", "nastiness", "fetidness", "filthiness", "stinkiness", "raininess", "rankness", "filth", "foulness"]}, {"answer": "foundation", "hint": "synonyms for foundation", "clues": ["base", "fundament", "creation", "instauration", "cornerstone", "foot", "basis", "grounding", "institution", "initiation", "foundation garment", "introduction", "understructure", "founding", "innovation", "substructure", "origination", "groundwork", "foundation"]}, {"answer": "founder", "hint": "synonyms for founder", "clues": ["laminitis", "beginner", "founding father", "father", "founder"]}, {"answer": "founding", "hint": "synonyms for founding", "clues": ["creation", "instauration", "institution", "foundation", "introduction", "innovation", "origination", "initiation", "founding"]}, {"answer": "founding_father", "hint": "synonyms for founding father", "clues": ["founder", "Founding Father", "father", "beginner"]}, {"answer": "fount", "hint": "synonyms for fount", "clues": ["typeface", "font", "case", "face", "fountain"]}, {"answer": "fountain", "hint": "synonyms for fountain", "clues": ["outpouring", "jet", "natural spring", "outflow", "fount", "spring", "fountain"]}, {"answer": "fountainhead", "hint": "synonyms for fountainhead", "clues": ["head", "headspring", "well", "wellspring", "fountainhead"]}, {"answer": "fourier", "hint": "synonyms for fourier", "clues": ["Charles Fourier", "Baron Jean Baptiste Joseph Fourier", "Francois Marie Charles Fourier", "Fourier"]}, {"answer": "foursome", "hint": "synonyms for foursome", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "quaternary", "foursome"]}, {"answer": "fourth_earl_of_orford", "hint": "synonyms for fourth earl of orford", "clues": ["Walpole", "Horace Walpole", "Horatio Walpole", "Fourth Earl of Orford"]}, {"answer": "fourth_part", "hint": "synonyms for fourth part", "clues": ["twenty-five percent", "quartern", "one-fourth", "one-quarter", "fourth", "fourth part"]}, {"answer": "fox", "hint": "synonyms for fox", "clues": ["Charles James Fox", "slyboots", "dodger", "George Fox", "Fox"]}, {"answer": "foxiness", "hint": "synonyms for foxiness", "clues": ["wiliness", "slyness", "guile", "craftiness", "craft", "cunning", "foxiness"]}, {"answer": "foyer", "hint": "synonyms for foyer", "clues": ["entrance hall", "antechamber", "anteroom", "lobby", "vestibule", "hall", "foyer"]}, {"answer": "fracture", "hint": "synonyms for fracture", "clues": ["break", "fault", "crack", "geological fault", "shift", "fracture"]}, {"answer": "fragility", "hint": "synonyms for fragility", "clues": ["frangibleness", "breakability", "delicacy", "frangibility"]}, {"answer": "fragrance", "hint": "synonyms for fragrance", "clues": ["sweetness", "bouquet", "fragrancy", "redolence", "scent", "perfume", "aroma"]}, {"answer": "fragrancy", "hint": "synonyms for fragrancy", "clues": ["sweetness", "bouquet", "fragrance", "redolence"]}, {"answer": "frailness", "hint": "synonyms for frailness", "clues": ["infirmity", "debility", "frailty", "valetudinarianism", "feebleness", "frailness"]}, {"answer": "frailty", "hint": "synonyms for frailty", "clues": ["frailness", "infirmity", "debility", "valetudinarianism", "vice", "feebleness", "frailty"]}, {"answer": "frame", "hint": "synonyms for frame", "clues": ["form", "inning", "flesh", "anatomy", "underframe", "framing", "frame of reference", "physical body", "human body", "soma", "bod", "physique", "skeletal system", "systema skeletale", "figure", "skeleton", "skeletal frame", "shape", "chassis", "material body", "build", "frame"]}, {"answer": "frame_of_reference", "hint": "synonyms for frame of reference", "clues": ["reference frame", "reference system", "coordinate system", "frame", "frame of reference"]}, {"answer": "france", "hint": "synonyms for france", "clues": ["Anatole France", "France", "Jacques Anatole Francois Thibault", "French Republic"]}, {"answer": "francis_bacon", "hint": "synonyms for francis bacon", "clues": ["Francis Bacon", "Bacon", "Viscount St. Albans", "Baron Verulam"]}, {"answer": "francis_of_assisi", "hint": "synonyms for francis of assisi", "clues": ["St. Francis of Assisi", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "francisco_de_goya", "hint": "synonyms for francisco de goya", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "francisco_franco", "hint": "synonyms for francisco franco", "clues": ["Francisco Franco", "El Caudillo", "General Franco", "Franco"]}, {"answer": "francisco_goya", "hint": "synonyms for francisco goya", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "francisco_jose_de_goya", "hint": "synonyms for francisco jose de goya", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "francisco_jose_de_goya_y_lucientes", "hint": "synonyms for francisco jose de goya y lucientes", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "francisco_villa", "hint": "synonyms for francisco villa", "clues": ["Pancho Villa", "Francisco Villa", "Doroteo Arango", "Villa"]}, {"answer": "franco", "hint": "synonyms for franco", "clues": ["Francisco Franco", "El Caudillo", "General Franco", "Franco"]}, {"answer": "francoise_d'aubigne", "hint": "synonyms for francoise d'aubigne", "clues": ["Francoise d'Aubigne", "Marquise de Maintenon", "Madame de Maintenon", "Maintenon"]}, {"answer": "frankfurter", "hint": "synonyms for frankfurter", "clues": ["hotdog", "wiener", "dog", "weenie", "wienerwurst", "frank", "frankfurter"]}, {"answer": "franklin_delano_roosevelt", "hint": "synonyms for franklin delano roosevelt", "clues": ["President Roosevelt", "Franklin Delano Roosevelt", "FDR", "F. D. Roosevelt", "Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt"]}, {"answer": "franklin_roosevelt", "hint": "synonyms for franklin roosevelt", "clues": ["President Roosevelt", "Franklin Delano Roosevelt", "FDR", "F. D. Roosevelt", "Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt"]}, {"answer": "frankness", "hint": "synonyms for frankness", "clues": ["outspokenness", "candidness", "candor", "directness", "forthrightness", "frankness"]}, {"answer": "fraud", "hint": "synonyms for fraud", "clues": ["fraudulence", "put-on", "hoax", "fake", "imposter", "pseudo", "pretender", "sham", "role player", "humbug", "dupery", "shammer", "fraud"]}, {"answer": "fraudulence", "hint": "synonyms for fraudulence", "clues": ["deceit", "hoax", "put-on", "dupery", "humbug", "duplicity", "fraud", "fraudulence"]}, {"answer": "freak", "hint": "synonyms for freak", "clues": ["junkie", "junky", "nut", "lusus naturae", "addict", "monstrosity", "monster", "freak"]}, {"answer": "fred_skinner", "hint": "synonyms for fred skinner", "clues": ["Burrhus Frederic Skinner", "B. F. Skinner", "Fred Skinner", "Skinner"]}, {"answer": "free_state", "hint": "synonyms for free state", "clues": ["Old Line State", "Maryland", "Free State", "MD", "Orange Free State"]}, {"answer": "free_throw", "hint": "synonyms for free throw", "clues": ["charity shot", "foul shot", "penalty free throw", "charity toss", "charity throw", "free throw"]}, {"answer": "freebooter", "hint": "synonyms for freebooter", "clues": ["pillager", "plunderer", "raider", "despoiler", "looter", "freebooter"]}, {"answer": "freeway", "hint": "synonyms for freeway", "clues": ["motorway", "thruway", "pike", "superhighway", "throughway", "state highway", "expressway", "freeway"]}, {"answer": "freight", "hint": "synonyms for freight", "clues": ["freight rate", "loading", "freightage", "cargo", "payload", "shipment", "consignment", "freight"]}, {"answer": "french_capital", "hint": "synonyms for french capital", "clues": ["capital of France", "City of Light", "French capital", "Paris"]}, {"answer": "frenzy", "hint": "synonyms for frenzy", "clues": ["fury", "delirium", "craze", "hysteria", "frenzy"]}, {"answer": "frequency", "hint": "synonyms for frequency", "clues": ["absolute frequency", "frequence", "oftenness", "relative frequency"]}, {"answer": "freshness", "hint": "synonyms for freshness", "clues": ["insolence", "crust", "gall", "novelty", "glow", "impertinence", "cheekiness", "impudence", "freshness"]}, {"answer": "fret", "hint": "synonyms for fret", "clues": ["swither", "Greek fret", "stew", "Greek key", "sweat", "lather", "key pattern", "worn spot", "fret"]}, {"answer": "fretfulness", "hint": "synonyms for fretfulness", "clues": ["petulance", "fussiness", "peevishness", "crossness", "choler", "irritability", "fretfulness"]}, {"answer": "frg", "hint": "synonyms for frg", "clues": ["Germany", "Federal Republic of Germany", "Deutschland", "FRG"]}, {"answer": "friedan", "hint": "synonyms for friedan", "clues": ["Betty Friedan", "Betty Naomi Goldstein Friedan", "Friedan", "Betty Naomi Friedan"]}, {"answer": "friend", "hint": "synonyms for friend", "clues": ["booster", "acquaintance", "champion", "ally", "Quaker", "Friend", "supporter", "protagonist", "admirer"]}, {"answer": "fries", "hint": "synonyms for fries", "clues": ["nipper", "Fry", "chips", "tike", "tyke", "youngster", "child", "Roger Fry", "Roger Eliot Fry", "small fry", "french-fried potatoes", "shaver", "nestling", "minor", "tiddler", "kid", "Christopher Fry", "french fries", "fries"]}, {"answer": "frigidity", "hint": "synonyms for frigidity", "clues": ["low temperature", "coldness", "iciness", "chilliness", "cold", "frigidness", "frigidity"]}, {"answer": "frigidness", "hint": "synonyms for frigidness", "clues": ["low temperature", "coldness", "iciness", "chilliness", "frigidity", "cold", "frigidness"]}, {"answer": "frill", "hint": "synonyms for frill", "clues": ["furbelow", "nonsense", "flounce", "ruff", "gimcrackery", "gimcrack", "ruffle", "falderol", "folderal", "trumpery", "frill"]}, {"answer": "fringe", "hint": "synonyms for fringe", "clues": ["interference fringe", "periphery", "bang", "outskirt", "outer boundary", "fringe"]}, {"answer": "frisch", "hint": "synonyms for frisch", "clues": ["Frisch", "Ragnar Anton Kittil Frisch", "Karl von Frisch", "Otto Robert Frisch", "Ragnar Frisch", "Otto Frisch"]}, {"answer": "frisson", "hint": "synonyms for frisson", "clues": ["thrill", "shudder", "chill", "shiver", "quiver", "tingle", "frisson"]}, {"answer": "frivolity", "hint": "synonyms for frivolity", "clues": ["frippery", "harlequinade", "bagatelle", "prank", "buffoonery", "clowning", "japery", "fluff", "frivolousness", "frivolity"]}, {"answer": "frolic", "hint": "synonyms for frolic", "clues": ["play", "romp", "gambol", "caper", "frolic"]}, {"answer": "front_man", "hint": "synonyms for front man", "clues": ["front", "strawman", "nominal head", "figurehead", "front man"]}, {"answer": "front_room", "hint": "synonyms for front room", "clues": ["parlour", "living-room", "sitting room", "front room"]}, {"answer": "frost", "hint": "synonyms for frost", "clues": ["freeze", "hoarfrost", "icing", "Frost", "Robert Frost", "rime", "hoar"]}, {"answer": "frost_mist", "hint": "synonyms for frost mist", "clues": ["frost snow", "snow mist", "ice crystal", "poudrin", "diamond dust", "ice needle", "frost mist"]}, {"answer": "frost_snow", "hint": "synonyms for frost snow", "clues": ["frost mist", "snow mist", "ice crystal", "poudrin", "diamond dust", "ice needle", "frost snow"]}, {"answer": "frs", "hint": "synonyms for frs", "clues": ["Federal Reserve", "Fr", "Fed", "atomic number 87", "Federal Reserve System", "francium"]}, {"answer": "fruitcake", "hint": "synonyms for fruitcake", "clues": ["nut", "crackpot", "screwball", "crank", "nut case", "fruitcake"]}, {"answer": "fry", "hint": "synonyms for fry", "clues": ["nipper", "small fry", "Fry", "shaver", "nestling", "youngster", "tike", "minor", "tyke", "tiddler", "kid", "Christopher Fry", "child", "Roger Fry", "Roger Eliot Fry"]}, {"answer": "fsb", "hint": "synonyms for fsb", "clues": ["federal savings bank", "Federal Security Service", "FSB", "Federal Security Bureau"]}, {"answer": "fto", "hint": "synonyms for fto", "clues": ["foreign terrorist organization", "FTO", "terrorist group", "terrorist organization"]}, {"answer": "fuck", "hint": "synonyms for fuck", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie"]}, {"answer": "fuckhead", "hint": "synonyms for fuckhead", "clues": ["dumbass", "dunderhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "fuckhead"]}, {"answer": "fuckup", "hint": "synonyms for fuckup", "clues": ["bloomer", "bumbler", "flub", "bungler", "blunder", "boo-boo", "butcher", "stumbler", "foul-up", "pratfall", "botch", "boner", "sad sack", "fuckup"]}, {"answer": "fuddle", "hint": "synonyms for fuddle", "clues": ["muddle", "welter", "mare's nest", "clutter", "smother", "jumble", "fuddle"]}, {"answer": "fuel-air_bomb", "hint": "synonyms for fuel-air bomb", "clues": ["volume-detonation bomb", "thermobaric bomb", "vacuum bomb", "aerosol bomb", "fuel-air bomb"]}, {"answer": "fuji", "hint": "synonyms for fuji", "clues": ["Fujiyama", "Fuji-san", "Fuji", "Mount Fuji"]}, {"answer": "fuji-san", "hint": "synonyms for fuji-san", "clues": ["Fujiyama", "Fuji-san", "Fuji", "Mount Fuji"]}, {"answer": "fujinoyama", "hint": "synonyms for fujinoyama", "clues": ["Fujiyama", "Fuji-san", "Fuji", "Mount Fuji"]}, {"answer": "fujiyama", "hint": "synonyms for fujiyama", "clues": ["Fujiyama", "Fuji-san", "Fuji", "Mount Fuji"]}, {"answer": "fukien", "hint": "synonyms for fukien", "clues": ["Amoy", "Hokkianese", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min"]}, {"answer": "fukkianese", "hint": "synonyms for fukkianese", "clues": ["Amoy", "Hokkianese", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min"]}, {"answer": "fula", "hint": "synonyms for fula", "clues": ["Fulah", "Peul", "Fellata", "Ful", "Fulbe", "Fulani"]}, {"answer": "fulah", "hint": "synonyms for fulah", "clues": ["Fellata", "Fulani", "Fulbe", "Fula"]}, {"answer": "fulani", "hint": "synonyms for fulani", "clues": ["Fulah", "Peul", "Fellata", "Ful", "Fulbe", "Fulani"]}, {"answer": "fulbe", "hint": "synonyms for fulbe", "clues": ["Fellata", "Fulani", "Fulbe", "Fula"]}, {"answer": "full_dress", "hint": "synonyms for full dress", "clues": ["white tie and tails", "dress suit", "tailcoat", "white tie", "tails", "full dress"]}, {"answer": "full_point", "hint": "synonyms for full point", "clues": ["stop", "point", "period", "full stop", "full point"]}, {"answer": "full_stop", "hint": "synonyms for full stop", "clues": ["full point", "point", "period", "stop", "full stop"]}, {"answer": "full_treatment", "hint": "synonyms for full treatment", "clues": ["whole kit", "works", "whole kit and boodle", "kit and caboodle", "whole shebang", "whole works", "whole caboodle", "full treatment"]}, {"answer": "fuller", "hint": "synonyms for fuller", "clues": ["Fuller", "Richard Buckminster Fuller", "Melville Weston Fuller", "Buckminster Fuller"]}, {"answer": "fullness", "hint": "synonyms for fullness", "clues": ["voluminosity", "mellowness", "richness", "voluminousness", "comprehensiveness", "fullness"]}, {"answer": "fulsomeness", "hint": "synonyms for fulsomeness", "clues": ["oiliness", "unction", "smarm", "unctuousness", "oleaginousness", "smarminess", "fulsomeness"]}, {"answer": "fumbler", "hint": "synonyms for fumbler", "clues": ["bumbler", "bungler", "butcher", "stumbler", "fuckup", "blunderer", "sad sack"]}, {"answer": "fumes", "hint": "synonyms for fumes", "clues": ["fume", "exhaust", "exhaust fumes", "smoke"]}, {"answer": "fun", "hint": "synonyms for fun", "clues": ["sport", "merriment", "play", "playfulness", "fun"]}, {"answer": "function", "hint": "synonyms for function", "clues": ["mapping", "social occasion", "role", "single-valued function", "purpose", "routine", "subroutine", "subprogram", "part", "occasion", "map", "procedure", "affair", "social function", "office", "mathematical function", "use", "function"]}, {"answer": "fund", "hint": "synonyms for fund", "clues": ["stock", "monetary fund", "store", "investment firm", "investment company", "investment trust", "fund"]}, {"answer": "fundament", "hint": "synonyms for fundament", "clues": ["base", "tush", "buns", "basis", "seat", "butt", "tail end", "rear", "buttocks", "bum", "rump", "foundation", "substructure", "nates", "can", "rear end", "hindquarters", "prat", "foot", "derriere", "understructure", "stern", "groundwork", "backside", "cornerstone", "posterior", "keister", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "tooshie", "fundament"]}, {"answer": "fundamental_principle", "hint": "synonyms for fundamental principle", "clues": ["fundamentals", "basics", "basic principle", "bedrock", "fundamental principle"]}, {"answer": "fundamentals", "hint": "synonyms for fundamentals", "clues": ["basic principle", "first harmonic", "fundamental principle", "fundamental", "basics", "fundamental frequency", "bedrock"]}, {"answer": "funding", "hint": "synonyms for funding", "clues": ["support", "financial backing", "financial support", "backing", "financing", "funding"]}, {"answer": "funds", "hint": "synonyms for funds", "clues": ["fund", "monetary resource", "monetary fund", "investment firm", "stock", "finances", "store", "investment company", "pecuniary resource", "cash in hand", "investment trust"]}, {"answer": "funeral-residence", "hint": "synonyms for funeral-residence", "clues": ["funeral parlour", "funeral chapel", "funeral home", "funeral church", "funeral-residence"]}, {"answer": "funeral_chapel", "hint": "synonyms for funeral chapel", "clues": ["funeral parlour", "funeral home", "funeral-residence", "funeral church", "funeral chapel"]}, {"answer": "funeral_church", "hint": "synonyms for funeral church", "clues": ["funeral parlour", "funeral chapel", "funeral home", "funeral-residence", "funeral church"]}, {"answer": "funeral_home", "hint": "synonyms for funeral home", "clues": ["funeral parlour", "funeral chapel", "funeral-residence", "funeral church", "funeral home"]}, {"answer": "funeral_parlor", "hint": "synonyms for funeral parlor", "clues": ["funeral parlour", "funeral chapel", "funeral home", "funeral-residence", "funeral church"]}, {"answer": "funeral_parlour", "hint": "synonyms for funeral parlour", "clues": ["funeral chapel", "funeral home", "funeral-residence", "funeral church", "funeral parlor"]}, {"answer": "funfair", "hint": "synonyms for funfair", "clues": ["carnival", "amusement park", "fair", "pleasure ground", "funfair"]}, {"answer": "fungicide", "hint": "synonyms for fungicide", "clues": ["antimycotic agent", "antifungal", "antimycotic", "antifungal agent", "fungicide"]}, {"answer": "funnies", "hint": "synonyms for funnies", "clues": ["funny story", "strip", "funny remark", "good story", "funny", "cartoon strip", "comic strip", "funnies"]}, {"answer": "funny_farm", "hint": "synonyms for funny farm", "clues": ["loony bin", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house", "funny farm"]}, {"answer": "funny_house", "hint": "synonyms for funny house", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house"]}, {"answer": "furiousness", "hint": "synonyms for furiousness", "clues": ["fierceness", "ferocity", "vehemence", "fury", "violence", "wildness", "furiousness"]}, {"answer": "furor", "hint": "synonyms for furor", "clues": ["rage", "craze", "cult", "furore", "fad"]}, {"answer": "furore", "hint": "synonyms for furore", "clues": ["rage", "craze", "cult", "fad", "furor"]}, {"answer": "furrow", "hint": "synonyms for furrow", "clues": ["crease", "wrinkle", "seam", "line", "furrow"]}, {"answer": "fury", "hint": "synonyms for fury", "clues": ["Erinyes", "frenzy", "madness", "delirium", "furiousness", "ferocity", "vehemence", "fierceness", "Eumenides", "rage", "craze", "hysteria", "Fury", "violence", "wildness"]}, {"answer": "fuse", "hint": "synonyms for fuse", "clues": ["fuze", "safety fuse", "primer", "fusee", "electrical fuse", "priming"]}, {"answer": "fusee", "hint": "synonyms for fusee", "clues": ["fuze", "fuse", "primer", "fusee drive", "priming"]}, {"answer": "fusion", "hint": "synonyms for fusion", "clues": ["merger", "nuclear fusion reaction", "optical fusion", "unification", "coalition", "nuclear fusion", "spinal fusion", "fusion"]}, {"answer": "fuss", "hint": "synonyms for fuss", "clues": ["bustle", "trouble", "hustle", "pother", "pettifoggery", "flap", "stir", "bother", "spat", "bickering", "dither", "tizzy", "squabble", "tiff", "ado", "hassle", "flurry", "fuss"]}, {"answer": "fussiness", "hint": "synonyms for fussiness", "clues": ["petulance", "peevishness", "crossness", "choler", "fretfulness", "irritability", "fussiness"]}, {"answer": "fustian", "hint": "synonyms for fustian", "clues": ["rant", "blah", "claptrap", "bombast", "fustian"]}, {"answer": "fuze", "hint": "synonyms for fuze", "clues": ["fuse", "primer", "priming", "fuzee"]}, {"answer": "fuzee", "hint": "synonyms for fuzee", "clues": ["fuze", "fuse", "primer", "priming"]}, {"answer": "fuzz", "hint": "synonyms for fuzz", "clues": ["pig", "bull", "cop", "blur", "copper", "fuzz"]}, {"answer": "fuzziness", "hint": "synonyms for fuzziness", "clues": ["blurriness", "indistinctness", "softness", "fogginess", "fuzziness"]}, {"answer": "g", "hint": "synonyms for g", "clues": ["grand", "gee", "deoxyguanosine monophosphate", "gigabyte", "gramme", "g-force", "yard", "G", "gibibyte", "GB", "thousand", "guanine", "GiB", "gm", "gram", "chiliad", "M", "K", "constant of gravitation", "universal gravitational constant", "gravitational constant", "one thousand", "thou", "1000"]}, {"answer": "g._l._von_blucher", "hint": "synonyms for g. l. von blucher", "clues": ["G. L. von Blucher", "Gebhard Leberecht von Blucher", "Blucher", "von Blucher"]}, {"answer": "ga", "hint": "synonyms for ga", "clues": ["gallium", "Ga", "Empire State of the South", "tabun", "Georgia", "atomic number 31", "Peach State"]}, {"answer": "gab", "hint": "synonyms for gab", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab"]}, {"answer": "gabardine", "hint": "synonyms for gabardine", "clues": ["dust coat", "white", "duster", "smock", "gaberdine", "tweed", "flannel"]}, {"answer": "gaberdine", "hint": "synonyms for gaberdine", "clues": ["duster", "gabardine", "smock", "dust coat"]}, {"answer": "gabfest", "hint": "synonyms for gabfest", "clues": ["small talk", "chin-wagging", "chitchat", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab", "gabfest"]}, {"answer": "gable", "hint": "synonyms for gable", "clues": ["Gable", "gable wall", "gable end", "Clark Gable", "William Clark Gable"]}, {"answer": "gabriele_fallopius", "hint": "synonyms for gabriele fallopius", "clues": ["Gabriello Fallopio", "Fallopio", "Fallopius", "Gabriele Fallopius"]}, {"answer": "gabriello_fallopio", "hint": "synonyms for gabriello fallopio", "clues": ["Gabriello Fallopio", "Fallopio", "Fallopius", "Gabriele Fallopius"]}, {"answer": "gad", "hint": "synonyms for gad", "clues": ["GAD", "generalized anxiety disorder", "spur", "anxiety reaction"]}, {"answer": "gaddafi", "hint": "synonyms for gaddafi", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "gadfly", "hint": "synonyms for gadfly", "clues": ["pesterer", "pest", "blighter", "cuss", "gadfly"]}, {"answer": "gadget", "hint": "synonyms for gadget", "clues": ["contrivance", "gizmo", "contraption", "widget", "convenience", "gismo", "appliance", "gadget"]}, {"answer": "gaffe", "hint": "synonyms for gaffe", "clues": ["solecism", "faux pas", "gaucherie", "slip", "gaffe"]}, {"answer": "gaffer", "hint": "synonyms for gaffer", "clues": ["antique", "chief", "honcho", "boss", "old geezer", "oldtimer", "foreman", "gaffer"]}, {"answer": "gag", "hint": "synonyms for gag", "clues": ["muzzle", "jape", "jest", "joke", "laugh", "gag"]}, {"answer": "gage", "hint": "synonyms for gage", "clues": ["locoweed", "Mary Jane", "gauge", "pot", "smoke", "green goddess", "dope", "grass", "sess", "weed", "skunk", "sens"]}, {"answer": "gain", "hint": "synonyms for gain", "clues": ["profit", "increase", "amplification", "addition", "gain"]}, {"answer": "gaius_julius_caesar_octavianus", "hint": "synonyms for gaius julius caesar octavianus", "clues": ["Gaius Julius Caesar Octavianus", "Gaius Octavianus", "Octavian", "Augustus"]}, {"answer": "gaius_octavianus", "hint": "synonyms for gaius octavianus", "clues": ["Gaius Julius Caesar Octavianus", "Gaius Octavianus", "Octavian", "Augustus"]}, {"answer": "gall", "hint": "synonyms for gall", "clues": ["rancor", "bile", "insolence", "crust", "bitterness", "impertinence", "resentment", "cheekiness", "impudence", "saddle sore", "freshness", "gall"]}, {"answer": "gallantry", "hint": "synonyms for gallantry", "clues": ["valor", "valiance", "heroism", "politesse", "valorousness", "chivalry", "gallantry"]}, {"answer": "gallery", "hint": "synonyms for gallery", "clues": ["heading", "art gallery", "picture gallery", "veranda", "drift", "gallery"]}, {"answer": "gallimaufry", "hint": "synonyms for gallimaufry", "clues": ["melange", "odds and ends", "hodgepodge", "oddments", "farrago", "hotchpotch", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "gallimaufry"]}, {"answer": "galosh", "hint": "synonyms for galosh", "clues": ["gumshoe", "rubber", "arctic", "golosh", "galosh"]}, {"answer": "galvanic_skin_response", "hint": "synonyms for galvanic skin response", "clues": ["electrical skin response", "Tarchanoff phenomenon", "electrodermal response", "GSR", "Fere phenomenon", "psychogalvanic response", "galvanic skin response"]}, {"answer": "gambol", "hint": "synonyms for gambol", "clues": ["play", "romp", "caper", "frolic", "gambol"]}, {"answer": "gameness", "hint": "synonyms for gameness", "clues": ["gimpiness", "limping", "claudication", "lameness", "gimp"]}, {"answer": "gandhi", "hint": "synonyms for gandhi", "clues": ["Mahatma Gandhi", "Gandhi", "Indira Gandhi", "Mohandas Karamchand Gandhi", "Indira Nehru Gandhi", "Mrs. Gandhi"]}, {"answer": "gang", "hint": "synonyms for gang", "clues": ["work party", "ring", "bunch", "pack", "crew", "mob", "crowd", "gang"]}, {"answer": "gangrene", "hint": "synonyms for gangrene", "clues": ["sphacelus", "mortification", "slough", "necrosis", "gangrene"]}, {"answer": "gangrenous_emphysema", "hint": "synonyms for gangrenous emphysema", "clues": ["clostridial myonecrosis", "emphysematous phlegmon", "emphysematous gangrene", "progressive emphysematous necrosis", "gas gangrene", "gas phlegmon", "gangrenous emphysema"]}, {"answer": "gaol", "hint": "synonyms for gaol", "clues": ["pokey", "jail", "clink", "slammer", "jailhouse", "gaol"]}, {"answer": "gaolbreak", "hint": "synonyms for gaolbreak", "clues": ["break", "prison-breaking", "prisonbreak", "jailbreak", "breakout", "gaolbreak"]}, {"answer": "gaoler", "hint": "synonyms for gaoler", "clues": ["prison guard", "jailor", "turnkey", "jailer", "screw", "gaoler"]}, {"answer": "gap", "hint": "synonyms for gap", "clues": ["break", "crack", "interruption", "opening", "disruption", "spread", "col", "gap"]}, {"answer": "garand", "hint": "synonyms for garand", "clues": ["Garand", "M-1", "Garand rifle", "M-1 rifle"]}, {"answer": "garand_rifle", "hint": "synonyms for garand rifle", "clues": ["Garand", "M-1", "Garand rifle", "M-1 rifle"]}, {"answer": "garbage", "hint": "synonyms for garbage", "clues": ["scraps", "drivel", "refuse", "food waste", "garbage"]}, {"answer": "garbage_can", "hint": "synonyms for garbage can", "clues": ["ash bin", "trash can", "ashcan", "trash barrel", "wastebin", "dustbin", "garbage can"]}, {"answer": "garbage_carter", "hint": "synonyms for garbage carter", "clues": ["refuse collector", "garbage collector", "garbage man", "dustman", "garbage hauler", "garbage carter"]}, {"answer": "garbage_collector", "hint": "synonyms for garbage collector", "clues": ["refuse collector", "garbage man", "garbage carter", "dustman", "garbage hauler", "garbage collector"]}, {"answer": "garbage_dump", "hint": "synonyms for garbage dump", "clues": ["dumpsite", "rubbish dump", "waste-yard", "trash dump", "dump", "garbage dump"]}, {"answer": "garbage_hauler", "hint": "synonyms for garbage hauler", "clues": ["refuse collector", "garbage collector", "garbage man", "garbage carter", "dustman", "garbage hauler"]}, {"answer": "garbage_heap", "hint": "synonyms for garbage heap", "clues": ["trash pile", "trash heap", "refuse heap", "junk heap", "rubbish heap", "scrapheap", "junk pile", "garbage heap"]}, {"answer": "garbage_man", "hint": "synonyms for garbage man", "clues": ["refuse collector", "garbage collector", "garbage carter", "dustman", "garbage hauler", "garbageman"]}, {"answer": "garbageman", "hint": "synonyms for garbageman", "clues": ["refuse collector", "garbage collector", "garbage man", "garbage carter", "dustman", "garbage hauler"]}, {"answer": "garden_state", "hint": "synonyms for garden state", "clues": ["Garden State", "New Jersey", "Jersey", "NJ"]}, {"answer": "garfield", "hint": "synonyms for garfield", "clues": ["James A. Garfield", "Garfield", "James Abraham Garfield", "President Garfield"]}, {"answer": "gargoylism", "hint": "synonyms for gargoylism", "clues": ["Hurler's disease", "lipochondrodystrophy", "dysostosis multiplex", "Hurler's syndrome", "gargoylism"]}, {"answer": "garishness", "hint": "synonyms for garishness", "clues": ["tawdriness", "loudness", "brashness", "glitz", "meretriciousness", "gaudiness", "flashiness", "garishness"]}, {"answer": "garland", "hint": "synonyms for garland", "clues": ["miscellany", "Judy Garland", "Garland", "lei", "florilegium", "coronal", "chaplet", "wreath"]}, {"answer": "garment_industry", "hint": "synonyms for garment industry", "clues": ["fashion business", "apparel industry", "rag trade", "fashion industry", "garment industry"]}, {"answer": "garroter", "hint": "synonyms for garroter", "clues": ["strangler", "throttler", "garrotter", "choker"]}, {"answer": "garrotter", "hint": "synonyms for garrotter", "clues": ["strangler", "garroter", "throttler", "choker"]}, {"answer": "garrulity", "hint": "synonyms for garrulity", "clues": ["loquacity", "talkativeness", "garrulousness", "loquaciousness", "garrulity"]}, {"answer": "garrulousness", "hint": "synonyms for garrulousness", "clues": ["talkativeness", "garrulity", "loquacity", "loquaciousness", "garrulousness"]}, {"answer": "gas", "hint": "synonyms for gas", "clues": ["throttle", "natural gas", "accelerator", "flatulence", "gasoline", "accelerator pedal", "gaseous state", "gun", "gas pedal", "petrol", "gas"]}, {"answer": "gas_embolism", "hint": "synonyms for gas embolism", "clues": ["caisson disease", "air embolism", "decompression sickness", "aeroembolism", "bends", "gas embolism"]}, {"answer": "gas_gangrene", "hint": "synonyms for gas gangrene", "clues": ["clostridial myonecrosis", "emphysematous phlegmon", "emphysematous gangrene", "progressive emphysematous necrosis", "gangrenous emphysema", "gas phlegmon", "gas gangrene"]}, {"answer": "gas_pedal", "hint": "synonyms for gas pedal", "clues": ["throttle", "accelerator", "accelerator pedal", "gun", "gas", "gas pedal"]}, {"answer": "gas_phlegmon", "hint": "synonyms for gas phlegmon", "clues": ["clostridial myonecrosis", "emphysematous phlegmon", "emphysematous gangrene", "progressive emphysematous necrosis", "gangrenous emphysema", "gas gangrene", "gas phlegmon"]}, {"answer": "gasconade", "hint": "synonyms for gasconade", "clues": ["vaporing", "brag", "bragging", "crow", "line-shooting", "gasconade"]}, {"answer": "gastrointestinal_tract", "hint": "synonyms for gastrointestinal tract", "clues": ["alimentary canal", "GI tract", "digestive tube", "digestive tract", "alimentary tract", "gastrointestinal tract"]}, {"answer": "gastronome", "hint": "synonyms for gastronome", "clues": ["bon vivant", "epicurean", "foodie", "gourmet", "gastronome"]}, {"answer": "gatekeeper", "hint": "synonyms for gatekeeper", "clues": ["doorman", "doorkeeper", "hall porter", "porter", "door guard", "ostiary", "gatekeeper"]}, {"answer": "gates", "hint": "synonyms for gates", "clues": ["Gates", "William Henry Gates", "Bill Gates", "logic gate"]}, {"answer": "gaucherie", "hint": "synonyms for gaucherie", "clues": ["rusticity", "gaffe", "faux pas", "slip", "solecism", "gaucherie"]}, {"answer": "gaud", "hint": "synonyms for gaud", "clues": ["bangle", "trinket", "gewgaw", "novelty", "bauble", "fallal", "gaud"]}, {"answer": "gaudi", "hint": "synonyms for gaudi", "clues": ["Antonio Gaudi", "Gaudi", "Gaudi i Cornet", "Antonio Gaudi i Cornet"]}, {"answer": "gaudi_i_cornet", "hint": "synonyms for gaudi i cornet", "clues": ["Antonio Gaudi", "Gaudi", "Gaudi i Cornet", "Antonio Gaudi i Cornet"]}, {"answer": "gaudiness", "hint": "synonyms for gaudiness", "clues": ["garishness", "tawdriness", "loudness", "brashness", "glitz", "meretriciousness", "flashiness", "gaudiness"]}, {"answer": "gauge", "hint": "synonyms for gauge", "clues": ["caliber", "standard of measurement", "gage", "bore"]}, {"answer": "gauntness", "hint": "synonyms for gauntness", "clues": ["bonyness", "maceration", "emaciation", "gauntness"]}, {"answer": "gaussian_curve", "hint": "synonyms for gaussian curve", "clues": ["Gaussian shape", "bell-shaped curve", "normal curve", "Gaussian curve"]}, {"answer": "gaussian_shape", "hint": "synonyms for gaussian shape", "clues": ["Gaussian shape", "bell-shaped curve", "normal curve", "Gaussian curve"]}, {"answer": "gautama", "hint": "synonyms for gautama", "clues": ["Gautama", "Gautama Siddhartha", "Gautama Buddha", "Buddha", "Siddhartha"]}, {"answer": "gautama_buddha", "hint": "synonyms for gautama buddha", "clues": ["Gautama", "Gautama Siddhartha", "Gautama Buddha", "Buddha", "Siddhartha"]}, {"answer": "gautama_siddhartha", "hint": "synonyms for gautama siddhartha", "clues": ["Gautama", "Gautama Siddhartha", "Gautama Buddha", "Buddha", "Siddhartha"]}, {"answer": "gawk", "hint": "synonyms for gawk", "clues": ["clod", "lump", "stumblebum", "lubber", "oaf", "lout", "goon", "lummox", "gawk"]}, {"answer": "gayness", "hint": "synonyms for gayness", "clues": ["homosexuality", "queerness", "homoeroticism", "homosexualism", "gayness"]}, {"answer": "gb", "hint": "synonyms for gb", "clues": ["GiB", "sarin", "gilbert", "gigabyte", "gigabit", "GB", "gibibyte", "G", "Gbit", "Great Britain", "Gi"]}, {"answer": "gc", "hint": "synonyms for gc", "clues": ["gigacycle per second", "GHz", "gigahertz", "gigacycle", "Gc"]}, {"answer": "gd", "hint": "synonyms for gd", "clues": ["GD", "atomic number 64", "gadolinium", "soman"]}, {"answer": "ge", "hint": "synonyms for ge", "clues": ["Gaia", "Ge", "germanium", "atomic number 32", "Gaea"]}, {"answer": "gear", "hint": "synonyms for gear", "clues": ["paraphernalia", "gearing", "geared wheel", "power train", "gear mechanism", "train", "appurtenance", "geartrain", "cogwheel"]}, {"answer": "gearing", "hint": "synonyms for gearing", "clues": ["power train", "geartrain", "gear", "train"]}, {"answer": "geartrain", "hint": "synonyms for geartrain", "clues": ["gearing", "train", "power train", "geartrain"]}, {"answer": "gebhard_leberecht_von_blucher", "hint": "synonyms for gebhard leberecht von blucher", "clues": ["G. L. von Blucher", "Gebhard Leberecht von Blucher", "Blucher", "von Blucher"]}, {"answer": "geek", "hint": "synonyms for geek", "clues": ["flake", "oddball", "eccentric person", "eccentric", "geek"]}, {"answer": "geert_geerts", "hint": "synonyms for geert geerts", "clues": ["Geert Geerts", "Gerhard Gerhards", "Desiderius Erasmus", "Erasmus"]}, {"answer": "geezerhood", "hint": "synonyms for geezerhood", "clues": ["age", "old age", "years", "eld", "geezerhood"]}, {"answer": "gelt", "hint": "synonyms for gelt", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "scratch", "loot", "shekels", "boodle", "cabbage", "gelt"]}, {"answer": "gem", "hint": "synonyms for gem", "clues": ["treasure", "precious stone", "jewel", "gemstone", "muffin", "stone", "gem"]}, {"answer": "general_agent", "hint": "synonyms for general agent", "clues": ["insurance broker", "universal agent", "underwriter", "insurance agent", "general agent"]}, {"answer": "general_assembly", "hint": "synonyms for general assembly", "clues": ["legislative assembly", "General Assembly", "legislature", "law-makers", "legislative body"]}, {"answer": "general_charles_de_gaulle", "hint": "synonyms for general charles de gaulle", "clues": ["Charles de Gaulle", "de Gaulle", "General de Gaulle", "General Charles de Gaulle", "Charles Andre Joseph Marie de Gaulle"]}, {"answer": "general_de_gaulle", "hint": "synonyms for general de gaulle", "clues": ["Charles de Gaulle", "de Gaulle", "General de Gaulle", "General Charles de Gaulle", "Charles Andre Joseph Marie de Gaulle"]}, {"answer": "general_franco", "hint": "synonyms for general franco", "clues": ["Francisco Franco", "El Caudillo", "General Franco", "Franco"]}, {"answer": "generalisation", "hint": "synonyms for generalisation", "clues": ["generalization", "generality", "inductive reasoning", "stimulus generalisation", "abstraction", "induction"]}, {"answer": "generalization", "hint": "synonyms for generalization", "clues": ["stimulus generalisation", "generality", "inductive reasoning", "generalisation", "abstraction", "induction"]}, {"answer": "generation", "hint": "synonyms for generation", "clues": ["propagation", "multiplication", "contemporaries", "coevals", "genesis", "generation"]}, {"answer": "genet", "hint": "synonyms for genet", "clues": ["Genet", "Jean Genet", "Citizen Genet", "Edmund Charles Edouard Genet"]}, {"answer": "genetic_abnormality", "hint": "synonyms for genetic abnormality", "clues": ["hereditary disease", "genetic defect", "inherited disorder", "inherited disease", "genetic disease", "hereditary condition", "genetic disorder", "congenital disease", "genetic abnormality"]}, {"answer": "genetic_defect", "hint": "synonyms for genetic defect", "clues": ["hereditary disease", "inherited disorder", "inherited disease", "genetic disease", "genetic abnormality", "hereditary condition", "genetic disorder", "congenital disease", "genetic defect"]}, {"answer": "genetic_disease", "hint": "synonyms for genetic disease", "clues": ["hereditary disease", "genetic defect", "inherited disorder", "inherited disease", "genetic abnormality", "hereditary condition", "genetic disorder", "congenital disease", "genetic disease"]}, {"answer": "genetic_disorder", "hint": "synonyms for genetic disorder", "clues": ["hereditary disease", "genetic defect", "inherited disorder", "inherited disease", "genetic disease", "genetic abnormality", "hereditary condition", "congenital disease", "genetic disorder"]}, {"answer": "geneva", "hint": "synonyms for geneva", "clues": ["Genf", "Hollands", "Geneve", "Holland gin", "Geneva"]}, {"answer": "genghis_khan", "hint": "synonyms for genghis khan", "clues": ["Temujin", "Jenghiz Khan", "Jinghis Khan", "Genghis Khan"]}, {"answer": "geniality", "hint": "synonyms for geniality", "clues": ["affableness", "bonhomie", "amiability", "amiableness", "affability", "geniality"]}, {"answer": "genie", "hint": "synonyms for genie", "clues": ["jinni", "jinnee", "djinny", "genie"]}, {"answer": "genital_organ", "hint": "synonyms for genital organ", "clues": ["private parts", "genitals", "crotch", "privates", "genitalia", "genital organ"]}, {"answer": "genitalia", "hint": "synonyms for genitalia", "clues": ["genitals", "private parts", "genital organ", "crotch", "privates", "genitalia"]}, {"answer": "genitals", "hint": "synonyms for genitals", "clues": ["private parts", "genital organ", "crotch", "privates", "genitalia", "genitals"]}, {"answer": "genitourinary_apparatus", "hint": "synonyms for genitourinary apparatus", "clues": ["genitourinary system", "urogenital apparatus", "urogenital system", "apparatus urogenitalis", "urinary apparatus", "urinary system", "systema urogenitale"]}, {"answer": "genitourinary_system", "hint": "synonyms for genitourinary system", "clues": ["urogenital apparatus", "urogenital system", "genitourinary apparatus", "apparatus urogenitalis", "urinary system", "systema urogenitale", "genitourinary system"]}, {"answer": "genius", "hint": "synonyms for genius", "clues": ["brainiac", "hotshot", "virtuoso", "wizard", "champion", "ace", "maven", "sensation", "Einstein", "star", "wiz", "whizz", "superstar", "brain", "flair", "mavin", "adept", "mastermind", "brilliance", "genius"]}, {"answer": "genre", "hint": "synonyms for genre", "clues": ["writing style", "musical style", "music genre", "literary genre", "genre"]}, {"answer": "gent", "hint": "synonyms for gent", "clues": ["lad", "fella", "blighter", "bloke", "Ghent", "Gand", "feller", "chap", "fellow", "cuss"]}, {"answer": "gentleman", "hint": "synonyms for gentleman", "clues": ["gentleman's gentleman", "valet de chambre", "valet", "gentleman"]}, {"answer": "gentleman's_gentleman", "hint": "synonyms for gentleman's gentleman", "clues": ["gentleman", "valet", "valet de chambre", "gentleman's gentleman"]}, {"answer": "gentleman_jim", "hint": "synonyms for gentleman jim", "clues": ["Gentleman Jim", "Corbett", "James John Corbett", "Jim Corbett"]}, {"answer": "gentlewoman", "hint": "synonyms for gentlewoman", "clues": ["dame", "madam", "lady", "ma'am", "gentlewoman"]}, {"answer": "genu", "hint": "synonyms for genu", "clues": ["knee joint", "knee", "articulatio genus", "human knee", "genu"]}, {"answer": "genu_varum", "hint": "synonyms for genu varum", "clues": ["bow leg", "bandy leg", "tibia vara", "genu varum"]}, {"answer": "geographical_mile", "hint": "synonyms for geographical mile", "clues": ["mile", "mi", "nautical mile", "Admiralty mile", "naut mi", "geographical mile"]}, {"answer": "geological_fault", "hint": "synonyms for geological fault", "clues": ["break", "fault", "fracture", "shift", "geological fault"]}, {"answer": "george", "hint": "synonyms for george", "clues": ["George V", "George II", "St. George", "Saint George"]}, {"answer": "george_bush", "hint": "synonyms for george bush", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "George H.W. Bush", "Dubya", "Dubyuh", "Bush", "George Herbert Walker Bush"]}, {"answer": "george_h.w._bush", "hint": "synonyms for george h.w. bush", "clues": ["George Herbert Walker Bush", "Bush", "President Bush", "George Bush", "George H.W. Bush"]}, {"answer": "george_herbert_walker_bush", "hint": "synonyms for george herbert walker bush", "clues": ["George Herbert Walker Bush", "Bush", "President Bush", "George Bush", "George H.W. Bush"]}, {"answer": "george_herman_ruth", "hint": "synonyms for george herman ruth", "clues": ["Ruth", "Babe Ruth", "Sultan of Swat", "George Herman Ruth"]}, {"answer": "george_orwell", "hint": "synonyms for george orwell", "clues": ["Eric Arthur Blair", "George Orwell", "Orwell", "Eric Blair"]}, {"answer": "george_sand", "hint": "synonyms for george sand", "clues": ["Amandine Aurore Lucie Dupin", "Sand", "George Sand", "Baroness Dudevant"]}, {"answer": "george_w._bush", "hint": "synonyms for george w. bush", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "Dubya", "Dubyuh", "Bush"]}, {"answer": "george_walker_bush", "hint": "synonyms for george walker bush", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "Dubya", "Dubyuh", "Bush"]}, {"answer": "georges_cuvier", "hint": "synonyms for georges cuvier", "clues": ["Cuvier", "Georges Cuvier", "Georges Leopold Chretien Frederic Dagobert Cuvier", "Baron Georges Cuvier"]}, {"answer": "georges_leopold_chretien_frederic_dagobert_cuvier", "hint": "synonyms for georges leopold chretien frederic dagobert cuvier", "clues": ["Cuvier", "Georges Cuvier", "Georges Leopold Chretien Frederic Dagobert Cuvier", "Baron Georges Cuvier"]}, {"answer": "georgia", "hint": "synonyms for georgia", "clues": ["GA", "Georgia", "Sakartvelo", "Empire State of the South", "Peach State"]}, {"answer": "georgia_home_boy", "hint": "synonyms for georgia home boy", "clues": ["soap", "scoop", "liquid ecstasy", "easy lay", "Georgia home boy", "grievous bodily harm", "max", "goop"]}, {"answer": "gerald_ford", "hint": "synonyms for gerald ford", "clues": ["President Ford", "Ford", "Gerald Ford", "Gerald Rudolph Ford"]}, {"answer": "gerald_r._ford", "hint": "synonyms for gerald r. ford", "clues": ["President Ford", "Ford", "Gerald Ford", "Gerald Rudolph Ford"]}, {"answer": "gerald_rudolph_ford", "hint": "synonyms for gerald rudolph ford", "clues": ["President Ford", "Ford", "Gerald Ford", "Gerald Rudolph Ford"]}, {"answer": "gerhard_gerhards", "hint": "synonyms for gerhard gerhards", "clues": ["Geert Geerts", "Gerhard Gerhards", "Desiderius Erasmus", "Erasmus"]}, {"answer": "german_measles", "hint": "synonyms for german measles", "clues": ["epidemic roseola", "German measles", "rubella", "three-day measles"]}, {"answer": "germany", "hint": "synonyms for germany", "clues": ["Germany", "Federal Republic of Germany", "Deutschland", "FRG"]}, {"answer": "get-go", "hint": "synonyms for get-go", "clues": ["showtime", "outset", "start", "offset", "starting time", "kickoff", "beginning", "commencement", "first", "get-go"]}, {"answer": "gewgaw", "hint": "synonyms for gewgaw", "clues": ["bangle", "trinket", "gaud", "fallal", "novelty", "bauble", "gewgaw"]}, {"answer": "ghost", "hint": "synonyms for ghost", "clues": ["trace", "shade", "spectre", "wraith", "ghostwriter", "touch", "spook", "ghost"]}, {"answer": "ghz", "hint": "synonyms for ghz", "clues": ["gigacycle per second", "GHz", "gigahertz", "gigacycle", "Gc"]}, {"answer": "gi_tract", "hint": "synonyms for gi tract", "clues": ["alimentary canal", "GI tract", "gastrointestinal tract", "digestive tube", "digestive tract", "alimentary tract"]}, {"answer": "giambattista_lulli", "hint": "synonyms for giambattista lulli", "clues": ["Giambattista Lulli", "Lully", "Jean Baptiste Lully", "Lulli"]}, {"answer": "giant_hives", "hint": "synonyms for giant hives", "clues": ["angioedema", "periodic edema", "atrophedema", "Quincke's edema", "giant hives"]}, {"answer": "gib", "hint": "synonyms for gib", "clues": ["GiB", "gibibyte", "G", "gigabyte", "GB"]}, {"answer": "gibbosity", "hint": "synonyms for gibbosity", "clues": ["extrusion", "prominence", "excrescence", "swelling", "protrusion", "hump", "protuberance", "gibbousness", "bulge", "jut", "bump", "gibbosity"]}, {"answer": "gibbousness", "hint": "synonyms for gibbousness", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "protrusion", "hump", "protuberance", "bulge", "jut", "bump", "gibbousness"]}, {"answer": "gibe", "hint": "synonyms for gibe", "clues": ["shaft", "shot", "slam", "dig", "jibe", "barb", "gibe"]}, {"answer": "gibibyte", "hint": "synonyms for gibibyte", "clues": ["G", "GiB", "gigabyte", "GB", "gibibyte"]}, {"answer": "gibraltar_fever", "hint": "synonyms for gibraltar fever", "clues": ["Mediterranean fever", "Gibraltar fever", "undulant fever", "Rock fever", "Malta fever", "brucellosis"]}, {"answer": "gibson", "hint": "synonyms for gibson", "clues": ["Althea Gibson", "Mel Gibson", "Mel Columcille Gerard Gibson", "Charles Dana Gibson", "C. D. Gibson", "Gibson"]}, {"answer": "giddiness", "hint": "synonyms for giddiness", "clues": ["vertigo", "dizziness", "silliness", "lightheadedness", "giddiness"]}, {"answer": "gift", "hint": "synonyms for gift", "clues": ["endowment", "giving", "talent", "natural endowment", "gift"]}, {"answer": "gig", "hint": "synonyms for gig", "clues": ["lance", "fishgig", "fizgig", "spear", "gig"]}, {"answer": "gigabyte", "hint": "synonyms for gigabyte", "clues": ["GiB", "G", "gibibyte", "GB", "gigabyte"]}, {"answer": "gigacycle", "hint": "synonyms for gigacycle", "clues": ["Gc", "gigacycle per second", "gigahertz", "GHz", "gigacycle"]}, {"answer": "gigacycle_per_second", "hint": "synonyms for gigacycle per second", "clues": ["Gc", "gigahertz", "gigacycle", "GHz", "gigacycle per second"]}, {"answer": "gigahertz", "hint": "synonyms for gigahertz", "clues": ["Gc", "gigacycle per second", "gigacycle", "GHz", "gigahertz"]}, {"answer": "gilbert", "hint": "synonyms for gilbert", "clues": ["Sir Humphrey Gilbert", "Gilbert", "Sir William Gilbert", "William S. Gilbert", "Cass Gilbert", "William Schwenk Gilbert", "Gi", "Gb"]}, {"answer": "gild", "hint": "synonyms for gild", "clues": ["club", "society", "order", "social club", "guild", "lodge"]}, {"answer": "gimcrackery", "hint": "synonyms for gimcrackery", "clues": ["nonsense", "falderol", "folderal", "trumpery", "frill", "gimcrack", "gimcrackery"]}, {"answer": "gimmick", "hint": "synonyms for gimmick", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "catch", "doohickey", "gizmo", "twist", "thingummy", "whatsis", "device", "gimmick"]}, {"answer": "gimp", "hint": "synonyms for gimp", "clues": ["gimpiness", "gameness", "limping", "claudication", "gimp"]}, {"answer": "gimpiness", "hint": "synonyms for gimpiness", "clues": ["gameness", "limping", "claudication", "gimp", "gimpiness"]}, {"answer": "gin", "hint": "synonyms for gin", "clues": ["noose", "gin rummy", "knock rummy", "cotton gin", "snare", "gin"]}, {"answer": "gin_mill", "hint": "synonyms for gin mill", "clues": ["pothouse", "public house", "saloon", "pub", "taphouse", "gin mill"]}, {"answer": "ginger_rogers", "hint": "synonyms for ginger rogers", "clues": ["Virginia Katherine McMath", "Rogers", "Ginger Rogers", "Virginia McMath"]}, {"answer": "ginmill", "hint": "synonyms for ginmill", "clues": ["barroom", "bar", "taproom", "saloon", "ginmill"]}, {"answer": "ginzo", "hint": "synonyms for ginzo", "clues": ["Guinea", "dago", "greaseball", "wop", "ginzo"]}, {"answer": "giovanni_di_bernardone", "hint": "synonyms for giovanni di bernardone", "clues": ["St. Francis of Assisi", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "giovanni_jacopo_casanova", "hint": "synonyms for giovanni jacopo casanova", "clues": ["Casanova", "Giovanni Jacopo Casanova", "Casanova de Seingalt", "Giovanni Jacopo Casanova de Seingalt"]}, {"answer": "giovanni_jacopo_casanova_de_seingalt", "hint": "synonyms for giovanni jacopo casanova de seingalt", "clues": ["Casanova", "Giovanni Jacopo Casanova", "Casanova de Seingalt", "Giovanni Jacopo Casanova de Seingalt"]}, {"answer": "gipsy", "hint": "synonyms for gipsy", "clues": ["Gypsy", "Gipsy", "Romani", "Roma", "Romany", "itinerant", "Bohemian"]}, {"answer": "girdle", "hint": "synonyms for girdle", "clues": ["corset", "cincture", "waistband", "stays", "sash", "waistcloth", "girdle"]}, {"answer": "girl", "hint": "synonyms for girl", "clues": ["young woman", "miss", "lady friend", "daughter", "female child", "little girl", "fille", "girlfriend", "young lady", "girl"]}, {"answer": "gismo", "hint": "synonyms for gismo", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "doojigger", "convenience", "doodad", "doohickey", "gizmo", "contrivance", "gadget", "thingummy", "appliance", "whatsis", "contraption", "gimmick", "gismo"]}, {"answer": "gist", "hint": "synonyms for gist", "clues": ["marrow", "inwardness", "nitty-gritty", "center", "effect", "kernel", "nub", "heart", "core", "sum", "essence", "heart and soul", "centre", "meat", "substance", "pith", "burden", "gist"]}, {"answer": "git", "hint": "synonyms for git", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "puke", "rotter", "skunk", "git"]}, {"answer": "give-and-take", "hint": "synonyms for give-and-take", "clues": ["raillery", "reciprocation", "banter", "backchat", "discussion", "word", "interchange", "give-and-take"]}, {"answer": "giver", "hint": "synonyms for giver", "clues": ["conferrer", "donor", "presenter", "bestower", "giver"]}, {"answer": "gizmo", "hint": "synonyms for gizmo", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "convenience", "doodad", "doohickey", "contrivance", "gadget", "thingummy", "appliance", "whatsis", "contraption", "gimmick", "gizmo"]}, {"answer": "glacial_epoch", "hint": "synonyms for glacial epoch", "clues": ["glacial period", "ice age", "Glacial epoch", "Pleistocene", "Pleistocene epoch"]}, {"answer": "gladstone", "hint": "synonyms for gladstone", "clues": ["Gladstone", "portmanteau", "William Gladstone", "Gladstone bag"]}, {"answer": "glandular_fever", "hint": "synonyms for glandular fever", "clues": ["kissing disease", "mono", "mononucleosis", "infectious mononucleosis", "glandular fever"]}, {"answer": "glare", "hint": "synonyms for glare", "clues": ["spotlight", "limelight", "glower", "blaze", "public eye", "brilliance", "glare"]}, {"answer": "glass", "hint": "synonyms for glass", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "chalk", "ice", "drinking glass", "spyglass", "glassful", "methamphetamine hydrochloride", "trash", "methamphetamine", "field glass", "looking glass", "shabu", "glass"]}, {"answer": "glasses", "hint": "synonyms for glasses", "clues": ["eyeglasses", "Methedrine", "glass", "spyglass", "spectacles", "trash", "methamphetamine", "shabu", "crank", "deoxyephedrine", "chicken feed", "specs", "meth", "chalk", "ice", "drinking glass", "glassful", "methamphetamine hydrochloride", "field glass", "looking glass"]}, {"answer": "gleam", "hint": "synonyms for gleam", "clues": ["glow", "gleaming", "glimmer", "lambency"]}, {"answer": "glee", "hint": "synonyms for glee", "clues": ["mirth", "hilarity", "gloat", "gleefulness", "mirthfulness", "glee"]}, {"answer": "gleefulness", "hint": "synonyms for gleefulness", "clues": ["glee", "mirthfulness", "mirth", "hilarity", "gleefulness"]}, {"answer": "glen_gebhard", "hint": "synonyms for glen gebhard", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "glide", "hint": "synonyms for glide", "clues": ["semivowel", "sailplaning", "soaring", "gliding", "coast", "slide", "sailing", "glide"]}, {"answer": "gliding", "hint": "synonyms for gliding", "clues": ["sailplaning", "soaring", "sailing", "glide", "gliding"]}, {"answer": "glimmer", "hint": "synonyms for glimmer", "clues": ["gleam", "intimation", "inkling", "glimmering"]}, {"answer": "glister", "hint": "synonyms for glister", "clues": ["glisten", "glitter", "sparkle", "scintillation"]}, {"answer": "glitter", "hint": "synonyms for glitter", "clues": ["scintillation", "sparkle", "glister", "coruscation"]}, {"answer": "glitz", "hint": "synonyms for glitz", "clues": ["garishness", "tawdriness", "loudness", "brashness", "meretriciousness", "gaudiness", "flashiness", "glitz"]}, {"answer": "gloam", "hint": "synonyms for gloam", "clues": ["twilight", "dusk", "crepuscule", "evenfall", "gloaming", "nightfall", "fall"]}, {"answer": "gloaming", "hint": "synonyms for gloaming", "clues": ["twilight", "dusk", "crepuscule", "evenfall", "gloam", "nightfall", "fall"]}, {"answer": "glob", "hint": "synonyms for glob", "clues": ["lump", "clod", "ball", "chunk", "glob"]}, {"answer": "globe", "hint": "synonyms for globe", "clues": ["Earth", "orb", "ball", "world", "globe"]}, {"answer": "globosity", "hint": "synonyms for globosity", "clues": ["rotundity", "sphericalness", "sphericity", "rotundness", "globularness", "globosity"]}, {"answer": "globularness", "hint": "synonyms for globularness", "clues": ["rotundity", "globosity", "sphericalness", "sphericity", "rotundness", "globularness"]}, {"answer": "gloom", "hint": "synonyms for gloom", "clues": ["somberness", "glumness", "gloominess", "gloom"]}, {"answer": "gloominess", "hint": "synonyms for gloominess", "clues": ["somberness", "gloom", "lugubriousness", "glumness", "sadness", "gloominess"]}, {"answer": "gloomy_gus", "hint": "synonyms for gloomy gus", "clues": ["pouter", "sourpuss", "picklepuss", "gloomy Gus"]}, {"answer": "gloriole", "hint": "synonyms for gloriole", "clues": ["glory", "aureole", "aura", "nimbus", "halo", "gloriole"]}, {"answer": "glory", "hint": "synonyms for glory", "clues": ["resplendency", "glorification", "gloriole", "nimbus", "aura", "aureole", "halo", "glory"]}, {"answer": "gloss", "hint": "synonyms for gloss", "clues": ["color", "glossiness", "polish", "semblance", "glossary", "burnish", "rubric", "gloss"]}, {"answer": "glove", "hint": "synonyms for glove", "clues": ["baseball glove", "mitt", "baseball mitt", "boxing glove", "glove"]}, {"answer": "glow", "hint": "synonyms for glow", "clues": ["gleam", "incandescence", "radiance", "luminescence", "freshness", "glowing", "lambency"]}, {"answer": "glueyness", "hint": "synonyms for glueyness", "clues": ["viscidness", "tackiness", "gumminess", "cohesiveness", "viscidity", "ropiness", "gluiness", "glueyness"]}, {"answer": "gluiness", "hint": "synonyms for gluiness", "clues": ["viscidness", "gumminess", "tackiness", "cohesiveness", "ropiness", "glueyness", "viscidity", "gluiness"]}, {"answer": "glumness", "hint": "synonyms for glumness", "clues": ["moroseness", "gloom", "sullenness", "gloominess", "glumness"]}, {"answer": "glyceryl_trinitrate", "hint": "synonyms for glyceryl trinitrate", "clues": ["trinitroglycerin", "Nitrospan", "Nitrostat", "glyceryl trinitrate"]}, {"answer": "glycol", "hint": "synonyms for glycol", "clues": ["dihydric alcohol", "ethylene glycol", "diol", "ethanediol", "glycol"]}, {"answer": "gmt", "hint": "synonyms for gmt", "clues": ["universal time", "Greenwich Time", "UT1", "UT", "GMT", "Greenwich Mean Time"]}, {"answer": "go-ahead", "hint": "synonyms for go-ahead", "clues": ["green light", "enterprise", "enterprisingness", "initiative", "go-ahead"]}, {"answer": "go-between", "hint": "synonyms for go-between", "clues": ["mediator", "intercessor", "intermediator", "go-between"]}, {"answer": "go-cart", "hint": "synonyms for go-cart", "clues": ["perambulator", "cart", "handcart", "pusher", "walker", "carriage", "pushchair", "baby carriage", "baby buggy", "pram", "stroller", "baby-walker", "pushcart", "go-cart"]}, {"answer": "goad", "hint": "synonyms for goad", "clues": ["goading", "urging", "spurring", "spur", "prodding", "prod"]}, {"answer": "goading", "hint": "synonyms for goading", "clues": ["urging", "spurring", "spur", "prodding", "goad", "prod"]}, {"answer": "goalie", "hint": "synonyms for goalie", "clues": ["netkeeper", "goalkeeper", "goaltender", "netminder", "goalie"]}, {"answer": "goalkeeper", "hint": "synonyms for goalkeeper", "clues": ["netkeeper", "goalie", "goaltender", "netminder", "goalkeeper"]}, {"answer": "goaltender", "hint": "synonyms for goaltender", "clues": ["netkeeper", "goalkeeper", "goalie", "netminder", "goaltender"]}, {"answer": "goat", "hint": "synonyms for goat", "clues": ["Goat", "Capricorn", "Capricorn the Goat", "butt", "stooge", "laughingstock"]}, {"answer": "gob", "hint": "synonyms for gob", "clues": ["Jack", "old salt", "cakehole", "mariner", "yap", "seafarer", "sea dog", "maw", "seaman", "Jack-tar", "hole", "tar", "trap", "gob"]}, {"answer": "gobs", "hint": "synonyms for gobs", "clues": ["Jack", "old salt", "tons", "yap", "rafts", "lashings", "oodles", "maw", "gob", "dozens", "trap", "cakehole", "scads", "mariner", "slews", "heaps", "lots", "wads", "seafarer", "sea dog", "scores", "stacks", "seaman", "Jack-tar", "loads", "hole", "tar", "piles"]}, {"answer": "god", "hint": "synonyms for god", "clues": ["idol", "divinity", "graven image", "immortal", "deity", "God", "Supreme Being"]}, {"answer": "god_almighty", "hint": "synonyms for god almighty", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "Maker", "Almighty", "Divine", "God Almighty"]}, {"answer": "godhead", "hint": "synonyms for godhead", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "Maker", "Almighty", "Divine", "God Almighty"]}, {"answer": "godsend", "hint": "synonyms for godsend", "clues": ["bonanza", "manna from heaven", "boom", "gold rush", "bunce", "windfall", "gravy", "godsend"]}, {"answer": "godwin_austen", "hint": "synonyms for godwin austen", "clues": ["Godwin Austen", "Mount Godwin Austen", "K2", "Dapsang"]}, {"answer": "goffer", "hint": "synonyms for goffer", "clues": ["gauffer", "goffering iron", "gopher", "goffer"]}, {"answer": "goggle_box", "hint": "synonyms for goggle box", "clues": ["boob tube", "television set", "telly", "television receiver", "tv", "television", "tv set", "idiot box", "goggle box"]}, {"answer": "going-over", "hint": "synonyms for going-over", "clues": ["chewing out", "bawling out", "castigation", "dressing down", "earful", "upbraiding", "going-over"]}, {"answer": "gold_rush", "hint": "synonyms for gold rush", "clues": ["bonanza", "manna from heaven", "godsend", "boom", "bunce", "windfall", "gravy", "gold rush"]}, {"answer": "goldbrick", "hint": "synonyms for goldbrick", "clues": ["goof-off", "good-for-nothing", "good-for-naught", "ne'er-do-well", "no-account", "goldbrick"]}, {"answer": "goldbricking", "hint": "synonyms for goldbricking", "clues": ["soldiering", "slacking", "goofing off", "shirking", "goldbricking"]}, {"answer": "golden_state", "hint": "synonyms for golden state", "clues": ["California", "Calif.", "CA", "Golden State"]}, {"answer": "golgi_apparatus", "hint": "synonyms for golgi apparatus", "clues": ["dictyosome", "Golgi body", "Golgi apparatus", "Golgi complex"]}, {"answer": "golgi_body", "hint": "synonyms for golgi body", "clues": ["dictyosome", "Golgi body", "Golgi apparatus", "Golgi complex"]}, {"answer": "golgi_complex", "hint": "synonyms for golgi complex", "clues": ["dictyosome", "Golgi body", "Golgi apparatus", "Golgi complex"]}, {"answer": "goliath", "hint": "synonyms for goliath", "clues": ["Goliath", "giant", "colossus", "behemoth", "monster"]}, {"answer": "golosh", "hint": "synonyms for golosh", "clues": ["gumshoe", "rubber", "arctic", "galosh", "golosh"]}, {"answer": "goncourt", "hint": "synonyms for goncourt", "clues": ["Edmond Louis Antoine Huot de Goncourt", "Jules de Goncourt", "Goncourt", "Edmond de Goncourt", "Jules Alfred Huot de Goncourt"]}, {"answer": "goo", "hint": "synonyms for goo", "clues": ["gunk", "slime", "gook", "ooze", "goop", "guck", "sludge", "muck"]}, {"answer": "goober", "hint": "synonyms for goober", "clues": ["peanut", "earthnut", "monkey nut", "goober pea", "groundnut", "goober"]}, {"answer": "goober_pea", "hint": "synonyms for goober pea", "clues": ["peanut", "earthnut", "goober", "monkey nut", "groundnut", "goober pea"]}, {"answer": "good-by", "hint": "synonyms for good-by", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "auf wiedersehen", "adios", "bye-bye", "bye", "sayonara"]}, {"answer": "good-bye", "hint": "synonyms for good-bye", "clues": ["cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "goodbye", "adios", "bye-bye", "bye"]}, {"answer": "good_book", "hint": "synonyms for good book", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "good_day", "hint": "synonyms for good day", "clues": ["good-bye", "cheerio", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "good day"]}, {"answer": "good_deal", "hint": "synonyms for good deal", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "good deal"]}, {"answer": "good_luck", "hint": "synonyms for good luck", "clues": ["break", "fluke", "happy chance", "luckiness", "good fortune", "good luck"]}, {"answer": "good_sense", "hint": "synonyms for good sense", "clues": ["horse sense", "mother wit", "sense", "gumption", "common sense", "good sense"]}, {"answer": "good_shepherd", "hint": "synonyms for good shepherd", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "goodby", "hint": "synonyms for goodby", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye"]}, {"answer": "goodbye", "hint": "synonyms for goodbye", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye"]}, {"answer": "goodman", "hint": "synonyms for goodman", "clues": ["Benny Goodman", "Goodman", "Benjamin David Goodman", "King of Swing"]}, {"answer": "goody", "hint": "synonyms for goody", "clues": ["delicacy", "kickshaw", "dainty", "treat", "goody"]}, {"answer": "goof", "hint": "synonyms for goof", "clues": ["clown", "fathead", "jackass", "goofball", "goose", "merry andrew", "buffoon", "bozo", "cuckoo", "zany", "twat", "goof"]}, {"answer": "goof-off", "hint": "synonyms for goof-off", "clues": ["good-for-nothing", "goldbrick", "good-for-naught", "ne'er-do-well", "no-account", "goof-off"]}, {"answer": "goofball", "hint": "synonyms for goofball", "clues": ["clown", "fathead", "jackass", "goose", "goof", "merry andrew", "buffoon", "bozo", "cuckoo", "zany", "twat", "goofball"]}, {"answer": "goofing_off", "hint": "synonyms for goofing off", "clues": ["goldbricking", "soldiering", "slacking", "shirking", "goofing off"]}, {"answer": "gook", "hint": "synonyms for gook", "clues": ["gunk", "goo", "slant-eye", "slime", "ooze", "guck", "sludge", "muck"]}, {"answer": "goon", "hint": "synonyms for goon", "clues": ["clod", "lump", "stumblebum", "punk", "thug", "strong-armer", "lubber", "hoodlum", "gawk", "tough", "toughie", "oaf", "lout", "lummox", "hood", "goon"]}, {"answer": "goop", "hint": "synonyms for goop", "clues": ["gunk", "soap", "goo", "scoop", "liquid ecstasy", "easy lay", "slime", "Georgia home boy", "ooze", "grievous bodily harm", "guck", "max", "sludge", "muck"]}, {"answer": "goose", "hint": "synonyms for goose", "clues": ["fathead", "jackass", "goofball", "goof", "bozo", "cuckoo", "zany", "twat", "goose"]}, {"answer": "goose_bump", "hint": "synonyms for goose bump", "clues": ["goose skin", "pilomotor reflex", "goosebump", "goose pimple", "gooseflesh", "horripilation"]}, {"answer": "goose_egg", "hint": "synonyms for goose egg", "clues": ["null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "nothing", "zippo", "zilch", "goose egg"]}, {"answer": "goose_pimple", "hint": "synonyms for goose pimple", "clues": ["goose skin", "pilomotor reflex", "goosebump", "gooseflesh", "horripilation", "goose pimple"]}, {"answer": "goose_skin", "hint": "synonyms for goose skin", "clues": ["pilomotor reflex", "goosebump", "goose pimple", "gooseflesh", "horripilation", "goose skin"]}, {"answer": "goosebump", "hint": "synonyms for goosebump", "clues": ["goose skin", "pilomotor reflex", "goose pimple", "gooseflesh", "horripilation", "goose bump"]}, {"answer": "gooseflesh", "hint": "synonyms for gooseflesh", "clues": ["goose skin", "pilomotor reflex", "goosebump", "goose pimple", "horripilation", "gooseflesh"]}, {"answer": "gopher_state", "hint": "synonyms for gopher state", "clues": ["Minnesota", "MN", "Gopher State", "North Star State"]}, {"answer": "gore", "hint": "synonyms for gore", "clues": ["bloodshed", "Gore", "panel", "Albert Gore Jr.", "Al Gore"]}, {"answer": "gorge", "hint": "synonyms for gorge", "clues": ["gullet", "esophagus", "defile", "gorge"]}, {"answer": "gorki", "hint": "synonyms for gorki", "clues": ["Gorki", "Nizhni Novgorod", "Maxim Gorki", "Aleksey Maximovich Peshkov", "Gorky", "Maksim Gorky"]}, {"answer": "gorky", "hint": "synonyms for gorky", "clues": ["Gorki", "Nizhni Novgorod", "Maxim Gorki", "Aleksey Maximovich Peshkov", "Gorky", "Maksim Gorky"]}, {"answer": "gospel", "hint": "synonyms for gospel", "clues": ["church doctrine", "creed", "religious doctrine", "Gospel", "gospel truth", "evangel", "gospel singing"]}, {"answer": "gospels", "hint": "synonyms for gospels", "clues": ["church doctrine", "gospel", "religious doctrine", "gospel truth", "evangel", "creed", "gospel singing"]}, {"answer": "gossip", "hint": "synonyms for gossip", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "gossiper", "comment", "rumourmonger", "scuttlebutt", "newsmonger", "chin-wag", "gossipmonger", "tittle-tattle", "gab"]}, {"answer": "gossiper", "hint": "synonyms for gossiper", "clues": ["rumourmonger", "gossip", "newsmonger", "gossipmonger"]}, {"answer": "gossipmonger", "hint": "synonyms for gossipmonger", "clues": ["rumourmonger", "gossip", "newsmonger", "gossipmonger"]}, {"answer": "goth", "hint": "synonyms for goth", "clues": ["peasant", "boor", "tyke", "Goth", "churl", "tike", "barbarian"]}, {"answer": "gouger", "hint": "synonyms for gouger", "clues": ["chiseler", "defrauder", "swindler", "scammer", "grifter", "gouger"]}, {"answer": "gourmet", "hint": "synonyms for gourmet", "clues": ["bon vivant", "epicurean", "foodie", "gastronome", "gourmet"]}, {"answer": "governance", "hint": "synonyms for governance", "clues": ["brass", "organisation", "administration", "establishment", "government activity", "governing", "governing body", "government", "governance"]}, {"answer": "governing_body", "hint": "synonyms for governing body", "clues": ["brass", "establishment", "organisation", "governance", "administration", "governing body"]}, {"answer": "government", "hint": "synonyms for government", "clues": ["administration", "regime", "governing", "politics", "political science", "government activity", "authorities", "governance", "government"]}, {"answer": "government_activity", "hint": "synonyms for government activity", "clues": ["government", "governance", "governing", "administration", "government activity"]}, {"answer": "government_agency", "hint": "synonyms for government agency", "clues": ["federal agency", "authority", "office", "agency", "bureau", "government agency"]}, {"answer": "government_note", "hint": "synonyms for government note", "clues": ["note", "banker's bill", "bill", "Federal Reserve note", "bank note", "bank bill", "greenback", "government note"]}, {"answer": "gown", "hint": "synonyms for gown", "clues": ["nightgown", "robe", "night-robe", "nightie", "nightdress", "surgical gown", "scrubs", "gown"]}, {"answer": "goya", "hint": "synonyms for goya", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "goya_y_lucientes", "hint": "synonyms for goya y lucientes", "clues": ["Goya", "Goya y Lucientes", "Francisco de Goya", "Francisco Jose de Goya y Lucientes"]}, {"answer": "grace", "hint": "synonyms for grace", "clues": ["gracility", "grace of God", "goodwill", "seemliness", "blessing", "free grace", "saving grace", "state of grace", "Grace", "thanksgiving"]}, {"answer": "grace_ethel_cecile_rosalie_allen", "hint": "synonyms for grace ethel cecile rosalie allen", "clues": ["Gracie Allen", "Allen", "Grace Ethel Cecile Rosalie Allen", "Gracie"]}, {"answer": "grace_kelly", "hint": "synonyms for grace kelly", "clues": ["Princess Grace of Monaco", "Kelly", "Grace Kelly", "Grace Patricia Kelly"]}, {"answer": "grace_patricia_kelly", "hint": "synonyms for grace patricia kelly", "clues": ["Princess Grace of Monaco", "Kelly", "Grace Kelly", "Grace Patricia Kelly"]}, {"answer": "gracelessness", "hint": "synonyms for gracelessness", "clues": ["ungracefulness", "awkwardness", "stiffness", "clumsiness", "gracelessness"]}, {"answer": "gracie", "hint": "synonyms for gracie", "clues": ["Gracie Allen", "Allen", "Grace Ethel Cecile Rosalie Allen", "Gracie"]}, {"answer": "gracie_allen", "hint": "synonyms for gracie allen", "clues": ["Gracie Allen", "Allen", "Grace Ethel Cecile Rosalie Allen", "Gracie"]}, {"answer": "grad", "hint": "synonyms for grad", "clues": ["alumnus", "grade", "graduate", "alumna", "alum"]}, {"answer": "grade", "hint": "synonyms for grade", "clues": ["form", "gradation", "mark", "level", "class", "degree", "course", "score", "grad", "tier", "ground level"]}, {"answer": "grading", "hint": "synonyms for grading", "clues": ["scoring", "marking", "leveling", "scaling", "grading"]}, {"answer": "graduation", "hint": "synonyms for graduation", "clues": ["commencement ceremony", "graduation exercise", "gradation", "commencement", "commencement exercise"]}, {"answer": "graduation_exercise", "hint": "synonyms for graduation exercise", "clues": ["graduation", "commencement ceremony", "commencement", "commencement exercise", "graduation exercise"]}, {"answer": "graham", "hint": "synonyms for graham", "clues": ["Billy Graham", "William Franklin Graham", "Graham", "whole wheat flour", "Martha Graham", "graham flour", "whole meal flour"]}, {"answer": "grain", "hint": "synonyms for grain", "clues": ["metric grain", "texture", "cereal", "food grain", "grain"]}, {"answer": "gram", "hint": "synonyms for gram", "clues": ["gm", "g", "Hans C. J. Gram", "gramme", "Gram"]}, {"answer": "gramps", "hint": "synonyms for gramps", "clues": ["granddad", "grandfather", "grandpa", "gramps"]}, {"answer": "gran", "hint": "synonyms for gran", "clues": ["granny", "nanna", "nan", "grandmother", "grandma", "grannie", "gran"]}, {"answer": "gran_santiago", "hint": "synonyms for gran santiago", "clues": ["Santiago", "Gran Santiago", "capital of Chile", "Santiago de Chile"]}, {"answer": "grand_mal", "hint": "synonyms for grand mal", "clues": ["epilepsia major", "grand mal epilepsy", "generalized epilepsy", "generalized seizure", "grand mal"]}, {"answer": "grandad", "hint": "synonyms for grandad", "clues": ["granddad", "grandfather", "gramps", "grandpa"]}, {"answer": "granddad", "hint": "synonyms for granddad", "clues": ["grandad", "granddaddy", "grandfather", "gramps"]}, {"answer": "granddaddy", "hint": "synonyms for granddaddy", "clues": ["granddad", "grandfather", "gramps", "grandpa"]}, {"answer": "grandeur", "hint": "synonyms for grandeur", "clues": ["magnificence", "nobleness", "nobility", "magnanimousness", "grandness", "splendor", "brilliance", "grandeur"]}, {"answer": "grandfather", "hint": "synonyms for grandfather", "clues": ["granddad", "gramps", "grandpa", "grandfather"]}, {"answer": "grandiloquence", "hint": "synonyms for grandiloquence", "clues": ["grandiosity", "rhetoric", "magniloquence", "ornateness", "grandiloquence"]}, {"answer": "grandiosity", "hint": "synonyms for grandiosity", "clues": ["grandiloquence", "rhetoric", "magniloquence", "ornateness", "grandiosity"]}, {"answer": "grandma", "hint": "synonyms for grandma", "clues": ["granny", "nanna", "nan", "grandmother", "gran", "grannie", "grandma"]}, {"answer": "grandmother", "hint": "synonyms for grandmother", "clues": ["granny", "nanna", "nan", "grannie", "gran", "grandma", "grandmother"]}, {"answer": "grandness", "hint": "synonyms for grandness", "clues": ["immenseness", "enormousness", "brilliance", "richness", "grandeur", "magnificence", "immensity", "vastness", "importance", "greatness", "wideness", "splendor", "impressiveness", "sizeableness", "grandness"]}, {"answer": "grandpa", "hint": "synonyms for grandpa", "clues": ["granddad", "grandfather", "gramps", "grandpa"]}, {"answer": "grannie", "hint": "synonyms for grannie", "clues": ["granny", "nanna", "nan", "grandmother", "gran", "grandma", "grannie"]}, {"answer": "granny", "hint": "synonyms for granny", "clues": ["granny knot", "nanna", "grandmother", "nan", "grannie", "gran", "grandma", "granny"]}, {"answer": "grant", "hint": "synonyms for grant", "clues": ["Grant", "Duncan Grant", "subsidization", "Hiram Ulysses Grant", "Ulysses S. Grant", "Duncan James Corrow Grant", "President Grant", "Cary Grant", "Ulysses Simpson Grant", "concession", "assignment"]}, {"answer": "graphics", "hint": "synonyms for graphics", "clues": ["art", "computer graphic", "graphic", "artwork", "nontextual matter"]}, {"answer": "grapnel", "hint": "synonyms for grapnel", "clues": ["grappler", "grappling hook", "grappling iron", "grapnel anchor", "grapnel"]}, {"answer": "grapple", "hint": "synonyms for grapple", "clues": ["grapnel", "grappling", "grappling hook", "clamshell", "grappler", "wrestling", "hand-to-hand struggle", "grappling iron", "wrestle"]}, {"answer": "grappler", "hint": "synonyms for grappler", "clues": ["grapnel", "grapple", "matman", "grappling hook", "wrestler", "grappling iron"]}, {"answer": "grappling", "hint": "synonyms for grappling", "clues": ["wrestling", "grapple", "hand-to-hand struggle", "rassling", "wrestle", "grappling"]}, {"answer": "grappling_hook", "hint": "synonyms for grappling hook", "clues": ["grapnel", "grappler", "grappling iron", "grappling hook"]}, {"answer": "grappling_iron", "hint": "synonyms for grappling iron", "clues": ["grapnel", "grappler", "grappling hook", "grappling iron"]}, {"answer": "grasp", "hint": "synonyms for grasp", "clues": ["range", "clutch", "clasp", "hold", "reach", "appreciation", "compass", "grip", "clench", "grasp"]}, {"answer": "grass", "hint": "synonyms for grass", "clues": ["pasture", "forage", "pot", "dope", "supergrass", "eatage", "Gunter Grass", "weed", "locoweed", "Mary Jane", "Grass", "Gunter Wilhelm Grass", "gage", "smoke", "green goddess", "sess", "skunk", "sens"]}, {"answer": "gratuity", "hint": "synonyms for gratuity", "clues": ["pourboire", "backsheesh", "tip", "bakshis", "gratuity"]}, {"answer": "graveness", "hint": "synonyms for graveness", "clues": ["somberness", "sobriety", "gravity", "graveness"]}, {"answer": "graves", "hint": "synonyms for graves", "clues": ["Steffi Graf", "tomb", "Graf", "Robert Graves", "grave accent", "grave", "Stephanie Graf", "Robert Ranke Graves"]}, {"answer": "graveyard", "hint": "synonyms for graveyard", "clues": ["burial ground", "burial site", "necropolis", "memorial park", "cemetery", "burying ground", "graveyard"]}, {"answer": "gravity", "hint": "synonyms for gravity", "clues": ["somberness", "sobriety", "graveness", "gravitational force", "gravitational attraction", "gravitation", "solemnity", "gravity"]}, {"answer": "gravure", "hint": "synonyms for gravure", "clues": ["heliogravure", "intaglio printing", "intaglio", "photogravure", "gravure"]}, {"answer": "gravy", "hint": "synonyms for gravy", "clues": ["manna from heaven", "pan gravy", "bonanza", "godsend", "boom", "gold rush", "bunce", "windfall", "gravy"]}, {"answer": "grazing_land", "hint": "synonyms for grazing land", "clues": ["pastureland", "pasture", "ley", "lea", "grazing land"]}, {"answer": "grease", "hint": "synonyms for grease", "clues": ["soil", "grunge", "grime", "lubricating oil", "dirt", "stain", "filth", "grease"]}, {"answer": "grease_monkey", "hint": "synonyms for grease monkey", "clues": ["car-mechanic", "mechanic", "automobile mechanic", "auto-mechanic", "grease monkey"]}, {"answer": "greaseball", "hint": "synonyms for greaseball", "clues": ["Guinea", "ginzo", "dago", "wop", "greaseball"]}, {"answer": "great_britain", "hint": "synonyms for great britain", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "GB", "U.K."]}, {"answer": "great_commoner", "hint": "synonyms for great commoner", "clues": ["William Jennings Bryan", "Great Commoner", "Bryan", "Boy Orator of the Platte"]}, {"answer": "great_deal", "hint": "synonyms for great deal", "clues": ["mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "great deal"]}, {"answer": "great_lakes_state", "hint": "synonyms for great lakes state", "clues": ["Michigan", "Great Lakes State", "Wolverine State", "MI"]}, {"answer": "great_mother", "hint": "synonyms for great mother", "clues": ["Magna Mater", "Dindymene", "Cybele", "Mater Turrita", "Great Mother"]}, {"answer": "great_power", "hint": "synonyms for great power", "clues": ["superpower", "power", "world power", "major power", "great power"]}, {"answer": "great_sandy_desert", "hint": "synonyms for great sandy desert", "clues": ["Dahna", "Great Sandy Desert", "Rub al-Khali", "Ar Rimsal"]}, {"answer": "great_war", "hint": "synonyms for great war", "clues": ["World War I", "First World War", "War to End War", "Great War"]}, {"answer": "greater_london", "hint": "synonyms for greater london", "clues": ["British capital", "Greater London", "London", "capital of the United Kingdom"]}, {"answer": "greatness", "hint": "synonyms for greatness", "clues": ["immenseness", "enormousness", "sizeableness", "illustriousness", "immensity", "vastness", "wideness", "grandness", "greatness"]}, {"answer": "greed", "hint": "synonyms for greed", "clues": ["avarice", "rapacity", "avaritia", "covetousness", "greed"]}, {"answer": "greediness", "hint": "synonyms for greediness", "clues": ["voraciousness", "piggishness", "rapaciousness", "hoggishness", "greediness"]}, {"answer": "greek_capital", "hint": "synonyms for greek capital", "clues": ["capital of Greece", "Athinai", "Athens", "Greek capital"]}, {"answer": "greek_fret", "hint": "synonyms for greek fret", "clues": ["Greek fret", "key pattern", "Greek key", "fret"]}, {"answer": "greek_key", "hint": "synonyms for greek key", "clues": ["Greek fret", "key pattern", "Greek key", "fret"]}, {"answer": "green_goddess", "hint": "synonyms for green goddess", "clues": ["locoweed", "Mary Jane", "gage", "pot", "smoke", "dope", "grass", "sess", "weed", "skunk", "sens", "green goddess"]}, {"answer": "greenback", "hint": "synonyms for greenback", "clues": ["note", "government note", "banker's bill", "bill", "Federal Reserve note", "bank note", "bank bill", "greenback"]}, {"answer": "greenish_blue", "hint": "synonyms for greenish blue", "clues": ["peacock blue", "aquamarine", "cobalt blue", "turquoise", "aqua", "greenish blue"]}, {"answer": "greenness", "hint": "synonyms for greenness", "clues": ["verdancy", "green", "viridity", "verdure", "greenness"]}, {"answer": "greens", "hint": "synonyms for greens", "clues": ["cat valium", "super C", "greenness", "park", "common", "putting green", "super acid", "viridity", "leafy vegetable", "putting surface", "green", "special K", "William Green", "K", "honey oil", "jet", "Green River"]}, {"answer": "greenwich_mean_time", "hint": "synonyms for greenwich mean time", "clues": ["universal time", "Greenwich Time", "UT1", "UT", "GMT", "Greenwich Mean Time"]}, {"answer": "greenwich_time", "hint": "synonyms for greenwich time", "clues": ["universal time", "Greenwich Time", "UT1", "UT", "GMT", "Greenwich Mean Time"]}, {"answer": "gregorian_mode", "hint": "synonyms for gregorian mode", "clues": ["ecclesiastical mode", "medieval mode", "Gregorian mode", "church mode"]}, {"answer": "gregory", "hint": "synonyms for gregory", "clues": ["Angelo Correr", "St. Gregory of Nazianzen", "Gregory XII", "Bartolomeo Alberto Capillari", "Gregory Nazianzen", "St. Gregory I", "Gregory", "Ugo Buoncompagni", "Hildebrand", "Gregory the Great"]}, {"answer": "gremlin", "hint": "synonyms for gremlin", "clues": ["hob", "pixy", "elf", "pixie", "imp", "brownie", "gremlin"]}, {"answer": "greyback", "hint": "synonyms for greyback", "clues": ["Johnny", "Reb", "Rebel", "Johnny Reb", "greyback"]}, {"answer": "greybeard", "hint": "synonyms for greybeard", "clues": ["long-beard", "old man", "bellarmine", "Methuselah", "graybeard"]}, {"answer": "grid", "hint": "synonyms for grid", "clues": ["control grid", "storage-battery grid", "gridiron", "power grid", "power system", "grid"]}, {"answer": "griddlecake", "hint": "synonyms for griddlecake", "clues": ["hot cake", "drop scone", "flapjack", "flannel cake", "battercake", "flapcake", "pancake", "Scotch pancake", "griddlecake"]}, {"answer": "grief", "hint": "synonyms for grief", "clues": ["sorrow", "heartbreak", "heartache", "brokenheartedness", "grief"]}, {"answer": "grievous_bodily_harm", "hint": "synonyms for grievous bodily harm", "clues": ["soap", "Georgia home boy", "max", "scoop", "goop", "liquid ecstasy", "easy lay", "grievous bodily harm"]}, {"answer": "grifter", "hint": "synonyms for grifter", "clues": ["chiseler", "defrauder", "swindler", "scammer", "gouger", "grifter"]}, {"answer": "grigori_aleksandrovich_potemkin", "hint": "synonyms for grigori aleksandrovich potemkin", "clues": ["Potemkin", "Grigori Potyokin", "Grigori Aleksandrovich Potemkin", "Potyokin"]}, {"answer": "grigori_potemkin", "hint": "synonyms for grigori potemkin", "clues": ["Potemkin", "Grigori Potyokin", "Grigori Aleksandrovich Potemkin", "Potyokin"]}, {"answer": "grigori_potyokin", "hint": "synonyms for grigori potyokin", "clues": ["Potemkin", "Grigori Potyokin", "Grigori Aleksandrovich Potemkin", "Potyokin"]}, {"answer": "grille", "hint": "synonyms for grille", "clues": ["grill", "wicket", "lattice", "radiator grille", "grillwork"]}, {"answer": "grime", "hint": "synonyms for grime", "clues": ["soil", "grunge", "grease", "dirt", "stain", "filth", "grime"]}, {"answer": "grimm", "hint": "synonyms for grimm", "clues": ["Jakob Ludwig Karl Grimm", "Jakob Grimm", "Wilhelm Grimm", "Grimm", "Wilhelm Karl Grimm"]}, {"answer": "grimness", "hint": "synonyms for grimness", "clues": ["severity", "gruesomeness", "asperity", "rigour", "luridness", "hardship", "ghastliness", "rigorousness", "severeness", "grimness"]}, {"answer": "grind", "hint": "synonyms for grind", "clues": ["pulverisation", "dweeb", "donkeywork", "nerd", "swot", "mill", "plodding", "drudgery", "wonk", "grind"]}, {"answer": "grind_organ", "hint": "synonyms for grind organ", "clues": ["barrel organ", "street organ", "hurdy-gurdy", "hand organ", "grind organ"]}, {"answer": "grinder", "hint": "synonyms for grinder", "clues": ["Italian sandwich", "torpedo", "milling machinery", "poor boy", "molar", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "mill", "wedge", "hero", "submarine sandwich", "hero sandwich", "grinder"]}, {"answer": "grip", "hint": "synonyms for grip", "clues": ["handgrip", "handle", "clutch", "clasp", "bag", "travelling bag", "hairgrip", "adhesive friction", "suitcase", "traction", "grasp", "hold", "bobby pin", "clench", "grip"]}, {"answer": "gripe", "hint": "synonyms for gripe", "clues": ["bitch", "beef", "squawk", "kick", "gripe"]}, {"answer": "gripes", "hint": "synonyms for gripes", "clues": ["griping", "beef", "colic", "gripe", "squawk", "bitch", "kick", "intestinal colic"]}, {"answer": "grit", "hint": "synonyms for grit", "clues": ["gritrock", "sand", "backbone", "gumption", "guts", "gritstone", "moxie", "grit"]}, {"answer": "grits", "hint": "synonyms for grits", "clues": ["grit", "hominy grits", "guts", "gritstone", "backbone", "gumption", "sand", "gritrock", "moxie"]}, {"answer": "grocery", "hint": "synonyms for grocery", "clues": ["grocery store", "food market", "market", "foodstuff", "grocery"]}, {"answer": "groin", "hint": "synonyms for groin", "clues": ["mole", "jetty", "inguen", "seawall", "groyne", "bulwark", "breakwater", "groin"]}, {"answer": "grommet", "hint": "synonyms for grommet", "clues": ["loop", "eyelet", "grummet", "cringle"]}, {"answer": "groom", "hint": "synonyms for groom", "clues": ["bridegroom", "stableboy", "ostler", "stableman", "groom"]}, {"answer": "grossness", "hint": "synonyms for grossness", "clues": ["vulgarism", "coarseness", "commonness", "vulgarity", "raunch", "grossness"]}, {"answer": "grouch", "hint": "synonyms for grouch", "clues": ["churl", "crosspatch", "crank", "grump", "grouch"]}, {"answer": "ground", "hint": "synonyms for ground", "clues": ["primer coat", "soil", "earth", "priming coat", "background", "solid ground", "basis", "terra firma", "dry land", "priming", "undercoat", "primer", "land", "reason", "flat coat", "footing", "ground"]}, {"answer": "groundnut", "hint": "synonyms for groundnut", "clues": ["peanut", "earthnut", "goober", "potato bean", "wild bean", "goober pea", "monkey nut", "groundnut"]}, {"answer": "grounds", "hint": "synonyms for grounds", "clues": ["primer coat", "background", "solid ground", "basis", "dry land", "terra firma", "undercoat", "yard", "curtilage", "flat coat", "footing", "earth", "soil", "priming coat", "evidence", "ground", "priming", "primer", "land", "reason", "cause"]}, {"answer": "groundwork", "hint": "synonyms for groundwork", "clues": ["base", "fundament", "cornerstone", "foot", "basis", "foundation", "understructure", "substructure", "groundwork"]}, {"answer": "group", "hint": "synonyms for group", "clues": ["radical", "grouping", "mathematical group", "chemical group"]}, {"answer": "groveler", "hint": "synonyms for groveler", "clues": ["truckler", "groveller", "bootlicker", "fawner", "apple polisher"]}, {"answer": "groveller", "hint": "synonyms for groveller", "clues": ["truckler", "groveler", "bootlicker", "fawner", "apple polisher"]}, {"answer": "grover_cleveland", "hint": "synonyms for grover cleveland", "clues": ["Cleveland", "Stephen Grover Cleveland", "President Cleveland", "Grover Cleveland"]}, {"answer": "groves", "hint": "synonyms for groves", "clues": ["orchard", "woodlet", "plantation", "grove", "Leslie Richard Groves"]}, {"answer": "grower", "hint": "synonyms for grower", "clues": ["raiser", "agriculturist", "cultivator", "grower"]}, {"answer": "growth", "hint": "synonyms for growth", "clues": ["ontogenesis", "development", "increase", "growing", "ontogeny", "emergence", "outgrowth", "increment", "maturation", "growth"]}, {"answer": "growth-onset_diabetes", "hint": "synonyms for growth-onset diabetes", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus", "growth-onset diabetes"]}, {"answer": "growth_hormone", "hint": "synonyms for growth hormone", "clues": ["somatotrophin", "somatotropic hormone", "STH", "human growth hormone", "growth hormone"]}, {"answer": "groyne", "hint": "synonyms for groyne", "clues": ["mole", "jetty", "groin", "seawall", "bulwark", "breakwater", "groyne"]}, {"answer": "gruffness", "hint": "synonyms for gruffness", "clues": ["huskiness", "curtness", "shortness", "hoarseness", "brusqueness", "abruptness", "gruffness"]}, {"answer": "grumble", "hint": "synonyms for grumble", "clues": ["muttering", "rumbling", "murmuring", "rumble"]}, {"answer": "grumbler", "hint": "synonyms for grumbler", "clues": ["sniveller", "moaner", "bellyacher", "whiner", "complainer", "crybaby", "squawker", "grumbler"]}, {"answer": "grummet", "hint": "synonyms for grummet", "clues": ["loop", "grommet", "eyelet", "cringle"]}, {"answer": "grump", "hint": "synonyms for grump", "clues": ["churl", "crosspatch", "crank", "grouch", "grump"]}, {"answer": "grundyism", "hint": "synonyms for grundyism", "clues": ["prudery", "prudishness", "primness", "Grundyism"]}, {"answer": "grunge", "hint": "synonyms for grunge", "clues": ["soil", "grime", "grease", "dirt", "stain", "filth", "grunge"]}, {"answer": "gsr", "hint": "synonyms for gsr", "clues": ["electrical skin response", "Tarchanoff phenomenon", "electrodermal response", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response"]}, {"answer": "guangzhou", "hint": "synonyms for guangzhou", "clues": ["Canton", "Kwangchow", "Kuangchou", "Guangzhou"]}, {"answer": "guarantee", "hint": "synonyms for guarantee", "clues": ["warranty", "guaranty", "warrantee", "guarantee"]}, {"answer": "guard", "hint": "synonyms for guard", "clues": ["precaution", "guard duty", "sentry duty", "safety", "safeguard", "safety device", "sentry go", "guard"]}, {"answer": "guardianship", "hint": "synonyms for guardianship", "clues": ["safekeeping", "keeping", "tutelage", "charge", "care", "guardianship"]}, {"answer": "guarneri", "hint": "synonyms for guarneri", "clues": ["Guiseppe Guarneri", "Andrea Guarneri", "Guarnieri", "Guarnerius"]}, {"answer": "guarnerius", "hint": "synonyms for guarnerius", "clues": ["Guiseppe Guarneri", "Andrea Guarneri", "Guarnieri", "Guarnerius"]}, {"answer": "guarnieri", "hint": "synonyms for guarnieri", "clues": ["Guiseppe Guarneri", "Andrea Guarneri", "Guarnieri", "Guarnerius"]}, {"answer": "gubbins", "hint": "synonyms for gubbins", "clues": ["thingumabob", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick", "gubbins"]}, {"answer": "guck", "hint": "synonyms for guck", "clues": ["gunk", "goo", "slime", "ooze", "sludge", "muck", "guck"]}, {"answer": "guess", "hint": "synonyms for guess", "clues": ["shot", "surmise", "guesswork", "dead reckoning", "speculation", "hypothesis", "surmisal", "conjecture", "supposition", "guessing"]}, {"answer": "guessing", "hint": "synonyms for guessing", "clues": ["shot", "dead reckoning", "guesswork", "guess"]}, {"answer": "guesswork", "hint": "synonyms for guesswork", "clues": ["shot", "dead reckoning", "guessing", "guesswork"]}, {"answer": "guest", "hint": "synonyms for guest", "clues": ["Guest", "node", "Edgar Albert Guest", "invitee", "client", "Edgar Guest"]}, {"answer": "guff", "hint": "synonyms for guff", "clues": ["bunk", "buncombe", "hogwash", "bunkum", "rot", "guff"]}, {"answer": "guidance", "hint": "synonyms for guidance", "clues": ["counseling", "steering", "direction", "guidance"]}, {"answer": "guide", "hint": "synonyms for guide", "clues": ["template", "usher", "scout", "pathfinder", "templet", "guidebook", "guide"]}, {"answer": "guiding_light", "hint": "synonyms for guiding light", "clues": ["luminary", "notability", "notable", "leading light", "guiding light"]}, {"answer": "guild", "hint": "synonyms for guild", "clues": ["gild", "club", "society", "order", "social club", "lodge"]}, {"answer": "guile", "hint": "synonyms for guile", "clues": ["foxiness", "wile", "deceitfulness", "slyness", "chicane", "craftiness", "wiliness", "shenanigan", "craft", "trickery", "cunning", "guile"]}, {"answer": "guilt", "hint": "synonyms for guilt", "clues": ["guilt trip", "guilt feelings", "guiltiness", "guilty conscience", "guilt"]}, {"answer": "guinea", "hint": "synonyms for guinea", "clues": ["Republic of Guinea", "dago", "greaseball", "Guinea", "ginzo", "French Guinea", "wop"]}, {"answer": "gull", "hint": "synonyms for gull", "clues": ["soft touch", "fall guy", "mark", "mug", "patsy", "fool", "chump", "sucker", "gull"]}, {"answer": "gulp", "hint": "synonyms for gulp", "clues": ["draught", "draft", "swig", "gulping"]}, {"answer": "gum", "hint": "synonyms for gum", "clues": ["glue", "chewing gum", "gingiva", "mucilage", "gum"]}, {"answer": "gum_accroides", "hint": "synonyms for gum accroides", "clues": ["accroides resin", "accroides gum", "accroides", "gum accroides"]}, {"answer": "gum_benjamin", "hint": "synonyms for gum benjamin", "clues": ["benzoin", "benjamin", "gum benzoin", "asa dulcis", "gum benjamin"]}, {"answer": "gum_benzoin", "hint": "synonyms for gum benzoin", "clues": ["benzoin", "benjamin", "gum benjamin", "asa dulcis", "gum benzoin"]}, {"answer": "gum_elastic", "hint": "synonyms for gum elastic", "clues": ["caoutchouc", "natural rubber", "rubber", "India rubber", "gum elastic"]}, {"answer": "gumminess", "hint": "synonyms for gumminess", "clues": ["viscidness", "tackiness", "cohesiveness", "viscidity", "ropiness", "glueyness", "gluiness", "gumminess"]}, {"answer": "gumption", "hint": "synonyms for gumption", "clues": ["grit", "good sense", "guts", "common sense", "horse sense", "mother wit", "sense", "backbone", "sand", "moxie", "gumption"]}, {"answer": "gumshoe", "hint": "synonyms for gumshoe", "clues": ["rubber", "golosh", "arctic", "hawkshaw", "dick", "galosh", "gumshoe"]}, {"answer": "gun", "hint": "synonyms for gun", "clues": ["hit man", "torpedo", "ordnance", "gun for hire", "throttle", "accelerator", "heavy weapon", "hired gun", "triggerman", "shooter", "accelerator pedal", "grease-gun", "gunslinger", "gas pedal", "artillery", "gunman", "gas", "gun"]}, {"answer": "gun_for_hire", "hint": "synonyms for gun for hire", "clues": ["hit man", "torpedo", "hired gun", "triggerman", "shooter", "gun", "gunslinger", "gunman", "gun for hire"]}, {"answer": "gunk", "hint": "synonyms for gunk", "clues": ["goo", "slime", "ooze", "guck", "sludge", "muck", "gunk"]}, {"answer": "gunman", "hint": "synonyms for gunman", "clues": ["hit man", "torpedo", "gun for hire", "hired gun", "shooter", "gun", "gunslinger", "triggerman", "gunman"]}, {"answer": "gunslinger", "hint": "synonyms for gunslinger", "clues": ["hit man", "torpedo", "gun for hire", "hired gun", "triggerman", "shooter", "gun", "gunman", "gunslinger"]}, {"answer": "gush", "hint": "synonyms for gush", "clues": ["outpouring", "outburst", "blowup", "flush", "effusion", "ebullition", "gush"]}, {"answer": "gustatory_perception", "hint": "synonyms for gustatory perception", "clues": ["taste perception", "gustatory sensation", "taste", "taste sensation", "gustatory perception"]}, {"answer": "gustatory_sensation", "hint": "synonyms for gustatory sensation", "clues": ["taste perception", "gustatory perception", "taste", "taste sensation", "gustatory sensation"]}, {"answer": "guts", "hint": "synonyms for guts", "clues": ["grit", "catgut", "bowel", "intestine", "backbone", "gut", "gumption", "sand", "moxie"]}, {"answer": "guy", "hint": "synonyms for guy", "clues": ["guy cable", "Guy", "bozo", "guy wire", "guy rope", "cat", "hombre"]}, {"answer": "gwynn", "hint": "synonyms for gwynn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "gymnasium", "hint": "synonyms for gymnasium", "clues": ["middle school", "lycee", "lyceum", "secondary school", "gym", "Gymnasium"]}, {"answer": "gynandromorph", "hint": "synonyms for gynandromorph", "clues": ["hermaphrodite", "intersex", "epicene", "epicene person", "androgyne", "gynandromorph"]}, {"answer": "gynne", "hint": "synonyms for gynne", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "gyp", "hint": "synonyms for gyp", "clues": ["bunco game", "confidence trick", "con", "hustle", "flimflam", "bunco", "sting", "bunko", "confidence game", "con game", "gyp"]}, {"answer": "gyps", "hint": "synonyms for gyps", "clues": ["bunco game", "confidence trick", "con", "hustle", "flimflam", "bunco", "gyp", "sting", "bunko", "confidence game", "con game"]}, {"answer": "gypsy", "hint": "synonyms for gypsy", "clues": ["Gypsy", "Gipsy", "Romani", "Roma", "Romany", "itinerant", "Bohemian"]}, {"answer": "gyre", "hint": "synonyms for gyre", "clues": ["whorl", "ringlet", "coil", "curl", "scroll", "roll", "curlicue", "gyre"]}, {"answer": "gywn", "hint": "synonyms for gywn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "h", "hint": "synonyms for h", "clues": ["hydrogen", "Planck's constant", "H", "atomic number 1", "heat content", "total heat", "henry", "enthalpy"]}, {"answer": "h-bomb", "hint": "synonyms for h-bomb", "clues": ["thermonuclear bomb", "fusion bomb", "H-bomb", "hydrogen bomb"]}, {"answer": "h._h._munro", "hint": "synonyms for h. h. munro", "clues": ["Munro", "H. H. Munro", "Saki", "Hector Hugh Munro"]}, {"answer": "h._j._eysenck", "hint": "synonyms for h. j. eysenck", "clues": ["Hans Eysenck", "H. J. Eysenck", "Hans Jurgen Eysenck", "Eysenck"]}, {"answer": "ha-ha", "hint": "synonyms for ha-ha", "clues": ["hee-haw", "sunk fence", "horselaugh", "haw-haw", "ha-ha"]}, {"answer": "haberdashery", "hint": "synonyms for haberdashery", "clues": ["haberdashery store", "mens store", "men's furnishings", "clothing store", "haberdashery"]}, {"answer": "habiliment", "hint": "synonyms for habiliment", "clues": ["wear", "vesture", "clothing", "article of clothing", "wearable", "habiliment"]}, {"answer": "habit", "hint": "synonyms for habit", "clues": ["riding habit", "substance abuse", "wont", "drug abuse", "use", "habit"]}, {"answer": "habitation", "hint": "synonyms for habitation", "clues": ["abode", "home", "dwelling house", "inhabitancy", "domicile", "inhabitation", "dwelling"]}, {"answer": "habituation", "hint": "synonyms for habituation", "clues": ["addiction", "dependency", "dependance", "habituation"]}, {"answer": "hack", "hint": "synonyms for hack", "clues": ["cab", "drudge", "taxicab", "hacker", "ward-heeler", "machine politician", "literary hack", "hack writer", "taxi", "political hack", "hack"]}, {"answer": "hack-driver", "hint": "synonyms for hack-driver", "clues": ["hack driver", "cabby", "cabman", "cabdriver", "livery driver", "taximan", "taxidriver"]}, {"answer": "hack_driver", "hint": "synonyms for hack driver", "clues": ["cabby", "taxidriver", "cabman", "cabdriver", "livery driver", "taximan", "hack-driver"]}, {"answer": "hacker", "hint": "synonyms for hacker", "clues": ["drudge", "hack", "cyberpunk", "cyber-terrorist", "hacker"]}, {"answer": "hadean_aeon", "hint": "synonyms for hadean aeon", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "hadean_eon", "hint": "synonyms for hadean eon", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "hadean_time", "hint": "synonyms for hadean time", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "hades", "hint": "synonyms for hades", "clues": ["Hades", "Hell", "underworld", "Pluto", "netherworld", "Aides", "infernal region", "Scheol", "Aidoneus"]}, {"answer": "haem", "hint": "synonyms for haem", "clues": ["heme", "protoheme", "haemitin", "hematin", "haem"]}, {"answer": "haemitin", "hint": "synonyms for haemitin", "clues": ["heme", "haem", "hematin", "protoheme", "haemitin"]}, {"answer": "hag", "hint": "synonyms for hag", "clues": ["crone", "witch", "beldame", "hag"]}, {"answer": "hahnium", "hint": "synonyms for hahnium", "clues": ["atomic number 105", "element 105", "Db", "dubnium", "hahnium"]}, {"answer": "hair", "hint": "synonyms for hair", "clues": ["pilus", "haircloth", "whisker", "hair's-breadth", "hair"]}, {"answer": "hair_style", "hint": "synonyms for hair style", "clues": ["hairstyle", "coif", "hairdo", "coiffure"]}, {"answer": "hairdo", "hint": "synonyms for hairdo", "clues": ["hair style", "coif", "coiffure", "hairdo"]}, {"answer": "hairdressing", "hint": "synonyms for hairdressing", "clues": ["hair tonic", "hair oil", "hair grease", "hair care", "hairdressing"]}, {"answer": "hairstyle", "hint": "synonyms for hairstyle", "clues": ["hair style", "coif", "hairdo", "coiffure"]}, {"answer": "haiti", "hint": "synonyms for haiti", "clues": ["Hispaniola", "Hayti", "Republic of Haiti", "Haiti"]}, {"answer": "haldane", "hint": "synonyms for haldane", "clues": ["Richard Haldane", "Elizabeth Sanderson Haldane", "John Burdon Sanderson Haldane", "Richard Burdon Haldane", "John Haldane", "First Viscount Haldane of Cloan", "Elizabeth Haldane", "Haldane", "John Scott Haldane", "J. B. S. Haldane"]}, {"answer": "haley", "hint": "synonyms for haley", "clues": ["Alex Haley", "Bill Haley", "Haley", "William John Clifton Haley Jr."]}, {"answer": "half-wit", "hint": "synonyms for half-wit", "clues": ["moron", "nitwit", "doofus", "retard", "idiot", "changeling", "imbecile", "dimwit", "cretin", "half-wit"]}, {"answer": "half_a_dozen", "hint": "synonyms for half a dozen", "clues": ["6", "sixer", "VI", "sise", "hexad", "sextet", "sestet", "sextuplet", "Captain Hicks", "six", "half a dozen"]}, {"answer": "half_boot", "hint": "synonyms for half boot", "clues": ["top boot", "combat boot", "desert boot", "buskin", "half boot"]}, {"answer": "hall", "hint": "synonyms for hall", "clues": ["dorm", "Charles Martin Hall", "lobby", "mansion", "vestibule", "Charles Francis Hall", "G. Stanley Hall", "student residence", "Asaph Hall", "entrance hall", "manor hall", "anteroom", "dormitory", "Radclyffe Hall", "Granville Stanley Hall", "manse", "Hall", "hallway", "antechamber", "Marguerite Radclyffe Hall", "foyer", "mansion house", "residence", "residence hall"]}, {"answer": "hall_porter", "hint": "synonyms for hall porter", "clues": ["gatekeeper", "doorman", "doorkeeper", "porter", "door guard", "ostiary", "hall porter"]}, {"answer": "hallmark", "hint": "synonyms for hallmark", "clues": ["assay-mark", "earmark", "stylemark", "authentication", "trademark", "hallmark"]}, {"answer": "hallowmas", "hint": "synonyms for hallowmas", "clues": ["Hallowmass", "Allhallows", "All Saints' Day", "November 1"]}, {"answer": "hallowmass", "hint": "synonyms for hallowmass", "clues": ["Hallowmass", "Allhallows", "All Saints' Day", "November 1"]}, {"answer": "halo", "hint": "synonyms for halo", "clues": ["glory", "ring", "nimbus", "gloriole", "doughnut", "aureole", "aura", "anchor ring", "annulus", "halo"]}, {"answer": "halter", "hint": "synonyms for halter", "clues": ["hangman's halter", "hemp", "hackamore", "hempen necktie", "hangman's rope", "halter"]}, {"answer": "ham", "hint": "synonyms for ham", "clues": ["gammon", "Ham", "jambon", "ham actor"]}, {"answer": "hamburger_steak", "hint": "synonyms for hamburger steak", "clues": ["chopped steak", "chopsteak", "beef patty", "hamburger steak"]}, {"answer": "hamilton", "hint": "synonyms for hamilton", "clues": ["Lady Emma Hamilton", "William Rowan Hamilton", "Hamilton", "Alice Hamilton", "Alexander Hamilton", "Amy Lyon"]}, {"answer": "hamito-semitic", "hint": "synonyms for hamito-semitic", "clues": ["Afrasian", "Afroasiatic language", "Afro-Asiatic", "Hamito-Semitic"]}, {"answer": "hammer", "hint": "synonyms for hammer", "clues": ["cock", "power hammer", "pound", "hammering", "malleus", "mallet"]}, {"answer": "hammer_nose", "hint": "synonyms for hammer nose", "clues": ["brandy nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "rum nose", "toper's nose", "rhinophyma", "copper nose", "hammer nose"]}, {"answer": "hammerhead", "hint": "synonyms for hammerhead", "clues": ["dumbass", "dunderhead", "fuckhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "hammerhead"]}, {"answer": "hammock", "hint": "synonyms for hammock", "clues": ["knoll", "hillock", "mound", "sack", "hummock"]}, {"answer": "han-gook", "hint": "synonyms for han-gook", "clues": ["Korea", "Korean Peninsula", "Dae-Han-Min-Gook", "Han-Gook"]}, {"answer": "hand", "hint": "synonyms for hand", "clues": ["handwriting", "hired man", "hired hand", "paw", "bridge player", "deal", "manus", "script", "mitt", "helping hand", "hand"]}, {"answer": "hand-to-hand_struggle", "hint": "synonyms for hand-to-hand struggle", "clues": ["grappling", "wrestle", "grapple", "wrestling", "hand-to-hand struggle"]}, {"answer": "hand_organ", "hint": "synonyms for hand organ", "clues": ["grind organ", "barrel organ", "street organ", "hurdy-gurdy", "hand organ"]}, {"answer": "handbasin", "hint": "synonyms for handbasin", "clues": ["lavabo", "wash-hand basin", "washbasin", "washbowl", "handbasin"]}, {"answer": "handbill", "hint": "synonyms for handbill", "clues": ["flyer", "broadsheet", "circular", "bill", "throwaway", "broadside", "flier", "handbill"]}, {"answer": "handicap", "hint": "synonyms for handicap", "clues": ["disablement", "disability", "deterrent", "hinderance", "impediment", "impairment", "balk", "check", "handicap"]}, {"answer": "handrail", "hint": "synonyms for handrail", "clues": ["balusters", "banister", "balustrade", "handrail"]}, {"answer": "hands", "hint": "synonyms for hands", "clues": ["handwriting", "manpower", "hired man", "hired hand", "paw", "work force", "custody", "deal", "bridge player", "hand", "manus", "script", "mitt", "helping hand"]}, {"answer": "hangman's_halter", "hint": "synonyms for hangman's halter", "clues": ["halter", "hempen necktie", "hangman's rope", "hemp", "hangman's halter"]}, {"answer": "hangman's_rope", "hint": "synonyms for hangman's rope", "clues": ["halter", "hangman's halter", "hempen necktie", "hemp", "hangman's rope"]}, {"answer": "hangout", "hint": "synonyms for hangout", "clues": ["haunt", "repair", "stamping ground", "resort", "hangout"]}, {"answer": "hank_williams", "hint": "synonyms for hank williams", "clues": ["Williams", "Hiram King Williams", "Hiram Williams", "Hank Williams"]}, {"answer": "hanky_panky", "hint": "synonyms for hanky panky", "clues": ["skulduggery", "hocus-pocus", "slickness", "jiggery-pokery", "trickery", "hanky panky"]}, {"answer": "hannukah", "hint": "synonyms for hannukah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "hans_eysenck", "hint": "synonyms for hans eysenck", "clues": ["Hans Eysenck", "H. J. Eysenck", "Hans Jurgen Eysenck", "Eysenck"]}, {"answer": "hans_holbein", "hint": "synonyms for hans holbein", "clues": ["Hans Holbein", "Holbein the Elder", "Holbein the Younger", "Holbein"]}, {"answer": "hans_jurgen_eysenck", "hint": "synonyms for hans jurgen eysenck", "clues": ["Hans Eysenck", "H. J. Eysenck", "Hans Jurgen Eysenck", "Eysenck"]}, {"answer": "hanukah", "hint": "synonyms for hanukah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "hanukkah", "hint": "synonyms for hanukkah", "clues": ["Channukkah", "Hanukah", "Feast of the Dedication", "Festival of Lights", "Feast of Lights"]}, {"answer": "harbinger", "hint": "synonyms for harbinger", "clues": ["herald", "forerunner", "predecessor", "precursor", "harbinger"]}, {"answer": "hard_drink", "hint": "synonyms for hard drink", "clues": ["John Barleycorn", "liquor", "booze", "spirits", "hard liquor", "strong drink", "hard drink"]}, {"answer": "hard_liquor", "hint": "synonyms for hard liquor", "clues": ["John Barleycorn", "hard drink", "liquor", "booze", "spirits", "strong drink", "hard liquor"]}, {"answer": "hardening", "hint": "synonyms for hardening", "clues": ["set", "solidification", "solidifying", "curing", "hardening"]}, {"answer": "hardening_of_the_arteries", "hint": "synonyms for hardening of the arteries", "clues": ["arterial sclerosis", "induration of the arteries", "coronary-artery disease", "hardening of the arteries"]}, {"answer": "hardiness", "hint": "synonyms for hardiness", "clues": ["lustiness", "robustness", "daring", "validity", "boldness", "hardihood", "hardiness"]}, {"answer": "harding", "hint": "synonyms for harding", "clues": ["President Harding", "Warren Gamaliel Harding", "Warren Harding", "Harding"]}, {"answer": "hardness", "hint": "synonyms for hardness", "clues": ["severity", "severeness", "stiffness", "rigour", "harshness", "callousness", "insensibility", "inclemency", "rigorousness", "unfeelingness", "callosity", "ruggedness", "hardness"]}, {"answer": "hardship", "hint": "synonyms for hardship", "clues": ["severity", "asperity", "rigour", "grimness", "hard knocks", "rigorousness", "adversity", "severeness", "hardship"]}, {"answer": "hardtack", "hint": "synonyms for hardtack", "clues": ["sea biscuit", "pilot biscuit", "pilot bread", "ship biscuit", "hardtack"]}, {"answer": "harefoot", "hint": "synonyms for harefoot", "clues": ["Harold Harefoot", "Harefoot", "King Harold I", "Harold I"]}, {"answer": "harkat-ul-mujahidin", "hint": "synonyms for harkat-ul-mujahidin", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "harkat_ul-ansar", "hint": "synonyms for harkat ul-ansar", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "harkat_ul-mujahedeen", "hint": "synonyms for harkat ul-mujahedeen", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "harlequinade", "hint": "synonyms for harlequinade", "clues": ["clowning", "frivolity", "japery", "prank", "buffoonery", "harlequinade"]}, {"answer": "harlot", "hint": "synonyms for harlot", "clues": ["working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "tart", "cocotte", "whore", "woman of the street", "cyprian", "harlot"]}, {"answer": "harm", "hint": "synonyms for harm", "clues": ["hurt", "impairment", "injury", "scathe", "damage", "trauma", "harm"]}, {"answer": "harmony", "hint": "synonyms for harmony", "clues": ["concord", "musical harmony", "harmoniousness", "concordance", "harmony"]}, {"answer": "harold_harefoot", "hint": "synonyms for harold harefoot", "clues": ["Harold Harefoot", "Harefoot", "King Harold I", "Harold I"]}, {"answer": "harold_i", "hint": "synonyms for harold i", "clues": ["Harold Harefoot", "Harefoot", "King Harold I", "Harold I"]}, {"answer": "harriman", "hint": "synonyms for harriman", "clues": ["Averell Harriman", "E. H. Harriman", "Edward Henry Harriman", "Harriman", "William Averell Harriman"]}, {"answer": "harris", "hint": "synonyms for harris", "clues": ["James Thomas Harris", "Harris", "Sir Arthur Travers Harris", "Townsend Harris", "Benjamin Harris", "Bomber Harris", "Zellig Sabbatai Harris", "Joel Harris", "Joel Chandler Harris", "Frank Harris", "Zellig Harris"]}, {"answer": "harrison", "hint": "synonyms for harrison", "clues": ["President Harrison", "President William Henry Harrison", "Rex Harrison", "President Benjamin Harrison", "Reginald Carey Harrison", "Benjamin Harrison", "George Harrison", "William Henry Harrison", "Harrison"]}, {"answer": "harry_hotspur", "hint": "synonyms for harry hotspur", "clues": ["Percy", "Sir Henry Percy", "Hotspur", "Harry Hotspur"]}, {"answer": "harshness", "hint": "synonyms for harshness", "clues": ["severity", "stiffness", "rigour", "cruelty", "inclemency", "scratchiness", "abrasiveness", "hardness", "rigorousness", "cruelness", "severeness", "roughness", "harshness"]}, {"answer": "hart", "hint": "synonyms for hart", "clues": ["Hart", "Lorenz Milton Hart", "Lorenz Hart", "Moss Hart"]}, {"answer": "hassle", "hint": "synonyms for hassle", "clues": ["bother", "dogfight", "trouble", "scuffle", "tussle", "rough-and-tumble", "fuss", "hassle"]}, {"answer": "hassock", "hint": "synonyms for hassock", "clues": ["ottoman", "pouf", "pouffe", "puff", "hassock"]}, {"answer": "haste", "hint": "synonyms for haste", "clues": ["precipitation", "hastiness", "rushing", "hurriedness", "hurry", "haste"]}, {"answer": "hastiness", "hint": "synonyms for hastiness", "clues": ["hurry", "precipitation", "hurriedness", "haste", "hastiness"]}, {"answer": "hatchet_job", "hint": "synonyms for hatchet job", "clues": ["defamation", "calumniation", "obloquy", "calumny", "traducement", "hatchet job"]}, {"answer": "hatful", "hint": "synonyms for hatful", "clues": ["great deal", "mint", "peck", "quite a little", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "hatful"]}, {"answer": "haughtiness", "hint": "synonyms for haughtiness", "clues": ["hauteur", "high-handedness", "lordliness", "arrogance", "haughtiness"]}, {"answer": "haunt", "hint": "synonyms for haunt", "clues": ["hangout", "repair", "stamping ground", "resort", "haunt"]}, {"answer": "hauteur", "hint": "synonyms for hauteur", "clues": ["lordliness", "high-handedness", "haughtiness", "arrogance", "hauteur"]}, {"answer": "haven", "hint": "synonyms for haven", "clues": ["harbour", "oasis", "seaport", "haven"]}, {"answer": "haversack", "hint": "synonyms for haversack", "clues": ["backpack", "knapsack", "packsack", "rucksack", "haversack"]}, {"answer": "haw-haw", "hint": "synonyms for haw-haw", "clues": ["ha-ha", "hee-haw", "sunk fence", "horselaugh", "haw-haw"]}, {"answer": "hawaii", "hint": "synonyms for hawaii", "clues": ["Hawaii Island", "Aloha State", "HI", "Hawaii"]}, {"answer": "hawker", "hint": "synonyms for hawker", "clues": ["pitchman", "packman", "falconer", "peddler", "pedlar", "hawker"]}, {"answer": "hawking", "hint": "synonyms for hawking", "clues": ["peddling", "Stephen Hawking", "Hawking", "vending", "vendition", "Stephen William Hawking"]}, {"answer": "hayes", "hint": "synonyms for hayes", "clues": ["Rutherford B. Hayes", "President Hayes", "Helen Hayes", "Hayes", "Rutherford Birchard Hayes"]}, {"answer": "haymaker", "hint": "synonyms for haymaker", "clues": ["hay conditioner", "Sunday punch", "knockout punch", "KO punch", "haymaker"]}, {"answer": "hays", "hint": "synonyms for hays", "clues": ["Hays", "Will Hays", "William Harrison Hays", "Arthur Garfield Hays"]}, {"answer": "hayseed", "hint": "synonyms for hayseed", "clues": ["chawbacon", "yahoo", "yokel", "rube", "bumpkin", "hick", "hayseed"]}, {"answer": "hazard", "hint": "synonyms for hazard", "clues": ["risk", "fortune", "chance", "peril", "jeopardy", "endangerment", "luck", "hazard"]}, {"answer": "haziness", "hint": "synonyms for haziness", "clues": ["vaporousness", "steaminess", "mistiness", "haziness"]}, {"answer": "head", "hint": "synonyms for head", "clues": ["chief", "top dog", "promontory", "head word", "heading", "headspring", "caput", "header", "question", "school principal", "foreland", "point", "forefront", "brain", "drumhead", "read/write head", "principal", "psyche", "headway", "head teacher", "straits", "nous", "oral sex", "mind", "pass", "fountainhead", "headland"]}, {"answer": "head_gate", "hint": "synonyms for head gate", "clues": ["penstock", "water gate", "sluice valve", "floodgate", "sluicegate", "head gate"]}, {"answer": "head_honcho", "hint": "synonyms for head honcho", "clues": ["big deal", "big shot", "big wheel", "big fish", "big enchilada", "big cheese", "big gun", "head honcho"]}, {"answer": "headache", "hint": "synonyms for headache", "clues": ["vexation", "cephalalgia", "worry", "head ache", "concern"]}, {"answer": "header", "hint": "synonyms for header", "clues": ["heading", "lintel", "cope", "coping", "header"]}, {"answer": "heading", "hint": "synonyms for heading", "clues": ["header", "aim", "bearing", "gallery", "head", "drift"]}, {"answer": "headman", "hint": "synonyms for headman", "clues": ["headsman", "chief", "tribal chief", "chieftain"]}, {"answer": "headquarters", "hint": "synonyms for headquarters", "clues": ["central office", "home base", "main office", "HQ", "military headquarters", "home office", "headquarters"]}, {"answer": "headstone", "hint": "synonyms for headstone", "clues": ["key", "tombstone", "gravestone", "keystone", "headstone"]}, {"answer": "health_care_provider", "hint": "synonyms for health care provider", "clues": ["PCP", "caregiver", "health professional", "primary care provider", "health care provider"]}, {"answer": "health_check", "hint": "synonyms for health check", "clues": ["medical checkup", "medical exam", "checkup", "medical", "medical examination", "health check"]}, {"answer": "health_professional", "hint": "synonyms for health professional", "clues": ["PCP", "health care provider", "caregiver", "primary care provider", "health professional"]}, {"answer": "heap", "hint": "synonyms for heap", "clues": ["great deal", "mint", "mound", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "jalopy", "bus", "lot", "raft", "cumulation", "batch", "mess", "slew", "plenty", "sight", "muckle", "agglomerate", "wad", "mickle", "cumulus", "flock", "heap"]}, {"answer": "heart", "hint": "synonyms for heart", "clues": ["marrow", "eye", "inwardness", "affection", "nitty-gritty", "center", "kernel", "nub", "bosom", "affectionateness", "philia", "warmness", "tenderness", "core", "sum", "gist", "mettle", "nerve", "spunk", "essence", "centre", "heart and soul", "meat", "pump", "spirit", "fondness", "warmheartedness", "ticker", "substance", "pith", "middle", "heart"]}, {"answer": "heart_of_dixie", "hint": "synonyms for heart of dixie", "clues": ["AL", "Alabama", "Camellia State", "Heart of Dixie"]}, {"answer": "heartbeat", "hint": "synonyms for heartbeat", "clues": ["flash", "trice", "instant", "wink", "jiffy", "beat", "pulse", "New York minute", "pulsation", "split second", "twinkling", "blink of an eye", "heartbeat"]}, {"answer": "heartiness", "hint": "synonyms for heartiness", "clues": ["vigour", "wholeheartedness", "dynamism", "heartiness"]}, {"answer": "hearts", "hint": "synonyms for hearts", "clues": ["marrow", "eye", "inwardness", "affection", "nitty-gritty", "center", "kernel", "nub", "bosom", "heart", "affectionateness", "philia", "warmness", "Black Maria", "core", "sum", "gist", "mettle", "nerve", "spunk", "essence", "centre", "heart and soul", "meat", "pump", "spirit", "fondness", "warmheartedness", "ticker", "substance", "pith", "middle", "tenderness"]}, {"answer": "heartsease", "hint": "synonyms for heartsease", "clues": ["peacefulness", "repose", "peace", "ataraxis", "serenity", "peace of mind", "heartsease"]}, {"answer": "heat", "hint": "synonyms for heat", "clues": ["warmth", "heating", "heating system", "rut", "heating plant", "high temperature", "estrus", "heat energy", "passion", "hotness"]}, {"answer": "heater", "hint": "synonyms for heater", "clues": ["fastball", "hummer", "warmer", "bullet", "smoke", "heater"]}, {"answer": "heating", "hint": "synonyms for heating", "clues": ["heat", "warming", "heating system", "heating plant"]}, {"answer": "heave", "hint": "synonyms for heave", "clues": ["heaving", "lift", "retch", "raise", "heave"]}, {"answer": "heaven", "hint": "synonyms for heaven", "clues": ["nirvana", "promised land", "Eden", "Shangri-la", "paradise", "Heaven"]}, {"answer": "heavenly_city", "hint": "synonyms for heavenly city", "clues": ["Heavenly City", "Celestial City", "City of God", "Holy City"]}, {"answer": "heavens", "hint": "synonyms for heavens", "clues": ["sphere", "heaven", "promised land", "Eden", "celestial sphere", "firmament", "paradise", "nirvana", "welkin", "empyrean", "vault of heaven", "Shangri-la"]}, {"answer": "heaves", "hint": "synonyms for heaves", "clues": ["heaving", "lift", "retch", "broken wind", "heave", "raise"]}, {"answer": "heaviness", "hint": "synonyms for heaviness", "clues": ["burdensomeness", "onerousness", "oppressiveness", "weightiness", "thickness", "heaviness"]}, {"answer": "heaviside_layer", "hint": "synonyms for heaviside layer", "clues": ["E region", "Kennelly-Heaviside layer", "Heaviside layer", "E layer"]}, {"answer": "heavyweight", "hint": "synonyms for heavyweight", "clues": ["whale", "giant", "colossus", "behemoth", "titan", "hulk", "heavyweight"]}, {"answer": "hebei", "hint": "synonyms for hebei", "clues": ["Hebei", "Hopei", "Hopeh", "Hebei province"]}, {"answer": "hebei_province", "hint": "synonyms for hebei province", "clues": ["Hebei", "Hopei", "Hopeh", "Hebei province"]}, {"answer": "hebrews", "hint": "synonyms for hebrews", "clues": ["Israelites", "Hebrews", "Jew", "Epistle to the Hebrews"]}, {"answer": "hector_hevodidbon", "hint": "synonyms for hector hevodidbon", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "hector_hugh_munro", "hint": "synonyms for hector hugh munro", "clues": ["Munro", "H. H. Munro", "Saki", "Hector Hugh Munro"]}, {"answer": "heedlessness", "hint": "synonyms for heedlessness", "clues": ["inadvertence", "unmindfulness", "rashness", "inattentiveness", "mindlessness", "heedlessness"]}, {"answer": "heel", "hint": "synonyms for heel", "clues": ["cad", "hound", "dog", "blackguard", "bounder", "heel"]}, {"answer": "heft", "hint": "synonyms for heft", "clues": ["massiveness", "ponderosity", "heftiness", "ponderousness", "heft"]}, {"answer": "heftiness", "hint": "synonyms for heftiness", "clues": ["massiveness", "sinew", "brawniness", "heft", "muscle", "ponderosity", "muscularity", "brawn", "ponderousness", "heftiness"]}, {"answer": "height", "hint": "synonyms for height", "clues": ["elevation", "tallness", "meridian", "acme", "stature", "summit", "tiptop", "top", "altitude", "superlative", "pinnacle", "peak", "height"]}, {"answer": "heights", "hint": "synonyms for heights", "clues": ["height", "elevation", "tallness", "high", "meridian", "acme", "stature", "summit", "tiptop", "top", "altitude", "superlative", "pinnacle", "peak"]}, {"answer": "heilong", "hint": "synonyms for heilong", "clues": ["Amur", "Amur River", "Heilong", "Heilong Jiang"]}, {"answer": "heilong_jiang", "hint": "synonyms for heilong jiang", "clues": ["Amur", "Amur River", "Heilong", "Heilong Jiang"]}, {"answer": "heinousness", "hint": "synonyms for heinousness", "clues": ["atrociousness", "atrocity", "barbarousness", "barbarity", "heinousness"]}, {"answer": "heist", "hint": "synonyms for heist", "clues": ["stickup", "rip-off", "armed robbery", "holdup", "heist"]}, {"answer": "helen_newington_wills", "hint": "synonyms for helen newington wills", "clues": ["Helen Wills", "Helen Wills Moody", "Helen Newington Wills", "Moody"]}, {"answer": "helen_wills", "hint": "synonyms for helen wills", "clues": ["Helen Wills", "Helen Wills Moody", "Helen Newington Wills", "Moody"]}, {"answer": "helen_wills_moody", "hint": "synonyms for helen wills moody", "clues": ["Helen Wills", "Helen Wills Moody", "Helen Newington Wills", "Moody"]}, {"answer": "helix", "hint": "synonyms for helix", "clues": ["whorl", "coil", "volute", "spiral", "helix"]}, {"answer": "hell", "hint": "synonyms for hell", "clues": ["perdition", "Hades", "sin", "snake pit", "Hell", "blaze", "underworld", "the pits", "pit", "Inferno", "infernal region", "netherworld", "hellhole", "hell on earth", "nether region", "Scheol"]}, {"answer": "hell_dust", "hint": "synonyms for hell dust", "clues": ["scag", "big H", "nose drops", "smack", "thunder", "skag", "hell dust"]}, {"answer": "hell_on_earth", "hint": "synonyms for hell on earth", "clues": ["snake pit", "hellhole", "hell", "inferno", "the pits", "hell on earth"]}, {"answer": "heller", "hint": "synonyms for heller", "clues": ["Heller", "hellion", "haler", "Joseph Heller", "devil"]}, {"answer": "hellhole", "hint": "synonyms for hellhole", "clues": ["snake pit", "hell", "hell on earth", "inferno", "the pits", "hellhole"]}, {"answer": "hello", "hint": "synonyms for hello", "clues": ["how-do-you-do", "howdy", "hullo", "hi", "hello"]}, {"answer": "help", "hint": "synonyms for help", "clues": ["aid", "assist", "service", "supporter", "assistant", "helper", "avail", "assistance", "help"]}, {"answer": "helper", "hint": "synonyms for helper", "clues": ["assistant", "help", "supporter", "benefactor", "helper"]}, {"answer": "helsingfors", "hint": "synonyms for helsingfors", "clues": ["capital of Finland", "Helsingfors", "Helsinki", "Finnish capital"]}, {"answer": "helsinki", "hint": "synonyms for helsinki", "clues": ["capital of Finland", "Helsingfors", "Helsinki", "Finnish capital"]}, {"answer": "hematin", "hint": "synonyms for hematin", "clues": ["heme", "haem", "haemitin", "protoheme", "hematin"]}, {"answer": "heme", "hint": "synonyms for heme", "clues": ["protoheme", "haem", "haemitin", "hematin", "heme"]}, {"answer": "hemofil", "hint": "synonyms for hemofil", "clues": ["antihemophilic factor", "Hemofil", "factor VIII", "antihemophilic globulin"]}, {"answer": "hemp", "hint": "synonyms for hemp", "clues": ["halter", "hangman's halter", "hangman's rope", "hempen necktie", "hemp"]}, {"answer": "hempen_necktie", "hint": "synonyms for hempen necktie", "clues": ["halter", "hangman's halter", "hangman's rope", "hemp", "hempen necktie"]}, {"answer": "henry", "hint": "synonyms for henry", "clues": ["Joseph Henry", "H", "Henry", "Patrick Henry", "William Henry"]}, {"answer": "henry_iv", "hint": "synonyms for henry iv", "clues": ["Bolingbroke", "Henry of Navarre", "Henry Bolingbroke", "Henry the Great", "Henry IV"]}, {"answer": "henry_m._stanley", "hint": "synonyms for henry m. stanley", "clues": ["John Rowlands", "Sir Henry Morton Stanley", "Stanley", "Henry M. Stanley"]}, {"answer": "hepatoflavin", "hint": "synonyms for hepatoflavin", "clues": ["lactoflavin", "ovoflavin", "vitamin B2", "vitamin G", "riboflavin", "hepatoflavin"]}, {"answer": "heptad", "hint": "synonyms for heptad", "clues": ["VII", "septenary", "sevener", "seven", "septet", "7", "heptad"]}, {"answer": "herald", "hint": "synonyms for herald", "clues": ["predecessor", "forerunner", "harbinger", "trumpeter", "precursor", "herald"]}, {"answer": "herb_simon", "hint": "synonyms for herb simon", "clues": ["Herbert Alexander Simon", "Herb Simon", "Herbert A. Simon", "Simon"]}, {"answer": "herbert_a._simon", "hint": "synonyms for herbert a. simon", "clues": ["Herbert Alexander Simon", "Herb Simon", "Herbert A. Simon", "Simon"]}, {"answer": "herbert_alexander_simon", "hint": "synonyms for herbert alexander simon", "clues": ["Herbert Alexander Simon", "Herb Simon", "Herbert A. Simon", "Simon"]}, {"answer": "herbert_clark_hoover", "hint": "synonyms for herbert clark hoover", "clues": ["Hoover", "Herbert Clark Hoover", "Herbert Hoover", "President Hoover"]}, {"answer": "herbert_hoover", "hint": "synonyms for herbert hoover", "clues": ["Hoover", "Herbert Clark Hoover", "Herbert Hoover", "President Hoover"]}, {"answer": "herbert_kitchener", "hint": "synonyms for herbert kitchener", "clues": ["Horatio Herbert Kitchener", "First Earl Kitchener of Khartoum", "Kitchener", "Herbert Kitchener"]}, {"answer": "herder", "hint": "synonyms for herder", "clues": ["Johann Gottfried von Herder", "herdsman", "drover", "Herder"]}, {"answer": "hereditary_condition", "hint": "synonyms for hereditary condition", "clues": ["hereditary disease", "genetic defect", "inherited disorder", "inherited disease", "genetic disease", "genetic abnormality", "genetic disorder", "congenital disease", "hereditary condition"]}, {"answer": "hereditary_disease", "hint": "synonyms for hereditary disease", "clues": ["genetic defect", "inherited disorder", "inherited disease", "genetic disease", "genetic abnormality", "hereditary condition", "genetic disorder", "congenital disease", "hereditary disease"]}, {"answer": "hermann_maurice_saxe", "hint": "synonyms for hermann maurice saxe", "clues": ["Saxe", "comte de Saxe", "Hermann Maurice Saxe", "Marshal Saxe"]}, {"answer": "hermit", "hint": "synonyms for hermit", "clues": ["solitudinarian", "troglodyte", "anchorite", "recluse", "solitary", "hermit"]}, {"answer": "hero", "hint": "synonyms for hero", "clues": ["Heron", "champion", "submarine", "Hero of Alexandria", "bomber", "Cuban sandwich", "grinder", "wedge", "submarine sandwich", "paladin", "Italian sandwich", "torpedo", "poor boy", "fighter", "zep", "hoagy", "sub", "hoagie", "hero sandwich"]}, {"answer": "hero_sandwich", "hint": "synonyms for hero sandwich", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich"]}, {"answer": "heroism", "hint": "synonyms for heroism", "clues": ["valor", "valiance", "gallantry", "valorousness", "heroism"]}, {"answer": "herschel", "hint": "synonyms for herschel", "clues": ["Sir Frederick William Herschel", "Sir John Herschel", "Sir William Herschel", "Herschel"]}, {"answer": "hertz", "hint": "synonyms for hertz", "clues": ["Hz", "Hertz", "cps", "cycle", "Gustav Ludwig Hertz", "Heinrich Hertz", "Gustav Hertz", "cycle per second", "cycles/second", "Heinrich Rudolph Hertz"]}, {"answer": "hesitancy", "hint": "synonyms for hesitancy", "clues": ["indisposition", "hesitation", "reluctance", "disinclination", "hesitance"]}, {"answer": "hesitation", "hint": "synonyms for hesitation", "clues": ["vacillation", "reluctance", "falter", "hesitancy", "disinclination", "waver", "indisposition", "hesitation"]}, {"answer": "hess", "hint": "synonyms for hess", "clues": ["Victor Hess", "Walter Rudolf Hess", "Victor Franz Hess", "Rudolf Hess", "Dame Myra Hess", "Walter Hess", "Walther Richard Rudolf Hess", "Hess"]}, {"answer": "hessian", "hint": "synonyms for hessian", "clues": ["Hessian boot", "Wellington boot", "Wellington", "jackboot", "hessian"]}, {"answer": "hessian_boot", "hint": "synonyms for hessian boot", "clues": ["Hessian boot", "Wellington boot", "hessian", "Wellington", "jackboot"]}, {"answer": "hexad", "hint": "synonyms for hexad", "clues": ["6", "sixer", "VI", "sise", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six", "hexad"]}, {"answer": "hexadrol", "hint": "synonyms for hexadrol", "clues": ["dexamethasone", "Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol"]}, {"answer": "heyday", "hint": "synonyms for heyday", "clues": ["flower", "efflorescence", "blossom", "prime", "bloom", "peak", "flush", "heyday"]}, {"answer": "hezbollah", "hint": "synonyms for hezbollah", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "hf", "hint": "synonyms for hf", "clues": ["hafnium", "HF", "high frequency", "atomic number 72"]}, {"answer": "hg", "hint": "synonyms for hg", "clues": ["hydrargyrum", "Hg", "hectogram", "atomic number 80", "mercury", "quicksilver"]}, {"answer": "hi", "hint": "synonyms for hi", "clues": ["HI", "howdy", "hello", "Hawai'i", "how-do-you-do", "Aloha State", "hullo"]}, {"answer": "hiatus", "hint": "synonyms for hiatus", "clues": ["reprieve", "foramen", "respite", "abatement", "suspension", "hiatus"]}, {"answer": "hidrosis", "hint": "synonyms for hidrosis", "clues": ["sweating", "diaphoresis", "perspiration", "sudation", "hidrosis"]}, {"answer": "hierarch", "hint": "synonyms for hierarch", "clues": ["primate", "archpriest", "prelate", "high priest", "hierarch"]}, {"answer": "hieronymus", "hint": "synonyms for hieronymus", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "high-handedness", "hint": "synonyms for high-handedness", "clues": ["hauteur", "lordliness", "haughtiness", "arrogance", "high-handedness"]}, {"answer": "high-up", "hint": "synonyms for high-up", "clues": ["very important person", "VIP", "dignitary", "high muckamuck", "panjandrum", "high-up"]}, {"answer": "high_hat", "hint": "synonyms for high hat", "clues": ["top hat", "beaver", "topper", "dress hat", "high-hat cymbal", "silk hat", "opera hat", "stovepipe", "high hat"]}, {"answer": "high_life", "hint": "synonyms for high life", "clues": ["prodigality", "lavishness", "highlife", "extravagance"]}, {"answer": "high_muckamuck", "hint": "synonyms for high muckamuck", "clues": ["high-up", "very important person", "VIP", "dignitary", "panjandrum", "high muckamuck"]}, {"answer": "high_noon", "hint": "synonyms for high noon", "clues": ["midday", "noonday", "noontide", "twelve noon", "noon", "high noon"]}, {"answer": "high_priest", "hint": "synonyms for high priest", "clues": ["primate", "archpriest", "prelate", "hierarch", "high priest"]}, {"answer": "high_school", "hint": "synonyms for high school", "clues": ["senior high school", "high", "senior high", "highschool"]}, {"answer": "high_society", "hint": "synonyms for high society", "clues": ["beau monde", "society", "bon ton", "smart set", "high society"]}, {"answer": "highlife", "hint": "synonyms for highlife", "clues": ["prodigality", "lavishness", "extravagance", "high life"]}, {"answer": "highschool", "hint": "synonyms for highschool", "clues": ["senior high school", "high", "senior high", "high school"]}, {"answer": "hike", "hint": "synonyms for hike", "clues": ["hiking", "raise", "salary increase", "tramp", "wage increase", "cost increase", "boost", "wage hike", "hike"]}, {"answer": "hilarity", "hint": "synonyms for hilarity", "clues": ["glee", "gleefulness", "mirth", "mirthfulness", "hilarity"]}, {"answer": "hill", "hint": "synonyms for hill", "clues": ["pitcher's mound", "mound", "J. J. Hill", "Benny Hill", "James Jerome Hill", "Alfred Hawthorne", "Hill"]}, {"answer": "hillock", "hint": "synonyms for hillock", "clues": ["knoll", "hammock", "mound", "hillock"]}, {"answer": "hind_end", "hint": "synonyms for hind end", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "tooshie", "arse", "behind", "nates", "can", "hind end"]}, {"answer": "hinderance", "hint": "synonyms for hinderance", "clues": ["hitch", "deterrent", "preventative", "impediment", "interference", "incumbrance", "hindrance", "handicap", "balk", "check"]}, {"answer": "hindquarters", "hint": "synonyms for hindquarters", "clues": ["fundament", "rear end", "tush", "buns", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "hindquarter", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can"]}, {"answer": "hindrance", "hint": "synonyms for hindrance", "clues": ["hitch", "deterrent", "preventative", "impediment", "hinderance", "interference", "incumbrance", "handicap", "balk", "check"]}, {"answer": "hint", "hint": "synonyms for hint", "clues": ["mite", "confidential information", "suggestion", "pinch", "wind", "speck", "tip", "touch", "steer", "trace", "breath", "lead", "intimation", "tinge", "clue", "jot", "soupcon", "hint"]}, {"answer": "hippies", "hint": "synonyms for hippies", "clues": ["hipsters", "flower people", "flower child", "hippy", "hippie"]}, {"answer": "hipsters", "hint": "synonyms for hipsters", "clues": ["flower child", "hipster", "hippy", "flower people", "hippies"]}, {"answer": "hiram_king_williams", "hint": "synonyms for hiram king williams", "clues": ["Williams", "Hiram King Williams", "Hiram Williams", "Hank Williams"]}, {"answer": "hiram_ulysses_grant", "hint": "synonyms for hiram ulysses grant", "clues": ["Grant", "Hiram Ulysses Grant", "Ulysses Grant", "President Grant", "Ulysses Simpson Grant"]}, {"answer": "hiram_williams", "hint": "synonyms for hiram williams", "clues": ["Williams", "Hiram King Williams", "Hiram Williams", "Hank Williams"]}, {"answer": "hire_car", "hint": "synonyms for hire car", "clues": ["self-drive", "you-drive", "car rental", "rent-a-car", "hire car"]}, {"answer": "hired_gun", "hint": "synonyms for hired gun", "clues": ["hit man", "torpedo", "gun for hire", "triggerman", "shooter", "gun", "gunslinger", "gunman", "hired gun"]}, {"answer": "hiss", "hint": "synonyms for hiss", "clues": ["sibilation", "bird", "hissing", "boo", "fizzle", "hoot", "razz", "raspberry", "Bronx cheer", "hushing", "snort"]}, {"answer": "hissing", "hint": "synonyms for hissing", "clues": ["fizzle", "sibilation", "hushing", "hiss"]}, {"answer": "histrion", "hint": "synonyms for histrion", "clues": ["role player", "thespian", "player", "actor", "histrion"]}, {"answer": "hit", "hint": "synonyms for hit", "clues": ["strike", "bang", "smasher", "hitting", "striking", "collision", "smash", "hit"]}, {"answer": "hit_man", "hint": "synonyms for hit man", "clues": ["torpedo", "gun for hire", "hired gun", "triggerman", "shooter", "gun", "gunslinger", "gunman", "hitman"]}, {"answer": "hitch", "hint": "synonyms for hitch", "clues": ["tour", "halt", "snag", "rub", "hinderance", "term of enlistment", "hang-up", "incumbrance", "stoppage", "hobble", "preventive", "limp", "enlistment", "tour of duty", "interference", "stop", "stay", "arrest", "duty tour", "check", "hitch"]}, {"answer": "hitman", "hint": "synonyms for hitman", "clues": ["hit man", "torpedo", "gun for hire", "hired gun", "triggerman", "shooter", "gun", "gunslinger", "gunman"]}, {"answer": "hitter", "hint": "synonyms for hitter", "clues": ["slugger", "batsman", "batter", "striker", "hitter"]}, {"answer": "hives", "hint": "synonyms for hives", "clues": ["beehive", "urtication", "urticaria", "nettle rash", "hive"]}, {"answer": "hizballah", "hint": "synonyms for hizballah", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "hizbollah", "hint": "synonyms for hizbollah", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "hizbullah", "hint": "synonyms for hizbullah", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "hn", "hint": "synonyms for hn", "clues": ["hydrazoic acid", "HN", "azoimide", "hydrogen azide"]}, {"answer": "hoagie", "hint": "synonyms for hoagie", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "sub", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "hoagie"]}, {"answer": "hoagy", "hint": "synonyms for hoagy", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "hoagy"]}, {"answer": "hoax", "hint": "synonyms for hoax", "clues": ["fraudulence", "put-on", "humbug", "dupery", "fraud", "hoax"]}, {"answer": "hoaxer", "hint": "synonyms for hoaxer", "clues": ["practical joker", "tricker", "prankster", "cut-up", "hoaxer"]}, {"answer": "hob", "hint": "synonyms for hob", "clues": ["pixy", "goblin", "gremlin", "hobgoblin", "elf", "pixie", "imp", "brownie", "hob"]}, {"answer": "hobby", "hint": "synonyms for hobby", "clues": ["rocking horse", "spare-time activity", "pursuit", "avocation", "by-line", "hobbyhorse", "sideline", "hobby"]}, {"answer": "hocus-pocus", "hint": "synonyms for hocus-pocus", "clues": ["skulduggery", "slickness", "hanky panky", "jiggery-pokery", "trickery", "hocus-pocus"]}, {"answer": "hodgepodge", "hint": "synonyms for hodgepodge", "clues": ["melange", "odds and ends", "gallimaufry", "oddments", "farrago", "hotchpotch", "patchwork", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "jumble", "hodgepodge"]}, {"answer": "hodgkin", "hint": "synonyms for hodgkin", "clues": ["Alan Hodgkin", "Alan Lloyd Hodgkin", "Hodgkin", "Thomas Hodgkin", "Dorothy Hodgkin", "Dorothy Mary Crowfoot Hodgkin"]}, {"answer": "hoffmann", "hint": "synonyms for hoffmann", "clues": ["Hoffmann", "Ernst Theodor Wilhelm Hoffmann", "E. T. A. Hoffmann", "Josef Hoffmann", "Roald Hoffmann", "August Wilhelm von Hoffmann", "Ernst Theodor Amadeus Hoffmann"]}, {"answer": "hogwash", "hint": "synonyms for hogwash", "clues": ["bunk", "buncombe", "guff", "bunkum", "rot", "hogwash"]}, {"answer": "hoi_polloi", "hint": "synonyms for hoi polloi", "clues": ["the great unwashed", "masses", "multitude", "people", "hoi polloi"]}, {"answer": "hokkianese", "hint": "synonyms for hokkianese", "clues": ["Amoy", "Hokkianese", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min"]}, {"answer": "hokum", "hint": "synonyms for hokum", "clues": ["bunk", "nonsense", "meaninglessness", "nonsensicality", "hokum"]}, {"answer": "holbein", "hint": "synonyms for holbein", "clues": ["Hans Holbein", "Holbein the Elder", "Holbein the Younger", "Holbein"]}, {"answer": "hold", "hint": "synonyms for hold", "clues": ["cargo deck", "clutch", "clasp", "custody", "keep", "time lag", "appreciation", "delay", "cargo area", "handgrip", "postponement", "detainment", "wait", "detention", "handle", "cargo hold", "grasp", "storage area", "grip", "clench", "hold"]}, {"answer": "holding", "hint": "synonyms for holding", "clues": ["belongings", "keeping", "property", "retention", "holding"]}, {"answer": "holdup", "hint": "synonyms for holdup", "clues": ["heist", "armed robbery", "delay", "stickup", "holdup"]}, {"answer": "hole", "hint": "synonyms for hole", "clues": ["golf hole", "hollow", "muddle", "cakehole", "kettle of fish", "mess", "yap", "pickle", "jam", "fix", "maw", "gob", "trap", "hole"]}, {"answer": "holla", "hint": "synonyms for holla", "clues": ["hollo", "yowl", "bellow", "roaring", "hollering", "holla"]}, {"answer": "holland", "hint": "synonyms for holland", "clues": ["The Netherlands", "Holland", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "hollands", "hint": "synonyms for hollands", "clues": ["The Netherlands", "geneva", "Holland", "Holland gin", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "holler", "hint": "synonyms for holler", "clues": ["hollo", "yowl", "bellow", "roaring", "hollering", "holla"]}, {"answer": "hollering", "hint": "synonyms for hollering", "clues": ["hollo", "yowl", "bellow", "roaring", "holla", "holler"]}, {"answer": "hollo", "hint": "synonyms for hollo", "clues": ["yowl", "bellow", "holloa", "roaring", "hollering"]}, {"answer": "holloa", "hint": "synonyms for holloa", "clues": ["hollo", "yowl", "bellow", "roaring", "hollering", "holla"]}, {"answer": "holmes", "hint": "synonyms for holmes", "clues": ["Sherlock Holmes", "Holmes", "Arthur Holmes", "Oliver Wendell Holmes"]}, {"answer": "holocene", "hint": "synonyms for holocene", "clues": ["Holocene epoch", "Recent", "Recent epoch", "Holocene"]}, {"answer": "holocene_epoch", "hint": "synonyms for holocene epoch", "clues": ["Holocene epoch", "Recent", "Recent epoch", "Holocene"]}, {"answer": "holy_city", "hint": "synonyms for holy city", "clues": ["Heavenly City", "Celestial City", "City of God", "Holy City"]}, {"answer": "holy_communion", "hint": "synonyms for holy communion", "clues": ["Communion", "Holy Communion", "sacramental manduction", "manduction"]}, {"answer": "holy_eucharist", "hint": "synonyms for holy eucharist", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "holy_father", "hint": "synonyms for holy father", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "holy_joe", "hint": "synonyms for holy joe", "clues": ["padre", "military chaplain", "sky pilot", "Holy Joe"]}, {"answer": "holy_land", "hint": "synonyms for holy land", "clues": ["Promised Land", "Holy Land", "Canaan", "Palestine"]}, {"answer": "holy_sacrament", "hint": "synonyms for holy sacrament", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "holy_scripture", "hint": "synonyms for holy scripture", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "holy_trinity", "hint": "synonyms for holy trinity", "clues": ["Trinity", "Blessed Trinity", "Sacred Trinity", "Holy Trinity"]}, {"answer": "holy_writ", "hint": "synonyms for holy writ", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "homburg", "hint": "synonyms for homburg", "clues": ["Stetson", "felt hat", "trilby", "fedora", "homburg"]}, {"answer": "home_base", "hint": "synonyms for home base", "clues": ["plate", "central office", "headquarters", "home", "main office", "home plate", "home office", "home base"]}, {"answer": "home_office", "hint": "synonyms for home office", "clues": ["central office", "headquarters", "home base", "main office", "Home Office"]}, {"answer": "home_run", "hint": "synonyms for home run", "clues": ["mark", "bell ringer", "bull's eye", "homer", "home run"]}, {"answer": "homeland", "hint": "synonyms for homeland", "clues": ["country of origin", "motherland", "native land", "fatherland", "mother country", "homeland"]}, {"answer": "homer", "hint": "synonyms for homer", "clues": ["kor", "Homer", "Winslow Homer", "home run"]}, {"answer": "homoeroticism", "hint": "synonyms for homoeroticism", "clues": ["homosexuality", "queerness", "homosexualism", "gayness", "homoeroticism"]}, {"answer": "homosexualism", "hint": "synonyms for homosexualism", "clues": ["homosexuality", "queerness", "homoeroticism", "gayness", "homosexualism"]}, {"answer": "homosexuality", "hint": "synonyms for homosexuality", "clues": ["queerness", "homoeroticism", "homosexualism", "gayness", "homosexuality"]}, {"answer": "honcho", "hint": "synonyms for honcho", "clues": ["chief", "boss", "foreman", "gaffer", "honcho"]}, {"answer": "honey_oil", "hint": "synonyms for honey oil", "clues": ["cat valium", "green", "super C", "jet", "special K", "super acid", "K", "honey oil"]}, {"answer": "honker", "hint": "synonyms for honker", "clues": ["schnozzle", "snout", "snoot", "hooter", "beak", "schnoz", "nozzle", "honker"]}, {"answer": "honor", "hint": "synonyms for honor", "clues": ["award", "honour", "pureness", "laurels", "accolade", "purity"]}, {"answer": "honour", "hint": "synonyms for honour", "clues": ["award", "laurels", "pureness", "honor", "accolade", "purity"]}, {"answer": "honours", "hint": "synonyms for honours", "clues": ["honour", "pureness", "laurels", "accolade", "purity", "award", "honours degree"]}, {"answer": "hoo-ha", "hint": "synonyms for hoo-ha", "clues": ["hurly burly", "commotion", "kerfuffle", "disturbance", "flutter", "to-do", "disruption", "hoo-hah"]}, {"answer": "hoo-hah", "hint": "synonyms for hoo-hah", "clues": ["hurly burly", "commotion", "kerfuffle", "disturbance", "flutter", "to-do", "hoo-ha", "disruption"]}, {"answer": "hood", "hint": "synonyms for hood", "clues": ["exhaust hood", "lens hood", "cowling", "punk", "thug", "strong-armer", "bonnet", "tough", "toughie", "cap", "goon", "hoodlum", "hood"]}, {"answer": "hoodlum", "hint": "synonyms for hoodlum", "clues": ["toughie", "punk", "thug", "goon", "tough", "strong-armer", "hood", "hoodlum"]}, {"answer": "hoodoo", "hint": "synonyms for hoodoo", "clues": ["voodoo", "fetich", "juju", "fetish", "hoodoo"]}, {"answer": "hook", "hint": "synonyms for hook", "clues": ["claw", "hook shot", "bait", "come-on", "sweetener", "draw", "lure", "hooking", "crotchet"]}, {"answer": "hookah", "hint": "synonyms for hookah", "clues": ["nargileh", "calean", "kalian", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe", "hookah"]}, {"answer": "hooker", "hint": "synonyms for hooker", "clues": ["hustler", "Joseph Hooker", "Fighting Joe Hooker", "Richard Hooker", "streetwalker", "slattern", "street girl", "floozie", "Hooker", "floozy"]}, {"answer": "hooks", "hint": "synonyms for hooks", "clues": ["claw", "maulers", "lure", "hook shot", "bait", "come-on", "sweetener", "draw", "hook", "meat hooks", "crotchet"]}, {"answer": "hooligan", "hint": "synonyms for hooligan", "clues": ["yob", "rowdy", "bully", "ruffian", "roughneck", "tough", "yobbo", "hooligan"]}, {"answer": "hoop", "hint": "synonyms for hoop", "clues": ["wicket", "basketball hoop", "basket", "ring", "hoop"]}, {"answer": "hoops", "hint": "synonyms for hoops", "clues": ["basketball hoop", "basket", "hoop", "basketball game", "ring", "wicket", "basketball"]}, {"answer": "hoot", "hint": "synonyms for hoot", "clues": ["bird", "snort", "shucks", "darn", "boo", "damn", "red cent", "raspberry", "Bronx cheer", "razzing", "shit", "tinker's damn", "hiss", "hoot"]}, {"answer": "hooter", "hint": "synonyms for hooter", "clues": ["snoot", "beak", "schnoz", "motor horn", "schnozzle", "snout", "automobile horn", "horn", "honker", "car horn", "nozzle", "hooter"]}, {"answer": "hoover", "hint": "synonyms for hoover", "clues": ["Hoover", "William Hoover", "William Henry Hoover", "John Edgar Hoover", "Herbert Clark Hoover", "Herbert Hoover", "President Hoover"]}, {"answer": "hope", "hint": "synonyms for hope", "clues": ["Leslie Townes Hope", "promise", "Hope", "Bob Hope"]}, {"answer": "hopeh", "hint": "synonyms for hopeh", "clues": ["Hebei", "Hopei", "Hopeh", "Hebei province"]}, {"answer": "hopei", "hint": "synonyms for hopei", "clues": ["Hebei", "Hopei", "Hopeh", "Hebei province"]}, {"answer": "hopkins", "hint": "synonyms for hopkins", "clues": ["Gerard Manley Hopkins", "Johns Hopkins", "Sir Anthony Hopkins", "Sir Frederick Gowland Hopkins", "Hopkins", "Sir Anthony Philip Hopkins", "Mark Hopkins"]}, {"answer": "hopper", "hint": "synonyms for hopper", "clues": ["groundball", "hop-picker", "grounder", "hopper"]}, {"answer": "horace_walpole", "hint": "synonyms for horace walpole", "clues": ["Walpole", "Horace Walpole", "Horatio Walpole", "Fourth Earl of Orford"]}, {"answer": "horatio_herbert_kitchener", "hint": "synonyms for horatio herbert kitchener", "clues": ["Horatio Herbert Kitchener", "First Earl Kitchener of Khartoum", "Kitchener", "Herbert Kitchener"]}, {"answer": "horatio_nelson", "hint": "synonyms for horatio nelson", "clues": ["Viscount Nelson", "Admiral Nelson", "Lord Nelson", "Horatio Nelson", "Nelson"]}, {"answer": "horatio_walpole", "hint": "synonyms for horatio walpole", "clues": ["Walpole", "Horace Walpole", "Horatio Walpole", "Fourth Earl of Orford"]}, {"answer": "horde", "hint": "synonyms for horde", "clues": ["swarm", "host", "drove", "legion", "horde"]}, {"answer": "horizon", "hint": "synonyms for horizon", "clues": ["view", "sensible horizon", "skyline", "celestial horizon", "purview", "apparent horizon", "visible horizon", "horizon"]}, {"answer": "horn", "hint": "synonyms for horn", "clues": ["trumpet", "motor horn", "cornet", "automobile horn", "trump", "French horn", "hooter", "car horn", "saddle horn", "horn"]}, {"answer": "horne", "hint": "synonyms for horne", "clues": ["Marilyn Horne", "Lena Horne", "Lena Calhoun Horne", "Horne"]}, {"answer": "horripilation", "hint": "synonyms for horripilation", "clues": ["goose skin", "pilomotor reflex", "goosebump", "goose pimple", "gooseflesh", "horripilation"]}, {"answer": "horse", "hint": "synonyms for horse", "clues": ["gymnastic horse", "buck", "knight", "cavalry", "horse cavalry", "sawhorse", "sawbuck", "horse"]}, {"answer": "horse_sense", "hint": "synonyms for horse sense", "clues": ["sense", "mother wit", "good sense", "gumption", "common sense", "horse sense"]}, {"answer": "horseshit", "hint": "synonyms for horseshit", "clues": ["crap", "bull", "dogshit", "shit", "bullshit", "Irish bull", "horseshit"]}, {"answer": "host", "hint": "synonyms for host", "clues": ["master of ceremonies", "innkeeper", "server", "Host", "emcee", "legion", "horde", "boniface"]}, {"answer": "hostel", "hint": "synonyms for hostel", "clues": ["youth hostel", "student lodging", "inn", "auberge", "hostelry", "lodge"]}, {"answer": "hosteller", "hint": "synonyms for hosteller", "clues": ["hotelier", "hotel manager", "hotelman", "hotelkeeper", "hosteller"]}, {"answer": "hostelry", "hint": "synonyms for hostelry", "clues": ["hostel", "inn", "auberge", "lodge"]}, {"answer": "hostilities", "hint": "synonyms for hostilities", "clues": ["aggression", "hostility", "enmity", "ill will", "belligerency", "antagonism", "hostilities"]}, {"answer": "hostility", "hint": "synonyms for hostility", "clues": ["aggression", "enmity", "ill will", "antagonism", "hostility"]}, {"answer": "hostler", "hint": "synonyms for hostler", "clues": ["groom", "ostler", "stableman", "stableboy"]}, {"answer": "hot_air", "hint": "synonyms for hot air", "clues": ["empty words", "palaver", "rhetoric", "empty talk", "hot air"]}, {"answer": "hot_cake", "hint": "synonyms for hot cake", "clues": ["griddlecake", "flapjack", "flannel cake", "battercake", "flapcake", "hotcake", "pancake"]}, {"answer": "hot_dog", "hint": "synonyms for hot dog", "clues": ["hotdog", "wienerwurst", "frankfurter", "frank", "dog", "weenie", "wiener", "red hot"]}, {"answer": "hotcake", "hint": "synonyms for hotcake", "clues": ["hot cake", "griddlecake", "flapjack", "flannel cake", "battercake", "flapcake", "pancake"]}, {"answer": "hotchpotch", "hint": "synonyms for hotchpotch", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "hotchpotch"]}, {"answer": "hotdog", "hint": "synonyms for hotdog", "clues": ["wienerwurst", "hot dog", "frankfurter", "frank", "dog", "weenie", "wiener", "red hot"]}, {"answer": "hotel_manager", "hint": "synonyms for hotel manager", "clues": ["hotelier", "hotelman", "hosteller", "hotelkeeper", "hotel manager"]}, {"answer": "hotelier", "hint": "synonyms for hotelier", "clues": ["hotelkeeper", "hotel manager", "hosteller", "hotelman", "hotelier"]}, {"answer": "hotelkeeper", "hint": "synonyms for hotelkeeper", "clues": ["hotelier", "hotel manager", "hosteller", "hotelman", "hotelkeeper"]}, {"answer": "hotelman", "hint": "synonyms for hotelman", "clues": ["hotelier", "hotel manager", "hosteller", "hotelkeeper", "hotelman"]}, {"answer": "hothead", "hint": "synonyms for hothead", "clues": ["swashbuckler", "madcap", "fire-eater", "daredevil", "lunatic", "harum-scarum", "hothead"]}, {"answer": "hotness", "hint": "synonyms for hotness", "clues": ["horniness", "high temperature", "heat", "pepperiness", "hot pants", "hotness"]}, {"answer": "hotshot", "hint": "synonyms for hotshot", "clues": ["mavin", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius", "hotshot"]}, {"answer": "hotspur", "hint": "synonyms for hotspur", "clues": ["Percy", "Sir Henry Percy", "Hotspur", "Harry Hotspur"]}, {"answer": "hound", "hint": "synonyms for hound", "clues": ["cad", "dog", "blackguard", "bounder", "heel", "hound"]}, {"answer": "hour", "hint": "synonyms for hour", "clues": ["hr", "time of day", "60 minutes", "minute", "hour"]}, {"answer": "hours", "hint": "synonyms for hours", "clues": ["hr", "60 minutes", "hour", "time of day", "minute"]}, {"answer": "house", "hint": "synonyms for house", "clues": ["business firm", "theater", "sign of the zodiac", "star sign", "menage", "mansion", "sign", "family", "household", "home", "planetary house", "firm", "house"]}, {"answer": "house_agent", "hint": "synonyms for house agent", "clues": ["land agent", "real estate broker", "estate agent", "real estate agent", "house agent"]}, {"answer": "house_decorator", "hint": "synonyms for house decorator", "clues": ["decorator", "room decorator", "designer", "interior decorator", "interior designer", "house decorator"]}, {"answer": "house_of_cards", "hint": "synonyms for house of cards", "clues": ["bubble", "cardcastle", "cardhouse", "house of cards"]}, {"answer": "house_of_god", "hint": "synonyms for house of god", "clues": ["place of worship", "house of God", "house of worship", "house of prayer"]}, {"answer": "house_of_ill_repute", "hint": "synonyms for house of ill repute", "clues": ["bagnio", "bordello", "sporting house", "whorehouse", "house of prostitution", "cathouse", "brothel", "bawdyhouse", "house of ill repute"]}, {"answer": "house_of_prostitution", "hint": "synonyms for house of prostitution", "clues": ["bagnio", "house of ill repute", "bordello", "sporting house", "whorehouse", "cathouse", "brothel", "bawdyhouse", "house of prostitution"]}, {"answer": "housecoat", "hint": "synonyms for housecoat", "clues": ["wrapper", "neglige", "peignoir", "housecoat"]}, {"answer": "household", "hint": "synonyms for household", "clues": ["family", "home", "menage", "house", "household"]}, {"answer": "housing", "hint": "synonyms for housing", "clues": ["living accommodations", "caparison", "lodging", "trapping", "housing"]}, {"answer": "hovel", "hint": "synonyms for hovel", "clues": ["shanty", "hut", "shack", "hutch", "hovel"]}, {"answer": "how-do-you-do", "hint": "synonyms for how-do-you-do", "clues": ["how-d'ye-do", "howdy", "hullo", "hello", "hi", "how-do-you-do"]}, {"answer": "howard", "hint": "synonyms for howard", "clues": ["Howard", "Leslie Howard", "Leslie Howard Stainer", "Catherine Howard"]}, {"answer": "howdy", "hint": "synonyms for howdy", "clues": ["how-do-you-do", "hullo", "hello", "hi", "howdy"]}, {"answer": "howe", "hint": "synonyms for howe", "clues": ["Gordon Howe", "Elias Howe", "Julia Ward Howe", "Howe", "Gordie Howe", "Irving Howe"]}, {"answer": "howler", "hint": "synonyms for howler", "clues": ["scream", "thigh-slapper", "riot", "sidesplitter", "belly laugh", "wow", "howler"]}, {"answer": "hoyle", "hint": "synonyms for hoyle", "clues": ["Fred Hoyle", "Sir Fred Hoyle", "Hoyle", "Edmond Hoyle"]}, {"answer": "hs", "hint": "synonyms for hs", "clues": ["element 108", "atomic number 108", "hydrogen", "hassium", "Planck's constant", "henry", "h", "heat content", "total heat", "enthalpy"]}, {"answer": "hsian", "hint": "synonyms for hsian", "clues": ["Hsian", "Changan", "Xian", "Singan"]}, {"answer": "hua", "hint": "synonyms for hua", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "hub_of_the_universe", "hint": "synonyms for hub of the universe", "clues": ["capital of Massachusetts", "Beantown", "Hub of the Universe", "Boston"]}, {"answer": "hubble-bubble", "hint": "synonyms for hubble-bubble", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "shisha", "chicha", "sheesha", "water pipe", "hubble-bubble"]}, {"answer": "hubbly-bubbly", "hint": "synonyms for hubbly-bubbly", "clues": ["nargileh", "calean", "kalian", "hookah", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe", "hubbly-bubbly"]}, {"answer": "hudson", "hint": "synonyms for hudson", "clues": ["Hudson River", "Henry Hudson", "William Henry Hudson", "Hudson", "W. H. Hudson"]}, {"answer": "hug_drug", "hint": "synonyms for hug drug", "clues": ["go", "Adam", "ecstasy", "disco biscuit", "cristal", "X", "XTC", "hug drug"]}, {"answer": "hugging", "hint": "synonyms for hugging", "clues": ["petting", "smooching", "cuddling", "necking", "caressing", "fondling", "kissing", "snuggling", "hugging"]}, {"answer": "hugh_dowding", "hint": "synonyms for hugh dowding", "clues": ["Dowdy", "Hugh Dowding", "Dowding", "Baron Hugh Caswall Tremenheere Dowding"]}, {"answer": "hughes", "hint": "synonyms for hughes", "clues": ["Hughes", "James Langston Hughes", "Howard Robard Hughes", "Howard Hughes", "Charles Evans Hughes", "Ted Hughes", "Langston Hughes", "Edward James Hughes"]}, {"answer": "hull", "hint": "synonyms for hull", "clues": ["Hull", "Kingston-upon Hull", "Cordell Hull", "Isaac Hull"]}, {"answer": "hullabaloo", "hint": "synonyms for hullabaloo", "clues": ["turmoil", "excitement", "upheaval", "agitation", "hullabaloo"]}, {"answer": "hullo", "hint": "synonyms for hullo", "clues": ["how-do-you-do", "howdy", "hello", "hi", "hullo"]}, {"answer": "hum", "hint": "synonyms for hum", "clues": ["Harkat ul-Ansar", "humming", "Harkat ul-Mujahedeen", "HUM", "Movement of Holy Warriors", "Al Faran", "HUA", "busyness", "Harkat-ul-Mujahidin"]}, {"answer": "human_body", "hint": "synonyms for human body", "clues": ["form", "soma", "physical body", "bod", "physique", "flesh", "figure", "shape", "anatomy", "frame", "chassis", "material body", "build", "human body"]}, {"answer": "human_elbow", "hint": "synonyms for human elbow", "clues": ["elbow joint", "cubitus", "articulatio cubiti", "elbow", "cubital joint", "human elbow"]}, {"answer": "human_growth_hormone", "hint": "synonyms for human growth hormone", "clues": ["somatotrophin", "somatotropic hormone", "STH", "growth hormone", "human growth hormone"]}, {"answer": "human_knee", "hint": "synonyms for human knee", "clues": ["knee joint", "knee", "genu", "articulatio genus", "human knee"]}, {"answer": "humanities", "hint": "synonyms for humanities", "clues": ["humanistic discipline", "humanity", "manhood", "humanness", "liberal arts", "arts", "humanities"]}, {"answer": "humbleness", "hint": "synonyms for humbleness", "clues": ["humility", "unimportance", "obscureness", "lowliness", "humbleness"]}, {"answer": "humboldt", "hint": "synonyms for humboldt", "clues": ["Humboldt", "Baron Friedrich Heinrich Alexander von Humboldt", "Baron Wilhelm von Humboldt", "Baron Alexander von Humboldt"]}, {"answer": "humbug", "hint": "synonyms for humbug", "clues": ["tommyrot", "fraudulence", "fraud", "put-on", "tarradiddle", "tosh", "hoax", "baloney", "bilgewater", "snake oil", "bosh", "drool", "dupery", "twaddle", "humbug"]}, {"answer": "hummer", "hint": "synonyms for hummer", "clues": ["bullet", "heater", "smoke", "fastball", "hummer"]}, {"answer": "hummock", "hint": "synonyms for hummock", "clues": ["knoll", "hillock", "hammock", "mound"]}, {"answer": "humor", "hint": "synonyms for humor", "clues": ["witticism", "sense of humor", "mood", "liquid body substance", "temper", "wittiness", "wit", "humour", "body fluid"]}, {"answer": "humour", "hint": "synonyms for humour", "clues": ["witticism", "humor", "sense of humor", "mood", "liquid body substance", "temper", "wit", "wittiness", "body fluid"]}, {"answer": "hump", "hint": "synonyms for hump", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "protrusion", "protuberance", "gibbousness", "bulge", "jut", "bump", "hump"]}, {"answer": "hun", "hint": "synonyms for hun", "clues": ["Jerry", "Boche", "Hun", "Krauthead", "Kraut"]}, {"answer": "hundred-percenter", "hint": "synonyms for hundred-percenter", "clues": ["jingo", "chauvinist", "flag-waver", "patrioteer", "jingoist", "hundred-percenter"]}, {"answer": "hundredweight", "hint": "synonyms for hundredweight", "clues": ["centner", "cwt", "short hundredweight", "quintal", "doppelzentner", "cental", "long hundredweight", "metric hundredweight", "hundredweight"]}, {"answer": "hungriness", "hint": "synonyms for hungriness", "clues": ["longing", "hunger", "thirstiness", "thirst", "yearning", "hungriness"]}, {"answer": "hunt", "hint": "synonyms for hunt", "clues": ["James Henry Leigh Hunt", "Hunt", "William Holman Hunt", "Holman Hunt", "hunt club", "Richard Morris Hunt", "search", "Leigh Hunt"]}, {"answer": "hunter", "hint": "synonyms for hunter", "clues": ["Hunter", "Orion", "huntsman", "hunting watch"]}, {"answer": "huntington", "hint": "synonyms for huntington", "clues": ["George Huntington", "Collis Potter Huntington", "Huntington", "Samuel Huntington"]}, {"answer": "hurdles", "hint": "synonyms for hurdles", "clues": ["hurdle", "hurdle race", "hurdling", "vault"]}, {"answer": "hurdy-gurdy", "hint": "synonyms for hurdy-gurdy", "clues": ["grind organ", "barrel organ", "street organ", "hurdy gurdy", "hand organ"]}, {"answer": "hurdy_gurdy", "hint": "synonyms for hurdy gurdy", "clues": ["grind organ", "barrel organ", "street organ", "hurdy-gurdy", "hand organ"]}, {"answer": "hurler's_disease", "hint": "synonyms for hurler's disease", "clues": ["Hurler's disease", "gargoylism", "lipochondrodystrophy", "Hurler's syndrome", "dysostosis multiplex"]}, {"answer": "hurler's_syndrome", "hint": "synonyms for hurler's syndrome", "clues": ["Hurler's disease", "gargoylism", "lipochondrodystrophy", "Hurler's syndrome", "dysostosis multiplex"]}, {"answer": "hurly_burly", "hint": "synonyms for hurly burly", "clues": ["commotion", "kerfuffle", "disturbance", "flutter", "to-do", "hoo-ha", "disruption", "hurly burly"]}, {"answer": "hurricane_lamp", "hint": "synonyms for hurricane lamp", "clues": ["tornado lantern", "storm lamp", "hurricane lantern", "storm lantern", "hurricane lamp"]}, {"answer": "hurricane_lantern", "hint": "synonyms for hurricane lantern", "clues": ["hurricane lamp", "tornado lantern", "storm lamp", "storm lantern", "hurricane lantern"]}, {"answer": "hurriedness", "hint": "synonyms for hurriedness", "clues": ["precipitation", "hurry", "hastiness", "haste", "hurriedness"]}, {"answer": "hurry", "hint": "synonyms for hurry", "clues": ["precipitation", "hastiness", "rushing", "hurriedness", "haste", "hurry"]}, {"answer": "husain", "hint": "synonyms for husain", "clues": ["Hussein", "Saddam Hussein", "King Hussein", "Husayn", "ibn Talal Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husain"]}, {"answer": "husayn", "hint": "synonyms for husayn", "clues": ["Hussein", "Saddam Hussein", "King Hussein", "Husayn", "ibn Talal Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husain"]}, {"answer": "hushing", "hint": "synonyms for hushing", "clues": ["fizzle", "sibilation", "hissing", "hushing"]}, {"answer": "husk", "hint": "synonyms for husk", "clues": ["stubble", "stalk", "straw", "chaff", "shuck", "husk"]}, {"answer": "huskiness", "hint": "synonyms for huskiness", "clues": ["hoarseness", "toughness", "ruggedness", "gruffness", "huskiness"]}, {"answer": "husking", "hint": "synonyms for husking", "clues": ["stripping", "denudation", "baring", "uncovering", "husking"]}, {"answer": "hussein", "hint": "synonyms for hussein", "clues": ["Hussein", "Saddam Hussein", "King Hussein", "Husayn", "ibn Talal Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husain"]}, {"answer": "hussy", "hint": "synonyms for hussy", "clues": ["strumpet", "slut", "loose woman", "adulteress", "jade", "trollop", "fornicatress", "hussy"]}, {"answer": "hustle", "hint": "synonyms for hustle", "clues": ["bunco game", "confidence trick", "con", "ado", "flurry", "flimflam", "fuss", "stir", "bunco", "gyp", "sting", "bustle", "bunko", "confidence game", "con game", "hustle"]}, {"answer": "hustler", "hint": "synonyms for hustler", "clues": ["wheeler dealer", "floozy", "operator", "hooker", "floozie", "streetwalker", "slattern", "street girl", "hustler"]}, {"answer": "hut", "hint": "synonyms for hut", "clues": ["hovel", "hutch", "army hut", "shanty", "shack", "field hut", "hut"]}, {"answer": "hutch", "hint": "synonyms for hutch", "clues": ["shack", "shanty", "hut", "hovel", "hutch"]}, {"answer": "huxley", "hint": "synonyms for huxley", "clues": ["Thomas Huxley", "Aldous Huxley", "Aldous Leonard Huxley", "Thomas Henry Huxley", "Huxley", "Andrew Huxley", "Andrew Fielding Huxley"]}, {"answer": "hybridisation", "hint": "synonyms for hybridisation", "clues": ["hybridization", "crossbreeding", "hybridizing", "interbreeding", "cross"]}, {"answer": "hybridization", "hint": "synonyms for hybridization", "clues": ["crossbreeding", "hybridizing", "interbreeding", "cross", "hybridisation"]}, {"answer": "hybridizing", "hint": "synonyms for hybridizing", "clues": ["hybridization", "crossbreeding", "interbreeding", "cross", "hybridizing"]}, {"answer": "hydrargyrum", "hint": "synonyms for hydrargyrum", "clues": ["mercury", "quicksilver", "Hg", "atomic number 80", "hydrargyrum"]}, {"answer": "hydrated_lime", "hint": "synonyms for hydrated lime", "clues": ["calcium hydrate", "lime hydrate", "lime", "slaked lime", "caustic lime", "calcium hydroxide", "hydrated lime"]}, {"answer": "hydrodiuril", "hint": "synonyms for hydrodiuril", "clues": ["Esidrix", "hydrochlorothiazide", "HydroDIURIL", "Microzide"]}, {"answer": "hydroxybenzene", "hint": "synonyms for hydroxybenzene", "clues": ["oxybenzene", "carbolic acid", "phenylic acid", "phenol", "hydroxybenzene"]}, {"answer": "hymeneals", "hint": "synonyms for hymeneals", "clues": ["hymeneal", "wedding", "nuptials", "wedding ceremony"]}, {"answer": "hyperkinetic_syndrome", "hint": "synonyms for hyperkinetic syndrome", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "minimal brain damage", "MBD", "ADD", "minimal brain dysfunction", "hyperkinetic syndrome"]}, {"answer": "hypermetropia", "hint": "synonyms for hypermetropia", "clues": ["hyperopia", "farsightedness", "hypermetropy", "longsightedness"]}, {"answer": "hypermetropy", "hint": "synonyms for hypermetropy", "clues": ["hyperopia", "farsightedness", "longsightedness", "hypermetropia"]}, {"answer": "hyperopia", "hint": "synonyms for hyperopia", "clues": ["farsightedness", "hypermetropy", "longsightedness", "hyperopia"]}, {"answer": "hypertrophic_rosacea", "hint": "synonyms for hypertrophic rosacea", "clues": ["brandy nose", "hammer nose", "rum-blossom", "potato nose", "rum nose", "toper's nose", "rhinophyma", "copper nose", "hypertrophic rosacea"]}, {"answer": "hypnotiser", "hint": "synonyms for hypnotiser", "clues": ["mesmerist", "hypnotist", "hypnotizer", "mesmerizer"]}, {"answer": "hypnotist", "hint": "synonyms for hypnotist", "clues": ["hypnotiser", "mesmerist", "mesmerizer", "hypnotist"]}, {"answer": "hypnotizer", "hint": "synonyms for hypnotizer", "clues": ["hypnotiser", "mesmerist", "hypnotist", "mesmerizer"]}, {"answer": "hypo", "hint": "synonyms for hypo", "clues": ["hypodermic", "sodium thiosulfate", "hypodermic syringe", "hypo"]}, {"answer": "hypocrite", "hint": "synonyms for hypocrite", "clues": ["phoney", "pretender", "dissimulator", "dissembler", "hypocrite"]}, {"answer": "hypothalamic_releasing_factor", "hint": "synonyms for hypothalamic releasing factor", "clues": ["hypothalamic releasing hormone", "RH", "releasing hormone", "releasing factor", "hypothalamic releasing factor"]}, {"answer": "hypothalamic_releasing_hormone", "hint": "synonyms for hypothalamic releasing hormone", "clues": ["releasing factor", "RH", "hypothalamic releasing factor", "releasing hormone", "hypothalamic releasing hormone"]}, {"answer": "hypothesis", "hint": "synonyms for hypothesis", "clues": ["surmise", "theory", "possibility", "speculation", "surmisal", "conjecture", "supposition", "guess", "hypothesis"]}, {"answer": "hysteria", "hint": "synonyms for hysteria", "clues": ["frenzy", "delirium", "craze", "hysterical neurosis", "fury", "hysteria"]}, {"answer": "hz", "hint": "synonyms for hz", "clues": ["Hz", "hertz", "cps", "cycles/second", "cycle", "cycle per second"]}, {"answer": "iaa", "hint": "synonyms for iaa", "clues": ["IAA", "Islamic Army of Aden-Abyan", "Aden-Abyan Islamic Army", "indoleacetic acid"]}, {"answer": "ibn_al-haytham", "hint": "synonyms for ibn al-haytham", "clues": ["Al-Hasan ibn al-Haytham", "al-Haytham", "Alhazen", "Ibn al-Haytham"]}, {"answer": "ibn_talal_hussein", "hint": "synonyms for ibn talal hussein", "clues": ["Hussein", "ibn Talal Hussein", "King Hussein", "Husayn", "Husain"]}, {"answer": "ibuprofen", "hint": "synonyms for ibuprofen", "clues": ["isobutylphenyl propionic acid", "Nuprin", "Advil", "Motrin", "ibuprofen"]}, {"answer": "ice", "hint": "synonyms for ice", "clues": ["ice-skating rink", "Methedrine", "frosting", "glass", "icing", "frappe", "trash", "ICE", "methamphetamine", "shabu", "water ice", "crank", "deoxyephedrine", "chicken feed", "sparkler", "meth", "chalk", "internal-combustion engine", "methamphetamine hydrochloride", "ice rink"]}, {"answer": "ice_crystal", "hint": "synonyms for ice crystal", "clues": ["frost snow", "frost mist", "snow mist", "poudrin", "diamond dust", "ice needle", "ice crystal"]}, {"answer": "ice_needle", "hint": "synonyms for ice needle", "clues": ["frost snow", "frost mist", "snow mist", "ice crystal", "poudrin", "diamond dust", "ice needle"]}, {"answer": "ichor", "hint": "synonyms for ichor", "clues": ["purulence", "sanies", "festering", "pus", "suppuration", "ichor"]}, {"answer": "iciness", "hint": "synonyms for iciness", "clues": ["coldness", "chilliness", "chill", "gelidity", "frigidness", "frigidity", "iciness"]}, {"answer": "icing", "hint": "synonyms for icing", "clues": ["ice", "frost", "icing the puck", "icing"]}, {"answer": "icsh", "hint": "synonyms for icsh", "clues": ["LH", "ICSH", "interstitial cell-stimulating hormone", "luteinizing hormone"]}, {"answer": "id", "hint": "synonyms for id", "clues": ["ID", "Idaho", "I.D.", "Gem State"]}, {"answer": "iddm", "hint": "synonyms for iddm", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "idea", "hint": "synonyms for idea", "clues": ["thought", "estimation", "theme", "mind", "estimate", "melodic theme", "musical theme", "approximation", "idea"]}, {"answer": "ideal_solid", "hint": "synonyms for ideal solid", "clues": ["Platonic solid", "regular convex solid", "Platonic body", "regular convex polyhedron", "regular polyhedron", "ideal solid"]}, {"answer": "idealogue", "hint": "synonyms for idealogue", "clues": ["theoretician", "theoriser", "theorist", "idealogue"]}, {"answer": "identity", "hint": "synonyms for identity", "clues": ["identity operator", "indistinguishability", "individuality", "personal identity", "identity element", "identicalness", "identity"]}, {"answer": "idiom", "hint": "synonyms for idiom", "clues": ["accent", "dialect", "phrase", "artistic style", "set phrase", "parlance", "phrasal idiom", "idiomatic expression", "idiom"]}, {"answer": "idiomatic_expression", "hint": "synonyms for idiomatic expression", "clues": ["phrase", "phrasal idiom", "set phrase", "idiom", "idiomatic expression"]}, {"answer": "idiot", "hint": "synonyms for idiot", "clues": ["moron", "changeling", "imbecile", "half-wit", "cretin", "retard", "idiot"]}, {"answer": "idiot_box", "hint": "synonyms for idiot box", "clues": ["boob tube", "tv set", "television set", "telly", "television receiver", "tv", "television", "goggle box", "idiot box"]}, {"answer": "idle_talk", "hint": "synonyms for idle talk", "clues": ["prate", "blether", "chin music", "prattle", "idle talk"]}, {"answer": "idle_words", "hint": "synonyms for idle words", "clues": ["malarky", "wind", "nothingness", "jazz", "idle words"]}, {"answer": "idleness", "hint": "synonyms for idleness", "clues": ["loafing", "groundlessness", "faineance", "idling", "idleness"]}, {"answer": "idler", "hint": "synonyms for idler", "clues": ["layabout", "loafer", "bum", "do-nothing", "idler"]}, {"answer": "idol", "hint": "synonyms for idol", "clues": ["god", "graven image", "perfection", "matinee idol", "beau ideal", "paragon", "idol"]}, {"answer": "idolatry", "hint": "synonyms for idolatry", "clues": ["veneration", "cultism", "idol worship", "devotion", "idolatry"]}, {"answer": "idyl", "hint": "synonyms for idyl", "clues": ["pastorale", "idyll", "eclogue", "bucolic"]}, {"answer": "idyll", "hint": "synonyms for idyll", "clues": ["pastorale", "eclogue", "bucolic", "idyl"]}, {"answer": "ig", "hint": "synonyms for ig", "clues": ["immune serum globulin", "immunoglobulin", "immune gamma globulin", "Ig"]}, {"answer": "ignition", "hint": "synonyms for ignition", "clues": ["firing", "ignition system", "lighting", "inflammation", "kindling", "ignition"]}, {"answer": "iguassu", "hint": "synonyms for iguassu", "clues": ["Iguassu", "Victoria Falls", "Iguazu Falls", "Iguazu"]}, {"answer": "iguassu_falls", "hint": "synonyms for iguassu falls", "clues": ["Iguassu", "Victoria Falls", "Iguazu Falls", "Iguazu"]}, {"answer": "iguazu", "hint": "synonyms for iguazu", "clues": ["Iguassu", "Victoria Falls", "Iguazu Falls", "Iguazu"]}, {"answer": "iguazu_falls", "hint": "synonyms for iguazu falls", "clues": ["Iguassu", "Victoria Falls", "Iguazu Falls", "Iguazu"]}, {"answer": "iis", "hint": "synonyms for iis", "clues": ["2", "deuce", "Iraqi Mukhabarat", "Iraqi Intelligence Service", "II", "two"]}, {"answer": "ike", "hint": "synonyms for ike", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "ilich_ramirez_sanchez", "hint": "synonyms for ilich ramirez sanchez", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "ilich_sanchez", "hint": "synonyms for ilich sanchez", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "illegitimate_child", "hint": "synonyms for illegitimate child", "clues": ["love child", "by-blow", "whoreson", "illegitimate", "bastard", "illegitimate child"]}, {"answer": "illinois", "hint": "synonyms for illinois", "clues": ["Land of Lincoln", "Illinois", "IL", "Prairie State"]}, {"answer": "illumination", "hint": "synonyms for illumination", "clues": ["illuminance", "clarification", "light", "elucidation", "miniature", "illumination"]}, {"answer": "illusion", "hint": "synonyms for illusion", "clues": ["legerdemain", "phantasy", "semblance", "magic trick", "thaumaturgy", "fancy", "head game", "deception", "fantasy", "trick", "conjuration", "magic", "delusion", "conjuring trick", "illusion"]}, {"answer": "illusionist", "hint": "synonyms for illusionist", "clues": ["conjurer", "prestidigitator", "magician", "seer", "visionary", "illusionist"]}, {"answer": "illustration", "hint": "synonyms for illustration", "clues": ["instance", "representative", "exemplification", "example", "illustration"]}, {"answer": "ilosone", "hint": "synonyms for ilosone", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "image", "hint": "synonyms for image", "clues": ["double", "range", "prototype", "trope", "simulacrum", "mental image", "effigy", "figure", "figure of speech", "picture", "icon", "paradigm", "persona", "look-alike", "ikon", "range of a function", "epitome", "image"]}, {"answer": "imagination", "hint": "synonyms for imagination", "clues": ["imaginativeness", "imagery", "imaging", "resource", "resourcefulness", "vision", "mental imagery", "imagination"]}, {"answer": "imaging", "hint": "synonyms for imaging", "clues": ["imagery", "mental imagery", "imagination", "tomography", "imaging"]}, {"answer": "imavate", "hint": "synonyms for imavate", "clues": ["Imavate", "impramine hydrochloride", "imipramine", "Tofranil"]}, {"answer": "imbalance", "hint": "synonyms for imbalance", "clues": ["unbalance", "instability", "asymmetry", "dissymmetry", "imbalance"]}, {"answer": "imbecility", "hint": "synonyms for imbecility", "clues": ["foolishness", "betise", "folly", "stupidity", "imbecility"]}, {"answer": "imitator", "hint": "synonyms for imitator", "clues": ["ape", "emulator", "impersonator", "copycat", "imitator"]}, {"answer": "immediacy", "hint": "synonyms for immediacy", "clues": ["instantaneousness", "immediate apprehension", "immediateness", "instancy", "immediacy"]}, {"answer": "immenseness", "hint": "synonyms for immenseness", "clues": ["immensity", "vastness", "enormousness", "sizeableness", "greatness", "wideness", "grandness", "immenseness"]}, {"answer": "immensity", "hint": "synonyms for immensity", "clues": ["immenseness", "vastness", "enormousness", "sizeableness", "greatness", "wideness", "grandness", "immensity"]}, {"answer": "immersion", "hint": "synonyms for immersion", "clues": ["ingress", "ducking", "submersion", "dousing", "concentration", "submerging", "engrossment", "absorption", "submergence", "immersion"]}, {"answer": "imminence", "hint": "synonyms for imminence", "clues": ["impendence", "imminentness", "imminency", "forthcomingness"]}, {"answer": "imminency", "hint": "synonyms for imminency", "clues": ["imminence", "impendence", "imminentness", "forthcomingness"]}, {"answer": "imminentness", "hint": "synonyms for imminentness", "clues": ["imminence", "impendency", "forthcomingness", "imminentness"]}, {"answer": "immune_gamma_globulin", "hint": "synonyms for immune gamma globulin", "clues": ["immunoglobulin", "immune serum globulin", "Ig", "immune gamma globulin"]}, {"answer": "immune_globulin", "hint": "synonyms for immune globulin", "clues": ["immune serum globulin", "immune gamma globulin", "immunoglobulin", "Ig"]}, {"answer": "immune_serum_globulin", "hint": "synonyms for immune serum globulin", "clues": ["immunoglobulin", "immune gamma globulin", "Ig", "immune serum globulin"]}, {"answer": "immune_suppressant_drug", "hint": "synonyms for immune suppressant drug", "clues": ["immunosuppressive", "immunosuppressant", "immunosuppressor", "immune suppressant drug"]}, {"answer": "immunity", "hint": "synonyms for immunity", "clues": ["granting immunity", "exemption", "unsusceptibility", "resistance", "immunity"]}, {"answer": "immunoglobulin", "hint": "synonyms for immunoglobulin", "clues": ["immune serum globulin", "immune gamma globulin", "immune globulin", "Ig"]}, {"answer": "immunosuppressant", "hint": "synonyms for immunosuppressant", "clues": ["immunosuppressive", "immunosuppressor", "immune suppressant drug", "immunosuppressant"]}, {"answer": "immunosuppressive_drug", "hint": "synonyms for immunosuppressive drug", "clues": ["immunosuppressive", "immunosuppressant", "immunosuppressor", "immune suppressant drug"]}, {"answer": "immunosuppressor", "hint": "synonyms for immunosuppressor", "clues": ["immunosuppressive", "immunosuppressant", "immune suppressant drug", "immunosuppressor"]}, {"answer": "imp", "hint": "synonyms for imp", "clues": ["hob", "pixy", "scallywag", "rascal", "scalawag", "monkey", "gremlin", "scamp", "rapscallion", "elf", "pixie", "brownie", "imp"]}, {"answer": "impact", "hint": "synonyms for impact", "clues": ["impingement", "wallop", "encroachment", "shock", "impact"]}, {"answer": "impairment", "hint": "synonyms for impairment", "clues": ["disablement", "disability", "stultification", "harm", "damage", "deterioration", "handicap", "deadening", "constipation", "impairment"]}, {"answer": "impasse", "hint": "synonyms for impasse", "clues": ["deadlock", "dead end", "standstill", "dead-end street", "blind alley", "stalemate", "cul de sac", "impasse"]}, {"answer": "impassiveness", "hint": "synonyms for impassiveness", "clues": ["emotionlessness", "phlegm", "unemotionality", "indifference", "impassivity", "stolidity", "impassiveness"]}, {"answer": "impassivity", "hint": "synonyms for impassivity", "clues": ["impassiveness", "emotionlessness", "phlegm", "unemotionality", "indifference", "stolidity", "impassivity"]}, {"answer": "impedance", "hint": "synonyms for impedance", "clues": ["resistivity", "resistance", "electric resistance", "ohmic resistance", "impedance"]}, {"answer": "impediment", "hint": "synonyms for impediment", "clues": ["deterrent", "hinderance", "obstructer", "obstruction", "impedimenta", "handicap", "balk", "check"]}, {"answer": "impendence", "hint": "synonyms for impendence", "clues": ["imminence", "imminentness", "impendency", "forthcomingness"]}, {"answer": "impendency", "hint": "synonyms for impendency", "clues": ["imminence", "impendence", "imminentness", "forthcomingness"]}, {"answer": "imperativeness", "hint": "synonyms for imperativeness", "clues": ["insistency", "press", "pressure", "instancy", "imperativeness"]}, {"answer": "imperfect_tense", "hint": "synonyms for imperfect tense", "clues": ["imperfect", "continuous tense", "progressive", "progressive tense", "imperfect tense"]}, {"answer": "impersonation", "hint": "synonyms for impersonation", "clues": ["caricature", "imitation", "imposture", "personation"]}, {"answer": "impertinence", "hint": "synonyms for impertinence", "clues": ["insolence", "crust", "cheek", "gall", "archness", "pertness", "perkiness", "sauciness", "cheekiness", "impudence", "freshness", "impertinence"]}, {"answer": "implements_of_war", "hint": "synonyms for implements of war", "clues": ["weapons system", "weaponry", "munition", "arms", "implements of war"]}, {"answer": "implication", "hint": "synonyms for implication", "clues": ["deduction", "entailment", "significance", "import", "logical implication", "conditional relation", "implication"]}, {"answer": "import", "hint": "synonyms for import", "clues": ["meaning", "signification", "implication", "consequence", "significance", "importation", "moment", "importee"]}, {"answer": "impost", "hint": "synonyms for impost", "clues": ["customs", "customs duty", "springer", "impost"]}, {"answer": "imposter", "hint": "synonyms for imposter", "clues": ["shammer", "fake", "impostor", "pseudo", "pretender", "sham", "role player", "fraud"]}, {"answer": "impostor", "hint": "synonyms for impostor", "clues": ["shammer", "fake", "imposter", "pseudo", "pretender", "sham", "role player", "fraud"]}, {"answer": "impoverishment", "hint": "synonyms for impoverishment", "clues": ["poorness", "poverty", "pauperisation", "impoverishment"]}, {"answer": "impregnation", "hint": "synonyms for impregnation", "clues": ["fertilisation", "saturation", "fecundation", "impregnation"]}, {"answer": "impression", "hint": "synonyms for impression", "clues": ["printing", "depression", "belief", "notion", "stamp", "effect", "picture", "feeling", "opinion", "imprint", "mental picture", "impression"]}, {"answer": "impressive_aphasia", "hint": "synonyms for impressive aphasia", "clues": ["sensory aphasia", "receptive aphasia", "fluent aphasia", "Wernicke's aphasia", "impressive aphasia"]}, {"answer": "imprimatur", "hint": "synonyms for imprimatur", "clues": ["sanction", "indorsement", "warrant", "countenance", "imprimatur"]}, {"answer": "imprisonment", "hint": "synonyms for imprisonment", "clues": ["internment", "immurement", "incarceration", "captivity", "imprisonment"]}, {"answer": "impropriety", "hint": "synonyms for impropriety", "clues": ["improperness", "indecorum", "indecency", "familiarity", "liberty", "impropriety"]}, {"answer": "improver", "hint": "synonyms for improver", "clues": ["do-gooder", "add-on", "humanitarian", "addition", "improver"]}, {"answer": "impudence", "hint": "synonyms for impudence", "clues": ["insolence", "crust", "cheek", "gall", "impertinence", "cheekiness", "freshness", "impudence"]}, {"answer": "impulse", "hint": "synonyms for impulse", "clues": ["impetus", "urge", "whim", "momentum", "neural impulse", "impulsion", "nervous impulse", "pulse", "pulsation", "pulsing", "caprice", "impulse"]}, {"answer": "inadvertence", "hint": "synonyms for inadvertence", "clues": ["oversight", "heedlessness", "unmindfulness", "inadvertency"]}, {"answer": "inanity", "hint": "synonyms for inanity", "clues": ["senselessness", "mindlessness", "vacuity", "pointlessness", "inanity"]}, {"answer": "inborn_reflex", "hint": "synonyms for inborn reflex", "clues": ["unconditioned reflex", "reflex response", "instinctive reflex", "innate reflex", "reflex", "reflex action", "physiological reaction", "inborn reflex"]}, {"answer": "incandescent_lamp", "hint": "synonyms for incandescent lamp", "clues": ["light bulb", "electric-light bulb", "electric light", "bulb", "incandescent lamp"]}, {"answer": "incarnation", "hint": "synonyms for incarnation", "clues": ["personification", "embodiment", "Incarnation", "avatar"]}, {"answer": "incertitude", "hint": "synonyms for incertitude", "clues": ["uncertainty", "doubtfulness", "doubt", "dubiety", "dubiousness", "incertitude"]}, {"answer": "incision", "hint": "synonyms for incision", "clues": ["scratch", "slit", "surgical incision", "dent", "section", "prick", "incision"]}, {"answer": "inciter", "hint": "synonyms for inciter", "clues": ["instigator", "provoker", "firebrand", "instigant", "inciter"]}, {"answer": "inclemency", "hint": "synonyms for inclemency", "clues": ["severity", "stiffness", "inclementness", "rigour", "harshness", "bad weather", "rigorousness", "hardness", "severeness", "inclemency"]}, {"answer": "inclination", "hint": "synonyms for inclination", "clues": ["dip", "leaning", "tilt", "tendency", "inclining", "angle of dip", "inclination of an orbit", "angle of inclination", "list", "magnetic dip", "magnetic inclination", "disposition", "inclination"]}, {"answer": "inclusion_body_encephalitis", "hint": "synonyms for inclusion body encephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "inconstancy", "hint": "synonyms for inconstancy", "clues": ["changefulness", "fickleness", "falseness", "faithlessness", "inconstancy"]}, {"answer": "increase", "hint": "synonyms for increase", "clues": ["gain", "step-up", "addition", "increment", "growth", "increase"]}, {"answer": "incumbrance", "hint": "synonyms for incumbrance", "clues": ["hitch", "load", "preventative", "hinderance", "interference", "encumbrance", "burden", "onus"]}, {"answer": "indecorum", "hint": "synonyms for indecorum", "clues": ["impropriety", "familiarity", "indecorousness", "liberty", "indecorum"]}, {"answer": "indefiniteness", "hint": "synonyms for indefiniteness", "clues": ["indetermination", "indefinity", "indeterminacy", "indeterminateness", "indefiniteness"]}, {"answer": "indefinity", "hint": "synonyms for indefinity", "clues": ["indefiniteness", "indeterminacy", "indeterminateness", "indetermination", "indefinity"]}, {"answer": "indemnification", "hint": "synonyms for indemnification", "clues": ["amends", "redress", "damages", "indemnity", "restitution", "indemnification"]}, {"answer": "indemnity", "hint": "synonyms for indemnity", "clues": ["insurance", "amends", "redress", "indemnification", "damages", "restitution", "indemnity"]}, {"answer": "indentation", "hint": "synonyms for indentation", "clues": ["indenture", "pitting", "indention", "roughness", "indent"]}, {"answer": "independent_state_of_samoa", "hint": "synonyms for independent state of samoa", "clues": ["Samoa", "Western Samoa", "Samoa i Sisifo", "Independent State of Samoa"]}, {"answer": "indeterminacy", "hint": "synonyms for indeterminacy", "clues": ["indefiniteness", "indefinity", "indetermination", "indeterminateness", "indeterminacy"]}, {"answer": "indeterminateness", "hint": "synonyms for indeterminateness", "clues": ["indefiniteness", "indefinity", "indeterminacy", "indetermination", "indeterminateness"]}, {"answer": "indetermination", "hint": "synonyms for indetermination", "clues": ["indefiniteness", "indefinity", "indeterminacy", "indeterminateness", "indetermination"]}, {"answer": "index", "hint": "synonyms for index", "clues": ["power", "index finger", "index number", "forefinger", "exponent", "indicant", "indicator", "index"]}, {"answer": "india_rubber", "hint": "synonyms for india rubber", "clues": ["rubber", "gum elastic", "India rubber", "caoutchouc", "natural rubber"]}, {"answer": "indian_cholera", "hint": "synonyms for indian cholera", "clues": ["Asiatic cholera", "cholera", "epidemic cholera", "Indian cholera"]}, {"answer": "indian_mustard", "hint": "synonyms for indian mustard", "clues": ["mustard", "Indian mustard", "mustard greens", "leaf mustard"]}, {"answer": "indian_tick_fever", "hint": "synonyms for indian tick fever", "clues": ["Marseilles fever", "Indian tick fever", "Kenya fever", "boutonneuse fever"]}, {"answer": "indiana", "hint": "synonyms for indiana", "clues": ["Robert Indiana", "Hoosier State", "Indiana", "IN"]}, {"answer": "indicant", "hint": "synonyms for indicant", "clues": ["index number", "index", "indication", "indicator", "indicant"]}, {"answer": "indication", "hint": "synonyms for indication", "clues": ["reading", "meter reading", "denotation", "indicant", "indication"]}, {"answer": "indicative_mood", "hint": "synonyms for indicative mood", "clues": ["fact mood", "common mood", "declarative mood", "indicative", "declarative", "indicative mood"]}, {"answer": "indifference", "hint": "synonyms for indifference", "clues": ["emotionlessness", "unconcern", "nonchalance", "impassivity", "stolidity", "numbness", "spiritlessness", "phlegm", "apathy", "unemotionality", "impassiveness", "indifference"]}, {"answer": "indigen", "hint": "synonyms for indigen", "clues": ["aborigine", "native", "aboriginal", "indigene"]}, {"answer": "indigence", "hint": "synonyms for indigence", "clues": ["pauperism", "penury", "need", "pauperization", "indigence"]}, {"answer": "indigene", "hint": "synonyms for indigene", "clues": ["aborigine", "indigen", "aboriginal", "native"]}, {"answer": "indira_gandhi", "hint": "synonyms for indira gandhi", "clues": ["Mrs. Gandhi", "Indira Nehru Gandhi", "Gandhi", "Indira Gandhi"]}, {"answer": "indira_nehru_gandhi", "hint": "synonyms for indira nehru gandhi", "clues": ["Mrs. Gandhi", "Indira Nehru Gandhi", "Gandhi", "Indira Gandhi"]}, {"answer": "indisposition", "hint": "synonyms for indisposition", "clues": ["reluctance", "hesitancy", "disinclination", "hesitation", "indisposition"]}, {"answer": "indistinctness", "hint": "synonyms for indistinctness", "clues": ["fuzziness", "blurriness", "softness", "fogginess", "indistinctness"]}, {"answer": "individuality", "hint": "synonyms for individuality", "clues": ["identity", "individuation", "individualism", "personal identity", "individuality"]}, {"answer": "indorsement", "hint": "synonyms for indorsement", "clues": ["imprimatur", "warrant", "blurb", "sanction", "endorsement", "second", "secondment", "countenance"]}, {"answer": "induction", "hint": "synonyms for induction", "clues": ["installation", "inductance", "trigger", "evocation", "elicitation", "generalization", "inductive reasoning", "initiation", "induction"]}, {"answer": "indulgence", "hint": "synonyms for indulgence", "clues": ["foolery", "craziness", "self-indulgence", "lenience", "folly", "humoring", "tomfoolery", "pampering", "lunacy", "indulging", "indulgence"]}, {"answer": "induration_of_the_arteries", "hint": "synonyms for induration of the arteries", "clues": ["arterial sclerosis", "coronary-artery disease", "hardening of the arteries", "induration of the arteries"]}, {"answer": "inebriant", "hint": "synonyms for inebriant", "clues": ["alcohol", "intoxicant", "alcoholic beverage", "alcoholic drink", "inebriant"]}, {"answer": "inebriate", "hint": "synonyms for inebriate", "clues": ["wino", "rummy", "drunk", "sot", "drunkard", "inebriate"]}, {"answer": "inebriation", "hint": "synonyms for inebriation", "clues": ["alcoholism", "inebriety", "alcohol addiction", "intoxication", "insobriety", "tipsiness", "drunkenness", "inebriation"]}, {"answer": "inebriety", "hint": "synonyms for inebriety", "clues": ["drunkenness", "tipsiness", "inebriation", "intoxication", "insobriety", "inebriety"]}, {"answer": "ineptitude", "hint": "synonyms for ineptitude", "clues": ["slowness", "worthlessness", "awkwardness", "maladroitness", "clumsiness", "ineptness", "ineptitude"]}, {"answer": "ineptness", "hint": "synonyms for ineptness", "clues": ["slowness", "unsuitability", "awkwardness", "unsuitableness", "maladroitness", "clumsiness", "ineptitude", "ineptness"]}, {"answer": "inevitable_accident", "hint": "synonyms for inevitable accident", "clues": ["unavoidable casualty", "vis major", "force majeure", "act of God", "inevitable accident"]}, {"answer": "infant_death", "hint": "synonyms for infant death", "clues": ["sudden infant death syndrome", "SIDS", "cot death", "crib death", "infant death"]}, {"answer": "infectious_mononucleosis", "hint": "synonyms for infectious mononucleosis", "clues": ["kissing disease", "mono", "mononucleosis", "glandular fever", "infectious mononucleosis"]}, {"answer": "inferiority", "hint": "synonyms for inferiority", "clues": ["lower rank", "lower status", "unfavorable position", "low quality", "inferiority"]}, {"answer": "infernal_region", "hint": "synonyms for infernal region", "clues": ["perdition", "Hades", "Hell", "underworld", "pit", "netherworld", "Inferno", "nether region", "Scheol", "infernal region"]}, {"answer": "inferno", "hint": "synonyms for inferno", "clues": ["perdition", "snake pit", "Hell", "the pits", "pit", "Inferno", "infernal region", "conflagration", "hellhole", "hell on earth", "nether region"]}, {"answer": "infiniteness", "hint": "synonyms for infiniteness", "clues": ["limitlessness", "boundlessness", "unboundedness", "infinitude", "infiniteness"]}, {"answer": "infinitude", "hint": "synonyms for infinitude", "clues": ["limitlessness", "boundlessness", "unboundedness", "infiniteness", "infinitude"]}, {"answer": "infirmity", "hint": "synonyms for infirmity", "clues": ["frailness", "debility", "frailty", "valetudinarianism", "feebleness", "infirmity"]}, {"answer": "inflammation", "hint": "synonyms for inflammation", "clues": ["rubor", "redness", "inflaming", "firing", "excitation", "fervour", "kindling", "lighting", "excitement", "ignition", "inflammation"]}, {"answer": "inflation", "hint": "synonyms for inflation", "clues": ["ostentatiousness", "ostentation", "rising prices", "pretentiousness", "pomposity", "puffiness", "pompousness", "splashiness", "inflation"]}, {"answer": "inflection", "hint": "synonyms for inflection", "clues": ["flection", "modulation", "flexion", "prosody"]}, {"answer": "infliction", "hint": "synonyms for infliction", "clues": ["botheration", "bother", "imposition", "annoyance", "pain", "pain in the ass", "pain in the neck", "infliction"]}, {"answer": "inflorescence", "hint": "synonyms for inflorescence", "clues": ["anthesis", "flowering", "efflorescence", "blossoming", "inflorescence"]}, {"answer": "information", "hint": "synonyms for information", "clues": ["data", "entropy", "info", "selective information", "information"]}, {"answer": "information_processing_system", "hint": "synonyms for information processing system", "clues": ["computer", "computing machine", "electronic computer", "data processor", "computing device", "information processing system"]}, {"answer": "informational_rna", "hint": "synonyms for informational rna", "clues": ["informational RNA", "template RNA", "messenger RNA", "mRNA"]}, {"answer": "informer", "hint": "synonyms for informer", "clues": ["betrayer", "blabber", "rat", "squealer", "informer"]}, {"answer": "infraction", "hint": "synonyms for infraction", "clues": ["infringement", "misdemeanor", "violation", "infraction"]}, {"answer": "infringement", "hint": "synonyms for infringement", "clues": ["misdemeanour", "violation", "infraction", "infringement"]}, {"answer": "inge", "hint": "synonyms for inge", "clues": ["William Ralph Inge", "William Inge", "Gloomy Dean", "Inge"]}, {"answer": "ingredient", "hint": "synonyms for ingredient", "clues": ["element", "factor", "fixings", "component", "constituent", "ingredient"]}, {"answer": "ingress", "hint": "synonyms for ingress", "clues": ["entry", "Ingres", "immersion", "entering", "incoming", "entrance", "Jean Auguste Dominique Ingres"]}, {"answer": "ingroup", "hint": "synonyms for ingroup", "clues": ["clique", "coterie", "pack", "camp", "inner circle", "ingroup"]}, {"answer": "inhalation", "hint": "synonyms for inhalation", "clues": ["intake", "inspiration", "breathing in", "inhalant", "inhalation"]}, {"answer": "inhalation_anthrax", "hint": "synonyms for inhalation anthrax", "clues": ["pulmonary anthrax", "woolsorter's disease", "ragsorter's disease", "woolsorter's pneumonia", "anthrax pneumonia", "ragpicker's disease", "inhalation anthrax"]}, {"answer": "inherited_disease", "hint": "synonyms for inherited disease", "clues": ["hereditary disease", "genetic defect", "inherited disorder", "genetic disease", "genetic abnormality", "hereditary condition", "genetic disorder", "congenital disease", "inherited disease"]}, {"answer": "inherited_disorder", "hint": "synonyms for inherited disorder", "clues": ["hereditary disease", "genetic defect", "inherited disease", "genetic disease", "genetic abnormality", "hereditary condition", "genetic disorder", "congenital disease", "inherited disorder"]}, {"answer": "inhumation", "hint": "synonyms for inhumation", "clues": ["burial", "entombment", "sepulture", "interment", "inhumation"]}, {"answer": "iniquity", "hint": "synonyms for iniquity", "clues": ["darkness", "wickedness", "dark", "shabbiness", "injustice", "unfairness", "evil", "immorality", "iniquity"]}, {"answer": "initiate", "hint": "synonyms for initiate", "clues": ["pundit", "novice", "learned person", "savant", "enlightened", "tiro", "tyro", "beginner", "initiate"]}, {"answer": "initiation", "hint": "synonyms for initiation", "clues": ["installation", "creation", "instauration", "knowledgeableness", "trigger", "knowledgeability", "institution", "foundation", "introduction", "founding", "innovation", "origination", "initiation"]}, {"answer": "injury", "hint": "synonyms for injury", "clues": ["hurt", "combat injury", "harm", "wound", "trauma", "accidental injury", "injury"]}, {"answer": "injustice", "hint": "synonyms for injustice", "clues": ["unjustness", "unfairness", "iniquity", "shabbiness", "injustice"]}, {"answer": "inla", "hint": "synonyms for inla", "clues": ["People's Liberation Army", "People's Republican Army", "Catholic Reaction Force", "Irish National Liberation Army", "INLA"]}, {"answer": "inmate", "hint": "synonyms for inmate", "clues": ["yard bird", "convict", "inpatient", "con", "inmate"]}, {"answer": "inn", "hint": "synonyms for inn", "clues": ["hostel", "auberge", "lodge", "inn"]}, {"answer": "innate_reflex", "hint": "synonyms for innate reflex", "clues": ["unconditioned reflex", "inborn reflex", "reflex response", "instinctive reflex", "reflex", "reflex action", "physiological reaction", "innate reflex"]}, {"answer": "inner_circle", "hint": "synonyms for inner circle", "clues": ["clique", "coterie", "pack", "camp", "ingroup", "inner circle"]}, {"answer": "inner_light", "hint": "synonyms for inner light", "clues": ["Christ Within", "Inner Light", "Light Within", "Light"]}, {"answer": "innocence", "hint": "synonyms for innocence", "clues": ["sinlessness", "whiteness", "naturalness", "artlessness", "pureness", "ingenuousness", "purity", "innocence"]}, {"answer": "innovation", "hint": "synonyms for innovation", "clues": ["creation", "instauration", "design", "institution", "foundation", "conception", "invention", "excogitation", "introduction", "founding", "origination", "initiation", "innovation"]}, {"answer": "input", "hint": "synonyms for input", "clues": ["stimulus", "stimulation", "stimulant", "input signal", "remark", "comment", "input"]}, {"answer": "inquirer", "hint": "synonyms for inquirer", "clues": ["asker", "questioner", "enquirer", "querier"]}, {"answer": "inquiry", "hint": "synonyms for inquiry", "clues": ["enquiry", "question", "interrogation", "query", "research"]}, {"answer": "ins", "hint": "synonyms for ins", "clues": ["inch", "Hoosier State", "atomic number 49", "Indiana", "IN", "Immigration and Naturalization Service", "indium"]}, {"answer": "insane_asylum", "hint": "synonyms for insane asylum", "clues": ["mental institution", "asylum", "institution", "mental hospital", "mental home", "psychiatric hospital", "insane asylum"]}, {"answer": "insensibility", "hint": "synonyms for insensibility", "clues": ["hardness", "callosity", "callousness", "unfeelingness", "insensibility"]}, {"answer": "insight", "hint": "synonyms for insight", "clues": ["perceptiveness", "perceptivity", "sixth sense", "penetration", "brainwave", "brainstorm", "insight"]}, {"answer": "insipidity", "hint": "synonyms for insipidity", "clues": ["dreariness", "insipidness", "boringness", "blandness", "insipidity"]}, {"answer": "insipidness", "hint": "synonyms for insipidness", "clues": ["dreariness", "boringness", "insipidity", "blandness", "insipidness"]}, {"answer": "insistence", "hint": "synonyms for insistence", "clues": ["pressure", "press", "insistency", "insisting", "imperativeness"]}, {"answer": "insistency", "hint": "synonyms for insistency", "clues": ["press", "insistence", "pressure", "imperativeness"]}, {"answer": "insobriety", "hint": "synonyms for insobriety", "clues": ["drunkenness", "tipsiness", "inebriety", "inebriation", "intoxication", "insobriety"]}, {"answer": "insolation", "hint": "synonyms for insolation", "clues": ["siriasis", "sunstroke", "thermic fever", "heliotherapy", "insolation"]}, {"answer": "insolence", "hint": "synonyms for insolence", "clues": ["crust", "impertinence", "gall", "cheekiness", "impudence", "freshness", "insolence"]}, {"answer": "inspiration", "hint": "synonyms for inspiration", "clues": ["intake", "inhalation", "divine guidance", "breathing in", "aspiration", "stirring", "brainchild"]}, {"answer": "installation", "hint": "synonyms for installation", "clues": ["instalment", "facility", "induction", "installing", "initiation", "installation"]}, {"answer": "installment", "hint": "synonyms for installment", "clues": ["instalment", "installation", "episode", "installing"]}, {"answer": "instalment", "hint": "synonyms for instalment", "clues": ["installation", "installment", "episode", "installing"]}, {"answer": "instance", "hint": "synonyms for instance", "clues": ["representative", "case", "illustration", "example", "instance"]}, {"answer": "instancy", "hint": "synonyms for instancy", "clues": ["instantaneousness", "immediacy", "imperativeness", "immediateness", "instancy"]}, {"answer": "instauration", "hint": "synonyms for instauration", "clues": ["creation", "institution", "foundation", "introduction", "founding", "innovation", "origination", "initiation", "instauration"]}, {"answer": "instigant", "hint": "synonyms for instigant", "clues": ["instigator", "firebrand", "provoker", "inciter", "instigant"]}, {"answer": "instigator", "hint": "synonyms for instigator", "clues": ["provoker", "inciter", "firebrand", "instigant", "initiator", "instigator"]}, {"answer": "instinctive_reflex", "hint": "synonyms for instinctive reflex", "clues": ["unconditioned reflex", "inborn reflex", "reflex response", "innate reflex", "reflex", "reflex action", "physiological reaction", "instinctive reflex"]}, {"answer": "institution", "hint": "synonyms for institution", "clues": ["creation", "instauration", "mental hospital", "mental home", "foundation", "establishment", "introduction", "founding", "mental institution", "innovation", "insane asylum", "asylum", "psychiatric hospital", "origination", "initiation", "institution"]}, {"answer": "instruction", "hint": "synonyms for instruction", "clues": ["statement", "teaching", "education", "didactics", "program line", "pedagogy", "educational activity", "command", "direction", "instruction"]}, {"answer": "instructions", "hint": "synonyms for instructions", "clues": ["book of instructions", "operating instructions", "statement", "teaching", "instruction", "education", "instruction manual", "didactics", "program line", "pedagogy", "educational activity", "command", "direction"]}, {"answer": "instrument", "hint": "synonyms for instrument", "clues": ["official document", "tool", "instrumental role", "legal instrument", "pawn", "musical instrument", "cat's-paw", "legal document", "instrument"]}, {"answer": "instrument_panel", "hint": "synonyms for instrument panel", "clues": ["panel", "board", "control panel", "control board", "instrument panel"]}, {"answer": "insulation", "hint": "synonyms for insulation", "clues": ["insularism", "detachment", "insularity", "insulating material", "insulant", "insulation"]}, {"answer": "insulin-dependent_diabetes_mellitus", "hint": "synonyms for insulin-dependent diabetes mellitus", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "insult", "hint": "synonyms for insult", "clues": ["vilification", "affront", "abuse", "revilement", "contumely", "insult"]}, {"answer": "insurance_company", "hint": "synonyms for insurance company", "clues": ["insurance firm", "underwriter", "insurance underwriter", "insurer", "insurance company"]}, {"answer": "insurance_firm", "hint": "synonyms for insurance firm", "clues": ["underwriter", "insurance company", "insurer", "insurance underwriter", "insurance firm"]}, {"answer": "insurance_underwriter", "hint": "synonyms for insurance underwriter", "clues": ["insurance firm", "underwriter", "insurance company", "insurer", "insurance underwriter"]}, {"answer": "insurer", "hint": "synonyms for insurer", "clues": ["insurance firm", "underwriter", "insurance company", "insurance underwriter", "insurer"]}, {"answer": "insurrection", "hint": "synonyms for insurrection", "clues": ["rebellion", "rising", "revolt", "insurrection"]}, {"answer": "intake", "hint": "synonyms for intake", "clues": ["inlet", "ingestion", "consumption", "inspiration", "uptake", "breathing in", "inhalation", "intake"]}, {"answer": "intellect", "hint": "synonyms for intellect", "clues": ["mind", "reason", "intellectual", "understanding"]}, {"answer": "intellection", "hint": "synonyms for intellection", "clues": ["thought", "thinking", "mentation", "cerebration", "thought process", "intellection"]}, {"answer": "intelligence", "hint": "synonyms for intelligence", "clues": ["intelligence service", "news", "tidings", "intelligence agency", "intelligence activity", "intelligence operation", "word", "intelligence"]}, {"answer": "intelligence_community", "hint": "synonyms for intelligence community", "clues": ["United States Intelligence Community", "Intelligence Community", "IC", "National Intelligence Community"]}, {"answer": "intensity", "hint": "synonyms for intensity", "clues": ["volume", "intensity level", "strength", "chroma", "vividness", "intensiveness", "saturation", "loudness", "intensity"]}, {"answer": "intention", "hint": "synonyms for intention", "clues": ["design", "purpose", "aim", "intent", "intention"]}, {"answer": "interahamwe", "hint": "synonyms for interahamwe", "clues": ["ALIR", "Interahamwe", "FAR", "Army for the Liberation of Rwanda", "Former Armed Forces"]}, {"answer": "interbreeding", "hint": "synonyms for interbreeding", "clues": ["hybridization", "crossbreeding", "miscegenation", "hybridizing", "cross", "interbreeding"]}, {"answer": "intercessor", "hint": "synonyms for intercessor", "clues": ["mediator", "intermediator", "go-between", "intercessor"]}, {"answer": "intercourse", "hint": "synonyms for intercourse", "clues": ["coitus", "sex act", "social intercourse", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "sexual relation", "sexual intercourse", "copulation", "intercourse"]}, {"answer": "interest", "hint": "synonyms for interest", "clues": ["interest group", "interestingness", "sake", "pursuit", "pastime", "involvement", "interest"]}, {"answer": "interference", "hint": "synonyms for interference", "clues": ["hitch", "preventative", "hinderance", "disturbance", "incumbrance", "noise", "intervention", "interference"]}, {"answer": "interior_decorator", "hint": "synonyms for interior decorator", "clues": ["decorator", "designer", "room decorator", "house decorator", "interior designer", "interior decorator"]}, {"answer": "interior_department", "hint": "synonyms for interior department", "clues": ["DoI", "Interior Department", "Department of the Interior", "Interior"]}, {"answer": "interior_designer", "hint": "synonyms for interior designer", "clues": ["decorator", "room decorator", "designer", "interior decorator", "house decorator", "interior designer"]}, {"answer": "interjection", "hint": "synonyms for interjection", "clues": ["interpolation", "ejaculation", "interposition", "interjection"]}, {"answer": "intermediary", "hint": "synonyms for intermediary", "clues": ["intermediator", "intercessor", "go-between", "mediator"]}, {"answer": "intermediator", "hint": "synonyms for intermediator", "clues": ["mediator", "intercessor", "go-between", "intermediary"]}, {"answer": "interment", "hint": "synonyms for interment", "clues": ["inhumation", "burial", "entombment", "sepulture", "interment"]}, {"answer": "intermission", "hint": "synonyms for intermission", "clues": ["break", "pause", "suspension", "interruption", "intermission"]}, {"answer": "intermittent_cramp", "hint": "synonyms for intermittent cramp", "clues": ["tetanilla", "intermittent tetanus", "apyretic tetanus", "tetany", "intermittent cramp"]}, {"answer": "intermittent_tetanus", "hint": "synonyms for intermittent tetanus", "clues": ["tetanilla", "apyretic tetanus", "intermittent cramp", "tetany", "intermittent tetanus"]}, {"answer": "intermixture", "hint": "synonyms for intermixture", "clues": ["mixture", "concoction", "mixing", "commixture", "intermixture"]}, {"answer": "internal_revenue_agent", "hint": "synonyms for internal revenue agent", "clues": ["collector of internal revenue", "tax collector", "exciseman", "taxman", "internal revenue agent"]}, {"answer": "international_mile", "hint": "synonyms for international mile", "clues": ["land mile", "mile", "statute mile", "mi", "stat mi", "international mile"]}, {"answer": "international_nautical_mile", "hint": "synonyms for international nautical mile", "clues": ["mile", "mi", "nautical mile", "naut mi", "air mile", "knot", "international nautical mile"]}, {"answer": "international_system", "hint": "synonyms for international system", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "international_system_of_units", "hint": "synonyms for international system of units", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "internment", "hint": "synonyms for internment", "clues": ["impoundment", "imprisonment", "poundage", "impounding", "internment"]}, {"answer": "interpolation", "hint": "synonyms for interpolation", "clues": ["interjection", "interpellation", "insertion", "interposition"]}, {"answer": "interposition", "hint": "synonyms for interposition", "clues": ["interjection", "interpellation", "intervention", "interposition"]}, {"answer": "interpretation", "hint": "synonyms for interpretation", "clues": ["reading", "version", "rendition", "rendering", "interpreting", "interpretation"]}, {"answer": "interpreter", "hint": "synonyms for interpreter", "clues": ["spokesperson", "representative", "voice", "translator", "interpretive program", "interpreter"]}, {"answer": "interrogation", "hint": "synonyms for interrogation", "clues": ["inquiry", "interrogative sentence", "interrogatory", "question", "examination", "query", "interrogative", "interrogation"]}, {"answer": "interruption", "hint": "synonyms for interruption", "clues": ["break", "intermission", "gap", "disruption", "suspension", "pause", "interruption"]}, {"answer": "intersection", "hint": "synonyms for intersection", "clues": ["crossway", "overlap", "intersection point", "crossing", "Cartesian product", "crossroad", "carrefour", "convergence", "point of intersection", "product", "intersection"]}, {"answer": "intersex", "hint": "synonyms for intersex", "clues": ["hermaphrodite", "gynandromorph", "epicene", "epicene person", "androgyne", "intersex"]}, {"answer": "intervention", "hint": "synonyms for intervention", "clues": ["intercession", "interference", "treatment", "interposition", "intervention"]}, {"answer": "intimacy", "hint": "synonyms for intimacy", "clues": ["affair", "liaison", "closeness", "amour", "involvement", "familiarity", "intimacy"]}, {"answer": "intimation", "hint": "synonyms for intimation", "clues": ["breath", "hint", "glimmer", "inkling", "intimation"]}, {"answer": "intoxication", "hint": "synonyms for intoxication", "clues": ["tipsiness", "drunkenness", "toxic condition", "inebriety", "inebriation", "poisoning", "insobriety", "intoxication"]}, {"answer": "introduction", "hint": "synonyms for introduction", "clues": ["unveiling", "creation", "instauration", "launching", "debut", "presentation", "insertion", "first appearance", "institution", "entry", "foundation", "founding", "innovation", "intromission", "origination", "initiation", "intro", "introduction"]}, {"answer": "intrusion", "hint": "synonyms for intrusion", "clues": ["trespass", "invasion", "usurpation", "violation", "encroachment", "intrusion"]}, {"answer": "inundation", "hint": "synonyms for inundation", "clues": ["deluge", "alluvion", "torrent", "flood", "inundation"]}, {"answer": "invention", "hint": "synonyms for invention", "clues": ["conception", "excogitation", "innovation", "design", "invention"]}, {"answer": "inventory", "hint": "synonyms for inventory", "clues": ["stock-taking", "stock list", "armory", "stock", "inventorying"]}, {"answer": "inversion", "hint": "synonyms for inversion", "clues": ["sexual inversion", "upending", "eversion", "anastrophe", "everting", "inversion"]}, {"answer": "investigator", "hint": "synonyms for investigator", "clues": ["police detective", "tec", "detective", "researcher", "research worker", "investigator"]}, {"answer": "investiture", "hint": "synonyms for investiture", "clues": ["enthronisation", "enthronement", "investment", "coronation", "investiture"]}, {"answer": "invigoration", "hint": "synonyms for invigoration", "clues": ["spiritedness", "vivification", "animation", "brio", "invigoration"]}, {"answer": "invocation", "hint": "synonyms for invocation", "clues": ["supplication", "conjuration", "conjuring", "conjury", "invocation"]}, {"answer": "involution", "hint": "synonyms for involution", "clues": ["elaboration", "enfolding", "exponentiation", "intricacy", "engagement", "participation", "involvement", "elaborateness", "involution"]}, {"answer": "involvement", "hint": "synonyms for involvement", "clues": ["interest", "intimacy", "participation", "engagement", "affaire", "liaison", "amour", "involution", "involvement"]}, {"answer": "inwardness", "hint": "synonyms for inwardness", "clues": ["marrow", "core", "sum", "gist", "essence", "heart and soul", "centre", "meat", "nitty-gritty", "center", "kernel", "nub", "substance", "heart", "pith", "internality", "inwardness"]}, {"answer": "iodine", "hint": "synonyms for iodine", "clues": ["atomic number 53", "iodin", "tincture of iodine", "I"]}, {"answer": "ionic_dialect", "hint": "synonyms for ionic dialect", "clues": ["Attic", "Ionic", "Ionic dialect", "Classical Greek"]}, {"answer": "ionic_medication", "hint": "synonyms for ionic medication", "clues": ["electromotive drug administration", "iontophoresis", "EMDA", "iontotherapy", "ionic medication"]}, {"answer": "iontophoresis", "hint": "synonyms for iontophoresis", "clues": ["electromotive drug administration", "ionic medication", "EMDA", "iontotherapy", "iontophoresis"]}, {"answer": "iontotherapy", "hint": "synonyms for iontotherapy", "clues": ["electromotive drug administration", "iontophoresis", "ionic medication", "EMDA", "iontotherapy"]}, {"answer": "iota", "hint": "synonyms for iota", "clues": ["tittle", "smidgin", "smidge", "shred", "whit", "scintilla", "iota"]}, {"answer": "ip", "hint": "synonyms for ip", "clues": ["informatics", "information processing", "information science", "IP"]}, {"answer": "ir", "hint": "synonyms for ir", "clues": ["atomic number 77", "iridium", "Inland Revenue", "Ir"]}, {"answer": "ira", "hint": "synonyms for ira", "clues": ["Irish Republican Army", "anger", "individual retirement account", "IRA", "wrath", "ire", "Provisional Irish Republican Army", "Provos", "Provisional IRA"]}, {"answer": "irak", "hint": "synonyms for irak", "clues": ["Al-Iraq", "Iraq", "Republic of Iraq", "Irak"]}, {"answer": "iraq", "hint": "synonyms for iraq", "clues": ["Al-Iraq", "Iraq", "Republic of Iraq", "Irak"]}, {"answer": "ire", "hint": "synonyms for ire", "clues": ["anger", "wrath", "choler", "ira", "ire"]}, {"answer": "ireland", "hint": "synonyms for ireland", "clues": ["Hibernia", "Eire", "Ireland", "Irish Republic", "Republic of Ireland", "Emerald Isle"]}, {"answer": "irish_bull", "hint": "synonyms for irish bull", "clues": ["crap", "bull", "dogshit", "horseshit", "shit", "bullshit", "Irish bull"]}, {"answer": "irish_national_liberation_army", "hint": "synonyms for irish national liberation army", "clues": ["People's Liberation Army", "People's Republican Army", "Catholic Reaction Force", "Irish National Liberation Army", "INLA"]}, {"answer": "irish_potato", "hint": "synonyms for irish potato", "clues": ["Irish potato", "potato", "murphy", "spud", "white potato", "tater"]}, {"answer": "irish_republic", "hint": "synonyms for irish republic", "clues": ["Irish Republic", "Republic of Ireland", "Eire", "Ireland"]}, {"answer": "irish_republican_army", "hint": "synonyms for irish republican army", "clues": ["Irish Republican Army", "IRA", "Provisional Irish Republican Army", "Provos", "Provisional IRA"]}, {"answer": "iron_blue", "hint": "synonyms for iron blue", "clues": ["steel gray", "Davy's grey", "Prussian blue", "iron blue"]}, {"answer": "iron_chancellor", "hint": "synonyms for iron chancellor", "clues": ["Prince Otto Eduard Leopold von Bismarck", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "iron_duke", "hint": "synonyms for iron duke", "clues": ["Iron Duke", "Duke of Wellington", "Arthur Wellesley", "Wellington"]}, {"answer": "iron_lady", "hint": "synonyms for iron lady", "clues": ["Margaret Hilda Thatcher", "Thatcher", "Iron Lady", "Baroness Thatcher of Kesteven"]}, {"answer": "irons", "hint": "synonyms for irons", "clues": ["branding iron", "Fe", "chains", "iron", "atomic number 26", "smoothing iron"]}, {"answer": "iroquois_league", "hint": "synonyms for iroquois league", "clues": ["Iroquois League", "Five Nations", "Six Nations", "League of Iroquois"]}, {"answer": "irradiation", "hint": "synonyms for irradiation", "clues": ["beam of light", "shaft of light", "ray of light", "beam", "radiation therapy", "light beam", "shaft", "actinotherapy", "radiotherapy", "ray", "radiation"]}, {"answer": "irregularity", "hint": "synonyms for irregularity", "clues": ["constipation", "abnormality", "unregularity", "geometrical irregularity", "irregularity"]}, {"answer": "irritability", "hint": "synonyms for irritability", "clues": ["petulance", "peevishness", "crossness", "choler", "excitability", "temper", "fussiness", "surliness", "pettishness", "fretfulness", "biliousness", "snappishness", "irritability"]}, {"answer": "irritation", "hint": "synonyms for irritation", "clues": ["botheration", "provocation", "excitation", "soreness", "annoying", "aggravation", "temper", "vexation", "annoyance", "discomfort", "pique", "innervation", "irritation"]}, {"answer": "isak_dinesen", "hint": "synonyms for isak dinesen", "clues": ["Dinesen", "Isak Dinesen", "Karen Blixen", "Baroness Karen Blixen", "Blixen"]}, {"answer": "ischia", "hint": "synonyms for ischia", "clues": ["Ischia", "os ischii", "ischium", "ischial bone"]}, {"answer": "ishmael", "hint": "synonyms for ishmael", "clues": ["outcast", "Ishmael", "castaway", "pariah"]}, {"answer": "islam", "hint": "synonyms for islam", "clues": ["Muslimism", "Islamism", "Islam", "Muhammadanism", "Mohammedanism"]}, {"answer": "islam_nation", "hint": "synonyms for islam nation", "clues": ["Muslim Ummah", "Islam Nation", "Islamic Ummah", "Umma"]}, {"answer": "islamic_community", "hint": "synonyms for islamic community", "clues": ["Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "islamic_group", "hint": "synonyms for islamic group", "clues": ["al-Gama'a al-Islamiyya", "Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "islamic_jihad", "hint": "synonyms for islamic jihad", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Vanguards of Conquest", "Party of God", "Organization of the Oppressed on Earth", "al-Jihad", "Egyptian Islamic Jihad", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "islamic_jihad_for_the_liberation_of_palestine", "hint": "synonyms for islamic jihad for the liberation of palestine", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "islamic_ummah", "hint": "synonyms for islamic ummah", "clues": ["Muslim Ummah", "Islam Nation", "Islamic Ummah", "Umma"]}, {"answer": "islamism", "hint": "synonyms for islamism", "clues": ["Islamism", "Muslimism", "Islam", "Muhammadanism", "Mohammedanism"]}, {"answer": "ism", "hint": "synonyms for ism", "clues": ["philosophical system", "doctrine", "philosophy", "school of thought", "ism"]}, {"answer": "isobutylphenyl_propionic_acid", "hint": "synonyms for isobutylphenyl propionic acid", "clues": ["Nuprin", "ibuprofen", "Advil", "Motrin", "isobutylphenyl propionic acid"]}, {"answer": "isole_egadi", "hint": "synonyms for isole egadi", "clues": ["Aegadean Isles", "Aegates", "Egadi Islands", "Isole Egadi"]}, {"answer": "israel", "hint": "synonyms for israel", "clues": ["Sion", "Zion", "State of Israel", "Israel"]}, {"answer": "issue", "hint": "synonyms for issue", "clues": ["topic", "event", "outcome", "subject", "government issue", "military issue", "effect", "issuance", "result", "yield", "consequence", "issuing", "matter", "outlet", "take", "return", "upshot", "egress", "exit", "number", "publication", "payoff", "proceeds", "offspring", "progeny", "emergence", "takings", "way out", "issue"]}, {"answer": "italian_capital", "hint": "synonyms for italian capital", "clues": ["Rome", "Eternal City", "capital of Italy", "Roma", "Italian capital"]}, {"answer": "italian_sandwich", "hint": "synonyms for italian sandwich", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich"]}, {"answer": "itch", "hint": "synonyms for itch", "clues": ["scabies", "itchiness", "itching", "urge"]}, {"answer": "itinerary", "hint": "synonyms for itinerary", "clues": ["route", "path", "travel plan", "travel guidebook", "itinerary"]}, {"answer": "ives", "hint": "synonyms for ives", "clues": ["James Merritt Ives", "Charles Edward Ives", "James Ives", "Ives"]}, {"answer": "ivory", "hint": "synonyms for ivory", "clues": ["pearl", "bone", "tusk", "off-white", "ivory"]}, {"answer": "izzard", "hint": "synonyms for izzard", "clues": ["z", "zee", "ezed", "izzard"]}, {"answer": "j._m._barrie", "hint": "synonyms for j. m. barrie", "clues": ["Sir James Matthew Barrie", "Barrie", "J. M. Barrie", "James Barrie"]}, {"answer": "jab", "hint": "synonyms for jab", "clues": ["poking", "thrusting", "jabbing", "poke", "dig", "jab"]}, {"answer": "jabbing", "hint": "synonyms for jabbing", "clues": ["poking", "thrusting", "poke", "jab", "jabbing"]}, {"answer": "jack", "hint": "synonyms for jack", "clues": ["Jack", "old salt", "doodly-squat", "squat", "diddlysquat", "manual laborer", "diddley", "shit", "gob", "jackfruit", "mariner", "diddlyshit", "laborer", "seafarer", "sea dog", "jackstones", "knave", "seaman", "Jack-tar", "tar"]}, {"answer": "jack-tar", "hint": "synonyms for jack-tar", "clues": ["Jack", "old salt", "mariner", "seafarer", "sea dog", "seaman", "gob", "Jack-tar", "tar"]}, {"answer": "jack_dempsey", "hint": "synonyms for jack dempsey", "clues": ["Dempsey", "Manassa Mauler", "William Harrison Dempsey", "Jack Dempsey"]}, {"answer": "jack_kennedy", "hint": "synonyms for jack kennedy", "clues": ["President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "John Fitzgerald Kennedy", "Kennedy"]}, {"answer": "jackass", "hint": "synonyms for jackass", "clues": ["fathead", "goofball", "goose", "goof", "bozo", "cuckoo", "zany", "twat", "jackass"]}, {"answer": "jackboot", "hint": "synonyms for jackboot", "clues": ["Hessian boot", "Wellington boot", "hessian", "Wellington", "jackboot"]}, {"answer": "jacket", "hint": "synonyms for jacket", "clues": ["crownwork", "crown", "jacket crown", "cap", "jacket"]}, {"answer": "jacket_crown", "hint": "synonyms for jacket crown", "clues": ["jacket", "crownwork", "crown", "cap", "jacket crown"]}, {"answer": "jacks", "hint": "synonyms for jacks", "clues": ["Jack", "old salt", "doodly-squat", "squat", "diddlysquat", "manual laborer", "knucklebones", "diddley", "shit", "gob", "jackfruit", "mariner", "diddlyshit", "laborer", "seafarer", "sea dog", "jackstones", "knave", "seaman", "Jack-tar", "tar"]}, {"answer": "jackson", "hint": "synonyms for jackson", "clues": ["Jackson", "Jesse Louis Jackson", "Mahalia Jackson", "Helen Maria Fiske Hunt Jackson", "Michael Jackson", "Thomas Jonathan Jackson", "Stonewall Jackson", "Jesse Jackson", "Thomas J. Jackson", "capital of Mississippi", "Helen Hunt Jackson", "Old Hickory", "Glenda Jackson", "Andrew Jackson"]}, {"answer": "jacob_harmensen", "hint": "synonyms for jacob harmensen", "clues": ["Jacobus Arminius", "Jacob Harmensen", "Arminius", "Jakob Hermandszoon"]}, {"answer": "jacobs", "hint": "synonyms for jacobs", "clues": ["Francois Jacob", "Aletta Jacobs", "Jane Jacobs", "Jacob", "William Wymark Jacobs", "W. W. Jacobs"]}, {"answer": "jacobus_arminius", "hint": "synonyms for jacobus arminius", "clues": ["Jacobus Arminius", "Jacob Harmensen", "Arminius", "Jakob Hermandszoon"]}, {"answer": "jahvey", "hint": "synonyms for jahvey", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "jahweh", "hint": "synonyms for jahweh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "jail", "hint": "synonyms for jail", "clues": ["pokey", "gaol", "clink", "slammer", "jailhouse", "jail"]}, {"answer": "jailbreak", "hint": "synonyms for jailbreak", "clues": ["break", "prison-breaking", "prisonbreak", "gaolbreak", "breakout", "jailbreak"]}, {"answer": "jailer", "hint": "synonyms for jailer", "clues": ["prison guard", "jailor", "turnkey", "screw", "gaoler", "jailer"]}, {"answer": "jailhouse", "hint": "synonyms for jailhouse", "clues": ["pokey", "gaol", "jail", "clink", "slammer", "jailhouse"]}, {"answer": "jailor", "hint": "synonyms for jailor", "clues": ["prison guard", "jailer", "gaoler", "screw", "turnkey", "jailor"]}, {"answer": "jaish-e-muhammad", "hint": "synonyms for jaish-e-muhammad", "clues": ["Jaish-e-Muhammad", "Army of Muhammad", "Jaish-i-Mohammed", "JEM"]}, {"answer": "jaish-i-mohammed", "hint": "synonyms for jaish-i-mohammed", "clues": ["Jaish-e-Muhammad", "Army of Muhammad", "Jaish-i-Mohammed", "JEM"]}, {"answer": "jakob_behmen", "hint": "synonyms for jakob behmen", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "jakob_boehm", "hint": "synonyms for jakob boehm", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "jakob_boehme", "hint": "synonyms for jakob boehme", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "jakob_bohme", "hint": "synonyms for jakob bohme", "clues": ["Jakob Boehm", "Behmen", "Bohme", "Boehm"]}, {"answer": "jakob_hermandszoon", "hint": "synonyms for jakob hermandszoon", "clues": ["Jacobus Arminius", "Jacob Harmensen", "Arminius", "Jakob Hermandszoon"]}, {"answer": "jam", "hint": "synonyms for jam", "clues": ["muddle", "crush", "kettle of fish", "mess", "jamming", "electronic jamming", "pickle", "fix", "press", "hole", "jam"]}, {"answer": "james", "hint": "synonyms for james", "clues": ["Henry James", "James I", "James River", "Saint James the Apostle", "King James", "William James", "St. James", "Saint James", "Epistle of James", "James", "Jesse James"]}, {"answer": "james_a._garfield", "hint": "synonyms for james a. garfield", "clues": ["James A. Garfield", "Garfield", "James Abraham Garfield", "President Garfield"]}, {"answer": "james_abraham_garfield", "hint": "synonyms for james abraham garfield", "clues": ["James A. Garfield", "Garfield", "James Abraham Garfield", "President Garfield"]}, {"answer": "james_augustus_henry_murray", "hint": "synonyms for james augustus henry murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "james_augustus_murray", "hint": "synonyms for james augustus murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "james_barrie", "hint": "synonyms for james barrie", "clues": ["Sir James Matthew Barrie", "Barrie", "J. M. Barrie", "James Barrie"]}, {"answer": "james_buchanan_brady", "hint": "synonyms for james buchanan brady", "clues": ["James Buchanan Brady", "Brady", "Diamond Jim", "Diamond Jim Brady"]}, {"answer": "james_cook", "hint": "synonyms for james cook", "clues": ["Cook", "Captain James Cook", "James Cook", "Captain Cook"]}, {"answer": "james_earl_carter", "hint": "synonyms for james earl carter", "clues": ["Jimmy Carter", "James Earl Carter Jr.", "President Carter", "Carter"]}, {"answer": "james_earl_carter_jr.", "hint": "synonyms for james earl carter jr.", "clues": ["Jimmy Carter", "James Earl Carter Jr.", "President Carter", "Carter"]}, {"answer": "james_garfield", "hint": "synonyms for james garfield", "clues": ["James A. Garfield", "Garfield", "James Abraham Garfield", "President Garfield"]}, {"answer": "james_john_corbett", "hint": "synonyms for james john corbett", "clues": ["Gentleman Jim", "Corbett", "James John Corbett", "Jim Corbett"]}, {"answer": "james_k._polk", "hint": "synonyms for james k. polk", "clues": ["James Knox Polk", "Polk", "President Polk", "James Polk"]}, {"answer": "james_knox_polk", "hint": "synonyms for james knox polk", "clues": ["James Knox Polk", "Polk", "President Polk", "James Polk"]}, {"answer": "james_matthew_barrie", "hint": "synonyms for james matthew barrie", "clues": ["Sir James Matthew Barrie", "Barrie", "J. M. Barrie", "James Barrie"]}, {"answer": "james_murray", "hint": "synonyms for james murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "james_polk", "hint": "synonyms for james polk", "clues": ["James Knox Polk", "Polk", "President Polk", "James Polk"]}, {"answer": "january_1", "hint": "synonyms for january 1", "clues": ["New Year's", "Feast of the Circumcision", "Circumcision", "New Year's Day", "Solemnity of Mary", "January 1"]}, {"answer": "january_19", "hint": "synonyms for january 19", "clues": ["Robert E Lee Day", "Lee's Birthday", "Robert E Lee's Birthday", "January 19"]}, {"answer": "january_6", "hint": "synonyms for january 6", "clues": ["Three Kings' Day", "Epiphany of Our Lord", "Epiphany", "Twelfth day", "January 6"]}, {"answer": "japan", "hint": "synonyms for japan", "clues": ["Nihon", "Japanese Islands", "Nippon", "Japan", "Japanese Archipelago"]}, {"answer": "japanese_capital", "hint": "synonyms for japanese capital", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "jape", "hint": "synonyms for jape", "clues": ["jest", "joke", "laugh", "gag", "jape"]}, {"answer": "japery", "hint": "synonyms for japery", "clues": ["clowning", "frivolity", "harlequinade", "prank", "buffoonery", "japery"]}, {"answer": "jar", "hint": "synonyms for jar", "clues": ["jolt", "jarful", "shock", "jounce", "jar"]}, {"answer": "jargon", "hint": "synonyms for jargon", "clues": ["lingo", "argot", "vernacular", "cant", "jargoon", "slang", "patois"]}, {"answer": "jaundice", "hint": "synonyms for jaundice", "clues": ["bitterness", "tartness", "acrimony", "thorniness", "acerbity", "icterus", "jaundice"]}, {"answer": "jaunt", "hint": "synonyms for jaunt", "clues": ["excursion", "sashay", "expedition", "pleasure trip", "junket", "outing", "jaunt"]}, {"answer": "jauntiness", "hint": "synonyms for jauntiness", "clues": ["nattiness", "rakishness", "breeziness", "dapperness", "jauntiness"]}, {"answer": "jawbone", "hint": "synonyms for jawbone", "clues": ["mandible", "mandibular bone", "lower jaw", "submaxilla", "lower jawbone", "mandibula", "jowl", "jawbone"]}, {"answer": "jazz", "hint": "synonyms for jazz", "clues": ["malarky", "wind", "idle words", "nothingness", "jazz"]}, {"answer": "jean_baptiste_lully", "hint": "synonyms for jean baptiste lully", "clues": ["Giambattista Lulli", "Lully", "Jean Baptiste Lully", "Lulli"]}, {"answer": "jehovah", "hint": "synonyms for jehovah", "clues": ["Godhead", "Almighty", "YHVH", "Yahwe", "Yahve", "Jahweh", "Jehovah", "Creator", "Lord", "Wahvey", "Jahvey", "Maker", "YHWH", "Divine", "God Almighty", "JHVH"]}, {"answer": "jejuneness", "hint": "synonyms for jejuneness", "clues": ["vapidity", "juvenility", "tameness", "jejunity", "vapidness", "callowness", "jejuneness"]}, {"answer": "jejunity", "hint": "synonyms for jejunity", "clues": ["vapidity", "tameness", "vapidness", "jejuneness", "jejunity"]}, {"answer": "jem", "hint": "synonyms for jem", "clues": ["Jaish-e-Muhammad", "Army of Muhammad", "Jaish-i-Mohammed", "JEM"]}, {"answer": "jemaah_islamiyah", "hint": "synonyms for jemaah islamiyah", "clues": ["Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "jenghiz_khan", "hint": "synonyms for jenghiz khan", "clues": ["Temujin", "Jenghiz Khan", "Jinghis Khan", "Genghis Khan"]}, {"answer": "jeopardy", "hint": "synonyms for jeopardy", "clues": ["endangerment", "hazard", "peril", "risk", "jeopardy"]}, {"answer": "jerk", "hint": "synonyms for jerk", "clues": ["dork", "saccade", "tug", "jerky", "jolt", "jerking", "jerked meat"]}, {"answer": "jerome", "hint": "synonyms for jerome", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "jerry", "hint": "synonyms for jerry", "clues": ["Jerry", "Boche", "Hun", "Krauthead", "Kraut"]}, {"answer": "jersey", "hint": "synonyms for jersey", "clues": ["Garden State", "Jersey", "T-shirt", "island of Jersey", "New Jersey", "NJ", "tee shirt"]}, {"answer": "jersey_lillie", "hint": "synonyms for jersey lillie", "clues": ["Langtry", "Lillie Langtry", "Jersey Lillie", "Emilie Charlotte le Breton"]}, {"answer": "jest", "hint": "synonyms for jest", "clues": ["jocularity", "jape", "gag", "joke", "laugh", "jest"]}, {"answer": "jesus", "hint": "synonyms for jesus", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "jesus_christ", "hint": "synonyms for jesus christ", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "jesus_of_nazareth", "hint": "synonyms for jesus of nazareth", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "jet_black", "hint": "synonyms for jet black", "clues": ["soot black", "ebony", "pitch black", "coal black", "sable", "jet black"]}, {"answer": "jetty", "hint": "synonyms for jetty", "clues": ["mole", "groin", "seawall", "groyne", "bulwark", "breakwater", "jetty"]}, {"answer": "jfk", "hint": "synonyms for jfk", "clues": ["President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "John Fitzgerald Kennedy", "Kennedy"]}, {"answer": "jhvh", "hint": "synonyms for jhvh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "ji", "hint": "synonyms for ji", "clues": ["Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "jibe", "hint": "synonyms for jibe", "clues": ["shaft", "shot", "slam", "gibe", "dig", "barb", "jibe"]}, {"answer": "jiffy", "hint": "synonyms for jiffy", "clues": ["flash", "trice", "instant", "wink", "New York minute", "split second", "twinkling", "blink of an eye", "heartbeat", "jiffy"]}, {"answer": "jigaboo", "hint": "synonyms for jigaboo", "clues": ["coon", "nigra", "nigger", "nigga", "spade", "jigaboo"]}, {"answer": "jiggery-pokery", "hint": "synonyms for jiggery-pokery", "clues": ["skulduggery", "hocus-pocus", "slickness", "hanky panky", "trickery", "jiggery-pokery"]}, {"answer": "jigsaw", "hint": "synonyms for jigsaw", "clues": ["scroll saw", "reciprocating saw", "fretsaw", "saber saw", "jigsaw"]}, {"answer": "jim_corbett", "hint": "synonyms for jim corbett", "clues": ["Gentleman Jim", "Corbett", "James John Corbett", "Jim Corbett"]}, {"answer": "jimmy_carter", "hint": "synonyms for jimmy carter", "clues": ["Jimmy Carter", "James Earl Carter Jr.", "President Carter", "Carter"]}, {"answer": "jinghis_khan", "hint": "synonyms for jinghis khan", "clues": ["Temujin", "Jenghiz Khan", "Jinghis Khan", "Genghis Khan"]}, {"answer": "jingo", "hint": "synonyms for jingo", "clues": ["hundred-percenter", "chauvinist", "flag-waver", "patrioteer", "jingoist", "jingo"]}, {"answer": "jingoism", "hint": "synonyms for jingoism", "clues": ["superpatriotism", "ultranationalism", "flag waving", "chauvinism", "jingoism"]}, {"answer": "jingoist", "hint": "synonyms for jingoist", "clues": ["hundred-percenter", "jingo", "chauvinist", "flag-waver", "patrioteer", "jingoist"]}, {"answer": "jinnee", "hint": "synonyms for jinnee", "clues": ["jinni", "genie", "djinny", "jinnee"]}, {"answer": "jinni", "hint": "synonyms for jinni", "clues": ["genie", "djinni", "jinnee", "djinny"]}, {"answer": "jinx", "hint": "synonyms for jinx", "clues": ["curse", "whammy", "jonah", "hex", "jinx"]}, {"answer": "jitney", "hint": "synonyms for jitney", "clues": ["omnibus", "coach", "autobus", "motorcoach", "charabanc", "motorbus", "passenger vehicle", "double-decker", "bus", "jitney"]}, {"answer": "job", "hint": "synonyms for job", "clues": ["line of work", "problem", "line", "Job", "task", "Book of Job", "occupation", "chore", "business", "caper"]}, {"answer": "jock", "hint": "synonyms for jock", "clues": ["jockstrap", "athlete", "supporter", "athletic supporter", "suspensor", "jock"]}, {"answer": "jockstrap", "hint": "synonyms for jockstrap", "clues": ["athletic supporter", "jock", "suspensor", "supporter", "jockstrap"]}, {"answer": "jocosity", "hint": "synonyms for jocosity", "clues": ["humorousness", "jocularity", "jocoseness", "merriness", "jocosity"]}, {"answer": "jocularity", "hint": "synonyms for jocularity", "clues": ["jocundity", "jocosity", "joke", "jest", "jocularity"]}, {"answer": "jodhpurs", "hint": "synonyms for jodhpurs", "clues": ["jodhpur boot", "jodhpur", "jodhpur breeches", "riding breeches", "jodhpur shoe"]}, {"answer": "joe_bloggs", "hint": "synonyms for joe bloggs", "clues": ["Joe Bloggs", "John Doe", "Joe Blow", "man in the street"]}, {"answer": "joe_blow", "hint": "synonyms for joe blow", "clues": ["Joe Bloggs", "John Doe", "Joe Blow", "man in the street"]}, {"answer": "johann_strauss", "hint": "synonyms for johann strauss", "clues": ["Strauss the Elder", "Johann Strauss", "Strauss", "Strauss the Younger"]}, {"answer": "john", "hint": "synonyms for john", "clues": ["bathroom", "toilet", "whoremonger", "privy", "Saint John", "St. John the Apostle", "John Lackland", "can", "lavatory", "whoremaster", "John the Evangelist", "trick", "King John", "John the Divine", "lav", "Gospel According to John", "St. John", "John"]}, {"answer": "john_barleycorn", "hint": "synonyms for john barleycorn", "clues": ["John Barleycorn", "hard drink", "liquor", "booze", "spirits", "hard liquor", "strong drink"]}, {"answer": "john_doe", "hint": "synonyms for john doe", "clues": ["Joe Bloggs", "man in the street", "John Doe", "Joe Blow"]}, {"answer": "john_fitzgerald_kennedy", "hint": "synonyms for john fitzgerald kennedy", "clues": ["President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "John Fitzgerald Kennedy", "Kennedy"]}, {"answer": "john_quincy_adams", "hint": "synonyms for john quincy adams", "clues": ["President John Quincy Adams", "President Adams", "Adams", "John Quincy Adams"]}, {"answer": "john_rowlands", "hint": "synonyms for john rowlands", "clues": ["John Rowlands", "Sir Henry Morton Stanley", "Stanley", "Henry M. Stanley"]}, {"answer": "john_the_divine", "hint": "synonyms for john the divine", "clues": ["Saint John the Apostle", "Saint John", "St. John", "John the Evangelist", "John", "John the Divine"]}, {"answer": "john_the_evangelist", "hint": "synonyms for john the evangelist", "clues": ["Saint John the Apostle", "Saint John", "St. John", "John the Evangelist", "John", "John the Divine"]}, {"answer": "john_wickliffe", "hint": "synonyms for john wickliffe", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "john_wiclif", "hint": "synonyms for john wiclif", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "john_william_strutt", "hint": "synonyms for john william strutt", "clues": ["Rayleigh", "Lord Rayleigh", "Third Baron Rayleigh", "John William Strutt"]}, {"answer": "john_wyclif", "hint": "synonyms for john wyclif", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "john_wycliffe", "hint": "synonyms for john wycliffe", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "johnny", "hint": "synonyms for johnny", "clues": ["Johnny", "Reb", "Rebel", "Johnny Reb", "greyback"]}, {"answer": "johnny_reb", "hint": "synonyms for johnny reb", "clues": ["Johnny", "Reb", "Rebel", "Johnny Reb", "greyback"]}, {"answer": "johns", "hint": "synonyms for johns", "clues": ["bathroom", "john", "toilet", "whoremonger", "privy", "Saint John", "Jasper Johns", "St. John the Apostle", "John Lackland", "lavatory", "whoremaster", "John the Evangelist", "trick", "King John", "John the Divine", "lav", "Gospel According to John", "St. John", "can"]}, {"answer": "johnson", "hint": "synonyms for johnson", "clues": ["President Andrew Johnson", "Johnson", "Samuel Johnson", "Lyndon Johnson", "LBJ", "Andrew Johnson", "President Lyndon Johnson", "Dr. Johnson", "Lyndon Baines Johnson", "President Johnson"]}, {"answer": "join", "hint": "synonyms for join", "clues": ["articulation", "juncture", "union", "sum", "junction", "joint"]}, {"answer": "jointure", "hint": "synonyms for jointure", "clues": ["union", "unification", "conjugation", "legal jointure", "uniting", "jointure"]}, {"answer": "joke", "hint": "synonyms for joke", "clues": ["jocularity", "gag", "put-on", "trick", "prank", "jape", "antic", "jest", "laugh", "caper", "joke"]}, {"answer": "joliot-curie", "hint": "synonyms for joliot-curie", "clues": ["Irene Joliot-Curie", "Jean-Frederic Joliot-Curie", "Joliot-Curie", "Joliot"]}, {"answer": "jolly_roger", "hint": "synonyms for jolly roger", "clues": ["blackjack", "black flag", "Jolly Roger", "pirate flag"]}, {"answer": "jolt", "hint": "synonyms for jolt", "clues": ["jar", "shock", "saccade", "jounce", "jerking", "jolt"]}, {"answer": "jones", "hint": "synonyms for jones", "clues": ["Robert Tyre Jones", "Jones", "Bobby Jones", "John Luther Jones", "Mother Jones", "Casey Jones", "Inigo Jones", "Mary Harris Jones", "John Paul Jones", "Daniel Jones"]}, {"answer": "jongleur", "hint": "synonyms for jongleur", "clues": ["minstrel", "folk singer", "poet-singer", "troubadour", "jongleur"]}, {"answer": "jook", "hint": "synonyms for jook", "clues": ["congee", "jook joint", "jook house", "juke house", "juke", "juke joint", "jook"]}, {"answer": "jook_house", "hint": "synonyms for jook house", "clues": ["jook joint", "jook", "juke house", "juke", "juke joint", "jook house"]}, {"answer": "jook_joint", "hint": "synonyms for jook joint", "clues": ["jook house", "jook", "juke house", "juke", "juke joint", "jook joint"]}, {"answer": "joseph_warren_stilwell", "hint": "synonyms for joseph warren stilwell", "clues": ["Uncle Joe", "Stilwell", "Joseph Warren Stilwell", "Vinegar Joe Stilwell"]}, {"answer": "jot", "hint": "synonyms for jot", "clues": ["mite", "hint", "pinch", "speck", "touch", "jotting", "tinge", "soupcon", "jot"]}, {"answer": "joule", "hint": "synonyms for joule", "clues": ["watt second", "Joule", "James Prescott Joule", "J"]}, {"answer": "jowl", "hint": "synonyms for jowl", "clues": ["jawbone", "mandible", "mandibular bone", "lower jaw", "submaxilla", "lower jawbone", "mandibula", "jowl"]}, {"answer": "joy", "hint": "synonyms for joy", "clues": ["joyousness", "delight", "pleasure", "joyfulness", "joy"]}, {"answer": "jubilation", "hint": "synonyms for jubilation", "clues": ["jubilance", "exultation", "rejoicing", "celebration", "jubilation"]}, {"answer": "judas", "hint": "synonyms for judas", "clues": ["Jude", "Saint Jude", "Thaddaeus", "Juda", "Judas Iscariot", "St. Jude"]}, {"answer": "jude", "hint": "synonyms for jude", "clues": ["Jude", "Saint Jude", "Epistle of Jude", "Thaddaeus", "St. Jude", "Judas"]}, {"answer": "judgement", "hint": "synonyms for judgement", "clues": ["sound judgement", "discernment", "legal opinion", "judgment", "judicial decision", "sagacity", "assessment", "judging", "mind", "opinion", "perspicacity", "sagaciousness"]}, {"answer": "judgement_day", "hint": "synonyms for judgement day", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "judges", "hint": "synonyms for judges", "clues": ["judge", "justice", "jurist", "Book of Judges", "evaluator"]}, {"answer": "judgment", "hint": "synonyms for judgment", "clues": ["sound judgement", "discernment", "legal opinion", "judicial decision", "sagacity", "assessment", "judging", "mind", "judgement", "opinion", "perspicacity", "sagaciousness"]}, {"answer": "judgment_day", "hint": "synonyms for judgment day", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "judicature", "hint": "synonyms for judicature", "clues": ["court", "judicatory", "judgeship", "judicial system", "judiciary", "tribunal", "administration", "judicature"]}, {"answer": "judiciary", "hint": "synonyms for judiciary", "clues": ["judicatory", "judicature", "bench", "judicial system", "judiciary"]}, {"answer": "jugal_bone", "hint": "synonyms for jugal bone", "clues": ["cheekbone", "zygomatic bone", "malar bone", "os zygomaticum", "malar", "zygomatic", "jugal bone"]}, {"answer": "juggernaut", "hint": "synonyms for juggernaut", "clues": ["steamroller", "Jagganath", "Juggernaut", "Jagannatha"]}, {"answer": "jugoslavija", "hint": "synonyms for jugoslavija", "clues": ["Yugoslavia", "Union of Serbia and Montenegro", "Federal Republic of Yugoslavia", "Serbia and Montenegro"]}, {"answer": "juicer", "hint": "synonyms for juicer", "clues": ["toper", "imbiber", "reamer", "drinker", "juice reamer", "juicer"]}, {"answer": "juju", "hint": "synonyms for juju", "clues": ["voodoo", "fetich", "hoodoo", "fetish", "juju"]}, {"answer": "juke", "hint": "synonyms for juke", "clues": ["jook joint", "jook house", "jook", "juke house", "fake", "juke joint", "juke"]}, {"answer": "juke_house", "hint": "synonyms for juke house", "clues": ["jook joint", "jook house", "jook", "juke", "juke joint", "juke house"]}, {"answer": "juke_joint", "hint": "synonyms for juke joint", "clues": ["jook joint", "jook house", "jook", "juke house", "juke", "juke joint"]}, {"answer": "julius_erving", "hint": "synonyms for julius erving", "clues": ["Dr. J", "Erving", "Julius Erving", "Julius Winfield Erving"]}, {"answer": "julius_winfield_erving", "hint": "synonyms for julius winfield erving", "clues": ["Dr. J", "Erving", "Julius Erving", "Julius Winfield Erving"]}, {"answer": "jumble", "hint": "synonyms for jumble", "clues": ["muddle", "welter", "hodgepodge", "fuddle", "smother", "jumbal", "patchwork", "clutter", "mare's nest", "jumble"]}, {"answer": "jump", "hint": "synonyms for jump", "clues": ["jumping", "saltation", "parachuting", "startle", "start", "leap"]}, {"answer": "jumper", "hint": "synonyms for jumper", "clues": ["jump shot", "pinafore", "sweater", "pinny", "jumper"]}, {"answer": "junction", "hint": "synonyms for junction", "clues": ["conjunction", "join", "articulation", "juncture", "adjunction", "conjugation", "colligation"]}, {"answer": "juncture", "hint": "synonyms for juncture", "clues": ["join", "articulation", "occasion", "junction", "critical point", "crossroads", "juncture"]}, {"answer": "june_23", "hint": "synonyms for june 23", "clues": ["June 23", "St John's Night", "St John's Eve", "Midsummer Night", "Midsummer Eve"]}, {"answer": "junk", "hint": "synonyms for junk", "clues": ["debris", "dust", "detritus", "rubble", "junk"]}, {"answer": "junk_heap", "hint": "synonyms for junk heap", "clues": ["garbage heap", "trash pile", "trash heap", "refuse heap", "rubbish heap", "scrapheap", "junk pile", "junk heap"]}, {"answer": "junk_pile", "hint": "synonyms for junk pile", "clues": ["garbage heap", "trash pile", "trash heap", "junk heap", "rubbish heap", "scrapheap", "refuse heap", "junk pile"]}, {"answer": "junket", "hint": "synonyms for junket", "clues": ["excursion", "sashay", "jaunt", "pleasure trip", "expedition", "outing", "junket"]}, {"answer": "junkie", "hint": "synonyms for junkie", "clues": ["drug addict", "junky", "nut", "addict", "freak", "junkie"]}, {"answer": "junky", "hint": "synonyms for junky", "clues": ["drug addict", "junkie", "nut", "addict", "freak", "junky"]}, {"answer": "justice", "hint": "synonyms for justice", "clues": ["Department of Justice", "judge", "Justice Department", "justness", "jurist", "DoJ", "Justice"]}, {"answer": "justice_department", "hint": "synonyms for justice department", "clues": ["Department of Justice", "Justice Department", "DoJ", "Justice"]}, {"answer": "justinian_code", "hint": "synonyms for justinian code", "clues": ["civil law", "Justinian code", "Roman law", "jus civile"]}, {"answer": "jut", "hint": "synonyms for jut", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "protrusion", "hump", "protuberance", "gibbousness", "projection", "bulge", "jutting", "bump", "jut"]}, {"answer": "juvenile-onset_diabetes", "hint": "synonyms for juvenile-onset diabetes", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "juvenile_diabetes", "hint": "synonyms for juvenile diabetes", "clues": ["ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "juvenile-onset diabetes", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "juvenility", "hint": "synonyms for juvenility", "clues": ["callowness", "jejuneness", "youthfulness", "youth", "juvenility"]}, {"answer": "k'ung_futzu", "hint": "synonyms for k'ung futzu", "clues": ["Kongfuze", "Confucius", "K'ung Futzu", "Kong the Master"]}, {"answer": "k-dur_20", "hint": "synonyms for k-dur 20", "clues": ["potash muriate", "K-Dur 20", "potassium muriate", "Kaochlor", "Klorvess", "K-lyte", "potassium chloride", "K-lor"]}, {"answer": "k-lor", "hint": "synonyms for k-lor", "clues": ["potash muriate", "K-Dur 20", "potassium muriate", "Kaochlor", "Klorvess", "K-lyte", "potassium chloride", "K-lor"]}, {"answer": "k-lyte", "hint": "synonyms for k-lyte", "clues": ["potash muriate", "K-Dur 20", "potassium muriate", "Kaochlor", "Klorvess", "K-lyte", "potassium chloride", "K-lor"]}, {"answer": "k2", "hint": "synonyms for k2", "clues": ["Godwin Austen", "Mount Godwin Austen", "K2", "Dapsang"]}, {"answer": "k_particle", "hint": "synonyms for k particle", "clues": ["K particle", "kaon", "kappa-meson", "k-meson"]}, {"answer": "kaffir_pox", "hint": "synonyms for kaffir pox", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox"]}, {"answer": "kale", "hint": "synonyms for kale", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "lolly", "kail", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "cole", "boodle", "cabbage", "kale"]}, {"answer": "kalian", "hint": "synonyms for kalian", "clues": ["nargileh", "calean", "hookah", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe", "kalian"]}, {"answer": "kalif", "hint": "synonyms for kalif", "clues": ["kaliph", "khalif", "calif", "caliph"]}, {"answer": "kaliph", "hint": "synonyms for kaliph", "clues": ["khalif", "calif", "caliph", "kaliph"]}, {"answer": "kanchanjanga", "hint": "synonyms for kanchanjanga", "clues": ["Kanchenjunga", "Kanchanjanga", "Kinchinjunga", "Mount Kanchenjunga"]}, {"answer": "kanchenjunga", "hint": "synonyms for kanchenjunga", "clues": ["Kanchenjunga", "Kanchanjanga", "Kinchinjunga", "Mount Kanchenjunga"]}, {"answer": "kansas", "hint": "synonyms for kansas", "clues": ["Sunflower State", "KS", "Kansas River", "Kaw River", "Kansas"]}, {"answer": "kaochlor", "hint": "synonyms for kaochlor", "clues": ["potash muriate", "K-Dur 20", "potassium muriate", "Kaochlor", "Klorvess", "K-lyte", "potassium chloride", "K-lor"]}, {"answer": "kaolin", "hint": "synonyms for kaolin", "clues": ["china clay", "kaoline", "porcelain clay", "china stone", "terra alba"]}, {"answer": "kaoline", "hint": "synonyms for kaoline", "clues": ["china clay", "porcelain clay", "kaolin", "china stone", "terra alba"]}, {"answer": "karakoram", "hint": "synonyms for karakoram", "clues": ["Mustagh Range", "Karakoram Range", "Mustagh", "Karakoram"]}, {"answer": "karakoram_range", "hint": "synonyms for karakoram range", "clues": ["Mustagh Range", "Karakoram Range", "Mustagh", "Karakoram"]}, {"answer": "karakorum_range", "hint": "synonyms for karakorum range", "clues": ["Mustagh Range", "Karakoram Range", "Mustagh", "Karakoram"]}, {"answer": "karen_blixen", "hint": "synonyms for karen blixen", "clues": ["Dinesen", "Isak Dinesen", "Karen Blixen", "Baroness Karen Blixen", "Blixen"]}, {"answer": "karl_linne", "hint": "synonyms for karl linne", "clues": ["Linnaeus", "Carolus Linnaeus", "Karl Linne", "Carl von Linne"]}, {"answer": "kat", "hint": "synonyms for kat", "clues": ["Arabian tea", "khat", "African tea", "quat", "cat"]}, {"answer": "katar", "hint": "synonyms for katar", "clues": ["Katar", "Qatar", "State of Katar", "Qatar Peninsula"]}, {"answer": "katzenjammer", "hint": "synonyms for katzenjammer", "clues": ["hubbub", "hangover", "brouhaha", "uproar", "katzenjammer"]}, {"answer": "kb", "hint": "synonyms for kb", "clues": ["kB", "kilobyte", "K", "kbit", "kibibyte", "kilobit", "KiB"]}, {"answer": "kc", "hint": "synonyms for kc", "clues": ["kilocycle per second", "kilohertz", "kHz", "kilocycle", "kc"]}, {"answer": "keenness", "hint": "synonyms for keenness", "clues": ["acuity", "acuteness", "eagerness", "avidness", "avidity", "sharpness", "keenness"]}, {"answer": "keep", "hint": "synonyms for keep", "clues": ["support", "hold", "donjon", "sustenance", "bread and butter", "living", "livelihood", "dungeon", "keep"]}, {"answer": "keeping", "hint": "synonyms for keeping", "clues": ["guardianship", "safekeeping", "retention", "holding", "keeping"]}, {"answer": "keflex", "hint": "synonyms for keflex", "clues": ["Keflin", "cephalexin", "Keftab", "Keflex"]}, {"answer": "keflin", "hint": "synonyms for keflin", "clues": ["Keflin", "cephalexin", "Keftab", "Keflex"]}, {"answer": "keftab", "hint": "synonyms for keftab", "clues": ["Keflin", "cephalexin", "Keftab", "Keflex"]}, {"answer": "keister", "hint": "synonyms for keister", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "keister"]}, {"answer": "kekule_formula", "hint": "synonyms for kekule formula", "clues": ["benzene formula", "benzene nucleus", "Kekule formula", "benzene ring"]}, {"answer": "kelly", "hint": "synonyms for kelly", "clues": ["Emmett Kelly", "Kelly", "Grace Kelly", "Princess Grace of Monaco", "Gene Kelly", "Weary Willie", "Eugene Curran Kelly", "Grace Patricia Kelly"]}, {"answer": "kelvin", "hint": "synonyms for kelvin", "clues": ["First Baron Kelvin", "Kelvin", "K", "William Thompson"]}, {"answer": "kemal_ataturk", "hint": "synonyms for kemal ataturk", "clues": ["Kemal Pasha", "Kemal Ataturk", "Ataturk", "Mustafa Kemal"]}, {"answer": "kemal_pasha", "hint": "synonyms for kemal pasha", "clues": ["Kemal Pasha", "Kemal Ataturk", "Ataturk", "Mustafa Kemal"]}, {"answer": "kenalog", "hint": "synonyms for kenalog", "clues": ["Aristopak", "Kenalog", "triamcinolone", "Aristocort"]}, {"answer": "kennedy", "hint": "synonyms for kennedy", "clues": ["Kennedy Interrnational", "President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "Kennedy International Airport", "Kennedy", "John Fitzgerald Kennedy"]}, {"answer": "kennelly-heaviside_layer", "hint": "synonyms for kennelly-heaviside layer", "clues": ["E region", "Kennelly-Heaviside layer", "Heaviside layer", "E layer"]}, {"answer": "kenya_fever", "hint": "synonyms for kenya fever", "clues": ["Marseilles fever", "Indian tick fever", "Kenya fever", "boutonneuse fever"]}, {"answer": "kerfuffle", "hint": "synonyms for kerfuffle", "clues": ["hurly burly", "commotion", "disturbance", "flutter", "to-do", "hoo-ha", "disruption", "kerfuffle"]}, {"answer": "kernel", "hint": "synonyms for kernel", "clues": ["marrow", "core", "inwardness", "gist", "essence", "heart and soul", "sum", "centre", "meat", "nitty-gritty", "center", "nub", "substance", "heart", "pith", "kernel"]}, {"answer": "ketoacidosis-prone_diabetes", "hint": "synonyms for ketoacidosis-prone diabetes", "clues": ["juvenile diabetes", "growth-onset diabetes", "IDDM", "ketosis-prone diabetes", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "ketoacidosis-resistant_diabetes", "hint": "synonyms for ketoacidosis-resistant diabetes", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "ketoacidosis-resistant_diabetes_mellitus", "hint": "synonyms for ketoacidosis-resistant diabetes mellitus", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "maturity-onset diabetes mellitus", "type II diabetes", "ketoacidosis-resistant diabetes mellitus"]}, {"answer": "ketosis-prone_diabetes", "hint": "synonyms for ketosis-prone diabetes", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "ketosis-resistant_diabetes", "hint": "synonyms for ketosis-resistant diabetes", "clues": ["mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes", "ketosis-resistant diabetes"]}, {"answer": "ketosis-resistant_diabetes_mellitus", "hint": "synonyms for ketosis-resistant diabetes mellitus", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "kettle", "hint": "synonyms for kettle", "clues": ["tympanum", "kettleful", "kettle hole", "timpani", "kettledrum", "boiler", "kettle"]}, {"answer": "kettle_of_fish", "hint": "synonyms for kettle of fish", "clues": ["muddle", "pickle", "jam", "fix", "hole", "mess", "kettle of fish"]}, {"answer": "kettledrum", "hint": "synonyms for kettledrum", "clues": ["kettle", "tympani", "tympanum", "kettledrum"]}, {"answer": "keystone", "hint": "synonyms for keystone", "clues": ["mainstay", "key", "linchpin", "headstone", "backbone", "anchor", "keystone"]}, {"answer": "khadafy", "hint": "synonyms for khadafy", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "khalif", "hint": "synonyms for khalif", "clues": ["kaliph", "calif", "kalif", "khalifah", "caliph"]}, {"answer": "khalifah", "hint": "synonyms for khalifah", "clues": ["kaliph", "khalif", "calif", "caliph"]}, {"answer": "khat", "hint": "synonyms for khat", "clues": ["kat", "Arabian tea", "African tea", "quat", "cat"]}, {"answer": "khmer_rouge", "hint": "synonyms for khmer rouge", "clues": ["Khmer Rouge", "Communist Party of Kampuchea", "Party of Democratic Kampuchea", "KR"]}, {"answer": "khomeini", "hint": "synonyms for khomeini", "clues": ["Khomeini", "Ayatollah Khomeini", "Ruholla Khomeini", "Ayatollah Ruholla Khomeini"]}, {"answer": "khz", "hint": "synonyms for khz", "clues": ["kc", "kilocycle per second", "kilohertz", "kHz", "kilocycle"]}, {"answer": "kib", "hint": "synonyms for kib", "clues": ["K", "kB", "kilobyte", "kibibyte", "KiB"]}, {"answer": "kibibyte", "hint": "synonyms for kibibyte", "clues": ["kB", "kilobyte", "K", "KiB", "kibibyte"]}, {"answer": "kick", "hint": "synonyms for kick", "clues": ["thrill", "beef", "kicking", "recoil", "rush", "flush", "gripe", "squawk", "bitch", "boot", "bang", "charge"]}, {"answer": "kickoff", "hint": "synonyms for kickoff", "clues": ["showtime", "outset", "start", "start-off", "offset", "get-go", "starting time", "send-off", "beginning", "commencement", "first", "kickoff"]}, {"answer": "kickshaw", "hint": "synonyms for kickshaw", "clues": ["goody", "delicacy", "treat", "dainty", "kickshaw"]}, {"answer": "kid", "hint": "synonyms for kid", "clues": ["nipper", "Kyd", "shaver", "Kid", "nestling", "youngster", "tike", "kidskin", "Thomas Kyd", "minor", "tyke", "tiddler", "fry", "small fry", "child"]}, {"answer": "kilobyte", "hint": "synonyms for kilobyte", "clues": ["kB", "K", "kibibyte", "KiB", "kilobyte"]}, {"answer": "kilocalorie", "hint": "synonyms for kilocalorie", "clues": ["Calorie", "kilogram calorie", "large calorie", "nutritionist's calorie", "kilocalorie"]}, {"answer": "kilocycle", "hint": "synonyms for kilocycle", "clues": ["kilocycle per second", "kc", "kHz", "kilohertz", "kilocycle"]}, {"answer": "kilocycle_per_second", "hint": "synonyms for kilocycle per second", "clues": ["kc", "kHz", "kilohertz", "kilocycle", "kilocycle per second"]}, {"answer": "kilogram_calorie", "hint": "synonyms for kilogram calorie", "clues": ["Calorie", "large calorie", "kilocalorie", "nutritionist's calorie", "kilogram calorie"]}, {"answer": "kilohertz", "hint": "synonyms for kilohertz", "clues": ["kilocycle per second", "kc", "kHz", "kilocycle", "kilohertz"]}, {"answer": "kin_group", "hint": "synonyms for kin group", "clues": ["tribe", "kinship group", "kin", "kindred", "clan", "kin group"]}, {"answer": "kinaesthesia", "hint": "synonyms for kinaesthesia", "clues": ["feeling of movement", "kinesthesis", "sense of movement", "muscle sense"]}, {"answer": "kinaesthesis", "hint": "synonyms for kinaesthesis", "clues": ["sense of movement", "kinaesthesia", "muscle sense", "kinesthetics"]}, {"answer": "kinchinjunga", "hint": "synonyms for kinchinjunga", "clues": ["Kanchenjunga", "Kanchanjanga", "Kinchinjunga", "Mount Kanchenjunga"]}, {"answer": "kindling", "hint": "synonyms for kindling", "clues": ["firing", "spunk", "lighting", "touchwood", "inflammation", "ignition", "tinder", "kindling"]}, {"answer": "kinesthesia", "hint": "synonyms for kinesthesia", "clues": ["kinaesthesia", "feeling of movement", "sense of movement", "muscle sense", "kinesthetics"]}, {"answer": "kinesthesis", "hint": "synonyms for kinesthesis", "clues": ["sense of movement", "kinaesthesis", "muscle sense", "kinesthetics"]}, {"answer": "kinesthetics", "hint": "synonyms for kinesthetics", "clues": ["sense of movement", "kinaesthesis", "muscle sense", "kinesthetics"]}, {"answer": "kinfolk", "hint": "synonyms for kinfolk", "clues": ["folk", "family", "sept", "kinsfolk", "family line", "phratry"]}, {"answer": "king", "hint": "synonyms for king", "clues": ["male monarch", "tycoon", "Martin Luther King", "mogul", "King", "top executive", "business leader", "baron", "power", "Rex", "Billie Jean King", "world-beater", "magnate", "queen", "Billie Jean Moffitt King", "big businessman", "B. B. King", "Riley B King"]}, {"answer": "king_ferdinand", "hint": "synonyms for king ferdinand", "clues": ["King Ferdinand", "Ferdinand V", "Ferdinand the Catholic", "Ferdinand of Aragon"]}, {"answer": "king_harold_i", "hint": "synonyms for king harold i", "clues": ["Harold Harefoot", "Harefoot", "King Harold I", "Harold I"]}, {"answer": "king_hussein", "hint": "synonyms for king hussein", "clues": ["Hussein", "ibn Talal Hussein", "King Hussein", "Husayn", "Husain"]}, {"answer": "king_of_swing", "hint": "synonyms for king of swing", "clues": ["Benny Goodman", "Goodman", "Benjamin David Goodman", "King of Swing"]}, {"answer": "kingdom_of_morocco", "hint": "synonyms for kingdom of morocco", "clues": ["Marruecos", "Morocco", "Al-Magrib", "Kingdom of Morocco", "Maroc"]}, {"answer": "kingdom_of_norway", "hint": "synonyms for kingdom of norway", "clues": ["Noreg", "Kingdom of Norway", "Norway", "Norge"]}, {"answer": "kingdom_of_the_netherlands", "hint": "synonyms for kingdom of the netherlands", "clues": ["The Netherlands", "Holland", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "kingmaker", "hint": "synonyms for kingmaker", "clues": ["Richard Neville", "Earl of Warwick", "Warwick", "Kingmaker"]}, {"answer": "kingpin", "hint": "synonyms for kingpin", "clues": ["top banana", "bigwig", "swivel pin", "headpin", "kingbolt", "kingpin"]}, {"answer": "kink", "hint": "synonyms for kink", "clues": ["wrick", "twist", "crick", "twirl", "kink"]}, {"answer": "kinsfolk", "hint": "synonyms for kinsfolk", "clues": ["folk", "family", "sept", "kinfolk", "family line", "phratry"]}, {"answer": "kinship_group", "hint": "synonyms for kinship group", "clues": ["tribe", "kin group", "kindred", "kin", "clan", "kinship group"]}, {"answer": "kirghiz", "hint": "synonyms for kirghiz", "clues": ["Kyrgyzstan", "Kirgizstan", "Khirghiz", "Kyrgyz Republic", "Kirghizia"]}, {"answer": "kirghizia", "hint": "synonyms for kirghizia", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "kirghizstan", "hint": "synonyms for kirghizstan", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "kirgiz", "hint": "synonyms for kirgiz", "clues": ["Kyrgyzstan", "Kirgizstan", "Khirghiz", "Kyrgyz Republic", "Kirghizia"]}, {"answer": "kirgizia", "hint": "synonyms for kirgizia", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "kirgizstan", "hint": "synonyms for kirgizstan", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "kiss_of_life", "hint": "synonyms for kiss of life", "clues": ["cardiopulmonary resuscitation", "mouth-to-mouth resuscitation", "cardiac resuscitation", "CPR", "kiss of life"]}, {"answer": "kisser", "hint": "synonyms for kisser", "clues": ["physiognomy", "smiler", "phiz", "osculator", "visage", "mug", "countenance", "kisser"]}, {"answer": "kissing", "hint": "synonyms for kissing", "clues": ["petting", "smooching", "cuddling", "necking", "hugging", "caressing", "fondling", "snuggling", "kissing"]}, {"answer": "kissing_disease", "hint": "synonyms for kissing disease", "clues": ["mono", "mononucleosis", "infectious mononucleosis", "glandular fever", "kissing disease"]}, {"answer": "kit_and_boodle", "hint": "synonyms for kit and boodle", "clues": ["whole kit", "works", "whole kit and boodle", "kit and caboodle", "whole shebang", "whole works", "full treatment", "whole caboodle"]}, {"answer": "kit_and_caboodle", "hint": "synonyms for kit and caboodle", "clues": ["whole kit", "works", "whole kit and boodle", "whole shebang", "whole works", "kit and boodle", "full treatment", "whole caboodle"]}, {"answer": "kitchen_range", "hint": "synonyms for kitchen range", "clues": ["range", "stove", "cooking stove", "kitchen stove", "kitchen range"]}, {"answer": "kitchen_stove", "hint": "synonyms for kitchen stove", "clues": ["kitchen range", "range", "stove", "cooking stove", "kitchen stove"]}, {"answer": "kitchener", "hint": "synonyms for kitchener", "clues": ["Horatio Herbert Kitchener", "First Earl Kitchener of Khartoum", "Kitchener", "Herbert Kitchener"]}, {"answer": "kiwi", "hint": "synonyms for kiwi", "clues": ["kiwi fruit", "Kiwi", "New Zealander", "Chinese gooseberry"]}, {"answer": "klein", "hint": "synonyms for klein", "clues": ["Calvin Klein", "Melanie Klein", "Klein", "Felix Klein", "Calvin Richard Klein"]}, {"answer": "klorvess", "hint": "synonyms for klorvess", "clues": ["potash muriate", "K-Dur 20", "potassium muriate", "Kaochlor", "Klorvess", "K-lyte", "potassium chloride", "K-lor"]}, {"answer": "knapsack", "hint": "synonyms for knapsack", "clues": ["backpack", "haversack", "packsack", "rucksack", "knapsack"]}, {"answer": "knave", "hint": "synonyms for knave", "clues": ["scallywag", "rascal", "rapscallion", "jack", "varlet", "rogue", "scalawag", "knave"]}, {"answer": "knee", "hint": "synonyms for knee", "clues": ["knee joint", "genu", "articulatio genus", "human knee", "knee"]}, {"answer": "knee_breeches", "hint": "synonyms for knee breeches", "clues": ["knickerbockers", "knickers", "breeches", "knee pants", "knee breeches"]}, {"answer": "knee_joint", "hint": "synonyms for knee joint", "clues": ["knee", "genu", "articulatio genus", "human knee", "knee joint"]}, {"answer": "knee_pants", "hint": "synonyms for knee pants", "clues": ["knickerbockers", "knickers", "knee breeches", "breeches", "knee pants"]}, {"answer": "knickerbockers", "hint": "synonyms for knickerbockers", "clues": ["knickers", "knee breeches", "breeches", "knee pants", "knickerbockers"]}, {"answer": "knickers", "hint": "synonyms for knickers", "clues": ["knickerbockers", "pants", "knee breeches", "breeches", "knee pants", "drawers", "bloomers", "knickers"]}, {"answer": "knickknack", "hint": "synonyms for knickknack", "clues": ["knickknackery", "bric-a-brac", "nicknack", "novelty", "whatnot"]}, {"answer": "knickknackery", "hint": "synonyms for knickknackery", "clues": ["whatnot", "bric-a-brac", "nicknack", "knickknackery"]}, {"answer": "knit", "hint": "synonyms for knit", "clues": ["knitwork", "knitting", "plain stitch", "plain", "knit stitch", "knit"]}, {"answer": "knob", "hint": "synonyms for knob", "clues": ["node", "thickening", "boss", "pommel", "knob"]}, {"answer": "knock", "hint": "synonyms for knock", "clues": ["belt", "roast", "rap", "knocking", "whang", "smash", "bash", "bang", "whack"]}, {"answer": "knocker", "hint": "synonyms for knocker", "clues": ["titty", "disparager", "boob", "doorknocker", "breast", "depreciator", "bosom", "rapper", "tit", "detractor", "knocker"]}, {"answer": "knoll", "hint": "synonyms for knoll", "clues": ["hillock", "hammock", "mound", "knoll"]}, {"answer": "knot", "hint": "synonyms for knot", "clues": ["slub", "mile", "naut mi", "air mile", "international nautical mile", "burl", "mi", "nautical mile", "gnarl", "knot"]}, {"answer": "knowingness", "hint": "synonyms for knowingness", "clues": ["cognizance", "awareness", "consciousness", "knowingness"]}, {"answer": "knucklehead", "hint": "synonyms for knucklehead", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "numskull", "shithead", "lunkhead", "blockhead", "loggerhead", "knucklehead"]}, {"answer": "knuckles", "hint": "synonyms for knuckles", "clues": ["knuckle", "brass knucks", "knucks", "metacarpophalangeal joint", "knuckle joint", "knuckle duster"]}, {"answer": "knut", "hint": "synonyms for knut", "clues": ["Canute", "Cnut", "Canute the Great", "Knut"]}, {"answer": "ko_punch", "hint": "synonyms for ko punch", "clues": ["Sunday punch", "knockout punch", "haymaker", "KO punch"]}, {"answer": "kong_the_master", "hint": "synonyms for kong the master", "clues": ["Kongfuze", "Confucius", "K'ung Futzu", "Kong the Master"]}, {"answer": "kongfuze", "hint": "synonyms for kongfuze", "clues": ["Kongfuze", "Confucius", "K'ung Futzu", "Kong the Master"]}, {"answer": "konstantin_sergeevich_alekseev", "hint": "synonyms for konstantin sergeevich alekseev", "clues": ["Stanislavsky", "Konstantin Sergeevich Alekseev", "Konstantin Sergeyevich Stanislavsky", "Konstantin Stanislavsky"]}, {"answer": "konstantin_sergeyevich_stanislavsky", "hint": "synonyms for konstantin sergeyevich stanislavsky", "clues": ["Stanislavsky", "Konstantin Sergeevich Alekseev", "Konstantin Sergeyevich Stanislavsky", "Konstantin Stanislavsky"]}, {"answer": "konstantin_stanislavsky", "hint": "synonyms for konstantin stanislavsky", "clues": ["Stanislavsky", "Konstantin Sergeevich Alekseev", "Konstantin Sergeyevich Stanislavsky", "Konstantin Stanislavsky"]}, {"answer": "kook", "hint": "synonyms for kook", "clues": ["odd fish", "queer duck", "odd fellow", "odd man out", "queer bird", "kook"]}, {"answer": "koran", "hint": "synonyms for koran", "clues": ["Koran", "Book", "Quran", "al-Qur'an"]}, {"answer": "kore", "hint": "synonyms for kore", "clues": ["Cora", "Persephone", "Despoina", "Kore"]}, {"answer": "korea", "hint": "synonyms for korea", "clues": ["Korea", "Korean Peninsula", "Dae-Han-Min-Gook", "Han-Gook"]}, {"answer": "korean_peninsula", "hint": "synonyms for korean peninsula", "clues": ["Korea", "Korean Peninsula", "Dae-Han-Min-Gook", "Han-Gook"]}, {"answer": "korsakoff's_psychosis", "hint": "synonyms for korsakoff's psychosis", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia"]}, {"answer": "korsakoff's_syndrome", "hint": "synonyms for korsakoff's syndrome", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia"]}, {"answer": "korsakov's_psychosis", "hint": "synonyms for korsakov's psychosis", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia"]}, {"answer": "korsakov's_syndrome", "hint": "synonyms for korsakov's syndrome", "clues": ["polyneuritic psychosis", "Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia"]}, {"answer": "kos", "hint": "synonyms for kos", "clues": ["coss", "knockout", "kayo", "KO"]}, {"answer": "koweit", "hint": "synonyms for koweit", "clues": ["capital of Kuwait", "Kuwait", "Koweit", "Kuwait City", "State of Kuwait"]}, {"answer": "kr", "hint": "synonyms for kr", "clues": ["Khmer Rouge", "Communist Party of Kampuchea", "krypton", "KR", "atomic number 36", "Party of Democratic Kampuchea"]}, {"answer": "kraut", "hint": "synonyms for kraut", "clues": ["Jerry", "Boche", "Hun", "Krauthead", "Kraut"]}, {"answer": "krauthead", "hint": "synonyms for krauthead", "clues": ["Jerry", "Boche", "Hun", "Krauthead", "Kraut"]}, {"answer": "kriss_kringle", "hint": "synonyms for kriss kringle", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "ks", "hint": "synonyms for ks", "clues": ["cat valium", "grand", "k", "super C", "atomic number 19", "Kansas", "super acid", "kibibyte", "yard", "G", "kelvin", "thousand", "Sunflower State", "kB", "kilobyte", "green", "special K", "chiliad", "potassium", "M", "honey oil", "jet", "KiB", "one thousand", "thou", "1000"]}, {"answer": "kuangchou", "hint": "synonyms for kuangchou", "clues": ["Canton", "Kwangchow", "Kuangchou", "Guangzhou"]}, {"answer": "kukenaam", "hint": "synonyms for kukenaam", "clues": ["Kukenaam Falls", "Cuquenan", "Kukenaam", "Cuquenan Falls"]}, {"answer": "kukenaam_falls", "hint": "synonyms for kukenaam falls", "clues": ["Kukenaam Falls", "Cuquenan", "Kukenaam", "Cuquenan Falls"]}, {"answer": "kulun", "hint": "synonyms for kulun", "clues": ["Ulaanbaatar", "capital of Mongolia", "Urga", "Kulun", "Ulan Bator"]}, {"answer": "kurdistan_labor_pary", "hint": "synonyms for kurdistan labor pary", "clues": ["Kurdistan Labor Pary", "Partiya Karkeran Kurdistan", "Kurdistan Workers Party", "PPK"]}, {"answer": "kurdistan_workers_party", "hint": "synonyms for kurdistan workers party", "clues": ["Kurdistan Labor Pary", "Partiya Karkeran Kurdistan", "Kurdistan Workers Party", "PPK"]}, {"answer": "kuwait", "hint": "synonyms for kuwait", "clues": ["capital of Kuwait", "Kuwait", "Koweit", "Kuwait City", "State of Kuwait"]}, {"answer": "kuwait_city", "hint": "synonyms for kuwait city", "clues": ["Koweit", "Kuwait City", "capital of Kuwait", "Kuwait"]}, {"answer": "kw-hr", "hint": "synonyms for kw-hr", "clues": ["B.T.U.", "kW-hr", "kilowatt hour", "Board of Trade unit"]}, {"answer": "kwangchow", "hint": "synonyms for kwangchow", "clues": ["Canton", "Kwangchow", "Kuangchou", "Guangzhou"]}, {"answer": "kyrgyz_republic", "hint": "synonyms for kyrgyz republic", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "kyrgyzstan", "hint": "synonyms for kyrgyzstan", "clues": ["Kyrgyzstan", "Kirgizstan", "Kyrgyz Republic", "Kirghiz", "Kirgizia"]}, {"answer": "l-dopa", "hint": "synonyms for l-dopa", "clues": ["Brocadopa", "levodopa", "L-dopa", "Bendopa", "Larodopa"]}, {"answer": "la", "hint": "synonyms for la", "clues": ["Louisiana", "LA", "lah", "atomic number 57", "lanthanum", "Pelican State"]}, {"answer": "lab", "hint": "synonyms for lab", "clues": ["research lab", "science laboratory", "laboratory", "research laboratory", "science lab", "lab"]}, {"answer": "labor", "hint": "synonyms for labor", "clues": ["British Labour Party", "labour", "labor movement", "task", "trade union movement", "Labor Department", "parturiency", "undertaking", "proletariat", "working class", "lying-in", "Department of Labor", "DoL", "travail", "confinement", "childbed", "Labour Party", "project", "toil"]}, {"answer": "labor_department", "hint": "synonyms for labor department", "clues": ["Labor", "Department of Labor", "Labor Department", "DoL"]}, {"answer": "labor_union", "hint": "synonyms for labor union", "clues": ["brotherhood", "trade union", "union", "labor union"]}, {"answer": "laboratory", "hint": "synonyms for laboratory", "clues": ["lab", "research lab", "science laboratory", "testing ground", "research laboratory", "science lab", "laboratory"]}, {"answer": "labour", "hint": "synonyms for labour", "clues": ["proletariat", "British Labour Party", "working class", "lying-in", "Labour", "travail", "confinement", "childbed", "Labour Party", "parturiency", "toil"]}, {"answer": "labyrinthine_sense", "hint": "synonyms for labyrinthine sense", "clues": ["vestibular sense", "equilibrium", "sense of balance", "sense of equilibrium", "labyrinthine sense"]}, {"answer": "lacing", "hint": "synonyms for lacing", "clues": ["beating", "licking", "drubbing", "lace", "whacking", "thrashing", "trouncing", "lacing"]}, {"answer": "lackey", "hint": "synonyms for lackey", "clues": ["crawler", "ass-kisser", "flunky", "toady", "sycophant", "lackey"]}, {"answer": "lactoflavin", "hint": "synonyms for lactoflavin", "clues": ["ovoflavin", "vitamin B2", "vitamin G", "riboflavin", "hepatoflavin", "lactoflavin"]}, {"answer": "lad", "hint": "synonyms for lad", "clues": ["laddie", "sonny", "fella", "blighter", "cub", "bloke", "gent", "feller", "sonny boy", "chap", "fellow", "cuss", "lad"]}, {"answer": "laddie", "hint": "synonyms for laddie", "clues": ["cub", "sonny boy", "sonny", "lad", "laddie"]}, {"answer": "lading", "hint": "synonyms for lading", "clues": ["payload", "shipment", "consignment", "loading", "freight", "cargo"]}, {"answer": "lady", "hint": "synonyms for lady", "clues": ["Lady", "noblewoman", "peeress", "dame", "madam", "gentlewoman", "ma'am"]}, {"answer": "lady_diana_frances_spencer", "hint": "synonyms for lady diana frances spencer", "clues": ["Diana", "Lady Diana Frances Spencer", "Princess of Wales", "Princess Diana"]}, {"answer": "lady_of_pleasure", "hint": "synonyms for lady of pleasure", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "tart", "cocotte", "whore", "woman of the street", "cyprian", "lady of pleasure"]}, {"answer": "lag", "hint": "synonyms for lag", "clues": ["stave", "meantime", "interim", "retardation", "slowdown", "meanwhile", "lag"]}, {"answer": "lagger", "hint": "synonyms for lagger", "clues": ["poke", "laggard", "trailer", "drone", "dawdler", "lagger"]}, {"answer": "lakota", "hint": "synonyms for lakota", "clues": ["Lakota", "Teton", "Teton Sioux", "Teton Dakota"]}, {"answer": "lamb", "hint": "synonyms for lamb", "clues": ["dear", "Elia", "Charles Lamb", "Lamb"]}, {"answer": "lambert", "hint": "synonyms for lambert", "clues": ["Constant Lambert", "L", "Lambert", "Leonard Constant Lambert"]}, {"answer": "lambert-eaton_syndrome", "hint": "synonyms for lambert-eaton syndrome", "clues": ["carcinomatous myopathy", "myasthenic syndrome", "Lambert-Eaton syndrome", "Eaton-Lambert syndrome"]}, {"answer": "lameness", "hint": "synonyms for lameness", "clues": ["gimpiness", "gameness", "limping", "claudication", "gimp"]}, {"answer": "lament", "hint": "synonyms for lament", "clues": ["threnody", "wail", "requiem", "coronach", "plaint", "elegy", "dirge", "lamentation", "lament"]}, {"answer": "lamentation", "hint": "synonyms for lamentation", "clues": ["wail", "lament", "mourning", "plaint", "lamentation"]}, {"answer": "lamentations", "hint": "synonyms for lamentations", "clues": ["Book of Lamentations", "wail", "lament", "Lamentations", "plaint", "mourning"]}, {"answer": "lampblack", "hint": "synonyms for lampblack", "clues": ["smut", "crock", "soot", "carbon black", "lampblack"]}, {"answer": "lampoon", "hint": "synonyms for lampoon", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "parody", "spoof", "lampoon"]}, {"answer": "lance", "hint": "synonyms for lance", "clues": ["shaft", "lancet", "gig", "spear", "fishgig", "fizgig"]}, {"answer": "land", "hint": "synonyms for land", "clues": ["body politic", "landed estate", "estate", "solid ground", "dry land", "terra firma", "kingdom", "acres", "Din Land", "commonwealth", "realm", "earth", "res publica", "soil", "ground", "Land", "nation", "country", "farming", "demesne", "domain", "Edwin Herbert Land"]}, {"answer": "land_agent", "hint": "synonyms for land agent", "clues": ["real estate broker", "estate agent", "real estate agent", "house agent", "land agent"]}, {"answer": "land_mile", "hint": "synonyms for land mile", "clues": ["mile", "statute mile", "mi", "international mile", "stat mi", "land mile"]}, {"answer": "land_of_lincoln", "hint": "synonyms for land of lincoln", "clues": ["Land of Lincoln", "Prairie State", "Illinois", "IL"]}, {"answer": "landed_estate", "hint": "synonyms for landed estate", "clues": ["demesne", "land", "acres", "estate", "landed estate"]}, {"answer": "langtry", "hint": "synonyms for langtry", "clues": ["Langtry", "Lillie Langtry", "Jersey Lillie", "Emilie Charlotte le Breton"]}, {"answer": "language", "hint": "synonyms for language", "clues": ["speech", "voice communication", "oral communication", "spoken language", "words", "speech communication", "terminology", "nomenclature", "linguistic communication", "lyric", "linguistic process", "language"]}, {"answer": "languor", "hint": "synonyms for languor", "clues": ["phlegm", "lassitude", "sluggishness", "lethargy", "listlessness", "dreaminess", "flatness", "languor"]}, {"answer": "lanthanide", "hint": "synonyms for lanthanide", "clues": ["rare-earth element", "lanthanon", "rare earth", "lanthanoid"]}, {"answer": "lanthanoid", "hint": "synonyms for lanthanoid", "clues": ["lanthanide", "lanthanon", "rare-earth element", "rare earth"]}, {"answer": "lanthanon", "hint": "synonyms for lanthanon", "clues": ["lanthanide", "rare-earth element", "rare earth", "lanthanon"]}, {"answer": "lap", "hint": "synonyms for lap", "clues": ["lick", "circle", "overlap", "circuit", "lap covering", "lap"]}, {"answer": "lapp", "hint": "synonyms for lapp", "clues": ["Lapp", "Same", "Lapplander", "Sami"]}, {"answer": "lapplander", "hint": "synonyms for lapplander", "clues": ["Saami", "Lapplander", "Lapp", "Same"]}, {"answer": "lapse", "hint": "synonyms for lapse", "clues": ["oversight", "relapsing", "reverting", "relapse", "reversion", "backsliding", "lapse"]}, {"answer": "lapsing", "hint": "synonyms for lapsing", "clues": ["relapsing", "reverting", "relapse", "lapse", "reversion", "backsliding"]}, {"answer": "larceny", "hint": "synonyms for larceny", "clues": ["theft", "stealing", "thievery", "thieving", "larceny"]}, {"answer": "large_calorie", "hint": "synonyms for large calorie", "clues": ["Calorie", "kilogram calorie", "kilocalorie", "nutritionist's calorie", "large calorie"]}, {"answer": "large_number", "hint": "synonyms for large number", "clues": ["battalion", "multitude", "pack", "plurality", "large number"]}, {"answer": "largeness", "hint": "synonyms for largeness", "clues": ["extensiveness", "bigness", "pretension", "pretentiousness", "breadth", "comprehensiveness", "largeness"]}, {"answer": "largess", "hint": "synonyms for largess", "clues": ["openhandedness", "munificence", "magnanimity", "largesse"]}, {"answer": "largesse", "hint": "synonyms for largesse", "clues": ["openhandedness", "munificence", "magnanimity", "largess"]}, {"answer": "larium", "hint": "synonyms for larium", "clues": ["mefloquine hydrochloride", "Mephaquine", "mefloquine", "Larium"]}, {"answer": "larodopa", "hint": "synonyms for larodopa", "clues": ["Brocadopa", "levodopa", "L-dopa", "Bendopa", "Larodopa"]}, {"answer": "larotid", "hint": "synonyms for larotid", "clues": ["amoxicillin", "Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox"]}, {"answer": "lasciviousness", "hint": "synonyms for lasciviousness", "clues": ["lubricity", "carnality", "prurience", "lasciviousness"]}, {"answer": "lash", "hint": "synonyms for lash", "clues": ["eyelash", "thong", "whip", "whiplash", "cilium", "lash"]}, {"answer": "lashings", "hint": "synonyms for lashings", "clues": ["tanning", "tons", "flagellation", "gobs", "rafts", "oodles", "dozens", "flogging", "scads", "slews", "heaps", "lots", "wads", "scores", "stacks", "whipping", "loads", "lashing", "piles"]}, {"answer": "lashkar-e-taiba", "hint": "synonyms for lashkar-e-taiba", "clues": ["Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "lashkar-e-tayyiba", "hint": "synonyms for lashkar-e-tayyiba", "clues": ["Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "lashkar-e-toiba", "hint": "synonyms for lashkar-e-toiba", "clues": ["Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "lassa", "hint": "synonyms for lassa", "clues": ["Forbidden City", "Lassa", "capital of Tibet", "Lhasa"]}, {"answer": "lassitude", "hint": "synonyms for lassitude", "clues": ["slackness", "languor", "lethargy", "sluggishness", "inanition", "listlessness", "lassitude"]}, {"answer": "lasso", "hint": "synonyms for lasso", "clues": ["Orlando di Lasso", "lariat", "reata", "riata", "Lasso", "Roland de Lassus"]}, {"answer": "last_day", "hint": "synonyms for last day", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "last_judgement", "hint": "synonyms for last judgement", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "last_judgment", "hint": "synonyms for last judgment", "clues": ["Last Judgment", "Day of Judgment", "Doomsday", "day of reckoning", "end of the world", "crack of doom", "eschaton", "Last Day", "Judgement Day"]}, {"answer": "last_word", "hint": "synonyms for last word", "clues": ["stylishness", "smartness", "chic", "swank", "chichi", "chicness", "modishness", "last word"]}, {"answer": "latency", "hint": "synonyms for latency", "clues": ["response time", "latent period", "rotational latency", "reaction time", "latency"]}, {"answer": "laterality", "hint": "synonyms for laterality", "clues": ["dominance", "lateralization", "handedness", "laterality"]}, {"answer": "lather", "hint": "synonyms for lather", "clues": ["swither", "suds", "soapsuds", "stew", "sweat", "fret", "lather"]}, {"answer": "lattice", "hint": "synonyms for lattice", "clues": ["latticework", "grille", "fretwork", "wicket", "lattice"]}, {"answer": "lauder", "hint": "synonyms for lauder", "clues": ["Sir Harry MacLennan Lauder", "extoller", "laudator", "Harry Lauder", "Lauder"]}, {"answer": "laugh", "hint": "synonyms for laugh", "clues": ["jape", "gag", "jest", "joke", "laughter", "laugh"]}, {"answer": "laugh_line", "hint": "synonyms for laugh line", "clues": ["crow's feet", "punch line", "gag line", "crow's foot", "laugh line"]}, {"answer": "laugher", "hint": "synonyms for laugher", "clues": ["walkaway", "blowout", "runaway", "romp", "shoo-in", "laugher"]}, {"answer": "launch_area", "hint": "synonyms for launch area", "clues": ["launchpad", "pad", "launching pad", "launch area"]}, {"answer": "launch_pad", "hint": "synonyms for launch pad", "clues": ["launchpad", "launch area", "pad", "launching pad"]}, {"answer": "launching", "hint": "synonyms for launching", "clues": ["entry", "unveiling", "introduction", "launch", "first appearance", "debut"]}, {"answer": "launching_pad", "hint": "synonyms for launching pad", "clues": ["launchpad", "launch area", "pad", "launching pad"]}, {"answer": "laurel", "hint": "synonyms for laurel", "clues": ["laurel wreath", "Stan Laurel", "Arthur Stanley Jefferson Laurel", "bay wreath", "Laurel"]}, {"answer": "laurel_wreath", "hint": "synonyms for laurel wreath", "clues": ["medallion", "laurel", "palm", "bay wreath", "decoration", "ribbon", "medal", "laurel wreath"]}, {"answer": "laurels", "hint": "synonyms for laurels", "clues": ["honour", "Stan Laurel", "laurel", "accolade", "award", "laurel wreath", "Arthur Stanley Jefferson Laurel", "bay wreath"]}, {"answer": "laurence_olivier", "hint": "synonyms for laurence olivier", "clues": ["Sir Laurence Kerr Olivier", "Olivier", "Laurence Olivier", "Baron Olivier of Birghton"]}, {"answer": "laurentius", "hint": "synonyms for laurentius", "clues": ["St. Lawrence", "Saint Lawrence", "Laurentius", "Lawrence"]}, {"answer": "lav", "hint": "synonyms for lav", "clues": ["bathroom", "can", "john", "lavatory", "toilet", "privy", "lav"]}, {"answer": "lavabo", "hint": "synonyms for lavabo", "clues": ["wash-hand basin", "handbasin", "washbasin", "washbowl", "lavabo"]}, {"answer": "lavatory", "hint": "synonyms for lavatory", "clues": ["bathroom", "washbasin", "john", "toilet", "basin", "washbowl", "privy", "lav", "washstand", "flush toilet", "can", "lavatory"]}, {"answer": "lavishness", "hint": "synonyms for lavishness", "clues": ["luxury", "sumptuosity", "prodigality", "high life", "sumptuousness", "extravagance", "lavishness"]}, {"answer": "law", "hint": "synonyms for law", "clues": ["police force", "police", "practice of law", "jurisprudence", "constabulary", "legal philosophy", "natural law", "law of nature", "law"]}, {"answer": "law-breaking", "hint": "synonyms for law-breaking", "clues": ["offence", "crime", "criminal offence", "law-breaking"]}, {"answer": "law-makers", "hint": "synonyms for law-makers", "clues": ["general assembly", "legislative assembly", "legislature", "legislative body", "law-makers"]}, {"answer": "lawrence", "hint": "synonyms for lawrence", "clues": ["St. Lawrence", "D. H. Lawrence", "Lawrence", "Sir Thomas Lawrence", "Ernest Orlando Lawrence", "Thomas Edward Lawrence", "Lawrence of Arabia", "Laurentius", "Saint Lawrence", "David Herbert Lawrence", "Gertrude Lawrence"]}, {"answer": "lawrence_of_arabia", "hint": "synonyms for lawrence of arabia", "clues": ["T. E. Lawrence", "Thomas Edward Lawrence", "Lawrence of Arabia", "Lawrence"]}, {"answer": "lawrence_peter_berra", "hint": "synonyms for lawrence peter berra", "clues": ["Berra", "Yogi", "Yogi Berra", "Lawrence Peter Berra"]}, {"answer": "laws", "hint": "synonyms for laws", "clues": ["police", "Torah", "practice of law", "Pentateuch", "law", "constabulary", "legal philosophy", "police force", "jurisprudence", "natural law", "law of nature"]}, {"answer": "lawsuit", "hint": "synonyms for lawsuit", "clues": ["suit", "causa", "case", "lawsuit"]}, {"answer": "lay-by", "hint": "synonyms for lay-by", "clues": ["rest stop", "layby", "rest area", "pull-off"]}, {"answer": "layabout", "hint": "synonyms for layabout", "clues": ["idler", "loafer", "bum", "do-nothing", "layabout"]}, {"answer": "layby", "hint": "synonyms for layby", "clues": ["lay-by", "rest area", "rest stop", "pull-off"]}, {"answer": "laying_waste", "hint": "synonyms for laying waste", "clues": ["wrecking", "ruin", "ruination", "laying waste"]}, {"answer": "lazaretto", "hint": "synonyms for lazaretto", "clues": ["lazarette", "lazar house", "pesthouse", "glory hole"]}, {"answer": "lazuline", "hint": "synonyms for lazuline", "clues": ["cerulean", "sky-blue", "sapphire", "azure", "lazuline"]}, {"answer": "lbj", "hint": "synonyms for lbj", "clues": ["Johnson", "President Lyndon Johnson", "President Johnson", "Lyndon Johnson", "Lyndon Baines Johnson", "LBJ"]}, {"answer": "lea", "hint": "synonyms for lea", "clues": ["pastureland", "pasture", "ley", "grazing land", "lea"]}, {"answer": "lead", "hint": "synonyms for lead", "clues": ["hint", "booster cable", "tether", "Pb", "lede", "lead-in", "star", "atomic number 82", "trail", "tip", "spark advance", "jumper cable", "leash", "track", "confidential information", "principal", "wind", "steer", "jumper lead", "pencil lead", "lead story", "lead"]}, {"answer": "leaders", "hint": "synonyms for leaders", "clues": ["drawing card", "loss leader", "leadership", "leader"]}, {"answer": "leading_light", "hint": "synonyms for leading light", "clues": ["luminary", "notability", "guiding light", "notable", "leading light"]}, {"answer": "leaflet", "hint": "synonyms for leaflet", "clues": ["brochure", "booklet", "cusp", "pamphlet", "folder", "leaflet"]}, {"answer": "league_of_iroquois", "hint": "synonyms for league of iroquois", "clues": ["Iroquois League", "Five Nations", "Six Nations", "League of Iroquois"]}, {"answer": "leak", "hint": "synonyms for leak", "clues": ["outflow", "escape", "passing water", "making water", "wetting", "news leak", "leakage", "leak"]}, {"answer": "leakey", "hint": "synonyms for leakey", "clues": ["Richard Leakey", "Leakey", "Mary Leakey", "Louis Leakey", "Louis Seymour Bazett Leakey", "Mary Douglas Leakey", "Richard Erskine Leakey"]}, {"answer": "leanness", "hint": "synonyms for leanness", "clues": ["poorness", "thinness", "scantiness", "meagreness", "exiguity", "spareness", "leanness"]}, {"answer": "leap", "hint": "synonyms for leap", "clues": ["jump", "saltation", "leaping", "bound", "bounce", "spring"]}, {"answer": "leaping", "hint": "synonyms for leaping", "clues": ["saltation", "bound", "spring", "bounce", "leap"]}, {"answer": "learnedness", "hint": "synonyms for learnedness", "clues": ["learning", "scholarship", "encyclopedism", "erudition", "eruditeness", "learnedness"]}, {"answer": "learner", "hint": "synonyms for learner", "clues": ["prentice", "assimilator", "scholar", "learner"]}, {"answer": "learning", "hint": "synonyms for learning", "clues": ["learnedness", "encyclopedism", "scholarship", "eruditeness", "erudition", "acquisition", "learning"]}, {"answer": "learning_ability", "hint": "synonyms for learning ability", "clues": ["brainpower", "wit", "mentality", "mental capacity", "brain", "learning ability"]}, {"answer": "leary", "hint": "synonyms for leary", "clues": ["Timothy Francis Leary", "Tim Leary", "Leary", "Timothy Leary"]}, {"answer": "leash", "hint": "synonyms for leash", "clues": ["tercet", "ternary", "collar", "ternion", "tether", "III", "lead", "3", "triad", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "leash"]}, {"answer": "leave", "hint": "synonyms for leave", "clues": ["leave-taking", "parting", "farewell", "leave of absence", "leave"]}, {"answer": "lebanese_hizballah", "hint": "synonyms for lebanese hizballah", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "lechatelierite", "hint": "synonyms for lechatelierite", "clues": ["quartz glass", "quartz", "vitreous silica", "crystal", "lechatelierite"]}, {"answer": "lecture", "hint": "synonyms for lecture", "clues": ["speech", "lecturing", "talk", "talking to", "public lecture", "lecture"]}, {"answer": "ledger", "hint": "synonyms for ledger", "clues": ["daybook", "account book", "leger", "book of account", "book"]}, {"answer": "lee's_birthday", "hint": "synonyms for lee's birthday", "clues": ["Robert E Lee Day", "Lee's Birthday", "Robert E Lee's Birthday", "January 19"]}, {"answer": "lee_buck_trevino", "hint": "synonyms for lee buck trevino", "clues": ["Trevino", "Supermex", "Lee Buck Trevino", "Lee Trevino"]}, {"answer": "lee_trevino", "hint": "synonyms for lee trevino", "clues": ["Trevino", "Supermex", "Lee Buck Trevino", "Lee Trevino"]}, {"answer": "leechee", "hint": "synonyms for leechee", "clues": ["lychee", "litchee", "litchi nut", "lichi", "leechee"]}, {"answer": "lees", "hint": "synonyms for lees", "clues": ["Rose Louise Hovick", "Bruce Lee", "Lee", "Lee Yuen Kam", "Shelton Jackson Lee", "Tsung Dao Lee", "Lighthorse Harry Lee", "lee side", "Richard Henry Lee", "Henry Lee", "Robert E. Lee", "Robert Edward Lee", "Gypsy Rose Lee", "leeward", "Spike Lee"]}, {"answer": "left-handed_pitcher", "hint": "synonyms for left-handed pitcher", "clues": ["left-hander", "lefty", "southpaw", "left-handed pitcher"]}, {"answer": "left-hander", "hint": "synonyms for left-hander", "clues": ["lefty", "left-handed pitcher", "southpaw", "lefthander"]}, {"answer": "left_hander", "hint": "synonyms for left hander", "clues": ["left-hander", "lefty", "left-handed pitcher", "southpaw"]}, {"answer": "lefthander", "hint": "synonyms for lefthander", "clues": ["left-hander", "lefty", "left-handed pitcher", "southpaw"]}, {"answer": "lefty", "hint": "synonyms for lefty", "clues": ["left-hander", "left-handed pitcher", "southpaw", "lefty"]}, {"answer": "leg", "hint": "synonyms for leg", "clues": ["branch", "wooden leg", "ramification", "peg", "pegleg", "stage", "leg"]}, {"answer": "leger", "hint": "synonyms for leger", "clues": ["Fernand Leger", "ledger", "account book", "book of account", "book"]}, {"answer": "legerdemain", "hint": "synonyms for legerdemain", "clues": ["illusion", "magic trick", "thaumaturgy", "deception", "trick", "conjuration", "magic", "conjuring trick", "legerdemain"]}, {"answer": "legerity", "hint": "synonyms for legerity", "clues": ["lightness", "nimbleness", "lightsomeness", "agility", "legerity"]}, {"answer": "leghorn", "hint": "synonyms for leghorn", "clues": ["skimmer", "sailor", "boater", "straw hat", "Panama hat", "Panama", "leghorn"]}, {"answer": "legislative_assembly", "hint": "synonyms for legislative assembly", "clues": ["general assembly", "legislature", "legislative body", "law-makers", "legislative assembly"]}, {"answer": "legislative_body", "hint": "synonyms for legislative body", "clues": ["general assembly", "legislative assembly", "legislature", "law-makers", "legislative body"]}, {"answer": "legislature", "hint": "synonyms for legislature", "clues": ["general assembly", "legislative assembly", "legislative body", "law-makers", "legislature"]}, {"answer": "legs", "hint": "synonyms for legs", "clues": ["leg", "branch", "wooden leg", "ramification", "peg", "pegleg", "stage"]}, {"answer": "lei", "hint": "synonyms for lei", "clues": ["coronal", "chaplet", "leu", "wreath", "garland", "lei"]}, {"answer": "leishmaniasis_americana", "hint": "synonyms for leishmaniasis americana", "clues": ["nasopharyngeal leishmaniasis", "American leishmaniasis", "New World leishmaniasis", "mucocutaneous leishmaniasis", "leishmaniasis americana"]}, {"answer": "lemon", "hint": "synonyms for lemon", "clues": ["stinker", "lemon yellow", "maize", "gamboge", "lemon"]}, {"answer": "lengthiness", "hint": "synonyms for lengthiness", "clues": ["extension", "protraction", "prolongation", "continuation", "lengthiness"]}, {"answer": "lenience", "hint": "synonyms for lenience", "clues": ["lenity", "mildness", "indulgence", "leniency"]}, {"answer": "leniency", "hint": "synonyms for leniency", "clues": ["lenity", "mildness", "indulgence", "lenience"]}, {"answer": "lenin", "hint": "synonyms for lenin", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "leningrad", "hint": "synonyms for leningrad", "clues": ["Saint Petersburg", "Peterburg", "Leningrad", "Petrograd"]}, {"answer": "lens", "hint": "synonyms for lens", "clues": ["lens of the eye", "crystalline lens", "electron lens", "lens system", "lense"]}, {"answer": "leonard", "hint": "synonyms for leonard", "clues": ["Dutch Leonard", "Elmore Leonard", "Leonard", "Elmore John Leonard"]}, {"answer": "leotards", "hint": "synonyms for leotards", "clues": ["leotard", "unitard", "tights", "body suit", "cat suit"]}, {"answer": "lesson", "hint": "synonyms for lesson", "clues": ["object lesson", "moral", "example", "deterrent example", "lesson"]}, {"answer": "let", "hint": "synonyms for let", "clues": ["net ball", "Army of the Righteous", "LET", "Army of the Pure", "Lashkar-e-Tayyiba"]}, {"answer": "lethargic_encephalitis", "hint": "synonyms for lethargic encephalitis", "clues": ["epidemic encephalitis", "sleepy sickness", "encephalitis lethargica", "lethargic encephalitis"]}, {"answer": "lethargy", "hint": "synonyms for lethargy", "clues": ["slackness", "languor", "phlegm", "lassitude", "sluggishness", "flatness", "inanition", "lethargy"]}, {"answer": "letter", "hint": "synonyms for letter", "clues": ["varsity letter", "letter of the alphabet", "alphabetic character", "missive", "letter"]}, {"answer": "letter_box", "hint": "synonyms for letter box", "clues": ["POB", "Post-Office box", "PO Box", "call box", "postbox", "mailbox", "letter box"]}, {"answer": "letter_carrier", "hint": "synonyms for letter carrier", "clues": ["mail carrier", "postman", "mailman", "carrier", "letter carrier"]}, {"answer": "letters", "hint": "synonyms for letters", "clues": ["letter", "missive", "varsity letter", "letter of the alphabet", "alphabetic character"]}, {"answer": "lettuce", "hint": "synonyms for lettuce", "clues": ["clams", "dinero", "bread", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "lettuce"]}, {"answer": "leucocyte", "hint": "synonyms for leucocyte", "clues": ["white cell", "white blood corpuscle", "white blood cell", "white corpuscle", "leukocyte", "WBC"]}, {"answer": "leukocyte", "hint": "synonyms for leukocyte", "clues": ["white cell", "white blood corpuscle", "white blood cell", "white corpuscle", "leucocyte", "WBC"]}, {"answer": "leveling", "hint": "synonyms for leveling", "clues": ["equalization", "tearing down", "demolishing", "razing", "grading", "leveling"]}, {"answer": "levi", "hint": "synonyms for levi", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Matthew"]}, {"answer": "levis", "hint": "synonyms for levis", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Levi's", "Matthew"]}, {"answer": "levodopa", "hint": "synonyms for levodopa", "clues": ["Bendopa", "Brocadopa", "L-dopa", "Larodopa", "levodopa"]}, {"answer": "lewdness", "hint": "synonyms for lewdness", "clues": ["salacity", "obscenity", "bawdiness", "salaciousness", "lewdness"]}, {"answer": "lewis", "hint": "synonyms for lewis", "clues": ["Lewis", "John L. Lewis", "Harry Sinclair Lewis", "C. S. Lewis", "Frederick Carleton Lewis", "John Llewelly Lewis", "Meriwether Lewis", "Carl Lewis", "Sinclair Lewis", "Clive Staples Lewis", "Jerry Lee Lewis"]}, {"answer": "lewis_carroll", "hint": "synonyms for lewis carroll", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "ley", "hint": "synonyms for ley", "clues": ["pastureland", "pasture", "grazing land", "lea", "ley"]}, {"answer": "lh", "hint": "synonyms for lh", "clues": ["LH", "ICSH", "interstitial cell-stimulating hormone", "luteinizing hormone"]}, {"answer": "lhasa", "hint": "synonyms for lhasa", "clues": ["Forbidden City", "Lassa", "capital of Tibet", "Lhasa"]}, {"answer": "liaison", "hint": "synonyms for liaison", "clues": ["affair", "amour", "inter-group communication", "intimacy", "link", "involvement", "contact", "liaison"]}, {"answer": "libeler", "hint": "synonyms for libeler", "clues": ["slanderer", "defamer", "traducer", "vilifier", "maligner", "backbiter", "libeler"]}, {"answer": "liberation", "hint": "synonyms for liberation", "clues": ["sacking", "firing", "freeing", "dismissal", "dismission", "release", "discharge", "liberation"]}, {"answer": "liberation_tigers_of_tamil_eelam", "hint": "synonyms for liberation tigers of tamil eelam", "clues": ["World Tamil Association", "Tamil Tigers", "Tigers", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "liberty", "hint": "synonyms for liberty", "clues": ["indecorum", "impropriety", "familiarity", "autonomy", "shore leave", "liberty"]}, {"answer": "libra", "hint": "synonyms for libra", "clues": ["Libra the Scales", "Balance", "Libra the Balance", "Libra"]}, {"answer": "libra_the_balance", "hint": "synonyms for libra the balance", "clues": ["Balance", "Libra the Scales", "Libra the Balance", "Libra"]}, {"answer": "libra_the_scales", "hint": "synonyms for libra the scales", "clues": ["Balance", "Libra the Scales", "Libra the Balance", "Libra"]}, {"answer": "libyan_fighting_group", "hint": "synonyms for libyan fighting group", "clues": ["Libyan Fighting Group", "FIG", "Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya", "Libyan Islamic Fighting Group", "Libyan Islamic Group"]}, {"answer": "libyan_islamic_fighting_group", "hint": "synonyms for libyan islamic fighting group", "clues": ["Libyan Fighting Group", "FIG", "Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya", "Libyan Islamic Fighting Group", "Libyan Islamic Group"]}, {"answer": "libyan_islamic_group", "hint": "synonyms for libyan islamic group", "clues": ["Libyan Fighting Group", "FIG", "Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya", "Libyan Islamic Fighting Group", "Libyan Islamic Group"]}, {"answer": "licentiousness", "hint": "synonyms for licentiousness", "clues": ["profligacy", "looseness", "dissipation", "wantonness", "dissolution", "licentiousness"]}, {"answer": "lichee", "hint": "synonyms for lichee", "clues": ["lychee", "litchee", "litchi nut", "lichi", "leechee"]}, {"answer": "lichi", "hint": "synonyms for lichi", "clues": ["lychee", "litchee", "litchi nut", "litchi", "leechee"]}, {"answer": "lick", "hint": "synonyms for lick", "clues": ["salt lick", "slug", "lap", "punch", "poke", "biff", "clout", "lick"]}, {"answer": "licking", "hint": "synonyms for licking", "clues": ["beating", "defeat", "drubbing", "lacing", "whacking", "thrashing", "trouncing", "licking"]}, {"answer": "lid", "hint": "synonyms for lid", "clues": ["eyelid", "hat", "chapeau", "palpebra", "lid"]}, {"answer": "lie", "hint": "synonyms for lie", "clues": ["prevarication", "Trygve Lie", "Trygve Halvden Lie", "Lie"]}, {"answer": "liege_subject", "hint": "synonyms for liege subject", "clues": ["vassal", "liege", "feudatory", "liegeman", "liege subject"]}, {"answer": "liegeman", "hint": "synonyms for liegeman", "clues": ["liege subject", "vassal", "liege", "feudatory", "liegeman"]}, {"answer": "life", "hint": "synonyms for life", "clues": ["sprightliness", "spirit", "life story", "animation", "lifetime", "biography", "life sentence", "living", "liveliness", "lifespan", "aliveness", "life"]}, {"answer": "life_belt", "hint": "synonyms for life belt", "clues": ["safety harness", "life buoy", "lifesaver", "life ring", "safety belt", "life belt"]}, {"answer": "life_history", "hint": "synonyms for life history", "clues": ["biography", "life", "career", "life story"]}, {"answer": "lifesaver", "hint": "synonyms for lifesaver", "clues": ["life belt", "lifeguard", "life buoy", "life ring", "lifesaver"]}, {"answer": "lift", "hint": "synonyms for lift", "clues": ["cosmetic surgery", "rhytidoplasty", "face lift", "heave", "airlift", "aerodynamic lift", "raise", "rhytidectomy", "ski lift", "ski tow", "raising", "nip and tuck", "elevation", "elevator", "lift"]}, {"answer": "light_beam", "hint": "synonyms for light beam", "clues": ["shaft", "irradiation", "shaft of light", "beam of light", "ray of light", "beam", "ray", "light beam"]}, {"answer": "light_bulb", "hint": "synonyms for light bulb", "clues": ["incandescent lamp", "electric-light bulb", "electric light", "lightbulb", "bulb"]}, {"answer": "light_within", "hint": "synonyms for light within", "clues": ["Christ Within", "Inner Light", "Light Within", "Light"]}, {"answer": "lightbulb", "hint": "synonyms for lightbulb", "clues": ["incandescent lamp", "light bulb", "electric light", "bulb", "electric-light bulb"]}, {"answer": "lighter", "hint": "synonyms for lighter", "clues": ["igniter", "light", "barge", "hoy", "flatboat", "lighter"]}, {"answer": "lighting", "hint": "synonyms for lighting", "clues": ["firing", "light", "inflammation", "ignition", "kindling"]}, {"answer": "lightlessness", "hint": "synonyms for lightlessness", "clues": ["pitch blackness", "black", "total darkness", "blackness", "lightlessness"]}, {"answer": "lightness", "hint": "synonyms for lightness", "clues": ["light", "agility", "weightlessness", "high spirits", "nimbleness", "lightsomeness", "legerity", "elation", "lightness"]}, {"answer": "lightning_arrester", "hint": "synonyms for lightning arrester", "clues": ["spike arrester", "spike suppressor", "surge protector", "surge suppressor", "lightning arrester"]}, {"answer": "lightsomeness", "hint": "synonyms for lightsomeness", "clues": ["lightness", "lightheartedness", "nimbleness", "insouciance", "carefreeness", "legerity", "agility", "lightsomeness"]}, {"answer": "lillie_langtry", "hint": "synonyms for lillie langtry", "clues": ["Langtry", "Lillie Langtry", "Jersey Lillie", "Emilie Charlotte le Breton"]}, {"answer": "lime", "hint": "synonyms for lime", "clues": ["calcium oxide", "birdlime", "calx", "burnt lime", "unslaked lime", "caustic lime", "calcined lime", "lime hydrate", "hydrated lime", "quicklime", "fluxing lime", "calcium hydrate", "lime"]}, {"answer": "lime_hydrate", "hint": "synonyms for lime hydrate", "clues": ["calcium hydrate", "hydrated lime", "lime", "slaked lime", "caustic lime", "calcium hydroxide", "lime hydrate"]}, {"answer": "limelight", "hint": "synonyms for limelight", "clues": ["spotlight", "public eye", "calcium light", "glare", "limelight"]}, {"answer": "limit", "hint": "synonyms for limit", "clues": ["terminus ad quem", "demarcation", "limit point", "limitation", "point of accumulation", "terminal point", "boundary", "demarcation line", "bound", "limit"]}, {"answer": "limitlessness", "hint": "synonyms for limitlessness", "clues": ["boundlessness", "unboundedness", "infiniteness", "infinitude", "limitlessness"]}, {"answer": "limpidity", "hint": "synonyms for limpidity", "clues": ["clarity", "pellucidness", "lucidity", "pellucidity", "clearness", "limpidity"]}, {"answer": "limping", "hint": "synonyms for limping", "clues": ["gimpiness", "gameness", "claudication", "gimp", "limping"]}, {"answer": "linchpin", "hint": "synonyms for linchpin", "clues": ["mainstay", "backbone", "anchor", "keystone", "lynchpin"]}, {"answer": "lincoln", "hint": "synonyms for lincoln", "clues": ["President Abraham Lincoln", "capital of Nebraska", "Abraham Lincoln", "President Lincoln", "Lincoln"]}, {"answer": "lindbergh", "hint": "synonyms for lindbergh", "clues": ["Lindbergh", "Charles Lindbergh", "Lucky Lindy", "Charles Augustus Lindbergh"]}, {"answer": "lindsay", "hint": "synonyms for lindsay", "clues": ["Howard Lindsay", "Nicholas Vachel Lindsay", "Vachel Lindsay", "Lindsay"]}, {"answer": "line", "hint": "synonyms for line", "clues": ["credit line", "phone line", "lineage", "rail line", "stemma", "job", "telephone line", "line of descent", "melodic phrase", "origin", "descent", "pedigree", "logical argument", "personal credit line", "line of credit", "melody", "billet", "cable", "demarcation", "short letter", "line of work", "line of products", "contrast", "subscriber line", "occupation", "crease", "argument", "transmission line", "business line", "note", "blood", "communication channel", "line of reasoning", "parentage", "agate line", "course", "furrow", "personal line of credit", "line of merchandise", "strain", "wrinkle", "stock", "line of business", "seam", "argumentation", "air", "bloodline", "dividing line", "production line", "ancestry", "telephone circuit", "tune", "channel", "assembly line", "bank line", "pipeline", "business", "melodic line", "line"]}, {"answer": "line-shooter", "hint": "synonyms for line-shooter", "clues": ["blowhard", "bragger", "boaster", "braggart", "vaunter", "line-shooter"]}, {"answer": "line-shooting", "hint": "synonyms for line-shooting", "clues": ["gasconade", "vaporing", "brag", "bragging", "crow", "line-shooting"]}, {"answer": "line_of_business", "hint": "synonyms for line of business", "clues": ["business line", "line of merchandise", "line of products", "field", "line", "product line", "field of operation", "line of business"]}, {"answer": "line_of_credit", "hint": "synonyms for line of credit", "clues": ["credit line", "personal credit line", "line", "bank line", "personal line of credit", "line of credit"]}, {"answer": "line_of_descent", "hint": "synonyms for line of descent", "clues": ["filiation", "blood line", "lineage", "blood", "stemma", "line", "ancestry", "parentage", "origin", "descent", "pedigree", "stock", "line of descent"]}, {"answer": "line_of_merchandise", "hint": "synonyms for line of merchandise", "clues": ["business line", "line of products", "line of business", "line", "product line", "line of merchandise"]}, {"answer": "line_of_products", "hint": "synonyms for line of products", "clues": ["business line", "line of merchandise", "line of business", "line", "product line", "line of products"]}, {"answer": "line_of_reasoning", "hint": "synonyms for line of reasoning", "clues": ["argument", "line", "argumentation", "logical argument", "line of reasoning"]}, {"answer": "line_of_work", "hint": "synonyms for line of work", "clues": ["job", "line", "occupation", "business", "line of work"]}, {"answer": "lineage", "hint": "synonyms for lineage", "clues": ["filiation", "blood line", "blood", "stemma", "line", "line of descent", "linage", "ancestry", "parentage", "origin", "descent", "pedigree", "stock", "derivation"]}, {"answer": "lingo", "hint": "synonyms for lingo", "clues": ["argot", "vernacular", "cant", "slang", "patois", "jargon", "lingo"]}, {"answer": "link", "hint": "synonyms for link", "clues": ["tie", "connection", "connexion", "data link", "linkup", "tie-in", "liaison", "connectedness", "inter-group communication", "nexus", "contact", "radio link", "link"]}, {"answer": "links", "hint": "synonyms for links", "clues": ["tie", "golf links", "connection", "connexion", "data link", "linkup", "link", "tie-in", "liaison", "connectedness", "inter-group communication", "nexus", "contact", "radio link"]}, {"answer": "linnaeus", "hint": "synonyms for linnaeus", "clues": ["Linnaeus", "Carolus Linnaeus", "Karl Linne", "Carl von Linne"]}, {"answer": "lion", "hint": "synonyms for lion", "clues": ["Lion", "social lion", "Leo the Lion", "Leo"]}, {"answer": "lip", "hint": "synonyms for lip", "clues": ["sass", "brim", "mouth", "backtalk", "lip"]}, {"answer": "lipid_granulomatosis", "hint": "synonyms for lipid granulomatosis", "clues": ["lipoid granulomatosis", "xanthoma multiplex", "xanthomatosis", "cholesterosis cutis"]}, {"answer": "lipochondrodystrophy", "hint": "synonyms for lipochondrodystrophy", "clues": ["Hurler's disease", "gargoylism", "dysostosis multiplex", "Hurler's syndrome", "lipochondrodystrophy"]}, {"answer": "lipoid_granulomatosis", "hint": "synonyms for lipoid granulomatosis", "clues": ["xanthoma multiplex", "xanthomatosis", "lipid granulomatosis", "cholesterosis cutis"]}, {"answer": "liquid_ecstasy", "hint": "synonyms for liquid ecstasy", "clues": ["soap", "Georgia home boy", "grievous bodily harm", "max", "scoop", "goop", "easy lay", "liquid ecstasy"]}, {"answer": "liquid_pred", "hint": "synonyms for liquid pred", "clues": ["Meticorten", "prednisone", "Deltasone", "Orasone", "Liquid Pred"]}, {"answer": "liquidity", "hint": "synonyms for liquidity", "clues": ["liquidness", "fluidity", "runniness", "liquid", "fluidness", "liquid state", "liquidity"]}, {"answer": "liquidness", "hint": "synonyms for liquidness", "clues": ["fluidity", "runniness", "liquid", "fluidness", "liquidity", "liquid state", "liquidness"]}, {"answer": "liquor", "hint": "synonyms for liquor", "clues": ["pot likker", "John Barleycorn", "hard drink", "booze", "spirits", "hard liquor", "pot liquor", "strong drink", "liquor"]}, {"answer": "list", "hint": "synonyms for list", "clues": ["inclination", "leaning", "tilt", "listing"]}, {"answer": "lister", "hint": "synonyms for lister", "clues": ["Joseph Lister", "middlebreaker", "Lister", "lister plough", "middle buster", "Baron Lister", "lister plow"]}, {"answer": "lister_plough", "hint": "synonyms for lister plough", "clues": ["middle buster", "middlebreaker", "lister", "lister plow", "lister plough"]}, {"answer": "lister_plow", "hint": "synonyms for lister plow", "clues": ["middle buster", "middlebreaker", "lister", "lister plough", "lister plow"]}, {"answer": "listlessness", "hint": "synonyms for listlessness", "clues": ["languor", "lassitude", "torpidity", "torpidness", "torpor", "listlessness"]}, {"answer": "litchee", "hint": "synonyms for litchee", "clues": ["lychee", "lichee", "litchi nut", "lichi", "leechee"]}, {"answer": "litchi", "hint": "synonyms for litchi", "clues": ["lychee", "litchee", "litchi nut", "lichi", "leechee"]}, {"answer": "litchi_nut", "hint": "synonyms for litchi nut", "clues": ["lychee", "litchee", "lichi", "leechee", "litchi nut"]}, {"answer": "liter", "hint": "synonyms for liter", "clues": ["litre", "cubic decimetre", "l", "liter"]}, {"answer": "literal_error", "hint": "synonyms for literal error", "clues": ["misprint", "typographical error", "literal", "typo", "erratum", "literal error"]}, {"answer": "literary_pirate", "hint": "synonyms for literary pirate", "clues": ["pirate", "plagiarist", "plagiarizer", "literary pirate"]}, {"answer": "lithane", "hint": "synonyms for lithane", "clues": ["lithium carbonate", "Eskalith", "Lithonate", "Lithane"]}, {"answer": "lithonate", "hint": "synonyms for lithonate", "clues": ["lithium carbonate", "Eskalith", "Lithonate", "Lithane"]}, {"answer": "litre", "hint": "synonyms for litre", "clues": ["cubic decimetre", "liter", "l", "litre"]}, {"answer": "little_bighorn", "hint": "synonyms for little bighorn", "clues": ["Battle of Little Bighorn", "Custer's Last Stand", "Little Bighorn River", "Little Bighorn"]}, {"answer": "little_corporal", "hint": "synonyms for little corporal", "clues": ["Bonaparte", "Napoleon I", "Napoleon Bonaparte", "Little Corporal"]}, {"answer": "little_joe", "hint": "synonyms for little joe", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "foursome", "quaternary"]}, {"answer": "little_phoebe", "hint": "synonyms for little phoebe", "clues": ["V", "quintuplet", "Phoebe", "five", "5", "quintet", "quint", "Little Phoebe", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "little_rhody", "hint": "synonyms for little rhody", "clues": ["Ocean State", "Rhode Island", "Little Rhody", "RI"]}, {"answer": "little_sparrow", "hint": "synonyms for little sparrow", "clues": ["Little Sparrow", "Piaf", "Edith Piaf", "Edith Giovanna Gassion"]}, {"answer": "liturgy", "hint": "synonyms for liturgy", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "live_wire", "hint": "synonyms for live wire", "clues": ["eager beaver", "busy bee", "sharpy", "sharpie", "live wire"]}, {"answer": "livelihood", "hint": "synonyms for livelihood", "clues": ["support", "sustenance", "bread and butter", "living", "keep", "livelihood"]}, {"answer": "liveliness", "hint": "synonyms for liveliness", "clues": ["animation", "spirit", "life", "sprightliness", "liveliness"]}, {"answer": "livery_driver", "hint": "synonyms for livery driver", "clues": ["hack driver", "taxidriver", "cabby", "cabman", "cabdriver", "taximan", "livery driver"]}, {"answer": "lividity", "hint": "synonyms for lividity", "clues": ["wanness", "lividness", "pallor", "luridness", "paleness", "achromasia", "pallidness", "lividity"]}, {"answer": "lividness", "hint": "synonyms for lividness", "clues": ["wanness", "pallor", "luridness", "lividity", "achromasia", "paleness", "pallidness", "lividness"]}, {"answer": "living-room", "hint": "synonyms for living-room", "clues": ["parlour", "sitting room", "front room", "living room"]}, {"answer": "living_room", "hint": "synonyms for living room", "clues": ["parlour", "living-room", "sitting room", "front room"]}, {"answer": "load", "hint": "synonyms for load", "clues": ["loading", "cargo", "lode", "warhead", "incumbrance", "payload", "shipment", "freight", "consignment", "burden", "onus"]}, {"answer": "loader", "hint": "synonyms for loader", "clues": ["longshoreman", "docker", "dockhand", "dock-walloper", "dockworker", "stevedore", "lumper", "loader"]}, {"answer": "loading", "hint": "synonyms for loading", "clues": ["load", "lading", "cargo", "payload", "shipment", "freight", "consignment", "burden"]}, {"answer": "loads", "hint": "synonyms for loads", "clues": ["tons", "cargo", "warhead", "incumbrance", "gobs", "rafts", "lashings", "payload", "oodles", "shipment", "consignment", "dozens", "scads", "slews", "heaps", "loading", "lots", "lode", "wads", "scores", "stacks", "freight", "burden", "onus", "piles", "loads"]}, {"answer": "loafer", "hint": "synonyms for loafer", "clues": ["idler", "layabout", "bum", "do-nothing", "Loafer"]}, {"answer": "loathing", "hint": "synonyms for loathing", "clues": ["abhorrence", "odium", "abomination", "execration", "detestation", "loathing"]}, {"answer": "loathsomeness", "hint": "synonyms for loathsomeness", "clues": ["lousiness", "repulsiveness", "wickedness", "vileness", "sliminess", "loathsomeness"]}, {"answer": "lobby", "hint": "synonyms for lobby", "clues": ["entrance hall", "antechamber", "anteroom", "foyer", "pressure group", "vestibule", "hall", "third house", "lobby"]}, {"answer": "localisation", "hint": "synonyms for localisation", "clues": ["localization", "location", "localisation principle", "localization of function", "fix"]}, {"answer": "locality", "hint": "synonyms for locality", "clues": ["neighborhood", "neck of the woods", "vicinity", "locality"]}, {"answer": "localization", "hint": "synonyms for localization", "clues": ["location", "localisation principle", "fix", "localisation of function", "localisation"]}, {"answer": "locating", "hint": "synonyms for locating", "clues": ["positioning", "localization", "location", "emplacement", "fix"]}, {"answer": "location", "hint": "synonyms for location", "clues": ["positioning", "localization", "emplacement", "fix", "locating"]}, {"answer": "lock", "hint": "synonyms for lock", "clues": ["whorl", "ringlet", "ignition lock", "lock chamber", "curl", "lock"]}, {"answer": "lockbox", "hint": "synonyms for lockbox", "clues": ["deposit box", "safe-deposit", "safety deposit box", "lockbox"]}, {"answer": "locoweed", "hint": "synonyms for locoweed", "clues": ["Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "sess", "weed", "skunk", "sens", "locoweed"]}, {"answer": "lodge", "hint": "synonyms for lodge", "clues": ["hunting lodge", "club", "society", "order", "social club", "guild", "indian lodge", "auberge", "hostel", "Sir Oliver Joseph Lodge", "Sir Oliver Lodge", "Lodge", "inn"]}, {"answer": "lodging", "hint": "synonyms for lodging", "clues": ["housing", "living accommodations", "lodgement", "lodging"]}, {"answer": "lodgings", "hint": "synonyms for lodgings", "clues": ["lodging", "living accommodations", "digs", "domiciliation", "lodgment", "diggings", "housing", "pad"]}, {"answer": "logger", "hint": "synonyms for logger", "clues": ["feller", "faller", "lumberman", "lumberjack", "logger"]}, {"answer": "loggerhead", "hint": "synonyms for loggerhead", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead"]}, {"answer": "logical_argument", "hint": "synonyms for logical argument", "clues": ["argument", "line", "argumentation", "line of reasoning", "logical argument"]}, {"answer": "logos", "hint": "synonyms for logos", "clues": ["Son", "Word", "logotype", "Logos"]}, {"answer": "lollipop", "hint": "synonyms for lollipop", "clues": ["sucker", "all-day sucker", "ice lolly", "popsicle", "lolly", "lollipop"]}, {"answer": "lolly", "hint": "synonyms for lolly", "clues": ["clams", "ice lolly", "popsicle", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lollipop", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "lolly"]}, {"answer": "london", "hint": "synonyms for london", "clues": ["British capital", "capital of the United Kingdom", "London", "Greater London", "Jack London", "John Griffith Chaney"]}, {"answer": "loneliness", "hint": "synonyms for loneliness", "clues": ["lonesomeness", "forlornness", "aloneness", "desolation", "solitariness", "loneliness"]}, {"answer": "long-windedness", "hint": "synonyms for long-windedness", "clues": ["windiness", "prolixity", "prolixness", "wordiness", "long-windedness"]}, {"answer": "long_dozen", "hint": "synonyms for long dozen", "clues": ["13", "thirteen", "XIII", "baker's dozen", "long dozen"]}, {"answer": "long_suit", "hint": "synonyms for long suit", "clues": ["strong point", "speciality", "strength", "strong suit", "forte", "metier", "long suit"]}, {"answer": "longshoreman", "hint": "synonyms for longshoreman", "clues": ["docker", "dockhand", "dock-walloper", "dockworker", "loader", "stevedore", "lumper", "longshoreman"]}, {"answer": "longsightedness", "hint": "synonyms for longsightedness", "clues": ["hyperopia", "farsightedness", "hypermetropy", "longsightedness"]}, {"answer": "look", "hint": "synonyms for look", "clues": ["flavour", "facial expression", "smell", "spirit", "looking at", "face", "tone", "aspect", "looking", "expression", "feel"]}, {"answer": "looker", "hint": "synonyms for looker", "clues": ["ravisher", "stunner", "lulu", "smasher", "watcher", "knockout", "peach", "mantrap", "sweetheart", "viewer", "dish", "beauty", "spectator", "witness", "looker"]}, {"answer": "lookout", "hint": "synonyms for lookout", "clues": ["sentry", "lookout station", "lookout man", "sentinel", "observatory", "observation post", "picket", "observation tower", "outlook", "scout", "spotter", "watch", "lookout"]}, {"answer": "lookout_man", "hint": "synonyms for lookout man", "clues": ["sentry", "watch", "sentinel", "scout", "picket", "spotter", "lookout", "lookout man"]}, {"answer": "looney", "hint": "synonyms for looney", "clues": ["loony", "nutcase", "crazy", "weirdo"]}, {"answer": "loony_bin", "hint": "synonyms for loony bin", "clues": ["funny farm", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house", "loony bin"]}, {"answer": "loony_toons", "hint": "synonyms for loony toons", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "window pane", "acid", "back breaker", "loony toons"]}, {"answer": "loop", "hint": "synonyms for loop", "clues": ["loop topology", "cringle", "iteration", "loop-the-loop", "grummet", "eyelet", "closed circuit", "loop"]}, {"answer": "loos", "hint": "synonyms for loos", "clues": ["loo", "closet", "Adolf Loos", "water closet", "W.C."]}, {"answer": "loose_woman", "hint": "synonyms for loose woman", "clues": ["strumpet", "slut", "hussy", "trollop", "adulteress", "jade", "fornicatress", "loose woman"]}, {"answer": "looseness", "hint": "synonyms for looseness", "clues": ["profligacy", "diarrhoea", "dissipation", "play", "dissolution", "looseness of the bowels", "licentiousness", "looseness"]}, {"answer": "loot", "hint": "synonyms for loot", "clues": ["clams", "dinero", "bread", "pillage", "lettuce", "dough", "moolah", "lucre", "swag", "pelf", "wampum", "kale", "dirty money", "booty", "lolly", "simoleons", "plunder", "sugar", "gelt", "scratch", "shekels", "prize", "boodle", "cabbage", "loot"]}, {"answer": "looter", "hint": "synonyms for looter", "clues": ["pillager", "plunderer", "freebooter", "despoiler", "raider", "looter"]}, {"answer": "loquaciousness", "hint": "synonyms for loquaciousness", "clues": ["talkativeness", "garrulity", "loquacity", "garrulousness", "loquaciousness"]}, {"answer": "loquacity", "hint": "synonyms for loquacity", "clues": ["garrulity", "talkativeness", "garrulousness", "loquaciousness", "loquacity"]}, {"answer": "lord", "hint": "synonyms for lord", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "nobleman", "Maker", "Almighty", "master", "noble", "Divine", "overlord", "God Almighty"]}, {"answer": "lord's_day", "hint": "synonyms for lord's day", "clues": ["Lord's Day", "Sun", "Sunday", "Dominicus"]}, {"answer": "lord's_supper", "hint": "synonyms for lord's supper", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Holy Eucharist", "Holy Sacrament", "Last Supper", "Liturgy", "sacrament of the Eucharist"]}, {"answer": "lord_britten_of_aldeburgh", "hint": "synonyms for lord britten of aldeburgh", "clues": ["Benjamin Britten", "Edward Benjamin Britten", "Britten", "Lord Britten of Aldeburgh"]}, {"answer": "lord_macaulay", "hint": "synonyms for lord macaulay", "clues": ["Macaulay", "First Baron Macaulay", "Thomas Babington Macaulay", "Lord Macaulay"]}, {"answer": "lord_nelson", "hint": "synonyms for lord nelson", "clues": ["Viscount Nelson", "Admiral Nelson", "Lord Nelson", "Horatio Nelson", "Nelson"]}, {"answer": "lord_rayleigh", "hint": "synonyms for lord rayleigh", "clues": ["Rayleigh", "Lord Rayleigh", "Third Baron Rayleigh", "John William Strutt"]}, {"answer": "lordliness", "hint": "synonyms for lordliness", "clues": ["high-handedness", "haughtiness", "dignity", "arrogance", "hauteur", "gravitas", "lordliness"]}, {"answer": "lorenz_oken", "hint": "synonyms for lorenz oken", "clues": ["Lorenz Okenfuss", "Okenfuss", "Oken", "Lorenz Oken"]}, {"answer": "lorenz_okenfuss", "hint": "synonyms for lorenz okenfuss", "clues": ["Lorenz Okenfuss", "Okenfuss", "Oken", "Lorenz Oken"]}, {"answer": "loser", "hint": "synonyms for loser", "clues": ["failure", "nonstarter", "unsuccessful person", "also-ran", "loser"]}, {"answer": "loss", "hint": "synonyms for loss", "clues": ["going", "exit", "deprivation", "red ink", "red", "departure", "expiration", "passing", "personnel casualty", "release", "loss"]}, {"answer": "losses", "hint": "synonyms for losses", "clues": ["going", "exit", "deprivation", "red ink", "loss", "red", "departure", "expiration", "passing", "personnel casualty", "losings", "release"]}, {"answer": "lot", "hint": "synonyms for lot", "clues": ["mint", "peck", "quite a little", "circle", "deal", "mountain", "portion", "draw", "destiny", "stack", "caboodle", "Lot", "raft", "batch", "mess", "plenty", "sight", "muckle", "wad", "mass", "mickle", "circumstances", "great deal", "hatful", "bunch", "pot", "good deal", "passel", "pile", "tidy sum", "spate", "luck", "set", "slew", "fate", "band", "fortune", "heap", "flock"]}, {"answer": "loudness", "hint": "synonyms for loudness", "clues": ["volume", "brashness", "glitz", "meretriciousness", "garishness", "tawdriness", "intensity", "gaudiness", "flashiness", "loudness"]}, {"answer": "loudspeaker", "hint": "synonyms for loudspeaker", "clues": ["speaker unit", "loudspeaker system", "speaker", "loudspeaker"]}, {"answer": "loudspeaker_system", "hint": "synonyms for loudspeaker system", "clues": ["speaker unit", "speaker", "speaker system", "loudspeaker"]}, {"answer": "louis_ii", "hint": "synonyms for louis ii", "clues": ["Louis II", "Louis le Begue", "Louis the German", "Louis the Stammerer"]}, {"answer": "louis_le_begue", "hint": "synonyms for louis le begue", "clues": ["Louis II", "Louis le Begue", "Louis the German", "Louis the Stammerer"]}, {"answer": "louis_the_bruiser", "hint": "synonyms for louis the bruiser", "clues": ["Louis the Far", "Louis the Bruiser", "Louis VI", "Louis the Wideawake"]}, {"answer": "louis_the_far", "hint": "synonyms for louis the far", "clues": ["Louis the Far", "Louis the Bruiser", "Louis VI", "Louis the Wideawake"]}, {"answer": "louis_the_german", "hint": "synonyms for louis the german", "clues": ["Louis II", "Louis le Begue", "Louis the German", "Louis the Stammerer"]}, {"answer": "louis_the_stammerer", "hint": "synonyms for louis the stammerer", "clues": ["Louis II", "Louis le Begue", "Louis the German", "Louis the Stammerer"]}, {"answer": "louis_the_wideawake", "hint": "synonyms for louis the wideawake", "clues": ["Louis the Far", "Louis the Bruiser", "Louis VI", "Louis the Wideawake"]}, {"answer": "louis_vi", "hint": "synonyms for louis vi", "clues": ["Louis the Far", "Louis the Bruiser", "Louis VI", "Louis the Wideawake"]}, {"answer": "lounge", "hint": "synonyms for lounge", "clues": ["waiting room", "waiting area", "couch", "sofa", "lounge"]}, {"answer": "lounger", "hint": "synonyms for lounger", "clues": ["recliner", "reclining chair", "dilly-dallier", "dallier", "mope", "lounger"]}, {"answer": "lousiness", "hint": "synonyms for lousiness", "clues": ["pediculosis", "repulsiveness", "wickedness", "vileness", "loathsomeness", "sliminess", "lousiness"]}, {"answer": "lout", "hint": "synonyms for lout", "clues": ["clod", "lump", "stumblebum", "lubber", "gawk", "oaf", "goon", "lummox", "lout"]}, {"answer": "louvre", "hint": "synonyms for louvre", "clues": ["fin", "Louvre", "Louvre Museum", "louver"]}, {"answer": "love", "hint": "synonyms for love", "clues": ["honey", "lovemaking", "beloved", "making love", "erotic love", "dear", "love life", "sexual love", "dearest", "passion", "love"]}, {"answer": "love_child", "hint": "synonyms for love child", "clues": ["illegitimate child", "by-blow", "whoreson", "illegitimate", "bastard", "love child"]}, {"answer": "love_life", "hint": "synonyms for love life", "clues": ["lovemaking", "sexual love", "love", "making love", "love life"]}, {"answer": "lovemaking", "hint": "synonyms for lovemaking", "clues": ["love life", "sexual love", "love", "making love", "lovemaking"]}, {"answer": "lovingness", "hint": "synonyms for lovingness", "clues": ["warmth", "fondness", "caring", "affectionateness", "lovingness"]}, {"answer": "low-spiritedness", "hint": "synonyms for low-spiritedness", "clues": ["downheartedness", "dejectedness", "lowness", "dispiritedness", "low-spiritedness"]}, {"answer": "low_temperature", "hint": "synonyms for low temperature", "clues": ["frigidity", "cold", "frigidness", "coldness", "low temperature"]}, {"answer": "lowell", "hint": "synonyms for lowell", "clues": ["Abbott Lawrence Lowell", "Robert Traill Spence Lowell Jr.", "Percival Lowell", "Amy Lowell", "Lowell", "Robert Lowell"]}, {"answer": "lower_carboniferous", "hint": "synonyms for lower carboniferous", "clues": ["Lower Carboniferous", "Lower Carboniferous period", "Mississippian", "Missippian period"]}, {"answer": "lower_carboniferous_period", "hint": "synonyms for lower carboniferous period", "clues": ["Lower Carboniferous", "Lower Carboniferous period", "Mississippian", "Missippian period"]}, {"answer": "lower_jaw", "hint": "synonyms for lower jaw", "clues": ["jawbone", "mandible", "mandibular bone", "submaxilla", "lower jawbone", "mandibula", "jowl", "lower jaw"]}, {"answer": "lower_jawbone", "hint": "synonyms for lower jawbone", "clues": ["mandible", "mandibular bone", "lower jaw", "submaxilla", "jawbone", "mandibula", "jowl", "lower jawbone"]}, {"answer": "lowlife", "hint": "synonyms for lowlife", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "scum bag", "rat", "dirty dog", "stinker", "puke", "rotter", "skunk", "git", "lowlife"]}, {"answer": "lowliness", "hint": "synonyms for lowliness", "clues": ["lowness", "low status", "humbleness", "unimportance", "obscureness"]}, {"answer": "lowness", "hint": "synonyms for lowness", "clues": ["downheartedness", "dejectedness", "low status", "lowliness", "low-spiritedness", "dispiritedness"]}, {"answer": "lowry", "hint": "synonyms for lowry", "clues": ["Malcolm Lowry", "Lowry", "L. S. Lowry", "Laurence Stephen Lowry", "Clarence Malcolm Lowry"]}, {"answer": "loyalty", "hint": "synonyms for loyalty", "clues": ["commitment", "trueness", "allegiance", "dedication", "loyalty"]}, {"answer": "ltte", "hint": "synonyms for ltte", "clues": ["World Tamil Association", "Tamil Tigers", "Tigers", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "lubavitch", "hint": "synonyms for lubavitch", "clues": ["Chabad-Lubavitch", "Chabad", "Lubavitch", "Lubavitch movement"]}, {"answer": "lubavitch_movement", "hint": "synonyms for lubavitch movement", "clues": ["Chabad", "Lubavitch", "Lubavitch movement", "Chabad-Lubavitch"]}, {"answer": "lubber", "hint": "synonyms for lubber", "clues": ["clod", "lump", "stumblebum", "landlubber", "landsman", "gawk", "oaf", "lout", "goon", "lummox", "lubber"]}, {"answer": "lubricating_system", "hint": "synonyms for lubricating system", "clues": ["force-feed lubricating system", "force feed", "pressure feed", "lubricating system"]}, {"answer": "lubricity", "hint": "synonyms for lubricity", "clues": ["pruriency", "carnality", "lasciviousness", "lubricity"]}, {"answer": "luce", "hint": "synonyms for luce", "clues": ["Henry Luce", "Henry Robinson Luce", "Clare Booth Luce", "Luce"]}, {"answer": "lucidity", "hint": "synonyms for lucidity", "clues": ["limpidity", "clarity", "pellucidity", "lucidness", "clearness", "lucidity"]}, {"answer": "lucidness", "hint": "synonyms for lucidness", "clues": ["limpidity", "clarity", "lucidity", "pellucidity", "clearness", "lucidness"]}, {"answer": "lucifer", "hint": "synonyms for lucifer", "clues": ["Prince of Darkness", "morning star", "match", "Beelzebub", "the Tempter", "Devil", "Lucifer", "Phosphorus", "Satan", "daystar", "friction match", "Old Nick"]}, {"answer": "lucius_tarquinius_superbus", "hint": "synonyms for lucius tarquinius superbus", "clues": ["Lucius Tarquinius Superbus", "Tarquinius", "Tarquinius Superbus", "Tarquin the Proud", "Tarquin"]}, {"answer": "luck", "hint": "synonyms for luck", "clues": ["lot", "hazard", "fate", "fortune", "portion", "destiny", "circumstances", "chance", "luck"]}, {"answer": "lucky_lindy", "hint": "synonyms for lucky lindy", "clues": ["Lindbergh", "Charles Lindbergh", "Lucky Lindy", "Charles Augustus Lindbergh"]}, {"answer": "lucre", "hint": "synonyms for lucre", "clues": ["clams", "net profit", "dinero", "earnings", "bread", "lettuce", "dough", "moolah", "pelf", "wampum", "kale", "profits", "net", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "net income", "cabbage", "lucre"]}, {"answer": "lucy_in_the_sky_with_diamonds", "hint": "synonyms for lucy in the sky with diamonds", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "window pane", "acid", "back breaker"]}, {"answer": "lues", "hint": "synonyms for lues", "clues": ["syph", "syphilis", "lues venerea", "pox", "lues"]}, {"answer": "lues_venerea", "hint": "synonyms for lues venerea", "clues": ["lues", "syphilis", "syph", "pox", "lues venerea"]}, {"answer": "luke", "hint": "synonyms for luke", "clues": ["Saint Luke", "Gospel According to Luke", "St. Luke", "Luke", "Gospel of Luke"]}, {"answer": "lulli", "hint": "synonyms for lulli", "clues": ["Giambattista Lulli", "Lully", "Jean Baptiste Lully", "Lulli"]}, {"answer": "lully", "hint": "synonyms for lully", "clues": ["Giambattista Lulli", "Ramon Lully", "Lulli", "Lully", "Jean Baptiste Lully"]}, {"answer": "lulu", "hint": "synonyms for lulu", "clues": ["ravisher", "stunner", "looker", "smasher", "knockout", "peach", "mantrap", "sweetheart", "dish", "beauty", "lulu"]}, {"answer": "lumberjack", "hint": "synonyms for lumberjack", "clues": ["lumber jacket", "logger", "feller", "faller", "lumberman"]}, {"answer": "lumberman", "hint": "synonyms for lumberman", "clues": ["logger", "feller", "faller", "lumberjack", "lumberman"]}, {"answer": "luminal", "hint": "synonyms for luminal", "clues": ["phenobarbital", "Luminal", "purple heart", "sodium thiopental", "phenobarbitone"]}, {"answer": "luminance", "hint": "synonyms for luminance", "clues": ["brightness", "light", "luminousness", "luminosity", "brightness level", "luminance"]}, {"answer": "luminary", "hint": "synonyms for luminary", "clues": ["notability", "guiding light", "notable", "leading light", "luminary"]}, {"answer": "luminosity", "hint": "synonyms for luminosity", "clues": ["brightness", "light", "luminousness", "brightness level", "luminance", "luminosity"]}, {"answer": "luminousness", "hint": "synonyms for luminousness", "clues": ["brightness", "light", "luminosity", "brightness level", "luminance", "luminousness"]}, {"answer": "lummox", "hint": "synonyms for lummox", "clues": ["clod", "lump", "stumblebum", "lubber", "gawk", "oaf", "lout", "goon", "lummox"]}, {"answer": "lump", "hint": "synonyms for lump", "clues": ["clod", "stumblebum", "clump", "swelling", "hunk", "lubber", "gawk", "oaf", "ball", "lout", "goon", "lummox", "puffiness", "glob"]}, {"answer": "lumper", "hint": "synonyms for lumper", "clues": ["longshoreman", "docker", "dockhand", "dock-walloper", "dockworker", "loader", "stevedore", "lumper"]}, {"answer": "lunacy", "hint": "synonyms for lunacy", "clues": ["foolery", "craziness", "madness", "insaneness", "indulgence", "folly", "tomfoolery", "lunacy"]}, {"answer": "lunkhead", "hint": "synonyms for lunkhead", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "shithead", "blockhead", "loggerhead", "lunkhead"]}, {"answer": "lurch", "hint": "synonyms for lurch", "clues": ["stagger", "lunge", "pitch", "stumble", "lurch"]}, {"answer": "lure", "hint": "synonyms for lure", "clues": ["hook", "decoy", "bait", "come-on", "sweetener", "enticement", "lure"]}, {"answer": "luridness", "hint": "synonyms for luridness", "clues": ["gruesomeness", "lividity", "pallidness", "lividness", "wanness", "sensationalism", "ghastliness", "pallor", "grimness", "achromasia", "paleness", "luridness"]}, {"answer": "luschka's_tonsil", "hint": "synonyms for luschka's tonsil", "clues": ["Luschka's tonsil", "adenoid", "tonsilla adenoidea", "pharyngeal tonsil", "tonsilla pharyngealis", "third tonsil"]}, {"answer": "luster", "hint": "synonyms for luster", "clues": ["lustre", "sheen", "brilliancy", "splendor", "shininess", "luster"]}, {"answer": "lusterlessness", "hint": "synonyms for lusterlessness", "clues": ["lustrelessness", "matte", "mat", "flatness"]}, {"answer": "lustre", "hint": "synonyms for lustre", "clues": ["luster", "sheen", "brilliancy", "splendor", "shininess", "lustre"]}, {"answer": "lustrelessness", "hint": "synonyms for lustrelessness", "clues": ["mat", "matte", "lusterlessness", "flatness"]}, {"answer": "luxembourg", "hint": "synonyms for luxembourg", "clues": ["Luxembourg", "Luxembourg City", "Luxembourg-Ville", "capital of Luxembourg", "Grand Duchy of Luxembourg"]}, {"answer": "luxembourg-ville", "hint": "synonyms for luxembourg-ville", "clues": ["Luxembourg", "Luxembourg City", "Luxembourg-Ville", "capital of Luxembourg"]}, {"answer": "luxembourg_city", "hint": "synonyms for luxembourg city", "clues": ["Luxembourg", "Luxembourg City", "Luxembourg-Ville", "capital of Luxembourg"]}, {"answer": "luxemburg", "hint": "synonyms for luxemburg", "clues": ["Luxembourg", "Luxembourg City", "Luxembourg-Ville", "capital of Luxembourg", "Grand Duchy of Luxembourg"]}, {"answer": "luxury", "hint": "synonyms for luxury", "clues": ["opulence", "sumptuosity", "luxuriousness", "sumptuousness", "lavishness", "luxury"]}, {"answer": "lycee", "hint": "synonyms for lycee", "clues": ["middle school", "lyceum", "Gymnasium", "secondary school", "lycee"]}, {"answer": "lyceum", "hint": "synonyms for lyceum", "clues": ["middle school", "lycee", "Gymnasium", "secondary school", "lyceum"]}, {"answer": "lychee", "hint": "synonyms for lychee", "clues": ["litchee", "litchi nut", "lichi", "leechee", "lychee"]}, {"answer": "lying-in", "hint": "synonyms for lying-in", "clues": ["labour", "childbed", "parturiency", "travail", "confinement", "lying-in"]}, {"answer": "lynchpin", "hint": "synonyms for lynchpin", "clues": ["mainstay", "linchpin", "backbone", "anchor", "keystone"]}, {"answer": "lyndon_baines_johnson", "hint": "synonyms for lyndon baines johnson", "clues": ["Johnson", "President Lyndon Johnson", "President Johnson", "Lyndon Johnson", "Lyndon Baines Johnson", "LBJ"]}, {"answer": "lyndon_johnson", "hint": "synonyms for lyndon johnson", "clues": ["Johnson", "President Lyndon Johnson", "President Johnson", "Lyndon Johnson", "Lyndon Baines Johnson", "LBJ"]}, {"answer": "lytton", "hint": "synonyms for lytton", "clues": ["Edward George Earle Bulwer-Lytton", "Bulwer-Lytton", "Lytton", "First Baron Lytton"]}, {"answer": "m-1", "hint": "synonyms for m-1", "clues": ["Garand", "M-1", "Garand rifle", "M-1 rifle"]}, {"answer": "m-1_rifle", "hint": "synonyms for m-1 rifle", "clues": ["Garand", "M-1", "Garand rifle", "M-1 rifle"]}, {"answer": "m.m.", "hint": "synonyms for m.m.", "clues": ["M.M.", "beats per minute", "bpm", "metronome marking"]}, {"answer": "ma", "hint": "synonyms for ma", "clues": ["Massachusetts", "Bay State", "mum", "milliampere", "mamma", "mA", "momma", "Old Colony", "mummy", "mammy", "mommy", "AM", "Artium Magister", "mom", "Master of Arts"]}, {"answer": "ma'am", "hint": "synonyms for ma'am", "clues": ["dame", "madam", "gentlewoman", "lady", "ma'am"]}, {"answer": "macaulay", "hint": "synonyms for macaulay", "clues": ["Macaulay", "First Baron Macaulay", "Thomas Babington Macaulay", "Lord Macaulay"]}, {"answer": "maceration", "hint": "synonyms for maceration", "clues": ["bonyness", "gauntness", "emaciation", "maceration"]}, {"answer": "machine", "hint": "synonyms for machine", "clues": ["motorcar", "car", "political machine", "automobile", "simple machine", "auto", "machine"]}, {"answer": "machine_language", "hint": "synonyms for machine language", "clues": ["computer-oriented language", "computer language", "machine-oriented language", "machine code", "machine language"]}, {"answer": "macrocosm", "hint": "synonyms for macrocosm", "clues": ["creation", "cosmos", "universe", "world", "existence", "macrocosm"]}, {"answer": "macula", "hint": "synonyms for macula", "clues": ["sunspot", "macula lutea", "macule", "yellow spot", "macular area", "macula"]}, {"answer": "maculation", "hint": "synonyms for maculation", "clues": ["patch", "spotting", "speckle", "fleck", "dapple", "spot", "staining", "maculation"]}, {"answer": "madam", "hint": "synonyms for madam", "clues": ["brothel keeper", "dame", "gentlewoman", "lady", "ma'am", "madam"]}, {"answer": "madame_curie", "hint": "synonyms for madame curie", "clues": ["Marya Sklodowska", "Madame Curie", "Curie", "Marie Curie"]}, {"answer": "madame_de_maintenon", "hint": "synonyms for madame de maintenon", "clues": ["Francoise d'Aubigne", "Marquise de Maintenon", "Madame de Maintenon", "Maintenon"]}, {"answer": "madame_tussaud", "hint": "synonyms for madame tussaud", "clues": ["Tussaud", "Madame Tussaud", "Marie Tussaud", "Marie Grosholtz"]}, {"answer": "madhouse", "hint": "synonyms for madhouse", "clues": ["funny farm", "loony bin", "cuckoo's nest", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house", "madhouse"]}, {"answer": "madison", "hint": "synonyms for madison", "clues": ["capital of Wisconsin", "James Madison", "President Madison", "Madison"]}, {"answer": "madness", "hint": "synonyms for madness", "clues": ["rabidity", "craziness", "lyssa", "rabies", "foolishness", "folly", "hydrophobia", "lunacy", "insaneness", "rage", "fury", "rabidness", "madness"]}, {"answer": "madonna", "hint": "synonyms for madonna", "clues": ["Madonna", "Virgin Mary", "Mary", "Madonna Louise Ciccone", "The Virgin", "Blessed Virgin"]}, {"answer": "magazine", "hint": "synonyms for magazine", "clues": ["magazine publisher", "cartridge", "powder store", "cartridge holder", "clip", "powder magazine", "cartridge clip", "mag", "magazine"]}, {"answer": "magen_david", "hint": "synonyms for magen david", "clues": ["Mogen David", "Shield of David", "Solomon's seal", "Star of David"]}, {"answer": "magic_eye", "hint": "synonyms for magic eye", "clues": ["photocell", "photoelectric cell", "electric eye", "photoconductive cell", "magic eye"]}, {"answer": "magic_trick", "hint": "synonyms for magic trick", "clues": ["illusion", "legerdemain", "thaumaturgy", "deception", "trick", "conjuration", "magic", "conjuring trick", "magic trick"]}, {"answer": "magician", "hint": "synonyms for magician", "clues": ["conjurer", "prestidigitator", "wizard", "thaumaturgist", "necromancer", "sorcerer", "illusionist", "thaumaturge", "magician"]}, {"answer": "magna_mater", "hint": "synonyms for magna mater", "clues": ["Magna Mater", "Dindymene", "Cybele", "Mater Turrita", "Great Mother"]}, {"answer": "magnanimity", "hint": "synonyms for magnanimity", "clues": ["openhandedness", "largesse", "munificence", "magnanimity"]}, {"answer": "magnate", "hint": "synonyms for magnate", "clues": ["king", "business leader", "baron", "power", "tycoon", "mogul", "big businessman", "top executive", "magnate"]}, {"answer": "magnet", "hint": "synonyms for magnet", "clues": ["attracter", "attraction", "attractive feature", "magnet"]}, {"answer": "magnetic_dip", "hint": "synonyms for magnetic dip", "clues": ["dip", "inclination", "magnetic inclination", "angle of dip", "magnetic dip"]}, {"answer": "magnetic_inclination", "hint": "synonyms for magnetic inclination", "clues": ["dip", "inclination", "magnetic dip", "angle of dip", "magnetic inclination"]}, {"answer": "magnetic_induction", "hint": "synonyms for magnetic induction", "clues": ["magnetization", "magnetic field strength", "magnetic intensity", "magnetic flux density", "magnetic induction"]}, {"answer": "magnification", "hint": "synonyms for magnification", "clues": ["exaggeration", "enlargement", "blowup", "overstatement", "magnification"]}, {"answer": "magnificence", "hint": "synonyms for magnificence", "clues": ["brilliance", "richness", "grandeur", "splendor", "impressiveness", "grandness", "magnificence"]}, {"answer": "magniloquence", "hint": "synonyms for magniloquence", "clues": ["grandiosity", "grandiloquence", "rhetoric", "ornateness", "magniloquence"]}, {"answer": "magpie", "hint": "synonyms for magpie", "clues": ["babbler", "scavenger", "prater", "chatterer", "pack rat", "spouter", "chatterbox", "magpie"]}, {"answer": "mahogany", "hint": "synonyms for mahogany", "clues": ["Venetian red", "reddish brown", "sepia", "burnt sienna", "mahogany"]}, {"answer": "mahomet", "hint": "synonyms for mahomet", "clues": ["Muhammad", "Mohammed", "Mahomet", "Mahound"]}, {"answer": "mahound", "hint": "synonyms for mahound", "clues": ["Muhammad", "Mohammed", "Mahomet", "Mahound"]}, {"answer": "maid", "hint": "synonyms for maid", "clues": ["amah", "maidservant", "maiden", "housemaid", "maid"]}, {"answer": "maidism", "hint": "synonyms for maidism", "clues": ["Saint Ignatius' itch", "pellagra", "mal de la rosa", "mayidism", "mal rosso", "Alpine scurvy"]}, {"answer": "mail", "hint": "synonyms for mail", "clues": ["postal service", "ring armor", "mail service", "ring mail", "chain armour", "post", "chain mail", "mail"]}, {"answer": "mail_carrier", "hint": "synonyms for mail carrier", "clues": ["letter carrier", "mailman", "postman", "carrier", "mail carrier"]}, {"answer": "mailman", "hint": "synonyms for mailman", "clues": ["letter carrier", "mail carrier", "postman", "carrier", "mailman"]}, {"answer": "main_office", "hint": "synonyms for main office", "clues": ["central office", "headquarters", "home base", "home office", "main office"]}, {"answer": "mainframe", "hint": "synonyms for mainframe", "clues": ["processor", "central processing unit", "CPU", "mainframe computer", "central processor", "C.P.U.", "mainframe"]}, {"answer": "mainland_china", "hint": "synonyms for mainland china", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "mainsheet", "hint": "synonyms for mainsheet", "clues": ["sheet", "shroud", "tack", "weather sheet", "mainsheet"]}, {"answer": "mainstay", "hint": "synonyms for mainstay", "clues": ["linchpin", "pillar", "backbone", "anchor", "keystone", "mainstay"]}, {"answer": "maintenance", "hint": "synonyms for maintenance", "clues": ["sustentation", "criminal maintenance", "sustenance", "alimony", "upkeep", "sustainment", "care", "maintenance"]}, {"answer": "maintenon", "hint": "synonyms for maintenon", "clues": ["Francoise d'Aubigne", "Marquise de Maintenon", "Madame de Maintenon", "Maintenon"]}, {"answer": "major_power", "hint": "synonyms for major power", "clues": ["great power", "power", "world power", "superpower", "major power"]}, {"answer": "major_tranquilizer", "hint": "synonyms for major tranquilizer", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilliser", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug"]}, {"answer": "major_tranquilliser", "hint": "synonyms for major tranquilliser", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilizer", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug"]}, {"answer": "major_tranquillizer", "hint": "synonyms for major tranquillizer", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilliser", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug"]}, {"answer": "majors", "hint": "synonyms for majors", "clues": ["major league", "big league", "major", "John Major", "John Roy Major"]}, {"answer": "make-peace", "hint": "synonyms for make-peace", "clues": ["pacifier", "peacemaker", "reconciler", "conciliator", "make-peace"]}, {"answer": "make-up", "hint": "synonyms for make-up", "clues": ["composition", "makeup", "physical composition", "constitution", "war paint"]}, {"answer": "maker", "hint": "synonyms for maker", "clues": ["Creator", "Jehovah", "Godhead", "Lord", "manufacturer", "manufacturing business", "Maker", "Almighty", "Divine", "God Almighty", "shaper"]}, {"answer": "makeup", "hint": "synonyms for makeup", "clues": ["composition", "physical composition", "constitution", "war paint", "make-up"]}, {"answer": "making_love", "hint": "synonyms for making love", "clues": ["love life", "lovemaking", "sexual love", "love", "making love"]}, {"answer": "maksim_gorky", "hint": "synonyms for maksim gorky", "clues": ["Aleksey Maximovich Peshkov", "Gorki", "Gorky", "Maksim Gorky", "Maxim Gorki"]}, {"answer": "mal_de_la_rosa", "hint": "synonyms for mal de la rosa", "clues": ["Saint Ignatius' itch", "pellagra", "mal rosso", "mayidism", "Alpine scurvy", "mal de la rosa"]}, {"answer": "mal_rosso", "hint": "synonyms for mal rosso", "clues": ["Saint Ignatius' itch", "pellagra", "mal de la rosa", "mayidism", "Alpine scurvy", "mal rosso"]}, {"answer": "maladroitness", "hint": "synonyms for maladroitness", "clues": ["slowness", "awkwardness", "clumsiness", "ineptness", "ineptitude", "maladroitness"]}, {"answer": "malar", "hint": "synonyms for malar", "clues": ["cheekbone", "zygomatic bone", "jugal bone", "malar bone", "os zygomaticum", "zygomatic", "malar"]}, {"answer": "malar_bone", "hint": "synonyms for malar bone", "clues": ["cheekbone", "zygomatic bone", "jugal bone", "os zygomaticum", "malar", "zygomatic", "malar bone"]}, {"answer": "malarkey", "hint": "synonyms for malarkey", "clues": ["malarky", "wind", "idle words", "nothingness", "jazz"]}, {"answer": "malarky", "hint": "synonyms for malarky", "clues": ["malarkey", "wind", "idle words", "nothingness", "jazz"]}, {"answer": "malaysia_militant_group", "hint": "synonyms for malaysia militant group", "clues": ["Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "malaysian_mujahidin_group", "hint": "synonyms for malaysian mujahidin group", "clues": ["Jemaah Islamiyah", "Islamic Group", "Islamic Community", "Malaysian Mujahidin Group", "JI", "Malaysia Militant Group"]}, {"answer": "malefactor", "hint": "synonyms for malefactor", "clues": ["outlaw", "felon", "criminal", "crook", "malefactor"]}, {"answer": "malice", "hint": "synonyms for malice", "clues": ["malevolence", "spite", "spitefulness", "maliciousness", "venom", "malice"]}, {"answer": "maliciousness", "hint": "synonyms for maliciousness", "clues": ["spite", "spitefulness", "venom", "malice", "maliciousness"]}, {"answer": "maligner", "hint": "synonyms for maligner", "clues": ["libeler", "slanderer", "defamer", "traducer", "vilifier", "backbiter", "maligner"]}, {"answer": "mall", "hint": "synonyms for mall", "clues": ["center", "plaza", "shopping center", "promenade", "shopping mall", "mall"]}, {"answer": "malodor", "hint": "synonyms for malodor", "clues": ["fetor", "stink", "mephitis", "stench", "malodour", "reek"]}, {"answer": "malodorousness", "hint": "synonyms for malodorousness", "clues": ["rankness", "stinkiness", "fetidness", "foulness", "malodorousness"]}, {"answer": "malodour", "hint": "synonyms for malodour", "clues": ["fetor", "stink", "mephitis", "stench", "malodor", "reek"]}, {"answer": "malt_whiskey", "hint": "synonyms for malt whiskey", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whisky"]}, {"answer": "malt_whisky", "hint": "synonyms for malt whisky", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whiskey"]}, {"answer": "malta_fever", "hint": "synonyms for malta fever", "clues": ["Mediterranean fever", "Gibraltar fever", "undulant fever", "Rock fever", "Malta fever", "brucellosis"]}, {"answer": "mama", "hint": "synonyms for mama", "clues": ["mum", "Mama", "ma", "momma", "mummy", "mammy", "mommy", "mom"]}, {"answer": "mamilla", "hint": "synonyms for mamilla", "clues": ["pap", "nipple", "teat", "mammilla", "tit"]}, {"answer": "mamma", "hint": "synonyms for mamma", "clues": ["mum", "ma", "mama", "momma", "mammary gland", "mummy", "mammy", "mommy", "mom"]}, {"answer": "mammee", "hint": "synonyms for mammee", "clues": ["mamey", "sapote", "mammee apple", "marmalade plum", "mammee"]}, {"answer": "mammilla", "hint": "synonyms for mammilla", "clues": ["pap", "nipple", "teat", "mamilla", "tit"]}, {"answer": "mammy", "hint": "synonyms for mammy", "clues": ["mum", "ma", "mamma", "momma", "mummy", "mommy", "mom", "mammy"]}, {"answer": "man", "hint": "synonyms for man", "clues": ["gentleman", "valet de chambre", "gentleman's gentleman", "military personnel", "military man", "Man", "Isle of Man", "adult male", "valet", "piece", "serviceman"]}, {"answer": "manager", "hint": "synonyms for manager", "clues": ["director", "handler", "coach", "managing director", "manager"]}, {"answer": "manakin", "hint": "synonyms for manakin", "clues": ["mannikin", "form", "fashion model", "mannequin", "model", "manakin"]}, {"answer": "manassa_mauler", "hint": "synonyms for manassa mauler", "clues": ["Dempsey", "Manassa Mauler", "William Harrison Dempsey", "Jack Dempsey"]}, {"answer": "manchu", "hint": "synonyms for manchu", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "manchu_dynasty", "hint": "synonyms for manchu dynasty", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "mandarin", "hint": "synonyms for mandarin", "clues": ["Mandarin Chinese", "mandarin orange", "Mandarin", "Mandarin dialect", "Beijing dialect"]}, {"answer": "mandarin_chinese", "hint": "synonyms for mandarin chinese", "clues": ["Mandarin Chinese", "Mandarin", "Mandarin dialect", "Beijing dialect"]}, {"answer": "mandarin_dialect", "hint": "synonyms for mandarin dialect", "clues": ["Mandarin Chinese", "Mandarin", "Mandarin dialect", "Beijing dialect"]}, {"answer": "mandible", "hint": "synonyms for mandible", "clues": ["jawbone", "mandibular bone", "lower jaw", "submaxilla", "lower jawbone", "mandibula", "jowl", "mandible"]}, {"answer": "mandibula", "hint": "synonyms for mandibula", "clues": ["jawbone", "mandible", "mandibular bone", "lower jaw", "submaxilla", "lower jawbone", "jowl", "mandibula"]}, {"answer": "mandibular_bone", "hint": "synonyms for mandibular bone", "clues": ["jawbone", "mandible", "lower jaw", "submaxilla", "lower jawbone", "mandibula", "jowl", "mandibular bone"]}, {"answer": "manduction", "hint": "synonyms for manduction", "clues": ["chew", "mastication", "Communion", "Holy Communion", "sacramental manduction", "manduction"]}, {"answer": "maneuver", "hint": "synonyms for maneuver", "clues": ["tactical manoeuvre", "tactic", "evasive action", "manoeuvre", "play", "simulated military operation", "maneuver"]}, {"answer": "mangonel", "hint": "synonyms for mangonel", "clues": ["catapult", "arbalest", "onager", "bricole", "trebucket", "ballista", "mangonel"]}, {"answer": "manifestation", "hint": "synonyms for manifestation", "clues": ["materialisation", "reflexion", "expression", "demonstration", "reflection", "manifestation"]}, {"answer": "manikin", "hint": "synonyms for manikin", "clues": ["homunculus", "mannikin", "form", "fashion model", "mannequin", "manakin", "model"]}, {"answer": "manna_from_heaven", "hint": "synonyms for manna from heaven", "clues": ["windfall", "bonanza", "godsend", "boom", "miraculous food", "gold rush", "bunce", "manna", "gravy", "manna from heaven"]}, {"answer": "mannequin", "hint": "synonyms for mannequin", "clues": ["mannikin", "form", "fashion model", "manakin", "model", "mannequin"]}, {"answer": "manner", "hint": "synonyms for manner", "clues": ["mode", "style", "fashion", "way", "personal manner", "manner"]}, {"answer": "mannerism", "hint": "synonyms for mannerism", "clues": ["pose", "idiosyncrasy", "affectedness", "foible", "affectation", "mannerism"]}, {"answer": "manners", "hint": "synonyms for manners", "clues": ["style", "mode", "fashion", "way", "personal manner", "manner"]}, {"answer": "mannikin", "hint": "synonyms for mannikin", "clues": ["homunculus", "form", "manikin", "fashion model", "mannequin", "model"]}, {"answer": "manoeuvre", "hint": "synonyms for manoeuvre", "clues": ["tactical manoeuvre", "maneuver", "tactics", "evasive action", "play", "simulated military operation", "manoeuvre"]}, {"answer": "manse", "hint": "synonyms for manse", "clues": ["residence", "mansion house", "mansion", "hall", "manse"]}, {"answer": "mansion", "hint": "synonyms for mansion", "clues": ["sign of the zodiac", "star sign", "sign", "manse", "planetary house", "mansion house", "residence", "hall", "house", "mansion"]}, {"answer": "mansion_house", "hint": "synonyms for mansion house", "clues": ["manse", "mansion", "hall", "residence", "mansion house"]}, {"answer": "mantel", "hint": "synonyms for mantel", "clues": ["mantelpiece", "chimneypiece", "mantle", "mantel"]}, {"answer": "mantelpiece", "hint": "synonyms for mantelpiece", "clues": ["chimneypiece", "mantle", "mantel", "mantlepiece"]}, {"answer": "mantle", "hint": "synonyms for mantle", "clues": ["cape", "drape", "Mickey Mantle", "blanket", "mantelpiece", "Mantle", "pallium", "pall", "Mickey Charles Mantle", "chimneypiece", "curtain", "drapery", "mantel"]}, {"answer": "mantlepiece", "hint": "synonyms for mantlepiece", "clues": ["mantelpiece", "chimneypiece", "mantle", "mantel"]}, {"answer": "mantrap", "hint": "synonyms for mantrap", "clues": ["ravisher", "stunner", "looker", "smasher", "knockout", "peach", "sweetheart", "dish", "beauty", "lulu", "mantrap"]}, {"answer": "mao", "hint": "synonyms for mao", "clues": ["Mao", "Mao Zedong", "Mao Tsetung", "monoamine oxidase"]}, {"answer": "map", "hint": "synonyms for map", "clues": ["mapping", "mathematical function", "function", "single-valued function", "map"]}, {"answer": "mapping", "hint": "synonyms for mapping", "clues": ["single-valued function", "mathematical function", "chromosome mapping", "function", "map", "mapping"]}, {"answer": "mar", "hint": "synonyms for mar", "clues": ["Mar", "March", "defect", "blemish"]}, {"answer": "march", "hint": "synonyms for march", "clues": ["borderland", "MArch", "Mar", "marching music", "Master of Architecture", "marchland", "border district"]}, {"answer": "marcher", "hint": "synonyms for marcher", "clues": ["infantryman", "footslogger", "parader", "foot soldier", "marcher"]}, {"answer": "marches", "hint": "synonyms for marches", "clues": ["borderland", "MArch", "Mar", "marching music", "Master of Architecture", "marchland", "border district"]}, {"answer": "marcus_annius_verus", "hint": "synonyms for marcus annius verus", "clues": ["Marcus Annius Verus", "Antoninus", "Marcus Aurelius", "Marcus Aurelius Antoninus", "Aurelius"]}, {"answer": "marcus_antonius", "hint": "synonyms for marcus antonius", "clues": ["Mark Anthony", "Antonius", "Anthony", "Marcus Antonius"]}, {"answer": "marcus_aurelius", "hint": "synonyms for marcus aurelius", "clues": ["Marcus Annius Verus", "Antoninus", "Marcus Aurelius", "Marcus Aurelius Antoninus", "Aurelius"]}, {"answer": "marcus_aurelius_antoninus", "hint": "synonyms for marcus aurelius antoninus", "clues": ["Marcus Annius Verus", "Antoninus", "Marcus Aurelius", "Marcus Aurelius Antoninus", "Aurelius"]}, {"answer": "mardi_gras", "hint": "synonyms for mardi gras", "clues": ["Fat Tuesday", "Mardi Gras", "Shrove Tuesday", "pancake day"]}, {"answer": "marduk", "hint": "synonyms for marduk", "clues": ["Bel-Merodach", "Marduk", "Baal Merodach", "Merodach"]}, {"answer": "mare's_nest", "hint": "synonyms for mare's nest", "clues": ["muddle", "welter", "clutter", "fuddle", "smother", "jumble", "mare's nest"]}, {"answer": "margaret_hilda_thatcher", "hint": "synonyms for margaret hilda thatcher", "clues": ["Margaret Hilda Thatcher", "Thatcher", "Iron Lady", "Baroness Thatcher of Kesteven"]}, {"answer": "margaret_thatcher", "hint": "synonyms for margaret thatcher", "clues": ["Margaret Hilda Thatcher", "Thatcher", "Iron Lady", "Baroness Thatcher of Kesteven"]}, {"answer": "margarin", "hint": "synonyms for margarin", "clues": ["marge", "oleomargarine", "oleo", "margarine", "glycerol trimargarate"]}, {"answer": "margarine", "hint": "synonyms for margarine", "clues": ["oleo", "marge", "oleomargarine", "margarin"]}, {"answer": "marge", "hint": "synonyms for marge", "clues": ["oleo", "oleomargarine", "margarin", "marge"]}, {"answer": "margin", "hint": "synonyms for margin", "clues": ["leeway", "gross profit", "perimeter", "security deposit", "gross profit margin", "border", "tolerance", "allowance", "margin"]}, {"answer": "marie_curie", "hint": "synonyms for marie curie", "clues": ["Marya Sklodowska", "Madame Curie", "Curie", "Marie Curie"]}, {"answer": "marie_grosholtz", "hint": "synonyms for marie grosholtz", "clues": ["Tussaud", "Madame Tussaud", "Marie Tussaud", "Marie Grosholtz"]}, {"answer": "marie_tussaud", "hint": "synonyms for marie tussaud", "clues": ["Tussaud", "Madame Tussaud", "Marie Tussaud", "Marie Grosholtz"]}, {"answer": "marijuana_cigarette", "hint": "synonyms for marijuana cigarette", "clues": ["stick", "joint", "reefer", "spliff", "marijuana cigarette"]}, {"answer": "mariner", "hint": "synonyms for mariner", "clues": ["Jack", "old salt", "seafarer", "sea dog", "seaman", "gob", "Jack-tar", "tar", "mariner"]}, {"answer": "marines", "hint": "synonyms for marines", "clues": ["marine", "leatherneck", "shipboard soldier", "devil dog"]}, {"answer": "mark", "hint": "synonyms for mark", "clues": ["soft touch", "marking", "mug", "stain", "Deutsche Mark", "score", "gull", "grade", "cross", "Gospel According to Mark", "bull's eye", "scar", "scrape", "crisscross", "home run", "sucker", "target", "print", "stigma", "marker", "fall guy", "brand", "Saint Mark", "sign", "patsy", "scratch", "fool", "bell ringer", "chump", "St. Mark", "German mark"]}, {"answer": "mark_anthony", "hint": "synonyms for mark anthony", "clues": ["Mark Anthony", "Antonius", "Anthony", "Marcus Antonius"]}, {"answer": "mark_antony", "hint": "synonyms for mark antony", "clues": ["Mark Anthony", "Antonius", "Anthony", "Marcus Antonius"]}, {"answer": "market", "hint": "synonyms for market", "clues": ["marketplace", "mart", "grocery store", "grocery", "securities industry", "food market", "market"]}, {"answer": "marketer", "hint": "synonyms for marketer", "clues": ["vendor", "trafficker", "vender", "seller", "marketer"]}, {"answer": "marking", "hint": "synonyms for marking", "clues": ["mark", "scoring", "grading", "marker"]}, {"answer": "markoff", "hint": "synonyms for markoff", "clues": ["Markoff", "Markov", "Andre Markoff", "Andrei Markov"]}, {"answer": "markov", "hint": "synonyms for markov", "clues": ["Markoff", "Markov", "Andre Markoff", "Andrei Markov"]}, {"answer": "marks", "hint": "synonyms for marks", "clues": ["mug", "cross", "score", "grade", "Gospel According to Mark", "scar", "scrape", "home run", "sucker", "Marks", "target", "print", "stigma", "marker", "fall guy", "brand", "Saint Mark", "sign", "scratch", "fool", "St. Mark", "soft touch", "marking", "stain", "Deutsche Mark", "gull", "Simon Marks", "bull's eye", "crisscross", "First Baron Marks of Broughton", "patsy", "bell ringer", "chump", "German mark"]}, {"answer": "marne_river", "hint": "synonyms for marne river", "clues": ["Chateau-Thierry", "Battle of the Marne", "Marne River", "Belleau Wood"]}, {"answer": "marquis", "hint": "synonyms for marquis", "clues": ["Donald Robert Perry Marquis", "Don Marquis", "Marquis", "marquess"]}, {"answer": "marquis_de_sade", "hint": "synonyms for marquis de sade", "clues": ["de Sade", "Sade", "Marquis de Sade", "Comte Donatien Alphonse Francois de Sade"]}, {"answer": "marquise_de_maintenon", "hint": "synonyms for marquise de maintenon", "clues": ["Francoise d'Aubigne", "Marquise de Maintenon", "Madame de Maintenon", "Maintenon"]}, {"answer": "marriage", "hint": "synonyms for marriage", "clues": ["union", "man and wife", "wedding", "marriage ceremony", "matrimony", "wedlock", "spousal relationship", "married couple", "marriage"]}, {"answer": "married_person", "hint": "synonyms for married person", "clues": ["spouse", "partner", "better half", "mate", "married person"]}, {"answer": "marrow", "hint": "synonyms for marrow", "clues": ["inwardness", "vegetable marrow", "nitty-gritty", "bone marrow", "center", "kernel", "nub", "heart", "core", "sum", "gist", "essence", "heart and soul", "centre", "meat", "substance", "pith", "marrow"]}, {"answer": "marruecos", "hint": "synonyms for marruecos", "clues": ["Marruecos", "Morocco", "Al-Magrib", "Kingdom of Morocco", "Maroc"]}, {"answer": "mars", "hint": "synonyms for mars", "clues": ["Red Planet", "Mars", "defect", "blemish", "March"]}, {"answer": "marseilles_fever", "hint": "synonyms for marseilles fever", "clues": ["Marseilles fever", "Indian tick fever", "Kenya fever", "boutonneuse fever"]}, {"answer": "marsh", "hint": "synonyms for marsh", "clues": ["Marsh", "marshland", "fen", "Reginald Marsh", "Ngaio Marsh", "fenland"]}, {"answer": "marshal_saxe", "hint": "synonyms for marshal saxe", "clues": ["Saxe", "comte de Saxe", "Hermann Maurice Saxe", "Marshal Saxe"]}, {"answer": "marshall", "hint": "synonyms for marshall", "clues": ["George Catlett Marshall", "George Marshall", "E. G. Marshall", "Marshall", "John Marshall"]}, {"answer": "martin", "hint": "synonyms for martin", "clues": ["Mary Martin", "Dean Martin", "Dino Paul Crocetti", "Martin", "St. Martin", "Steve Martin"]}, {"answer": "marx", "hint": "synonyms for marx", "clues": ["Harpo", "Chico", "Herbert Marx", "Zeppo", "Arthur Marx", "Groucho", "Marx", "Julius Marx", "Leonard Marx", "Karl Marx"]}, {"answer": "mary", "hint": "synonyms for mary", "clues": ["Madonna", "Virgin Mary", "Mary", "The Virgin", "Blessed Virgin"]}, {"answer": "mary_jane", "hint": "synonyms for mary jane", "clues": ["locoweed", "Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "sess", "weed", "skunk", "sens"]}, {"answer": "mary_ludwig_hays_mccauley", "hint": "synonyms for mary ludwig hays mccauley", "clues": ["Mary McCauley", "Molly Pitcher", "Mary Ludwig Hays McCauley", "McCauley"]}, {"answer": "mary_mccauley", "hint": "synonyms for mary mccauley", "clues": ["Mary McCauley", "Molly Pitcher", "Mary Ludwig Hays McCauley", "McCauley"]}, {"answer": "marya_sklodowska", "hint": "synonyms for marya sklodowska", "clues": ["Marya Sklodowska", "Madame Curie", "Curie", "Marie Curie"]}, {"answer": "maryland", "hint": "synonyms for maryland", "clues": ["Old Line State", "Maryland", "Free State", "MD"]}, {"answer": "masking", "hint": "synonyms for masking", "clues": ["masking piece", "screening", "covering", "masking"]}, {"answer": "mason", "hint": "synonyms for mason", "clues": ["Mason", "A. E. W. Mason", "James Neville Mason", "Alfred Edward Woodley Mason", "George Mason", "Freemason", "James Mason", "stonemason"]}, {"answer": "masquerade", "hint": "synonyms for masquerade", "clues": ["mask", "masquerade costume", "masquerade party", "masque", "fancy dress", "masquerade"]}, {"answer": "mass_murder", "hint": "synonyms for mass murder", "clues": ["slaughter", "carnage", "butchery", "massacre", "mass murder"]}, {"answer": "massachusetts", "hint": "synonyms for massachusetts", "clues": ["Old Colony", "Massachusetts", "MA", "Bay State", "Massachusetts Bay Colony"]}, {"answer": "massacre", "hint": "synonyms for massacre", "clues": ["slaughter", "carnage", "mass murder", "butchery", "massacre"]}, {"answer": "masses", "hint": "synonyms for masses", "clues": ["mint", "peck", "quite a little", "deal", "mountain", "stack", "the great unwashed", "lot", "raft", "batch", "mess", "plenty", "sight", "muckle", "wad", "mass", "mickle", "hoi polloi", "volume", "great deal", "hatful", "masse shot", "people", "pot", "good deal", "passel", "multitude", "pile", "tidy sum", "spate", "slew", "heap", "bulk", "flock"]}, {"answer": "massiveness", "hint": "synonyms for massiveness", "clues": ["ponderosity", "bulkiness", "heft", "heftiness", "ponderousness", "massiveness"]}, {"answer": "master_of_arts", "hint": "synonyms for master of arts", "clues": ["AM", "Artium Magister", "Master of Arts", "MA"]}, {"answer": "master_of_science", "hint": "synonyms for master of science", "clues": ["SM", "MS", "Master of Science", "MSc"]}, {"answer": "mastermind", "hint": "synonyms for mastermind", "clues": ["brainiac", "conceiver", "Einstein", "originator", "brain", "genius", "mastermind"]}, {"answer": "masters", "hint": "synonyms for masters", "clues": ["original", "Masters", "sea captain", "maestro", "schoolmaster", "master copy", "passe-partout", "overlord", "passkey", "lord", "professional", "skipper", "headmaster", "superior", "victor", "master key", "captain", "Edgar Lee Masters"]}, {"answer": "mastery", "hint": "synonyms for mastery", "clues": ["control", "subordination", "supremacy", "domination", "command", "mastery"]}, {"answer": "match", "hint": "synonyms for match", "clues": ["compeer", "mates", "couple", "lucifer", "peer", "friction match", "catch", "equal", "match"]}, {"answer": "mate", "hint": "synonyms for mate", "clues": ["married person", "teammate", "first mate", "match", "partner", "spouse", "better half", "fellow", "checkmate", "mate"]}, {"answer": "mater_turrita", "hint": "synonyms for mater turrita", "clues": ["Magna Mater", "Dindymene", "Cybele", "Mater Turrita", "Great Mother"]}, {"answer": "material_body", "hint": "synonyms for material body", "clues": ["human body", "form", "soma", "bod", "physique", "flesh", "figure", "shape", "anatomy", "frame", "chassis", "physical body", "build", "material body"]}, {"answer": "maternity", "hint": "synonyms for maternity", "clues": ["motherliness", "maternalism", "maternal quality", "motherhood", "pregnancy", "gestation", "maternity"]}, {"answer": "mates", "hint": "synonyms for mates", "clues": ["married person", "mate", "first mate", "couple", "match", "teammate", "partner", "spouse", "fellow", "better half", "checkmate"]}, {"answer": "mathematical_function", "hint": "synonyms for mathematical function", "clues": ["mapping", "function", "map", "single-valued function", "mathematical function"]}, {"answer": "mating", "hint": "synonyms for mating", "clues": ["coupling", "union", "sexual union", "conjugation", "pairing", "mating"]}, {"answer": "matrikin", "hint": "synonyms for matrikin", "clues": ["enate", "matrisib", "matrilineal sib", "matrikin"]}, {"answer": "matrilineal_kin", "hint": "synonyms for matrilineal kin", "clues": ["enate", "matrikin", "matrilineal sib", "matrisib"]}, {"answer": "matrilineal_sib", "hint": "synonyms for matrilineal sib", "clues": ["enate", "matrisib", "matrikin", "matrilineal kin"]}, {"answer": "matrimony", "hint": "synonyms for matrimony", "clues": ["wedlock", "union", "spousal relationship", "marriage", "matrimony"]}, {"answer": "matrisib", "hint": "synonyms for matrisib", "clues": ["enate", "matrikin", "matrilineal sib", "matrisib"]}, {"answer": "matter", "hint": "synonyms for matter", "clues": ["affair", "topic", "issue", "subject", "thing", "matter"]}, {"answer": "matthew", "hint": "synonyms for matthew", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Gospel According to Matthew", "Matthew"]}, {"answer": "maturation", "hint": "synonyms for maturation", "clues": ["ripening", "ontogenesis", "development", "festering", "maturement", "growing", "suppuration", "ontogeny", "growth", "maturation"]}, {"answer": "mature-onset_diabetes", "hint": "synonyms for mature-onset diabetes", "clues": ["ketosis-resistant diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "maturity-onset diabetes", "type II diabetes"]}, {"answer": "maturity", "hint": "synonyms for maturity", "clues": ["due date", "maturity date", "adulthood", "matureness", "maturity"]}, {"answer": "maturity-onset_diabetes", "hint": "synonyms for maturity-onset diabetes", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "maturity-onset_diabetes_mellitus", "hint": "synonyms for maturity-onset diabetes mellitus", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "adult-onset diabetes mellitus", "type II diabetes"]}, {"answer": "mauser", "hint": "synonyms for mauser", "clues": ["von Mauser", "Mauser", "Peter Paul Mauser", "P. P. von Mauser"]}, {"answer": "maven", "hint": "synonyms for maven", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "adept", "ace", "whiz", "sensation", "star", "superstar", "genius", "maven"]}, {"answer": "mavin", "hint": "synonyms for mavin", "clues": ["hotshot", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius", "mavin"]}, {"answer": "maw", "hint": "synonyms for maw", "clues": ["cakehole", "gob", "yap", "hole", "trap", "maw"]}, {"answer": "mawkishness", "hint": "synonyms for mawkishness", "clues": ["mushiness", "sentimentality", "drippiness", "sloppiness", "soupiness", "bathos", "mawkishness"]}, {"answer": "max", "hint": "synonyms for max", "clues": ["soap", "Georgia home boy", "grievous bodily harm", "scoop", "goop", "liquid ecstasy", "easy lay", "max"]}, {"answer": "maxim_gorki", "hint": "synonyms for maxim gorki", "clues": ["Aleksey Maximovich Peshkov", "Gorki", "Gorky", "Maksim Gorky", "Maxim Gorki"]}, {"answer": "maxwell", "hint": "synonyms for maxwell", "clues": ["James Clerk Maxwell", "Maxwell", "Mx", "J. C. Maxwell"]}, {"answer": "mayidism", "hint": "synonyms for mayidism", "clues": ["Saint Ignatius' itch", "pellagra", "mal de la rosa", "mal rosso", "maidism", "Alpine scurvy"]}, {"answer": "mays", "hint": "synonyms for mays", "clues": ["Willie Mays", "Mays", "Willie Howard Mays Jr.", "Say Hey Kid"]}, {"answer": "mb", "hint": "synonyms for mb", "clues": ["Bachelor of Medicine", "MiB", "M", "megabit", "Mbit", "MB", "megabyte", "mebibyte"]}, {"answer": "mbd", "hint": "synonyms for mbd", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "MBD", "minimal brain dysfunction", "ADHD", "minimal brain damage", "hyperkinetic syndrome"]}, {"answer": "mc", "hint": "synonyms for mc", "clues": ["MHz", "megacycle", "megahertz", "megacycle per second", "Mc"]}, {"answer": "mccarthy", "hint": "synonyms for mccarthy", "clues": ["Joseph Raymond McCarthy", "Mary Therese McCarthy", "Joseph McCarthy", "Mary McCarthy", "McCarthy"]}, {"answer": "mccauley", "hint": "synonyms for mccauley", "clues": ["Mary McCauley", "Molly Pitcher", "Mary Ludwig Hays McCauley", "McCauley"]}, {"answer": "mckinley", "hint": "synonyms for mckinley", "clues": ["McKinley", "President McKinley", "Mount McKinley", "William McKinley", "Mt. McKinley", "Denali"]}, {"answer": "md", "hint": "synonyms for md", "clues": ["physician", "doc", "Mv", "Maryland", "Old Line State", "Free State", "doctor", "Dr.", "medico", "Md", "Doctor of Medicine", "atomic number 101", "mendelevium"]}, {"answer": "meagerness", "hint": "synonyms for meagerness", "clues": ["poorness", "scantiness", "meagreness", "exiguity", "leanness"]}, {"answer": "meagreness", "hint": "synonyms for meagreness", "clues": ["poorness", "scantiness", "exiguity", "meagerness", "leanness"]}, {"answer": "mean_solar_day", "hint": "synonyms for mean solar day", "clues": ["solar day", "day", "twenty-four hours", "twenty-four hour period", "24-hour interval", "mean solar day"]}, {"answer": "meaninglessness", "hint": "synonyms for meaninglessness", "clues": ["bunk", "nonsense", "hokum", "nonsensicality", "meaninglessness"]}, {"answer": "meanness", "hint": "synonyms for meanness", "clues": ["niggardness", "parsimony", "minginess", "tightness", "parsimoniousness", "tightfistedness", "closeness", "beastliness", "meanness"]}, {"answer": "means", "hint": "synonyms for means", "clues": ["mean", "substance", "agency", "mean value", "way"]}, {"answer": "meany", "hint": "synonyms for meany", "clues": ["unkind person", "meanie", "George Meany", "Meany"]}, {"answer": "measure", "hint": "synonyms for measure", "clues": ["step", "quantity", "meter", "criterion", "bill", "cadence", "bar", "beat", "touchstone", "measurement", "metre", "mensuration", "standard", "measuring stick", "amount", "measuring", "measuring rod", "measure"]}, {"answer": "meat", "hint": "synonyms for meat", "clues": ["marrow", "core", "inwardness", "gist", "essence", "heart and soul", "sum", "centre", "nitty-gritty", "center", "kernel", "nub", "substance", "heart", "pith", "meat"]}, {"answer": "mebibyte", "hint": "synonyms for mebibyte", "clues": ["M", "megabyte", "MB", "MiB", "mebibyte"]}, {"answer": "mechanics", "hint": "synonyms for mechanics", "clues": ["mechanism", "machinist", "shop mechanic", "auto-mechanic", "car-mechanic", "automobile mechanic", "grease monkey", "mechanic"]}, {"answer": "medal", "hint": "synonyms for medal", "clues": ["medallion", "palm", "decoration", "laurel wreath", "ribbon", "medal"]}, {"answer": "medallion", "hint": "synonyms for medallion", "clues": ["palm", "decoration", "laurel wreath", "ribbon", "medal", "medallion"]}, {"answer": "mediator", "hint": "synonyms for mediator", "clues": ["intermediator", "intercessor", "go-between", "mediator"]}, {"answer": "medical_checkup", "hint": "synonyms for medical checkup", "clues": ["medical exam", "checkup", "medical", "health check", "medical examination", "medical checkup"]}, {"answer": "medical_exam", "hint": "synonyms for medical exam", "clues": ["medical checkup", "checkup", "medical", "health check", "medical examination", "medical exam"]}, {"answer": "medical_examination", "hint": "synonyms for medical examination", "clues": ["medical checkup", "medical exam", "checkup", "medical", "health check", "medical examination"]}, {"answer": "medicine", "hint": "synonyms for medicine", "clues": ["medical specialty", "medication", "medicament", "practice of medicine", "music", "medicinal drug", "medicine"]}, {"answer": "medico", "hint": "synonyms for medico", "clues": ["physician", "medical student", "doc", "Dr.", "doctor", "MD", "medico"]}, {"answer": "mediterranean_fever", "hint": "synonyms for mediterranean fever", "clues": ["Mediterranean fever", "Gibraltar fever", "undulant fever", "Rock fever", "Malta fever", "brucellosis"]}, {"answer": "medulla", "hint": "synonyms for medulla", "clues": ["myeline", "bulb", "medulla oblongata", "medulla"]}, {"answer": "meeting", "hint": "synonyms for meeting", "clues": ["merging", "group meeting", "encounter", "get together", "coming together", "confluence", "meeting"]}, {"answer": "megabucks", "hint": "synonyms for megabucks", "clues": ["pile", "big bucks", "bundle", "big money", "megabucks"]}, {"answer": "megabyte", "hint": "synonyms for megabyte", "clues": ["MiB", "M", "MB", "mebibyte", "megabyte"]}, {"answer": "megacycle", "hint": "synonyms for megacycle", "clues": ["megacycle per second", "MHz", "Mc", "megahertz", "megacycle"]}, {"answer": "megacycle_per_second", "hint": "synonyms for megacycle per second", "clues": ["megahertz", "MHz", "megacycle", "Mc", "megacycle per second"]}, {"answer": "megahertz", "hint": "synonyms for megahertz", "clues": ["megacycle per second", "MHz", "megacycle", "Mc", "megahertz"]}, {"answer": "megrims", "hint": "synonyms for megrims", "clues": ["blue devils", "hemicrania", "sick headache", "blues", "vapors", "migraine", "megrim"]}, {"answer": "mek", "hint": "synonyms for mek", "clues": ["MKO", "Mujahidin-e Khalq Organization", "People's Mujahidin of Iran", "MEK"]}, {"answer": "melange", "hint": "synonyms for melange", "clues": ["odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "melange"]}, {"answer": "meliorist", "hint": "synonyms for meliorist", "clues": ["reformist", "crusader", "social reformer", "reformer", "meliorist"]}, {"answer": "melodic_line", "hint": "synonyms for melodic line", "clues": ["tune", "strain", "melodic phrase", "line", "melody", "air", "melodic line"]}, {"answer": "melodic_phrase", "hint": "synonyms for melodic phrase", "clues": ["tune", "strain", "line", "melody", "air", "melodic line", "melodic phrase"]}, {"answer": "melody", "hint": "synonyms for melody", "clues": ["tune", "strain", "tonal pattern", "melodic phrase", "line", "air", "melodic line", "melody"]}, {"answer": "member", "hint": "synonyms for member", "clues": ["phallus", "extremity", "appendage", "fellow member", "penis", "member"]}, {"answer": "memorial_park", "hint": "synonyms for memorial park", "clues": ["burial ground", "burial site", "necropolis", "graveyard", "cemetery", "burying ground", "memorial park"]}, {"answer": "memory", "hint": "synonyms for memory", "clues": ["retentiveness", "computer storage", "retentivity", "retention", "memory board", "storage", "computer memory", "store", "remembering", "memory"]}, {"answer": "memory_board", "hint": "synonyms for memory board", "clues": ["storage", "computer memory", "store", "memory", "computer storage", "memory board"]}, {"answer": "men", "hint": "synonyms for men", "clues": ["gentleman", "manpower", "valet de chambre", "hands", "work force", "gentleman's gentleman", "military personnel", "military man", "Man", "Isle of Man", "adult male", "valet", "piece", "serviceman"]}, {"answer": "menage", "hint": "synonyms for menage", "clues": ["family", "household", "home", "house", "menage"]}, {"answer": "mend", "hint": "synonyms for mend", "clues": ["reparation", "fixing", "fixture", "patch", "repair", "darn", "mending"]}, {"answer": "mending", "hint": "synonyms for mending", "clues": ["reparation", "fixing", "repair", "fixture", "mend"]}, {"answer": "menninger", "hint": "synonyms for menninger", "clues": ["Karl Menninger", "Karl Augustus Menninger", "Menninger", "Charles Frederick Menninger", "William Claire Menninger", "William Menninger", "Charles Menninger"]}, {"answer": "menses", "hint": "synonyms for menses", "clues": ["menstruum", "menstruation", "flow", "period", "catamenia", "menses"]}, {"answer": "menstruation", "hint": "synonyms for menstruation", "clues": ["menstruum", "menses", "flow", "period", "catamenia", "menstruation"]}, {"answer": "menstruum", "hint": "synonyms for menstruum", "clues": ["menses", "menstruation", "flow", "period", "catamenia", "menstruum"]}, {"answer": "mental_capacity", "hint": "synonyms for mental capacity", "clues": ["brainpower", "wit", "mentality", "learning ability", "brain", "mental capacity"]}, {"answer": "mental_confusion", "hint": "synonyms for mental confusion", "clues": ["disarray", "muddiness", "confusion", "confusedness", "mental confusion"]}, {"answer": "mental_disorder", "hint": "synonyms for mental disorder", "clues": ["psychological disorder", "mental disturbance", "folie", "disturbance", "mental disorder"]}, {"answer": "mental_disturbance", "hint": "synonyms for mental disturbance", "clues": ["psychological disorder", "mental disorder", "folie", "disturbance", "mental disturbance"]}, {"answer": "mental_home", "hint": "synonyms for mental home", "clues": ["mental institution", "insane asylum", "asylum", "psychiatric hospital", "mental hospital", "institution", "mental home"]}, {"answer": "mental_hospital", "hint": "synonyms for mental hospital", "clues": ["mental institution", "insane asylum", "asylum", "institution", "psychiatric hospital", "mental home", "mental hospital"]}, {"answer": "mental_institution", "hint": "synonyms for mental institution", "clues": ["insane asylum", "asylum", "institution", "mental hospital", "mental home", "psychiatric hospital", "mental institution"]}, {"answer": "mental_process", "hint": "synonyms for mental process", "clues": ["operation", "cognitive operation", "process", "cognitive process", "mental process"]}, {"answer": "mental_retardation", "hint": "synonyms for mental retardation", "clues": ["slowness", "retardation", "subnormality", "backwardness", "mental retardation"]}, {"answer": "mentality", "hint": "synonyms for mentality", "clues": ["mind-set", "brainpower", "wit", "outlook", "mental capacity", "learning ability", "brain", "mentality"]}, {"answer": "mentation", "hint": "synonyms for mentation", "clues": ["thought", "intellection", "thinking", "thought process", "cerebration", "mentation"]}, {"answer": "mention", "hint": "synonyms for mention", "clues": ["cite", "honorable mention", "reference", "credit", "acknowledgment", "citation", "quotation", "mention"]}, {"answer": "menu", "hint": "synonyms for menu", "clues": ["carte du jour", "computer menu", "carte", "bill of fare", "card", "fare", "menu"]}, {"answer": "meow", "hint": "synonyms for meow", "clues": ["miaul", "miaow", "miaou", "mew"]}, {"answer": "mephaquine", "hint": "synonyms for mephaquine", "clues": ["mefloquine hydrochloride", "Mephaquine", "mefloquine", "Larium"]}, {"answer": "mephitis", "hint": "synonyms for mephitis", "clues": ["fetor", "stink", "malodour", "stench", "reek", "mephitis"]}, {"answer": "meprin", "hint": "synonyms for meprin", "clues": ["meprobamate", "Meprin", "Equanil", "Miltown"]}, {"answer": "mercilessness", "hint": "synonyms for mercilessness", "clues": ["ruthlessness", "cruelty", "pitilessness", "unmercifulness", "mercilessness"]}, {"answer": "mercury", "hint": "synonyms for mercury", "clues": ["hydrargyrum", "Hg", "Mercury", "atomic number 80", "quicksilver"]}, {"answer": "meredith", "hint": "synonyms for meredith", "clues": ["George Meredith", "James Howard Meredith", "James Meredith", "Meredith"]}, {"answer": "meretriciousness", "hint": "synonyms for meretriciousness", "clues": ["flashiness", "brashness", "glitz", "garishness", "speciousness", "tawdriness", "gaudiness", "loudness", "meretriciousness"]}, {"answer": "merger", "hint": "synonyms for merger", "clues": ["uniting", "fusion", "amalgamation", "unification", "merger"]}, {"answer": "merodach", "hint": "synonyms for merodach", "clues": ["Bel-Merodach", "Marduk", "Baal Merodach", "Merodach"]}, {"answer": "merry-go-round", "hint": "synonyms for merry-go-round", "clues": ["whirligig", "carrousel", "roundabout", "merry-go-round"]}, {"answer": "merry_andrew", "hint": "synonyms for merry andrew", "clues": ["clown", "goofball", "buffoon", "goof", "merry andrew"]}, {"answer": "merton", "hint": "synonyms for merton", "clues": ["Merton", "Robert Merton", "Thomas Merton", "Robert King Merton"]}, {"answer": "mesh", "hint": "synonyms for mesh", "clues": ["interlocking", "meshwork", "mesh topology", "net", "engagement", "meshing", "network"]}, {"answer": "meshing", "hint": "synonyms for meshing", "clues": ["interlocking", "meshwork", "net", "engagement", "network", "mesh"]}, {"answer": "meshwork", "hint": "synonyms for meshwork", "clues": ["meshing", "network", "net", "meshwork"]}, {"answer": "mesmerist", "hint": "synonyms for mesmerist", "clues": ["hypnotiser", "hypnotist", "mesmerizer", "mesmerist"]}, {"answer": "mesmerizer", "hint": "synonyms for mesmerizer", "clues": ["hypnotiser", "mesmerist", "hypnotist", "mesmerizer"]}, {"answer": "mess", "hint": "synonyms for mess", "clues": ["muddle", "mint", "peck", "quite a little", "kettle of fish", "deal", "mountain", "fix", "stack", "lot", "raft", "batch", "plenty", "sight", "muckle", "wad", "mickle", "mass", "great deal", "hatful", "messiness", "pot", "good deal", "jam", "passel", "pile", "mess hall", "tidy sum", "spate", "muss", "slew", "pickle", "heap", "hole", "flock", "mess"]}, {"answer": "messenger_rna", "hint": "synonyms for messenger rna", "clues": ["informational RNA", "template RNA", "messenger RNA", "mRNA"]}, {"answer": "messiness", "hint": "synonyms for messiness", "clues": ["muss", "mussiness", "mess", "untidiness"]}, {"answer": "metacyesis", "hint": "synonyms for metacyesis", "clues": ["extrauterine pregnancy", "extrauterine gestation", "eccyesis", "ectopic gestation", "ectopic pregnancy", "metacyesis"]}, {"answer": "mete", "hint": "synonyms for mete", "clues": ["borderline", "delimitation", "border", "boundary line", "mete"]}, {"answer": "meter", "hint": "synonyms for meter", "clues": ["m", "beat", "cadence", "metre", "time", "measure", "meter"]}, {"answer": "meth", "hint": "synonyms for meth", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "chalk", "glass", "ice", "methamphetamine hydrochloride", "trash", "methamphetamine", "shabu", "meth"]}, {"answer": "methadon", "hint": "synonyms for methadon", "clues": ["synthetic heroin", "fixer", "methadone hydrochloride", "methadone", "dolophine hydrochloride"]}, {"answer": "methadone", "hint": "synonyms for methadone", "clues": ["methadon", "synthetic heroin", "fixer", "methadone hydrochloride", "dolophine hydrochloride"]}, {"answer": "methadone_hydrochloride", "hint": "synonyms for methadone hydrochloride", "clues": ["methadon", "synthetic heroin", "fixer", "dolophine hydrochloride", "methadone hydrochloride"]}, {"answer": "methamphetamine", "hint": "synonyms for methamphetamine", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "chalk", "glass", "ice", "methamphetamine hydrochloride", "trash", "shabu", "methamphetamine"]}, {"answer": "methamphetamine_hydrochloride", "hint": "synonyms for methamphetamine hydrochloride", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "chalk", "glass", "ice", "trash", "methamphetamine", "shabu", "methamphetamine hydrochloride"]}, {"answer": "methane_series", "hint": "synonyms for methane series", "clues": ["alkane", "alkane series", "paraffin", "paraffin series", "methane series"]}, {"answer": "methedrine", "hint": "synonyms for methedrine", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "chalk", "glass", "ice", "methamphetamine hydrochloride", "trash", "methamphetamine", "shabu"]}, {"answer": "meticorten", "hint": "synonyms for meticorten", "clues": ["Meticorten", "prednisone", "Deltasone", "Orasone", "Liquid Pred"]}, {"answer": "metier", "hint": "synonyms for metier", "clues": ["long suit", "strong point", "strength", "speciality", "strong suit", "medium", "forte", "metier"]}, {"answer": "metre", "hint": "synonyms for metre", "clues": ["m", "meter", "cadence", "measure", "time", "beat", "metre"]}, {"answer": "metrics", "hint": "synonyms for metrics", "clues": ["metric", "metric unit", "metric function", "system of measurement", "prosody"]}, {"answer": "metro", "hint": "synonyms for metro", "clues": ["underground", "subway system", "subway", "tube", "metro"]}, {"answer": "meuse", "hint": "synonyms for meuse", "clues": ["Meuse-Argonne", "Meuse River", "Meuse-Argonne operation", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "meuse-argonne", "hint": "synonyms for meuse-argonne", "clues": ["Meuse-Argonne", "Meuse-Argonne operation", "Meuse River", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "meuse-argonne_operation", "hint": "synonyms for meuse-argonne operation", "clues": ["Meuse-Argonne", "Meuse-Argonne operation", "Meuse River", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "meuse_river", "hint": "synonyms for meuse river", "clues": ["Meuse-Argonne", "Meuse River", "Meuse-Argonne operation", "Argonne Forest", "Meuse", "Argonne"]}, {"answer": "mew", "hint": "synonyms for mew", "clues": ["miaul", "miaow", "meow", "miaou"]}, {"answer": "mews", "hint": "synonyms for mews", "clues": ["miaul", "meow", "miaow", "miaou", "mews"]}, {"answer": "mexican_capital", "hint": "synonyms for mexican capital", "clues": ["Mexican capital", "Mexico City", "Ciudad de Mexico", "capital of Mexico"]}, {"answer": "mexican_onyx", "hint": "synonyms for mexican onyx", "clues": ["alabaster", "oriental alabaster", "Mexican onyx", "onyx marble"]}, {"answer": "mexican_valium", "hint": "synonyms for mexican valium", "clues": ["Mexican valium", "roach", "circle", "rope", "forget me drug", "roofy", "rophy", "R-2"]}, {"answer": "mexico_city", "hint": "synonyms for mexico city", "clues": ["Mexican capital", "Mexico City", "Ciudad de Mexico", "capital of Mexico"]}, {"answer": "mg", "hint": "synonyms for mg", "clues": ["atomic number 12", "milligram", "Mg", "magnesium"]}, {"answer": "mhz", "hint": "synonyms for mhz", "clues": ["MHz", "megacycle", "megahertz", "megacycle per second", "Mc"]}, {"answer": "mi", "hint": "synonyms for mi", "clues": ["land mile", "Wolverine State", "mile", "Admiralty mile", "Great Lakes State", "stat mi", "knot", "international nautical mile", "Michigan", "nautical mile", "Security Service", "Military Intelligence Section 6", "MI", "myocardial infarct", "naut mi", "Secret Intelligence Service", "air mile", "statute mile", "international mile", "geographical mile"]}, {"answer": "miaou", "hint": "synonyms for miaou", "clues": ["miaul", "miaow", "meow", "miaou"]}, {"answer": "miaow", "hint": "synonyms for miaow", "clues": ["miaul", "meow", "miaou", "miaow"]}, {"answer": "miaul", "hint": "synonyms for miaul", "clues": ["miaow", "meow", "miaou", "miaul"]}, {"answer": "mib", "hint": "synonyms for mib", "clues": ["MiB", "M", "megabyte", "MB", "mebibyte"]}, {"answer": "michael_assat", "hint": "synonyms for michael assat", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "michelson", "hint": "synonyms for michelson", "clues": ["Albert Michelson", "A. A. Michelson", "Michelson", "Albert Abraham Michelson"]}, {"answer": "michigan", "hint": "synonyms for michigan", "clues": ["Newmarket", "Wolverine State", "MI", "Great Lakes State", "Lake Michigan", "Michigan", "stops", "boodle", "Chicago"]}, {"answer": "mickle", "hint": "synonyms for mickle", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mass", "flock", "mickle"]}, {"answer": "micro_chip", "hint": "synonyms for micro chip", "clues": ["microprocessor chip", "silicon chip", "microchip", "chip"]}, {"answer": "microchip", "hint": "synonyms for microchip", "clues": ["microprocessor chip", "micro chip", "silicon chip", "chip"]}, {"answer": "micromillimeter", "hint": "synonyms for micromillimeter", "clues": ["micromillimetre", "nanometer", "nm", "millimicron"]}, {"answer": "micromillimetre", "hint": "synonyms for micromillimetre", "clues": ["nanometer", "micromillimeter", "nm", "millimicron"]}, {"answer": "microprocessor_chip", "hint": "synonyms for microprocessor chip", "clues": ["micro chip", "silicon chip", "chip", "microprocessor chip"]}, {"answer": "microzide", "hint": "synonyms for microzide", "clues": ["Esidrix", "hydrochlorothiazide", "HydroDIURIL", "Microzide"]}, {"answer": "midday", "hint": "synonyms for midday", "clues": ["noonday", "noontide", "twelve noon", "noon", "high noon", "midday"]}, {"answer": "midden", "hint": "synonyms for midden", "clues": ["dunghill", "eitchen midden", "muckheap", "muckhill", "midden"]}, {"answer": "middle_buster", "hint": "synonyms for middle buster", "clues": ["middlebreaker", "lister plow", "lister", "lister plough", "middle buster"]}, {"answer": "middle_school", "hint": "synonyms for middle school", "clues": ["secondary school", "lycee", "Gymnasium", "lyceum", "middle school"]}, {"answer": "middlebreaker", "hint": "synonyms for middlebreaker", "clues": ["middle buster", "lister plow", "lister", "lister plough", "middlebreaker"]}, {"answer": "middleman", "hint": "synonyms for middleman", "clues": ["wholesaler", "contact", "jobber", "interlocutor", "middleman"]}, {"answer": "midsummer_eve", "hint": "synonyms for midsummer eve", "clues": ["June 23", "St John's Night", "St John's Eve", "Midsummer Night", "Midsummer Eve"]}, {"answer": "midsummer_night", "hint": "synonyms for midsummer night", "clues": ["June 23", "St John's Night", "St John's Eve", "Midsummer Night", "Midsummer Eve"]}, {"answer": "miguel_de_cervantes", "hint": "synonyms for miguel de cervantes", "clues": ["Cervantes Saavedra", "Miguel de Cervantes", "Miguel de Cervantes Saavedra", "Cervantes"]}, {"answer": "miguel_de_cervantes_saavedra", "hint": "synonyms for miguel de cervantes saavedra", "clues": ["Cervantes Saavedra", "Miguel de Cervantes", "Miguel de Cervantes Saavedra", "Cervantes"]}, {"answer": "mil", "hint": "synonyms for mil", "clues": ["Swedish mile", "ml", "mile", "millilitre", "cubic centimetre", "cc"]}, {"answer": "mildness", "hint": "synonyms for mildness", "clues": ["lenity", "leniency", "gentleness", "clemency", "softness", "mildness"]}, {"answer": "mildred_ella_didrikson", "hint": "synonyms for mildred ella didrikson", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "mildred_ella_didrikson_zaharias", "hint": "synonyms for mildred ella didrikson zaharias", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "mile", "hint": "synonyms for mile", "clues": ["land mile", "sea mile", "Swedish mile", "mil", "Admiralty mile", "naut mi", "stat mi", "air mile", "knot", "international nautical mile", "statute mile", "mi", "nautical mile", "international mile", "Roman mile", "geographical mile"]}, {"answer": "mileage", "hint": "synonyms for mileage", "clues": ["gasoline mileage", "fuel consumption rate", "milage", "gas mileage"]}, {"answer": "military_capability", "hint": "synonyms for military capability", "clues": ["military posture", "strength", "posture", "military strength", "military capability"]}, {"answer": "military_machine", "hint": "synonyms for military machine", "clues": ["military", "armed forces", "armed services", "war machine", "military machine"]}, {"answer": "military_personnel", "hint": "synonyms for military personnel", "clues": ["soldiery", "military man", "troops", "serviceman", "military personnel"]}, {"answer": "military_posture", "hint": "synonyms for military posture", "clues": ["strength", "military capability", "posture", "military strength", "military posture"]}, {"answer": "military_strength", "hint": "synonyms for military strength", "clues": ["strength", "military posture", "military capability", "posture", "military strength"]}, {"answer": "milk_pox", "hint": "synonyms for milk pox", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox"]}, {"answer": "milksop", "hint": "synonyms for milksop", "clues": ["Milquetoast", "sissy", "pansy", "pantywaist", "milksop"]}, {"answer": "mill", "hint": "synonyms for mill", "clues": ["pulverization", "milling machinery", "manufactory", "grind", "factory", "James Mill", "John Stuart Mill", "grinder", "Mill", "John Mill", "manufacturing plant"]}, {"answer": "miller", "hint": "synonyms for miller", "clues": ["Arthur Miller", "Alton Glenn Miller", "Henry Valentine Miller", "Henry Miller", "milling machine", "Miller", "Glenn Miller"]}, {"answer": "milliliter", "hint": "synonyms for milliliter", "clues": ["ml", "cc", "mil", "millilitre", "cubic centimeter"]}, {"answer": "millilitre", "hint": "synonyms for millilitre", "clues": ["ml", "cc", "mil", "cubic centimeter", "milliliter"]}, {"answer": "millimicron", "hint": "synonyms for millimicron", "clues": ["micromillimetre", "nanometer", "nm", "millimicron"]}, {"answer": "mills", "hint": "synonyms for mills", "clues": ["pulverization", "Robert Mills", "milling machinery", "manufactory", "grind", "factory", "Mills", "James Mill", "John Stuart Mill", "grinder", "John Mill", "manufacturing plant"]}, {"answer": "milquetoast", "hint": "synonyms for milquetoast", "clues": ["sissy", "Milquetoast", "pansy", "milksop", "pantywaist"]}, {"answer": "miltown", "hint": "synonyms for miltown", "clues": ["meprobamate", "Meprin", "Equanil", "Miltown"]}, {"answer": "mime", "hint": "synonyms for mime", "clues": ["mummer", "pantomime", "mimer", "pantomimist", "dumb show"]}, {"answer": "mimeo", "hint": "synonyms for mimeo", "clues": ["Roneograph", "Roneo", "mimeograph machine", "mimeograph", "mimeo"]}, {"answer": "mimeograph", "hint": "synonyms for mimeograph", "clues": ["Roneograph", "Roneo", "mimeo", "mimeograph machine", "mimeograph"]}, {"answer": "mimeograph_machine", "hint": "synonyms for mimeograph machine", "clues": ["Roneograph", "Roneo", "mimeo", "mimeograph", "mimeograph machine"]}, {"answer": "mimer", "hint": "synonyms for mimer", "clues": ["mummer", "pantomimist", "pantomimer", "mime"]}, {"answer": "min", "hint": "synonyms for min", "clues": ["Amoy", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min", "Hokkianese", "minute"]}, {"answer": "min_dialect", "hint": "synonyms for min dialect", "clues": ["Amoy", "Hokkianese", "Taiwanese", "Fukkianese", "Min dialect", "Fukien", "Min"]}, {"answer": "mind", "hint": "synonyms for mind", "clues": ["thinker", "creative thinker", "psyche", "idea", "head", "judgment", "nous", "intellect", "brain", "mind"]}, {"answer": "mindlessness", "hint": "synonyms for mindlessness", "clues": ["senselessness", "heedlessness", "vacuity", "rashness", "pointlessness", "inanity", "mindlessness"]}, {"answer": "mineral_dressing", "hint": "synonyms for mineral dressing", "clues": ["ore dressing", "ore processing", "mineral extraction", "mineral processing", "beneficiation"]}, {"answer": "mineral_extraction", "hint": "synonyms for mineral extraction", "clues": ["ore dressing", "mineral dressing", "ore processing", "beneficiation", "mineral extraction"]}, {"answer": "mineral_processing", "hint": "synonyms for mineral processing", "clues": ["ore dressing", "mineral dressing", "ore processing", "mineral extraction", "beneficiation"]}, {"answer": "mineral_wax", "hint": "synonyms for mineral wax", "clues": ["ozocerite", "ader wax", "earth wax", "mineral wax"]}, {"answer": "minginess", "hint": "synonyms for minginess", "clues": ["niggardness", "parsimony", "tightness", "parsimoniousness", "tightfistedness", "meanness", "closeness", "minginess"]}, {"answer": "mingle-mangle", "hint": "synonyms for mingle-mangle", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "omnium-gatherum", "ragbag", "mishmash", "mingle-mangle"]}, {"answer": "minimal_brain_damage", "hint": "synonyms for minimal brain damage", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "MBD", "ADD", "minimal brain dysfunction", "hyperkinetic syndrome", "minimal brain damage"]}, {"answer": "minimal_brain_dysfunction", "hint": "synonyms for minimal brain dysfunction", "clues": ["attention deficit disorder", "attention deficit hyperactivity disorder", "minimal brain damage", "MBD", "ADD", "hyperkinetic syndrome", "minimal brain dysfunction"]}, {"answer": "minister", "hint": "synonyms for minister", "clues": ["minister of religion", "curate", "parson", "rector", "pastor", "diplomatic minister", "government minister", "minister"]}, {"answer": "minister_of_religion", "hint": "synonyms for minister of religion", "clues": ["curate", "parson", "rector", "pastor", "minister", "minister of religion"]}, {"answer": "minnesota", "hint": "synonyms for minnesota", "clues": ["Minnesota", "MN", "Gopher State", "North Star State"]}, {"answer": "minnewit", "hint": "synonyms for minnewit", "clues": ["Peter Minuit", "Peter Minnewit", "Minuit", "Minnewit"]}, {"answer": "minor_tranquilizer", "hint": "synonyms for minor tranquilizer", "clues": ["anxiolytic", "minor tranquillizer", "antianxiety drug", "anxiolytic drug"]}, {"answer": "minor_tranquilliser", "hint": "synonyms for minor tranquilliser", "clues": ["anxiolytic", "minor tranquillizer", "antianxiety drug", "anxiolytic drug"]}, {"answer": "minor_tranquillizer", "hint": "synonyms for minor tranquillizer", "clues": ["anxiolytic", "minor tranquilizer", "antianxiety drug", "anxiolytic drug"]}, {"answer": "minors", "hint": "synonyms for minors", "clues": ["nipper", "small fry", "shaver", "nestling", "tike", "minor league", "minor", "tyke", "tiddler", "kid", "fry", "youngster", "child", "bush league"]}, {"answer": "minstrel", "hint": "synonyms for minstrel", "clues": ["poet-singer", "folk singer", "troubadour", "jongleur", "minstrel"]}, {"answer": "minuit", "hint": "synonyms for minuit", "clues": ["Peter Minuit", "Peter Minnewit", "Minuit", "Minnewit"]}, {"answer": "minuteness", "hint": "synonyms for minuteness", "clues": ["diminutiveness", "weeness", "tininess", "petiteness", "minuteness"]}, {"answer": "minutes", "hint": "synonyms for minutes", "clues": ["min", "mo", "instant", "bit", "arcminute", "proceedings", "hour", "second", "moment", "minute of arc", "minute", "transactions"]}, {"answer": "minx", "hint": "synonyms for minx", "clues": ["prickteaser", "coquette", "tease", "vamper", "vamp", "flirt", "minx"]}, {"answer": "miosis", "hint": "synonyms for miosis", "clues": ["pupillary reflex", "reduction division", "meiosis", "light reflex", "myosis"]}, {"answer": "mire", "hint": "synonyms for mire", "clues": ["slack", "slop", "quagmire", "morass", "quag", "mire"]}, {"answer": "miri", "hint": "synonyms for miri", "clues": ["Mirish", "Miri", "Dafla", "Abor"]}, {"answer": "mirish", "hint": "synonyms for mirish", "clues": ["Mirish", "Miri", "Dafla", "Abor"]}, {"answer": "mirth", "hint": "synonyms for mirth", "clues": ["glee", "gleefulness", "mirthfulness", "hilarity", "mirth"]}, {"answer": "mirthfulness", "hint": "synonyms for mirthfulness", "clues": ["glee", "gleefulness", "mirth", "hilarity", "mirthfulness"]}, {"answer": "misapplication", "hint": "synonyms for misapplication", "clues": ["embezzlement", "defalcation", "misappropriation", "peculation", "misapplication"]}, {"answer": "misappropriation", "hint": "synonyms for misappropriation", "clues": ["embezzlement", "defalcation", "peculation", "misapplication", "misappropriation"]}, {"answer": "miscellanea", "hint": "synonyms for miscellanea", "clues": ["miscellany", "mixture", "variety", "salmagundi", "mixed bag", "assortment", "smorgasbord", "motley", "potpourri"]}, {"answer": "miscellany", "hint": "synonyms for miscellany", "clues": ["mixture", "variety", "salmagundi", "mixed bag", "assortment", "miscellanea", "garland", "smorgasbord", "florilegium", "motley", "potpourri"]}, {"answer": "mischief", "hint": "synonyms for mischief", "clues": ["mischief-making", "devilry", "shenanigan", "roguishness", "maleficence", "rascality", "balefulness", "mischievousness", "roguery", "devilment", "mischief"]}, {"answer": "mischief-maker", "hint": "synonyms for mischief-maker", "clues": ["troubler", "trouble maker", "bad hat", "mischief-maker"]}, {"answer": "mischief-making", "hint": "synonyms for mischief-making", "clues": ["devilry", "shenanigan", "roguishness", "rascality", "mischief", "mischievousness", "roguery", "devilment", "mischief-making"]}, {"answer": "mischievousness", "hint": "synonyms for mischievousness", "clues": ["mischief-making", "impishness", "devilry", "roguishness", "devilment", "puckishness", "rascality", "mischief", "badness", "naughtiness", "roguery", "shenanigan", "whimsicality", "mischievousness"]}, {"answer": "misdemeanor", "hint": "synonyms for misdemeanor", "clues": ["infringement", "infraction", "misdemeanour", "violation"]}, {"answer": "misdemeanour", "hint": "synonyms for misdemeanour", "clues": ["infringement", "misdemeanor", "infraction", "violation"]}, {"answer": "misgiving", "hint": "synonyms for misgiving", "clues": ["qualm", "apprehension", "scruple", "suspicion", "mistrust", "misgiving"]}, {"answer": "mishmash", "hint": "synonyms for mishmash", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash"]}, {"answer": "misprint", "hint": "synonyms for misprint", "clues": ["literal error", "typographical error", "literal", "typo", "erratum", "misprint"]}, {"answer": "miss", "hint": "synonyms for miss", "clues": ["Miss", "young woman", "girl", "fille", "misfire", "young lady"]}, {"answer": "mission", "hint": "synonyms for mission", "clues": ["deputation", "missionary post", "commission", "military mission", "foreign mission", "delegation", "delegacy", "missionary work", "charge", "missionary station", "mission"]}, {"answer": "missippian_period", "hint": "synonyms for missippian period", "clues": ["Lower Carboniferous", "Lower Carboniferous period", "Mississippian", "Missippian period"]}, {"answer": "mississippi", "hint": "synonyms for mississippi", "clues": ["Magnolia State", "Mississippi", "Mississippi River", "MS"]}, {"answer": "mississippian", "hint": "synonyms for mississippian", "clues": ["Mississippian", "Missippian period", "Lower Carboniferous", "Lower Carboniferous period"]}, {"answer": "missouri", "hint": "synonyms for missouri", "clues": ["Missouri River", "Missouri", "MO", "Show Me State"]}, {"answer": "missy", "hint": "synonyms for missy", "clues": ["young woman", "young lady", "girl", "fille", "miss"]}, {"answer": "mistake", "hint": "synonyms for mistake", "clues": ["misapprehension", "misunderstanding", "error", "fault", "mistake"]}, {"answer": "mistiness", "hint": "synonyms for mistiness", "clues": ["vaporousness", "haziness", "steaminess", "mistiness"]}, {"answer": "mistress", "hint": "synonyms for mistress", "clues": ["fancy woman", "schoolmarm", "schoolmistress", "kept woman", "mistress"]}, {"answer": "mistrust", "hint": "synonyms for mistrust", "clues": ["suspicion", "distrust", "distrustfulness", "misgiving"]}, {"answer": "misunderstanding", "hint": "synonyms for misunderstanding", "clues": ["misapprehension", "misinterpretation", "mistake", "mistaking", "misunderstanding"]}, {"answer": "mitchell", "hint": "synonyms for mitchell", "clues": ["John Mitchell", "R. J. Mitchell", "Reginald Joseph Mitchell", "Margaret Mitchell", "Arthur Mitchell", "Billy Mitchell", "William Mitchell", "Mitchell", "Maria Mitchell", "Margaret Munnerlyn Mitchell"]}, {"answer": "mite", "hint": "synonyms for mite", "clues": ["hint", "tinge", "pinch", "jot", "speck", "soupcon", "touch", "mite"]}, {"answer": "mitford", "hint": "synonyms for mitford", "clues": ["Nancy Mitford", "Jessica Mitford", "Nancy Freeman Mitford", "Mitford"]}, {"answer": "mitt", "hint": "synonyms for mitt", "clues": ["manus", "glove", "paw", "baseball glove", "baseball mitt", "hand", "mitt"]}, {"answer": "mix", "hint": "synonyms for mix", "clues": ["mixture", "premix", "mixing", "commixture", "intermixture"]}, {"answer": "mixed_bag", "hint": "synonyms for mixed bag", "clues": ["miscellany", "mixture", "variety", "salmagundi", "assortment", "smorgasbord", "motley", "potpourri", "mixed bag"]}, {"answer": "mixing", "hint": "synonyms for mixing", "clues": ["mixture", "commixture", "intermixture", "mix"]}, {"answer": "mixologist", "hint": "synonyms for mixologist", "clues": ["barman", "barkeep", "bartender", "mixologist"]}, {"answer": "mixture", "hint": "synonyms for mixture", "clues": ["miscellany", "variety", "concoction", "salmagundi", "mixing", "commixture", "mixed bag", "assortment", "admixture", "smorgasbord", "motley", "intermixture", "potpourri"]}, {"answer": "mko", "hint": "synonyms for mko", "clues": ["MKO", "Mujahidin-e Khalq Organization", "People's Mujahidin of Iran", "MEK"]}, {"answer": "ml", "hint": "synonyms for ml", "clues": ["cc", "mil", "cubic centimeter", "millilitre", "ml"]}, {"answer": "mls", "hint": "synonyms for mls", "clues": ["ml", "mil", "millilitre", "cubic centimetre", "cc", "Master of Library Science"]}, {"answer": "mn", "hint": "synonyms for mn", "clues": ["Mn", "North Star State", "atomic number 25", "Minnesota", "Gopher State", "manganese"]}, {"answer": "mo", "hint": "synonyms for mo", "clues": ["Mo", "Missouri", "bit", "Show Me State", "atomic number 42", "molybdenum", "second", "moment", "minute"]}, {"answer": "moaner", "hint": "synonyms for moaner", "clues": ["grumbler", "sniveller", "bellyacher", "whiner", "complainer", "crybaby", "squawker", "moaner"]}, {"answer": "mob", "hint": "synonyms for mob", "clues": ["family", "pack", "rout", "ring", "syndicate", "rabble", "crime syndicate", "gang", "mob"]}, {"answer": "mobile_phone", "hint": "synonyms for mobile phone", "clues": ["cellphone", "cellular telephone", "cell", "mobile phone"]}, {"answer": "mockery", "hint": "synonyms for mockery", "clues": ["charade", "pasquinade", "put-on", "travesty", "sendup", "takeoff", "burlesque", "scoffing", "lampoon", "jeering", "parody", "spoof", "mockery"]}, {"answer": "modality", "hint": "synonyms for modality", "clues": ["sense modality", "mode", "sensory system", "mood", "modality"]}, {"answer": "mode", "hint": "synonyms for mode", "clues": ["style", "fashion", "modality", "mood", "musical mode", "way", "modal value", "manner", "mode"]}, {"answer": "modeling", "hint": "synonyms for modeling", "clues": ["clay sculpture", "moulding", "modelling", "mold", "model"]}, {"answer": "moderation", "hint": "synonyms for moderation", "clues": ["temperance", "moderateness", "mitigation", "relief", "easing", "moderation"]}, {"answer": "modernism", "hint": "synonyms for modernism", "clues": ["modernity", "contemporaneity", "modernness", "contemporaneousness", "modernism"]}, {"answer": "modernity", "hint": "synonyms for modernity", "clues": ["modernness", "contemporaneity", "contemporaneousness", "modernism", "modernity"]}, {"answer": "modernness", "hint": "synonyms for modernness", "clues": ["modernity", "contemporaneity", "contemporaneousness", "modernism", "modernness"]}, {"answer": "modification", "hint": "synonyms for modification", "clues": ["qualifying", "limiting", "adjustment", "change", "alteration", "modification"]}, {"answer": "modishness", "hint": "synonyms for modishness", "clues": ["stylishness", "smartness", "chic", "swank", "last word", "chichi", "chicness", "modishness"]}, {"answer": "modiste", "hint": "synonyms for modiste", "clues": ["hatmaker", "needlewoman", "milliner", "dressmaker", "hatter", "sempstress", "modiste"]}, {"answer": "modulation", "hint": "synonyms for modulation", "clues": ["intonation", "pitch contour", "transition", "inflection", "modulation"]}, {"answer": "mogen_david", "hint": "synonyms for mogen david", "clues": ["Mogen David", "Shield of David", "Solomon's seal", "Star of David"]}, {"answer": "mogul", "hint": "synonyms for mogul", "clues": ["king", "Moghul", "business leader", "baron", "power", "tycoon", "magnate", "big businessman", "top executive"]}, {"answer": "mohammad", "hint": "synonyms for mohammad", "clues": ["Muhammad", "Mohammed", "Mahomet", "Mahound"]}, {"answer": "mohammed", "hint": "synonyms for mohammed", "clues": ["Muhammad", "Mohammed", "Mahomet", "Mahound"]}, {"answer": "mohammedanism", "hint": "synonyms for mohammedanism", "clues": ["Muslimism", "Islamism", "Islam", "Muhammadanism", "Mohammedanism"]}, {"answer": "mold", "hint": "synonyms for mold", "clues": ["clay sculpture", "moulding", "stamp", "cast", "mildew", "modeling", "mold"]}, {"answer": "molding", "hint": "synonyms for molding", "clues": ["clay sculpture", "moulding", "modelling", "mold", "casting", "border"]}, {"answer": "mole", "hint": "synonyms for mole", "clues": ["counterspy", "groin", "seawall", "gram molecule", "mol", "jetty", "groyne", "bulwark", "breakwater"]}, {"answer": "molecule", "hint": "synonyms for molecule", "clues": ["mote", "corpuscle", "particle", "speck", "atom", "molecule"]}, {"answer": "molly_pitcher", "hint": "synonyms for molly pitcher", "clues": ["Mary McCauley", "Molly Pitcher", "Mary Ludwig Hays McCauley", "McCauley"]}, {"answer": "mom", "hint": "synonyms for mom", "clues": ["mum", "ma", "mamma", "momma", "mummy", "mammy", "mommy", "mom"]}, {"answer": "moment", "hint": "synonyms for moment", "clues": ["instant", "mo", "bit", "present moment", "import", "second", "consequence", "here and now", "minute", "moment"]}, {"answer": "momma", "hint": "synonyms for momma", "clues": ["mum", "ma", "mamma", "mummy", "mammy", "mommy", "mom", "momma"]}, {"answer": "mommy", "hint": "synonyms for mommy", "clues": ["mum", "ma", "mamma", "momma", "mummy", "mammy", "mom", "mommy"]}, {"answer": "monas", "hint": "synonyms for monas", "clues": ["monad", "Anglesea", "Anglesey Island", "monas"]}, {"answer": "monetary_resource", "hint": "synonyms for monetary resource", "clues": ["pecuniary resource", "funds", "cash in hand", "finances", "monetary resource"]}, {"answer": "money_box", "hint": "synonyms for money box", "clues": ["cashbox", "till", "savings bank", "coin bank", "bank", "money box"]}, {"answer": "moniker", "hint": "synonyms for moniker", "clues": ["byname", "soubriquet", "cognomen", "nickname", "moniker"]}, {"answer": "monition", "hint": "synonyms for monition", "clues": ["process of monition", "warning", "admonition", "word of advice", "admonishment"]}, {"answer": "monitor", "hint": "synonyms for monitor", "clues": ["monitoring device", "Monitor", "admonisher", "reminder", "proctor"]}, {"answer": "monk", "hint": "synonyms for monk", "clues": ["monastic", "Thelonious Monk", "Thelonious Sphere Monk", "Monk"]}, {"answer": "monkey", "hint": "synonyms for monkey", "clues": ["scallywag", "rascal", "scamp", "rapscallion", "scalawag", "imp", "monkey"]}, {"answer": "monkey_nut", "hint": "synonyms for monkey nut", "clues": ["peanut", "earthnut", "goober", "goober pea", "groundnut", "monkey nut"]}, {"answer": "monocracy", "hint": "synonyms for monocracy", "clues": ["one-man rule", "totalitarianism", "despotism", "Caesarism", "Stalinism", "shogunate", "dictatorship", "tyranny", "authoritarianism", "absolutism", "monocracy"]}, {"answer": "mononucleosis", "hint": "synonyms for mononucleosis", "clues": ["kissing disease", "mono", "infectious mononucleosis", "glandular fever", "mononucleosis"]}, {"answer": "monroe", "hint": "synonyms for monroe", "clues": ["President Monroe", "Monroe", "Norma Jean Baker", "Marilyn Monroe", "James Monroe"]}, {"answer": "mons", "hint": "synonyms for mons", "clues": ["mons veneris", "mons pubis", "Mon", "Monday"]}, {"answer": "monster", "hint": "synonyms for monster", "clues": ["fiend", "goliath", "lusus naturae", "giant", "demon", "devil", "behemoth", "monstrosity", "ogre", "colossus", "freak", "monster"]}, {"answer": "montgomery", "hint": "synonyms for montgomery", "clues": ["1st Viscount Montgomery of Alamein", "Lucy Maud Montgomery", "Sir Bernard Law Montgomery", "capital of Alabama", "L. M. Montgomery", "Montgomery"]}, {"answer": "mood", "hint": "synonyms for mood", "clues": ["temper", "mode", "humor", "modality", "climate", "mood"]}, {"answer": "moolah", "hint": "synonyms for moolah", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "moolah"]}, {"answer": "moon", "hint": "synonyms for moon", "clues": ["moonshine", "Sun Myung Moon", "Moon", "lunar month", "moonlight", "synodic month", "lunation"]}, {"answer": "moon-curser", "hint": "synonyms for moon-curser", "clues": ["contrabandist", "smuggler", "moon curser", "runner"]}, {"answer": "moon_curser", "hint": "synonyms for moon curser", "clues": ["contrabandist", "smuggler", "moon-curser", "runner"]}, {"answer": "moonshine", "hint": "synonyms for moonshine", "clues": ["moonlight", "bootleg", "Moon", "corn liquor", "moonshine"]}, {"answer": "moorage", "hint": "synonyms for moorage", "clues": ["slip", "berth", "mooring", "tying up", "dockage", "docking", "moorage"]}, {"answer": "moore", "hint": "synonyms for moore", "clues": ["Douglas Moore", "Dudley Moore", "Henry Spencer Moore", "Marianne Moore", "Thomas Moore", "Henry Moore", "Moore", "Marianne Craig Moore", "George Edward Moore", "Dudley Stuart John Moore", "G. E. Moore"]}, {"answer": "mooring", "hint": "synonyms for mooring", "clues": ["mooring line", "moorage", "slip", "berth", "mooring"]}, {"answer": "mop_up", "hint": "synonyms for mop up", "clues": ["closing", "windup", "culmination", "completion", "mop up"]}, {"answer": "mope", "hint": "synonyms for mope", "clues": ["dillydallier", "lounger", "dallier", "mope"]}, {"answer": "mopes", "hint": "synonyms for mopes", "clues": ["dumps", "dilly-dallier", "dallier", "mope", "lounger"]}, {"answer": "morals", "hint": "synonyms for morals", "clues": ["ethical motive", "moral", "lesson", "ethics", "morality"]}, {"answer": "morass", "hint": "synonyms for morass", "clues": ["quagmire", "slack", "quag", "mire", "morass"]}, {"answer": "morgan", "hint": "synonyms for morgan", "clues": ["Henry Morgan", "Lewis Henry Morgan", "Daniel Morgan", "John Pierpont Morgan", "Thomas Hunt Morgan", "J. P. Morgan", "Morgan"]}, {"answer": "morley", "hint": "synonyms for morley", "clues": ["Edward Morley", "Edward Williams Morley", "Morley", "E. W. Morley"]}, {"answer": "mormon_state", "hint": "synonyms for mormon state", "clues": ["Utah", "Mormon State", "Beehive State", "UT"]}, {"answer": "mormons", "hint": "synonyms for mormons", "clues": ["Mormon", "Mormon Church", "Church of Jesus Christ of Latter-Day Saints", "Latter-Day Saint"]}, {"answer": "morning", "hint": "synonyms for morning", "clues": ["break of day", "dayspring", "daybreak", "first light", "morn", "forenoon", "aurora", "sunup", "good morning", "dawning", "sunrise", "morning time", "cockcrow"]}, {"answer": "morocco", "hint": "synonyms for morocco", "clues": ["Marruecos", "Morocco", "Al-Magrib", "Kingdom of Morocco", "Maroc"]}, {"answer": "moron", "hint": "synonyms for moron", "clues": ["changeling", "Moron", "imbecile", "half-wit", "idiot", "cretin", "retard"]}, {"answer": "moroseness", "hint": "synonyms for moroseness", "clues": ["sourness", "glumness", "sulkiness", "sullenness", "moroseness"]}, {"answer": "morphology", "hint": "synonyms for morphology", "clues": ["sound structure", "word structure", "syllable structure", "geomorphology"]}, {"answer": "morris", "hint": "synonyms for morris", "clues": ["William Morris", "Robert Morris", "Gouverneur Morris", "Esther Morris", "Esther Hobart McQuigg Slack Morris", "Morris"]}, {"answer": "morrison", "hint": "synonyms for morrison", "clues": ["Morrison", "Chloe Anthony Wofford", "James Douglas Morrison", "Toni Morrison", "Jim Morrison"]}, {"answer": "morse", "hint": "synonyms for morse", "clues": ["Morse", "international Morse code", "Samuel Finley Breese Morse", "Samuel F. B. Morse", "Samuel Morse", "Morse code"]}, {"answer": "mortality", "hint": "synonyms for mortality", "clues": ["death rate", "mortality rate", "fatality rate", "mortality"]}, {"answer": "mortality_rate", "hint": "synonyms for mortality rate", "clues": ["death rate", "mortality", "fatality rate", "mortality rate"]}, {"answer": "mortification", "hint": "synonyms for mortification", "clues": ["sphacelus", "necrosis", "chagrin", "humiliation", "gangrene", "mortification"]}, {"answer": "mortise_joint", "hint": "synonyms for mortise joint", "clues": ["ankle", "ankle joint", "mortise-and-tenon joint", "articulatio talocruralis", "mortise joint"]}, {"answer": "mot", "hint": "synonyms for mot", "clues": ["Ministry of Transportation test", "MOT", "MOT test", "bon mot"]}, {"answer": "mote", "hint": "synonyms for mote", "clues": ["corpuscle", "particle", "molecule", "speck", "atom", "mote"]}, {"answer": "mother_country", "hint": "synonyms for mother country", "clues": ["country of origin", "motherland", "native land", "fatherland", "homeland", "mother country"]}, {"answer": "mother_fucker", "hint": "synonyms for mother fucker", "clues": ["SOB", "motherfucker", "son of a bitch", "shit", "cocksucker", "whoreson", "bastard", "asshole", "prick", "dickhead"]}, {"answer": "mother_seton", "hint": "synonyms for mother seton", "clues": ["Saint Elizabeth Ann Bayley Seton", "Mother Seton", "Seton", "Elizabeth Seton"]}, {"answer": "mother_wit", "hint": "synonyms for mother wit", "clues": ["horse sense", "sense", "good sense", "gumption", "common sense", "mother wit"]}, {"answer": "motherfucker", "hint": "synonyms for motherfucker", "clues": ["SOB", "son of a bitch", "shit", "mother fucker", "cocksucker", "whoreson", "bastard", "asshole", "prick", "dickhead"]}, {"answer": "motherland", "hint": "synonyms for motherland", "clues": ["country of origin", "native land", "fatherland", "homeland", "mother country", "motherland"]}, {"answer": "motion", "hint": "synonyms for motion", "clues": ["motility", "apparent movement", "movement", "question", "move", "gesture", "apparent motion", "motion"]}, {"answer": "motion-picture_show", "hint": "synonyms for motion-picture show", "clues": ["movie", "picture show", "film", "moving picture", "pic", "flick", "picture", "moving-picture show"]}, {"answer": "motion_picture", "hint": "synonyms for motion picture", "clues": ["movie", "picture show", "motion-picture show", "film", "moving picture", "pic", "flick", "picture"]}, {"answer": "motion_study", "hint": "synonyms for motion study", "clues": ["time study", "time-motion study", "time and motion study", "work study", "motion study"]}, {"answer": "motor_aphasia", "hint": "synonyms for motor aphasia", "clues": ["expressive aphasia", "ataxic aphasia", "nonfluent aphasia", "Broca's aphasia", "motor aphasia"]}, {"answer": "motor_area", "hint": "synonyms for motor area", "clues": ["motor cortex", "motor region", "Rolando's area", "excitable area", "motor area"]}, {"answer": "motor_cortex", "hint": "synonyms for motor cortex", "clues": ["motor area", "motor region", "Rolando's area", "excitable area", "motor cortex"]}, {"answer": "motor_horn", "hint": "synonyms for motor horn", "clues": ["automobile horn", "horn", "hooter", "car horn", "motor horn"]}, {"answer": "motor_hotel", "hint": "synonyms for motor hotel", "clues": ["court", "motor lodge", "tourist court", "motor inn", "motor hotel"]}, {"answer": "motor_inn", "hint": "synonyms for motor inn", "clues": ["court", "motor lodge", "motor hotel", "tourist court", "motor inn"]}, {"answer": "motor_lodge", "hint": "synonyms for motor lodge", "clues": ["court", "tourist court", "motor hotel", "motor inn", "motor lodge"]}, {"answer": "motor_region", "hint": "synonyms for motor region", "clues": ["motor area", "Rolando's area", "excitable area", "motor cortex", "motor region"]}, {"answer": "motorbus", "hint": "synonyms for motorbus", "clues": ["omnibus", "coach", "autobus", "motorcoach", "jitney", "charabanc", "passenger vehicle", "double-decker", "bus", "motorbus"]}, {"answer": "motorcar", "hint": "synonyms for motorcar", "clues": ["car", "auto", "automobile", "machine", "motorcar"]}, {"answer": "motorcoach", "hint": "synonyms for motorcoach", "clues": ["omnibus", "coach", "autobus", "jitney", "charabanc", "motorbus", "passenger vehicle", "double-decker", "bus", "motorcoach"]}, {"answer": "motorway", "hint": "synonyms for motorway", "clues": ["thruway", "pike", "freeway", "superhighway", "throughway", "state highway", "expressway", "motorway"]}, {"answer": "motrin", "hint": "synonyms for motrin", "clues": ["Nuprin", "isobutylphenyl propionic acid", "ibuprofen", "Advil", "Motrin"]}, {"answer": "mould", "hint": "synonyms for mould", "clues": ["clay sculpture", "moulding", "cast", "stamp", "mold", "mildew", "modeling"]}, {"answer": "moulding", "hint": "synonyms for moulding", "clues": ["clay sculpture", "mold", "modelling", "border", "moulding"]}, {"answer": "mound", "hint": "synonyms for mound", "clues": ["pitcher", "pitcher's mound", "cumulation", "hammock", "knoll", "hillock", "agglomerate", "heap", "cumulus", "hill", "pile", "mound"]}, {"answer": "mount", "hint": "synonyms for mount", "clues": ["climb", "mountain", "backing", "setting", "mount"]}, {"answer": "mount_communism", "hint": "synonyms for mount communism", "clues": ["Stalin Peak", "Mount Garmo", "Communism Peak", "Mount Communism"]}, {"answer": "mount_fuji", "hint": "synonyms for mount fuji", "clues": ["Fujiyama", "Fuji-san", "Fuji", "Mount Fuji"]}, {"answer": "mount_garmo", "hint": "synonyms for mount garmo", "clues": ["Stalin Peak", "Mount Garmo", "Communism Peak", "Mount Communism"]}, {"answer": "mount_godwin_austen", "hint": "synonyms for mount godwin austen", "clues": ["Godwin Austen", "Mount Godwin Austen", "K2", "Dapsang"]}, {"answer": "mount_kanchenjunga", "hint": "synonyms for mount kanchenjunga", "clues": ["Kanchenjunga", "Kanchanjanga", "Kinchinjunga", "Mount Kanchenjunga"]}, {"answer": "mount_mckinley", "hint": "synonyms for mount mckinley", "clues": ["McKinley", "Mt. McKinley", "Denali", "Mount McKinley"]}, {"answer": "mount_olympus", "hint": "synonyms for mount olympus", "clues": ["Mount Olympus", "Olimbos", "Olympus", "Mt. Olympus"]}, {"answer": "mount_ranier", "hint": "synonyms for mount ranier", "clues": ["Mount Ranier", "Mount Tacoma", "Mt. Ranier", "Ranier"]}, {"answer": "mount_rushmore_state", "hint": "synonyms for mount rushmore state", "clues": ["Mount Rushmore State", "South Dakota", "SD", "Coyote State"]}, {"answer": "mount_tacoma", "hint": "synonyms for mount tacoma", "clues": ["Mount Ranier", "Mount Tacoma", "Mt. Ranier", "Ranier"]}, {"answer": "mountain", "hint": "synonyms for mountain", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "mount", "flock", "mountain"]}, {"answer": "mountain_chain", "hint": "synonyms for mountain chain", "clues": ["range", "mountain range", "chain", "range of mountains", "chain of mountains", "mountain chain"]}, {"answer": "mountain_range", "hint": "synonyms for mountain range", "clues": ["mountain chain", "range", "chain", "range of mountains", "chain of mountains", "mountain range"]}, {"answer": "mouth", "hint": "synonyms for mouth", "clues": ["rima oris", "sass", "mouthpiece", "oral fissure", "backtalk", "oral cavity", "lip", "mouth"]}, {"answer": "mouth-to-mouth_resuscitation", "hint": "synonyms for mouth-to-mouth resuscitation", "clues": ["cardiopulmonary resuscitation", "cardiac resuscitation", "kiss of life", "CPR", "mouth-to-mouth resuscitation"]}, {"answer": "move", "hint": "synonyms for move", "clues": ["motility", "movement", "relocation", "motion", "move"]}, {"answer": "movement", "hint": "synonyms for movement", "clues": ["trend", "campaign", "move", "social movement", "drift", "crusade", "motion", "motility", "front", "effort", "drive", "apparent movement", "bowel movement", "bm", "cause", "apparent motion", "movement"]}, {"answer": "movement_of_holy_warriors", "hint": "synonyms for movement of holy warriors", "clues": ["Movement of Holy Warriors", "Al Faran", "Harkat ul-Ansar", "Harkat ul-Mujahedeen", "HUA", "HUM", "Harkat-ul-Mujahidin"]}, {"answer": "mover", "hint": "synonyms for mover", "clues": ["proposer", "moving company", "removal firm", "removal company", "public mover", "mover"]}, {"answer": "movie", "hint": "synonyms for movie", "clues": ["picture show", "motion-picture show", "film", "moving picture", "pic", "flick", "picture", "movie"]}, {"answer": "movie_house", "hint": "synonyms for movie house", "clues": ["movie theater", "cinema", "picture palace", "movie house"]}, {"answer": "movie_theater", "hint": "synonyms for movie theater", "clues": ["movie house", "cinema", "movie theatre", "picture palace"]}, {"answer": "movie_theatre", "hint": "synonyms for movie theatre", "clues": ["movie house", "cinema", "movie theater", "picture palace"]}, {"answer": "moving-picture_show", "hint": "synonyms for moving-picture show", "clues": ["movie", "picture show", "motion-picture show", "film", "moving picture", "pic", "flick", "picture"]}, {"answer": "moving_company", "hint": "synonyms for moving company", "clues": ["mover", "removal company", "public mover", "removal firm", "moving company"]}, {"answer": "moving_picture", "hint": "synonyms for moving picture", "clues": ["movie", "picture show", "motion-picture show", "film", "pic", "motion picture", "flick", "picture"]}, {"answer": "moxie", "hint": "synonyms for moxie", "clues": ["grit", "backbone", "gumption", "guts", "sand", "moxie"]}, {"answer": "mps", "hint": "synonyms for mps", "clues": ["military police", "MPS", "mononuclear phagocyte system", "system of macrophages"]}, {"answer": "mrna", "hint": "synonyms for mrna", "clues": ["informational RNA", "template RNA", "messenger RNA", "mRNA"]}, {"answer": "mrs._gandhi", "hint": "synonyms for mrs. gandhi", "clues": ["Mrs. Gandhi", "Indira Nehru Gandhi", "Gandhi", "Indira Gandhi"]}, {"answer": "mrs._simpson", "hint": "synonyms for mrs. simpson", "clues": ["Duchess of Windsor", "Wallis Warfield Simpson", "Mrs. Simpson", "Wallis Warfield Windsor", "Simpson"]}, {"answer": "ms", "hint": "synonyms for ms", "clues": ["Magnolia State", "grand", "Master of Science", "MSc", "multiple sclerosis", "m", "yard", "MB", "manuscript", "G", "metre", "megabyte", "thousand", "mebibyte", "molar concentration", "molarity", "disseminated sclerosis", "meter", "MiB", "chiliad", "SM", "K", "disseminated multiple sclerosis", "Mississippi", "one thousand", "Ms.", "thou", "1000"]}, {"answer": "msc", "hint": "synonyms for msc", "clues": ["SM", "MS", "Master of Science", "MSc"]}, {"answer": "mt", "hint": "synonyms for mt", "clues": ["machine translation", "tonne", "MT", "metric ton", "Montana", "t", "meitnerium", "element 109", "atomic number 109", "Treasure State"]}, {"answer": "mt._mckinley", "hint": "synonyms for mt. mckinley", "clues": ["McKinley", "Mt. McKinley", "Denali", "Mount McKinley"]}, {"answer": "mt._olympus", "hint": "synonyms for mt. olympus", "clues": ["Mount Olympus", "Olimbos", "Olympus", "Mt. Olympus"]}, {"answer": "mt._ranier", "hint": "synonyms for mt. ranier", "clues": ["Mount Ranier", "Mount Tacoma", "Mt. Ranier", "Ranier"]}, {"answer": "muammar_al-qaddafi", "hint": "synonyms for muammar al-qaddafi", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "muammar_el-qaddafi", "hint": "synonyms for muammar el-qaddafi", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "muck", "hint": "synonyms for muck", "clues": ["droppings", "gunk", "goo", "dung", "slime", "ooze", "guck", "sludge", "muck"]}, {"answer": "muckle", "hint": "synonyms for muckle", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "wad", "heap", "mickle", "flock", "muckle"]}, {"answer": "mucocutaneous_leishmaniasis", "hint": "synonyms for mucocutaneous leishmaniasis", "clues": ["nasopharyngeal leishmaniasis", "American leishmaniasis", "New World leishmaniasis", "leishmaniasis americana", "mucocutaneous leishmaniasis"]}, {"answer": "mucoviscidosis", "hint": "synonyms for mucoviscidosis", "clues": ["pancreatic fibrosis", "cystic fibrosis", "CF", "fibrocystic disease of the pancreas", "mucoviscidosis"]}, {"answer": "muddiness", "hint": "synonyms for muddiness", "clues": ["cloudiness", "confusion", "wateriness", "murkiness", "sloppiness", "disarray", "confusedness", "mental confusion", "muddiness"]}, {"answer": "muddle", "hint": "synonyms for muddle", "clues": ["welter", "kettle of fish", "fuddle", "mess", "smother", "jumble", "pickle", "jam", "fix", "hole", "clutter", "mare's nest", "muddle"]}, {"answer": "mug", "hint": "synonyms for mug", "clues": ["soft touch", "smiler", "fall guy", "mark", "physiognomy", "gull", "patsy", "fool", "phiz", "kisser", "chump", "visage", "sucker", "mugful", "countenance", "mug"]}, {"answer": "muggins", "hint": "synonyms for muggins", "clues": ["saphead", "tomfool", "fool", "sap", "muggins"]}, {"answer": "muhammad", "hint": "synonyms for muhammad", "clues": ["Mohammad", "Elijah Muhammad", "Mahomet", "Mahound"]}, {"answer": "muhammad_ali", "hint": "synonyms for muhammad ali", "clues": ["Cassius Marcellus Clay", "Mehemet Ali", "Muhammad Ali", "Ali", "Mohammed Ali", "Cassius Clay"]}, {"answer": "muhammadanism", "hint": "synonyms for muhammadanism", "clues": ["Muslimism", "Islamism", "Islam", "Muhammadanism", "Mohammedanism"]}, {"answer": "mujahidin-e_khalq_organization", "hint": "synonyms for mujahidin-e khalq organization", "clues": ["MKO", "Mujahidin-e Khalq Organization", "People's Mujahidin of Iran", "MEK"]}, {"answer": "muller", "hint": "synonyms for muller", "clues": ["pestle", "Karl Alex Muller", "Regiomontanus", "Muller", "Johann Muller", "ponderer", "Friedrich Max Muller", "Hermann Joseph Muller", "pounder", "muser", "Max Muller", "Johannes Peter Muller", "ruminator", "Paul Hermann Muller"]}, {"answer": "multitude", "hint": "synonyms for multitude", "clues": ["the great unwashed", "pack", "throng", "people", "concourse", "battalion", "masses", "plurality", "large number", "hoi polloi", "multitude"]}, {"answer": "mummer", "hint": "synonyms for mummer", "clues": ["pantomimist", "pantomimer", "mimer", "mummer"]}, {"answer": "mummy", "hint": "synonyms for mummy", "clues": ["mum", "ma", "mamma", "momma", "mammy", "mommy", "mom", "mummy"]}, {"answer": "mundaneness", "hint": "synonyms for mundaneness", "clues": ["mundanity", "ordinariness", "worldliness", "sophistication", "mundaneness"]}, {"answer": "mundanity", "hint": "synonyms for mundanity", "clues": ["ordinariness", "worldliness", "mundaneness", "sophistication", "mundanity"]}, {"answer": "munificence", "hint": "synonyms for munificence", "clues": ["openhandedness", "largesse", "magnanimity", "munificence"]}, {"answer": "munition", "hint": "synonyms for munition", "clues": ["ordnance store", "ordnance", "arms", "weapons system", "implements of war", "weaponry", "fortification", "munition"]}, {"answer": "munro", "hint": "synonyms for munro", "clues": ["Munro", "H. H. Munro", "Saki", "Hector Hugh Munro"]}, {"answer": "murdoch", "hint": "synonyms for murdoch", "clues": ["Keith Rupert Murdoch", "Dame Jean Iris Murdoch", "Iris Murdoch", "Murdoch", "Rupert Murdoch"]}, {"answer": "muriel_sarah_spark", "hint": "synonyms for muriel sarah spark", "clues": ["Muriel Sarah Spark", "Spark", "Muriel Spark", "Dame Muriel Spark"]}, {"answer": "muriel_spark", "hint": "synonyms for muriel spark", "clues": ["Muriel Sarah Spark", "Spark", "Muriel Spark", "Dame Muriel Spark"]}, {"answer": "murkiness", "hint": "synonyms for murkiness", "clues": ["murk", "fog", "cloudiness", "fogginess", "muddiness", "murkiness"]}, {"answer": "murmur", "hint": "synonyms for murmur", "clues": ["muttering", "mussitation", "murmuration", "murmur vowel", "heart murmur", "grumble", "murmuring", "grumbling", "cardiac murmur"]}, {"answer": "murmuration", "hint": "synonyms for murmuration", "clues": ["muttering", "mussitation", "murmuring", "murmuration"]}, {"answer": "murphy", "hint": "synonyms for murphy", "clues": ["Irish potato", "potato", "spud", "white potato", "tater", "murphy"]}, {"answer": "murray", "hint": "synonyms for murray", "clues": ["Sir James Augustus Murray", "James Murray", "George Gilbert Aime Murphy", "Murray", "Gilbert Murray", "James Augustus Henry Murray", "Murray River"]}, {"answer": "muscat", "hint": "synonyms for muscat", "clues": ["muscat grape", "Muscat", "Masqat", "capital of Oman", "muscadelle"]}, {"answer": "muscle", "hint": "synonyms for muscle", "clues": ["sinew", "brawniness", "muscular tissue", "heftiness", "musculus", "muscleman", "muscularity", "brawn", "muscle"]}, {"answer": "muscle_sense", "hint": "synonyms for muscle sense", "clues": ["sense of movement", "kinaesthesis", "kinesthetics", "muscle sense"]}, {"answer": "muscleman", "hint": "synonyms for muscleman", "clues": ["muscle builder", "muscle", "bodybuilder", "muscleman"]}, {"answer": "muscularity", "hint": "synonyms for muscularity", "clues": ["vim", "sinew", "brawniness", "muscle", "heftiness", "energy", "brawn", "vigor", "muscularity"]}, {"answer": "musculus_pectoralis", "hint": "synonyms for musculus pectoralis", "clues": ["pecs", "pectoral muscle", "pectoral", "musculus pectoralis"]}, {"answer": "mush", "hint": "synonyms for mush", "clues": ["pulp", "cornmeal mush", "slop", "glop", "treacle", "mush"]}, {"answer": "mushiness", "hint": "synonyms for mushiness", "clues": ["pulpiness", "mawkishness", "sentimentality", "drippiness", "sloppiness", "soupiness", "mushiness"]}, {"answer": "musial", "hint": "synonyms for musial", "clues": ["Stan the Man", "Musial", "Stan Musial", "Stanley Frank Musial"]}, {"answer": "musical_composition", "hint": "synonyms for musical composition", "clues": ["composition", "piece of music", "opus", "piece", "musical composition"]}, {"answer": "muslim_ummah", "hint": "synonyms for muslim ummah", "clues": ["Muslim Ummah", "Islam Nation", "Islamic Ummah", "Umma"]}, {"answer": "muslimism", "hint": "synonyms for muslimism", "clues": ["Muslimism", "Islamism", "Islam", "Muhammadanism", "Mohammedanism"]}, {"answer": "mussitation", "hint": "synonyms for mussitation", "clues": ["muttering", "murmuring", "murmuration", "mussitation"]}, {"answer": "mustafa_kemal", "hint": "synonyms for mustafa kemal", "clues": ["Kemal Pasha", "Kemal Ataturk", "Ataturk", "Mustafa Kemal"]}, {"answer": "mustagh", "hint": "synonyms for mustagh", "clues": ["Mustagh Range", "Karakoram Range", "Mustagh", "Karakoram"]}, {"answer": "mustagh_range", "hint": "synonyms for mustagh range", "clues": ["Mustagh Range", "Karakoram Range", "Mustagh", "Karakoram"]}, {"answer": "mustard", "hint": "synonyms for mustard", "clues": ["Indian mustard", "mustard greens", "leaf mustard", "table mustard", "mustard"]}, {"answer": "mustard_agent", "hint": "synonyms for mustard agent", "clues": ["sulfur mustard", "blistering agent", "dichloroethyl sulfide", "mustard gas", "mustard agent"]}, {"answer": "mustard_gas", "hint": "synonyms for mustard gas", "clues": ["mustard agent", "sulfur mustard", "blistering agent", "dichloroethyl sulfide", "mustard gas"]}, {"answer": "mutation", "hint": "synonyms for mutation", "clues": ["mutant", "sport", "chromosomal mutation", "variation", "genetic mutation", "mutation"]}, {"answer": "mutter", "hint": "synonyms for mutter", "clues": ["muttering", "mussitation", "murmuration", "grumble", "murmuring", "grumbling"]}, {"answer": "muttering", "hint": "synonyms for muttering", "clues": ["mussitation", "mutter", "murmuration", "grumble", "murmuring", "grumbling"]}, {"answer": "muttonhead", "hint": "synonyms for muttonhead", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "knucklehead", "numskull", "lunkhead", "blockhead", "shithead", "loggerhead", "muttonhead"]}, {"answer": "mv", "hint": "synonyms for mv", "clues": ["Mv", "Md", "atomic number 101", "mendelevium", "millivolt"]}, {"answer": "myosis", "hint": "synonyms for myosis", "clues": ["epidemic myalgia", "pupillary reflex", "miosis", "diaphragmatic pleurisy", "epidemic pleurodynia", "light reflex", "Bornholm disease", "myosis"]}, {"answer": "mystery", "hint": "synonyms for mystery", "clues": ["mystery story", "whodunit", "enigma", "closed book", "secret", "mystery"]}, {"answer": "mystification", "hint": "synonyms for mystification", "clues": ["puzzlement", "bewilderment", "befuddlement", "obfuscation", "bemusement", "bafflement", "mystification"]}, {"answer": "n", "hint": "synonyms for n", "clues": ["N", "normality", "nitrogen", "northward", "due north", "atomic number 7", "north", "newton"]}, {"answer": "n._y._stock_exchange", "hint": "synonyms for n. y. stock exchange", "clues": ["NYSE", "New York Stock Exchange", "N. Y. Stock Exchange", "big board"]}, {"answer": "nada", "hint": "synonyms for nada", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nil", "cypher", "nix", "goose egg", "zippo", "zilch", "nada"]}, {"answer": "nag", "hint": "synonyms for nag", "clues": ["scold", "scolder", "common scold", "nagger", "nag"]}, {"answer": "nagger", "hint": "synonyms for nagger", "clues": ["scold", "nag", "scolder", "common scold", "nagger"]}, {"answer": "naive_art", "hint": "synonyms for naive art", "clues": ["primitive art", "vernacular art", "self-taught art", "outsider art", "naive art"]}, {"answer": "nakedness", "hint": "synonyms for nakedness", "clues": ["nudity", "bleakness", "bareness", "desolation", "nudeness", "openness", "nakedness"]}, {"answer": "name", "hint": "synonyms for name", "clues": ["epithet", "gens", "figure", "public figure", "name"]}, {"answer": "names", "hint": "synonyms for names", "clues": ["name", "epithet", "name calling", "gens", "figure", "public figure"]}, {"answer": "nan", "hint": "synonyms for nan", "clues": ["granny", "nanna", "Nan", "grandmother", "Nan River", "grannie", "gran", "grandma"]}, {"answer": "nance", "hint": "synonyms for nance", "clues": ["fairy", "fag", "poove", "queer", "faggot", "pansy", "queen", "pouf", "poof", "nance"]}, {"answer": "nanna", "hint": "synonyms for nanna", "clues": ["granny", "Nanna", "grandmother", "nan", "grannie", "gran", "grandma"]}, {"answer": "nanometer", "hint": "synonyms for nanometer", "clues": ["micromillimetre", "nm", "nanometre", "millimicron"]}, {"answer": "nanometre", "hint": "synonyms for nanometre", "clues": ["micromillimetre", "nanometer", "nm", "millimicron"]}, {"answer": "nap", "hint": "synonyms for nap", "clues": ["catnap", "snooze", "Napoleon", "forty winks", "pile", "sleep", "cat sleep", "short sleep", "nap"]}, {"answer": "napkin", "hint": "synonyms for napkin", "clues": ["serviette", "diaper", "nappy", "table napkin", "napkin"]}, {"answer": "napoleon", "hint": "synonyms for napoleon", "clues": ["Bonaparte", "Napoleon I", "nap", "Napoleon Bonaparte", "Little Corporal"]}, {"answer": "napoleon_bonaparte", "hint": "synonyms for napoleon bonaparte", "clues": ["Bonaparte", "Napoleon I", "Napoleon Bonaparte", "Little Corporal"]}, {"answer": "napoleon_i", "hint": "synonyms for napoleon i", "clues": ["Bonaparte", "Napoleon I", "Napoleon Bonaparte", "Little Corporal"]}, {"answer": "narghile", "hint": "synonyms for narghile", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe"]}, {"answer": "nargileh", "hint": "synonyms for nargileh", "clues": ["calean", "kalian", "hookah", "narghile", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe"]}, {"answer": "narration", "hint": "synonyms for narration", "clues": ["narrative", "story", "tale", "recital", "yarn", "narration"]}, {"answer": "narrow_escape", "hint": "synonyms for narrow escape", "clues": ["close shave", "close call", "squeaker", "narrow escape"]}, {"answer": "nasopharyngeal_leishmaniasis", "hint": "synonyms for nasopharyngeal leishmaniasis", "clues": ["American leishmaniasis", "mucocutaneous leishmaniasis", "New World leishmaniasis", "leishmaniasis americana", "nasopharyngeal leishmaniasis"]}, {"answer": "nastiness", "hint": "synonyms for nastiness", "clues": ["spite", "spitefulness", "filthiness", "bitchiness", "foulness", "cattiness", "filth", "nastiness"]}, {"answer": "natality", "hint": "synonyms for natality", "clues": ["birthrate", "fertility rate", "fertility", "natality"]}, {"answer": "nates", "hint": "synonyms for nates", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "tooshie", "can", "nates"]}, {"answer": "nation", "hint": "synonyms for nation", "clues": ["body politic", "res publica", "Carry Nation", "Carry Amelia Moore Nation", "Nation", "country", "commonwealth", "land", "state"]}, {"answer": "national_intelligence_community", "hint": "synonyms for national intelligence community", "clues": ["United States Intelligence Community", "Intelligence Community", "IC", "National Intelligence Community"]}, {"answer": "national_liberation_army", "hint": "synonyms for national liberation army", "clues": ["Nestor Paz Zamora Commission", "ELN", "National Liberation Army", "CNPZ"]}, {"answer": "nationalist_china", "hint": "synonyms for nationalist china", "clues": ["Republic of China", "China", "Nationalist China", "Taiwan"]}, {"answer": "native_australian", "hint": "synonyms for native australian", "clues": ["native Australian", "Australian Aborigine", "Abo", "Aborigine", "Aboriginal"]}, {"answer": "native_land", "hint": "synonyms for native land", "clues": ["country of origin", "motherland", "fatherland", "homeland", "mother country", "native land"]}, {"answer": "nativity", "hint": "synonyms for nativity", "clues": ["Nativity", "nascence", "Virgin Birth", "birth"]}, {"answer": "natural_rubber", "hint": "synonyms for natural rubber", "clues": ["caoutchouc", "rubber", "gum elastic", "India rubber", "natural rubber"]}, {"answer": "natural_spring", "hint": "synonyms for natural spring", "clues": ["outpouring", "spring", "fountain", "outflow", "natural spring"]}, {"answer": "naught", "hint": "synonyms for naught", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zippo", "zilch"]}, {"answer": "nauru", "hint": "synonyms for nauru", "clues": ["Nauru", "Republic of Nauru", "Nauru Island", "Pleasant Island"]}, {"answer": "nauseatingness", "hint": "synonyms for nauseatingness", "clues": ["disgustingness", "unsavoriness", "distastefulness", "sickeningness", "nauseatingness"]}, {"answer": "naut_mi", "hint": "synonyms for naut mi", "clues": ["mile", "Admiralty mile", "air mile", "knot", "international nautical mile", "mi", "nautical mile", "geographical mile", "naut mi"]}, {"answer": "nautical_mile", "hint": "synonyms for nautical mile", "clues": ["mile", "Admiralty mile", "naut mi", "air mile", "knot", "international nautical mile", "mi", "geographical mile", "nautical mile"]}, {"answer": "navel", "hint": "synonyms for navel", "clues": ["belly button", "navel point", "umbilicus", "omphalos", "navel"]}, {"answer": "navigation", "hint": "synonyms for navigation", "clues": ["piloting", "pilotage", "seafaring", "sailing", "navigation"]}, {"answer": "navy", "hint": "synonyms for navy", "clues": ["Navy", "navy blue", "US Navy", "dark blue", "United States Navy", "naval forces", "USN"]}, {"answer": "nb", "hint": "synonyms for nb", "clues": ["Nb", "atomic number 41", "nota bene", "N.B.", "niobium"]}, {"answer": "nc", "hint": "synonyms for nc", "clues": ["Tar Heel State", "North Carolina", "NC", "Old North State"]}, {"answer": "nd", "hint": "synonyms for nd", "clues": ["ND", "Peace Garden State", "neodymium", "atomic number 60", "North Dakota"]}, {"answer": "ne", "hint": "synonyms for ne", "clues": ["atomic number 10", "Ne", "Cornhusker State", "neon", "northeast", "northeastward", "Nebraska", "nor'-east"]}, {"answer": "ne'er-do-well", "hint": "synonyms for ne'er-do-well", "clues": ["goof-off", "good-for-nothing", "goldbrick", "good-for-naught", "no-account", "ne'er-do-well"]}, {"answer": "nebuliser", "hint": "synonyms for nebuliser", "clues": ["atomiser", "nebulizer", "spray", "sprayer"]}, {"answer": "nebulizer", "hint": "synonyms for nebulizer", "clues": ["atomiser", "spray", "sprayer", "nebuliser"]}, {"answer": "necessity", "hint": "synonyms for necessity", "clues": ["essential", "necessary", "requirement", "requisite", "necessity"]}, {"answer": "neck_of_the_woods", "hint": "synonyms for neck of the woods", "clues": ["locality", "neighbourhood", "vicinity", "neck of the woods"]}, {"answer": "necking", "hint": "synonyms for necking", "clues": ["gorgerin", "petting", "smooching", "cuddling", "hugging", "caressing", "fondling", "kissing", "snuggling", "necking"]}, {"answer": "necromancer", "hint": "synonyms for necromancer", "clues": ["thaumaturge", "sorcerer", "magician", "wizard", "thaumaturgist", "necromancer"]}, {"answer": "necropolis", "hint": "synonyms for necropolis", "clues": ["burial ground", "burial site", "graveyard", "memorial park", "cemetery", "burying ground", "necropolis"]}, {"answer": "necropsy", "hint": "synonyms for necropsy", "clues": ["postmortem", "PM", "post-mortem examination", "autopsy", "necropsy"]}, {"answer": "nederland", "hint": "synonyms for nederland", "clues": ["The Netherlands", "Holland", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "need", "hint": "synonyms for need", "clues": ["motivation", "penury", "pauperization", "want", "demand", "motive", "pauperism", "indigence", "need"]}, {"answer": "needlewoman", "hint": "synonyms for needlewoman", "clues": ["modiste", "dressmaker", "sempstress", "needlewoman"]}, {"answer": "neftali_ricardo_reyes", "hint": "synonyms for neftali ricardo reyes", "clues": ["Reyes", "Neruda", "Pablo Neruda", "Neftali Ricardo Reyes"]}, {"answer": "neglect", "hint": "synonyms for neglect", "clues": ["negligence", "nonperformance", "disregard", "carelessness", "neglectfulness", "disuse", "neglect"]}, {"answer": "neglige", "hint": "synonyms for neglige", "clues": ["wrapper", "housecoat", "negligee", "peignoir"]}, {"answer": "negligee", "hint": "synonyms for negligee", "clues": ["wrapper", "housecoat", "neglige", "peignoir"]}, {"answer": "negligence", "hint": "synonyms for negligence", "clues": ["nonperformance", "carelessness", "neglectfulness", "neglect", "negligence"]}, {"answer": "neighborhood", "hint": "synonyms for neighborhood", "clues": ["locality", "region", "neighbourhood", "neck of the woods", "vicinity"]}, {"answer": "neighbourhood", "hint": "synonyms for neighbourhood", "clues": ["locality", "neck of the woods", "neighborhood", "vicinity"]}, {"answer": "nell_gwynn", "hint": "synonyms for nell gwynn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "nell_gwynne", "hint": "synonyms for nell gwynne", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "nell_gywn", "hint": "synonyms for nell gywn", "clues": ["Nell Gywn", "Nell Gwynn", "Eleanor Gwyn", "Gwynn", "Gynne", "Gywn"]}, {"answer": "nellie_bly", "hint": "synonyms for nellie bly", "clues": ["Elizabeth Seaman", "Seaman", "Elizabeth Cochrane Seaman", "Nellie Bly"]}, {"answer": "nelson", "hint": "synonyms for nelson", "clues": ["Viscount Nelson", "Admiral Nelson", "Lord Nelson", "Horatio Nelson", "Nelson"]}, {"answer": "nembutal", "hint": "synonyms for nembutal", "clues": ["pentobarbital sodium", "yellow jacket", "Nembutal", "pentobarbital"]}, {"answer": "nemesis", "hint": "synonyms for nemesis", "clues": ["curse", "scourge", "Nemesis", "bane"]}, {"answer": "nenets", "hint": "synonyms for nenets", "clues": ["Yurak-Samoyed", "Nenets", "Nentsi", "Nentsy"]}, {"answer": "nentsi", "hint": "synonyms for nentsi", "clues": ["Yurak-Samoyed", "Nenets", "Nentsi", "Nentsy"]}, {"answer": "nentsy", "hint": "synonyms for nentsy", "clues": ["Yurak-Samoyed", "Nenets", "Nentsi", "Nentsy"]}, {"answer": "neophyte", "hint": "synonyms for neophyte", "clues": ["newcomer", "catechumen", "starter", "entrant", "newbie", "fledgeling", "freshman", "neophyte"]}, {"answer": "nephroblastoma", "hint": "synonyms for nephroblastoma", "clues": ["adenomyosarcoma", "Wilms' tumor", "embryoma of the kidney", "nephroblastoma"]}, {"answer": "nephrosis", "hint": "synonyms for nephrosis", "clues": ["kidney disease", "renal disorder", "nephropathy", "nephrotic syndrome", "nephrosis"]}, {"answer": "nerd", "hint": "synonyms for nerd", "clues": ["grind", "dweeb", "wonk", "swot", "nerd"]}, {"answer": "neruda", "hint": "synonyms for neruda", "clues": ["Reyes", "Neruda", "Pablo Neruda", "Neftali Ricardo Reyes"]}, {"answer": "nerve", "hint": "synonyms for nerve", "clues": ["brass", "mettle", "spunk", "cheek", "face", "boldness", "heart", "nervus", "nerve"]}, {"answer": "nerves", "hint": "synonyms for nerves", "clues": ["brass", "nervousness", "mettle", "nerve", "spunk", "cheek", "face", "boldness", "heart", "nervus"]}, {"answer": "nervousness", "hint": "synonyms for nervousness", "clues": ["jumpiness", "jitteriness", "restiveness", "nerves", "nervousness"]}, {"answer": "nervus_abducens", "hint": "synonyms for nervus abducens", "clues": ["abducent nerve", "abducent", "sixth cranial nerve", "nervus abducens"]}, {"answer": "nervus_trigeminus", "hint": "synonyms for nervus trigeminus", "clues": ["trigeminal nerve", "fifth cranial nerve", "trigeminal", "trigeminus", "nervus trigeminus"]}, {"answer": "nervus_vagus", "hint": "synonyms for nervus vagus", "clues": ["vagus", "pneumogastric", "vagus nerve", "wandering nerve", "tenth cranial nerve", "pneumogastric nerve", "nervus vagus"]}, {"answer": "nervus_vestibulocochlearis", "hint": "synonyms for nervus vestibulocochlearis", "clues": ["eighth cranial nerve", "acoustic nerve", "vestibulocochlear nerve", "auditory nerve", "nervus vestibulocochlearis"]}, {"answer": "nestling", "hint": "synonyms for nestling", "clues": ["fry", "nipper", "shaver", "youngster", "tike", "minor", "tyke", "tiddler", "kid", "small fry", "child", "nestling"]}, {"answer": "nestor_paz_zamora_commission", "hint": "synonyms for nestor paz zamora commission", "clues": ["Nestor Paz Zamora Commission", "ELN", "National Liberation Army", "CNPZ"]}, {"answer": "net_income", "hint": "synonyms for net income", "clues": ["earnings", "lucre", "profits", "net", "net profit", "net income"]}, {"answer": "net_profit", "hint": "synonyms for net profit", "clues": ["lucre", "profits", "net income", "net", "earnings", "net profit"]}, {"answer": "nether_region", "hint": "synonyms for nether region", "clues": ["infernal region", "perdition", "Hell", "Inferno", "pit", "nether region"]}, {"answer": "netherlands", "hint": "synonyms for netherlands", "clues": ["The Netherlands", "Holland", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "netherlands_guiana", "hint": "synonyms for netherlands guiana", "clues": ["Suriname", "Dutch Guiana", "Republic of Suriname", "Netherlands Guiana"]}, {"answer": "netherworld", "hint": "synonyms for netherworld", "clues": ["infernal region", "Hades", "Hell", "underworld", "Scheol", "netherworld"]}, {"answer": "netkeeper", "hint": "synonyms for netkeeper", "clues": ["goalkeeper", "goalie", "goaltender", "netminder", "netkeeper"]}, {"answer": "netminder", "hint": "synonyms for netminder", "clues": ["netkeeper", "goalie", "goaltender", "goalkeeper", "netminder"]}, {"answer": "network", "hint": "synonyms for network", "clues": ["meshing", "electronic network", "net", "meshwork", "web", "network"]}, {"answer": "neuroleptic", "hint": "synonyms for neuroleptic", "clues": ["neuroleptic drug", "major tranquilliser", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug", "neuroleptic"]}, {"answer": "neuroleptic_agent", "hint": "synonyms for neuroleptic agent", "clues": ["neuroleptic", "neuroleptic drug", "major tranquilliser", "antipsychotic", "antipsychotic agent", "antipsychotic drug", "neuroleptic agent"]}, {"answer": "neuroleptic_drug", "hint": "synonyms for neuroleptic drug", "clues": ["neuroleptic", "major tranquilliser", "antipsychotic", "antipsychotic agent", "neuroleptic agent", "antipsychotic drug", "neuroleptic drug"]}, {"answer": "nevada", "hint": "synonyms for nevada", "clues": ["Battle Born State", "Silver State", "Sagebrush State", "Nevada", "NV"]}, {"answer": "new_jersey", "hint": "synonyms for new jersey", "clues": ["Garden State", "Jersey", "New Jersey", "NJ"]}, {"answer": "new_wave", "hint": "synonyms for new wave", "clues": ["van", "Nouvelle Vague", "avant-garde", "New Wave", "vanguard"]}, {"answer": "new_world_leishmaniasis", "hint": "synonyms for new world leishmaniasis", "clues": ["New World leishmaniasis", "leishmaniasis americana", "nasopharyngeal leishmaniasis", "American leishmaniasis", "mucocutaneous leishmaniasis"]}, {"answer": "new_york", "hint": "synonyms for new york", "clues": ["New York City", "Empire State", "NY", "New York", "Greater New York", "New York State"]}, {"answer": "new_york_minute", "hint": "synonyms for new york minute", "clues": ["flash", "trice", "instant", "wink", "jiffy", "New York minute", "split second", "twinkling", "blink of an eye", "heartbeat"]}, {"answer": "new_york_state", "hint": "synonyms for new york state", "clues": ["NY", "New York", "New York State", "Empire State"]}, {"answer": "new_york_stock_exchange", "hint": "synonyms for new york stock exchange", "clues": ["NYSE", "New York Stock Exchange", "N. Y. Stock Exchange", "big board"]}, {"answer": "newbie", "hint": "synonyms for newbie", "clues": ["neophyte", "newcomer", "starter", "entrant", "fledgeling", "freshman", "newbie"]}, {"answer": "newcomer", "hint": "synonyms for newcomer", "clues": ["neophyte", "starter", "entrant", "newbie", "fledgeling", "freshman", "newcomer"]}, {"answer": "newman", "hint": "synonyms for newman", "clues": ["Paul Leonard Newman", "John Henry Newman", "Cardinal Newman", "Newman", "Paul Newman"]}, {"answer": "newmarket", "hint": "synonyms for newmarket", "clues": ["Newmarket", "Michigan", "stops", "boodle", "Chicago"]}, {"answer": "news", "hint": "synonyms for news", "clues": ["tidings", "news show", "intelligence", "news program", "newsworthiness", "word", "news"]}, {"answer": "news_agency", "hint": "synonyms for news agency", "clues": ["wire service", "news organization", "press association", "press agency", "news agency"]}, {"answer": "news_organisation", "hint": "synonyms for news organisation", "clues": ["wire service", "news agency", "press association", "press agency", "news organization"]}, {"answer": "news_organization", "hint": "synonyms for news organization", "clues": ["wire service", "news agency", "press association", "press agency", "news organisation"]}, {"answer": "news_report", "hint": "synonyms for news report", "clues": ["report", "story", "account", "write up", "news report"]}, {"answer": "newsmonger", "hint": "synonyms for newsmonger", "clues": ["rumourmonger", "gossip", "gossipmonger", "newsmonger"]}, {"answer": "newspaper_clipping", "hint": "synonyms for newspaper clipping", "clues": ["press clipping", "press cutting", "cutting", "clipping", "newspaper clipping"]}, {"answer": "newspaperman", "hint": "synonyms for newspaperman", "clues": ["newswriter", "newspaperwoman", "correspondent", "pressman"]}, {"answer": "newspaperwoman", "hint": "synonyms for newspaperwoman", "clues": ["newswriter", "newspaperman", "pressman", "correspondent"]}, {"answer": "newswriter", "hint": "synonyms for newswriter", "clues": ["newspaperman", "correspondent", "pressman", "newswriter"]}, {"answer": "newton's_theory_of_gravitation", "hint": "synonyms for newton's theory of gravitation", "clues": ["gravitational theory", "theory of gravity", "theory of gravitation", "Newton's theory of gravitation"]}, {"answer": "newton's_third_law", "hint": "synonyms for newton's third law", "clues": ["third law of motion", "Newton's third law", "law of action and reaction", "Newton's third law of motion"]}, {"answer": "newton's_third_law_of_motion", "hint": "synonyms for newton's third law of motion", "clues": ["third law of motion", "Newton's third law", "law of action and reaction", "Newton's third law of motion"]}, {"answer": "nicety", "hint": "synonyms for nicety", "clues": ["shade", "subtlety", "refinement", "justness", "rightness", "nuance", "nicety"]}, {"answer": "niche", "hint": "synonyms for niche", "clues": ["recession", "ecological niche", "recess", "corner", "niche"]}, {"answer": "nick", "hint": "synonyms for nick", "clues": ["notch", "snick", "dent", "gouge", "ding"]}, {"answer": "nicknack", "hint": "synonyms for nicknack", "clues": ["knickknackery", "bric-a-brac", "whatnot", "nicknack"]}, {"answer": "nickname", "hint": "synonyms for nickname", "clues": ["byname", "soubriquet", "cognomen", "moniker", "nickname"]}, {"answer": "nictation", "hint": "synonyms for nictation", "clues": ["blinking", "winking", "nictitation", "eye blink"]}, {"answer": "nictitation", "hint": "synonyms for nictitation", "clues": ["blinking", "winking", "nictation", "eye blink"]}, {"answer": "niddm", "hint": "synonyms for niddm", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "nigga", "hint": "synonyms for nigga", "clues": ["coon", "nigra", "nigger", "jigaboo", "spade", "nigga"]}, {"answer": "niggardliness", "hint": "synonyms for niggardliness", "clues": ["niggardness", "parsimony", "minginess", "tightness", "parsimoniousness", "tightfistedness", "meanness", "closeness"]}, {"answer": "niggardness", "hint": "synonyms for niggardness", "clues": ["parsimony", "tightness", "minginess", "parsimoniousness", "tightfistedness", "meanness", "niggardliness", "closeness"]}, {"answer": "nigger", "hint": "synonyms for nigger", "clues": ["coon", "nigra", "nigga", "jigaboo", "spade", "nigger"]}, {"answer": "night", "hint": "synonyms for night", "clues": ["nighttime", "Night", "Nox", "dark"]}, {"answer": "night-robe", "hint": "synonyms for night-robe", "clues": ["nightdress", "nightie", "gown", "nightgown", "night-robe"]}, {"answer": "night_club", "hint": "synonyms for night club", "clues": ["cabaret", "nightclub", "nightspot", "club"]}, {"answer": "nightclub", "hint": "synonyms for nightclub", "clues": ["cabaret", "night club", "nightspot", "club"]}, {"answer": "nightdress", "hint": "synonyms for nightdress", "clues": ["nightgown", "gown", "night-robe", "nightie", "nightdress"]}, {"answer": "nightfall", "hint": "synonyms for nightfall", "clues": ["gloaming", "twilight", "dusk", "crepuscule", "evenfall", "fall", "nightfall"]}, {"answer": "nightgown", "hint": "synonyms for nightgown", "clues": ["nightdress", "gown", "night-robe", "nightie", "nightgown"]}, {"answer": "nightie", "hint": "synonyms for nightie", "clues": ["nightdress", "gown", "night-robe", "nightgown", "nightie"]}, {"answer": "nightspot", "hint": "synonyms for nightspot", "clues": ["cabaret", "night club", "club", "nightspot"]}, {"answer": "nightstick", "hint": "synonyms for nightstick", "clues": ["billystick", "billy club", "truncheon", "billy", "baton", "nightstick"]}, {"answer": "nigra", "hint": "synonyms for nigra", "clues": ["coon", "nigger", "nigga", "jigaboo", "spade", "nigra"]}, {"answer": "nikolai_lenin", "hint": "synonyms for nikolai lenin", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "nil", "hint": "synonyms for nil", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nada", "cypher", "nix", "goose egg", "zippo", "zilch", "nil"]}, {"answer": "nimbleness", "hint": "synonyms for nimbleness", "clues": ["lightness", "mental dexterity", "lightsomeness", "legerity", "agility", "nimbleness"]}, {"answer": "nimbus", "hint": "synonyms for nimbus", "clues": ["glory", "aureole", "aura", "rain cloud", "gloriole", "halo", "nimbus cloud", "nimbus"]}, {"answer": "nimitz", "hint": "synonyms for nimitz", "clues": ["Nimitz", "Admiral Nimitz", "Chester William Nimitz", "Chester Nimitz"]}, {"answer": "nina_from_carolina", "hint": "synonyms for nina from carolina", "clues": ["IX", "nine", "ennead", "9", "Nina from Carolina"]}, {"answer": "niner", "hint": "synonyms for niner", "clues": ["IX", "nine", "ennead", "9", "Nina from Carolina"]}, {"answer": "nineties", "hint": "synonyms for nineties", "clues": ["1890s", "XC", "mid-nineties", "ninety", "1990s", "90", "nineties"]}, {"answer": "nip", "hint": "synonyms for nip", "clues": ["flavour", "sapidity", "relish", "coolness", "savor", "chilliness", "smack", "piquancy", "Nip", "shot", "zest", "pinch", "Jap", "tang", "piquantness", "tanginess"]}, {"answer": "nipper", "hint": "synonyms for nipper", "clues": ["fry", "shaver", "nestling", "youngster", "tike", "minor", "tyke", "tiddler", "kid", "small fry", "child", "nipper"]}, {"answer": "nipple", "hint": "synonyms for nipple", "clues": ["pap", "teat", "mammilla", "tit", "nipple"]}, {"answer": "nirvana", "hint": "synonyms for nirvana", "clues": ["heaven", "promised land", "enlightenment", "Eden", "Shangri-la", "paradise", "nirvana"]}, {"answer": "niter", "hint": "synonyms for niter", "clues": ["saltpeter", "potassium nitrate", "nitre", "niter"]}, {"answer": "nitre", "hint": "synonyms for nitre", "clues": ["saltpeter", "potassium nitrate", "niter", "nitre"]}, {"answer": "nitroglycerin", "hint": "synonyms for nitroglycerin", "clues": ["glyceryl trinitrate", "trinitroglycerin", "Nitrospan", "Nitrostat"]}, {"answer": "nitroglycerine", "hint": "synonyms for nitroglycerine", "clues": ["glyceryl trinitrate", "trinitroglycerin", "Nitrospan", "Nitrostat"]}, {"answer": "nitrospan", "hint": "synonyms for nitrospan", "clues": ["glyceryl trinitrate", "trinitroglycerin", "Nitrospan", "Nitrostat"]}, {"answer": "nitrostat", "hint": "synonyms for nitrostat", "clues": ["glyceryl trinitrate", "trinitroglycerin", "Nitrospan", "Nitrostat"]}, {"answer": "nitty-gritty", "hint": "synonyms for nitty-gritty", "clues": ["marrow", "core", "inwardness", "gist", "essence", "heart and soul", "sum", "centre", "meat", "center", "kernel", "nub", "substance", "heart", "pith", "nitty-gritty"]}, {"answer": "nix", "hint": "synonyms for nix", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "goose egg", "zippo", "zilch", "nix"]}, {"answer": "nixon", "hint": "synonyms for nixon", "clues": ["Nixon", "Richard Milhous Nixon", "Richard Nixon", "President Nixon"]}, {"answer": "nj", "hint": "synonyms for nj", "clues": ["Garden State", "New Jersey", "Jersey", "NJ"]}, {"answer": "nm", "hint": "synonyms for nm", "clues": ["micromillimetre", "nanometer", "New Mexico", "NM", "Land of Enchantment", "millimicron"]}, {"answer": "noachian_deluge", "hint": "synonyms for noachian deluge", "clues": ["Noah and the Flood", "Noah's flood", "the Flood", "Noachian deluge"]}, {"answer": "noah's_flood", "hint": "synonyms for noah's flood", "clues": ["Noah and the Flood", "Noah's flood", "the Flood", "Noachian deluge"]}, {"answer": "noah_and_the_flood", "hint": "synonyms for noah and the flood", "clues": ["Noah and the Flood", "Noah's flood", "the Flood", "Noachian deluge"]}, {"answer": "nobility", "hint": "synonyms for nobility", "clues": ["aristocracy", "grandeur", "nobleness", "magnanimousness", "noblesse", "nobility"]}, {"answer": "noctambulation", "hint": "synonyms for noctambulation", "clues": ["noctambulism", "somnambulism", "somnambulation", "sleepwalking", "noctambulation"]}, {"answer": "noctambulism", "hint": "synonyms for noctambulism", "clues": ["sleepwalking", "somnambulism", "somnambulation", "noctambulation", "noctambulism"]}, {"answer": "node", "hint": "synonyms for node", "clues": ["lymph node", "guest", "lymph gland", "thickening", "client", "knob", "node"]}, {"answer": "noel", "hint": "synonyms for noel", "clues": ["Christmastime", "Yuletide", "Christmas", "Noel", "Yule"]}, {"answer": "noggin", "hint": "synonyms for noggin", "clues": ["attic", "dome", "bean", "noodle", "bonce", "noggin"]}, {"answer": "noise", "hint": "synonyms for noise", "clues": ["dissonance", "haphazardness", "stochasticity", "racket", "randomness", "interference", "disturbance", "noise"]}, {"answer": "nominal_aphasia", "hint": "synonyms for nominal aphasia", "clues": ["anomic aphasia", "amnestic aphasia", "anomia", "nominal aphasia"]}, {"answer": "nominal_head", "hint": "synonyms for nominal head", "clues": ["front", "strawman", "figurehead", "front man", "nominal head"]}, {"answer": "non-insulin-dependent_diabetes", "hint": "synonyms for non-insulin-dependent diabetes", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "non-insulin-dependent diabetes mellitus", "type II diabetes"]}, {"answer": "non-insulin-dependent_diabetes_mellitus", "hint": "synonyms for non-insulin-dependent diabetes mellitus", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "nonentity", "hint": "synonyms for nonentity", "clues": ["nonexistence", "cypher", "cipher", "nobody", "nonentity"]}, {"answer": "nonesuch", "hint": "synonyms for nonesuch", "clues": ["apotheosis", "nonsuch", "saint", "ideal", "nonpareil", "paragon"]}, {"answer": "nonfluent_aphasia", "hint": "synonyms for nonfluent aphasia", "clues": ["expressive aphasia", "ataxic aphasia", "Broca's aphasia", "motor aphasia", "nonfluent aphasia"]}, {"answer": "nonrapid_eye_movement", "hint": "synonyms for nonrapid eye movement", "clues": ["NREM", "NREM sleep", "nonrapid eye movement sleep", "orthodox sleep"]}, {"answer": "nonrapid_eye_movement_sleep", "hint": "synonyms for nonrapid eye movement sleep", "clues": ["NREM", "nonrapid eye movement", "NREM sleep", "orthodox sleep"]}, {"answer": "nonsensicality", "hint": "synonyms for nonsensicality", "clues": ["bunk", "nonsense", "meaninglessness", "hokum", "nonsensicality"]}, {"answer": "nonsuch", "hint": "synonyms for nonsuch", "clues": ["apotheosis", "saint", "nonesuch", "ideal", "nonpareil", "paragon"]}, {"answer": "noodle", "hint": "synonyms for noodle", "clues": ["attic", "noggin", "dome", "bean", "bonce", "noodle"]}, {"answer": "nookie", "hint": "synonyms for nookie", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie"]}, {"answer": "nooky", "hint": "synonyms for nooky", "clues": ["piece of tail", "screw", "shtup", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie", "nooky"]}, {"answer": "noon", "hint": "synonyms for noon", "clues": ["midday", "noonday", "noontide", "twelve noon", "high noon", "noon"]}, {"answer": "noonday", "hint": "synonyms for noonday", "clues": ["midday", "noontide", "twelve noon", "noon", "high noon", "noonday"]}, {"answer": "noontide", "hint": "synonyms for noontide", "clues": ["midday", "noonday", "twelve noon", "noon", "high noon", "noontide"]}, {"answer": "noose", "hint": "synonyms for noose", "clues": ["slip noose", "gin", "snare", "running noose", "noose"]}, {"answer": "noreg", "hint": "synonyms for noreg", "clues": ["Noreg", "Kingdom of Norway", "Norway", "Norge"]}, {"answer": "norge", "hint": "synonyms for norge", "clues": ["Noreg", "Kingdom of Norway", "Norway", "Norge"]}, {"answer": "normodyne", "hint": "synonyms for normodyne", "clues": ["Trandate", "Normodyne", "labetalol", "labetalol hydrochloride"]}, {"answer": "north_carolina", "hint": "synonyms for north carolina", "clues": ["North Carolina", "Tar Heel State", "NC", "Old North State"]}, {"answer": "north_germanic", "hint": "synonyms for north germanic", "clues": ["Norse", "Nordic", "Scandinavian", "Scandinavian language", "North Germanic language", "North Germanic"]}, {"answer": "north_germanic_language", "hint": "synonyms for north germanic language", "clues": ["Norse", "Nordic", "Scandinavian", "Scandinavian language", "North Germanic language", "North Germanic"]}, {"answer": "north_korea", "hint": "synonyms for north korea", "clues": ["Democratic People's Republic of Korea", "D.P.R.K.", "DPRK", "North Korea"]}, {"answer": "north_star", "hint": "synonyms for north star", "clues": ["Polaris", "polestar", "North Star", "polar star"]}, {"answer": "north_star_state", "hint": "synonyms for north star state", "clues": ["Minnesota", "MN", "Gopher State", "North Star State"]}, {"answer": "norway", "hint": "synonyms for norway", "clues": ["Noreg", "Kingdom of Norway", "Norway", "Norge"]}, {"answer": "nose_candy", "hint": "synonyms for nose candy", "clues": ["C", "coke", "snow", "blow", "nose candy"]}, {"answer": "nose_drops", "hint": "synonyms for nose drops", "clues": ["scag", "big H", "smack", "hell dust", "thunder", "skag", "nose drops"]}, {"answer": "notability", "hint": "synonyms for notability", "clues": ["luminary", "guiding light", "notable", "leading light", "notability"]}, {"answer": "notch", "hint": "synonyms for notch", "clues": ["pass", "snick", "mountain pass", "notch"]}, {"answer": "note", "hint": "synonyms for note", "clues": ["eminence", "government note", "musical note", "banker's bill", "line", "Federal Reserve note", "notation", "note of hand", "tone", "bank note", "promissory note", "billet", "short letter", "bill", "preeminence", "distinction", "bank bill", "greenback", "note"]}, {"answer": "nothingness", "hint": "synonyms for nothingness", "clues": ["wind", "nihility", "jazz", "malarky", "void", "nullity", "idle words", "nothingness"]}, {"answer": "nothings", "hint": "synonyms for nothings", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zippo", "zilch"]}, {"answer": "notice", "hint": "synonyms for notice", "clues": ["bill", "card", "observance", "placard", "posting", "notification", "observation", "poster", "notice"]}, {"answer": "notification", "hint": "synonyms for notification", "clues": ["telling", "notice", "apprisal", "presentment", "notification"]}, {"answer": "notion", "hint": "synonyms for notion", "clues": ["whimsey", "opinion", "belief", "feeling", "impression", "whim", "notion"]}, {"answer": "nought", "hint": "synonyms for nought", "clues": ["cipher", "zero", "cypher", "0", "nought"]}, {"answer": "noughts_and_crosses", "hint": "synonyms for noughts and crosses", "clues": ["ticktacktoe", "tic-tac-toe", "tit-tat-toe", "noughts and crosses"]}, {"answer": "nourishment", "hint": "synonyms for nourishment", "clues": ["aliment", "nutrition", "alimentation", "victuals", "sustenance", "nutriment", "nourishment"]}, {"answer": "nous", "hint": "synonyms for nous", "clues": ["mind", "head", "psyche", "brain", "nous"]}, {"answer": "nova_lox", "hint": "synonyms for nova lox", "clues": ["Nova style salmon", "Nova Scotia salmon", "Nova salmon", "Nova Scotia lox", "Nova lox"]}, {"answer": "nova_salmon", "hint": "synonyms for nova salmon", "clues": ["Nova style salmon", "Nova Scotia salmon", "Nova salmon", "Nova Scotia lox", "Nova lox"]}, {"answer": "nova_scotia_lox", "hint": "synonyms for nova scotia lox", "clues": ["Nova style salmon", "Nova Scotia salmon", "Nova salmon", "Nova Scotia lox", "Nova lox"]}, {"answer": "nova_scotia_salmon", "hint": "synonyms for nova scotia salmon", "clues": ["Nova style salmon", "Nova Scotia salmon", "Nova salmon", "Nova Scotia lox", "Nova lox"]}, {"answer": "nova_style_salmon", "hint": "synonyms for nova style salmon", "clues": ["Nova style salmon", "Nova Scotia salmon", "Nova salmon", "Nova Scotia lox", "Nova lox"]}, {"answer": "novelty", "hint": "synonyms for novelty", "clues": ["trinket", "gaud", "gewgaw", "bauble", "bangle", "fallal", "freshness", "knickknack", "novelty"]}, {"answer": "november_1", "hint": "synonyms for november 1", "clues": ["Hallowmass", "Allhallows", "All Saints' Day", "November 1"]}, {"answer": "novice", "hint": "synonyms for novice", "clues": ["initiate", "beginner", "tiro", "novitiate", "tyro", "novice"]}, {"answer": "nozzle", "hint": "synonyms for nozzle", "clues": ["snoot", "beak", "schnoz", "schnozzle", "nose", "snout", "hooter", "honker", "nozzle"]}, {"answer": "np", "hint": "synonyms for np", "clues": ["atomic number 93", "NP", "nurse practitioner", "nurse clinician", "neptunium"]}, {"answer": "nrem", "hint": "synonyms for nrem", "clues": ["NREM sleep", "nonrapid eye movement sleep", "orthodox sleep", "NREM"]}, {"answer": "nrem_sleep", "hint": "synonyms for nrem sleep", "clues": ["NREM sleep", "nonrapid eye movement sleep", "orthodox sleep", "NREM"]}, {"answer": "nuance", "hint": "synonyms for nuance", "clues": ["refinement", "shade", "nicety", "subtlety", "nuance"]}, {"answer": "nub", "hint": "synonyms for nub", "clues": ["marrow", "stub", "inwardness", "nitty-gritty", "center", "kernel", "heart", "nubble", "core", "sum", "gist", "essence", "heart and soul", "centre", "meat", "substance", "pith", "nub"]}, {"answer": "nucleus", "hint": "synonyms for nucleus", "clues": ["lens nucleus", "core", "cell nucleus", "karyon", "core group", "nucleus"]}, {"answer": "number", "hint": "synonyms for number", "clues": ["phone number", "routine", "act", "numeral", "bit", "issue", "figure", "turn", "identification number", "number"]}, {"answer": "numbers", "hint": "synonyms for numbers", "clues": ["Book of Numbers", "numbers racket", "numbers game", "phone number", "Numbers", "routine", "act", "bit", "numbers pool", "figure", "numeral", "issue", "turn", "identification number"]}, {"answer": "numeration", "hint": "synonyms for numeration", "clues": ["reckoning", "enumeration", "count", "tally"]}, {"answer": "numskull", "hint": "synonyms for numskull", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "shithead", "lunkhead", "blockhead", "loggerhead", "numskull"]}, {"answer": "nuprin", "hint": "synonyms for nuprin", "clues": ["Nuprin", "isobutylphenyl propionic acid", "ibuprofen", "Advil", "Motrin"]}, {"answer": "nurture", "hint": "synonyms for nurture", "clues": ["fostering", "rearing", "breeding", "upbringing", "raising", "bringing up", "fosterage", "nurture"]}, {"answer": "nut", "hint": "synonyms for nut", "clues": ["Nut", "junkie", "fruitcake", "crackpot", "screwball", "crank", "junky", "addict", "nut case", "egg", "bollock", "en", "orchis", "ball", "testicle", "testis", "freak"]}, {"answer": "nut_case", "hint": "synonyms for nut case", "clues": ["fruitcake", "crackpot", "screwball", "crank", "nut", "nut case"]}, {"answer": "nut_house", "hint": "synonyms for nut house", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "nuthouse", "snake pit", "sanatorium", "booby hatch", "Bedlam", "crazy house", "funny house"]}, {"answer": "nutcase", "hint": "synonyms for nutcase", "clues": ["loony", "crazy", "weirdo", "nutcase"]}, {"answer": "nuthouse", "hint": "synonyms for nuthouse", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "snake pit", "sanatorium", "booby hatch", "nut house", "Bedlam", "crazy house", "funny house"]}, {"answer": "nutmeg_state", "hint": "synonyms for nutmeg state", "clues": ["Constitution State", "CT", "Nutmeg State", "Connecticut"]}, {"answer": "nutriment", "hint": "synonyms for nutriment", "clues": ["aliment", "nutrition", "alimentation", "victuals", "sustenance", "nourishment", "nutriment"]}, {"answer": "nutrition", "hint": "synonyms for nutrition", "clues": ["aliment", "alimentation", "victuals", "sustenance", "nourishment", "nutriment", "nutrition"]}, {"answer": "nutritionist's_calorie", "hint": "synonyms for nutritionist's calorie", "clues": ["Calorie", "large calorie", "kilogram calorie", "kilocalorie", "nutritionist's calorie"]}, {"answer": "nv", "hint": "synonyms for nv", "clues": ["Battle Born State", "Silver State", "Sagebrush State", "Nevada", "NV"]}, {"answer": "nw", "hint": "synonyms for nw", "clues": ["NW", "northwest", "northwestward", "nor'-west"]}, {"answer": "ny", "hint": "synonyms for ny", "clues": ["NY", "New York", "New York State", "Empire State"]}, {"answer": "nylon_stocking", "hint": "synonyms for nylon stocking", "clues": ["rayon stocking", "nylons", "rayons", "silk stocking"]}, {"answer": "nylons", "hint": "synonyms for nylons", "clues": ["rayon stocking", "silk stocking", "rayons", "nylon"]}, {"answer": "nyse", "hint": "synonyms for nyse", "clues": ["NYSE", "New York Stock Exchange", "N. Y. Stock Exchange", "big board"]}, {"answer": "o", "hint": "synonyms for o", "clues": ["atomic number 8", "O", "oxygen", "type O", "group O"]}, {"answer": "oaf", "hint": "synonyms for oaf", "clues": ["clod", "lump", "stumblebum", "lubber", "gawk", "lout", "goon", "lummox", "oaf"]}, {"answer": "oarlock", "hint": "synonyms for oarlock", "clues": ["pin", "peg", "rowlock", "tholepin", "thole", "oarlock"]}, {"answer": "oath", "hint": "synonyms for oath", "clues": ["curse word", "curse", "expletive", "swearing", "cuss", "swearword", "oath"]}, {"answer": "ob", "hint": "synonyms for ob", "clues": ["midwifery", "Ob", "tocology", "Ob River", "obstetrics"]}, {"answer": "obfuscation", "hint": "synonyms for obfuscation", "clues": ["mystification", "puzzlement", "befuddlement", "bewilderment", "bemusement", "bafflement", "obfuscation"]}, {"answer": "object", "hint": "synonyms for object", "clues": ["aim", "physical object", "target", "objective", "object"]}, {"answer": "objection", "hint": "synonyms for objection", "clues": ["protest", "remonstrance", "expostulation", "dissent", "remonstration", "objection"]}, {"answer": "objector", "hint": "synonyms for objector", "clues": ["dissident", "protester", "dissenter", "contestant", "objector"]}, {"answer": "obligation", "hint": "synonyms for obligation", "clues": ["indebtedness", "responsibility", "certificate of indebtedness", "debt instrument", "duty", "obligation"]}, {"answer": "obligingness", "hint": "synonyms for obligingness", "clues": ["complaisance", "deference", "compliancy", "obligingness"]}, {"answer": "obloquy", "hint": "synonyms for obloquy", "clues": ["defamation", "calumniation", "opprobrium", "calumny", "traducement", "hatchet job", "obloquy"]}, {"answer": "obscenity", "hint": "synonyms for obscenity", "clues": ["smut", "filth", "salacity", "dirty word", "vulgarism", "bawdiness", "lewdness", "salaciousness", "obscenity"]}, {"answer": "obscureness", "hint": "synonyms for obscureness", "clues": ["obscurity", "reconditeness", "humbleness", "unimportance", "lowliness", "abstruseness", "obscureness"]}, {"answer": "observance", "hint": "synonyms for observance", "clues": ["ceremonial occasion", "notice", "observation", "watching", "honoring", "ceremonial", "ceremony", "observance"]}, {"answer": "observation", "hint": "synonyms for observation", "clues": ["reflexion", "notice", "watching", "reflection", "observance", "observation"]}, {"answer": "observer", "hint": "synonyms for observer", "clues": ["beholder", "percipient", "perceiver", "commentator", "observer"]}, {"answer": "obstinacy", "hint": "synonyms for obstinacy", "clues": ["self-will", "mulishness", "bullheadedness", "obstinance", "stubbornness", "pigheadedness", "obstinacy"]}, {"answer": "obstinance", "hint": "synonyms for obstinance", "clues": ["self-will", "mulishness", "bullheadedness", "stubbornness", "pigheadedness", "obstinacy", "obstinance"]}, {"answer": "obstructer", "hint": "synonyms for obstructer", "clues": ["obstructionist", "thwarter", "impediment", "obstructor", "resister"]}, {"answer": "obstruction", "hint": "synonyms for obstruction", "clues": ["obstructor", "obstacle", "impediment", "blockage"]}, {"answer": "obstructionist", "hint": "synonyms for obstructionist", "clues": ["obstructor", "thwarter", "resister", "obstructionist"]}, {"answer": "obstructor", "hint": "synonyms for obstructor", "clues": ["obstructionist", "thwarter", "impediment", "obstructer", "resister"]}, {"answer": "occasion", "hint": "synonyms for occasion", "clues": ["juncture", "affair", "social function", "social occasion", "function", "occasion"]}, {"answer": "occasions", "hint": "synonyms for occasions", "clues": ["juncture", "affair", "social function", "social occasion", "occasion", "function"]}, {"answer": "occident", "hint": "synonyms for occident", "clues": ["western hemisphere", "Occident", "New World", "West"]}, {"answer": "occlusion", "hint": "synonyms for occlusion", "clues": ["stoppage", "block", "blockage", "occluded front", "closure", "stop", "occlusion"]}, {"answer": "occupation", "hint": "synonyms for occupation", "clues": ["military control", "line of work", "occupancy", "job", "line", "moving in", "business", "occupation"]}, {"answer": "ocean_bottom", "hint": "synonyms for ocean bottom", "clues": ["sea floor", "seabed", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom", "ocean bottom"]}, {"answer": "ocean_floor", "hint": "synonyms for ocean floor", "clues": ["ocean bottom", "sea floor", "seabed", "Davy Jones", "Davy Jones's locker", "sea bottom", "ocean floor"]}, {"answer": "ocean_state", "hint": "synonyms for ocean state", "clues": ["Ocean State", "Rhode Island", "Little Rhody", "RI"]}, {"answer": "octad", "hint": "synonyms for octad", "clues": ["VIII", "octet", "ogdoad", "eight", "octonary", "8", "eighter from Decatur", "eighter", "octad"]}, {"answer": "octavian", "hint": "synonyms for octavian", "clues": ["Gaius Julius Caesar Octavianus", "Gaius Octavianus", "Octavian", "Augustus"]}, {"answer": "octet", "hint": "synonyms for octet", "clues": ["eightsome", "VIII", "ogdoad", "eight", "octad", "octette", "octonary", "8", "eighter from Decatur", "eighter", "octet"]}, {"answer": "octonary", "hint": "synonyms for octonary", "clues": ["VIII", "octet", "ogdoad", "eight", "octad", "8", "eighter from Decatur", "eighter", "octonary"]}, {"answer": "odd_fellow", "hint": "synonyms for odd fellow", "clues": ["odd fish", "queer duck", "kook", "odd man out", "queer bird", "odd fellow"]}, {"answer": "odd_fish", "hint": "synonyms for odd fish", "clues": ["queer duck", "odd fellow", "kook", "odd man out", "queer bird", "odd fish"]}, {"answer": "odd_man_out", "hint": "synonyms for odd man out", "clues": ["odd fish", "queer duck", "odd fellow", "kook", "queer bird", "odd man out"]}, {"answer": "oddball", "hint": "synonyms for oddball", "clues": ["flake", "geek", "eccentric person", "eccentric", "oddball"]}, {"answer": "oddity", "hint": "synonyms for oddity", "clues": ["rarity", "quirk", "curiosity", "oddness", "quirkiness", "peculiarity", "queerness", "oddment", "curio", "crotchet", "oddity"]}, {"answer": "oddment", "hint": "synonyms for oddment", "clues": ["rarity", "curiosity", "end", "peculiarity", "oddity", "remnant", "curio", "remainder", "oddment"]}, {"answer": "oddments", "hint": "synonyms for oddments", "clues": ["hodgepodge", "farrago", "hotchpotch", "oddment", "mingle-mangle", "omnium-gatherum", "remnant", "remainder", "rarity", "melange", "odds and ends", "curio", "curiosity", "gallimaufry", "end", "peculiarity", "oddity", "ragbag", "mishmash"]}, {"answer": "odds_and_ends", "hint": "synonyms for odds and ends", "clues": ["melange", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "mingle-mangle", "omnium-gatherum", "ragbag", "mishmash", "odds and ends"]}, {"answer": "odium", "hint": "synonyms for odium", "clues": ["abhorrence", "loathing", "abomination", "execration", "detestation", "odium"]}, {"answer": "odo", "hint": "synonyms for odo", "clues": ["Odo", "Otho of Lagery", "Otho", "Urban II"]}, {"answer": "odo_of_lagery", "hint": "synonyms for odo of lagery", "clues": ["Odo", "Otho of Lagery", "Otho", "Urban II"]}, {"answer": "odor", "hint": "synonyms for odor", "clues": ["smell", "olfactory perception", "olfactory property", "scent", "odour", "olfactory sensation", "aroma"]}, {"answer": "odour", "hint": "synonyms for odour", "clues": ["smell", "olfactory perception", "olfactory property", "scent", "odor", "olfactory sensation", "aroma"]}, {"answer": "offence", "hint": "synonyms for offence", "clues": ["umbrage", "discourtesy", "offensive", "crime", "criminal offense", "law-breaking", "offensive activity", "offence"]}, {"answer": "offense", "hint": "synonyms for offense", "clues": ["umbrage", "discourtesy", "crime", "criminal offense", "offensive", "offence", "law-breaking", "offensive activity"]}, {"answer": "offer", "hint": "synonyms for offer", "clues": ["whirl", "go", "offering", "crack", "pass", "fling"]}, {"answer": "office", "hint": "synonyms for office", "clues": ["authority", "government agency", "role", "power", "office staff", "berth", "spot", "billet", "part", "post", "federal agency", "situation", "agency", "place", "bureau", "business office", "function", "position", "office"]}, {"answer": "officer", "hint": "synonyms for officer", "clues": ["policeman", "police officer", "military officer", "officeholder", "ship's officer", "officer"]}, {"answer": "offset", "hint": "synonyms for offset", "clues": ["branch", "showtime", "outset", "start", "counterbalance", "setoff", "offset printing", "get-go", "offshoot", "outgrowth", "set-back", "starting time", "kickoff", "beginning", "commencement", "first", "offset"]}, {"answer": "offspring", "hint": "synonyms for offspring", "clues": ["materialisation", "progeny", "issue", "offspring"]}, {"answer": "ogdoad", "hint": "synonyms for ogdoad", "clues": ["VIII", "octet", "eight", "octad", "octonary", "8", "eighter from Decatur", "eighter", "ogdoad"]}, {"answer": "ogre", "hint": "synonyms for ogre", "clues": ["fiend", "demon", "devil", "monster", "ogre"]}, {"answer": "ohio", "hint": "synonyms for ohio", "clues": ["OH", "Buckeye State", "Ohio River", "Ohio"]}, {"answer": "ohmic_resistance", "hint": "synonyms for ohmic resistance", "clues": ["resistivity", "resistance", "electric resistance", "impedance", "ohmic resistance"]}, {"answer": "oil", "hint": "synonyms for oil", "clues": ["crude", "rock oil", "fossil oil", "petroleum", "oil color", "crude oil", "vegetable oil", "oil"]}, {"answer": "oiler", "hint": "synonyms for oiler", "clues": ["oil tanker", "oil well", "tank ship", "tanker", "oiler"]}, {"answer": "oiliness", "hint": "synonyms for oiliness", "clues": ["fulsomeness", "oleaginousness", "unction", "unctuousness", "greasiness", "smarminess", "oiliness"]}, {"answer": "ointment", "hint": "synonyms for ointment", "clues": ["unguent", "balm", "salve", "emollient", "unction", "cream", "ointment"]}, {"answer": "okeh", "hint": "synonyms for okeh", "clues": ["O.K.", "OK", "okay", "okey", "okeh"]}, {"answer": "oken", "hint": "synonyms for oken", "clues": ["Lorenz Okenfuss", "Okenfuss", "Oken", "Lorenz Oken"]}, {"answer": "okenfuss", "hint": "synonyms for okenfuss", "clues": ["Lorenz Okenfuss", "Okenfuss", "Oken", "Lorenz Oken"]}, {"answer": "okey", "hint": "synonyms for okey", "clues": ["O.K.", "OK", "okay", "okeh", "okey"]}, {"answer": "old-age_pension", "hint": "synonyms for old-age pension", "clues": ["retirement benefit", "retirement check", "retirement pension", "retirement fund", "superannuation", "old-age pension"]}, {"answer": "old-timer", "hint": "synonyms for old-timer", "clues": ["antique", "old hand", "old stager", "stager", "warhorse", "old geezer", "gaffer", "veteran", "oldtimer"]}, {"answer": "old_age", "hint": "synonyms for old age", "clues": ["age", "geezerhood", "years", "eld", "old age"]}, {"answer": "old_colony", "hint": "synonyms for old colony", "clues": ["Old Colony", "Massachusetts", "Bay State", "MA"]}, {"answer": "old_dominion", "hint": "synonyms for old dominion", "clues": ["Old Dominion", "Virginia", "VA", "Old Dominion State"]}, {"answer": "old_dominion_state", "hint": "synonyms for old dominion state", "clues": ["Old Dominion", "Virginia", "VA", "Old Dominion State"]}, {"answer": "old_geezer", "hint": "synonyms for old geezer", "clues": ["antique", "oldtimer", "gaffer", "old geezer"]}, {"answer": "old_glory", "hint": "synonyms for old glory", "clues": ["Stars and Stripes", "Old Glory", "American flag", "Star-Spangled Banner"]}, {"answer": "old_hand", "hint": "synonyms for old hand", "clues": ["old stager", "oldtimer", "stager", "veteran", "warhorse", "old hand"]}, {"answer": "old_line_state", "hint": "synonyms for old line state", "clues": ["Maryland", "Old Line State", "MD", "Free State"]}, {"answer": "old_man", "hint": "synonyms for old man", "clues": ["Methuselah", "old boy", "greybeard", "old man"]}, {"answer": "old_nick", "hint": "synonyms for old nick", "clues": ["Satan", "the Tempter", "Prince of Darkness", "Old Nick", "Beelzebub", "Devil", "Lucifer"]}, {"answer": "old_north_state", "hint": "synonyms for old north state", "clues": ["Tar Heel State", "North Carolina", "NC", "Old North State"]}, {"answer": "old_salt", "hint": "synonyms for old salt", "clues": ["Jack", "mariner", "seafarer", "sea dog", "seaman", "gob", "Jack-tar", "tar", "old salt"]}, {"answer": "old_stager", "hint": "synonyms for old stager", "clues": ["old hand", "oldtimer", "stager", "veteran", "warhorse", "old stager"]}, {"answer": "old_world_leishmaniasis", "hint": "synonyms for old world leishmaniasis", "clues": ["Old World leishmaniasis", "tropical sore", "Aleppo boil", "cutaneous leishmaniasis", "oriental sore", "Delhi boil"]}, {"answer": "oldtimer", "hint": "synonyms for oldtimer", "clues": ["antique", "old hand", "old stager", "stager", "old geezer", "gaffer", "veteran", "warhorse", "old-timer"]}, {"answer": "oleaginousness", "hint": "synonyms for oleaginousness", "clues": ["fulsomeness", "unction", "unctuousness", "greasiness", "smarminess", "oiliness", "oleaginousness"]}, {"answer": "oleo", "hint": "synonyms for oleo", "clues": ["marge", "oleomargarine", "margarin", "oleo"]}, {"answer": "oleomargarine", "hint": "synonyms for oleomargarine", "clues": ["oleo", "marge", "margarin", "oleomargarine"]}, {"answer": "olfactory_perception", "hint": "synonyms for olfactory perception", "clues": ["smell", "olfactory sensation", "odor", "olfactory perception"]}, {"answer": "olfactory_property", "hint": "synonyms for olfactory property", "clues": ["smell", "odour", "scent", "aroma", "olfactory property"]}, {"answer": "olfactory_sensation", "hint": "synonyms for olfactory sensation", "clues": ["smell", "olfactory perception", "odor", "olfactory sensation"]}, {"answer": "olimbos", "hint": "synonyms for olimbos", "clues": ["Mount Olympus", "Olimbos", "Olympus", "Mt. Olympus"]}, {"answer": "olivier", "hint": "synonyms for olivier", "clues": ["Sir Laurence Kerr Olivier", "Olivier", "Laurence Olivier", "Baron Olivier of Birghton"]}, {"answer": "olympus", "hint": "synonyms for olympus", "clues": ["Mount Olympus", "Olimbos", "Olympus", "Mt. Olympus"]}, {"answer": "omen", "hint": "synonyms for omen", "clues": ["Oman", "prodigy", "prognostication", "Sultanate of Oman", "prognostic", "Muscat and Oman", "presage", "portent", "omen"]}, {"answer": "omnium-gatherum", "hint": "synonyms for omnium-gatherum", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "mingle-mangle", "ragbag", "mishmash", "omnium-gatherum"]}, {"answer": "omphalos", "hint": "synonyms for omphalos", "clues": ["belly button", "umbilicus", "navel", "omphalus"]}, {"answer": "omphalus", "hint": "synonyms for omphalus", "clues": ["belly button", "umbilicus", "navel", "omphalos"]}, {"answer": "onager", "hint": "synonyms for onager", "clues": ["catapult", "arbalest", "bricole", "trebucket", "ballista", "mangonel", "onager"]}, {"answer": "onanism", "hint": "synonyms for onanism", "clues": ["withdrawal", "masturbation", "pulling out", "withdrawal method", "coitus interruptus", "onanism"]}, {"answer": "one-fourth", "hint": "synonyms for one-fourth", "clues": ["twenty-five percent", "quartern", "one-quarter", "fourth", "fourth part", "one-fourth"]}, {"answer": "one-man_rule", "hint": "synonyms for one-man rule", "clues": ["totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "dictatorship", "tyranny", "authoritarianism", "absolutism", "one-man rule"]}, {"answer": "one-quarter", "hint": "synonyms for one-quarter", "clues": ["twenty-five percent", "quartern", "one-fourth", "fourth", "fourth part", "one-quarter"]}, {"answer": "one_c", "hint": "synonyms for one c", "clues": ["century", "hundred", "C", "100", "one C"]}, {"answer": "one_dollar_bill", "hint": "synonyms for one dollar bill", "clues": ["dollar", "clam", "buck", "dollar bill", "one dollar bill"]}, {"answer": "oneirism", "hint": "synonyms for oneirism", "clues": ["revery", "castle in Spain", "daydream", "castle in the air", "air castle", "reverie", "oneirism"]}, {"answer": "onset", "hint": "synonyms for onset", "clues": ["onrush", "oncoming", "attack", "onslaught", "onset"]}, {"answer": "onslaught", "hint": "synonyms for onslaught", "clues": ["outpouring", "bombardment", "onset", "attack", "barrage", "onrush", "onslaught"]}, {"answer": "ontogenesis", "hint": "synonyms for ontogenesis", "clues": ["maturation", "ontogeny", "development", "growth", "growing", "ontogenesis"]}, {"answer": "ontogeny", "hint": "synonyms for ontogeny", "clues": ["maturation", "ontogenesis", "development", "growth", "growing", "ontogeny"]}, {"answer": "onus", "hint": "synonyms for onus", "clues": ["encumbrance", "burden", "load", "onus"]}, {"answer": "onward_motion", "hint": "synonyms for onward motion", "clues": ["progress", "advancement", "procession", "advance", "forward motion"]}, {"answer": "oodles", "hint": "synonyms for oodles", "clues": ["scads", "slews", "heaps", "lots", "tons", "wads", "gobs", "rafts", "lashings", "scores", "stacks", "piles", "loads", "dozens", "oodles"]}, {"answer": "oomph", "hint": "synonyms for oomph", "clues": ["desirability", "desirableness", "sex appeal", "dynamism", "zing", "pizzaz", "oomph"]}, {"answer": "ooze", "hint": "synonyms for ooze", "clues": ["gunk", "goo", "oozing", "slime", "guck", "sludge", "seepage", "muck", "ooze"]}, {"answer": "openhandedness", "hint": "synonyms for openhandedness", "clues": ["largesse", "magnanimity", "munificence", "openhandedness"]}, {"answer": "opera_hat", "hint": "synonyms for opera hat", "clues": ["high hat", "silk hat", "top hat", "beaver", "stovepipe", "topper", "dress hat", "opera hat"]}, {"answer": "operating_room", "hint": "synonyms for operating room", "clues": ["OR", "operating theater", "surgery", "operating room"]}, {"answer": "operating_theater", "hint": "synonyms for operating theater", "clues": ["OR", "operating room", "operating theatre", "surgery"]}, {"answer": "operating_theatre", "hint": "synonyms for operating theatre", "clues": ["OR", "operating room", "operating theater", "surgery"]}, {"answer": "operation", "hint": "synonyms for operation", "clues": ["functioning", "mathematical operation", "mathematical process", "process", "surgical process", "surgical procedure", "procedure", "cognitive process", "cognitive operation", "surgery", "mental process", "surgical operation", "military operation", "performance", "operation"]}, {"answer": "operations", "hint": "synonyms for operations", "clues": ["operation", "functioning", "mathematical operation", "mathematical process", "process", "trading operations", "surgical process", "surgical procedure", "procedure", "cognitive process", "cognitive operation", "surgery", "mental process", "surgical operation", "military operation", "performance"]}, {"answer": "opinion", "hint": "synonyms for opinion", "clues": ["view", "thought", "ruling", "vox populi", "persuasion", "belief", "legal opinion", "impression", "judgment", "public opinion", "popular opinion", "sentiment", "feeling", "notion", "opinion"]}, {"answer": "opposer", "hint": "synonyms for opposer", "clues": ["antagonist", "opponent", "adversary", "resister", "opposer"]}, {"answer": "opposition", "hint": "synonyms for opposition", "clues": ["confrontation", "foeman", "opposite", "enemy", "Opposition", "oppositeness", "opponent", "resistance", "foe"]}, {"answer": "oppressiveness", "hint": "synonyms for oppressiveness", "clues": ["onerousness", "oppression", "burdensomeness", "heaviness", "oppressiveness"]}, {"answer": "option", "hint": "synonyms for option", "clues": ["alternative", "selection", "choice", "pick", "option"]}, {"answer": "opus", "hint": "synonyms for opus", "clues": ["composition", "piece of music", "musical composition", "piece", "opus"]}, {"answer": "opv", "hint": "synonyms for opv", "clues": ["TOPV", "Sabin vaccine", "oral poliovirus vaccine", "trivalent live oral poliomyelitis vaccine"]}, {"answer": "or", "hint": "synonyms for or", "clues": ["Beaver State", "OR", "operating room", "operating theater", "Oregon", "surgery"]}, {"answer": "oracle", "hint": "synonyms for oracle", "clues": ["seer", "vaticinator", "prophesier", "prophet", "oracle"]}, {"answer": "oracle_of_apollo", "hint": "synonyms for oracle of apollo", "clues": ["Temple of Apollo", "Oracle of Apollo", "Delphic oracle", "oracle of Delphi"]}, {"answer": "oracle_of_delphi", "hint": "synonyms for oracle of delphi", "clues": ["Temple of Apollo", "Oracle of Apollo", "Delphic oracle", "oracle of Delphi"]}, {"answer": "oradexon", "hint": "synonyms for oradexon", "clues": ["dexamethasone", "Decadron", "Oradexon", "Dexone", "Dexamethasone Intensol", "Hexadrol"]}, {"answer": "oral_communication", "hint": "synonyms for oral communication", "clues": ["spoken communication", "speech", "language", "voice communication", "spoken language", "oral communication"]}, {"answer": "oral_contraceptive", "hint": "synonyms for oral contraceptive", "clues": ["contraceptive pill", "anovulant", "pill", "anovulatory drug", "birth control pill", "oral contraceptive"]}, {"answer": "oral_contraceptive_pill", "hint": "synonyms for oral contraceptive pill", "clues": ["contraceptive pill", "anovulant", "pill", "anovulatory drug", "oral contraceptive", "birth control pill"]}, {"answer": "oral_exam", "hint": "synonyms for oral exam", "clues": ["oral examination", "viva voce", "oral", "viva", "oral exam"]}, {"answer": "oral_examination", "hint": "synonyms for oral examination", "clues": ["oral exam", "viva voce", "oral", "viva", "oral examination"]}, {"answer": "oral_poliovirus_vaccine", "hint": "synonyms for oral poliovirus vaccine", "clues": ["OPV", "Sabin vaccine", "trivalent live oral poliomyelitis vaccine", "oral poliovirus vaccine"]}, {"answer": "orasone", "hint": "synonyms for orasone", "clues": ["Meticorten", "prednisone", "Deltasone", "Orasone", "Liquid Pred"]}, {"answer": "orator", "hint": "synonyms for orator", "clues": ["public speaker", "rhetorician", "speechifier", "speechmaker", "orator"]}, {"answer": "orbit", "hint": "synonyms for orbit", "clues": ["sphere", "ambit", "range", "celestial orbit", "field", "orbital cavity", "arena", "domain", "reach", "electron orbit", "compass", "eye socket", "scope", "cranial orbit", "orbit"]}, {"answer": "orchis", "hint": "synonyms for orchis", "clues": ["ballock", "nut", "testicle", "ball", "egg", "testis", "orchis"]}, {"answer": "order", "hint": "synonyms for order", "clues": ["purchase order", "club", "Holy Order", "parliamentary law", "rules of order", "guild", "lodge", "rescript", "Order", "ordination", "monastic order", "fiat", "society", "orderliness", "order of magnitude", "social club", "parliamentary procedure", "decree", "edict"]}, {"answer": "orderer", "hint": "synonyms for orderer", "clues": ["systematist", "systemiser", "systematizer", "orderer"]}, {"answer": "ordnance", "hint": "synonyms for ordnance", "clues": ["gun", "ordnance store", "munition", "artillery", "heavy weapon", "ordnance"]}, {"answer": "ordure", "hint": "synonyms for ordure", "clues": ["stool", "fecal matter", "feces", "dejection", "BM", "ordure"]}, {"answer": "ore_dressing", "hint": "synonyms for ore dressing", "clues": ["mineral dressing", "ore processing", "mineral extraction", "beneficiation", "ore dressing"]}, {"answer": "ore_processing", "hint": "synonyms for ore processing", "clues": ["ore dressing", "mineral dressing", "mineral extraction", "beneficiation", "ore processing"]}, {"answer": "organ", "hint": "synonyms for organ", "clues": ["electronic organ", "reed organ", "Hammond organ", "pipe organ", "harmonium", "organ"]}, {"answer": "organisation", "hint": "synonyms for organisation", "clues": ["brass", "system", "arrangement", "formation", "administration", "organization", "establishment", "constitution", "governing body", "governance"]}, {"answer": "organiser", "hint": "synonyms for organiser", "clues": ["personal digital assistant", "personal organiser", "labor organizer", "PDA", "arranger", "organizer"]}, {"answer": "organization", "hint": "synonyms for organization", "clues": ["brass", "system", "arrangement", "formation", "organisation", "administration", "establishment", "constitution", "governing body", "governance"]}, {"answer": "organization_of_the_oppressed_on_earth", "hint": "synonyms for organization of the oppressed on earth", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "organizer", "hint": "synonyms for organizer", "clues": ["personal digital assistant", "personal organiser", "organiser", "labor organizer", "PDA", "arranger"]}, {"answer": "organs", "hint": "synonyms for organs", "clues": ["Hammond organ", "electronic organ", "variety meat", "reed organ", "organ", "pipe organ", "harmonium"]}, {"answer": "orgy", "hint": "synonyms for orgy", "clues": ["riot", "bacchanal", "debauchery", "drunken revelry", "debauch", "saturnalia", "splurge", "binge", "orgy"]}, {"answer": "oriental_sore", "hint": "synonyms for oriental sore", "clues": ["Old World leishmaniasis", "tropical sore", "Aleppo boil", "cutaneous leishmaniasis", "Delhi boil", "oriental sore"]}, {"answer": "origin", "hint": "synonyms for origin", "clues": ["root", "lineage", "blood", "stemma", "line", "line of descent", "parentage", "descent", "pedigree", "stock", "beginning", "inception", "bloodline", "source", "extraction", "ancestry", "rootage", "origination", "origin"]}, {"answer": "origination", "hint": "synonyms for origination", "clues": ["creation", "instauration", "institution", "foundation", "origin", "introduction", "founding", "innovation", "inception", "initiation", "origination"]}, {"answer": "orly_group", "hint": "synonyms for orly group", "clues": ["3rd October Organization", "ASALA", "Armenian Secret Army for the Liberation of Armenia", "Orly Group"]}, {"answer": "ornateness", "hint": "synonyms for ornateness", "clues": ["magniloquence", "grandiosity", "grandiloquence", "rhetoric", "elaborateness", "ornateness"]}, {"answer": "orthodox_catholic_church", "hint": "synonyms for orthodox catholic church", "clues": ["Orthodox Catholic Church", "Eastern Orthodox", "Eastern Orthodox Church", "Eastern Church", "Orthodox Church"]}, {"answer": "orthodox_church", "hint": "synonyms for orthodox church", "clues": ["Orthodox Catholic Church", "Eastern Orthodox", "Eastern Orthodox Church", "Eastern Church", "Orthodox Church"]}, {"answer": "orthodox_sleep", "hint": "synonyms for orthodox sleep", "clues": ["NREM", "nonrapid eye movement", "NREM sleep", "orthodox sleep"]}, {"answer": "orudis", "hint": "synonyms for orudis", "clues": ["ketoprofen", "Orudis KT", "Orudis", "Oruvail"]}, {"answer": "orudis_kt", "hint": "synonyms for orudis kt", "clues": ["ketoprofen", "Orudis KT", "Orudis", "Oruvail"]}, {"answer": "oruvail", "hint": "synonyms for oruvail", "clues": ["ketoprofen", "Orudis KT", "Orudis", "Oruvail"]}, {"answer": "orwell", "hint": "synonyms for orwell", "clues": ["Eric Arthur Blair", "George Orwell", "Orwell", "Eric Blair"]}, {"answer": "os", "hint": "synonyms for os", "clues": ["oxygen", "bone", "atomic number 76", "type O", "operating system", "OS", "group O", "osmium", "oculus sinister"]}, {"answer": "os_triquetrum", "hint": "synonyms for os triquetrum", "clues": ["triquetral", "triquetral bone", "cuneiform bone", "pyramidal bone", "os triquetrum"]}, {"answer": "os_zygomaticum", "hint": "synonyms for os zygomaticum", "clues": ["cheekbone", "zygomatic bone", "jugal bone", "malar bone", "malar", "zygomatic", "os zygomaticum"]}, {"answer": "ostentation", "hint": "synonyms for ostentation", "clues": ["pomposity", "ostentatiousness", "flash", "inflation", "pretentiousness", "fanfare", "puffiness", "pompousness", "splashiness", "ostentation"]}, {"answer": "ostentatiousness", "hint": "synonyms for ostentatiousness", "clues": ["inflation", "pretentiousness", "pomposity", "puffiness", "pompousness", "ostentation", "splashiness", "ostentatiousness"]}, {"answer": "ostiary", "hint": "synonyms for ostiary", "clues": ["gatekeeper", "doorkeeper", "door guard", "doorman", "hall porter", "porter", "ostiarius", "ostiary"]}, {"answer": "ostler", "hint": "synonyms for ostler", "clues": ["stableman", "groom", "hostler", "stableboy"]}, {"answer": "otho", "hint": "synonyms for otho", "clues": ["Odo", "Otho of Lagery", "Otho", "Urban II"]}, {"answer": "otho_of_lagery", "hint": "synonyms for otho of lagery", "clues": ["Odo", "Otho of Lagery", "Otho", "Urban II"]}, {"answer": "otorhinolaryngologist", "hint": "synonyms for otorhinolaryngologist", "clues": ["ENT man", "rhinolaryngologist", "ear-nose-and-throat doctor", "otolaryngologist"]}, {"answer": "ottawa", "hint": "synonyms for ottawa", "clues": ["Canadian capital", "capital of Canada", "Ottawa", "Ottawa river", "Outaouais"]}, {"answer": "otto_von_bismarck", "hint": "synonyms for otto von bismarck", "clues": ["Prince Otto Eduard Leopold von Bismarck", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "outburst", "hint": "synonyms for outburst", "clues": ["blowup", "flare-up", "tumultuous disturbance", "effusion", "ebullition", "burst", "gush", "outburst"]}, {"answer": "outcome", "hint": "synonyms for outcome", "clues": ["termination", "event", "upshot", "issue", "resultant", "effect", "result", "consequence", "final result", "outcome"]}, {"answer": "outcry", "hint": "synonyms for outcry", "clues": ["yell", "vociferation", "call", "cry", "shout", "outcry"]}, {"answer": "outfit", "hint": "synonyms for outfit", "clues": ["kit", "rig", "getup", "turnout", "outfit"]}, {"answer": "outflow", "hint": "synonyms for outflow", "clues": ["escape", "natural spring", "fountain", "leakage", "leak", "efflux", "effluence", "outpouring", "spring", "outflow"]}, {"answer": "outgrowth", "hint": "synonyms for outgrowth", "clues": ["branch", "growth", "offshoot", "emergence", "appendage", "process", "offset", "outgrowth"]}, {"answer": "outing", "hint": "synonyms for outing", "clues": ["excursion", "sashay", "jaunt", "expedition", "pleasure trip", "junket", "field day", "picnic", "outing"]}, {"answer": "outlay", "hint": "synonyms for outlay", "clues": ["spending", "outgo", "disbursement", "disbursal", "expenditure", "outlay"]}, {"answer": "outlet", "hint": "synonyms for outlet", "clues": ["retail store", "mercantile establishment", "vent", "electric receptacle", "wall socket", "exit", "issue", "electric outlet", "wall plug", "sales outlet", "release", "way out", "outlet"]}, {"answer": "outline", "hint": "synonyms for outline", "clues": ["abstract", "lineation", "precis", "schema", "scheme", "synopsis", "outline"]}, {"answer": "outlook", "hint": "synonyms for outlook", "clues": ["mind-set", "mentality", "prospect", "lookout", "expectation", "outlook"]}, {"answer": "outpouring", "hint": "synonyms for outpouring", "clues": ["bombardment", "natural spring", "outflow", "barrage", "flush", "fountain", "overflow", "flood", "gush", "run", "onslaught", "discharge", "spring", "outpouring"]}, {"answer": "output", "hint": "synonyms for output", "clues": ["output signal", "end product", "production", "outturn", "yield", "turnout", "output"]}, {"answer": "outrage", "hint": "synonyms for outrage", "clues": ["scandal", "scandalization", "indignation", "outrage"]}, {"answer": "outset", "hint": "synonyms for outset", "clues": ["showtime", "start", "offset", "get-go", "starting time", "kickoff", "beginning", "commencement", "first", "outset"]}, {"answer": "outsider_art", "hint": "synonyms for outsider art", "clues": ["self-taught art", "vernacular art", "primitive art", "naive art", "outsider art"]}, {"answer": "overabundance", "hint": "synonyms for overabundance", "clues": ["overmuchness", "excess", "surfeit", "superabundance", "overmuch", "overabundance"]}, {"answer": "overestimate", "hint": "synonyms for overestimate", "clues": ["overvaluation", "overreckoning", "overappraisal", "overestimation", "overrating", "overestimate"]}, {"answer": "overestimation", "hint": "synonyms for overestimation", "clues": ["overvaluation", "overestimate", "overreckoning", "overappraisal", "overrating", "overestimation"]}, {"answer": "overflow", "hint": "synonyms for overflow", "clues": ["outpouring", "overspill", "runoff", "flood", "overflow"]}, {"answer": "overhaul", "hint": "synonyms for overhaul", "clues": ["inspection and repair", "renovation", "service", "redevelopment", "overhaul"]}, {"answer": "overhead_railway", "hint": "synonyms for overhead railway", "clues": ["elevated railway", "elevated", "elevated railroad", "el", "overhead railway"]}, {"answer": "overrefinement", "hint": "synonyms for overrefinement", "clues": ["twisting", "distortion", "straining", "torture", "overrefinement"]}, {"answer": "oversight", "hint": "synonyms for oversight", "clues": ["supervising", "inadvertence", "superintendence", "lapse", "oversight"]}, {"answer": "overture", "hint": "synonyms for overture", "clues": ["prelude", "approach", "advance", "feeler", "preliminary", "overture"]}, {"answer": "ovoflavin", "hint": "synonyms for ovoflavin", "clues": ["lactoflavin", "vitamin B2", "vitamin G", "riboflavin", "hepatoflavin", "ovoflavin"]}, {"answer": "owens", "hint": "synonyms for owens", "clues": ["James Cleveland Owens", "Sir Richard Owen", "Jesse Owens", "Robert Owen", "Owens"]}, {"answer": "oxybenzene", "hint": "synonyms for oxybenzene", "clues": ["hydroxybenzene", "carbolic acid", "phenylic acid", "phenol", "oxybenzene"]}, {"answer": "ozocerite", "hint": "synonyms for ozocerite", "clues": ["ader wax", "earth wax", "ozokerite", "mineral wax"]}, {"answer": "ozokerite", "hint": "synonyms for ozokerite", "clues": ["ozocerite", "ader wax", "earth wax", "mineral wax"]}, {"answer": "p._p._von_mauser", "hint": "synonyms for p. p. von mauser", "clues": ["Peter Paul Mauser", "von Mauser", "P. P. von Mauser", "Mauser"]}, {"answer": "p.a._system", "hint": "synonyms for p.a. system", "clues": ["PA system", "PA", "public address system", "P.A."]}, {"answer": "pa", "hint": "synonyms for pa", "clues": ["dad", "PA system", "papa", "Pennsylvania", "atomic number 91", "pop", "protactinium", "Keystone State", "daddy", "PA", "P.A.", "pascal", "public address system"]}, {"answer": "pa_system", "hint": "synonyms for pa system", "clues": ["PA system", "PA", "public address system", "P.A."]}, {"answer": "pablo_neruda", "hint": "synonyms for pablo neruda", "clues": ["Reyes", "Neruda", "Pablo Neruda", "Neftali Ricardo Reyes"]}, {"answer": "pabulum", "hint": "synonyms for pabulum", "clues": ["victuals", "edible", "comestible", "eatable", "pabulum"]}, {"answer": "pace", "hint": "synonyms for pace", "clues": ["step", "tempo", "rate", "tread", "footstep", "yard", "gait", "stride", "pace"]}, {"answer": "pacemaker", "hint": "synonyms for pacemaker", "clues": ["pacesetter", "SA node", "sinoatrial node", "cardiac pacemaker", "artificial pacemaker", "pacemaker"]}, {"answer": "pacification", "hint": "synonyms for pacification", "clues": ["mollification", "counterinsurgency", "peace", "peace treaty", "pacification"]}, {"answer": "pacifier", "hint": "synonyms for pacifier", "clues": ["conciliator", "make-peace", "teething ring", "comforter", "baby's dummy", "reconciler", "peacemaker", "pacifier"]}, {"answer": "pack", "hint": "synonyms for pack", "clues": ["large number", "ring", "face pack", "mob", "gang", "camp", "ingroup", "inner circle", "battalion", "clique", "coterie", "plurality", "multitude", "pack"]}, {"answer": "package", "hint": "synonyms for package", "clues": ["software", "software package", "parcel", "computer software", "packet", "software system", "bundle", "software program", "package"]}, {"answer": "packer", "hint": "synonyms for packer", "clues": ["meat packer", "boxer", "bagger", "backpacker", "packer"]}, {"answer": "packet", "hint": "synonyms for packet", "clues": ["mail boat", "bundle", "package", "parcel", "packet boat", "packet"]}, {"answer": "packing", "hint": "synonyms for packing", "clues": ["packing material", "backpacking", "wadding", "boxing", "packing"]}, {"answer": "packman", "hint": "synonyms for packman", "clues": ["pitchman", "hawker", "peddler", "pedlar", "packman"]}, {"answer": "packsack", "hint": "synonyms for packsack", "clues": ["backpack", "haversack", "knapsack", "rucksack", "packsack"]}, {"answer": "pad", "hint": "synonyms for pad", "clues": ["tablet", "inking pad", "inkpad", "launchpad", "launch area", "digs", "domiciliation", "diggings", "lodgings", "launching pad", "pad of paper", "stamp pad", "pad"]}, {"answer": "paddy", "hint": "synonyms for paddy", "clues": ["Paddy", "paddy field", "rice paddy", "Mick", "Mickey"]}, {"answer": "paddy_wagon", "hint": "synonyms for paddy wagon", "clues": ["wagon", "patrol wagon", "police van", "police wagon", "black Maria", "paddy wagon"]}, {"answer": "padre", "hint": "synonyms for padre", "clues": ["military chaplain", "sky pilot", "Holy Joe", "Padre", "Father"]}, {"answer": "paean", "hint": "synonyms for paean", "clues": ["eulogy", "pean", "panegyric", "encomium"]}, {"answer": "page", "hint": "synonyms for page", "clues": ["Sir Frederick Handley Page", "Page", "Thomas Nelson Page", "varlet", "pageboy"]}, {"answer": "pain", "hint": "synonyms for pain", "clues": ["botheration", "infliction", "nuisance", "hurting", "pain in the neck", "bother", "annoyance", "painful sensation", "painfulness", "pain in the ass", "pain"]}, {"answer": "pain_in_the_ass", "hint": "synonyms for pain in the ass", "clues": ["botheration", "bother", "infliction", "annoyance", "pain", "pain in the neck", "pain in the ass"]}, {"answer": "pain_in_the_neck", "hint": "synonyms for pain in the neck", "clues": ["botheration", "infliction", "nuisance", "bother", "annoyance", "pain", "pain in the ass", "pain in the neck"]}, {"answer": "pains", "hint": "synonyms for pains", "clues": ["botheration", "infliction", "hurting", "nuisance", "pain in the neck", "striving", "bother", "pain in the ass", "annoyance", "strain", "painful sensation", "painfulness", "pain", "nisus"]}, {"answer": "paint", "hint": "synonyms for paint", "clues": ["key", "rouge", "blusher", "pigment", "paint"]}, {"answer": "pair", "hint": "synonyms for pair", "clues": ["brace", "couplet", "duo", "twain", "duet", "duad", "twosome", "distich", "dyad", "yoke", "span", "pair"]}, {"answer": "pairing", "hint": "synonyms for pairing", "clues": ["coupling", "union", "sexual union", "mating", "conjugation", "pairing"]}, {"answer": "pal", "hint": "synonyms for pal", "clues": ["sidekick", "buddy", "chum", "brother", "crony", "pal"]}, {"answer": "palace_car", "hint": "synonyms for palace car", "clues": ["drawing-room car", "parlour car", "chair car", "palace car"]}, {"answer": "palau", "hint": "synonyms for palau", "clues": ["Belau", "TT", "Palau", "Republic of Palau", "Pelew", "Palau Islands"]}, {"answer": "palau_islands", "hint": "synonyms for palau islands", "clues": ["Palau Islands", "Palau", "Pelew", "Belau"]}, {"answer": "palaver", "hint": "synonyms for palaver", "clues": ["hot air", "empty words", "empty talk", "blandishment", "rhetoric", "cajolery", "palaver"]}, {"answer": "paleness", "hint": "synonyms for paleness", "clues": ["lividity", "lividness", "luridness", "pallidness", "wanness", "blondness", "fairness", "pallor", "pallidity", "achromasia", "paleness"]}, {"answer": "palestine", "hint": "synonyms for palestine", "clues": ["Holy Land", "Palestine", "Promised Land", "Canaan"]}, {"answer": "pall", "hint": "synonyms for pall", "clues": ["shroud", "winding-clothes", "mantle", "drape", "winding-sheet", "cerement", "chill", "curtain", "drapery", "pall"]}, {"answer": "pallas", "hint": "synonyms for pallas", "clues": ["Pallas Athene", "Athene", "Athena", "Pallas"]}, {"answer": "pallas_athena", "hint": "synonyms for pallas athena", "clues": ["Pallas Athene", "Athene", "Athena", "Pallas"]}, {"answer": "pallas_athene", "hint": "synonyms for pallas athene", "clues": ["Pallas Athene", "Athene", "Athena", "Pallas"]}, {"answer": "pallidness", "hint": "synonyms for pallidness", "clues": ["wanness", "pallor", "luridness", "lividity", "achromasia", "paleness", "lividness", "pallidness"]}, {"answer": "pallium", "hint": "synonyms for pallium", "clues": ["cerebral cortex", "mantle", "cerebral mantle", "cortex", "pallium"]}, {"answer": "pallor", "hint": "synonyms for pallor", "clues": ["wanness", "paleness", "luridness", "lividity", "achromasia", "pallidness", "lividness", "pallor"]}, {"answer": "palm", "hint": "synonyms for palm", "clues": ["medallion", "thenar", "decoration", "laurel wreath", "ribbon", "medal", "palm"]}, {"answer": "palpitation", "hint": "synonyms for palpitation", "clues": ["shaking", "vibration", "quivering", "shakiness", "trembling", "palpitation"]}, {"answer": "pamphlet", "hint": "synonyms for pamphlet", "clues": ["tract", "brochure", "booklet", "folder", "leaflet", "pamphlet"]}, {"answer": "panacea", "hint": "synonyms for panacea", "clues": ["Panacea", "cure-all", "catholicon", "nostrum"]}, {"answer": "panache", "hint": "synonyms for panache", "clues": ["flair", "style", "dash", "elan", "panache"]}, {"answer": "panadol", "hint": "synonyms for panadol", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "panama", "hint": "synonyms for panama", "clues": ["Republic of Panama", "sailor", "leghorn", "boater", "skimmer", "straw hat", "Panama hat", "Panama"]}, {"answer": "panama_hat", "hint": "synonyms for panama hat", "clues": ["skimmer", "sailor", "leghorn", "boater", "straw hat", "Panama hat", "Panama"]}, {"answer": "pancake", "hint": "synonyms for pancake", "clues": ["hot cake", "griddlecake", "flapjack", "flannel cake", "battercake", "flapcake", "pancake"]}, {"answer": "pancho_villa", "hint": "synonyms for pancho villa", "clues": ["Pancho Villa", "Francisco Villa", "Doroteo Arango", "Villa"]}, {"answer": "pancreatic_fibrosis", "hint": "synonyms for pancreatic fibrosis", "clues": ["mucoviscidosis", "cystic fibrosis", "CF", "fibrocystic disease of the pancreas", "pancreatic fibrosis"]}, {"answer": "pandar", "hint": "synonyms for pandar", "clues": ["procurer", "pander", "fancy man", "ponce", "pimp", "pandar"]}, {"answer": "pandemonium", "hint": "synonyms for pandemonium", "clues": ["topsy-turvydom", "bedlam", "chaos", "topsy-turvyness", "pandemonium"]}, {"answer": "pander", "hint": "synonyms for pander", "clues": ["procurer", "fancy man", "pandar", "ponce", "pimp", "panderer"]}, {"answer": "panderer", "hint": "synonyms for panderer", "clues": ["procurer", "pander", "pandar", "ponce", "pimp", "fancy man"]}, {"answer": "pane", "hint": "synonyms for pane", "clues": ["panelling", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "window pane", "acid", "window glass", "pane of glass", "back breaker", "pane"]}, {"answer": "panel", "hint": "synonyms for panel", "clues": ["gore", "board", "control board", "venire", "instrument panel", "control panel", "dialog box", "jury", "panel"]}, {"answer": "panjandrum", "hint": "synonyms for panjandrum", "clues": ["high-up", "very important person", "VIP", "dignitary", "high muckamuck", "panjandrum"]}, {"answer": "panorama", "hint": "synonyms for panorama", "clues": ["view", "diorama", "scene", "cyclorama", "vista", "prospect", "aspect", "panorama"]}, {"answer": "pansy", "hint": "synonyms for pansy", "clues": ["poof", "nance", "fairy", "fag", "poove", "milksop", "queer", "pantywaist", "Milquetoast", "faggot", "queen", "pouf", "sissy", "pansy"]}, {"answer": "pantomimer", "hint": "synonyms for pantomimer", "clues": ["mummer", "pantomimist", "mimer", "pantomimer"]}, {"answer": "pantomimist", "hint": "synonyms for pantomimist", "clues": ["mummer", "pantomimer", "mimer", "pantomimist"]}, {"answer": "pants", "hint": "synonyms for pants", "clues": ["pant", "trouser", "drawers", "knickers", "gasp", "bloomers"]}, {"answer": "pantywaist", "hint": "synonyms for pantywaist", "clues": ["sissy", "Milquetoast", "milksop", "pansy", "pantywaist"]}, {"answer": "pap", "hint": "synonyms for pap", "clues": ["pablum", "nipple", "soft diet", "teat", "mammilla", "spoon food", "tit", "pap"]}, {"answer": "papa", "hint": "synonyms for papa", "clues": ["dad", "pop", "pa", "daddy", "pappa"]}, {"answer": "paper", "hint": "synonyms for paper", "clues": ["composition", "theme", "newspaper publisher", "report", "newspaper", "paper"]}, {"answer": "paper-back_book", "hint": "synonyms for paper-back book", "clues": ["soft-cover book", "soft-cover", "softback book", "paperback book", "paperback", "softback"]}, {"answer": "paperback_book", "hint": "synonyms for paperback book", "clues": ["soft-cover book", "soft-cover", "softback book", "paperback", "softback", "paper-back book"]}, {"answer": "papers", "hint": "synonyms for papers", "clues": ["composition", "report", "document", "written document", "newspaper publisher", "theme", "paper", "newspaper"]}, {"answer": "pappa", "hint": "synonyms for pappa", "clues": ["dad", "pop", "pa", "papa", "daddy"]}, {"answer": "para", "hint": "synonyms for para", "clues": ["Belem", "Para River", "paratrooper", "St. Mary of Bethlehem", "Para", "Santa Maria de Belem", "parity", "Feliz Lusitania"]}, {"answer": "paradigm", "hint": "synonyms for paradigm", "clues": ["substitution class", "prototype", "image", "epitome", "paradigm"]}, {"answer": "paradise", "hint": "synonyms for paradise", "clues": ["heaven", "nirvana", "promised land", "Eden", "Shangri-la", "Paradise"]}, {"answer": "paradoxical_sleep", "hint": "synonyms for paradoxical sleep", "clues": ["rapid eye movement sleep", "REM", "REM sleep", "paradoxical sleep"]}, {"answer": "paraffin", "hint": "synonyms for paraffin", "clues": ["methane series", "paraffin wax", "paraffin oil", "paraffin series", "alkane", "alkane series", "paraffin"]}, {"answer": "paraffin_series", "hint": "synonyms for paraffin series", "clues": ["alkane", "alkane series", "paraffin", "methane series", "paraffin series"]}, {"answer": "paragon", "hint": "synonyms for paragon", "clues": ["idol", "perfection", "nonsuch", "saint", "beau ideal", "nonpareil", "apotheosis", "ideal", "paragon"]}, {"answer": "paralysis_agitans", "hint": "synonyms for paralysis agitans", "clues": ["Parkinson's syndrome", "Parkinsonism", "shaking palsy", "Parkinson's disease", "paralysis agitans"]}, {"answer": "paramilitary_force", "hint": "synonyms for paramilitary force", "clues": ["paramilitary organisation", "paramilitary", "paramilitary unit", "paramilitary force"]}, {"answer": "paramilitary_organisation", "hint": "synonyms for paramilitary organisation", "clues": ["paramilitary", "paramilitary unit", "paramilitary force", "paramilitary organization"]}, {"answer": "paramilitary_organization", "hint": "synonyms for paramilitary organization", "clues": ["paramilitary organisation", "paramilitary", "paramilitary unit", "paramilitary force"]}, {"answer": "paramilitary_unit", "hint": "synonyms for paramilitary unit", "clues": ["paramilitary organisation", "paramilitary", "paramilitary force", "paramilitary unit"]}, {"answer": "paramour", "hint": "synonyms for paramour", "clues": ["doxy", "concubine", "courtesan", "fancy man", "paramour"]}, {"answer": "parcel", "hint": "synonyms for parcel", "clues": ["piece of land", "piece of ground", "package", "tract", "packet", "portion", "bundle", "parcel of land", "share", "parcel"]}, {"answer": "parcel_of_land", "hint": "synonyms for parcel of land", "clues": ["piece of land", "piece of ground", "parcel", "tract", "parcel of land"]}, {"answer": "parceling", "hint": "synonyms for parceling", "clues": ["allotment", "assignation", "parcelling", "apportioning", "allocation", "apportionment"]}, {"answer": "parcelling", "hint": "synonyms for parcelling", "clues": ["allotment", "assignation", "apportioning", "allocation", "apportionment", "parceling"]}, {"answer": "parentage", "hint": "synonyms for parentage", "clues": ["parenthood", "blood line", "lineage", "blood", "stemma", "line", "line of descent", "ancestry", "origin", "descent", "pedigree", "stock", "birth", "parentage"]}, {"answer": "parenthesis", "hint": "synonyms for parenthesis", "clues": ["excursus", "digression", "aside", "divagation", "parenthesis"]}, {"answer": "paris", "hint": "synonyms for paris", "clues": ["capital of France", "Paris", "City of Light", "French capital"]}, {"answer": "paris_green", "hint": "synonyms for paris green", "clues": ["yellow green", "pea green", "chartreuse", "Paris green"]}, {"answer": "parity", "hint": "synonyms for parity", "clues": ["para", "space-reflection symmetry", "parity bit", "conservation of parity", "check bit", "mirror symmetry", "parity"]}, {"answer": "park", "hint": "synonyms for park", "clues": ["car park", "green", "Mungo Park", "parkland", "common", "parking area", "parking lot", "ballpark", "Park"]}, {"answer": "parker", "hint": "synonyms for parker", "clues": ["Charlie Parker", "Yardbird Parker", "Bird Parker", "Dorothy Rothschild Parker", "Parker", "Charles Christopher Parker", "Dorothy Parker"]}, {"answer": "parkinson's", "hint": "synonyms for parkinson's", "clues": ["Parkinson's syndrome", "Parkinsonism", "shaking palsy", "paralysis agitans", "Parkinson's disease"]}, {"answer": "parkinson's_disease", "hint": "synonyms for parkinson's disease", "clues": ["Parkinson's syndrome", "Parkinsonism", "shaking palsy", "paralysis agitans", "Parkinson's disease"]}, {"answer": "parkinson's_syndrome", "hint": "synonyms for parkinson's syndrome", "clues": ["Parkinson's syndrome", "Parkinsonism", "shaking palsy", "paralysis agitans", "Parkinson's disease"]}, {"answer": "parkinsonism", "hint": "synonyms for parkinsonism", "clues": ["Parkinson's syndrome", "Parkinsonism", "shaking palsy", "paralysis agitans", "Parkinson's disease"]}, {"answer": "parks", "hint": "synonyms for parks", "clues": ["Rosa Parks", "car park", "green", "Mungo Park", "parkland", "park", "common", "parking area", "parking lot", "ballpark"]}, {"answer": "parlor", "hint": "synonyms for parlor", "clues": ["parlour", "living-room", "sitting room", "front room"]}, {"answer": "parlor_car", "hint": "synonyms for parlor car", "clues": ["drawing-room car", "parlour car", "palace car", "chair car"]}, {"answer": "parlor_grand", "hint": "synonyms for parlor grand", "clues": ["parlor grand piano", "parlour grand", "baby grand piano", "baby grand"]}, {"answer": "parlor_grand_piano", "hint": "synonyms for parlor grand piano", "clues": ["parlor grand", "parlour grand piano", "baby grand piano", "baby grand"]}, {"answer": "parlour", "hint": "synonyms for parlour", "clues": ["living-room", "sitting room", "front room", "parlor"]}, {"answer": "parlour_car", "hint": "synonyms for parlour car", "clues": ["drawing-room car", "parlor car", "palace car", "chair car"]}, {"answer": "parlour_grand", "hint": "synonyms for parlour grand", "clues": ["parlor grand piano", "parlor grand", "baby grand piano", "baby grand"]}, {"answer": "parlour_grand_piano", "hint": "synonyms for parlour grand piano", "clues": ["parlor grand piano", "parlor grand", "baby grand piano", "baby grand"]}, {"answer": "parody", "hint": "synonyms for parody", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "lampoon", "spoof", "parody"]}, {"answer": "parole", "hint": "synonyms for parole", "clues": ["watchword", "password", "countersign", "word of honor", "word", "parole"]}, {"answer": "parousia", "hint": "synonyms for parousia", "clues": ["Parousia", "Second Advent", "Second Coming", "Second Coming of Christ", "Advent"]}, {"answer": "parsimoniousness", "hint": "synonyms for parsimoniousness", "clues": ["parsimony", "penny-pinching", "niggardness", "minginess", "tightness", "tightfistedness", "meanness", "thrift", "closeness", "parsimoniousness"]}, {"answer": "parsimony", "hint": "synonyms for parsimony", "clues": ["penny-pinching", "niggardness", "tightness", "minginess", "parsimoniousness", "tightfistedness", "meanness", "thrift", "closeness", "parsimony"]}, {"answer": "parson", "hint": "synonyms for parson", "clues": ["minister of religion", "curate", "rector", "pastor", "minister", "parson"]}, {"answer": "parsons", "hint": "synonyms for parsons", "clues": ["minister of religion", "curate", "parson", "pastor", "Talcott Parsons", "rector", "minister"]}, {"answer": "parti_pris", "hint": "synonyms for parti pris", "clues": ["prepossession", "preconception", "preconceived notion", "preconceived idea", "parti pris"]}, {"answer": "particle", "hint": "synonyms for particle", "clues": ["subatomic particle", "mote", "corpuscle", "molecule", "speck", "atom", "particle"]}, {"answer": "parting", "hint": "synonyms for parting", "clues": ["leave-taking", "farewell", "part", "leave"]}, {"answer": "partition", "hint": "synonyms for partition", "clues": ["divider", "sectionalization", "segmentation", "partitioning", "division"]}, {"answer": "partitioning", "hint": "synonyms for partitioning", "clues": ["breakdown", "sectionalization", "segmentation", "partition", "division"]}, {"answer": "partiya_karkeran_kurdistan", "hint": "synonyms for partiya karkeran kurdistan", "clues": ["Kurdistan Labor Pary", "Partiya Karkeran Kurdistan", "Kurdistan Workers Party", "PPK"]}, {"answer": "partner", "hint": "synonyms for partner", "clues": ["pardner", "cooperator", "married person", "spouse", "collaborator", "mate", "better half"]}, {"answer": "parts", "hint": "synonyms for parts", "clues": ["role", "percentage", "region", "component", "division", "portion", "voice", "character", "section", "parting", "function", "piece", "theatrical role", "constituent", "contribution", "component part", "office", "persona", "share", "parts"]}, {"answer": "parturiency", "hint": "synonyms for parturiency", "clues": ["labour", "lying-in", "childbed", "travail", "confinement", "parturiency"]}, {"answer": "party_of_democratic_kampuchea", "hint": "synonyms for party of democratic kampuchea", "clues": ["Khmer Rouge", "Communist Party of Kampuchea", "Party of Democratic Kampuchea", "KR"]}, {"answer": "party_of_god", "hint": "synonyms for party of god", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "pas", "hint": "synonyms for pas", "clues": ["dad", "PA system", "papa", "Pennsylvania", "atomic number 91", "pop", "protactinium", "Keystone State", "daddy", "PA", "P.A.", "pascal", "public address system"]}, {"answer": "pashto", "hint": "synonyms for pashto", "clues": ["Afghani", "Paxto", "Pashtu", "Pashto"]}, {"answer": "pashtu", "hint": "synonyms for pashtu", "clues": ["Afghani", "Paxto", "Pashtu", "Pashto"]}, {"answer": "pasquinade", "hint": "synonyms for pasquinade", "clues": ["charade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "parody", "lampoon", "spoof", "pasquinade"]}, {"answer": "passage", "hint": "synonyms for passage", "clues": ["handing over", "musical passage", "enactment", "passing", "transition", "passageway", "transit", "passage"]}, {"answer": "passel", "hint": "synonyms for passel", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "passel"]}, {"answer": "passenger_vehicle", "hint": "synonyms for passenger vehicle", "clues": ["omnibus", "coach", "autobus", "motorcoach", "jitney", "charabanc", "motorbus", "double-decker", "bus", "passenger vehicle"]}, {"answer": "passion", "hint": "synonyms for passion", "clues": ["warmth", "cacoethes", "Passion", "passionateness", "mania", "rage", "heat", "Passion of Christ", "love"]}, {"answer": "password", "hint": "synonyms for password", "clues": ["countersign", "parole", "watchword", "word", "password"]}, {"answer": "pastor", "hint": "synonyms for pastor", "clues": ["minister of religion", "curate", "parson", "rector", "minister", "pastor"]}, {"answer": "pasturage", "hint": "synonyms for pasturage", "clues": ["grass", "eatage", "pasture", "forage"]}, {"answer": "pasture", "hint": "synonyms for pasture", "clues": ["ley", "pasturage", "pastureland", "forage", "grass", "eatage", "grazing land", "lea"]}, {"answer": "pastureland", "hint": "synonyms for pastureland", "clues": ["pasture", "ley", "grazing land", "lea", "pastureland"]}, {"answer": "patch", "hint": "synonyms for patch", "clues": ["maculation", "plot of land", "temporary hookup", "dapple", "spot", "mend", "eyepatch", "spell", "plot of ground", "speckle", "fleck", "darn", "plot", "piece", "while", "bandage", "patch"]}, {"answer": "path", "hint": "synonyms for path", "clues": ["itinerary", "route", "way", "way of life", "course", "track", "path"]}, {"answer": "pathos", "hint": "synonyms for pathos", "clues": ["pity", "commiseration", "poignancy", "ruth", "pathos"]}, {"answer": "pathway", "hint": "synonyms for pathway", "clues": ["tract", "nerve tract", "footpath", "nerve pathway", "pathway"]}, {"answer": "patois", "hint": "synonyms for patois", "clues": ["lingo", "argot", "vernacular", "cant", "slang", "jargon", "patois"]}, {"answer": "patrikin", "hint": "synonyms for patrikin", "clues": ["patrisib", "patrilineal sib", "agnate", "patrikin"]}, {"answer": "patrilineal_kin", "hint": "synonyms for patrilineal kin", "clues": ["patrilineal sib", "patrisib", "patrikin", "agnate"]}, {"answer": "patrilineal_sib", "hint": "synonyms for patrilineal sib", "clues": ["patrisib", "patrikin", "patrilineal kin", "agnate"]}, {"answer": "patrioteer", "hint": "synonyms for patrioteer", "clues": ["hundred-percenter", "chauvinist", "flag-waver", "jingo", "jingoist", "patrioteer"]}, {"answer": "patrisib", "hint": "synonyms for patrisib", "clues": ["patrilineal sib", "patrikin", "agnate", "patrisib"]}, {"answer": "patrol_car", "hint": "synonyms for patrol car", "clues": ["prowl car", "cruiser", "police car", "squad car", "police cruiser", "patrol car"]}, {"answer": "patrol_wagon", "hint": "synonyms for patrol wagon", "clues": ["wagon", "paddy wagon", "police van", "police wagon", "black Maria", "patrol wagon"]}, {"answer": "patronage", "hint": "synonyms for patronage", "clues": ["backup", "disdain", "championship", "condescension", "clientele", "backing", "business", "trade", "patronage"]}, {"answer": "patsy", "hint": "synonyms for patsy", "clues": ["soft touch", "fall guy", "mark", "mug", "gull", "fool", "chump", "sucker", "patsy"]}, {"answer": "pattern", "hint": "synonyms for pattern", "clues": ["blueprint", "form", "convention", "radiation pattern", "normal", "design", "formula", "approach pattern", "figure", "traffic pattern", "rule", "practice", "shape", "radiation diagram", "pattern"]}, {"answer": "paul", "hint": "synonyms for paul", "clues": ["Apostle Paul", "Saul of Tarsus", "Paul", "Alice Paul", "Saint Paul", "Saul", "Paul the Apostle", "Apostle of the Gentiles", "St. Paul"]}, {"answer": "paul_the_apostle", "hint": "synonyms for paul the apostle", "clues": ["Apostle Paul", "Saul of Tarsus", "St. Paul", "Paul", "Saint Paul", "Saul", "Apostle of the Gentiles", "Paul the Apostle"]}, {"answer": "pauperism", "hint": "synonyms for pauperism", "clues": ["need", "penury", "indigence", "pauperization", "pauperism"]}, {"answer": "pauperization", "hint": "synonyms for pauperization", "clues": ["impoverishment", "need", "pauperisation", "pauperism", "penury", "indigence"]}, {"answer": "pause", "hint": "synonyms for pause", "clues": ["break", "interruption", "suspension", "intermission", "pause"]}, {"answer": "paxto", "hint": "synonyms for paxto", "clues": ["Afghani", "Paxto", "Pashtu", "Pashto"]}, {"answer": "pay", "hint": "synonyms for pay", "clues": ["remuneration", "salary", "wage", "earnings", "pay"]}, {"answer": "payload", "hint": "synonyms for payload", "clues": ["load", "lading", "cargo", "warhead", "shipment", "freight", "consignment", "payload"]}, {"answer": "payoff", "hint": "synonyms for payoff", "clues": ["bribe", "final payment", "take", "return", "issue", "reward", "proceeds", "takings", "wages", "yield", "payoff"]}, {"answer": "pb", "hint": "synonyms for pb", "clues": ["Pbit", "PiB", "Pb", "petabyte", "lead", "pebibyte", "atomic number 82", "petabit"]}, {"answer": "pbs", "hint": "synonyms for pbs", "clues": ["phosphate buffer solution", "Pbit", "PiB", "Pb", "petabyte", "lead", "pebibyte", "atomic number 82", "petabit"]}, {"answer": "pcp", "hint": "synonyms for pcp", "clues": ["primary care provider", "phencyclidine hydrochloride", "PCP", "health professional", "angel dust", "phencyclidine", "health care provider", "caregiver"]}, {"answer": "pda", "hint": "synonyms for pda", "clues": ["PDA", "organiser", "personal organiser", "personal digital assistant"]}, {"answer": "pea_green", "hint": "synonyms for pea green", "clues": ["yellowish green", "chartreuse", "Paris green", "pea green"]}, {"answer": "peace", "hint": "synonyms for peace", "clues": ["peacefulness", "heartsease", "repose", "peace treaty", "pacification", "public security", "ataraxis", "serenity", "peace of mind", "peace"]}, {"answer": "peace_of_mind", "hint": "synonyms for peace of mind", "clues": ["peacefulness", "repose", "peace", "ataraxis", "serenity", "heartsease", "peace of mind"]}, {"answer": "peacefulness", "hint": "synonyms for peacefulness", "clues": ["repose", "peace", "peaceableness", "peace of mind", "ataraxis", "serenity", "heartsease", "peacefulness"]}, {"answer": "peacemaker", "hint": "synonyms for peacemaker", "clues": ["pacifier", "Browning machine gun", "make-peace", "Peacemaker", "reconciler", "conciliator"]}, {"answer": "peach", "hint": "synonyms for peach", "clues": ["ravisher", "stunner", "looker", "smasher", "yellowish pink", "knockout", "mantrap", "apricot", "sweetheart", "dish", "salmon pink", "beauty", "lulu", "peach"]}, {"answer": "peach_state", "hint": "synonyms for peach state", "clues": ["Empire State of the South", "Peach State", "GA", "Georgia"]}, {"answer": "peacock_blue", "hint": "synonyms for peacock blue", "clues": ["greenish blue", "aquamarine", "cobalt blue", "turquoise", "aqua", "peacock blue"]}, {"answer": "peak", "hint": "synonyms for peak", "clues": ["height", "crest", "efflorescence", "vertex", "acme", "summit", "extremum", "flush", "superlative", "point", "elevation", "prime", "tip", "flower", "meridian", "bloom", "bill", "heyday", "tiptop", "top", "crown", "visor", "apex", "blossom", "eyeshade", "vizor", "pinnacle", "peak"]}, {"answer": "pean", "hint": "synonyms for pean", "clues": ["paean", "eulogy", "panegyric", "encomium"]}, {"answer": "peanuts", "hint": "synonyms for peanuts", "clues": ["peanut", "earthnut", "goober", "monkey nut", "goober pea", "groundnut"]}, {"answer": "pearl", "hint": "synonyms for pearl", "clues": ["bone", "bead", "off-white", "drop", "ivory", "pearl"]}, {"answer": "pearl_river", "hint": "synonyms for pearl river", "clues": ["Chu Kiang", "Canton River", "Zhu Jiang", "Pearl River"]}, {"answer": "peasant", "hint": "synonyms for peasant", "clues": ["boor", "Goth", "churl", "tike", "provincial", "tyke", "bucolic", "barbarian", "peasant"]}, {"answer": "peck", "hint": "synonyms for peck", "clues": ["great deal", "mint", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "peck"]}, {"answer": "pecker", "hint": "synonyms for pecker", "clues": ["peter", "shaft", "cock", "tool", "prick", "dick", "putz", "pecker"]}, {"answer": "pecs", "hint": "synonyms for pecs", "clues": ["pectoral muscle", "pectoral", "musculus pectoralis", "pecs"]}, {"answer": "pectoral_muscle", "hint": "synonyms for pectoral muscle", "clues": ["pecs", "pectoral", "musculus pectoralis", "pectoral muscle"]}, {"answer": "pectoralis", "hint": "synonyms for pectoralis", "clues": ["pecs", "pectoral muscle", "pectoral", "musculus pectoralis"]}, {"answer": "peculation", "hint": "synonyms for peculation", "clues": ["embezzlement", "defalcation", "misappropriation", "misapplication", "peculation"]}, {"answer": "peculiarity", "hint": "synonyms for peculiarity", "clues": ["rarity", "specialness", "distinctive feature", "curiosity", "oddity", "speciality", "distinguishing characteristic", "oddment", "curio", "distinctiveness", "peculiarity"]}, {"answer": "pecuniary_resource", "hint": "synonyms for pecuniary resource", "clues": ["monetary resource", "funds", "cash in hand", "finances", "pecuniary resource"]}, {"answer": "pedagogy", "hint": "synonyms for pedagogy", "clues": ["teaching method", "teaching", "instruction", "pedagogics", "education", "didactics", "educational activity", "pedagogy"]}, {"answer": "peddler", "hint": "synonyms for peddler", "clues": ["pusher", "hawker", "pitchman", "drug peddler", "packman", "drug dealer", "drug trafficker", "pedlar", "peddler"]}, {"answer": "pedestal", "hint": "synonyms for pedestal", "clues": ["base", "stand", "footstall", "plinth", "pedestal"]}, {"answer": "pediamycin", "hint": "synonyms for pediamycin", "clues": ["Ethril", "Erythrocin", "Pediamycin", "E-Mycin", "Ilosone"]}, {"answer": "pedlar", "hint": "synonyms for pedlar", "clues": ["pitchman", "hawker", "packman", "peddler", "pedlar"]}, {"answer": "pee", "hint": "synonyms for pee", "clues": ["piddle", "weewee", "water", "pissing", "urine", "peeing"]}, {"answer": "peel", "hint": "synonyms for peel", "clues": ["Robert Peel", "Sir Robert Peel", "skin", "Peel"]}, {"answer": "peeler", "hint": "synonyms for peeler", "clues": ["stripper", "ecdysiast", "stripteaser", "striptease artist", "exotic dancer", "peeler"]}, {"answer": "peevishness", "hint": "synonyms for peevishness", "clues": ["petulance", "crossness", "choler", "temper", "fussiness", "surliness", "pettishness", "fretfulness", "biliousness", "snappishness", "irritability", "peevishness"]}, {"answer": "peg", "hint": "synonyms for peg", "clues": ["nog", "leg", "oarlock", "tholepin", "thole", "wooden leg", "pin", "pegleg", "stick", "rowlock", "peg"]}, {"answer": "peignoir", "hint": "synonyms for peignoir", "clues": ["wrapper", "housecoat", "neglige", "peignoir"]}, {"answer": "peiping", "hint": "synonyms for peiping", "clues": ["Beijing", "capital of Red China", "Peiping", "Peking"]}, {"answer": "peirce", "hint": "synonyms for peirce", "clues": ["Charles Peirce", "Peirce", "Charles Sanders Peirce", "Benjamin Peirce"]}, {"answer": "peking", "hint": "synonyms for peking", "clues": ["Beijing", "capital of Red China", "Peiping", "Peking"]}, {"answer": "pelew", "hint": "synonyms for pelew", "clues": ["Palau Islands", "Palau", "Pelew", "Belau"]}, {"answer": "pelf", "hint": "synonyms for pelf", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "pelf"]}, {"answer": "pellagra", "hint": "synonyms for pellagra", "clues": ["Saint Ignatius' itch", "mal de la rosa", "mayidism", "mal rosso", "Alpine scurvy", "pellagra"]}, {"answer": "pellucidity", "hint": "synonyms for pellucidity", "clues": ["limpidity", "clarity", "pellucidness", "lucidity", "clearness", "pellucidity"]}, {"answer": "pelter", "hint": "synonyms for pelter", "clues": ["deluge", "downpour", "torrent", "cloudburst", "soaker", "waterspout", "pelter"]}, {"answer": "pelvis", "hint": "synonyms for pelvis", "clues": ["hip", "pelvic arch", "renal pelvis", "pelvic girdle", "pelvis"]}, {"answer": "penalty_free_throw", "hint": "synonyms for penalty free throw", "clues": ["charity shot", "foul shot", "charity toss", "free throw", "charity throw", "penalty free throw"]}, {"answer": "penance", "hint": "synonyms for penance", "clues": ["repentance", "penitence", "self-abasement", "self-mortification", "penance"]}, {"answer": "penn", "hint": "synonyms for penn", "clues": ["Penn", "William Penn", "Pennsylvania", "University of Pennsylvania"]}, {"answer": "pennant", "hint": "synonyms for pennant", "clues": ["streamer", "pennon", "waft", "crown", "pennant"]}, {"answer": "pennsylvania", "hint": "synonyms for pennsylvania", "clues": ["Penn", "Keystone State", "Pennsylvania", "PA", "University of Pennsylvania"]}, {"answer": "pennsylvanian", "hint": "synonyms for pennsylvanian", "clues": ["Upper Carboniferous period", "Keystone Stater", "Pennsylvanian period", "Upper Carboniferous", "Pennsylvanian"]}, {"answer": "pennsylvanian_period", "hint": "synonyms for pennsylvanian period", "clues": ["Upper Carboniferous", "Pennsylvanian", "Upper Carboniferous period", "Pennsylvanian period"]}, {"answer": "pension_account", "hint": "synonyms for pension account", "clues": ["retirement account", "retirement program", "retirement savings plan", "pension plan", "retirement plan", "pension account"]}, {"answer": "pension_plan", "hint": "synonyms for pension plan", "clues": ["retirement account", "retirement program", "retirement savings plan", "retirement plan", "pension account", "pension plan"]}, {"answer": "penstock", "hint": "synonyms for penstock", "clues": ["sluiceway", "sluice", "water gate", "sluice valve", "floodgate", "sluicegate", "head gate", "penstock"]}, {"answer": "pentad", "hint": "synonyms for pentad", "clues": ["V", "quintuplet", "Phoebe", "five", "5", "quintet", "quint", "Little Phoebe", "cinque", "fin", "fivesome", "pentad"]}, {"answer": "pentecost", "hint": "synonyms for pentecost", "clues": ["Shavuot", "Whitsunday", "Shavous", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "pentothal", "hint": "synonyms for pentothal", "clues": ["thiopental sodium", "thiopentobarbital sodium", "thiopental", "Pentothal"]}, {"answer": "penury", "hint": "synonyms for penury", "clues": ["need", "indigence", "pauperism", "pauperization", "penury"]}, {"answer": "people", "hint": "synonyms for people", "clues": ["the great unwashed", "multitude", "masses", "citizenry", "hoi polloi", "people"]}, {"answer": "people's_liberation_army", "hint": "synonyms for people's liberation army", "clues": ["People's Liberation Army", "People's Republican Army", "Catholic Reaction Force", "Irish National Liberation Army", "INLA"]}, {"answer": "people's_mujahidin_of_iran", "hint": "synonyms for people's mujahidin of iran", "clues": ["MKO", "Mujahidin-e Khalq Organization", "People's Mujahidin of Iran", "MEK"]}, {"answer": "people's_republic_of_china", "hint": "synonyms for people's republic of china", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "people's_republican_army", "hint": "synonyms for people's republican army", "clues": ["People's Liberation Army", "People's Republican Army", "Catholic Reaction Force", "Irish National Liberation Army", "INLA"]}, {"answer": "peoples", "hint": "synonyms for peoples", "clues": ["the great unwashed", "multitude", "people", "masses", "citizenry", "hoi polloi"]}, {"answer": "perambulation", "hint": "synonyms for perambulation", "clues": ["amble", "stroll", "promenade", "saunter", "perambulation"]}, {"answer": "perambulator", "hint": "synonyms for perambulator", "clues": ["pusher", "carriage", "pushchair", "baby carriage", "baby buggy", "pram", "stroller", "go-cart", "perambulator"]}, {"answer": "percentage", "hint": "synonyms for percentage", "clues": ["pct", "percent", "portion", "part", "share", "per centum", "percentage"]}, {"answer": "perceptiveness", "hint": "synonyms for perceptiveness", "clues": ["perceptivity", "appreciation", "discernment", "insight", "taste", "perceptiveness"]}, {"answer": "percy", "hint": "synonyms for percy", "clues": ["Percy", "Sir Henry Percy", "Walker Percy", "Hotspur", "Harry Hotspur"]}, {"answer": "perdition", "hint": "synonyms for perdition", "clues": ["infernal region", "Hell", "Inferno", "nether region", "pit", "perdition"]}, {"answer": "perfection", "hint": "synonyms for perfection", "clues": ["idol", "flawlessness", "ne plus ultra", "beau ideal", "paragon", "perfection"]}, {"answer": "perfective", "hint": "synonyms for perfective", "clues": ["perfective aspect", "perfective tense", "perfect", "perfective"]}, {"answer": "perfidy", "hint": "synonyms for perfidy", "clues": ["treason", "treachery", "perfidiousness", "betrayal", "perfidy"]}, {"answer": "performance", "hint": "synonyms for performance", "clues": ["public presentation", "operation", "functioning", "execution", "carrying into action", "carrying out", "performance"]}, {"answer": "perfume", "hint": "synonyms for perfume", "clues": ["essence", "fragrance", "aroma", "scent", "perfume"]}, {"answer": "peril", "hint": "synonyms for peril", "clues": ["risk", "jeopardy", "danger", "endangerment", "hazard", "riskiness", "peril"]}, {"answer": "period", "hint": "synonyms for period", "clues": ["full point", "menses", "menstruation", "geological period", "flow", "catamenia", "stop", "full stop", "point", "period of time", "time period", "menstruum", "period"]}, {"answer": "periodic_edema", "hint": "synonyms for periodic edema", "clues": ["angioedema", "giant hives", "atrophedema", "Quincke's edema", "periodic edema"]}, {"answer": "perkiness", "hint": "synonyms for perkiness", "clues": ["sauciness", "impertinence", "archness", "pertness", "buoyancy", "perkiness"]}, {"answer": "perm", "hint": "synonyms for perm", "clues": ["permanent wave", "permanent", "Perm", "Molotov"]}, {"answer": "permutation", "hint": "synonyms for permutation", "clues": ["switch", "replacement", "substitution", "transposition", "permutation"]}, {"answer": "perquisite", "hint": "synonyms for perquisite", "clues": ["perk", "prerogative", "privilege", "fringe benefit", "exclusive right", "perquisite"]}, {"answer": "perry", "hint": "synonyms for perry", "clues": ["Perry", "Matthew Calbraith Perry", "Oliver Hazard Perry", "Ralph Barton Perry", "Commodore Perry"]}, {"answer": "persephone", "hint": "synonyms for persephone", "clues": ["Cora", "Persephone", "Despoina", "Kore"]}, {"answer": "perseverance", "hint": "synonyms for perseverance", "clues": ["persistence", "tenaciousness", "pertinacity", "doggedness", "perseveration", "tenacity", "perseverance"]}, {"answer": "persia", "hint": "synonyms for persia", "clues": ["Iran", "Islamic Republic of Iran", "Persian Empire", "Persia"]}, {"answer": "persistence", "hint": "synonyms for persistence", "clues": ["doggedness", "persistency", "perseveration", "tenacity", "tenaciousness", "continuity", "perseverance", "pertinacity"]}, {"answer": "persistency", "hint": "synonyms for persistency", "clues": ["persistence", "tenaciousness", "perseverance", "pertinacity", "doggedness", "tenacity"]}, {"answer": "person", "hint": "synonyms for person", "clues": ["somebody", "mortal", "someone", "soul", "individual", "person"]}, {"answer": "persona", "hint": "synonyms for persona", "clues": ["role", "character", "theatrical role", "image", "part", "persona"]}, {"answer": "personal_credit_line", "hint": "synonyms for personal credit line", "clues": ["credit line", "line of credit", "line", "bank line", "personal line of credit", "personal credit line"]}, {"answer": "personal_digital_assistant", "hint": "synonyms for personal digital assistant", "clues": ["PDA", "organiser", "personal organiser", "personal digital assistant"]}, {"answer": "personal_line_of_credit", "hint": "synonyms for personal line of credit", "clues": ["credit line", "personal credit line", "line of credit", "line", "bank line", "personal line of credit"]}, {"answer": "personal_organiser", "hint": "synonyms for personal organiser", "clues": ["organiser", "PDA", "personal digital assistant", "personal organizer"]}, {"answer": "personal_organizer", "hint": "synonyms for personal organizer", "clues": ["PDA", "organiser", "personal organiser", "personal digital assistant"]}, {"answer": "personation", "hint": "synonyms for personation", "clues": ["enactment", "characterization", "impersonation", "portrayal"]}, {"answer": "personnel", "hint": "synonyms for personnel", "clues": ["staff office", "force", "personnel department", "personnel office", "personnel"]}, {"answer": "perspicacity", "hint": "synonyms for perspicacity", "clues": ["perspicaciousness", "sound judgement", "judgement", "astuteness", "shrewdness", "perspicacity"]}, {"answer": "perspiration", "hint": "synonyms for perspiration", "clues": ["hidrosis", "diaphoresis", "sweat", "sudor", "sudation", "perspiration"]}, {"answer": "persuasion", "hint": "synonyms for persuasion", "clues": ["view", "thought", "suasion", "sentiment", "opinion", "persuasion"]}, {"answer": "pertinacity", "hint": "synonyms for pertinacity", "clues": ["persistence", "tenaciousness", "perseverance", "doggedness", "tenacity", "pertinacity"]}, {"answer": "pertness", "hint": "synonyms for pertness", "clues": ["archness", "perkiness", "sauciness", "impertinence", "pertness"]}, {"answer": "perturbation", "hint": "synonyms for perturbation", "clues": ["disruption", "fluster", "upset", "disturbance", "perturbation"]}, {"answer": "peso", "hint": "synonyms for peso", "clues": ["Uruguayan peso", "Philippine peso", "Guinea-Bissau peso", "Dominican peso", "Colombian peso", "Mexican peso", "Chilean peso", "Cuban peso", "peso"]}, {"answer": "pest", "hint": "synonyms for pest", "clues": ["pestilence", "pesterer", "blighter", "gadfly", "plague", "cuss", "pestis", "pest"]}, {"answer": "pesterer", "hint": "synonyms for pesterer", "clues": ["pest", "blighter", "cuss", "gadfly", "pesterer"]}, {"answer": "pestilence", "hint": "synonyms for pestilence", "clues": ["pest", "canker", "plague", "pestis", "pestilence"]}, {"answer": "peter", "hint": "synonyms for peter", "clues": ["Simon Peter", "Saint Peter the Apostle", "Peter", "shaft", "cock", "pecker", "Saint Peter", "tool", "St. Peter", "prick", "dick", "putz"]}, {"answer": "peter_minnewit", "hint": "synonyms for peter minnewit", "clues": ["Peter Minuit", "Peter Minnewit", "Minuit", "Minnewit"]}, {"answer": "peter_minuit", "hint": "synonyms for peter minuit", "clues": ["Peter Minuit", "Peter Minnewit", "Minuit", "Minnewit"]}, {"answer": "peter_paul_mauser", "hint": "synonyms for peter paul mauser", "clues": ["Peter Paul Mauser", "von Mauser", "P. P. von Mauser", "Mauser"]}, {"answer": "peterburg", "hint": "synonyms for peterburg", "clues": ["Saint Petersburg", "Peterburg", "Leningrad", "Petrograd"]}, {"answer": "petiteness", "hint": "synonyms for petiteness", "clues": ["minuteness", "diminutiveness", "weeness", "tininess", "petiteness"]}, {"answer": "petition", "hint": "synonyms for petition", "clues": ["request", "orison", "postulation", "prayer", "petition"]}, {"answer": "petitioner", "hint": "synonyms for petitioner", "clues": ["suppliant", "suer", "requester", "petitioner"]}, {"answer": "petrograd", "hint": "synonyms for petrograd", "clues": ["Saint Petersburg", "Peterburg", "Leningrad", "Petrograd"]}, {"answer": "petroleum", "hint": "synonyms for petroleum", "clues": ["crude", "rock oil", "fossil oil", "oil", "crude oil", "petroleum"]}, {"answer": "pettifogger", "hint": "synonyms for pettifogger", "clues": ["shyster", "quibbler", "caviller", "pettifogger"]}, {"answer": "pettifoggery", "hint": "synonyms for pettifoggery", "clues": ["spat", "bickering", "squabble", "tiff", "fuss", "pettifoggery"]}, {"answer": "pettiness", "hint": "synonyms for pettiness", "clues": ["smallness", "slightness", "triviality", "littleness", "puniness", "pettiness"]}, {"answer": "petting", "hint": "synonyms for petting", "clues": ["smooching", "cuddling", "necking", "hugging", "caressing", "fondling", "kissing", "snuggling", "petting"]}, {"answer": "pettishness", "hint": "synonyms for pettishness", "clues": ["temper", "surliness", "peevishness", "biliousness", "snappishness", "irritability", "pettishness"]}, {"answer": "petulance", "hint": "synonyms for petulance", "clues": ["fussiness", "peevishness", "crossness", "choler", "fretfulness", "irritability", "petulance"]}, {"answer": "phantasm", "hint": "synonyms for phantasm", "clues": ["phantom", "phantasma", "shadow", "fantasm", "spectre", "apparition"]}, {"answer": "phantasma", "hint": "synonyms for phantasma", "clues": ["phantom", "shadow", "fantasm", "spectre", "apparition", "phantasm"]}, {"answer": "pharmacist", "hint": "synonyms for pharmacist", "clues": ["pill roller", "chemist", "apothecary", "druggist", "pill pusher", "pharmacist"]}, {"answer": "pharmacy", "hint": "synonyms for pharmacy", "clues": ["drugstore", "apothecary's shop", "chemist's shop", "chemist's", "pharmaceutics", "pharmacy"]}, {"answer": "pharyngeal_tonsil", "hint": "synonyms for pharyngeal tonsil", "clues": ["Luschka's tonsil", "adenoid", "tonsilla adenoidea", "tonsilla pharyngealis", "third tonsil", "pharyngeal tonsil"]}, {"answer": "phenaphen", "hint": "synonyms for phenaphen", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "phenobarbital", "hint": "synonyms for phenobarbital", "clues": ["purple heart", "sodium thiopental", "phenobarbitone", "Luminal", "phenobarbital"]}, {"answer": "phenobarbitone", "hint": "synonyms for phenobarbitone", "clues": ["phenobarbital", "sodium thiopental", "Luminal", "purple heart", "phenobarbitone"]}, {"answer": "phenol", "hint": "synonyms for phenol", "clues": ["hydroxybenzene", "oxybenzene", "carbolic acid", "phenylic acid", "phenol"]}, {"answer": "phenylic_acid", "hint": "synonyms for phenylic acid", "clues": ["hydroxybenzene", "oxybenzene", "carbolic acid", "phenol", "phenylic acid"]}, {"answer": "phial", "hint": "synonyms for phial", "clues": ["vial", "ampul", "ampoule", "phial"]}, {"answer": "philia", "hint": "synonyms for philia", "clues": ["tenderness", "warmheartedness", "affection", "heart", "affectionateness", "fondness", "warmness", "philia"]}, {"answer": "philip_ii", "hint": "synonyms for philip ii", "clues": ["Philip II of Macedon", "Philip II of Spain", "Philip II", "Philip Augustus"]}, {"answer": "philippines", "hint": "synonyms for philippines", "clues": ["Republic of the Philippines", "Filipino", "Philippine Islands", "Philippines"]}, {"answer": "philosophical_system", "hint": "synonyms for philosophical system", "clues": ["doctrine", "ism", "philosophy", "school of thought", "philosophical system"]}, {"answer": "philosophy", "hint": "synonyms for philosophy", "clues": ["philosophical system", "doctrine", "ism", "school of thought", "philosophy"]}, {"answer": "phiz", "hint": "synonyms for phiz", "clues": ["smiler", "physiognomy", "mug", "Hablot Knight Browne", "Phiz", "Browne", "kisser", "visage", "countenance"]}, {"answer": "phlegm", "hint": "synonyms for phlegm", "clues": ["emotionlessness", "lethargy", "indifference", "impassivity", "stolidity", "sluggishness", "languor", "unemotionality", "sputum", "impassiveness", "flatness", "phlegm"]}, {"answer": "phoebe", "hint": "synonyms for phoebe", "clues": ["V", "quintuplet", "Phoebe", "five", "5", "quintet", "quint", "Little Phoebe", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "phonation", "hint": "synonyms for phonation", "clues": ["vocalisation", "voice", "vocalism", "vox", "phonation"]}, {"answer": "phone", "hint": "synonyms for phone", "clues": ["telephone", "earphone", "headphone", "earpiece", "speech sound", "telephone set", "sound", "phone"]}, {"answer": "phone_booth", "hint": "synonyms for phone booth", "clues": ["telephone box", "call box", "telephone kiosk", "phone booth"]}, {"answer": "phone_line", "hint": "synonyms for phone line", "clues": ["telephone circuit", "line", "subscriber line", "telephone line", "phone line"]}, {"answer": "phonograph_record", "hint": "synonyms for phonograph record", "clues": ["platter", "record", "disk", "disc", "phonograph recording"]}, {"answer": "phonograph_recording", "hint": "synonyms for phonograph recording", "clues": ["platter", "record", "disk", "disc", "phonograph record"]}, {"answer": "phosphorus", "hint": "synonyms for phosphorus", "clues": ["P", "Phosphorus", "atomic number 15", "daystar", "morning star", "Lucifer"]}, {"answer": "photo", "hint": "synonyms for photo", "clues": ["photograph", "picture", "exposure", "pic", "photo"]}, {"answer": "photocell", "hint": "synonyms for photocell", "clues": ["magic eye", "photoelectric cell", "electric eye", "photoconductive cell", "photocell"]}, {"answer": "photoconductive_cell", "hint": "synonyms for photoconductive cell", "clues": ["magic eye", "photocell", "photoelectric cell", "electric eye", "photoconductive cell"]}, {"answer": "photoelectric_cell", "hint": "synonyms for photoelectric cell", "clues": ["magic eye", "photocell", "electric eye", "photoconductive cell", "photoelectric cell"]}, {"answer": "photoflash", "hint": "synonyms for photoflash", "clues": ["flashgun", "flash", "flashbulb", "flash lamp", "photoflash"]}, {"answer": "photograph", "hint": "synonyms for photograph", "clues": ["picture", "exposure", "photo", "pic", "photograph"]}, {"answer": "phrasal_idiom", "hint": "synonyms for phrasal idiom", "clues": ["phrase", "idiomatic expression", "set phrase", "idiom", "phrasal idiom"]}, {"answer": "phrase", "hint": "synonyms for phrase", "clues": ["phrasal idiom", "musical phrase", "set phrase", "idiomatic expression", "idiom", "phrase"]}, {"answer": "phraseology", "hint": "synonyms for phraseology", "clues": ["diction", "verbiage", "phrasing", "wording", "choice of words", "phraseology"]}, {"answer": "phrasing", "hint": "synonyms for phrasing", "clues": ["diction", "phraseology", "verbiage", "wording", "choice of words", "phrasing"]}, {"answer": "phratry", "hint": "synonyms for phratry", "clues": ["folk", "family", "sept", "kinsfolk", "family line", "phratry"]}, {"answer": "phthisis", "hint": "synonyms for phthisis", "clues": ["consumption", "pulmonary tuberculosis", "white plague", "wasting disease", "phthisis"]}, {"answer": "physical_body", "hint": "synonyms for physical body", "clues": ["human body", "form", "soma", "bod", "physique", "flesh", "figure", "shape", "anatomy", "frame", "chassis", "material body", "build", "physical body"]}, {"answer": "physical_composition", "hint": "synonyms for physical composition", "clues": ["composition", "makeup", "constitution", "physical composition"]}, {"answer": "physical_exercise", "hint": "synonyms for physical exercise", "clues": ["physical exertion", "exercise", "workout", "exercising", "physical exercise"]}, {"answer": "physical_exertion", "hint": "synonyms for physical exertion", "clues": ["physical exercise", "exercise", "workout", "exercising", "physical exertion"]}, {"answer": "physician", "hint": "synonyms for physician", "clues": ["doc", "Dr.", "doctor", "medico", "MD", "physician"]}, {"answer": "physics", "hint": "synonyms for physics", "clues": ["cathartic", "purgative", "natural philosophy", "physical science", "physic", "aperient"]}, {"answer": "physiognomy", "hint": "synonyms for physiognomy", "clues": ["smiler", "phiz", "kisser", "visage", "mug", "countenance", "physiognomy"]}, {"answer": "physiological_reaction", "hint": "synonyms for physiological reaction", "clues": ["unconditioned reflex", "inborn reflex", "reflex response", "instinctive reflex", "innate reflex", "reflex", "reflex action", "physiological reaction"]}, {"answer": "physique", "hint": "synonyms for physique", "clues": ["form", "flesh", "anatomy", "habitus", "physical body", "human body", "body-build", "soma", "bod", "chassis", "figure", "shape", "frame", "material body", "build", "physique"]}, {"answer": "pi", "hint": "synonyms for pi", "clues": ["operative", "shamus", "principal investigator", "PI", "protease inhibitor", "sherlock", "private detective", "private eye", "private investigator"]}, {"answer": "piaf", "hint": "synonyms for piaf", "clues": ["Little Sparrow", "Piaf", "Edith Piaf", "Edith Giovanna Gassion"]}, {"answer": "pib", "hint": "synonyms for pib", "clues": ["petabyte", "PB", "PiB", "pebibyte"]}, {"answer": "pic", "hint": "synonyms for pic", "clues": ["movie", "picture show", "exposure", "motion-picture show", "film", "moving picture", "photograph", "flick", "picture", "photo", "pic"]}, {"answer": "pick", "hint": "synonyms for pick", "clues": ["pickaxe", "plectrum", "choice", "option", "selection", "woof", "filling", "picking", "plectron", "weft", "cream"]}, {"answer": "picket", "hint": "synonyms for picket", "clues": ["sentry", "pale", "lookout man", "sentinel", "lookout", "piquet", "scout", "spotter", "watch", "picket"]}, {"answer": "pickle", "hint": "synonyms for pickle", "clues": ["muddle", "jam", "fix", "hole", "kettle of fish", "mess", "pickle"]}, {"answer": "pickup", "hint": "synonyms for pickup", "clues": ["cartridge", "getaway", "pickup truck", "tone arm", "pickup arm", "pick-me-up", "pickup"]}, {"answer": "picnic", "hint": "synonyms for picnic", "clues": ["walkover", "snap", "cinch", "pushover", "child's play", "outing", "piece of cake", "field day", "duck soup", "breeze", "picnic"]}, {"answer": "picture", "hint": "synonyms for picture", "clues": ["characterization", "depiction", "picture show", "scene", "video", "painting", "pic", "motion picture", "flick", "photograph", "pictorial matter", "icon", "word picture", "image", "photo", "mental picture", "movie", "exposure", "delineation", "motion-picture show", "impression", "film", "ikon", "word-painting", "picture"]}, {"answer": "picture_palace", "hint": "synonyms for picture palace", "clues": ["movie house", "cinema", "movie theatre", "picture palace"]}, {"answer": "picture_show", "hint": "synonyms for picture show", "clues": ["movie", "motion-picture show", "film", "moving picture", "pic", "flick", "picture", "picture show"]}, {"answer": "piddle", "hint": "synonyms for piddle", "clues": ["weewee", "water", "urine", "pee", "piss", "piddle"]}, {"answer": "piece", "hint": "synonyms for piece", "clues": ["composition", "small-arm", "musical composition", "firearm", "slice", "art object", "bit", "opus", "part", "objet d'art", "piece of music", "patch", "spell", "while", "piece"]}, {"answer": "piece_of_ass", "hint": "synonyms for piece of ass", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "shag", "roll in the hay", "ass", "nookie", "piece of ass"]}, {"answer": "piece_of_cake", "hint": "synonyms for piece of cake", "clues": ["snap", "cinch", "pushover", "child's play", "picnic", "walkover", "duck soup", "breeze", "piece of cake"]}, {"answer": "piece_of_ground", "hint": "synonyms for piece of ground", "clues": ["piece of land", "parcel", "tract", "parcel of land", "piece of ground"]}, {"answer": "piece_of_land", "hint": "synonyms for piece of land", "clues": ["tract", "piece of ground", "parcel", "parcel of land", "piece of land"]}, {"answer": "piece_of_music", "hint": "synonyms for piece of music", "clues": ["composition", "opus", "musical composition", "piece", "piece of music"]}, {"answer": "piece_of_tail", "hint": "synonyms for piece of tail", "clues": ["screw", "shtup", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie", "piece of tail"]}, {"answer": "pierre_de_terrail", "hint": "synonyms for pierre de terrail", "clues": ["Pierre Terrail", "Bayard", "Chevalier de Bayard", "Seigneur de Bayard"]}, {"answer": "pierre_terrail", "hint": "synonyms for pierre terrail", "clues": ["Pierre Terrail", "Bayard", "Chevalier de Bayard", "Seigneur de Bayard"]}, {"answer": "pieter_breughel", "hint": "synonyms for pieter breughel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "pieter_bruegel", "hint": "synonyms for pieter bruegel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "pieter_brueghel", "hint": "synonyms for pieter brueghel", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "pieter_brueghel_the_elder", "hint": "synonyms for pieter brueghel the elder", "clues": ["Bruegel", "Pieter Bruegel", "Breughel the Elder", "Pieter Brueghel the Elder", "Breughel"]}, {"answer": "pig", "hint": "synonyms for pig", "clues": ["bull", "fuzz", "copper", "pig bed", "sloven", "hog", "cop", "slob", "slovenly person", "pig"]}, {"answer": "pigheadedness", "hint": "synonyms for pigheadedness", "clues": ["self-will", "bullheadedness", "obstinacy", "obstinance", "stubbornness", "pigheadedness"]}, {"answer": "pigswill", "hint": "synonyms for pigswill", "clues": ["slop", "pigwash", "swill", "pigswill"]}, {"answer": "pigwash", "hint": "synonyms for pigwash", "clues": ["pigswill", "swill", "slops", "pigwash"]}, {"answer": "pike", "hint": "synonyms for pike", "clues": ["motorway", "thruway", "freeway", "superhighway", "throughway", "state highway", "expressway", "pike"]}, {"answer": "pile", "hint": "synonyms for pile", "clues": ["mint", "spile", "peck", "quite a little", "deal", "mountain", "voltaic pile", "stack", "lot", "raft", "cumulation", "batch", "mess", "plenty", "sight", "muckle", "agglomerate", "wad", "mass", "mickle", "cumulus", "piling", "big money", "great deal", "down", "mound", "hatful", "galvanic pile", "chain reactor", "big bucks", "pot", "good deal", "passel", "bundle", "atomic reactor", "megabucks", "tidy sum", "spate", "atomic pile", "nap", "slew", "stilt", "heap", "flock"]}, {"answer": "piles", "hint": "synonyms for piles", "clues": ["mint", "spile", "peck", "quite a little", "tons", "deal", "mountain", "gobs", "rafts", "voltaic pile", "stack", "lot", "slews", "heaps", "cumulation", "batch", "mess", "wads", "plenty", "sight", "muckle", "agglomerate", "mickle", "mass", "cumulus", "loads", "piling", "big money", "great deal", "down", "hemorrhoid", "mound", "hatful", "galvanic pile", "chain reactor", "big bucks", "pot", "lashings", "good deal", "oodles", "passel", "bundle", "atomic reactor", "megabucks", "tidy sum", "spate", "dozens", "scads", "atomic pile", "nap", "stilt", "scores", "flock", "piles"]}, {"answer": "pill", "hint": "synonyms for pill", "clues": ["tablet", "contraceptive pill", "lozenge", "anovulant", "anovulatory drug", "oral contraceptive", "tab", "birth control pill", "pill"]}, {"answer": "pill_pusher", "hint": "synonyms for pill pusher", "clues": ["pharmacist", "pill roller", "chemist", "apothecary", "druggist", "pill pusher"]}, {"answer": "pill_roller", "hint": "synonyms for pill roller", "clues": ["pharmacist", "chemist", "apothecary", "druggist", "pill pusher", "pill roller"]}, {"answer": "pillage", "hint": "synonyms for pillage", "clues": ["swag", "plunder", "loot", "prize", "dirty money", "pillaging", "booty", "pillage"]}, {"answer": "pillager", "hint": "synonyms for pillager", "clues": ["plunderer", "freebooter", "despoiler", "raider", "looter", "pillager"]}, {"answer": "pillock", "hint": "synonyms for pillock", "clues": ["pudding head", "poor fish", "dullard", "stupid person", "pudden-head", "dolt", "stupe", "stupid", "pillock"]}, {"answer": "pilomotor_reflex", "hint": "synonyms for pilomotor reflex", "clues": ["goose skin", "goosebump", "goose pimple", "gooseflesh", "horripilation", "pilomotor reflex"]}, {"answer": "pilot", "hint": "synonyms for pilot", "clues": ["pilot program", "original", "fender", "pilot film", "archetype", "cowcatcher", "buffer", "pilot light", "airplane pilot", "pilot burner", "pilot"]}, {"answer": "pilot_biscuit", "hint": "synonyms for pilot biscuit", "clues": ["hardtack", "sea biscuit", "pilot bread", "ship biscuit", "pilot biscuit"]}, {"answer": "pilot_bread", "hint": "synonyms for pilot bread", "clues": ["hardtack", "sea biscuit", "pilot biscuit", "ship biscuit", "pilot bread"]}, {"answer": "pilot_light", "hint": "synonyms for pilot light", "clues": ["pilot", "pilot lamp", "pilot burner", "indicator lamp", "pilot light"]}, {"answer": "pimp", "hint": "synonyms for pimp", "clues": ["procurer", "pander", "fancy man", "ponce", "pandar", "pimp"]}, {"answer": "pin", "hint": "synonyms for pin", "clues": ["PIN number", "pivot", "flag", "oarlock", "tholepin", "personal identification number", "thole", "bowling pin", "PIN", "stick", "rowlock", "peg", "fall"]}, {"answer": "pinch", "hint": "synonyms for pinch", "clues": ["mite", "apprehension", "hint", "nip", "emergency", "speck", "exigency", "collar", "touch", "tweak", "taking into custody", "catch", "tinge", "jot", "arrest", "soupcon", "pinch"]}, {"answer": "pinhead", "hint": "synonyms for pinhead", "clues": ["dope", "boob", "dumbbell", "dummy", "pinhead"]}, {"answer": "pinnacle", "hint": "synonyms for pinnacle", "clues": ["height", "peak", "meridian", "acme", "summit", "tiptop", "top", "superlative", "elevation", "pinnacle"]}, {"answer": "pipe", "hint": "synonyms for pipe", "clues": ["tube", "piping", "tobacco pipe", "pipage", "organ pipe", "pipework", "pipe"]}, {"answer": "piquance", "hint": "synonyms for piquance", "clues": ["piquantness", "tanginess", "nip", "zest", "piquancy", "tang"]}, {"answer": "piquancy", "hint": "synonyms for piquancy", "clues": ["piquantness", "tanginess", "nip", "zest", "piquance", "tang"]}, {"answer": "piquantness", "hint": "synonyms for piquantness", "clues": ["tanginess", "nip", "zest", "piquance", "tang", "piquantness"]}, {"answer": "piracy", "hint": "synonyms for piracy", "clues": ["plagiarism", "plagiarisation", "buccaneering", "piracy"]}, {"answer": "pirate", "hint": "synonyms for pirate", "clues": ["literary pirate", "plagiarizer", "sea robber", "sea rover", "buccaneer", "plagiarist", "pirate ship", "pirate"]}, {"answer": "piss", "hint": "synonyms for piss", "clues": ["piddle", "weewee", "water", "pissing", "urine", "pee"]}, {"answer": "pit", "hint": "synonyms for pit", "clues": ["perdition", "quarry", "fossa", "cavity", "Hell", "infernal region", "orchestra pit", "pitfall", "colliery", "stone pit", "Inferno", "nether region", "pit"]}, {"answer": "pitch", "hint": "synonyms for pitch", "clues": ["pitch shot", "slant", "lurch", "auction pitch", "sales pitch", "sales talk", "delivery", "tar", "rake", "pitching"]}, {"answer": "pitch_black", "hint": "synonyms for pitch black", "clues": ["jet black", "soot black", "ebony", "coal black", "sable", "pitch black"]}, {"answer": "pitch_blackness", "hint": "synonyms for pitch blackness", "clues": ["black", "lightlessness", "total darkness", "blackness", "pitch blackness"]}, {"answer": "pitcher", "hint": "synonyms for pitcher", "clues": ["hurler", "ewer", "mound", "pitcherful", "twirler", "pitcher"]}, {"answer": "pitchman", "hint": "synonyms for pitchman", "clues": ["hawker", "packman", "peddler", "pedlar", "pitchman"]}, {"answer": "pith", "hint": "synonyms for pith", "clues": ["marrow", "core", "inwardness", "gist", "essence", "heart and soul", "sum", "centre", "meat", "nitty-gritty", "center", "kernel", "nub", "substance", "heart", "pith"]}, {"answer": "pith_hat", "hint": "synonyms for pith hat", "clues": ["topee", "pith helmet", "sun helmet", "topi", "pith hat"]}, {"answer": "pith_helmet", "hint": "synonyms for pith helmet", "clues": ["topee", "pith hat", "sun helmet", "topi", "pith helmet"]}, {"answer": "pitman", "hint": "synonyms for pitman", "clues": ["coal miner", "Sir Isaac Pitman", "Pitman", "collier"]}, {"answer": "pitot_tube", "hint": "synonyms for pitot tube", "clues": ["Pitot-static tube", "Pitot tube", "Pitot", "Pitot head"]}, {"answer": "pitressin", "hint": "synonyms for pitressin", "clues": ["antidiuretic hormone", "vasopressin", "ADH", "Pitressin"]}, {"answer": "pitt", "hint": "synonyms for pitt", "clues": ["William Pitt", "Pitt the Elder", "Pitt", "Second Earl of Chatham", "Pitt the Younger", "George Dibdin Pitt", "George Pitt", "First Earl of Chatham"]}, {"answer": "pitt_the_elder", "hint": "synonyms for pitt the elder", "clues": ["William Pitt", "Pitt", "Pitt the Elder", "First Earl of Chatham"]}, {"answer": "pitt_the_younger", "hint": "synonyms for pitt the younger", "clues": ["Second Earl of Chatham", "William Pitt", "Pitt", "Pitt the Younger"]}, {"answer": "pity", "hint": "synonyms for pity", "clues": ["pathos", "shame", "commiseration", "compassion", "ruth", "pity"]}, {"answer": "pixie", "hint": "synonyms for pixie", "clues": ["hob", "pixy", "imp", "elf", "gremlin", "brownie", "pixie"]}, {"answer": "pixy", "hint": "synonyms for pixy", "clues": ["hob", "imp", "elf", "pixie", "gremlin", "brownie", "pixy"]}, {"answer": "pizzaz", "hint": "synonyms for pizzaz", "clues": ["zing", "oomph", "dynamism", "pizzazz"]}, {"answer": "pizzazz", "hint": "synonyms for pizzazz", "clues": ["zing", "pizzaz", "oomph", "dynamism"]}, {"answer": "placard", "hint": "synonyms for placard", "clues": ["posting", "notice", "poster", "bill", "card", "placard"]}, {"answer": "place", "hint": "synonyms for place", "clues": ["seat", "piazza", "stead", "topographic point", "shoes", "space", "billet", "berth", "station", "spot", "property", "blank space", "plaza", "lieu", "home", "office", "post", "position", "place"]}, {"answer": "place_of_origin", "hint": "synonyms for place of origin", "clues": ["provenance", "birthplace", "cradle", "place of origin"]}, {"answer": "placement", "hint": "synonyms for placement", "clues": ["positioning", "emplacement", "locating", "arrangement"]}, {"answer": "placidity", "hint": "synonyms for placidity", "clues": ["repose", "placidness", "tranquility", "quiet", "serenity", "placidity"]}, {"answer": "plagiariser", "hint": "synonyms for plagiariser", "clues": ["pirate", "plagiarist", "literary pirate", "plagiarizer"]}, {"answer": "plagiarizer", "hint": "synonyms for plagiarizer", "clues": ["pirate", "plagiarist", "literary pirate", "plagiarizer"]}, {"answer": "plague", "hint": "synonyms for plague", "clues": ["pestilence", "pest", "infestation", "pestis", "plague"]}, {"answer": "plait", "hint": "synonyms for plait", "clues": ["pleat", "braid", "tress", "twist", "plait"]}, {"answer": "plan", "hint": "synonyms for plan", "clues": ["design", "programme", "architectural plan", "plan"]}, {"answer": "planetary_house", "hint": "synonyms for planetary house", "clues": ["sign of the zodiac", "star sign", "mansion", "sign", "house", "planetary house"]}, {"answer": "plangency", "hint": "synonyms for plangency", "clues": ["sonorousness", "vibrancy", "ringing", "sonority", "resonance", "reverberance", "plangency"]}, {"answer": "plant", "hint": "synonyms for plant", "clues": ["works", "plant life", "industrial plant", "flora", "plant"]}, {"answer": "plantation", "hint": "synonyms for plantation", "clues": ["grove", "orchard", "woodlet", "Plantation"]}, {"answer": "plaster", "hint": "synonyms for plaster", "clues": ["adhesive plaster", "plasterwork", "sticking plaster", "cataplasm", "plaster of Paris", "poultice", "plaster"]}, {"answer": "plate", "hint": "synonyms for plate", "clues": ["crustal plate", "denture", "plateful", "home plate", "scale", "home base", "home", "dental plate", "shell", "photographic plate", "collection plate", "plate"]}, {"answer": "platform", "hint": "synonyms for platform", "clues": ["program", "political platform", "chopine", "political program", "weapons platform", "platform"]}, {"answer": "platitude", "hint": "synonyms for platitude", "clues": ["commonplace", "cliche", "banality", "bromide", "platitude"]}, {"answer": "platonic_body", "hint": "synonyms for platonic body", "clues": ["Platonic solid", "regular convex solid", "Platonic body", "ideal solid", "regular convex polyhedron", "regular polyhedron"]}, {"answer": "platonic_solid", "hint": "synonyms for platonic solid", "clues": ["Platonic solid", "regular convex solid", "Platonic body", "ideal solid", "regular convex polyhedron", "regular polyhedron"]}, {"answer": "platter", "hint": "synonyms for platter", "clues": ["record", "disk", "disc", "phonograph recording", "platter"]}, {"answer": "plaudit", "hint": "synonyms for plaudit", "clues": ["acclaim", "plaudits", "acclamation", "eclat"]}, {"answer": "plaudits", "hint": "synonyms for plaudits", "clues": ["acclamation", "eclat", "acclaim", "plaudit"]}, {"answer": "play", "hint": "synonyms for play", "clues": ["sport", "maneuver", "gambling", "shimmer", "playing period", "frolic", "swordplay", "gambol", "bid", "manoeuvre", "looseness", "drama", "child's play", "free rein", "period of play", "dramatic play", "turn", "fun", "romp", "caper", "play"]}, {"answer": "player", "hint": "synonyms for player", "clues": ["participant", "instrumentalist", "histrion", "role player", "thespian", "musician", "actor", "player"]}, {"answer": "plaza", "hint": "synonyms for plaza", "clues": ["center", "shopping center", "mall", "place", "piazza", "shopping mall", "plaza"]}, {"answer": "pleader", "hint": "synonyms for pleader", "clues": ["counselor-at-law", "counsellor", "advocate", "counsel", "pleader"]}, {"answer": "pleasure_trip", "hint": "synonyms for pleasure trip", "clues": ["excursion", "sashay", "jaunt", "expedition", "junket", "outing", "pleasure trip"]}, {"answer": "plenitude", "hint": "synonyms for plenitude", "clues": ["plentifulness", "plenteousness", "plenty", "plentitude"]}, {"answer": "plenteousness", "hint": "synonyms for plenteousness", "clues": ["plentifulness", "plenitude", "plenty", "plenteousness"]}, {"answer": "plentifulness", "hint": "synonyms for plentifulness", "clues": ["plenteousness", "plenitude", "plenty", "plentifulness"]}, {"answer": "plentitude", "hint": "synonyms for plentitude", "clues": ["plentifulness", "plenteousness", "plenitude", "plenty"]}, {"answer": "pliability", "hint": "synonyms for pliability", "clues": ["pliancy", "bendability", "pliantness", "suppleness", "pliability"]}, {"answer": "plication", "hint": "synonyms for plication", "clues": ["bend", "pleating", "crease", "crimp", "fold", "flexure", "plication"]}, {"answer": "plimsoll", "hint": "synonyms for plimsoll", "clues": ["Plimsoll", "load line", "Plimsoll mark", "Plimsoll line"]}, {"answer": "plimsoll_line", "hint": "synonyms for plimsoll line", "clues": ["Plimsoll", "load line", "Plimsoll mark", "Plimsoll line"]}, {"answer": "plimsoll_mark", "hint": "synonyms for plimsoll mark", "clues": ["Plimsoll", "load line", "Plimsoll mark", "Plimsoll line"]}, {"answer": "pliny", "hint": "synonyms for pliny", "clues": ["Pliny the Elder", "Gaius Plinius Secundus", "Gaius Plinius Caecilius Secundus", "Pliny the Younger", "Pliny"]}, {"answer": "plodder", "hint": "synonyms for plodder", "clues": ["slowcoach", "slowpoke", "trudger", "slogger", "stick-in-the-mud", "plodder"]}, {"answer": "plosive", "hint": "synonyms for plosive", "clues": ["plosive speech sound", "occlusive", "plosive consonant", "stop consonant", "stop", "plosive"]}, {"answer": "plosive_consonant", "hint": "synonyms for plosive consonant", "clues": ["plosive speech sound", "plosive", "occlusive", "stop consonant", "stop", "plosive consonant"]}, {"answer": "plosive_speech_sound", "hint": "synonyms for plosive speech sound", "clues": ["plosive", "occlusive", "plosive consonant", "stop consonant", "stop", "plosive speech sound"]}, {"answer": "plot", "hint": "synonyms for plot", "clues": ["patch", "plot of ground", "plot of land", "secret plan", "game", "plot"]}, {"answer": "plotter", "hint": "synonyms for plotter", "clues": ["machinator", "mapper", "coconspirator", "schemer", "plotter"]}, {"answer": "plough", "hint": "synonyms for plough", "clues": ["Dipper", "plow", "Plough", "Wagon", "Big Dipper", "Wain", "Charles's Wain"]}, {"answer": "ploughland", "hint": "synonyms for ploughland", "clues": ["tillage", "cultivated land", "tilth", "tilled land", "plowland", "farmland", "ploughland"]}, {"answer": "plowland", "hint": "synonyms for plowland", "clues": ["tillage", "cultivated land", "tilth", "tilled land", "ploughland", "farmland", "plowland"]}, {"answer": "plug", "hint": "synonyms for plug", "clues": ["ballyhoo", "hype", "male plug", "sparking plug", "cud", "quid", "fireplug", "fire hydrant", "stopper", "wad", "chew", "chaw", "hoopla", "plug"]}, {"answer": "plug-in", "hint": "synonyms for plug-in", "clues": ["circuit board", "add-in", "card", "board", "plug-in"]}, {"answer": "plug_hat", "hint": "synonyms for plug hat", "clues": ["derby hat", "derby", "bowler hat", "bowler", "plug hat"]}, {"answer": "plunder", "hint": "synonyms for plunder", "clues": ["swag", "pillage", "loot", "prize", "dirty money", "booty", "plunder"]}, {"answer": "plunderer", "hint": "synonyms for plunderer", "clues": ["pillager", "freebooter", "raider", "despoiler", "looter", "plunderer"]}, {"answer": "plunger", "hint": "synonyms for plunger", "clues": ["plumber's helper", "speculator", "diver", "piston", "plunger"]}, {"answer": "plurality", "hint": "synonyms for plurality", "clues": ["battalion", "relative majority", "multitude", "pack", "large number", "plurality"]}, {"answer": "pluto", "hint": "synonyms for pluto", "clues": ["Pluto", "Aides", "Hades", "Aidoneus"]}, {"answer": "plutonium_bomb", "hint": "synonyms for plutonium bomb", "clues": ["fission bomb", "atom bomb", "A-bomb", "plutonium bomb"]}, {"answer": "pm", "hint": "synonyms for pm", "clues": ["necropsy", "post-mortem", "PM", "post-mortem examination", "atomic number 61", "Prime Minister", "phase modulation", "premier", "promethium", "autopsy"]}, {"answer": "pms", "hint": "synonyms for pms", "clues": ["PMS", "necropsy", "post-mortem", "post-mortem examination", "atomic number 61", "Prime Minister", "phase modulation", "premenstrual syndrome", "premier", "promethium", "autopsy"]}, {"answer": "pneumogastric_nerve", "hint": "synonyms for pneumogastric nerve", "clues": ["vagus", "vagus nerve", "nervus vagus", "pneumogastric", "wandering nerve", "tenth cranial nerve", "pneumogastric nerve"]}, {"answer": "po", "hint": "synonyms for po", "clues": ["Post Office", "atomic number 84", "Po River", "petty officer", "polonium", "PO", "P.O.", "United States Post Office"]}, {"answer": "po_box", "hint": "synonyms for po box", "clues": ["POB", "Post-Office box", "PO Box", "letter box", "call box"]}, {"answer": "pob", "hint": "synonyms for pob", "clues": ["POB", "Post-Office box", "PO Box", "letter box", "call box"]}, {"answer": "pocket", "hint": "synonyms for pocket", "clues": ["air pocket", "scoop", "air hole", "pouch", "sac", "pocket"]}, {"answer": "pocketbook", "hint": "synonyms for pocketbook", "clues": ["wallet", "pocket book", "notecase", "purse", "bag", "billfold", "handbag", "pocket edition"]}, {"answer": "podium", "hint": "synonyms for podium", "clues": ["pulpit", "dais", "ambo", "soapbox", "stump", "rostrum", "podium"]}, {"answer": "podsol", "hint": "synonyms for podsol", "clues": ["podsolic soil", "podzol soil", "podzol", "podsol"]}, {"answer": "podsol_soil", "hint": "synonyms for podsol soil", "clues": ["podsolic soil", "podsol", "podzol", "podzol soil"]}, {"answer": "podsolic_soil", "hint": "synonyms for podsolic soil", "clues": ["podzol soil", "podsol", "podzol", "podsolic soil"]}, {"answer": "podzol", "hint": "synonyms for podzol", "clues": ["podsolic soil", "podsol", "podzol soil", "podzol"]}, {"answer": "podzol_soil", "hint": "synonyms for podzol soil", "clues": ["podsolic soil", "podsol", "podzol", "podzol soil"]}, {"answer": "poet-singer", "hint": "synonyms for poet-singer", "clues": ["minstrel", "folk singer", "troubadour", "jongleur", "poet-singer"]}, {"answer": "poetiser", "hint": "synonyms for poetiser", "clues": ["poetizer", "rhymer", "versifier", "rhymester"]}, {"answer": "poetizer", "hint": "synonyms for poetizer", "clues": ["poetiser", "rhymer", "versifier", "rhymester"]}, {"answer": "point", "hint": "synonyms for point", "clues": ["full point", "percentage point", "degree", "pointedness", "decimal point", "full stop", "tip", "compass point", "stage", "power point", "item", "breaker point", "dot", "level", "spot", "head", "distributor point", "period", "stop", "detail", "gunpoint", "peak", "point in time", "point"]}, {"answer": "pointlessness", "hint": "synonyms for pointlessness", "clues": ["senselessness", "mindlessness", "vacuity", "inanity", "pointlessness"]}, {"answer": "poise", "hint": "synonyms for poise", "clues": ["sang-froid", "assuredness", "cool", "aplomb", "poise"]}, {"answer": "poke", "hint": "synonyms for poke", "clues": ["biff", "lagger", "poking", "thrusting", "jabbing", "punch", "drone", "carrier bag", "lick", "jab", "clout", "slug", "paper bag", "laggard", "trailer", "dawdler", "sack", "poke"]}, {"answer": "poker", "hint": "synonyms for poker", "clues": ["salamander", "stove poker", "fire hook", "poker game", "poker"]}, {"answer": "poking", "hint": "synonyms for poking", "clues": ["thrusting", "jabbing", "poke", "jab", "poking"]}, {"answer": "polar_star", "hint": "synonyms for polar star", "clues": ["polestar", "North Star", "Polaris", "polar star"]}, {"answer": "polaris", "hint": "synonyms for polaris", "clues": ["Polaris", "polestar", "North Star", "polar star"]}, {"answer": "pole", "hint": "synonyms for pole", "clues": ["celestial pole", "terminal", "rod", "Pole", "perch", "magnetic pole"]}, {"answer": "pole_star", "hint": "synonyms for pole star", "clues": ["polestar", "polar star", "North Star", "Polaris"]}, {"answer": "polestar", "hint": "synonyms for polestar", "clues": ["polar star", "North Star", "pole star", "Polaris"]}, {"answer": "police_blotter", "hint": "synonyms for police blotter", "clues": ["day book", "rap sheet", "charge sheet", "blotter", "police blotter"]}, {"answer": "police_car", "hint": "synonyms for police car", "clues": ["prowl car", "cruiser", "patrol car", "squad car", "police cruiser", "police car"]}, {"answer": "police_cruiser", "hint": "synonyms for police cruiser", "clues": ["prowl car", "cruiser", "police car", "patrol car", "squad car", "police cruiser"]}, {"answer": "police_van", "hint": "synonyms for police van", "clues": ["wagon", "paddy wagon", "patrol wagon", "police wagon", "black Maria", "police van"]}, {"answer": "police_wagon", "hint": "synonyms for police wagon", "clues": ["wagon", "paddy wagon", "patrol wagon", "police van", "black Maria", "police wagon"]}, {"answer": "political_campaign", "hint": "synonyms for political campaign", "clues": ["campaigning", "electioneering", "candidacy", "run", "candidature", "political campaign"]}, {"answer": "politics", "hint": "synonyms for politics", "clues": ["political sympathies", "political science", "political relation", "government", "politics"]}, {"answer": "polk", "hint": "synonyms for polk", "clues": ["James Knox Polk", "Polk", "President Polk", "James Polk"]}, {"answer": "poll", "hint": "synonyms for poll", "clues": ["opinion poll", "pate", "public opinion poll", "canvass", "crown", "poll"]}, {"answer": "polls", "hint": "synonyms for polls", "clues": ["opinion poll", "pate", "poll", "public opinion poll", "canvass", "crown"]}, {"answer": "polymox", "hint": "synonyms for polymox", "clues": ["amoxicillin", "Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox"]}, {"answer": "polyneuritic_psychosis", "hint": "synonyms for polyneuritic psychosis", "clues": ["Korsakoff's psychosis", "Korsakoff's syndrome", "alcohol amnestic disorder", "alcoholic dementia", "polyneuritic psychosis"]}, {"answer": "pom-pom", "hint": "synonyms for pom-pom", "clues": ["flak", "pompon", "ack-ack gun", "antiaircraft gun", "ack-ack", "pom-pom"]}, {"answer": "pompey", "hint": "synonyms for pompey", "clues": ["Portsmouth", "Pompey", "Gnaeus Pompeius Magnus", "Pompey the Great"]}, {"answer": "pomposity", "hint": "synonyms for pomposity", "clues": ["ostentatiousness", "inflation", "pretentiousness", "puffiness", "pompousness", "ostentation", "splashiness", "pomposity"]}, {"answer": "pompousness", "hint": "synonyms for pompousness", "clues": ["ostentatiousness", "inflation", "pretentiousness", "pomposity", "puffiness", "ostentation", "splashiness", "pompousness"]}, {"answer": "ponce", "hint": "synonyms for ponce", "clues": ["procurer", "pander", "fancy man", "pandar", "pimp", "ponce"]}, {"answer": "ponderosity", "hint": "synonyms for ponderosity", "clues": ["massiveness", "heftiness", "ponderousness", "heft", "ponderosity"]}, {"answer": "ponderousness", "hint": "synonyms for ponderousness", "clues": ["massiveness", "ponderosity", "heaviness", "heft", "heftiness", "ponderousness"]}, {"answer": "pons", "hint": "synonyms for pons", "clues": ["pons Varolii", "Pons", "Alice-Josephine Pons", "Lily Pons"]}, {"answer": "pontiff", "hint": "synonyms for pontiff", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "Vicar of Christ", "pontiff"]}, {"answer": "pony", "hint": "synonyms for pony", "clues": ["crib", "shot glass", "trot", "jigger", "pony"]}, {"answer": "poof", "hint": "synonyms for poof", "clues": ["nance", "fairy", "fag", "poove", "queer", "faggot", "pansy", "queen", "pouf", "poof"]}, {"answer": "pool", "hint": "synonyms for pool", "clues": ["kitty", "puddle", "pond", "syndicate", "pocket billiards", "consortium", "pool"]}, {"answer": "poop", "hint": "synonyms for poop", "clues": ["low-down", "crap", "turd", "the skinny", "tail", "quarter", "dope", "shite", "nincompoop", "stern", "ninny", "after part", "dirt", "poop"]}, {"answer": "poor_boy", "hint": "synonyms for poor boy", "clues": ["Italian sandwich", "torpedo", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "poor boy"]}, {"answer": "poor_fish", "hint": "synonyms for poor fish", "clues": ["pudding head", "dullard", "stupid person", "pudden-head", "dolt", "stupe", "stupid", "pillock", "poor fish"]}, {"answer": "poorness", "hint": "synonyms for poorness", "clues": ["scantiness", "exiguity", "meagerness", "impoverishment", "leanness", "poverty", "poorness"]}, {"answer": "poove", "hint": "synonyms for poove", "clues": ["nance", "fairy", "fag", "queer", "faggot", "pansy", "queen", "pouf", "poof", "poove"]}, {"answer": "pope", "hint": "synonyms for pope", "clues": ["Roman Catholic Pope", "Alexander Pope", "Bishop of Rome", "Pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "pope_alexander_vi", "hint": "synonyms for pope alexander vi", "clues": ["Borgia", "Pope Alexander VI", "Rodrigo Borgia", "Alexander VI"]}, {"answer": "porcelain_clay", "hint": "synonyms for porcelain clay", "clues": ["china clay", "kaoline", "china stone", "terra alba", "porcelain clay"]}, {"answer": "porn", "hint": "synonyms for porn", "clues": ["erotica", "pornography", "smut", "porno"]}, {"answer": "porno", "hint": "synonyms for porno", "clues": ["erotica", "pornography", "smut", "porn"]}, {"answer": "pornography", "hint": "synonyms for pornography", "clues": ["erotica", "smut", "porno", "pornography"]}, {"answer": "portal", "hint": "synonyms for portal", "clues": ["hepatic portal vein", "vena portae", "portal site", "portal vein", "portal"]}, {"answer": "portent", "hint": "synonyms for portent", "clues": ["omen", "prodigy", "prognostication", "prognostic", "presage", "portent"]}, {"answer": "porter", "hint": "synonyms for porter", "clues": ["gatekeeper", "doorkeeper", "O. Henry", "door guard", "Katherine Anne Porter", "Pullman porter", "ostiary", "Porter", "Cole Albert Porter", "doorman", "porter's beer", "hall porter", "Cole Porter", "William Sydney Porter"]}, {"answer": "portion", "hint": "synonyms for portion", "clues": ["lot", "dower", "percentage", "parcel", "part", "component", "constituent", "serving", "fate", "fortune", "component part", "helping", "destiny", "dowry", "circumstances", "share", "luck", "portion"]}, {"answer": "portmanteau", "hint": "synonyms for portmanteau", "clues": ["blend", "portmanteau word", "Gladstone", "Gladstone bag", "portmanteau"]}, {"answer": "portrayal", "hint": "synonyms for portrayal", "clues": ["characterization", "depicting", "enactment", "delineation", "portraying", "portrait", "portraiture", "personation", "portrayal"]}, {"answer": "pose", "hint": "synonyms for pose", "clues": ["mannerism", "airs", "affectedness", "affectation", "pose"]}, {"answer": "poser", "hint": "synonyms for poser", "clues": ["poseur", "sticker", "stumper", "toughie", "model"]}, {"answer": "position", "hint": "synonyms for position", "clues": ["view", "location", "spatial relation", "stead", "emplacement", "stance", "place", "side", "billet", "positioning", "berth", "spot", "posture", "status", "military position", "situation", "lieu", "attitude", "office", "post", "perspective"]}, {"answer": "positiveness", "hint": "synonyms for positiveness", "clues": ["positivity", "favorableness", "incontrovertibleness", "incontrovertibility", "advantageousness", "profitableness", "positivism", "positiveness"]}, {"answer": "positivity", "hint": "synonyms for positivity", "clues": ["favorableness", "incontrovertibleness", "incontrovertibility", "advantageousness", "profitableness", "positiveness", "positivism", "positivity"]}, {"answer": "possession", "hint": "synonyms for possession", "clues": ["self-will", "willpower", "ownership", "self-command", "self-control", "monomania", "self-possession", "possession"]}, {"answer": "possibility", "hint": "synonyms for possibility", "clues": ["hypothesis", "possible action", "theory", "possibleness", "opening", "possibility"]}, {"answer": "post", "hint": "synonyms for post", "clues": ["mail service", "Emily Post", "C. W. Post", "military post", "place", "billet", "Emily Price Post", "postal service", "Post", "berth", "station", "spot", "stake", "mail", "Wiley Post", "office", "Charles William Post", "position"]}, {"answer": "post-mortem", "hint": "synonyms for post-mortem", "clues": ["necropsy", "postmortem", "PM", "post-mortem examination", "autopsy"]}, {"answer": "post-mortem_examination", "hint": "synonyms for post-mortem examination", "clues": ["necropsy", "postmortem", "PM", "postmortem examination", "autopsy"]}, {"answer": "post-office_box", "hint": "synonyms for post-office box", "clues": ["POB", "Post-Office box", "PO Box", "letter box", "call box"]}, {"answer": "post_office", "hint": "synonyms for post office", "clues": ["Post Office", "PO", "United States Post Office", "local post office"]}, {"answer": "poster", "hint": "synonyms for poster", "clues": ["posting", "notice", "bill", "card", "bill sticker", "placard", "bill poster", "poster"]}, {"answer": "postiche", "hint": "synonyms for postiche", "clues": ["hairpiece", "sham", "fake", "false hair", "postiche"]}, {"answer": "posting", "hint": "synonyms for posting", "clues": ["notice", "mailing", "poster", "bill", "card", "placard", "posting"]}, {"answer": "postman", "hint": "synonyms for postman", "clues": ["letter carrier", "mail carrier", "mailman", "carrier", "postman"]}, {"answer": "postmortem_examination", "hint": "synonyms for postmortem examination", "clues": ["necropsy", "post-mortem", "PM", "post-mortem examination", "autopsy"]}, {"answer": "postponement", "hint": "synonyms for postponement", "clues": ["hold", "wait", "time lag", "delay", "deferment", "deferral", "postponement"]}, {"answer": "posture", "hint": "synonyms for posture", "clues": ["strength", "military capability", "military strength", "carriage", "military posture", "attitude", "bearing", "stance", "position", "posture"]}, {"answer": "pot", "hint": "synonyms for pot", "clues": ["mint", "peck", "toilet", "quite a little", "deal", "mountain", "jackpot", "throne", "weed", "stack", "corporation", "tummy", "lot", "kitty", "raft", "batch", "mess", "smoke", "plenty", "commode", "sight", "muckle", "sess", "wad", "flock", "flowerpot", "mickle", "mass", "skunk", "sens", "can", "great deal", "potentiometer", "hatful", "dope", "grass", "good deal", "passel", "stool", "potful", "pile", "tidy sum", "spate", "locoweed", "Mary Jane", "bay window", "gage", "potbelly", "slew", "potty", "green goddess", "heap", "crapper", "pot"]}, {"answer": "potash_muriate", "hint": "synonyms for potash muriate", "clues": ["Klorvess", "K-Dur 20", "potassium muriate", "K-lyte", "potassium chloride", "K-lor", "Kaochlor", "potash muriate"]}, {"answer": "potassium_chloride", "hint": "synonyms for potassium chloride", "clues": ["Klorvess", "potash muriate", "K-Dur 20", "potassium muriate", "K-lyte", "K-lor", "Kaochlor", "potassium chloride"]}, {"answer": "potassium_muriate", "hint": "synonyms for potassium muriate", "clues": ["Klorvess", "potash muriate", "K-Dur 20", "K-lyte", "potassium chloride", "K-lor", "Kaochlor", "potassium muriate"]}, {"answer": "potassium_nitrate", "hint": "synonyms for potassium nitrate", "clues": ["saltpeter", "nitre", "niter", "potassium nitrate"]}, {"answer": "potato", "hint": "synonyms for potato", "clues": ["Irish potato", "murphy", "spud", "white potato", "tater", "potato"]}, {"answer": "potato_blight", "hint": "synonyms for potato blight", "clues": ["potato mold", "potato disease", "potato mildew", "potato murrain", "potato blight"]}, {"answer": "potato_disease", "hint": "synonyms for potato disease", "clues": ["potato blight", "potato mold", "potato mildew", "potato murrain", "potato disease"]}, {"answer": "potato_mildew", "hint": "synonyms for potato mildew", "clues": ["potato blight", "potato mold", "potato disease", "potato murrain", "potato mildew"]}, {"answer": "potato_mold", "hint": "synonyms for potato mold", "clues": ["potato blight", "potato disease", "potato mildew", "potato murrain", "potato mold"]}, {"answer": "potato_murrain", "hint": "synonyms for potato murrain", "clues": ["potato blight", "potato mold", "potato disease", "potato mildew", "potato murrain"]}, {"answer": "potato_nose", "hint": "synonyms for potato nose", "clues": ["brandy nose", "hammer nose", "rum-blossom", "hypertrophic rosacea", "rum nose", "toper's nose", "rhinophyma", "copper nose", "potato nose"]}, {"answer": "potbelly", "hint": "synonyms for potbelly", "clues": ["potbelly stove", "bay window", "tummy", "pot", "corporation", "potbelly"]}, {"answer": "potemkin", "hint": "synonyms for potemkin", "clues": ["Potemkin", "Grigori Potyokin", "Grigori Aleksandrovich Potemkin", "Potyokin"]}, {"answer": "potency", "hint": "synonyms for potency", "clues": ["authority", "dominance", "strength", "potential", "effectiveness", "say-so", "potence", "authorisation"]}, {"answer": "potential_difference", "hint": "synonyms for potential difference", "clues": ["electric potential", "potential drop", "voltage", "potential", "potential difference"]}, {"answer": "potential_drop", "hint": "synonyms for potential drop", "clues": ["electric potential", "potential difference", "voltage", "potential", "potential drop"]}, {"answer": "potentiality", "hint": "synonyms for potentiality", "clues": ["potency", "capability", "potential", "capableness"]}, {"answer": "pother", "hint": "synonyms for pother", "clues": ["flap", "dither", "tizzy", "fuss", "pother"]}, {"answer": "pothouse", "hint": "synonyms for pothouse", "clues": ["gin mill", "public house", "saloon", "pub", "taphouse", "pothouse"]}, {"answer": "potpourri", "hint": "synonyms for potpourri", "clues": ["medley", "miscellany", "mixture", "variety", "salmagundi", "pastiche", "mixed bag", "assortment", "smorgasbord", "motley", "potpourri"]}, {"answer": "potyokin", "hint": "synonyms for potyokin", "clues": ["Potemkin", "Grigori Potyokin", "Grigori Aleksandrovich Potemkin", "Potyokin"]}, {"answer": "poudrin", "hint": "synonyms for poudrin", "clues": ["frost snow", "frost mist", "snow mist", "ice crystal", "diamond dust", "ice needle", "poudrin"]}, {"answer": "pouf", "hint": "synonyms for pouf", "clues": ["ottoman", "puff", "nance", "fairy", "fag", "poove", "pouffe", "queer", "hassock", "faggot", "pansy", "queen", "poof", "pouf"]}, {"answer": "pouffe", "hint": "synonyms for pouffe", "clues": ["ottoman", "pouf", "puff", "hassock", "pouffe"]}, {"answer": "pound", "hint": "synonyms for pound", "clues": ["pound sign", "quid", "Lebanese pound", "punt", "Egyptian pound", "British pound", "Cypriot pound", "British pound sterling", "lb", "hammering", "Pound", "Ezra Loomis Pound", "Syrian pound", "dog pound", "Irish pound", "pound sterling", "Ezra Pound", "Sudanese pound", "lbf."]}, {"answer": "pound_sterling", "hint": "synonyms for pound sterling", "clues": ["quid", "British pound sterling", "British pound", "pound", "pound sterling"]}, {"answer": "pounding", "hint": "synonyms for pounding", "clues": ["buffeting", "throb", "throbbing", "pound", "hammer"]}, {"answer": "pourboire", "hint": "synonyms for pourboire", "clues": ["gratuity", "backsheesh", "tip", "bakshis", "pourboire"]}, {"answer": "pow_camp", "hint": "synonyms for pow camp", "clues": ["internment camp", "prisoner of war camp", "POW camp", "prison camp"]}, {"answer": "powell", "hint": "synonyms for powell", "clues": ["Cecil Frank Powell", "Colin Powell", "Powell", "Colin luther Powell"]}, {"answer": "power", "hint": "synonyms for power", "clues": ["king", "tycoon", "powerfulness", "index", "mogul", "mightiness", "major power", "superpower", "big businessman", "top executive", "ability", "business leader", "baron", "might", "great power", "office", "world power", "magnate", "force", "exponent", "power"]}, {"answer": "power_train", "hint": "synonyms for power train", "clues": ["gearing", "geartrain", "train", "power train"]}, {"answer": "powerhouse", "hint": "synonyms for powerhouse", "clues": ["power station", "power plant", "fireball", "human dynamo", "ball of fire", "powerhouse"]}, {"answer": "powys", "hint": "synonyms for powys", "clues": ["John Cowper Powys", "Powys", "Theodore Francis Powys", "Llewelyn Powys"]}, {"answer": "pox", "hint": "synonyms for pox", "clues": ["lues", "syphilis", "syph", "lues venerea", "pox"]}, {"answer": "pozsony", "hint": "synonyms for pozsony", "clues": ["Bratislava", "capital of Slovakia", "Pressburg", "Pozsony"]}, {"answer": "ppk", "hint": "synonyms for ppk", "clues": ["Kurdistan Labor Pary", "Partiya Karkeran Kurdistan", "Kurdistan Workers Party", "PPK"]}, {"answer": "pr", "hint": "synonyms for pr", "clues": ["atomic number 59", "Porto Rico", "praseodymium", "public relations", "Commonwealth of Puerto Rico", "Pr"]}, {"answer": "pr_man", "hint": "synonyms for pr man", "clues": ["publicity man", "press agent", "PR man", "public relations man"]}, {"answer": "practical_joker", "hint": "synonyms for practical joker", "clues": ["tricker", "hoaxer", "prankster", "cut-up", "practical joker"]}, {"answer": "practice", "hint": "synonyms for practice", "clues": ["drill", "recitation", "praxis", "pattern", "exercise", "practice session", "practice"]}, {"answer": "practice_session", "hint": "synonyms for practice session", "clues": ["drill", "recitation", "exercise", "practice", "practice session"]}, {"answer": "prag", "hint": "synonyms for prag", "clues": ["Prague", "Praha", "Czech capital", "Prag"]}, {"answer": "prague", "hint": "synonyms for prague", "clues": ["Prague", "Praha", "Czech capital", "Prag"]}, {"answer": "praha", "hint": "synonyms for praha", "clues": ["Prague", "Praha", "Czech capital", "Prag"]}, {"answer": "prairie_schooner", "hint": "synonyms for prairie schooner", "clues": ["Conestoga", "Conestoga wagon", "covered wagon", "prairie wagon", "prairie schooner"]}, {"answer": "prairie_state", "hint": "synonyms for prairie state", "clues": ["Land of Lincoln", "Prairie State", "Illinois", "IL"]}, {"answer": "prairie_wagon", "hint": "synonyms for prairie wagon", "clues": ["Conestoga", "Conestoga wagon", "covered wagon", "prairie schooner", "prairie wagon"]}, {"answer": "pram", "hint": "synonyms for pram", "clues": ["pusher", "go-cart", "carriage", "pushchair", "baby carriage", "baby buggy", "stroller", "perambulator", "pram"]}, {"answer": "prank", "hint": "synonyms for prank", "clues": ["put-on", "joke", "harlequinade", "trick", "buffoonery", "clowning", "frivolity", "japery", "antic", "caper", "prank"]}, {"answer": "prankster", "hint": "synonyms for prankster", "clues": ["practical joker", "tricker", "hoaxer", "cut-up", "prankster"]}, {"answer": "prat", "hint": "synonyms for prat", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "prat"]}, {"answer": "prate", "hint": "synonyms for prate", "clues": ["blether", "idle talk", "chin music", "prattle", "prate"]}, {"answer": "prater", "hint": "synonyms for prater", "clues": ["babbler", "chatterer", "spouter", "chatterbox", "magpie", "prater"]}, {"answer": "pratfall", "hint": "synonyms for pratfall", "clues": ["bloomer", "flub", "blunder", "boo-boo", "foul-up", "botch", "boner", "fuckup", "bungle", "pratfall"]}, {"answer": "prattle", "hint": "synonyms for prattle", "clues": ["prate", "blether", "idle talk", "chin music", "prattle"]}, {"answer": "prayer", "hint": "synonyms for prayer", "clues": ["appeal", "petition", "entreaty", "supplication", "orison", "supplicant", "prayer"]}, {"answer": "prc", "hint": "synonyms for prc", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "precaution", "hint": "synonyms for precaution", "clues": ["forethought", "care", "safeguard", "guard", "caution", "precaution"]}, {"answer": "precedence", "hint": "synonyms for precedence", "clues": ["antecedence", "anteriority", "priority", "precedency", "precession"]}, {"answer": "precedency", "hint": "synonyms for precedency", "clues": ["anteriority", "priority", "precedence", "antecedence", "precession"]}, {"answer": "preciousness", "hint": "synonyms for preciousness", "clues": ["costliness", "invaluableness", "pricelessness", "preciosity", "dearness", "preciousness"]}, {"answer": "precipitance", "hint": "synonyms for precipitance", "clues": ["precipitateness", "precipitousness", "suddenness", "precipitancy", "abruptness"]}, {"answer": "precipitancy", "hint": "synonyms for precipitancy", "clues": ["precipitateness", "precipitousness", "precipitance", "suddenness", "abruptness"]}, {"answer": "precipitateness", "hint": "synonyms for precipitateness", "clues": ["precipitousness", "precipitance", "suddenness", "abruptness", "precipitateness"]}, {"answer": "precipitation", "hint": "synonyms for precipitation", "clues": ["downfall", "hurriedness", "hastiness", "hurry", "haste", "precipitation"]}, {"answer": "precipitousness", "hint": "synonyms for precipitousness", "clues": ["steepness", "precipitateness", "precipitance", "suddenness", "abruptness", "precipitousness"]}, {"answer": "preconceived_idea", "hint": "synonyms for preconceived idea", "clues": ["prepossession", "preconception", "preconceived notion", "parti pris", "preconceived idea"]}, {"answer": "preconceived_notion", "hint": "synonyms for preconceived notion", "clues": ["prepossession", "preconception", "preconceived opinion", "parti pris", "preconceived idea"]}, {"answer": "preconceived_opinion", "hint": "synonyms for preconceived opinion", "clues": ["prepossession", "preconception", "preconceived notion", "parti pris", "preconceived idea"]}, {"answer": "preconception", "hint": "synonyms for preconception", "clues": ["prepossession", "bias", "preconceived notion", "prejudice", "parti pris", "preconceived idea", "preconception"]}, {"answer": "precondition", "hint": "synonyms for precondition", "clues": ["condition", "given", "stipulation", "presumption"]}, {"answer": "precursor", "hint": "synonyms for precursor", "clues": ["predecessor", "forerunner", "harbinger", "herald", "precursor"]}, {"answer": "predecessor", "hint": "synonyms for predecessor", "clues": ["herald", "forerunner", "precursor", "harbinger", "predecessor"]}, {"answer": "prediction", "hint": "synonyms for prediction", "clues": ["foretelling", "prognostication", "prevision", "anticipation", "forecasting", "prediction"]}, {"answer": "predilection", "hint": "synonyms for predilection", "clues": ["preference", "orientation", "penchant", "taste", "predilection"]}, {"answer": "prednisone", "hint": "synonyms for prednisone", "clues": ["Deltasone", "Meticorten", "Orasone", "Liquid Pred", "prednisone"]}, {"answer": "preemie", "hint": "synonyms for preemie", "clues": ["preterm baby", "premature baby", "premie", "premature infant", "preterm infant"]}, {"answer": "preference", "hint": "synonyms for preference", "clues": ["orientation", "penchant", "predilection", "druthers", "taste", "preference"]}, {"answer": "prefrontal_lobotomy", "hint": "synonyms for prefrontal lobotomy", "clues": ["leukotomy", "lobotomy", "prefrontal leucotomy", "frontal lobotomy"]}, {"answer": "prelate", "hint": "synonyms for prelate", "clues": ["primate", "archpriest", "hierarch", "high priest", "prelate"]}, {"answer": "prelims", "hint": "synonyms for prelims", "clues": ["prelim", "preliminary examination", "front matter", "preliminary exam", "preliminary"]}, {"answer": "premature_baby", "hint": "synonyms for premature baby", "clues": ["preterm baby", "premie", "premature infant", "preterm infant", "premature baby"]}, {"answer": "premature_infant", "hint": "synonyms for premature infant", "clues": ["preterm baby", "premature baby", "premie", "preterm infant", "premature infant"]}, {"answer": "premie", "hint": "synonyms for premie", "clues": ["premature baby", "preterm baby", "premature infant", "preemie", "preterm infant"]}, {"answer": "premonition", "hint": "synonyms for premonition", "clues": ["boding", "forewarning", "presentiment", "foreboding", "premonition"]}, {"answer": "preparation", "hint": "synonyms for preparation", "clues": ["cookery", "training", "formulation", "cooking", "prep", "readying", "homework", "readiness", "planning", "preparedness", "grooming", "provision", "preparation"]}, {"answer": "prepossession", "hint": "synonyms for prepossession", "clues": ["preconception", "preconceived notion", "parti pris", "preconceived idea", "prepossession"]}, {"answer": "presage", "hint": "synonyms for presage", "clues": ["omen", "prognostication", "prodigy", "prognostic", "portent", "presage"]}, {"answer": "presence", "hint": "synonyms for presence", "clues": ["front", "mien", "comportment", "bearing", "presence"]}, {"answer": "presentation", "hint": "synonyms for presentation", "clues": ["introduction", "demonstration", "presentment", "display", "intro", "presentation"]}, {"answer": "presenter", "hint": "synonyms for presenter", "clues": ["giver", "sponsor", "donor", "conferrer", "bestower", "presenter"]}, {"answer": "preserver", "hint": "synonyms for preserver", "clues": ["renovator", "refinisher", "flotation device", "life preserver", "restorer", "preserver"]}, {"answer": "president", "hint": "synonyms for president", "clues": ["President", "chairperson", "President of the United States", "chair", "chairwoman", "Chief Executive", "prexy", "United States President"]}, {"answer": "president_abraham_lincoln", "hint": "synonyms for president abraham lincoln", "clues": ["President Abraham Lincoln", "President Lincoln", "Lincoln", "Abraham Lincoln"]}, {"answer": "president_adams", "hint": "synonyms for president adams", "clues": ["John Quincy Adams", "President John Quincy Adams", "President Adams", "Adams", "John Adams"]}, {"answer": "president_andrew_johnson", "hint": "synonyms for president andrew johnson", "clues": ["President Andrew Johnson", "Johnson", "President Johnson", "Andrew Johnson"]}, {"answer": "president_benjamin_harrison", "hint": "synonyms for president benjamin harrison", "clues": ["President Benjamin Harrison", "Harrison", "President Harrison", "Benjamin Harrison"]}, {"answer": "president_bush", "hint": "synonyms for president bush", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "George H.W. Bush", "Dubya", "Dubyuh", "Bush", "George Herbert Walker Bush"]}, {"answer": "president_carter", "hint": "synonyms for president carter", "clues": ["Jimmy Carter", "James Earl Carter Jr.", "President Carter", "Carter"]}, {"answer": "president_cleveland", "hint": "synonyms for president cleveland", "clues": ["Cleveland", "Stephen Grover Cleveland", "President Cleveland", "Grover Cleveland"]}, {"answer": "president_clinton", "hint": "synonyms for president clinton", "clues": ["Clinton", "Bill Clinton", "William Jefferson Clinton", "President Clinton"]}, {"answer": "president_eisenhower", "hint": "synonyms for president eisenhower", "clues": ["Eisenhower", "Dwight David Eisenhower", "President Eisenhower", "Ike"]}, {"answer": "president_ford", "hint": "synonyms for president ford", "clues": ["President Ford", "Ford", "Gerald Ford", "Gerald Rudolph Ford"]}, {"answer": "president_franklin_roosevelt", "hint": "synonyms for president franklin roosevelt", "clues": ["President Roosevelt", "Franklin Delano Roosevelt", "FDR", "F. D. Roosevelt", "Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt"]}, {"answer": "president_garfield", "hint": "synonyms for president garfield", "clues": ["James A. Garfield", "Garfield", "James Abraham Garfield", "President Garfield"]}, {"answer": "president_george_w._bush", "hint": "synonyms for president george w. bush", "clues": ["President Bush", "George Bush", "President George W. Bush", "George Walker Bush", "Dubya", "Dubyuh", "Bush"]}, {"answer": "president_grant", "hint": "synonyms for president grant", "clues": ["Grant", "Hiram Ulysses Grant", "Ulysses Grant", "President Grant", "Ulysses Simpson Grant"]}, {"answer": "president_harding", "hint": "synonyms for president harding", "clues": ["President Harding", "Warren Gamaliel Harding", "Warren Harding", "Harding"]}, {"answer": "president_harrison", "hint": "synonyms for president harrison", "clues": ["President Harrison", "President William Henry Harrison", "President Benjamin Harrison", "Benjamin Harrison", "William Henry Harrison", "Harrison"]}, {"answer": "president_hayes", "hint": "synonyms for president hayes", "clues": ["Hayes", "Rutherford B. Hayes", "President Hayes", "Rutherford Birchard Hayes"]}, {"answer": "president_hoover", "hint": "synonyms for president hoover", "clues": ["Hoover", "Herbert Clark Hoover", "Herbert Hoover", "President Hoover"]}, {"answer": "president_john_f._kennedy", "hint": "synonyms for president john f. kennedy", "clues": ["President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "John Fitzgerald Kennedy", "Kennedy"]}, {"answer": "president_john_quincy_adams", "hint": "synonyms for president john quincy adams", "clues": ["President John Quincy Adams", "President Adams", "Adams", "John Quincy Adams"]}, {"answer": "president_johnson", "hint": "synonyms for president johnson", "clues": ["President Andrew Johnson", "Johnson", "Lyndon Johnson", "LBJ", "Andrew Johnson", "President Lyndon Johnson", "Lyndon Baines Johnson", "President Johnson"]}, {"answer": "president_kennedy", "hint": "synonyms for president kennedy", "clues": ["President Kennedy", "JFK", "President John F. Kennedy", "Jack Kennedy", "John Fitzgerald Kennedy", "Kennedy"]}, {"answer": "president_lincoln", "hint": "synonyms for president lincoln", "clues": ["President Abraham Lincoln", "President Lincoln", "Lincoln", "Abraham Lincoln"]}, {"answer": "president_lyndon_johnson", "hint": "synonyms for president lyndon johnson", "clues": ["Johnson", "President Lyndon Johnson", "President Johnson", "Lyndon Johnson", "Lyndon Baines Johnson", "LBJ"]}, {"answer": "president_nixon", "hint": "synonyms for president nixon", "clues": ["Nixon", "Richard Milhous Nixon", "Richard Nixon", "President Nixon"]}, {"answer": "president_of_the_united_states", "hint": "synonyms for president of the united states", "clues": ["Chief Executive", "President", "President of the United States", "United States President"]}, {"answer": "president_polk", "hint": "synonyms for president polk", "clues": ["James Knox Polk", "Polk", "President Polk", "James Polk"]}, {"answer": "president_reagan", "hint": "synonyms for president reagan", "clues": ["Ronald Wilson Reagan", "President Reagan", "Reagan", "Ronald Reagan"]}, {"answer": "president_roosevelt", "hint": "synonyms for president roosevelt", "clues": ["Franklin Delano Roosevelt", "Theodore Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt", "President Roosevelt", "FDR", "President Theodore Roosevelt", "Roosevelt", "F. D. Roosevelt"]}, {"answer": "president_theodore_roosevelt", "hint": "synonyms for president theodore roosevelt", "clues": ["President Roosevelt", "Theodore Roosevelt", "President Theodore Roosevelt", "Roosevelt"]}, {"answer": "president_william_henry_harrison", "hint": "synonyms for president william henry harrison", "clues": ["President William Henry Harrison", "William Henry Harrison", "President Harrison", "Harrison"]}, {"answer": "president_wilson", "hint": "synonyms for president wilson", "clues": ["Wilson", "Woodrow Wilson", "President Wilson", "Thomas Woodrow Wilson"]}, {"answer": "press", "hint": "synonyms for press", "clues": ["mechanical press", "military press", "insistency", "public press", "crush", "printing press", "jam", "closet", "pressing", "pressure", "imperativeness", "wardrobe"]}, {"answer": "press_agency", "hint": "synonyms for press agency", "clues": ["wire service", "news organization", "news agency", "press association", "press agency"]}, {"answer": "press_association", "hint": "synonyms for press association", "clues": ["wire service", "news organization", "news agency", "press agency", "press association"]}, {"answer": "press_clipping", "hint": "synonyms for press clipping", "clues": ["press cutting", "newspaper clipping", "cutting", "clipping", "press clipping"]}, {"answer": "press_cutting", "hint": "synonyms for press cutting", "clues": ["press clipping", "newspaper clipping", "cutting", "clipping", "press cutting"]}, {"answer": "pressburg", "hint": "synonyms for pressburg", "clues": ["Bratislava", "capital of Slovakia", "Pressburg", "Pozsony"]}, {"answer": "pressman", "hint": "synonyms for pressman", "clues": ["newswriter", "newspaperman", "printer", "correspondent", "pressman"]}, {"answer": "pressure", "hint": "synonyms for pressure", "clues": ["insistency", "atmospheric pressure", "air pressure", "force per unit area", "press", "pressure sensation", "pressure level", "imperativeness", "pressure"]}, {"answer": "pressure-feed_lubricating_system", "hint": "synonyms for pressure-feed lubricating system", "clues": ["force-feed lubricating system", "force feed", "lubricating system", "pressure feed"]}, {"answer": "pressure_feed", "hint": "synonyms for pressure feed", "clues": ["force-feed lubricating system", "force feed", "lubricating system", "pressure feed"]}, {"answer": "prestidigitator", "hint": "synonyms for prestidigitator", "clues": ["conjurer", "magician", "illusionist", "prestidigitator"]}, {"answer": "presumption", "hint": "synonyms for presumption", "clues": ["given", "assumption", "presumptuousness", "precondition", "effrontery", "presumption"]}, {"answer": "pretence", "hint": "synonyms for pretence", "clues": ["make-believe", "feigning", "simulation", "pretense", "pretending", "dissembling", "pretension", "pretext", "guise"]}, {"answer": "pretender", "hint": "synonyms for pretender", "clues": ["phony", "fake", "imposter", "pseudo", "dissembler", "hypocrite", "sham", "dissimulator", "role player", "shammer", "Pretender", "fraud"]}, {"answer": "pretending", "hint": "synonyms for pretending", "clues": ["simulation", "feigning", "pretence", "pretending"]}, {"answer": "pretense", "hint": "synonyms for pretense", "clues": ["make-believe", "feigning", "guise", "pretending", "dissembling", "pretence", "pretension", "pretext", "simulation"]}, {"answer": "pretension", "hint": "synonyms for pretension", "clues": ["largeness", "pretense", "pretentiousness", "pretension"]}, {"answer": "pretentiousness", "hint": "synonyms for pretentiousness", "clues": ["ostentatiousness", "inflation", "ostentation", "largeness", "pretension", "pomposity", "puffiness", "pompousness", "splashiness", "pretentiousness"]}, {"answer": "preterm_baby", "hint": "synonyms for preterm baby", "clues": ["premature baby", "premie", "premature infant", "preterm infant", "preterm baby"]}, {"answer": "preterm_infant", "hint": "synonyms for preterm infant", "clues": ["preterm baby", "premature baby", "premie", "premature infant", "preterm infant"]}, {"answer": "pretext", "hint": "synonyms for pretext", "clues": ["pretence", "stalking-horse", "guise", "pretext"]}, {"answer": "prevarication", "hint": "synonyms for prevarication", "clues": ["evasiveness", "lie", "lying", "equivocation", "fabrication", "prevarication"]}, {"answer": "prevision", "hint": "synonyms for prevision", "clues": ["prospicience", "farsightedness", "prediction", "prescience", "foresight", "anticipation", "prevision"]}, {"answer": "price", "hint": "synonyms for price", "clues": ["monetary value", "cost", "terms", "Leontyne Price", "Mary Leontyne Price", "toll", "damage", "Price"]}, {"answer": "price_of_admission", "hint": "synonyms for price of admission", "clues": ["entrance money", "admission", "admission charge", "admission price", "admission fee", "entrance fee", "price of admission"]}, {"answer": "prick", "hint": "synonyms for prick", "clues": ["pricking", "slit", "son of a bitch", "cock", "cocksucker", "pecker", "tool", "shit", "bastard", "asshole", "dick", "peter", "SOB", "motherfucker", "shaft", "scratch", "whoreson", "dent", "dickhead", "incision", "putz"]}, {"answer": "prickteaser", "hint": "synonyms for prickteaser", "clues": ["coquette", "tease", "minx", "vamper", "vamp", "flirt", "prickteaser"]}, {"answer": "primary_care_provider", "hint": "synonyms for primary care provider", "clues": ["PCP", "health care provider", "caregiver", "health professional", "primary care provider"]}, {"answer": "primate", "hint": "synonyms for primate", "clues": ["archpriest", "prelate", "hierarch", "high priest", "primate"]}, {"answer": "primates", "hint": "synonyms for primates", "clues": ["archpriest", "prelate", "hierarch", "high priest", "primate"]}, {"answer": "prime_minister", "hint": "synonyms for prime minister", "clues": ["chancellor", "PM", "Prime Minister", "premier"]}, {"answer": "primer", "hint": "synonyms for primer", "clues": ["primer coat", "priming coat", "fuse", "ground", "priming", "fuze", "undercoat", "flat coat", "primer"]}, {"answer": "primer_coat", "hint": "synonyms for primer coat", "clues": ["priming coat", "undercoat", "primer", "ground", "priming", "flat coat", "primer coat"]}, {"answer": "priming", "hint": "synonyms for priming", "clues": ["primer coat", "priming coat", "fuse", "ground", "fuze", "undercoat", "primer", "flat coat", "priming"]}, {"answer": "priming_coat", "hint": "synonyms for priming coat", "clues": ["primer coat", "undercoat", "primer", "ground", "priming", "flat coat", "priming coat"]}, {"answer": "primitive_art", "hint": "synonyms for primitive art", "clues": ["self-taught art", "vernacular art", "outsider art", "naive art", "primitive art"]}, {"answer": "primitiveness", "hint": "synonyms for primitiveness", "clues": ["crudity", "rudeness", "primitivism", "primitiveness"]}, {"answer": "primitivism", "hint": "synonyms for primitivism", "clues": ["crudity", "primitiveness", "rudeness", "primitivism"]}, {"answer": "primness", "hint": "synonyms for primness", "clues": ["prudery", "priggishness", "prudishness", "Grundyism", "primness"]}, {"answer": "prince_of_darkness", "hint": "synonyms for prince of darkness", "clues": ["Satan", "the Tempter", "Prince of Darkness", "Old Nick", "Beelzebub", "Devil", "Lucifer"]}, {"answer": "prince_otto_eduard_leopold_von_bismarck", "hint": "synonyms for prince otto eduard leopold von bismarck", "clues": ["Prince Otto Eduard Leopold von Bismarck", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "prince_otto_von_bismarck", "hint": "synonyms for prince otto von bismarck", "clues": ["Prince Otto Eduard Leopold von Bismarck", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "princess_diana", "hint": "synonyms for princess diana", "clues": ["Diana", "Lady Diana Frances Spencer", "Princess of Wales", "Princess Diana"]}, {"answer": "princess_grace_of_monaco", "hint": "synonyms for princess grace of monaco", "clues": ["Princess Grace of Monaco", "Kelly", "Grace Kelly", "Grace Patricia Kelly"]}, {"answer": "princess_of_wales", "hint": "synonyms for princess of wales", "clues": ["Diana", "Lady Diana Frances Spencer", "Princess of Wales", "Princess Diana"]}, {"answer": "priority", "hint": "synonyms for priority", "clues": ["antecedence", "anteriority", "precedence", "priority"]}, {"answer": "priscoan", "hint": "synonyms for priscoan", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "priscoan_aeon", "hint": "synonyms for priscoan aeon", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "priscoan_eon", "hint": "synonyms for priscoan eon", "clues": ["Priscoan", "Hadean aeon", "Priscoan aeon", "Hadean time", "Hadean"]}, {"answer": "prison-breaking", "hint": "synonyms for prison-breaking", "clues": ["break", "prisonbreak", "jailbreak", "gaolbreak", "breakout", "prison-breaking"]}, {"answer": "prison_camp", "hint": "synonyms for prison camp", "clues": ["internment camp", "POW camp", "prison farm", "prisoner of war camp", "work camp", "prison camp"]}, {"answer": "prison_guard", "hint": "synonyms for prison guard", "clues": ["jailor", "jailer", "gaoler", "screw", "turnkey", "prison guard"]}, {"answer": "prisonbreak", "hint": "synonyms for prisonbreak", "clues": ["break", "prison-breaking", "jailbreak", "gaolbreak", "breakout", "prisonbreak"]}, {"answer": "privacy", "hint": "synonyms for privacy", "clues": ["seclusion", "privateness", "secrecy", "concealment", "privacy"]}, {"answer": "private_detective", "hint": "synonyms for private detective", "clues": ["sherlock", "operative", "shamus", "PI", "private eye", "private investigator", "private detective"]}, {"answer": "private_eye", "hint": "synonyms for private eye", "clues": ["sherlock", "operative", "shamus", "PI", "private detective", "private investigator", "private eye"]}, {"answer": "private_investigator", "hint": "synonyms for private investigator", "clues": ["sherlock", "operative", "shamus", "PI", "private detective", "private eye", "private investigator"]}, {"answer": "private_parts", "hint": "synonyms for private parts", "clues": ["genitals", "genital organ", "crotch", "privates", "genitalia", "private parts"]}, {"answer": "privateness", "hint": "synonyms for privateness", "clues": ["seclusion", "privacy", "secrecy", "concealment", "privateness"]}, {"answer": "privates", "hint": "synonyms for privates", "clues": ["genitals", "buck private", "private", "private parts", "genital organ", "crotch", "genitalia", "common soldier"]}, {"answer": "procedure", "hint": "synonyms for procedure", "clues": ["routine", "operation", "process", "subroutine", "subprogram", "function", "procedure"]}, {"answer": "proceedings", "hint": "synonyms for proceedings", "clues": ["proceeding", "legal proceeding", "minutes", "transactions"]}, {"answer": "proceeds", "hint": "synonyms for proceeds", "clues": ["payoff", "take", "return", "issue", "takings", "yield", "proceeds"]}, {"answer": "process", "hint": "synonyms for process", "clues": ["operation", "physical process", "cognitive process", "procedure", "cognitive operation", "outgrowth", "mental process", "appendage", "summons", "unconscious process", "process"]}, {"answer": "procession", "hint": "synonyms for procession", "clues": ["onward motion", "advance", "progress", "rise", "advancement", "emanation", "progression"]}, {"answer": "processor", "hint": "synonyms for processor", "clues": ["central processor", "central processing unit", "CPU", "mainframe", "C.P.U.", "processor"]}, {"answer": "proclamation", "hint": "synonyms for proclamation", "clues": ["promulgation", "announcement", "annunciation", "declaration", "proclamation"]}, {"answer": "procurer", "hint": "synonyms for procurer", "clues": ["pander", "fancy man", "pandar", "ponce", "pimp", "securer", "procurer"]}, {"answer": "prod", "hint": "synonyms for prod", "clues": ["goading", "urging", "spurring", "spur", "prodding", "prod"]}, {"answer": "prodding", "hint": "synonyms for prodding", "clues": ["goading", "urging", "spurring", "spur", "prod", "prodding"]}, {"answer": "prodigality", "hint": "synonyms for prodigality", "clues": ["profligacy", "highlife", "lavishness", "extravagance", "prodigality"]}, {"answer": "prodigy", "hint": "synonyms for prodigy", "clues": ["omen", "prognostication", "prognostic", "presage", "portent", "prodigy"]}, {"answer": "product", "hint": "synonyms for product", "clues": ["ware", "mathematical product", "Cartesian product", "intersection", "production", "merchandise", "product"]}, {"answer": "product_line", "hint": "synonyms for product line", "clues": ["business line", "line of merchandise", "line of products", "line of business", "line", "product line"]}, {"answer": "profit", "hint": "synonyms for profit", "clues": ["earnings", "lucre", "gain", "profits", "net income", "net", "net profit"]}, {"answer": "profitableness", "hint": "synonyms for profitableness", "clues": ["positiveness", "favorableness", "positivity", "advantageousness", "lucrativeness", "gainfulness", "profitability", "profitableness"]}, {"answer": "profits", "hint": "synonyms for profits", "clues": ["lucre", "net", "earnings", "net profit", "winnings", "gain", "profit", "net income", "win"]}, {"answer": "profligacy", "hint": "synonyms for profligacy", "clues": ["prodigality", "looseness", "dissipation", "licentiousness", "dissolution", "extravagance", "profligacy"]}, {"answer": "profoundness", "hint": "synonyms for profoundness", "clues": ["reconditeness", "abstrusity", "deepness", "depth", "astuteness", "profundity", "abstruseness", "profoundness"]}, {"answer": "profundity", "hint": "synonyms for profundity", "clues": ["reconditeness", "abstrusity", "deepness", "depth", "astuteness", "profoundness", "abstruseness", "profundity"]}, {"answer": "prognostication", "hint": "synonyms for prognostication", "clues": ["omen", "foretelling", "prognostic", "presage", "forecasting", "prediction", "prodigy", "prophecy", "vaticination", "portent", "prognostication"]}, {"answer": "program", "hint": "synonyms for program", "clues": ["syllabus", "platform", "plan", "computer programme", "broadcast", "curriculum", "political platform", "course of study", "political program", "programme"]}, {"answer": "programme", "hint": "synonyms for programme", "clues": ["syllabus", "plan", "computer programme", "broadcast", "curriculum", "program", "course of study"]}, {"answer": "progress", "hint": "synonyms for progress", "clues": ["advancement", "onward motion", "procession", "advance", "progress"]}, {"answer": "progression", "hint": "synonyms for progression", "clues": ["onward motion", "advance", "progress", "advancement", "procession", "patterned advance"]}, {"answer": "progressive_emphysematous_necrosis", "hint": "synonyms for progressive emphysematous necrosis", "clues": ["clostridial myonecrosis", "emphysematous phlegmon", "emphysematous gangrene", "gangrenous emphysema", "gas gangrene", "gas phlegmon", "progressive emphysematous necrosis"]}, {"answer": "progressive_tense", "hint": "synonyms for progressive tense", "clues": ["imperfect", "continuous tense", "progressive", "imperfect tense", "progressive tense"]}, {"answer": "prohibition", "hint": "synonyms for prohibition", "clues": ["inhibition", "forbiddance", "proscription", "ban", "prohibition era", "prohibition"]}, {"answer": "project", "hint": "synonyms for project", "clues": ["projection", "undertaking", "task", "labor", "project"]}, {"answer": "projection", "hint": "synonyms for projection", "clues": ["acoustic projection", "forcing out", "expulsion", "sound projection", "ejection", "project", "protrusion", "jut", "jutting", "projection"]}, {"answer": "prolixity", "hint": "synonyms for prolixity", "clues": ["long-windedness", "wordiness", "prolixness", "windiness", "prolixity"]}, {"answer": "prolixness", "hint": "synonyms for prolixness", "clues": ["long-windedness", "prolixity", "wordiness", "windiness", "prolixness"]}, {"answer": "prolongation", "hint": "synonyms for prolongation", "clues": ["continuation", "lengthiness", "perpetuation", "protraction", "extension", "lengthening", "prolongation"]}, {"answer": "prolusion", "hint": "synonyms for prolusion", "clues": ["warm-up", "preface", "foreword", "tune-up", "prolusion"]}, {"answer": "promenade", "hint": "synonyms for promenade", "clues": ["amble", "prom", "saunter", "mall", "stroll", "perambulation", "promenade"]}, {"answer": "prominence", "hint": "synonyms for prominence", "clues": ["extrusion", "excrescence", "swelling", "gibbosity", "protrusion", "hump", "protuberance", "gibbousness", "bulge", "jut", "bump", "prominence"]}, {"answer": "promised_land", "hint": "synonyms for promised land", "clues": ["heaven", "Eden", "Palestine", "paradise", "Canaan", "nirvana", "Holy Land", "Shangri-la", "Promised Land"]}, {"answer": "promoter", "hint": "synonyms for promoter", "clues": ["plugger", "showman", "impresario", "booster", "promoter"]}, {"answer": "promotion", "hint": "synonyms for promotion", "clues": ["publicity", "packaging", "advancement", "furtherance", "promotional material", "forwarding", "promotion"]}, {"answer": "propensity", "hint": "synonyms for propensity", "clues": ["tendency", "proclivity", "aptness", "leaning", "propensity"]}, {"answer": "property", "hint": "synonyms for property", "clues": ["belongings", "place", "dimension", "attribute", "prop", "holding", "property"]}, {"answer": "prophesier", "hint": "synonyms for prophesier", "clues": ["seer", "oracle", "vaticinator", "prophet", "prophesier"]}, {"answer": "prophet", "hint": "synonyms for prophet", "clues": ["seer", "oracle", "prophesier", "vaticinator", "prophet"]}, {"answer": "prophets", "hint": "synonyms for prophets", "clues": ["oracle", "Nebiim", "vaticinator", "seer", "Prophets", "prophesier"]}, {"answer": "prophylactic_device", "hint": "synonyms for prophylactic device", "clues": ["birth control device", "preventative", "contraceptive device", "contraceptive", "prophylactic device"]}, {"answer": "propitiation", "hint": "synonyms for propitiation", "clues": ["placation", "atonement", "conciliation", "expiation", "propitiation"]}, {"answer": "proportion", "hint": "synonyms for proportion", "clues": ["symmetry", "balance", "proportionality", "dimension", "ratio", "proportion"]}, {"answer": "proposal", "hint": "synonyms for proposal", "clues": ["proposal of marriage", "marriage proposal", "marriage offer", "proposition", "proposal"]}, {"answer": "props", "hint": "synonyms for props", "clues": ["airplane propeller", "airscrew", "property", "prop"]}, {"answer": "prosody", "hint": "synonyms for prosody", "clues": ["metrics", "poetic rhythm", "rhythmic pattern", "inflection", "prosody"]}, {"answer": "prospect", "hint": "synonyms for prospect", "clues": ["view", "panorama", "medical prognosis", "prognosis", "scene", "expectation", "aspect", "candidate", "outlook", "vista", "chance", "prospect"]}, {"answer": "prostitute", "hint": "synonyms for prostitute", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "lady of pleasure", "tart", "cocotte", "whore", "woman of the street", "cyprian", "prostitute"]}, {"answer": "protagonist", "hint": "synonyms for protagonist", "clues": ["agonist", "supporter", "booster", "friend", "champion", "admirer", "protagonist"]}, {"answer": "protection", "hint": "synonyms for protection", "clues": ["security", "protective cover", "trade protection", "tribute", "shelter", "aegis", "auspices", "protection"]}, {"answer": "protester", "hint": "synonyms for protester", "clues": ["contestant", "dissident", "dissenter", "objector", "demonstrator", "protester"]}, {"answer": "protirelin", "hint": "synonyms for protirelin", "clues": ["TRH", "thyrotropin-releasing factor", "TRF", "thyrotropin-releasing hormone", "protirelin"]}, {"answer": "protoheme", "hint": "synonyms for protoheme", "clues": ["heme", "haem", "haemitin", "hematin", "protoheme"]}, {"answer": "protraction", "hint": "synonyms for protraction", "clues": ["continuation", "perpetuation", "prolongation", "lengthiness", "lengthening", "protraction"]}, {"answer": "protrusion", "hint": "synonyms for protrusion", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "hump", "protuberance", "gibbousness", "projection", "bulge", "jut", "jutting", "bump", "protrusion"]}, {"answer": "protuberance", "hint": "synonyms for protuberance", "clues": ["extrusion", "prominence", "excrescence", "swelling", "gibbosity", "protrusion", "hump", "gibbousness", "bulge", "jut", "bump", "protuberance"]}, {"answer": "provenance", "hint": "synonyms for provenance", "clues": ["provenience", "birthplace", "cradle", "place of origin"]}, {"answer": "provender", "hint": "synonyms for provender", "clues": ["commissariat", "feed", "victuals", "provisions", "viands", "provender"]}, {"answer": "provenience", "hint": "synonyms for provenience", "clues": ["provenance", "birthplace", "cradle", "place of origin"]}, {"answer": "proverbs", "hint": "synonyms for proverbs", "clues": ["adage", "saw", "Book of Proverbs", "byword", "Proverbs"]}, {"answer": "provision", "hint": "synonyms for provision", "clues": ["preparation", "supplying", "planning", "proviso"]}, {"answer": "provisional_ira", "hint": "synonyms for provisional ira", "clues": ["Irish Republican Army", "IRA", "Provisional Irish Republican Army", "Provos", "Provisional IRA"]}, {"answer": "provisional_irish_republican_army", "hint": "synonyms for provisional irish republican army", "clues": ["Irish Republican Army", "IRA", "Provisional Irish Republican Army", "Provos", "Provisional IRA"]}, {"answer": "provisions", "hint": "synonyms for provisions", "clues": ["commissariat", "provender", "victuals", "preparation", "supplying", "viands", "proviso", "planning", "provisions"]}, {"answer": "provocation", "hint": "synonyms for provocation", "clues": ["incitement", "irritation", "incitation", "aggravation", "provocation"]}, {"answer": "provoker", "hint": "synonyms for provoker", "clues": ["instigator", "firebrand", "instigant", "inciter", "provoker"]}, {"answer": "provos", "hint": "synonyms for provos", "clues": ["Irish Republican Army", "Provo", "IRA", "Provisional Irish Republican Army", "Provisional IRA"]}, {"answer": "prowl_car", "hint": "synonyms for prowl car", "clues": ["cruiser", "police car", "patrol car", "squad car", "police cruiser", "prowl car"]}, {"answer": "prozac", "hint": "synonyms for prozac", "clues": ["Sarafem", "fluoxetine hydrocholoride", "fluoxetine", "Prozac"]}, {"answer": "prurience", "hint": "synonyms for prurience", "clues": ["lubricity", "carnality", "pruriency", "lasciviousness"]}, {"answer": "pruriency", "hint": "synonyms for pruriency", "clues": ["lubricity", "carnality", "prurience", "lasciviousness"]}, {"answer": "ps", "hint": "synonyms for ps", "clues": ["P", "atomic number 15", "postscript", "phosphorus"]}, {"answer": "pseud", "hint": "synonyms for pseud", "clues": ["shammer", "fake", "imposter", "pseudo", "pretender", "sham", "role player", "fraud"]}, {"answer": "pseudosmallpox", "hint": "synonyms for pseudosmallpox", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox", "pseudosmallpox"]}, {"answer": "pseudovariola", "hint": "synonyms for pseudovariola", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "milk pox", "pseudovariola"]}, {"answer": "psyche", "hint": "synonyms for psyche", "clues": ["nous", "mind", "head", "soul", "brain", "Psyche"]}, {"answer": "psychiatric_hospital", "hint": "synonyms for psychiatric hospital", "clues": ["insane asylum", "asylum", "mental institution", "institution", "mental hospital", "mental home", "psychiatric hospital"]}, {"answer": "psychogalvanic_response", "hint": "synonyms for psychogalvanic response", "clues": ["electrical skin response", "Tarchanoff phenomenon", "electrodermal response", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response"]}, {"answer": "psychological_disorder", "hint": "synonyms for psychological disorder", "clues": ["mental disturbance", "mental disorder", "folie", "disturbance", "psychological disorder"]}, {"answer": "pt_boat", "hint": "synonyms for pt boat", "clues": ["mosquito craft", "mosquito boat", "motor torpedo boat", "PT boat"]}, {"answer": "pteroylglutamic_acid", "hint": "synonyms for pteroylglutamic acid", "clues": ["folacin", "vitamin Bc", "pteroylmonoglutamic acid", "folic acid", "folate", "vitamin M"]}, {"answer": "pteroylmonoglutamic_acid", "hint": "synonyms for pteroylmonoglutamic acid", "clues": ["folacin", "vitamin Bc", "pteroylglutamic acid", "folic acid", "folate", "vitamin M"]}, {"answer": "pub", "hint": "synonyms for pub", "clues": ["gin mill", "pothouse", "public house", "saloon", "taphouse", "pub"]}, {"answer": "pubes", "hint": "synonyms for pubes", "clues": ["pubic region", "pubis", "pubic bone", "os pubis", "loins", "pubes"]}, {"answer": "public_address_system", "hint": "synonyms for public address system", "clues": ["P.A. system", "P.A.", "PA", "public address system"]}, {"answer": "public_convenience", "hint": "synonyms for public convenience", "clues": ["public toilet", "toilet facility", "wash room", "public lavatory", "comfort station", "convenience", "restroom", "public convenience"]}, {"answer": "public_house", "hint": "synonyms for public house", "clues": ["gin mill", "pothouse", "saloon", "pub", "taphouse", "public house"]}, {"answer": "public_lavatory", "hint": "synonyms for public lavatory", "clues": ["public toilet", "toilet facility", "wash room", "public convenience", "comfort station", "convenience", "restroom", "public lavatory"]}, {"answer": "public_mover", "hint": "synonyms for public mover", "clues": ["moving company", "mover", "removal company", "removal firm", "public mover"]}, {"answer": "public_speaker", "hint": "synonyms for public speaker", "clues": ["rhetorician", "orator", "speechifier", "speechmaker", "public speaker"]}, {"answer": "public_toilet", "hint": "synonyms for public toilet", "clues": ["toilet facility", "wash room", "public lavatory", "public convenience", "comfort station", "convenience", "restroom", "public toilet"]}, {"answer": "publisher", "hint": "synonyms for publisher", "clues": ["publishing house", "publishing company", "newspaper publisher", "publishing firm", "publisher"]}, {"answer": "publius_cornelius_scipio", "hint": "synonyms for publius cornelius scipio", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "publius_cornelius_scipio_africanus_major", "hint": "synonyms for publius cornelius scipio africanus major", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "pudden-head", "hint": "synonyms for pudden-head", "clues": ["pudding head", "poor fish", "dullard", "stupid person", "dolt", "stupe", "stupid", "pillock", "pudden-head"]}, {"answer": "pudding_head", "hint": "synonyms for pudding head", "clues": ["poor fish", "dullard", "stupid person", "pudden-head", "dolt", "stupe", "stupid", "pillock", "pudding head"]}, {"answer": "pudendal_cleavage", "hint": "synonyms for pudendal cleavage", "clues": ["urogenital cleft", "rima vulvae", "pudendal slit", "rima pudendi", "pudendal cleft", "vulvar slit", "pudendal cleavage"]}, {"answer": "pudendal_cleft", "hint": "synonyms for pudendal cleft", "clues": ["pudendal cleavage", "urogenital cleft", "rima vulvae", "rima pudendi", "pudendal slit", "vulvar slit", "pudendal cleft"]}, {"answer": "pudendal_slit", "hint": "synonyms for pudendal slit", "clues": ["pudendal cleavage", "urogenital cleft", "rima vulvae", "rima pudendi", "pudendal cleft", "vulvar slit", "pudendal slit"]}, {"answer": "puffiness", "hint": "synonyms for puffiness", "clues": ["lump", "ostentatiousness", "inflation", "swelling", "ostentation", "pretentiousness", "pomposity", "pompousness", "splashiness", "puffiness"]}, {"answer": "puke", "hint": "synonyms for puke", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "vomit", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "vomitus", "rotter", "barf", "skunk", "git", "puke"]}, {"answer": "puking", "hint": "synonyms for puking", "clues": ["emesis", "regurgitation", "disgorgement", "vomit", "puking"]}, {"answer": "pull", "hint": "synonyms for pull", "clues": ["wrench", "puff", "drag", "twist", "pulling", "clout"]}, {"answer": "pull-off", "hint": "synonyms for pull-off", "clues": ["lay-by", "rest area", "rest stop", "pull-off"]}, {"answer": "pulling_out", "hint": "synonyms for pulling out", "clues": ["withdrawal method", "withdrawal", "onanism", "coitus interruptus", "pulling out"]}, {"answer": "pulmonary_anthrax", "hint": "synonyms for pulmonary anthrax", "clues": ["woolsorter's disease", "ragsorter's disease", "woolsorter's pneumonia", "anthrax pneumonia", "inhalation anthrax", "ragpicker's disease", "pulmonary anthrax"]}, {"answer": "pulmonary_tuberculosis", "hint": "synonyms for pulmonary tuberculosis", "clues": ["consumption", "white plague", "wasting disease", "phthisis", "pulmonary tuberculosis"]}, {"answer": "pulpit", "hint": "synonyms for pulpit", "clues": ["podium", "dais", "ambo", "soapbox", "stump", "rostrum", "pulpit"]}, {"answer": "pulsation", "hint": "synonyms for pulsation", "clues": ["pulse", "impulse", "pulsing", "heartbeat", "beat", "pulsation"]}, {"answer": "pulse", "hint": "synonyms for pulse", "clues": ["pulse rate", "impulse", "pulsation", "heart rate", "pulsing", "heartbeat", "beat", "pulse"]}, {"answer": "pulverisation", "hint": "synonyms for pulverisation", "clues": ["grind", "mill", "powder", "pulverization"]}, {"answer": "pulverization", "hint": "synonyms for pulverization", "clues": ["grind", "mill", "pulverisation", "powder"]}, {"answer": "punch", "hint": "synonyms for punch", "clues": ["slug", "lick", "poke", "biff", "clout", "puncher", "punch"]}, {"answer": "puncher", "hint": "synonyms for puncher", "clues": ["cattleman", "cowpuncher", "cowpoke", "cowboy", "cowherd", "punch", "cowhand", "cowman", "puncher"]}, {"answer": "puniness", "hint": "synonyms for puniness", "clues": ["slightness", "triviality", "pettiness", "stuntedness", "runtiness", "puniness"]}, {"answer": "punks", "hint": "synonyms for punks", "clues": ["spunk", "punk rock", "thug", "strong-armer", "kindling", "tinder", "tough", "toughie", "touchwood", "goon", "hoodlum", "hood", "punks"]}, {"answer": "pupil", "hint": "synonyms for pupil", "clues": ["schoolchild", "student", "school-age child", "educatee", "pupil"]}, {"answer": "pureness", "hint": "synonyms for pureness", "clues": ["honour", "sinlessness", "innocence", "whiteness", "purity", "pureness"]}, {"answer": "purgation", "hint": "synonyms for purgation", "clues": ["purging", "purge", "katharsis", "purification", "purgation"]}, {"answer": "purity", "hint": "synonyms for purity", "clues": ["honour", "whiteness", "sinlessness", "innocence", "pureness", "purity"]}, {"answer": "purple_heart", "hint": "synonyms for purple heart", "clues": ["phenobarbital", "Purple Heart", "Luminal", "Order of the Purple Heart", "sodium thiopental", "phenobarbitone"]}, {"answer": "purpose", "hint": "synonyms for purpose", "clues": ["role", "use", "aim", "determination", "design", "function", "intent", "intention", "purpose"]}, {"answer": "pursuit", "hint": "synonyms for pursuit", "clues": ["interest", "quest", "spare-time activity", "pursuance", "pursual", "pastime", "hobby", "chase", "avocation", "following", "by-line", "sideline", "pursuit"]}, {"answer": "purulence", "hint": "synonyms for purulence", "clues": ["ichor", "sanies", "purulency", "festering", "pus", "suppuration"]}, {"answer": "pus", "hint": "synonyms for pus", "clues": ["Pus", "sanies", "atomic number 94", "festering", "suppuration", "Pansa", "ichor", "purulence", "plutonium"]}, {"answer": "push", "hint": "synonyms for push", "clues": ["pushing", "button", "push button", "energy", "thrust", "get-up-and-go"]}, {"answer": "pushchair", "hint": "synonyms for pushchair", "clues": ["pusher", "go-cart", "carriage", "baby carriage", "baby buggy", "pram", "stroller", "perambulator", "pushchair"]}, {"answer": "pusher", "hint": "synonyms for pusher", "clues": ["perambulator", "zori", "thruster", "peddler", "carriage", "pushchair", "baby carriage", "baby buggy", "drug peddler", "shover", "pram", "stroller", "go-cart", "drug dealer", "drug trafficker", "pusher"]}, {"answer": "pushover", "hint": "synonyms for pushover", "clues": ["snap", "cinch", "child's play", "picnic", "piece of cake", "walkover", "duck soup", "breeze", "pushover"]}, {"answer": "puss", "hint": "synonyms for puss", "clues": ["Pus", "sanies", "slit", "cunt", "festering", "suppuration", "Pansa", "ichor", "pussy", "snatch", "purulence", "twat"]}, {"answer": "put-on", "hint": "synonyms for put-on", "clues": ["fraudulence", "travesty", "prank", "antic", "spoof", "humbug", "dupery", "fraud", "charade", "pasquinade", "mockery", "sendup", "takeoff", "burlesque", "hoax", "joke", "trick", "parody", "lampoon", "caper", "put-on"]}, {"answer": "putrefaction", "hint": "synonyms for putrefaction", "clues": ["corruption", "depravation", "depravity", "decomposition", "degeneracy", "rot", "rotting", "putrefaction"]}, {"answer": "putz", "hint": "synonyms for putz", "clues": ["peter", "shaft", "cock", "pecker", "tool", "prick", "dick", "putz"]}, {"answer": "puzzlement", "hint": "synonyms for puzzlement", "clues": ["mystification", "bewilderment", "befuddlement", "obfuscation", "bemusement", "bafflement", "puzzlement"]}, {"answer": "pyramidal_bone", "hint": "synonyms for pyramidal bone", "clues": ["triquetral", "triquetral bone", "cuneiform bone", "os triquetrum", "pyramidal bone"]}, {"answer": "pyrexia", "hint": "synonyms for pyrexia", "clues": ["febricity", "fever", "feverishness", "pyrexia"]}, {"answer": "pyridoxal", "hint": "synonyms for pyridoxal", "clues": ["adermin", "pyridoxine", "vitamin B6", "pyridoxal"]}, {"answer": "pyridoxamine", "hint": "synonyms for pyridoxamine", "clues": ["adermin", "pyridoxine", "pyridoxal", "vitamin B6"]}, {"answer": "pyridoxine", "hint": "synonyms for pyridoxine", "clues": ["adermin", "pyridoxamine", "pyridoxal", "vitamin B6"]}, {"answer": "qaddafi", "hint": "synonyms for qaddafi", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "qadhafi", "hint": "synonyms for qadhafi", "clues": ["Muammar el-Qaddafi", "Gaddafi", "Qadhafi", "Khadafy"]}, {"answer": "qaeda", "hint": "synonyms for qaeda", "clues": ["al-Qa'ida", "al-Qaeda", "Qaeda", "Base"]}, {"answer": "qat", "hint": "synonyms for qat", "clues": ["kat", "Arabian tea", "African tea", "quat", "cat"]}, {"answer": "qatar", "hint": "synonyms for qatar", "clues": ["Katar", "Qatar", "State of Katar", "Qatar Peninsula"]}, {"answer": "qin", "hint": "synonyms for qin", "clues": ["Ch'in", "Qin dynasty", "Ch'in dynasty", "Qin"]}, {"answer": "qin_dynasty", "hint": "synonyms for qin dynasty", "clues": ["Ch'in", "Qin dynasty", "Ch'in dynasty", "Qin"]}, {"answer": "qing", "hint": "synonyms for qing", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "qing_dynasty", "hint": "synonyms for qing dynasty", "clues": ["Manchu dynasty", "Qing", "Qing dynasty", "Manchu", "Ch'ing", "Ch'ing dynasty"]}, {"answer": "quad", "hint": "synonyms for quad", "clues": ["quadriceps", "quadrangle", "musculus quadriceps femoris", "quadriceps femoris", "quadruplet", "space", "quad"]}, {"answer": "quadruplet", "hint": "synonyms for quadruplet", "clues": ["IV", "Little Joe", "four", "quaternion", "quartet", "4", "tetrad", "quaternity", "quad", "quadruple", "quatern", "foursome", "quaternary"]}, {"answer": "quag", "hint": "synonyms for quag", "clues": ["quagmire", "slack", "morass", "mire", "quag"]}, {"answer": "quagmire", "hint": "synonyms for quagmire", "clues": ["quag", "slack", "morass", "mire", "quagmire"]}, {"answer": "quakers", "hint": "synonyms for quakers", "clues": ["Friend", "Quakers", "Society of Friends", "Religious Society of Friends", "trembler"]}, {"answer": "qualifying", "hint": "synonyms for qualifying", "clues": ["modification", "pass", "limiting", "qualifying"]}, {"answer": "qualm", "hint": "synonyms for qualm", "clues": ["scruple", "queasiness", "squeamishness", "misgiving", "qualm"]}, {"answer": "quarrel", "hint": "synonyms for quarrel", "clues": ["words", "wrangle", "run-in", "dustup", "row", "quarrel"]}, {"answer": "quarry", "hint": "synonyms for quarry", "clues": ["target", "fair game", "stone pit", "prey", "pit", "quarry"]}, {"answer": "quarter", "hint": "synonyms for quarter", "clues": ["stern", "poop", "twenty-five percent", "fourth", "tail", "quartern", "one-fourth", "one-quarter", "after part", "fourth part"]}, {"answer": "quartern", "hint": "synonyms for quartern", "clues": ["twenty-five percent", "one-fourth", "one-quarter", "fourth", "quarter", "fourth part"]}, {"answer": "quarters", "hint": "synonyms for quarters", "clues": ["stern", "poop", "twenty-five percent", "fourth", "quarter", "tail", "living quarters", "one-fourth", "one-quarter", "after part", "fourth part"]}, {"answer": "quartet", "hint": "synonyms for quartet", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "4", "tetrad", "quartette", "quaternity", "quatern", "foursome", "quaternary"]}, {"answer": "quartz", "hint": "synonyms for quartz", "clues": ["lechatelierite", "quartz glass", "vitreous silica", "crystal", "quartz"]}, {"answer": "quartz_glass", "hint": "synonyms for quartz glass", "clues": ["lechatelierite", "vitreous silica", "quartz", "crystal", "quartz glass"]}, {"answer": "quat", "hint": "synonyms for quat", "clues": ["kat", "Arabian tea", "African tea", "cat", "qat"]}, {"answer": "quatern", "hint": "synonyms for quatern", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quaternity", "foursome", "quaternary", "quatern"]}, {"answer": "quaternion", "hint": "synonyms for quaternion", "clues": ["IV", "Little Joe", "four", "quadruplet", "quartet", "4", "tetrad", "quaternity", "quatern", "foursome", "quaternary", "quaternion"]}, {"answer": "quaternity", "hint": "synonyms for quaternity", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "4", "tetrad", "quatern", "foursome", "quaternary", "quaternity"]}, {"answer": "queasiness", "hint": "synonyms for queasiness", "clues": ["qualm", "uneasiness", "restlessness", "squeamishness"]}, {"answer": "queen", "hint": "synonyms for queen", "clues": ["king", "female monarch", "nance", "queen regnant", "fairy", "fag", "poove", "queer", "faggot", "pansy", "world-beater", "pouf", "poof", "queen"]}, {"answer": "queens", "hint": "synonyms for queens", "clues": ["king", "female monarch", "Queens", "nance", "faggot", "pansy", "pouf", "poof", "queen regnant", "fairy", "fag", "poove", "queer", "world-beater"]}, {"answer": "queer_bird", "hint": "synonyms for queer bird", "clues": ["odd fish", "queer duck", "odd fellow", "kook", "odd man out", "queer bird"]}, {"answer": "queer_duck", "hint": "synonyms for queer duck", "clues": ["odd fish", "odd fellow", "kook", "odd man out", "queer bird", "queer duck"]}, {"answer": "queerness", "hint": "synonyms for queerness", "clues": ["quirk", "gayness", "homosexualism", "quirkiness", "oddity", "homosexuality", "homoeroticism", "crotchet", "queerness"]}, {"answer": "querier", "hint": "synonyms for querier", "clues": ["asker", "inquirer", "questioner", "querier"]}, {"answer": "query", "hint": "synonyms for query", "clues": ["enquiry", "interrogation", "question", "query"]}, {"answer": "question", "hint": "synonyms for question", "clues": ["doubt", "inquiry", "interrogative sentence", "head", "dubiousness", "doubtfulness", "motion", "interrogation", "query", "interrogative", "question"]}, {"answer": "questioner", "hint": "synonyms for questioner", "clues": ["asker", "inquirer", "querier", "questioner"]}, {"answer": "quicklime", "hint": "synonyms for quicklime", "clues": ["calcined lime", "calcium oxide", "calx", "burnt lime", "fluxing lime", "unslaked lime", "lime", "quicklime"]}, {"answer": "quickness", "hint": "synonyms for quickness", "clues": ["quick-wittedness", "facility", "deftness", "celerity", "speediness", "mental quickness", "adroitness", "rapidness", "adeptness", "rapidity", "quickness"]}, {"answer": "quid", "hint": "synonyms for quid", "clues": ["plug", "pound", "cud", "pound sterling", "British pound", "wad", "quid pro quo", "chew", "British pound sterling", "chaw", "quid"]}, {"answer": "quietness", "hint": "synonyms for quietness", "clues": ["soundlessness", "tranquility", "quietude", "quietness"]}, {"answer": "quietus", "hint": "synonyms for quietus", "clues": ["eternal rest", "eternal sleep", "rest", "sleep", "quietus"]}, {"answer": "quincke's_edema", "hint": "synonyms for quincke's edema", "clues": ["angioedema", "giant hives", "periodic edema", "atrophedema", "Quincke's edema"]}, {"answer": "quint", "hint": "synonyms for quint", "clues": ["V", "quintuplet", "Phoebe", "quin", "five", "5", "quintet", "Little Phoebe", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "quintal", "hint": "synonyms for quintal", "clues": ["centner", "cental", "cwt", "hundredweight", "short hundredweight", "quintal"]}, {"answer": "quintet", "hint": "synonyms for quintet", "clues": ["V", "quintuplet", "Phoebe", "cinque", "five", "5", "quint", "Little Phoebe", "pentad", "quintette", "fin", "fivesome"]}, {"answer": "quintuplet", "hint": "synonyms for quintuplet", "clues": ["V", "Phoebe", "quintette", "quin", "five", "5", "quintuple", "Little Phoebe", "pentad", "cinque", "fin", "fivesome"]}, {"answer": "quip", "hint": "synonyms for quip", "clues": ["epigram", "crack", "wisecrack", "sally", "quip"]}, {"answer": "quirk", "hint": "synonyms for quirk", "clues": ["oddity", "quirkiness", "queerness", "crotchet", "quirk"]}, {"answer": "quirkiness", "hint": "synonyms for quirkiness", "clues": ["oddity", "queerness", "quirk", "crotchet", "quirkiness"]}, {"answer": "quite_a_little", "hint": "synonyms for quite a little", "clues": ["great deal", "mint", "peck", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "quite a little"]}, {"answer": "quiver", "hint": "synonyms for quiver", "clues": ["thrill", "shaking", "vibration", "quivering", "shiver", "shakiness", "trembling", "palpitation", "frisson", "chill", "shudder", "tingle"]}, {"answer": "quivering", "hint": "synonyms for quivering", "clues": ["shaking", "vibration", "quiver", "shakiness", "trembling", "palpitation"]}, {"answer": "quotation", "hint": "synonyms for quotation", "clues": ["mention", "cite", "reference", "quote", "credit", "acknowledgment", "citation", "quotation"]}, {"answer": "quote", "hint": "synonyms for quote", "clues": ["quotation mark", "quotation", "citation", "inverted comma", "quote"]}, {"answer": "quran", "hint": "synonyms for quran", "clues": ["Koran", "Book", "Quran", "al-Qur'an"]}, {"answer": "r", "hint": "synonyms for r", "clues": ["universal gas constant", "radius", "roentgen", "gas constant", "R"]}, {"answer": "r-2", "hint": "synonyms for r-2", "clues": ["Mexican valium", "roach", "circle", "rope", "forget me drug", "roofy", "rophy", "R-2"]}, {"answer": "r._b._cattell", "hint": "synonyms for r. b. cattell", "clues": ["R. B. Cattell", "Ray Cattell", "Raymond B. Cattell", "Cattell", "Raymond Bernard Cattell"]}, {"answer": "ra", "hint": "synonyms for ra", "clues": ["atomic number 88", "Re", "Ra", "celestial longitude", "right ascension", "radium"]}, {"answer": "rabbit_fever", "hint": "synonyms for rabbit fever", "clues": ["yatobyo", "tularaemia", "deer fly fever", "rabbit fever"]}, {"answer": "rabble", "hint": "synonyms for rabble", "clues": ["ragtag and bobtail", "rout", "riffraff", "mob", "ragtag", "rabble"]}, {"answer": "race", "hint": "synonyms for race", "clues": ["wash", "subspecies", "slipstream", "airstream", "raceway", "backwash", "race"]}, {"answer": "racer", "hint": "synonyms for racer", "clues": ["race driver", "automobile driver", "race car", "racing car", "racer"]}, {"answer": "raceway", "hint": "synonyms for raceway", "clues": ["race", "racetrack", "racecourse", "track", "raceway"]}, {"answer": "rachis", "hint": "synonyms for rachis", "clues": ["vertebral column", "spinal column", "spine", "back", "backbone", "rachis"]}, {"answer": "raciness", "hint": "synonyms for raciness", "clues": ["gaminess", "ribaldry", "spiciness", "pungency", "bite", "sharpness", "raciness"]}, {"answer": "rack", "hint": "synonyms for rack", "clues": ["stand", "single-foot", "wrack", "wheel"]}, {"answer": "racket", "hint": "synonyms for racket", "clues": ["dissonance", "fraudulent scheme", "noise", "racquet", "illegitimate enterprise", "racket"]}, {"answer": "racketeer_influenced_and_corrupt_organizations_act", "hint": "synonyms for racketeer influenced and corrupt organizations act", "clues": ["RICO Act", "Racketeer Influenced and Corrupt Organizations Act", "RICO", "anti-racketeering law"]}, {"answer": "radiance", "hint": "synonyms for radiance", "clues": ["glow", "refulgency", "radiancy", "shine", "effulgence"]}, {"answer": "radiancy", "hint": "synonyms for radiancy", "clues": ["refulgency", "shine", "radiance", "effulgence"]}, {"answer": "radiation", "hint": "synonyms for radiation", "clues": ["irradiation", "actinotherapy", "radioactivity", "radiation therapy", "radiotherapy", "radiation syndrome", "radiation sickness"]}, {"answer": "radiation_therapy", "hint": "synonyms for radiation therapy", "clues": ["radiotherapy", "irradiation", "actinotherapy", "radiation therapy"]}, {"answer": "radio_receiver", "hint": "synonyms for radio receiver", "clues": ["radio set", "radio", "wireless", "tuner", "receiving set", "radio receiver"]}, {"answer": "radio_set", "hint": "synonyms for radio set", "clues": ["radio receiver", "radio", "wireless", "tuner", "receiving set", "radio set"]}, {"answer": "radiocarpal_joint", "hint": "synonyms for radiocarpal joint", "clues": ["carpus", "wrist", "articulatio radiocarpea", "wrist joint", "radiocarpal joint"]}, {"answer": "radiogram", "hint": "synonyms for radiogram", "clues": ["radiograph", "shadowgraph", "skiagram", "skiagraph", "radiogram"]}, {"answer": "radiograph", "hint": "synonyms for radiograph", "clues": ["shadowgraph", "skiagram", "radiogram", "skiagraph", "radiograph"]}, {"answer": "radiotherapy", "hint": "synonyms for radiotherapy", "clues": ["irradiation", "actinotherapy", "radiation therapy", "radiotherapy"]}, {"answer": "raft", "hint": "synonyms for raft", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "raft"]}, {"answer": "rafts", "hint": "synonyms for rafts", "clues": ["mint", "peck", "quite a little", "tons", "deal", "mountain", "gobs", "stack", "lot", "slews", "heaps", "raft", "batch", "mess", "wads", "plenty", "sight", "muckle", "mickle", "mass", "loads", "piles", "great deal", "hatful", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "scads", "scores", "flock"]}, {"answer": "rag", "hint": "synonyms for rag", "clues": ["tag", "tatter", "ragtime", "tabloid", "shred", "sheet", "tag end", "rag week", "rag"]}, {"answer": "rag_trade", "hint": "synonyms for rag trade", "clues": ["fashion business", "apparel industry", "garment industry", "fashion industry", "rag trade"]}, {"answer": "ragbag", "hint": "synonyms for ragbag", "clues": ["melange", "odds and ends", "hodgepodge", "gallimaufry", "oddments", "farrago", "hotchpotch", "mingle-mangle", "omnium-gatherum", "mishmash", "ragbag"]}, {"answer": "rage", "hint": "synonyms for rage", "clues": ["madness", "furore", "craze", "cult", "fury", "fad", "passion", "rage"]}, {"answer": "ragpicker's_disease", "hint": "synonyms for ragpicker's disease", "clues": ["pulmonary anthrax", "woolsorter's disease", "ragsorter's disease", "woolsorter's pneumonia", "anthrax pneumonia", "inhalation anthrax", "ragpicker's disease"]}, {"answer": "ragsorter's_disease", "hint": "synonyms for ragsorter's disease", "clues": ["pulmonary anthrax", "woolsorter's disease", "woolsorter's pneumonia", "anthrax pneumonia", "inhalation anthrax", "ragpicker's disease", "ragsorter's disease"]}, {"answer": "raider", "hint": "synonyms for raider", "clues": ["pillager", "plunderer", "freebooter", "despoiler", "looter", "raider"]}, {"answer": "rail", "hint": "synonyms for rail", "clues": ["rails", "runway", "railing", "track"]}, {"answer": "railroad", "hint": "synonyms for railroad", "clues": ["railroad track", "railway", "railway system", "railway line", "railroad line", "railroad"]}, {"answer": "railroad_line", "hint": "synonyms for railroad line", "clues": ["railroad", "railway line", "railway", "railway system", "railroad line"]}, {"answer": "railroad_man", "hint": "synonyms for railroad man", "clues": ["railroader", "railway man", "trainman", "railroad man"]}, {"answer": "railroad_station", "hint": "synonyms for railroad station", "clues": ["train depot", "train station", "railway station", "railroad terminal", "railroad station"]}, {"answer": "railroad_terminal", "hint": "synonyms for railroad terminal", "clues": ["train depot", "train station", "railway station", "railroad station", "railroad terminal"]}, {"answer": "railroader", "hint": "synonyms for railroader", "clues": ["railway man", "trainman", "railroad man", "railroader"]}, {"answer": "railway", "hint": "synonyms for railway", "clues": ["railroad track", "railway system", "railroad", "railway line", "railroad line", "railway"]}, {"answer": "railway_line", "hint": "synonyms for railway line", "clues": ["railway", "railway system", "rail line", "railroad", "line", "railroad line"]}, {"answer": "railway_man", "hint": "synonyms for railway man", "clues": ["railroader", "trainman", "railroad man", "railwayman"]}, {"answer": "railway_station", "hint": "synonyms for railway station", "clues": ["railroad terminal", "train depot", "train station", "railroad station", "railway station"]}, {"answer": "railway_system", "hint": "synonyms for railway system", "clues": ["railroad", "railway", "railway line", "railroad line", "railway system"]}, {"answer": "railwayman", "hint": "synonyms for railwayman", "clues": ["railroader", "railway man", "trainman", "railroad man"]}, {"answer": "rainfly", "hint": "synonyms for rainfly", "clues": ["fly sheet", "tent flap", "tent-fly", "fly", "rainfly"]}, {"answer": "raise", "hint": "synonyms for raise", "clues": ["climb", "lift", "acclivity", "heave", "salary increase", "rise", "hike", "ascent", "wage increase", "upgrade", "wage hike"]}, {"answer": "raiser", "hint": "synonyms for raiser", "clues": ["grower", "agriculturist", "cultivator", "raiser"]}, {"answer": "rake", "hint": "synonyms for rake", "clues": ["rakehell", "blood", "profligate", "roue", "pitch", "slant", "rip", "rake"]}, {"answer": "rakehell", "hint": "synonyms for rakehell", "clues": ["blood", "profligate", "roue", "rake", "rip", "rakehell"]}, {"answer": "raleigh", "hint": "synonyms for raleigh", "clues": ["Sir Walter Ralegh", "Ralegh", "capital of North Carolina", "Walter Raleigh"]}, {"answer": "rallying_cry", "hint": "synonyms for rallying cry", "clues": ["watchword", "war whoop", "cry", "war cry", "battle cry", "rallying cry"]}, {"answer": "ram", "hint": "synonyms for ram", "clues": ["read/write memory", "Ram", "Aries", "Aries the Ram", "random memory", "random access memory"]}, {"answer": "ramification", "hint": "synonyms for ramification", "clues": ["branch", "leg", "fork", "complication", "ramification"]}, {"answer": "ramjet", "hint": "synonyms for ramjet", "clues": ["atherodyde", "athodyd", "ramjet engine", "flying drainpipe", "ramjet"]}, {"answer": "ramjet_engine", "hint": "synonyms for ramjet engine", "clues": ["atherodyde", "athodyd", "ramjet", "flying drainpipe", "ramjet engine"]}, {"answer": "rancor", "hint": "synonyms for rancor", "clues": ["bitterness", "rancour", "gall", "resentment"]}, {"answer": "rancour", "hint": "synonyms for rancour", "clues": ["bitterness", "rancor", "gall", "resentment"]}, {"answer": "rand", "hint": "synonyms for rand", "clues": ["Witwatersrand", "Ayn Rand", "Rand", "Reef"]}, {"answer": "random-access_memory", "hint": "synonyms for random-access memory", "clues": ["read/write memory", "random access memory", "random memory", "RAM"]}, {"answer": "random_access_memory", "hint": "synonyms for random access memory", "clues": ["random-access memory", "random memory", "read/write memory", "RAM"]}, {"answer": "random_memory", "hint": "synonyms for random memory", "clues": ["random-access memory", "read/write memory", "RAM", "random memory"]}, {"answer": "random_variable", "hint": "synonyms for random variable", "clues": ["variant", "stochastic variable", "chance variable", "random variable"]}, {"answer": "randomness", "hint": "synonyms for randomness", "clues": ["noise", "haphazardness", "stochasticity", "entropy", "S", "randomness"]}, {"answer": "range", "hint": "synonyms for range", "clues": ["ambit", "kitchen range", "cooking stove", "kitchen stove", "mountain chain", "grasp", "orbit", "mountain range", "reach", "stove", "chain", "compass", "scope", "image", "range of mountains", "range of a function", "chain of mountains", "range"]}, {"answer": "range_of_mountains", "hint": "synonyms for range of mountains", "clues": ["mountain chain", "range", "mountain range", "chain", "chain of mountains", "range of mountains"]}, {"answer": "ranger", "hint": "synonyms for ranger", "clues": ["Texas Ranger", "commando", "fire warden", "forest fire fighter", "Ranger"]}, {"answer": "ranier", "hint": "synonyms for ranier", "clues": ["Mount Ranier", "Mount Tacoma", "Mt. Ranier", "Ranier"]}, {"answer": "rankness", "hint": "synonyms for rankness", "clues": ["malodorousness", "fertility", "stinkiness", "fetidness", "prolificacy", "richness", "foulness", "rankness"]}, {"answer": "rant", "hint": "synonyms for rant", "clues": ["fustian", "ranting", "bombast", "harangue", "blah", "claptrap"]}, {"answer": "rap", "hint": "synonyms for rap", "clues": ["rap music", "belt", "hip-hop", "strike", "pat", "tap", "whang", "knock", "whack", "blame", "rap"]}, {"answer": "rap_sheet", "hint": "synonyms for rap sheet", "clues": ["day book", "charge sheet", "blotter", "police blotter", "rap sheet"]}, {"answer": "rapaciousness", "hint": "synonyms for rapaciousness", "clues": ["voraciousness", "esurience", "greediness", "rapacity", "edacity", "voracity", "rapaciousness"]}, {"answer": "rapacity", "hint": "synonyms for rapacity", "clues": ["voraciousness", "greed", "rapaciousness", "esurience", "avarice", "avaritia", "edacity", "voracity", "covetousness", "rapacity"]}, {"answer": "rape", "hint": "synonyms for rape", "clues": ["ravishment", "rapine", "assault", "violation", "rape"]}, {"answer": "rapid_eye_movement", "hint": "synonyms for rapid eye movement", "clues": ["rapid eye movement sleep", "paradoxical sleep", "REM", "REM sleep"]}, {"answer": "rapid_eye_movement_sleep", "hint": "synonyms for rapid eye movement sleep", "clues": ["rapid eye movement", "paradoxical sleep", "REM", "REM sleep"]}, {"answer": "rapidity", "hint": "synonyms for rapidity", "clues": ["celerity", "speediness", "quickness", "rapidness", "rapidity"]}, {"answer": "rapidness", "hint": "synonyms for rapidness", "clues": ["celerity", "speediness", "quickness", "rapidity", "rapidness"]}, {"answer": "rapscallion", "hint": "synonyms for rapscallion", "clues": ["scallywag", "rascal", "varlet", "rogue", "scalawag", "monkey", "scamp", "knave", "imp", "rapscallion"]}, {"answer": "rapture", "hint": "synonyms for rapture", "clues": ["transport", "ecstasy", "exaltation", "raptus", "rapture"]}, {"answer": "raptus", "hint": "synonyms for raptus", "clues": ["transport", "ecstasy", "ictus", "rapture", "exaltation", "seizure", "raptus"]}, {"answer": "rare-earth_element", "hint": "synonyms for rare-earth element", "clues": ["lanthanide", "lanthanon", "rare earth", "rare-earth element"]}, {"answer": "rare_earth", "hint": "synonyms for rare earth", "clues": ["lanthanide", "lanthanon", "rare-earth element", "rare earth"]}, {"answer": "rarity", "hint": "synonyms for rarity", "clues": ["rareness", "tenuity", "curiosity", "low density", "peculiarity", "oddity", "oddment", "infrequency", "curio", "rarity"]}, {"answer": "ras", "hint": "synonyms for ras", "clues": ["atomic number 88", "Re", "celestial longitude", "reticular activating system", "radium", "RAS", "right ascension"]}, {"answer": "rascal", "hint": "synonyms for rascal", "clues": ["scallywag", "varlet", "rogue", "scalawag", "monkey", "scamp", "knave", "rapscallion", "imp", "rascal"]}, {"answer": "rascality", "hint": "synonyms for rascality", "clues": ["mischief-making", "devilry", "slipperiness", "shenanigan", "roguishness", "mischief", "shiftiness", "mischievousness", "roguery", "prankishness", "devilment", "trickiness", "rascality"]}, {"answer": "rashness", "hint": "synonyms for rashness", "clues": ["heedlessness", "mindlessness", "foolhardiness", "recklessness", "rashness"]}, {"answer": "raspberry", "hint": "synonyms for raspberry", "clues": ["bird", "snort", "boo", "hoot", "Bronx cheer", "razzing", "hiss", "raspberry"]}, {"answer": "rat", "hint": "synonyms for rat", "clues": ["stinkpot", "scum bag", "dirty dog", "lowlife", "stinker", "betrayer", "git", "scab", "strikebreaker", "bum", "so-and-so", "crumb", "blackleg", "informer", "puke", "blabber", "rotter", "skunk", "squealer", "rat"]}, {"answer": "rating", "hint": "synonyms for rating", "clues": ["paygrade", "valuation", "military rank", "rating"]}, {"answer": "ratsbane", "hint": "synonyms for ratsbane", "clues": ["arsenic trioxide", "arsenous oxide", "arsenous anhydride", "arsenic", "white arsenic", "ratsbane"]}, {"answer": "ratter", "hint": "synonyms for ratter", "clues": ["turncoat", "deserter", "apostate", "renegade", "recreant", "ratter"]}, {"answer": "rau-sed", "hint": "synonyms for rau-sed", "clues": ["reserpine", "Serpasil", "Sandril", "Raudixin", "Rau-Sed"]}, {"answer": "raudixin", "hint": "synonyms for raudixin", "clues": ["reserpine", "Serpasil", "Sandril", "Raudixin", "Rau-Sed"]}, {"answer": "raunch", "hint": "synonyms for raunch", "clues": ["vulgarism", "grossness", "coarseness", "vulgarity", "commonness", "raunch"]}, {"answer": "ravel", "hint": "synonyms for ravel", "clues": ["Maurice Ravel", "ladder", "run", "Ravel"]}, {"answer": "ravenousness", "hint": "synonyms for ravenousness", "clues": ["voraciousness", "esurience", "edacity", "voracity", "ravenousness"]}, {"answer": "ravisher", "hint": "synonyms for ravisher", "clues": ["stunner", "debaucher", "looker", "smasher", "violator", "knockout", "peach", "mantrap", "sweetheart", "dish", "beauty", "lulu", "ravisher"]}, {"answer": "ravishment", "hint": "synonyms for ravishment", "clues": ["assault", "rape", "entrancement", "violation", "ravishment"]}, {"answer": "raw_sienna", "hint": "synonyms for raw sienna", "clues": ["caramel brown", "caramel", "yellowish brown", "buff", "raw sienna"]}, {"answer": "rawness", "hint": "synonyms for rawness", "clues": ["soreness", "tenderness", "incompleteness", "inexperience", "rawness"]}, {"answer": "ray", "hint": "synonyms for ray", "clues": ["beam of light", "shaft of light", "ray of light", "beam", "light beam", "shaft", "irradiation", "re", "electron beam", "ray"]}, {"answer": "ray_cattell", "hint": "synonyms for ray cattell", "clues": ["R. B. Cattell", "Ray Cattell", "Raymond B. Cattell", "Cattell", "Raymond Bernard Cattell"]}, {"answer": "ray_of_light", "hint": "synonyms for ray of light", "clues": ["shaft", "irradiation", "ray", "shaft of light", "beam of light", "beam", "light beam", "ray of light"]}, {"answer": "ray_robinson", "hint": "synonyms for ray robinson", "clues": ["Sugar Ray Robinson", "Walker Smith", "Ray Robinson", "Robinson"]}, {"answer": "rayleigh", "hint": "synonyms for rayleigh", "clues": ["Rayleigh", "Lord Rayleigh", "Third Baron Rayleigh", "John William Strutt"]}, {"answer": "raymond_b._cattell", "hint": "synonyms for raymond b. cattell", "clues": ["R. B. Cattell", "Ray Cattell", "Raymond B. Cattell", "Cattell", "Raymond Bernard Cattell"]}, {"answer": "raymond_bernard_cattell", "hint": "synonyms for raymond bernard cattell", "clues": ["R. B. Cattell", "Ray Cattell", "Raymond B. Cattell", "Cattell", "Raymond Bernard Cattell"]}, {"answer": "rayon_stocking", "hint": "synonyms for rayon stocking", "clues": ["rayons", "nylons", "nylon stocking", "silk stocking"]}, {"answer": "rayons", "hint": "synonyms for rayons", "clues": ["rayon stocking", "silk stocking", "nylons", "rayon"]}, {"answer": "razing", "hint": "synonyms for razing", "clues": ["wrecking", "tearing down", "demolishing", "leveling", "razing"]}, {"answer": "razz", "hint": "synonyms for razz", "clues": ["bird", "boo", "hoot", "raspberry", "Bronx cheer", "razzing", "snort", "hiss"]}, {"answer": "razzing", "hint": "synonyms for razzing", "clues": ["bird", "snort", "boo", "hoot", "raspberry", "Bronx cheer", "razz", "hiss"]}, {"answer": "re", "hint": "synonyms for re", "clues": ["rhenium", "Re", "Ra", "atomic number 75", "ray"]}, {"answer": "reach", "hint": "synonyms for reach", "clues": ["ambit", "range", "stretch", "grasp", "reaching", "orbit", "compass", "scope"]}, {"answer": "read/write_memory", "hint": "synonyms for read/write memory", "clues": ["random-access memory", "random memory", "RAM", "read/write memory"]}, {"answer": "reader", "hint": "synonyms for reader", "clues": ["reviewer", "lecturer", "subscriber", "lector", "proofreader", "referee", "reader"]}, {"answer": "readiness", "hint": "synonyms for readiness", "clues": ["forwardness", "set", "preparation", "facility", "eagerness", "preparedness", "zeal", "readiness"]}, {"answer": "reading", "hint": "synonyms for reading", "clues": ["Reading", "interpretation", "version", "reading material", "recitation", "indication", "meter reading", "recital"]}, {"answer": "reagan", "hint": "synonyms for reagan", "clues": ["Ronald Wilson Reagan", "President Reagan", "Reagan", "Ronald Reagan"]}, {"answer": "real_estate_agent", "hint": "synonyms for real estate agent", "clues": ["land agent", "real estate broker", "estate agent", "house agent", "real estate agent"]}, {"answer": "real_estate_broker", "hint": "synonyms for real estate broker", "clues": ["land agent", "estate agent", "real estate agent", "house agent", "real estate broker"]}, {"answer": "real_ira", "hint": "synonyms for real ira", "clues": ["RIRA", "Real Irish Republican Army", "Real IRA", "Dissident Irish Republican Army"]}, {"answer": "real_irish_republican_army", "hint": "synonyms for real irish republican army", "clues": ["RIRA", "Real Irish Republican Army", "Real IRA", "Dissident Irish Republican Army"]}, {"answer": "realisation", "hint": "synonyms for realisation", "clues": ["actualization", "realization", "recognition", "fruition"]}, {"answer": "realism", "hint": "synonyms for realism", "clues": ["Platonism", "realness", "naturalism", "naive realism", "pragmatism", "reality", "realism"]}, {"answer": "realization", "hint": "synonyms for realization", "clues": ["actualization", "recognition", "fruition", "realisation"]}, {"answer": "rear_end", "hint": "synonyms for rear end", "clues": ["fundament", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "rear end"]}, {"answer": "reason", "hint": "synonyms for reason", "clues": ["reasonableness", "cause", "grounds", "rationality", "intellect", "understanding", "reason"]}, {"answer": "reasonableness", "hint": "synonyms for reasonableness", "clues": ["tenableness", "moderateness", "tenability", "modestness", "reason", "rationality", "reasonableness"]}, {"answer": "reb", "hint": "synonyms for reb", "clues": ["Johnny", "Reb", "Rebel", "Johnny Reb", "greyback"]}, {"answer": "rebecca_west", "hint": "synonyms for rebecca west", "clues": ["Rebecca West", "Cicily Isabel Fairfield", "Dame Rebecca West", "West"]}, {"answer": "rebel", "hint": "synonyms for rebel", "clues": ["insurrectionist", "Reb", "Rebel", "Johnny Reb", "greyback", "insurgent", "Johnny", "maverick", "freedom fighter"]}, {"answer": "rebellion", "hint": "synonyms for rebellion", "clues": ["insurrection", "rising", "revolt", "rebellion"]}, {"answer": "rebirth", "hint": "synonyms for rebirth", "clues": ["Renaissance", "reincarnation", "metempsychosis", "spiritual rebirth", "renascence", "conversion", "rebirth"]}, {"answer": "rebuke", "hint": "synonyms for rebuke", "clues": ["reproval", "reprehension", "reprimand", "reproof", "rebuke"]}, {"answer": "rebutter", "hint": "synonyms for rebutter", "clues": ["rebuttal", "confuter", "disprover", "refuter", "rebutter"]}, {"answer": "receipts", "hint": "synonyms for receipts", "clues": ["revenue", "reception", "receipt", "gross"]}, {"answer": "receiver", "hint": "synonyms for receiver", "clues": ["receiving system", "telephone receiver", "pass catcher", "pass receiver", "liquidator", "recipient", "receiver"]}, {"answer": "receiving_set", "hint": "synonyms for receiving set", "clues": ["radio set", "radio", "wireless", "tuner", "radio receiver", "receiving set"]}, {"answer": "recent_epoch", "hint": "synonyms for recent epoch", "clues": ["Holocene epoch", "Recent", "Recent epoch", "Holocene"]}, {"answer": "receptive_aphasia", "hint": "synonyms for receptive aphasia", "clues": ["sensory aphasia", "impressive aphasia", "fluent aphasia", "Wernicke's aphasia", "receptive aphasia"]}, {"answer": "recess", "hint": "synonyms for recess", "clues": ["recession", "inlet", "break", "respite", "niche", "time out", "deferral", "corner", "recess"]}, {"answer": "recession", "hint": "synonyms for recession", "clues": ["recess", "recessional", "niche", "receding", "ceding back", "corner"]}, {"answer": "recidivist", "hint": "synonyms for recidivist", "clues": ["backslider", "habitual criminal", "repeater", "reversionist", "recidivist"]}, {"answer": "recital", "hint": "synonyms for recital", "clues": ["reading", "recitation", "yarn", "narration", "recital"]}, {"answer": "recitation", "hint": "synonyms for recitation", "clues": ["class period", "reading", "exercise", "practice session", "drill", "practice", "course session", "recital", "recitation"]}, {"answer": "reckoner", "hint": "synonyms for reckoner", "clues": ["ready reckoner", "estimator", "computer", "calculator", "figurer", "reckoner"]}, {"answer": "reckoning", "hint": "synonyms for reckoning", "clues": ["counting", "calculation", "figuring", "tally", "numeration", "computation", "reckoning"]}, {"answer": "recognition", "hint": "synonyms for recognition", "clues": ["acknowledgement", "realization", "credit", "identification", "recognition"]}, {"answer": "recoil", "hint": "synonyms for recoil", "clues": ["repercussion", "kick", "backlash", "rebound", "recoil"]}, {"answer": "recollection", "hint": "synonyms for recollection", "clues": ["reminiscence", "remembrance", "anamnesis", "recall", "recollection"]}, {"answer": "reconciler", "hint": "synonyms for reconciler", "clues": ["pacifier", "peacemaker", "make-peace", "conciliator", "reconciler"]}, {"answer": "reconditeness", "hint": "synonyms for reconditeness", "clues": ["obscurity", "abstrusity", "profundity", "obscureness", "abstruseness", "profoundness", "reconditeness"]}, {"answer": "record", "hint": "synonyms for record", "clues": ["platter", "track record", "disc", "book", "phonograph recording", "criminal record", "disk", "record book", "record"]}, {"answer": "recorder", "hint": "synonyms for recorder", "clues": ["registrar", "record-keeper", "fipple pipe", "recording machine", "recording equipment", "vertical flute", "fipple flute", "recorder"]}, {"answer": "rector", "hint": "synonyms for rector", "clues": ["minister of religion", "curate", "parson", "pastor", "minister", "rector"]}, {"answer": "red_cent", "hint": "synonyms for red cent", "clues": ["shucks", "shit", "darn", "hoot", "tinker's damn", "damn", "red cent"]}, {"answer": "red_china", "hint": "synonyms for red china", "clues": ["China", "Cathay", "Communist China", "mainland China", "PRC", "Red China", "People's Republic of China"]}, {"answer": "redact", "hint": "synonyms for redact", "clues": ["rewriter", "rewrite man", "reviser", "redactor"]}, {"answer": "redactor", "hint": "synonyms for redactor", "clues": ["rewriter", "rewrite man", "redact", "reviser"]}, {"answer": "reddish_brown", "hint": "synonyms for reddish brown", "clues": ["Venetian red", "sepia", "mahogany", "burnt sienna", "reddish brown"]}, {"answer": "redeemer", "hint": "synonyms for redeemer", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "redolence", "hint": "synonyms for redolence", "clues": ["sweetness", "bouquet", "fragrance", "redolence"]}, {"answer": "redress", "hint": "synonyms for redress", "clues": ["remediation", "amends", "indemnification", "damages", "indemnity", "remedy", "restitution", "redress"]}, {"answer": "reduction", "hint": "synonyms for reduction", "clues": ["decrease", "reducing", "simplification", "step-down", "diminution", "reduction"]}, {"answer": "reed", "hint": "synonyms for reed", "clues": ["Reed", "John Reed", "beating-reed instrument", "vibrating reed", "Walter Reed", "reed instrument"]}, {"answer": "reefer", "hint": "synonyms for reefer", "clues": ["stick", "marijuana cigarette", "joint", "spliff", "reefer"]}, {"answer": "reek", "hint": "synonyms for reek", "clues": ["fetor", "stink", "mephitis", "stench", "malodor", "reek"]}, {"answer": "reel", "hint": "synonyms for reel", "clues": ["Scottish reel", "spool", "Virginia reel", "bobbin", "reel"]}, {"answer": "reexamination", "hint": "synonyms for reexamination", "clues": ["redirect examination", "review", "follow-up", "reexamination"]}, {"answer": "reference", "hint": "synonyms for reference", "clues": ["mention", "credit", "extension", "citation", "denotation", "book of facts", "consultation", "point of reference", "character reference", "acknowledgment", "reference work", "character", "quotation", "reference point", "computer address", "source", "cite", "address", "reference"]}, {"answer": "refinement", "hint": "synonyms for refinement", "clues": ["shade", "polish", "culture", "nicety", "purification", "civilization", "elaboration", "subtlety", "finish", "cultivation", "refining", "nuance", "refinement"]}, {"answer": "reflection", "hint": "synonyms for reflection", "clues": ["mirror image", "reflexion", "manifestation", "musing", "contemplation", "expression", "observation", "reflectivity", "thoughtfulness", "rumination", "reflection"]}, {"answer": "reflectivity", "hint": "synonyms for reflectivity", "clues": ["reflexion", "coefficient of reflection", "reflectiveness", "reflectance", "reflection", "reflection factor", "reflectivity"]}, {"answer": "reflex_action", "hint": "synonyms for reflex action", "clues": ["unconditioned reflex", "inborn reflex", "reflex response", "instinctive reflex", "innate reflex", "reflex", "physiological reaction", "reflex action"]}, {"answer": "reflex_response", "hint": "synonyms for reflex response", "clues": ["unconditioned reflex", "inborn reflex", "instinctive reflex", "innate reflex", "reflex", "reflex action", "physiological reaction", "reflex response"]}, {"answer": "reflexion", "hint": "synonyms for reflexion", "clues": ["mirror image", "manifestation", "musing", "contemplation", "expression", "observation", "reflection", "reflectivity", "thoughtfulness", "rumination", "reflexion"]}, {"answer": "reformer", "hint": "synonyms for reformer", "clues": ["reformist", "crusader", "social reformer", "meliorist", "reformer"]}, {"answer": "refuge", "hint": "synonyms for refuge", "clues": ["sanctuary", "recourse", "asylum", "safety", "resort", "refuge"]}, {"answer": "refulgence", "hint": "synonyms for refulgence", "clues": ["refulgency", "radiancy", "shine", "effulgence"]}, {"answer": "refuse_collector", "hint": "synonyms for refuse collector", "clues": ["garbage collector", "garbage man", "garbage carter", "dustman", "garbage hauler", "refuse collector"]}, {"answer": "refuse_heap", "hint": "synonyms for refuse heap", "clues": ["garbage heap", "trash pile", "trash heap", "junk heap", "rubbish heap", "scrapheap", "junk pile", "refuse heap"]}, {"answer": "refutal", "hint": "synonyms for refutal", "clues": ["falsification", "disproof", "refutation", "falsifying", "refutal"]}, {"answer": "refutation", "hint": "synonyms for refutation", "clues": ["falsification", "defense", "falsifying", "refutal", "disproof", "refutation"]}, {"answer": "regard", "hint": "synonyms for regard", "clues": ["gaze", "heed", "respect", "compliments", "esteem", "paying attention", "wish", "attentiveness", "regard"]}, {"answer": "region", "hint": "synonyms for region", "clues": ["realm", "part", "neighborhood", "area", "region"]}, {"answer": "registered_representative", "hint": "synonyms for registered representative", "clues": ["customer's man", "account representative", "account executive", "customer's broker", "registered representative"]}, {"answer": "regress", "hint": "synonyms for regress", "clues": ["retroversion", "retrogression", "reasoning backward", "regress"]}, {"answer": "regression", "hint": "synonyms for regression", "clues": ["arrested development", "regression toward the mean", "retrogression", "reversion", "infantile fixation", "simple regression", "regress", "fixation", "statistical regression"]}, {"answer": "regrets", "hint": "synonyms for regrets", "clues": ["sorrow", "ruefulness", "regret", "rue", "declination"]}, {"answer": "regular_convex_polyhedron", "hint": "synonyms for regular convex polyhedron", "clues": ["Platonic solid", "regular convex solid", "Platonic body", "ideal solid", "regular polyhedron", "regular convex polyhedron"]}, {"answer": "regular_convex_solid", "hint": "synonyms for regular convex solid", "clues": ["Platonic solid", "Platonic body", "ideal solid", "regular convex polyhedron", "regular polyhedron", "regular convex solid"]}, {"answer": "regular_polyhedron", "hint": "synonyms for regular polyhedron", "clues": ["Platonic solid", "regular convex solid", "Platonic body", "ideal solid", "regular convex polyhedron", "regular polyhedron"]}, {"answer": "regurgitation", "hint": "synonyms for regurgitation", "clues": ["emesis", "disgorgement", "vomit", "puking", "regurgitation"]}, {"answer": "reich", "hint": "synonyms for reich", "clues": ["Steve Reich", "Wilhelm Reich", "Stephen Michael Reich", "Reich"]}, {"answer": "reinforcement", "hint": "synonyms for reinforcement", "clues": ["support", "reenforcement", "reinforcer", "reward", "reinforcing stimulus", "strengthener"]}, {"answer": "rejoinder", "hint": "synonyms for rejoinder", "clues": ["retort", "counter", "comeback", "riposte", "return", "replication", "rejoinder"]}, {"answer": "relapse", "hint": "synonyms for relapse", "clues": ["relapsing", "reverting", "lapse", "reversion", "backsliding", "relapse"]}, {"answer": "relapsing", "hint": "synonyms for relapsing", "clues": ["reverting", "relapse", "lapse", "reversion", "lapsing", "backsliding"]}, {"answer": "relation", "hint": "synonyms for relation", "clues": ["sexual relation", "coitus", "sexual intercourse", "sex act", "telling", "coition", "sexual congress", "carnal knowledge", "recounting", "congress", "relation back", "intercourse", "copulation", "relative", "relation"]}, {"answer": "relations", "hint": "synonyms for relations", "clues": ["coitus", "sex act", "telling", "coition", "relation", "dealings", "sexual congress", "carnal knowledge", "copulation", "congress", "recounting", "sexual relation", "sexual intercourse", "intercourse", "relation back", "relative"]}, {"answer": "relaxation", "hint": "synonyms for relaxation", "clues": ["repose", "liberalization", "slackening", "ease", "relaxation method", "loosening", "rest", "easiness", "relaxation behavior", "relaxation"]}, {"answer": "relay_link", "hint": "synonyms for relay link", "clues": ["relay station", "booster amplifier", "booster", "relay transmitter", "booster station", "relay link"]}, {"answer": "relay_station", "hint": "synonyms for relay station", "clues": ["relay link", "booster amplifier", "booster", "relay transmitter", "booster station", "relay station"]}, {"answer": "relay_transmitter", "hint": "synonyms for relay transmitter", "clues": ["relay link", "relay station", "booster amplifier", "booster", "booster station", "relay transmitter"]}, {"answer": "release", "hint": "synonyms for release", "clues": ["sacking", "going", "spillage", "tone ending", "dismission", "loss", "waiver", "passing", "acquittance", "discharge", "press release", "outlet", "firing", "vent", "freeing", "exit", "handout", "departure", "expiration", "liberation", "spill", "dismissal", "button", "release"]}, {"answer": "releasing_factor", "hint": "synonyms for releasing factor", "clues": ["hypothalamic releasing factor", "hypothalamic releasing hormone", "RH", "releasing hormone", "RF", "releasing factor"]}, {"answer": "releasing_hormone", "hint": "synonyms for releasing hormone", "clues": ["hypothalamic releasing factor", "hypothalamic releasing hormone", "releasing factor", "RH", "RF", "releasing hormone"]}, {"answer": "relief", "hint": "synonyms for relief", "clues": ["backup", "succour", "substitute", "relievo", "reliever", "backup man", "rest", "easing", "easement", "rest period", "alleviation", "stand-in", "ease", "fill-in", "respite", "sculptural relief", "moderation", "ministration", "embossment", "assuagement", "relief"]}, {"answer": "relief_valve", "hint": "synonyms for relief valve", "clues": ["safety valve", "escape", "escape valve", "escape cock", "relief valve"]}, {"answer": "reliever", "hint": "synonyms for reliever", "clues": ["backup", "stand-in", "fill-in", "substitute", "backup man", "allayer", "fireman", "relief", "comforter", "relief pitcher", "reliever"]}, {"answer": "relievo", "hint": "synonyms for relievo", "clues": ["sculptural relief", "rilievo", "relief", "embossment"]}, {"answer": "relish", "hint": "synonyms for relish", "clues": ["flavour", "nip", "zest", "sapidity", "zestfulness", "savor", "smack", "tang", "gusto", "relish"]}, {"answer": "relishing", "hint": "synonyms for relishing", "clues": ["savoring", "tasting", "degustation", "relishing"]}, {"answer": "reluctance", "hint": "synonyms for reluctance", "clues": ["indisposition", "hesitancy", "disinclination", "hesitation", "reluctance"]}, {"answer": "rem", "hint": "synonyms for rem", "clues": ["REM sleep", "rapid eye movement sleep", "REM", "paradoxical sleep"]}, {"answer": "rem_sleep", "hint": "synonyms for rem sleep", "clues": ["REM sleep", "rapid eye movement sleep", "REM", "paradoxical sleep"]}, {"answer": "remainder", "hint": "synonyms for remainder", "clues": ["balance", "end", "residuum", "rest", "oddment", "residual", "remnant", "residue", "difference", "remainder"]}, {"answer": "remains", "hint": "synonyms for remains", "clues": ["cadaver", "stiff", "corpse", "clay", "remains"]}, {"answer": "remedy", "hint": "synonyms for remedy", "clues": ["remediation", "therapeutic", "curative", "redress", "cure", "remedy"]}, {"answer": "remembrance", "hint": "synonyms for remembrance", "clues": ["commemoration", "anamnesis", "memorial", "recollection", "remembrance"]}, {"answer": "remission", "hint": "synonyms for remission", "clues": ["remittance", "remission of sin", "remitment", "subsidence", "remittal", "absolution", "remit", "remission"]}, {"answer": "remitment", "hint": "synonyms for remitment", "clues": ["remission", "remittance", "remittal", "remit", "remitment"]}, {"answer": "remittal", "hint": "synonyms for remittal", "clues": ["remission", "remittance", "remission of sin", "remitment", "subsidence", "absolution", "remittal"]}, {"answer": "remnant", "hint": "synonyms for remnant", "clues": ["end", "remainder", "leftover", "oddment", "remnant"]}, {"answer": "remoteness", "hint": "synonyms for remoteness", "clues": ["standoffishness", "farness", "farawayness", "withdrawnness", "aloofness", "remoteness"]}, {"answer": "removal_company", "hint": "synonyms for removal company", "clues": ["moving company", "mover", "public mover", "removal firm", "removal company"]}, {"answer": "removal_firm", "hint": "synonyms for removal firm", "clues": ["moving company", "mover", "removal company", "public mover", "removal firm"]}, {"answer": "remuneration", "hint": "synonyms for remuneration", "clues": ["wage", "pay", "salary", "earnings", "remuneration"]}, {"answer": "renascence", "hint": "synonyms for renascence", "clues": ["Renaissance", "reincarnation", "rebirth", "Renascence"]}, {"answer": "rendering", "hint": "synonyms for rendering", "clues": ["translation", "interpretation", "interlingual rendition", "version", "rendition", "interpreting", "rendering"]}, {"answer": "renewal", "hint": "synonyms for renewal", "clues": ["replacement", "refilling", "replenishment", "reclamation", "rehabilitation", "renewal"]}, {"answer": "renovation", "hint": "synonyms for renovation", "clues": ["refurbishment", "restoration", "overhaul", "redevelopment", "renovation"]}, {"answer": "rent", "hint": "synonyms for rent", "clues": ["split", "snag", "rip", "economic rent", "tear", "rent"]}, {"answer": "rent-a-car", "hint": "synonyms for rent-a-car", "clues": ["self-drive", "you-drive", "car rental", "hire car", "rent-a-car"]}, {"answer": "renunciation", "hint": "synonyms for renunciation", "clues": ["repudiation", "apostasy", "forgoing", "renouncement", "forswearing", "defection", "renunciation"]}, {"answer": "repair", "hint": "synonyms for repair", "clues": ["reparation", "fixing", "fixture", "hangout", "mend", "stamping ground", "haunt", "resort", "repair"]}, {"answer": "reparation", "hint": "synonyms for reparation", "clues": ["fixing", "repair", "fixture", "amends", "mend", "reparation"]}, {"answer": "repercussion", "hint": "synonyms for repercussion", "clues": ["rebound", "recoil", "backlash", "reverberation", "repercussion"]}, {"answer": "replacement", "hint": "synonyms for replacement", "clues": ["permutation", "transposition", "substitute", "successor", "replacing", "switch", "refilling", "substitution", "alternate", "replenishment", "surrogate", "renewal", "replacement"]}, {"answer": "replication", "hint": "synonyms for replication", "clues": ["retort", "comeback", "return", "rejoinder", "reproduction", "echo", "counter", "sound reflection", "riposte", "reverberation", "replica", "replication"]}, {"answer": "report", "hint": "synonyms for report", "clues": ["composition", "news report", "write up", "report card", "written report", "story", "reputation", "study", "theme", "account", "paper", "report"]}, {"answer": "repose", "hint": "synonyms for repose", "clues": ["peacefulness", "ease", "rest", "placidity", "peace", "tranquility", "quiet", "peace of mind", "relaxation", "ataraxis", "serenity", "heartsease", "repose"]}, {"answer": "repository", "hint": "synonyms for repository", "clues": ["secretary", "monument", "deposit", "depository"]}, {"answer": "reprehension", "hint": "synonyms for reprehension", "clues": ["reproof", "reproval", "reprimand", "rebuke", "reprehension"]}, {"answer": "representation", "hint": "synonyms for representation", "clues": ["delegacy", "agency", "theatrical", "internal representation", "histrionics", "theatrical performance", "representation"]}, {"answer": "reprieve", "hint": "synonyms for reprieve", "clues": ["hiatus", "respite", "abatement", "suspension", "reprieve"]}, {"answer": "reprimand", "hint": "synonyms for reprimand", "clues": ["reproof", "reproval", "reprehension", "rebuke", "reprimand"]}, {"answer": "reprint", "hint": "synonyms for reprint", "clues": ["offprint", "reissue", "separate", "reprinting"]}, {"answer": "reproduction", "hint": "synonyms for reproduction", "clues": ["facts of life", "procreation", "reproductive memory", "replica", "breeding", "replication", "reproduction"]}, {"answer": "reproof", "hint": "synonyms for reproof", "clues": ["reproval", "reprehension", "reprimand", "rebuke", "reproof"]}, {"answer": "reproval", "hint": "synonyms for reproval", "clues": ["reproof", "reprehension", "reprimand", "rebuke", "reproval"]}, {"answer": "republic_of_belarus", "hint": "synonyms for republic of belarus", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "republic_of_bosnia_and_herzegovina", "hint": "synonyms for republic of bosnia and herzegovina", "clues": ["Bosna i Hercegovina", "Republic of Bosnia and Herzegovina", "Bosnia-Herzegovina", "Bosnia"]}, {"answer": "republic_of_china", "hint": "synonyms for republic of china", "clues": ["Republic of China", "China", "Nationalist China", "Taiwan"]}, {"answer": "republic_of_iraq", "hint": "synonyms for republic of iraq", "clues": ["Al-Iraq", "Iraq", "Republic of Iraq", "Irak"]}, {"answer": "republic_of_ireland", "hint": "synonyms for republic of ireland", "clues": ["Irish Republic", "Republic of Ireland", "Eire", "Ireland"]}, {"answer": "republic_of_suriname", "hint": "synonyms for republic of suriname", "clues": ["Suriname", "Dutch Guiana", "Republic of Suriname", "Netherlands Guiana"]}, {"answer": "republic_of_tajikistan", "hint": "synonyms for republic of tajikistan", "clues": ["Tadzhik", "Tadzhikistan", "Tajikistan", "Republic of Tajikistan", "Tadjik"]}, {"answer": "republic_of_zimbabwe", "hint": "synonyms for republic of zimbabwe", "clues": ["Rhodesia", "Southern Rhodesia", "Republic of Zimbabwe", "Zimbabwe"]}, {"answer": "repugnance", "hint": "synonyms for repugnance", "clues": ["repulsion", "mutual exclusiveness", "horror", "inconsistency", "incompatibility", "repugnance"]}, {"answer": "repulsion", "hint": "synonyms for repulsion", "clues": ["revulsion", "standoff", "horror", "repulsive force", "repugnance"]}, {"answer": "repulsiveness", "hint": "synonyms for repulsiveness", "clues": ["lousiness", "wickedness", "vileness", "loathsomeness", "sliminess", "repulsiveness"]}, {"answer": "requiem", "hint": "synonyms for requiem", "clues": ["Requiem", "threnody", "lament", "coronach", "dirge"]}, {"answer": "requirement", "hint": "synonyms for requirement", "clues": ["prerequisite", "demand", "necessary", "necessity", "essential", "requirement"]}, {"answer": "res", "hint": "synonyms for res", "clues": ["rhenium", "re", "Ra", "atomic number 75", "reticuloendothelial system", "ray"]}, {"answer": "res_publica", "hint": "synonyms for res publica", "clues": ["body politic", "commonwealth", "land", "nation", "state", "country", "res publica"]}, {"answer": "rescript", "hint": "synonyms for rescript", "clues": ["fiat", "revision", "revisal", "rewrite", "order", "revise", "decree", "edict", "rescript"]}, {"answer": "rescuer", "hint": "synonyms for rescuer", "clues": ["saviour", "deliverer", "recoverer", "saver", "rescuer"]}, {"answer": "research_lab", "hint": "synonyms for research lab", "clues": ["lab", "science laboratory", "laboratory", "research laboratory", "science lab", "research lab"]}, {"answer": "research_laboratory", "hint": "synonyms for research laboratory", "clues": ["lab", "research lab", "science laboratory", "laboratory", "science lab", "research laboratory"]}, {"answer": "resentment", "hint": "synonyms for resentment", "clues": ["bitterness", "rancor", "gall", "resentment"]}, {"answer": "reserpine", "hint": "synonyms for reserpine", "clues": ["Serpasil", "Sandril", "Raudixin", "Rau-Sed", "reserpine"]}, {"answer": "reservation", "hint": "synonyms for reservation", "clues": ["arriere pensee", "mental reservation", "qualification", "reserve", "booking", "reservation"]}, {"answer": "reserve", "hint": "synonyms for reserve", "clues": ["substitute", "reticence", "reservation", "modesty", "military reserve", "taciturnity", "stockpile", "backlog", "second-stringer", "reserve"]}, {"answer": "reserves", "hint": "synonyms for reserves", "clues": ["substitute", "militia", "reticence", "reservation", "modesty", "military reserve", "taciturnity", "stockpile", "backlog", "reserve", "second-stringer"]}, {"answer": "residence", "hint": "synonyms for residence", "clues": ["manse", "abode", "mansion house", "mansion", "abidance", "hall", "residency"]}, {"answer": "residence_hall", "hint": "synonyms for residence hall", "clues": ["dorm", "dormitory", "hall", "student residence", "residence hall"]}, {"answer": "residue", "hint": "synonyms for residue", "clues": ["balance", "residual", "remainder", "residuum", "rest", "residue"]}, {"answer": "residuum", "hint": "synonyms for residuum", "clues": ["balance", "residual", "remainder", "residue", "rest", "residuum"]}, {"answer": "resistance", "hint": "synonyms for resistance", "clues": ["resistivity", "electric resistance", "underground", "immunity", "ohmic resistance", "opposition", "resistor", "impedance", "resistance"]}, {"answer": "resister", "hint": "synonyms for resister", "clues": ["obstructionist", "thwarter", "opposer", "obstructer", "opponent", "antagonist", "adversary", "resister"]}, {"answer": "resistivity", "hint": "synonyms for resistivity", "clues": ["resistance", "electric resistance", "impedance", "ohmic resistance", "resistivity"]}, {"answer": "resoluteness", "hint": "synonyms for resoluteness", "clues": ["firmness of purpose", "resolution", "resolve", "firmness", "resoluteness"]}, {"answer": "resolution", "hint": "synonyms for resolution", "clues": ["resolve", "solution", "settlement", "resolving", "resoluteness", "solvent", "closure", "result", "firmness", "firmness of purpose", "answer", "resolving power", "declaration"]}, {"answer": "resolve", "hint": "synonyms for resolve", "clues": ["firmness", "resolution", "resoluteness", "firmness of purpose", "declaration", "resolve"]}, {"answer": "resolvent", "hint": "synonyms for resolvent", "clues": ["dissolver", "dissolving agent", "solvent", "dissolvent"]}, {"answer": "resonance", "hint": "synonyms for resonance", "clues": ["sonorousness", "vibrancy", "ringing", "sonority", "rapport", "reverberance", "plangency", "resonance"]}, {"answer": "resort", "hint": "synonyms for resort", "clues": ["holiday resort", "hangout", "refuge", "stamping ground", "haunt", "repair", "recourse", "resort hotel", "resort"]}, {"answer": "respect", "hint": "synonyms for respect", "clues": ["regard", "deference", "obedience", "esteem", "respectfulness", "respect"]}, {"answer": "respects", "hint": "synonyms for respects", "clues": ["regard", "deference", "esteem", "respectfulness", "obedience", "respect"]}, {"answer": "respiration", "hint": "synonyms for respiration", "clues": ["ventilation", "internal respiration", "cellular respiration", "breathing", "respiration"]}, {"answer": "respite", "hint": "synonyms for respite", "clues": ["break", "abatement", "time out", "rest", "rest period", "reprieve", "recess", "hiatus", "relief", "suspension", "respite"]}, {"answer": "response", "hint": "synonyms for response", "clues": ["reception", "reply", "reaction", "answer", "response"]}, {"answer": "responsibility", "hint": "synonyms for responsibility", "clues": ["obligation", "responsibleness", "province", "duty", "responsibility"]}, {"answer": "rest", "hint": "synonyms for rest", "clues": ["repose", "balance", "ease", "respite", "eternal rest", "eternal sleep", "residuum", "sleep", "quietus", "rest period", "residual", "relief", "remainder", "residue", "relaxation", "rest"]}, {"answer": "rest_area", "hint": "synonyms for rest area", "clues": ["lay-by", "rest stop", "pull-off", "rest area"]}, {"answer": "rest_stop", "hint": "synonyms for rest stop", "clues": ["lay-by", "rest area", "pull-off", "rest stop"]}, {"answer": "restitution", "hint": "synonyms for restitution", "clues": ["regaining", "restoration", "amends", "redress", "indemnification", "damages", "indemnity", "return", "restitution"]}, {"answer": "restiveness", "hint": "synonyms for restiveness", "clues": ["skittishness", "nervousness", "jumpiness", "jitteriness", "restiveness"]}, {"answer": "restlessness", "hint": "synonyms for restlessness", "clues": ["uneasiness", "fidgetiness", "fidget", "impatience", "restlessness"]}, {"answer": "restoration", "hint": "synonyms for restoration", "clues": ["renovation", "refurbishment", "return", "regaining", "Restoration", "restitution"]}, {"answer": "restraint", "hint": "synonyms for restraint", "clues": ["chasteness", "control", "simplicity", "simpleness", "constraint", "restraint"]}, {"answer": "restroom", "hint": "synonyms for restroom", "clues": ["public toilet", "toilet facility", "wash room", "public lavatory", "public convenience", "comfort station", "convenience", "restroom"]}, {"answer": "result", "hint": "synonyms for result", "clues": ["termination", "event", "outcome", "solution", "upshot", "issue", "resultant role", "solvent", "resultant", "effect", "consequence", "final result", "answer", "result"]}, {"answer": "resume", "hint": "synonyms for resume", "clues": ["curriculum vitae", "CV", "survey", "sketch", "resume"]}, {"answer": "resurgence", "hint": "synonyms for resurgence", "clues": ["revival", "revivification", "revitalisation", "resurgence"]}, {"answer": "retard", "hint": "synonyms for retard", "clues": ["moron", "changeling", "imbecile", "half-wit", "idiot", "cretin", "retard"]}, {"answer": "retardation", "hint": "synonyms for retardation", "clues": ["retardent", "backwardness", "slowing", "deceleration", "subnormality", "slowdown", "slowness", "lag", "mental retardation", "retardation"]}, {"answer": "rete_malpighii", "hint": "synonyms for rete malpighii", "clues": ["stratum germinativum", "stratum basale", "rete Malpighii", "malpighian layer"]}, {"answer": "retention", "hint": "synonyms for retention", "clues": ["retentivity", "keeping", "memory", "retentiveness", "holding", "retention"]}, {"answer": "retirement_account", "hint": "synonyms for retirement account", "clues": ["retirement program", "retirement savings plan", "pension plan", "retirement plan", "pension account", "retirement account"]}, {"answer": "retirement_benefit", "hint": "synonyms for retirement benefit", "clues": ["retirement check", "retirement pension", "old-age pension", "retirement fund", "superannuation", "retirement benefit"]}, {"answer": "retirement_check", "hint": "synonyms for retirement check", "clues": ["retirement benefit", "retirement pension", "old-age pension", "retirement fund", "superannuation", "retirement check"]}, {"answer": "retirement_fund", "hint": "synonyms for retirement fund", "clues": ["retirement benefit", "retirement check", "retirement pension", "old-age pension", "superannuation", "retirement fund"]}, {"answer": "retirement_pension", "hint": "synonyms for retirement pension", "clues": ["retirement benefit", "retirement check", "old-age pension", "retirement fund", "superannuation", "retirement pension"]}, {"answer": "retirement_plan", "hint": "synonyms for retirement plan", "clues": ["retirement account", "retirement program", "retirement savings plan", "pension plan", "pension account", "retirement plan"]}, {"answer": "retirement_program", "hint": "synonyms for retirement program", "clues": ["retirement account", "retirement savings plan", "pension plan", "retirement plan", "pension account", "retirement program"]}, {"answer": "retirement_savings_account", "hint": "synonyms for retirement savings account", "clues": ["retirement account", "retirement program", "retirement savings plan", "pension plan", "retirement plan", "pension account"]}, {"answer": "retirement_savings_plan", "hint": "synonyms for retirement savings plan", "clues": ["retirement account", "retirement program", "pension plan", "retirement plan", "retirement savings account", "pension account"]}, {"answer": "retort", "hint": "synonyms for retort", "clues": ["counter", "comeback", "riposte", "rejoinder", "return", "replication", "retort"]}, {"answer": "retrogression", "hint": "synonyms for retrogression", "clues": ["regress", "retroversion", "degeneration", "regression"]}, {"answer": "retroversion", "hint": "synonyms for retroversion", "clues": ["retroflection", "regress", "retrogression", "reversion"]}, {"answer": "retrovir", "hint": "synonyms for retrovir", "clues": ["ZDV", "Retrovir", "AZT", "zidovudine"]}, {"answer": "return", "hint": "synonyms for return", "clues": ["retort", "rejoinder", "issue", "getting even", "regaining", "yield", "restitution", "recurrence", "comeback", "take", "income tax return", "paying back", "reappearance", "coming back", "tax return", "counter", "payoff", "restoration", "proceeds", "riposte", "return key", "takings", "replication", "homecoming", "return"]}, {"answer": "revelation", "hint": "synonyms for revelation", "clues": ["Revelation", "Book of Revelation", "divine revelation", "revealing", "Revelation of Saint John the Divine", "disclosure", "Apocalypse"]}, {"answer": "revelation_of_saint_john_the_divine", "hint": "synonyms for revelation of saint john the divine", "clues": ["Revelation of Saint John the Divine", "Revelation", "Book of Revelation", "Apocalypse"]}, {"answer": "revenue", "hint": "synonyms for revenue", "clues": ["receipts", "tax revenue", "tax income", "taxation", "gross", "revenue"]}, {"answer": "reverberance", "hint": "synonyms for reverberance", "clues": ["plangency", "sonorousness", "vibrancy", "ringing", "resonance", "sonority", "reverberance"]}, {"answer": "reverberation", "hint": "synonyms for reverberation", "clues": ["repercussion", "replication", "sound reflection", "echo", "reverberation"]}, {"answer": "reverend_dodgson", "hint": "synonyms for reverend dodgson", "clues": ["Charles Lutwidge Dodgson", "Dodgson", "Lewis Carroll", "Reverend Dodgson", "Charles Dodgson", "Carroll"]}, {"answer": "reverie", "hint": "synonyms for reverie", "clues": ["oneirism", "revery", "castle in Spain", "daydream", "castle in the air", "air castle", "reverie"]}, {"answer": "reversal", "hint": "synonyms for reversal", "clues": ["transposition", "turnaround", "blow", "flip-flop", "black eye", "reversion", "setback", "reverse", "change of mind", "policy change", "about-face", "turnabout", "volte-face", "reversal"]}, {"answer": "reversion", "hint": "synonyms for reversion", "clues": ["atavism", "turnaround", "retrogression", "relapsing", "lapse", "reverse", "backsliding", "regress", "retroversion", "reverting", "relapse", "reversal", "throwback", "turnabout"]}, {"answer": "revery", "hint": "synonyms for revery", "clues": ["daydreaming", "reverie", "oneirism", "castle in Spain", "castle in the air", "air castle", "revery"]}, {"answer": "review", "hint": "synonyms for review", "clues": ["review article", "recap", "inspection", "brushup", "critical review", "reappraisal", "reexamination", "revaluation", "followup", "limited review", "revue", "recapitulation", "reassessment", "critique", "review"]}, {"answer": "revilement", "hint": "synonyms for revilement", "clues": ["abuse", "vilification", "insult", "contumely", "revilement"]}, {"answer": "reviser", "hint": "synonyms for reviser", "clues": ["rewriter", "rewrite man", "redact", "reviser"]}, {"answer": "revision", "hint": "synonyms for revision", "clues": ["revisal", "rescript", "rewrite", "revise", "alteration", "revision"]}, {"answer": "revitalisation", "hint": "synonyms for revitalisation", "clues": ["revival", "revivification", "revitalization", "resurgence"]}, {"answer": "revitalization", "hint": "synonyms for revitalization", "clues": ["revivification", "revitalisation", "revival", "resurgence"]}, {"answer": "revival", "hint": "synonyms for revival", "clues": ["revival meeting", "revivification", "revitalisation", "resurgence", "revival"]}, {"answer": "revivification", "hint": "synonyms for revivification", "clues": ["revival", "revitalisation", "resurgence", "revivification"]}, {"answer": "revolt", "hint": "synonyms for revolt", "clues": ["insurrection", "rising", "rebellion", "revolt"]}, {"answer": "revolutionary_justice_organization", "hint": "synonyms for revolutionary justice organization", "clues": ["Revolutionary Justice Organization", "Lebanese Hizballah", "Party of God", "Organization of the Oppressed on Earth", "Hezbollah", "Islamic Jihad for the Liberation of Palestine", "Islamic Jihad", "Hizballah"]}, {"answer": "revolutionary_organization_of_socialist_muslims", "hint": "synonyms for revolutionary organization of socialist muslims", "clues": ["Abu Nidal Organization", "Fatah-RC", "Revolutionary Organization of Socialist Muslims", "Black September", "Arab Revolutionary Brigades", "Fatah Revolutionary Council", "ANO"]}, {"answer": "revolutionary_proletarian_army", "hint": "synonyms for revolutionary proletarian army", "clues": ["RPA-ABB", "ABB", "Revolutionary Proletarian Army", "Alex Boncayao Brigade"]}, {"answer": "reward", "hint": "synonyms for reward", "clues": ["payoff", "wages", "advantage", "reinforcement", "reward"]}, {"answer": "rewrite_man", "hint": "synonyms for rewrite man", "clues": ["rewriter", "redact", "reviser", "rewrite man"]}, {"answer": "rewriter", "hint": "synonyms for rewriter", "clues": ["rewrite man", "redact", "reviser", "rewriter"]}, {"answer": "reyes", "hint": "synonyms for reyes", "clues": ["Reyes", "Neruda", "Pablo Neruda", "Neftali Ricardo Reyes"]}, {"answer": "rf", "hint": "synonyms for rf", "clues": ["releasing factor", "rutherfordium", "Unq", "releasing hormone", "RF", "element 104", "atomic number 104", "reticular formation", "unnilquadium"]}, {"answer": "rg", "hint": "synonyms for rg", "clues": ["atomic number 111", "element 111", "Rg", "roentgenium"]}, {"answer": "rh", "hint": "synonyms for rh", "clues": ["Rh factor", "hypothalamic releasing factor", "hypothalamic releasing hormone", "releasing factor", "releasing hormone", "Rh", "atomic number 45", "rhesus factor", "rhodium"]}, {"answer": "rheims-douay_bible", "hint": "synonyms for rheims-douay bible", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "rheims-douay_version", "hint": "synonyms for rheims-douay version", "clues": ["Douay Bible", "Douay-Rheims Version", "Douay-Rheims Bible", "Douay Version", "Rheims-Douay Bible", "Rheims-Douay Version"]}, {"answer": "rhetoric", "hint": "synonyms for rhetoric", "clues": ["hot air", "magniloquence", "empty talk", "palaver", "empty words", "ornateness", "grandiosity", "grandiloquence", "rhetoric"]}, {"answer": "rhetorician", "hint": "synonyms for rhetorician", "clues": ["public speaker", "orator", "speechifier", "speechmaker", "rhetorician"]}, {"answer": "rhine", "hint": "synonyms for rhine", "clues": ["Rhine River", "J. B. Rhine", "Rhein", "Rhine", "Joseph Banks Rhine"]}, {"answer": "rhinophyma", "hint": "synonyms for rhinophyma", "clues": ["brandy nose", "hammer nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "rum nose", "toper's nose", "copper nose", "rhinophyma"]}, {"answer": "rhode_island", "hint": "synonyms for rhode island", "clues": ["Little Rhody", "RI", "Ocean State", "Rhode Island"]}, {"answer": "rhodes", "hint": "synonyms for rhodes", "clues": ["Cecil John Rhodes", "Cecil Rhodes", "Rodhos", "Rhodes"]}, {"answer": "rhodesia", "hint": "synonyms for rhodesia", "clues": ["Rhodesia", "Southern Rhodesia", "Republic of Zimbabwe", "Zimbabwe"]}, {"answer": "rhymer", "hint": "synonyms for rhymer", "clues": ["poetiser", "versifier", "rhymester", "rhymer"]}, {"answer": "rhymester", "hint": "synonyms for rhymester", "clues": ["poetiser", "rhymer", "versifier", "rhymester"]}, {"answer": "rhythm", "hint": "synonyms for rhythm", "clues": ["speech rhythm", "regular recurrence", "musical rhythm", "rhythm method of birth control", "cycle", "rhythm method", "calendar method", "beat", "round", "calendar method of birth control", "rhythm"]}, {"answer": "rhythm_method", "hint": "synonyms for rhythm method", "clues": ["calendar method", "rhythm method of birth control", "rhythm", "calendar method of birth control", "rhythm method"]}, {"answer": "rhythm_method_of_birth_control", "hint": "synonyms for rhythm method of birth control", "clues": ["rhythm method", "calendar method", "rhythm", "calendar method of birth control", "rhythm method of birth control"]}, {"answer": "rhytidectomy", "hint": "synonyms for rhytidectomy", "clues": ["cosmetic surgery", "lift", "rhytidoplasty", "facelift", "face lifting", "nip and tuck", "rhytidectomy"]}, {"answer": "rhytidoplasty", "hint": "synonyms for rhytidoplasty", "clues": ["cosmetic surgery", "lift", "facelift", "face lifting", "nip and tuck", "rhytidectomy", "rhytidoplasty"]}, {"answer": "ri", "hint": "synonyms for ri", "clues": ["Ocean State", "Rhode Island", "Little Rhody", "RI"]}, {"answer": "rial", "hint": "synonyms for rial", "clues": ["Yemeni rial", "Iranian rial", "Omani rial", "riyal-omani", "rial"]}, {"answer": "ribbon", "hint": "synonyms for ribbon", "clues": ["medallion", "palm", "typewriter ribbon", "thread", "decoration", "laurel wreath", "medal", "ribbon"]}, {"answer": "riboflavin", "hint": "synonyms for riboflavin", "clues": ["lactoflavin", "ovoflavin", "vitamin B2", "vitamin G", "hepatoflavin", "riboflavin"]}, {"answer": "rice", "hint": "synonyms for rice", "clues": ["Elmer Rice", "Elmer Reizenstein", "Timothy Miles Bindon Rice", "Elmer Leopold Rice", "Rice", "Sir Tim Rice"]}, {"answer": "richard_burdon_haldane", "hint": "synonyms for richard burdon haldane", "clues": ["First Viscount Haldane of Cloan", "Richard Haldane", "Richard Burdon Haldane", "Haldane"]}, {"answer": "richard_e._byrd", "hint": "synonyms for richard e. byrd", "clues": ["Richard E. Byrd", "Richard Evelyn Byrd", "Admiral Byrd", "Byrd"]}, {"answer": "richard_evelyn_byrd", "hint": "synonyms for richard evelyn byrd", "clues": ["Richard E. Byrd", "Richard Evelyn Byrd", "Admiral Byrd", "Byrd"]}, {"answer": "richard_haldane", "hint": "synonyms for richard haldane", "clues": ["First Viscount Haldane of Cloan", "Richard Haldane", "Richard Burdon Haldane", "Haldane"]}, {"answer": "richard_m._nixon", "hint": "synonyms for richard m. nixon", "clues": ["Nixon", "Richard Milhous Nixon", "Richard Nixon", "President Nixon"]}, {"answer": "richard_milhous_nixon", "hint": "synonyms for richard milhous nixon", "clues": ["Nixon", "Richard Milhous Nixon", "Richard Nixon", "President Nixon"]}, {"answer": "richard_neville", "hint": "synonyms for richard neville", "clues": ["Richard Neville", "Earl of Warwick", "Warwick", "Kingmaker"]}, {"answer": "richard_nixon", "hint": "synonyms for richard nixon", "clues": ["Nixon", "Richard Milhous Nixon", "Richard Nixon", "President Nixon"]}, {"answer": "richard_starkey", "hint": "synonyms for richard starkey", "clues": ["Richard Starkey", "Ringo Starr", "Starr", "Starkey"]}, {"answer": "richardson", "hint": "synonyms for richardson", "clues": ["Ralph Richardson", "Henry Hobson Richardson", "Sir Ralph David Richardson", "Richardson"]}, {"answer": "richelieu", "hint": "synonyms for richelieu", "clues": ["Armand Jean du Plessis", "Cardinal Richelieu", "Richelieu", "Duc de Richelieu"]}, {"answer": "richness", "hint": "synonyms for richness", "clues": ["fertility", "cornucopia", "profuseness", "profusion", "fullness", "magnificence", "mellowness", "rankness", "prolificacy", "affluence", "impressiveness", "grandness", "richness"]}, {"answer": "rick", "hint": "synonyms for rick", "clues": ["kink", "wrick", "haystack", "hayrick", "crick"]}, {"answer": "rico", "hint": "synonyms for rico", "clues": ["RICO Act", "Racketeer Influenced and Corrupt Organizations Act", "RICO", "anti-racketeering law"]}, {"answer": "rico_act", "hint": "synonyms for rico act", "clues": ["RICO Act", "Racketeer Influenced and Corrupt Organizations Act", "RICO", "anti-racketeering law"]}, {"answer": "riddance", "hint": "synonyms for riddance", "clues": ["ejection", "exclusion", "expulsion", "elimination", "riddance"]}, {"answer": "rift", "hint": "synonyms for rift", "clues": ["break", "breach", "severance", "rupture", "falling out", "rift"]}, {"answer": "rig", "hint": "synonyms for rig", "clues": ["articulated lorry", "outfit", "trucking rig", "swindle", "trailer truck", "rigging", "equipage", "fishing rig", "getup", "turnout", "fishing gear", "carriage", "tackle", "cheat", "tractor trailer", "fishing tackle", "semi", "rig"]}, {"answer": "rightness", "hint": "synonyms for rightness", "clues": ["correctness", "justness", "nicety", "appropriateness", "rightness"]}, {"answer": "rigor", "hint": "synonyms for rigor", "clues": ["stiffness", "inclemency", "validity", "severeness", "severity", "asperity", "rigour", "harshness", "cogency", "hardship", "rigorousness", "grimness", "hardness"]}, {"answer": "rigorousness", "hint": "synonyms for rigorousness", "clues": ["severity", "asperity", "stiffness", "rigour", "harshness", "inclemency", "hardship", "grimness", "hardness", "rigourousness", "severeness"]}, {"answer": "rigour", "hint": "synonyms for rigour", "clues": ["stiffness", "inclemency", "validity", "severeness", "severity", "asperity", "harshness", "cogency", "hardship", "rigorousness", "grimness", "hardness", "rigor"]}, {"answer": "rigourousness", "hint": "synonyms for rigourousness", "clues": ["severity", "asperity", "stiffness", "rigour", "harshness", "inclemency", "hardship", "rigorousness", "grimness", "hardness", "severeness"]}, {"answer": "rilievo", "hint": "synonyms for rilievo", "clues": ["sculptural relief", "relievo", "relief", "embossment"]}, {"answer": "rill", "hint": "synonyms for rill", "clues": ["streamlet", "runnel", "run", "rivulet", "rill"]}, {"answer": "rima_pudendi", "hint": "synonyms for rima pudendi", "clues": ["pudendal cleavage", "urogenital cleft", "rima vulvae", "pudendal slit", "pudendal cleft", "vulvar slit", "rima pudendi"]}, {"answer": "rima_vulvae", "hint": "synonyms for rima vulvae", "clues": ["pudendal cleavage", "urogenital cleft", "pudendal slit", "rima pudendi", "pudendal cleft", "vulvar slit", "rima vulvae"]}, {"answer": "rime", "hint": "synonyms for rime", "clues": ["hoarfrost", "frost", "rhyme", "hoar", "rime"]}, {"answer": "ring", "hint": "synonyms for ring", "clues": ["hoop", "ringing", "pack", "mob", "gang", "band", "doughnut", "closed chain", "halo", "anchor ring", "tintinnabulation", "annulus"]}, {"answer": "ring_armor", "hint": "synonyms for ring armor", "clues": ["chain armor", "chain mail", "ring armour", "ring mail", "mail"]}, {"answer": "ring_armour", "hint": "synonyms for ring armour", "clues": ["ring armor", "chain armor", "chain mail", "ring mail", "mail"]}, {"answer": "ring_mail", "hint": "synonyms for ring mail", "clues": ["ring armor", "chain armor", "chain mail", "mail", "ring mail"]}, {"answer": "ringer", "hint": "synonyms for ringer", "clues": ["toller", "clone", "dead ringer", "bell ringer", "ringer"]}, {"answer": "ringing", "hint": "synonyms for ringing", "clues": ["ring", "resonance", "sonority", "plangency", "sonorousness", "vibrancy", "reverberance", "tintinnabulation"]}, {"answer": "ringlet", "hint": "synonyms for ringlet", "clues": ["whorl", "coil", "curl", "scroll", "roll", "curlicue", "gyre", "lock", "ringlet"]}, {"answer": "ringo_starr", "hint": "synonyms for ringo starr", "clues": ["Richard Starkey", "Ringo Starr", "Starr", "Starkey"]}, {"answer": "rings", "hint": "synonyms for rings", "clues": ["hoop", "ringing", "pack", "mob", "gang", "band", "doughnut", "closed chain", "halo", "anchor ring", "tintinnabulation", "annulus", "rings"]}, {"answer": "riot", "hint": "synonyms for riot", "clues": ["orgy", "thigh-slapper", "scream", "howler", "belly laugh", "bacchanal", "debauchery", "rioting", "public violence", "drunken revelry", "debauch", "saturnalia", "sidesplitter", "wow"]}, {"answer": "rip", "hint": "synonyms for rip", "clues": ["blood", "split", "snag", "tide rip", "roue", "rakehell", "countercurrent", "rent", "profligate", "crosscurrent", "riptide", "rake", "tear", "rip"]}, {"answer": "ripening", "hint": "synonyms for ripening", "clues": ["maturement", "maturation", "aging", "ripening"]}, {"answer": "riposte", "hint": "synonyms for riposte", "clues": ["retort", "counter", "comeback", "rejoinder", "return", "replication", "riposte"]}, {"answer": "riptide", "hint": "synonyms for riptide", "clues": ["countercurrent", "tide rip", "crosscurrent", "rip current", "rip", "riptide"]}, {"answer": "rira", "hint": "synonyms for rira", "clues": ["RIRA", "Real Irish Republican Army", "Real IRA", "Dissident Irish Republican Army"]}, {"answer": "rise", "hint": "synonyms for rise", "clues": ["advance", "ascension", "emanation", "acclivity", "upgrade", "wage hike", "lift", "rising slope", "raise", "salary increase", "rising", "ascending", "hike", "ascent", "procession", "wage increase", "cost increase", "boost", "climb"]}, {"answer": "risk", "hint": "synonyms for risk", "clues": ["risk of exposure", "peril", "jeopardy", "danger", "endangerment", "hazard", "risk of infection", "risk"]}, {"answer": "rival", "hint": "synonyms for rival", "clues": ["contender", "competitor", "challenger", "rival"]}, {"answer": "river_avon", "hint": "synonyms for river avon", "clues": ["Avon", "Upper Avon River", "River Avon", "Upper Avon"]}, {"answer": "river_basin", "hint": "synonyms for river basin", "clues": ["drainage basin", "catchment basin", "catchment area", "basin", "watershed", "drainage area", "river basin"]}, {"answer": "rivulet", "hint": "synonyms for rivulet", "clues": ["rill", "runnel", "run", "streamlet", "rivulet"]}, {"answer": "rn", "hint": "synonyms for rn", "clues": ["radon", "registered nurse", "Rn", "atomic number 86"]}, {"answer": "roach", "hint": "synonyms for roach", "clues": ["rophy", "R-2", "Mexican valium", "roofy", "circle", "forget me drug", "rope", "roach"]}, {"answer": "roadman", "hint": "synonyms for roadman", "clues": ["commercial traveler", "road mender", "traveling salesman", "bagman", "roadman"]}, {"answer": "roar", "hint": "synonyms for roar", "clues": ["hollo", "yowl", "bellow", "thunder", "boom", "hollering", "holla", "roaring"]}, {"answer": "roarer", "hint": "synonyms for roarer", "clues": ["screamer", "yeller", "screecher", "bellower", "shouter", "bawler", "roarer"]}, {"answer": "robert_abram_bartlett", "hint": "synonyms for robert abram bartlett", "clues": ["Robert Abram Bartlett", "Captain Bob", "Bartlett", "Robert Bartlett"]}, {"answer": "robert_bartlett", "hint": "synonyms for robert bartlett", "clues": ["Robert Abram Bartlett", "Captain Bob", "Bartlett", "Robert Bartlett"]}, {"answer": "robert_burns_woodward", "hint": "synonyms for robert burns woodward", "clues": ["Robert Burns Woodward", "Robert Woodward", "Bob Woodward", "Woodward"]}, {"answer": "robert_clive", "hint": "synonyms for robert clive", "clues": ["Robert Clive", "Baron Clive of Plassey", "Baron Clive", "Clive"]}, {"answer": "robert_e_lee's_birthday", "hint": "synonyms for robert e lee's birthday", "clues": ["Robert E Lee Day", "Lee's Birthday", "Robert E Lee's Birthday", "January 19"]}, {"answer": "robert_e_lee_day", "hint": "synonyms for robert e lee day", "clues": ["Robert E Lee Day", "Lee's Birthday", "Robert E Lee's Birthday", "January 19"]}, {"answer": "robert_woodward", "hint": "synonyms for robert woodward", "clues": ["Robert Burns Woodward", "Robert Woodward", "Bob Woodward", "Woodward"]}, {"answer": "roberts", "hint": "synonyms for roberts", "clues": ["Oral Roberts", "Bartholomew Roberts", "Robert", "Henry M. Robert", "Henry Martyn Robert", "Richard J. Roberts", "Kenneth Roberts"]}, {"answer": "robinson", "hint": "synonyms for robinson", "clues": ["Jack Roosevelt Robinson", "Robert Robinson", "Edwin Arlington Robinson", "Lennox Robinson", "Sugar Ray Robinson", "Jackie Robinson", "Edward G. Robinson", "Ray Robinson", "James Harvey Robinson", "Edward Goldenberg Robinson", "Esme Stuart Lennox Robinson", "Walker Smith", "Robinson"]}, {"answer": "robot_bomb", "hint": "synonyms for robot bomb", "clues": ["buzz bomb", "V-1", "flying bomb", "doodlebug", "robot bomb"]}, {"answer": "rock", "hint": "synonyms for rock", "clues": ["rock-and-roll", "Rock", "rock'n'roll", "careen", "rock and roll", "tilt", "rock music", "stone", "John Rock", "sway", "rock candy"]}, {"answer": "rock'n'roll", "hint": "synonyms for rock'n'roll", "clues": ["rock-and-roll", "rock and roll", "rock 'n' roll", "rock", "rock music"]}, {"answer": "rock-and-roll", "hint": "synonyms for rock-and-roll", "clues": ["rock'n'roll", "rock and roll", "rock", "rock music", "rock-and-roll"]}, {"answer": "rock_'n'_roll", "hint": "synonyms for rock 'n' roll", "clues": ["rock-and-roll", "rock'n'roll", "rock and roll", "rock", "rock music"]}, {"answer": "rock_and_roll", "hint": "synonyms for rock and roll", "clues": ["rock-and-roll", "rock'n'roll", "rock", "rock music", "rock and roll"]}, {"answer": "rock_fever", "hint": "synonyms for rock fever", "clues": ["Mediterranean fever", "Gibraltar fever", "undulant fever", "Rock fever", "Malta fever", "brucellosis"]}, {"answer": "rock_music", "hint": "synonyms for rock music", "clues": ["rock-and-roll", "rock'n'roll", "rock and roll", "rock", "rock music"]}, {"answer": "rock_oil", "hint": "synonyms for rock oil", "clues": ["crude", "fossil oil", "oil", "petroleum", "crude oil", "rock oil"]}, {"answer": "rockers", "hint": "synonyms for rockers", "clues": ["rock 'n' roll musician", "rocking chair", "rocker", "cradle", "bikers"]}, {"answer": "rod", "hint": "synonyms for rod", "clues": ["rod cell", "perch", "pole", "retinal rod", "gat", "rod"]}, {"answer": "rodrigo_borgia", "hint": "synonyms for rodrigo borgia", "clues": ["Borgia", "Pope Alexander VI", "Rodrigo Borgia", "Alexander VI"]}, {"answer": "roentgenogram", "hint": "synonyms for roentgenogram", "clues": ["X ray", "X-ray", "X-ray photograph", "X-ray picture", "roentgenogram"]}, {"answer": "rogers", "hint": "synonyms for rogers", "clues": ["Rogers", "Carl Rogers", "William Penn Adair Rogers", "Virginia Katherine McMath", "Ginger Rogers", "Will Rogers", "Virginia McMath"]}, {"answer": "rogue", "hint": "synonyms for rogue", "clues": ["scallywag", "rascal", "knave", "rapscallion", "varlet", "scalawag", "rogue"]}, {"answer": "roguery", "hint": "synonyms for roguery", "clues": ["mischief-making", "devilry", "roguishness", "rascality", "mischief", "mischievousness", "shenanigan", "devilment", "roguery"]}, {"answer": "roguishness", "hint": "synonyms for roguishness", "clues": ["mischief-making", "devilry", "shenanigan", "rascality", "mischief", "mischievousness", "roguery", "prankishness", "devilment", "roguishness"]}, {"answer": "rolando's_area", "hint": "synonyms for rolando's area", "clues": ["motor area", "motor region", "Rolando's area", "excitable area", "motor cortex"]}, {"answer": "rolando's_fissure", "hint": "synonyms for rolando's fissure", "clues": ["fissure of Rolando", "Rolando's fissure", "central sulcus", "sulcus centralis"]}, {"answer": "role", "hint": "synonyms for role", "clues": ["purpose", "theatrical role", "part", "office", "character", "persona", "function", "use", "role"]}, {"answer": "role_player", "hint": "synonyms for role player", "clues": ["shammer", "player", "fake", "imposter", "pseudo", "pretender", "histrion", "sham", "actor", "thespian", "fraud", "role player"]}, {"answer": "roll", "hint": "synonyms for roll", "clues": ["whorl", "ringlet", "coil", "rolling wave", "curl", "paradiddle", "bowl", "roster", "rolling", "axial rotation", "bankroll", "axial motion", "cast", "drum roll", "pealing", "bun", "scroll", "curlicue", "roller", "gyre"]}, {"answer": "roll_in_the_hay", "hint": "synonyms for roll in the hay", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "shag", "piece of ass", "ass", "nookie", "roll in the hay"]}, {"answer": "roller", "hint": "synonyms for roller", "clues": ["hair curler", "crimper", "curler", "rolling wave", "roll", "roller"]}, {"answer": "rom", "hint": "synonyms for rom", "clues": ["read-only memory", "read-only storage", "ROM", "fixed storage"]}, {"answer": "roma", "hint": "synonyms for roma", "clues": ["Gypsy", "read-only memory", "Gipsy", "Romani", "fixed storage", "Bohemian", "Romany", "read-only storage", "ROM", "Eternal City", "capital of Italy", "Italian capital"]}, {"answer": "roman_catholic_church", "hint": "synonyms for roman catholic church", "clues": ["Roman Catholic", "Roman Church", "Roman Catholic Church", "Church of Rome", "Western Church"]}, {"answer": "roman_catholic_pope", "hint": "synonyms for roman catholic pope", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "roman_church", "hint": "synonyms for roman church", "clues": ["Roman Catholic", "Roman Church", "Roman Catholic Church", "Church of Rome", "Western Church"]}, {"answer": "roman_law", "hint": "synonyms for roman law", "clues": ["civil law", "Justinian code", "Roman law", "jus civile"]}, {"answer": "romans", "hint": "synonyms for romans", "clues": ["Epistle to the Romans", "Romans", "roman type", "roman letters", "roman print", "Epistle of Paul the Apostle to the Romans"]}, {"answer": "rome", "hint": "synonyms for rome", "clues": ["Rome", "Eternal City", "capital of Italy", "Roma", "Italian capital"]}, {"answer": "rommany", "hint": "synonyms for rommany", "clues": ["Gypsy", "Romany", "Gipsy", "Romani", "Roma", "Bohemian"]}, {"answer": "romp", "hint": "synonyms for romp", "clues": ["hoyden", "play", "shoo-in", "tomboy", "frolic", "walkaway", "blowout", "laugher", "runaway", "gambol", "caper", "romp"]}, {"answer": "ronald_reagan", "hint": "synonyms for ronald reagan", "clues": ["Ronald Wilson Reagan", "President Reagan", "Reagan", "Ronald Reagan"]}, {"answer": "ronald_wilson_reagan", "hint": "synonyms for ronald wilson reagan", "clues": ["Ronald Wilson Reagan", "President Reagan", "Reagan", "Ronald Reagan"]}, {"answer": "roneo", "hint": "synonyms for roneo", "clues": ["Roneo", "Roneograph", "mimeo", "mimeograph machine", "mimeograph"]}, {"answer": "roneograph", "hint": "synonyms for roneograph", "clues": ["Roneo", "Roneograph", "mimeo", "mimeograph machine", "mimeograph"]}, {"answer": "roofy", "hint": "synonyms for roofy", "clues": ["rophy", "R-2", "Mexican valium", "roach", "circle", "forget me drug", "rope", "roofy"]}, {"answer": "room_decorator", "hint": "synonyms for room decorator", "clues": ["decorator", "designer", "interior decorator", "house decorator", "interior designer", "room decorator"]}, {"answer": "rooms", "hint": "synonyms for rooms", "clues": ["elbow room", "room", "way", "suite"]}, {"answer": "roosevelt", "hint": "synonyms for roosevelt", "clues": ["Franklin Delano Roosevelt", "Eleanor Roosevelt", "Theodore Roosevelt", "President Franklin Roosevelt", "Franklin Roosevelt", "President Roosevelt", "FDR", "President Theodore Roosevelt", "Roosevelt", "F. D. Roosevelt"]}, {"answer": "root", "hint": "synonyms for root", "clues": ["base", "radical", "solution", "source", "ancestor", "ascendant", "root word", "rootage", "stem", "origin", "tooth root", "theme", "etymon", "beginning", "antecedent", "root"]}, {"answer": "root_word", "hint": "synonyms for root word", "clues": ["base", "radical", "root", "theme", "stem", "root word"]}, {"answer": "rootage", "hint": "synonyms for rootage", "clues": ["origin", "beginning", "source", "root", "rootage"]}, {"answer": "roots", "hint": "synonyms for roots", "clues": ["base", "radical", "root", "solution", "source", "ancestor", "ascendant", "root word", "rootage", "stem", "origin", "tooth root", "theme", "etymon", "beginning", "antecedent"]}, {"answer": "rope", "hint": "synonyms for rope", "clues": ["rophy", "R-2", "roofy", "Mexican valium", "roach", "circle", "forget me drug", "rope"]}, {"answer": "ropeway", "hint": "synonyms for ropeway", "clues": ["aerial tramway", "cable tramway", "tram", "tramway", "ropeway"]}, {"answer": "rophy", "hint": "synonyms for rophy", "clues": ["R-2", "roofy", "Mexican valium", "roach", "circle", "forget me drug", "rope", "rophy"]}, {"answer": "ropiness", "hint": "synonyms for ropiness", "clues": ["viscidness", "tackiness", "gumminess", "cohesiveness", "viscidity", "glueyness", "gluiness", "ropiness"]}, {"answer": "rosette", "hint": "synonyms for rosette", "clues": ["rose window", "little potato", "russet scab", "stem canker", "rosette"]}, {"answer": "rosiness", "hint": "synonyms for rosiness", "clues": ["rose", "blush", "bloom", "flush", "ruddiness", "rosiness"]}, {"answer": "ross", "hint": "synonyms for ross", "clues": ["Betsy Ross", "Ross", "Nellie Tayloe Ross", "Sir Ronald Ross", "James Clark Ross", "Betsy Griscom Ross", "Nellie Ross", "John Ross", "Sir John Ross"]}, {"answer": "rostrum", "hint": "synonyms for rostrum", "clues": ["pulpit", "podium", "dais", "ambo", "soapbox", "stump", "rostrum"]}, {"answer": "rot", "hint": "synonyms for rot", "clues": ["buncombe", "guff", "hogwash", "rotting", "bunk", "putrefaction", "decomposition", "bunkum", "rot"]}, {"answer": "rotter", "hint": "synonyms for rotter", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "puke", "skunk", "git", "rotter"]}, {"answer": "rotundity", "hint": "synonyms for rotundity", "clues": ["globosity", "sphericalness", "sphericity", "rotundness", "globularness", "rotundity"]}, {"answer": "rotundness", "hint": "synonyms for rotundness", "clues": ["rotundity", "globosity", "sphericalness", "sphericity", "globularness", "rotundness"]}, {"answer": "roue", "hint": "synonyms for roue", "clues": ["rakehell", "blood", "profligate", "rake", "rip", "roue"]}, {"answer": "roughneck", "hint": "synonyms for roughneck", "clues": ["yob", "rowdy", "bully", "ruffian", "hooligan", "tough", "yobbo", "roughneck"]}, {"answer": "roughness", "hint": "synonyms for roughness", "clues": ["disorderliness", "harshness", "pitting", "rowdyism", "rough water", "crudeness", "choppiness", "raggedness", "rowdiness", "indentation", "roughness"]}, {"answer": "rousseau", "hint": "synonyms for rousseau", "clues": ["Henri Rousseau", "Rousseau", "Jean-Jacques Rousseau", "Le Douanier Rousseau"]}, {"answer": "rover", "hint": "synonyms for rover", "clues": ["bird of passage", "roamer", "scouter", "wanderer", "rover"]}, {"answer": "row", "hint": "synonyms for row", "clues": ["quarrel", "rowing", "words", "wrangle", "run-in", "dustup", "course"]}, {"answer": "rowlock", "hint": "synonyms for rowlock", "clues": ["oarlock", "pin", "peg", "tholepin", "thole", "rowlock"]}, {"answer": "rpa-abb", "hint": "synonyms for rpa-abb", "clues": ["RPA-ABB", "ABB", "Revolutionary Proletarian Army", "Alex Boncayao Brigade"]}, {"answer": "rub", "hint": "synonyms for rub", "clues": ["hitch", "hang-up", "snag", "wipe", "rub"]}, {"answer": "rub_al-khali", "hint": "synonyms for rub al-khali", "clues": ["Dahna", "Rub al-Khali", "Great Sandy Desert", "Ar Rimsal"]}, {"answer": "rubberneck", "hint": "synonyms for rubberneck", "clues": ["excursionist", "rubbernecker", "sightseer", "tripper"]}, {"answer": "rubbish", "hint": "synonyms for rubbish", "clues": ["applesauce", "tripe", "wish-wash", "trumpery", "trash", "codswallop", "scrap", "folderol", "rubbish"]}, {"answer": "rubbish_dump", "hint": "synonyms for rubbish dump", "clues": ["dumpsite", "garbage dump", "waste-yard", "trash dump", "dump", "rubbish dump"]}, {"answer": "rubbish_heap", "hint": "synonyms for rubbish heap", "clues": ["garbage heap", "trash pile", "trash heap", "refuse heap", "junk heap", "scrapheap", "junk pile", "rubbish heap"]}, {"answer": "rubble", "hint": "synonyms for rubble", "clues": ["debris", "dust", "junk", "detritus", "rubble"]}, {"answer": "rube", "hint": "synonyms for rube", "clues": ["chawbacon", "yahoo", "yokel", "hayseed", "bumpkin", "hick", "rube"]}, {"answer": "rubinstein", "hint": "synonyms for rubinstein", "clues": ["Arthur Rubinstein", "Anton Rubenstein", "Rubinstein", "Anton Grigorevich Rubinstein"]}, {"answer": "rucksack", "hint": "synonyms for rucksack", "clues": ["backpack", "haversack", "knapsack", "packsack", "rucksack"]}, {"answer": "ruckus", "hint": "synonyms for ruckus", "clues": ["tumult", "rumpus", "commotion", "ruction", "din", "ruckus"]}, {"answer": "ruction", "hint": "synonyms for ruction", "clues": ["ruckus", "tumult", "rumpus", "commotion", "din", "ruction"]}, {"answer": "rudeness", "hint": "synonyms for rudeness", "clues": ["crudity", "discourtesy", "primitivism", "primitiveness", "crudeness"]}, {"answer": "rudiment", "hint": "synonyms for rudiment", "clues": ["ABC", "first principle", "first rudiment", "ABC's", "alphabet", "rudiment"]}, {"answer": "rudiments", "hint": "synonyms for rudiments", "clues": ["rudiment", "ABC's", "basics", "ABC", "first principle", "first rudiment", "alphabet"]}, {"answer": "ruff", "hint": "synonyms for ruff", "clues": ["trumping", "neck ruff", "frill", "choker", "ruffle", "ruff"]}, {"answer": "ruffian", "hint": "synonyms for ruffian", "clues": ["yob", "rowdy", "bully", "hooligan", "roughneck", "tough", "yobbo", "ruffian"]}, {"answer": "ruffle", "hint": "synonyms for ruffle", "clues": ["furbelow", "flounce", "ruff", "neck ruff", "fray", "affray", "frill", "disturbance", "choker", "ruffle"]}, {"answer": "ruholla_khomeini", "hint": "synonyms for ruholla khomeini", "clues": ["Khomeini", "Ayatollah Khomeini", "Ruholla Khomeini", "Ayatollah Ruholla Khomeini"]}, {"answer": "ruin", "hint": "synonyms for ruin", "clues": ["wrecking", "downfall", "ruining", "laying waste", "dilapidation", "ruination"]}, {"answer": "ruination", "hint": "synonyms for ruination", "clues": ["wrecking", "downfall", "laying waste", "ruining", "ruination"]}, {"answer": "ruiner", "hint": "synonyms for ruiner", "clues": ["undoer", "waster", "destroyer", "uprooter", "ruiner"]}, {"answer": "ruining", "hint": "synonyms for ruining", "clues": ["wrecking", "ruin", "laying waste", "ruination"]}, {"answer": "rule", "hint": "synonyms for rule", "clues": ["regulation", "dominion", "pattern", "normal", "formula", "linguistic rule", "ruler", "prescript", "principle", "convention"]}, {"answer": "rum-blossom", "hint": "synonyms for rum-blossom", "clues": ["brandy nose", "hammer nose", "potato nose", "hypertrophic rosacea", "rum nose", "toper's nose", "rhinophyma", "copper nose", "rum-blossom"]}, {"answer": "rum_nose", "hint": "synonyms for rum nose", "clues": ["brandy nose", "hammer nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "toper's nose", "rhinophyma", "copper nose", "rum nose"]}, {"answer": "rumination", "hint": "synonyms for rumination", "clues": ["reflexion", "reflection", "musing", "thoughtfulness", "contemplation", "rumination"]}, {"answer": "rumormonger", "hint": "synonyms for rumormonger", "clues": ["rumourmonger", "gossip", "newsmonger", "gossipmonger"]}, {"answer": "rumourmonger", "hint": "synonyms for rumourmonger", "clues": ["gossip", "rumormonger", "newsmonger", "gossipmonger"]}, {"answer": "rump", "hint": "synonyms for rump", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "rump"]}, {"answer": "rumpus", "hint": "synonyms for rumpus", "clues": ["ruckus", "tumult", "commotion", "ruction", "din", "rumpus"]}, {"answer": "run", "hint": "synonyms for run", "clues": ["runnel", "ravel", "ladder", "campaign", "rill", "test", "trial", "outpouring", "streamlet", "running", "running play", "discharge", "streak", "tally", "foot race", "rivulet", "running game", "political campaign", "run"]}, {"answer": "run-in", "hint": "synonyms for run-in", "clues": ["quarrel", "words", "wrangle", "dustup", "row", "run-in"]}, {"answer": "rung", "hint": "synonyms for rung", "clues": ["spoke", "rundle", "stave", "round", "rung"]}, {"answer": "runnel", "hint": "synonyms for runnel", "clues": ["rill", "run", "streamlet", "rivulet", "runnel"]}, {"answer": "runner", "hint": "synonyms for runner", "clues": ["base runner", "ball carrier", "smuggler", "moon curser", "contrabandist", "runner"]}, {"answer": "runniness", "hint": "synonyms for runniness", "clues": ["fluidness", "liquidness", "fluidity", "liquidity", "runniness"]}, {"answer": "rupee", "hint": "synonyms for rupee", "clues": ["Sri Lanka rupee", "Pakistani rupee", "Indian rupee", "Nepalese rupee", "Mauritian rupee", "Seychelles rupee", "rupee"]}, {"answer": "rupture", "hint": "synonyms for rupture", "clues": ["break", "breach", "severance", "falling out", "rift", "rupture"]}, {"answer": "russell", "hint": "synonyms for russell", "clues": ["Russell", "Henry Kenneth Alfred Russell", "A.E.", "Bertrand Arthur William Russell", "Charles Taze Russell", "William Felton Russell", "Lillian Russell", "George William Russell", "Bertrand Russell", "Bill Russell", "Ken Russell", "Henry Norris Russell", "Henry Russell", "Earl Russell"]}, {"answer": "russia", "hint": "synonyms for russia", "clues": ["Russia", "Soviet Union", "Russian Soviet Federated Socialist Republic", "Soviet Russia", "Russian Federation", "USSR", "Union of Soviet Socialist Republics"]}, {"answer": "rut", "hint": "synonyms for rut", "clues": ["heat", "groove", "estrus", "rut"]}, {"answer": "ruth", "hint": "synonyms for ruth", "clues": ["pathos", "Babe Ruth", "George Herman Ruth", "commiseration", "Ruth", "Sultan of Swat", "pity", "Book of Ruth"]}, {"answer": "rutherford", "hint": "synonyms for rutherford", "clues": ["Rutherford", "Ernest Rutherford", "First Baron Rutherford of Nelson", "Daniel Rutherford", "First Baron Rutherford"]}, {"answer": "rutherford_b._hayes", "hint": "synonyms for rutherford b. hayes", "clues": ["Hayes", "Rutherford B. Hayes", "President Hayes", "Rutherford Birchard Hayes"]}, {"answer": "rutherford_birchard_hayes", "hint": "synonyms for rutherford birchard hayes", "clues": ["Hayes", "Rutherford B. Hayes", "President Hayes", "Rutherford Birchard Hayes"]}, {"answer": "rutherfordium", "hint": "synonyms for rutherfordium", "clues": ["atomic number 104", "Rf", "Unq", "element 104", "unnilquadium", "rutherfordium"]}, {"answer": "s", "hint": "synonyms for s", "clues": ["due south", "sulfur", "siemens", "entropy", "mho", "sulphur", "atomic number 16", "reciprocal ohm", "southward", "randomness", "second", "sec", "south", "S"]}, {"answer": "s._smith_stevens", "hint": "synonyms for s. smith stevens", "clues": ["S. Smith Stevens", "Stevens", "Stanley Smith Stevens", "Smitty Stevens"]}, {"answer": "s.u.v.", "hint": "synonyms for s.u.v.", "clues": ["S.U.V.", "SUV", "sport utility vehicle", "sport utility"]}, {"answer": "s/n", "hint": "synonyms for s/n", "clues": ["signal-to-noise ratio", "signal/noise", "signal-to-noise", "S/N"]}, {"answer": "sa_node", "hint": "synonyms for sa node", "clues": ["sinoatrial node", "cardiac pacemaker", "SA node", "pacemaker"]}, {"answer": "saame", "hint": "synonyms for saame", "clues": ["Lapp", "Same", "Lapplander", "Sami"]}, {"answer": "saami", "hint": "synonyms for saami", "clues": ["Lapp", "Same", "Lapplander", "Sami"]}, {"answer": "sabin_vaccine", "hint": "synonyms for sabin vaccine", "clues": ["TOPV", "Sabin vaccine", "oral poliovirus vaccine", "trivalent live oral poliomyelitis vaccine"]}, {"answer": "sabot", "hint": "synonyms for sabot", "clues": ["geta", "wooden shoe", "clog", "patten", "sabot"]}, {"answer": "sac", "hint": "synonyms for sac", "clues": ["Sac", "Sauk", "pouch", "pocket"]}, {"answer": "sack", "hint": "synonyms for sack", "clues": ["sacking", "firing", "sackful", "carrier bag", "hammock", "chemise", "dismissal", "dismission", "paper bag", "discharge", "liberation", "poke", "release", "pouch", "pocket", "sacque", "shift", "sac"]}, {"answer": "sacking", "hint": "synonyms for sacking", "clues": ["firing", "dismissal", "dismission", "bagging", "liberation", "release", "discharge", "sack"]}, {"answer": "sacrament_of_the_eucharist", "hint": "synonyms for sacrament of the eucharist", "clues": ["Lord's Supper", "Eucharistic liturgy", "Eucharist", "Liturgy", "Holy Eucharist", "sacrament of the Eucharist", "Holy Sacrament"]}, {"answer": "sacred_trinity", "hint": "synonyms for sacred trinity", "clues": ["Trinity", "Blessed Trinity", "Sacred Trinity", "Holy Trinity"]}, {"answer": "sad_sack", "hint": "synonyms for sad sack", "clues": ["bumbler", "bungler", "butcher", "stumbler", "fuckup", "blunderer", "sad sack"]}, {"answer": "saddam", "hint": "synonyms for saddam", "clues": ["Hussein", "Saddam Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husayn", "Husain"]}, {"answer": "saddam_bin_hussein_at-takriti", "hint": "synonyms for saddam bin hussein at-takriti", "clues": ["Hussein", "Saddam Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husayn", "Husain"]}, {"answer": "saddam_hussein", "hint": "synonyms for saddam hussein", "clues": ["Hussein", "Saddam Hussein", "Saddam", "Saddam bin Hussein at-Takriti", "Husayn", "Husain"]}, {"answer": "saddleback", "hint": "synonyms for saddleback", "clues": ["saddle", "saddle roof", "gable roof", "saddleback roof", "saddleback"]}, {"answer": "sade", "hint": "synonyms for sade", "clues": ["de Sade", "Sade", "Marquis de Sade", "Comte Donatien Alphonse Francois de Sade"]}, {"answer": "sadness", "hint": "synonyms for sadness", "clues": ["sorrow", "lugubriousness", "unhappiness", "sorrowfulness", "gloominess", "sadness"]}, {"answer": "safe-deposit", "hint": "synonyms for safe-deposit", "clues": ["deposit box", "safe-deposit box", "safety-deposit", "lockbox"]}, {"answer": "safe-deposit_box", "hint": "synonyms for safe-deposit box", "clues": ["deposit box", "safe-deposit", "lockbox", "safety deposit box"]}, {"answer": "safety", "hint": "synonyms for safety", "clues": ["base hit", "safety device", "refuge", "prophylactic", "safe", "rubber", "condom", "guard", "safety"]}, {"answer": "safety-deposit", "hint": "synonyms for safety-deposit", "clues": ["deposit box", "safe-deposit", "lockbox", "safety deposit box"]}, {"answer": "safety_deposit_box", "hint": "synonyms for safety deposit box", "clues": ["deposit box", "safe-deposit", "lockbox", "safety deposit box"]}, {"answer": "safety_valve", "hint": "synonyms for safety valve", "clues": ["relief valve", "escape", "escape valve", "escape cock", "safety valve"]}, {"answer": "sagaciousness", "hint": "synonyms for sagaciousness", "clues": ["sagacity", "discernment", "judgement", "judiciousness", "sagaciousness"]}, {"answer": "sagacity", "hint": "synonyms for sagacity", "clues": ["discernment", "judgement", "judiciousness", "sagaciousness", "sagacity"]}, {"answer": "sagebrush_state", "hint": "synonyms for sagebrush state", "clues": ["Battle Born State", "Silver State", "Sagebrush State", "Nevada", "NV"]}, {"answer": "sail", "hint": "synonyms for sail", "clues": ["cruise", "canvas", "sheet", "sail"]}, {"answer": "sailing", "hint": "synonyms for sailing", "clues": ["sailplaning", "gliding", "navigation", "soaring", "glide", "seafaring", "sailing"]}, {"answer": "sailor", "hint": "synonyms for sailor", "clues": ["bluejacket", "leghorn", "sailor boy", "navy man", "boater", "crewman", "skimmer", "straw hat", "Panama hat", "Panama", "sailor"]}, {"answer": "sailplaning", "hint": "synonyms for sailplaning", "clues": ["soaring", "sailing", "glide", "gliding", "sailplaning"]}, {"answer": "saint", "hint": "synonyms for saint", "clues": ["nonsuch", "nonpareil", "holy person", "holy man", "apotheosis", "angel", "ideal", "paragon", "saint"]}, {"answer": "saint_andrew", "hint": "synonyms for saint andrew", "clues": ["St. Andrew", "Saint Andrew the Apostle", "Andrew", "Saint Andrew"]}, {"answer": "saint_andrew_the_apostle", "hint": "synonyms for saint andrew the apostle", "clues": ["St. Andrew", "Saint Andrew the Apostle", "Andrew", "Saint Andrew"]}, {"answer": "saint_baeda", "hint": "synonyms for saint baeda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "saint_beda", "hint": "synonyms for saint beda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "saint_bede", "hint": "synonyms for saint bede", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "saint_boniface", "hint": "synonyms for saint boniface", "clues": ["St. Boniface", "Boniface", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "saint_bride", "hint": "synonyms for saint bride", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "saint_bridget", "hint": "synonyms for saint bridget", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "saint_brigid", "hint": "synonyms for saint brigid", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "saint_christopher", "hint": "synonyms for saint christopher", "clues": ["Christopher", "St. Christopher", "Saint Kitts", "St. Kitts"]}, {"answer": "saint_dominic", "hint": "synonyms for saint dominic", "clues": ["Domingo de Guzman", "Dominic", "Saint Dominic", "St. Dominic"]}, {"answer": "saint_elizabeth_ann_bayley_seton", "hint": "synonyms for saint elizabeth ann bayley seton", "clues": ["Saint Elizabeth Ann Bayley Seton", "Mother Seton", "Seton", "Elizabeth Seton"]}, {"answer": "saint_elmo's_fire", "hint": "synonyms for saint elmo's fire", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "corona discharge", "St. Elmo's fire", "corona"]}, {"answer": "saint_elmo's_light", "hint": "synonyms for saint elmo's light", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "corona discharge", "St. Elmo's fire", "corona"]}, {"answer": "saint_francis", "hint": "synonyms for saint francis", "clues": ["St. Francis of Assisi", "Saint Francis River", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "saint_francis_of_assisi", "hint": "synonyms for saint francis of assisi", "clues": ["St. Francis of Assisi", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "saint_ignatius'_itch", "hint": "synonyms for saint ignatius' itch", "clues": ["Saint Ignatius' itch", "pellagra", "mal de la rosa", "mayidism", "mal rosso", "Alpine scurvy"]}, {"answer": "saint_james", "hint": "synonyms for saint james", "clues": ["St. James", "Saint James the Apostle", "Saint James", "James"]}, {"answer": "saint_james_the_apostle", "hint": "synonyms for saint james the apostle", "clues": ["St. James", "Saint James the Apostle", "Saint James", "James"]}, {"answer": "saint_jerome", "hint": "synonyms for saint jerome", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "saint_john", "hint": "synonyms for saint john", "clues": ["John the Evangelist", "John the Divine", "St. John River", "Saint John", "St. John the Apostle", "St. John", "John"]}, {"answer": "saint_john_the_apostle", "hint": "synonyms for saint john the apostle", "clues": ["Saint John the Apostle", "Saint John", "St. John", "John the Evangelist", "John", "John the Divine"]}, {"answer": "saint_johns", "hint": "synonyms for saint johns", "clues": ["Saint John the Apostle", "John", "John the Evangelist", "John the Divine", "St. John River", "Saint John", "St. John", "Saint Johns River"]}, {"answer": "saint_jude", "hint": "synonyms for saint jude", "clues": ["Jude", "Saint Jude", "Thaddaeus", "St. Jude", "Judas"]}, {"answer": "saint_lawrence", "hint": "synonyms for saint lawrence", "clues": ["St. Lawrence", "Saint Lawrence River", "Lawrence", "Laurentius", "Saint Lawrence"]}, {"answer": "saint_louis", "hint": "synonyms for saint louis", "clues": ["Gateway to the West", "St. Louis", "Saint Louis", "Louis IX"]}, {"answer": "saint_matthew", "hint": "synonyms for saint matthew", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Matthew"]}, {"answer": "saint_matthew_the_apostle", "hint": "synonyms for saint matthew the apostle", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Matthew"]}, {"answer": "saint_nicholas", "hint": "synonyms for saint nicholas", "clues": ["Father Christmas", "Santa", "St. Nick", "Kriss Kringle", "Saint Nicholas", "Nicholas", "St. Nicholas", "Santa Claus", "Saint Nick"]}, {"answer": "saint_nick", "hint": "synonyms for saint nick", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "saint_paul", "hint": "synonyms for saint paul", "clues": ["Apostle Paul", "Saul of Tarsus", "St. Paul", "Paul", "capital of Minnesota", "Saint Paul", "Saul", "Apostle of the Gentiles", "Paul the Apostle"]}, {"answer": "saint_peter", "hint": "synonyms for saint peter", "clues": ["Simon Peter", "Saint Peter", "Saint Peter the Apostle", "St. Peter", "Peter"]}, {"answer": "saint_peter_the_apostle", "hint": "synonyms for saint peter the apostle", "clues": ["Simon Peter", "Saint Peter", "Saint Peter the Apostle", "St. Peter", "Peter"]}, {"answer": "saint_petersburg", "hint": "synonyms for saint petersburg", "clues": ["Peterburg", "St. Petersburg", "Leningrad", "Petrograd"]}, {"answer": "saint_thomas", "hint": "synonyms for saint thomas", "clues": ["Saint Thomas Aquinas", "Thomas Aquinas", "Thomas the doubting Apostle", "Thomas", "doubting Thomas", "Saint Thomas", "St. Thomas", "Aquinas"]}, {"answer": "saint_thomas_aquinas", "hint": "synonyms for saint thomas aquinas", "clues": ["Saint Thomas Aquinas", "Saint Thomas", "Thomas Aquinas", "St. Thomas", "Aquinas"]}, {"answer": "saint_ulmo's_fire", "hint": "synonyms for saint ulmo's fire", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "corona discharge", "St. Elmo's fire", "corona"]}, {"answer": "saint_ulmo's_light", "hint": "synonyms for saint ulmo's light", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "corona discharge", "St. Elmo's fire", "corona"]}, {"answer": "saki", "hint": "synonyms for saki", "clues": ["rice beer", "sake", "Hector Hugh Munro", "Munro", "H. H. Munro", "Saki"]}, {"answer": "sal_soda", "hint": "synonyms for sal soda", "clues": ["soda ash", "sodium carbonate", "washing soda", "soda", "sal soda"]}, {"answer": "salaciousness", "hint": "synonyms for salaciousness", "clues": ["lewdness", "salacity", "obscenity", "bawdiness", "salaciousness"]}, {"answer": "salacity", "hint": "synonyms for salacity", "clues": ["lewdness", "obscenity", "bawdiness", "salaciousness", "salacity"]}, {"answer": "salary", "hint": "synonyms for salary", "clues": ["remuneration", "pay", "wage", "earnings", "salary"]}, {"answer": "salary_increase", "hint": "synonyms for salary increase", "clues": ["rise", "hike", "wage increase", "wage hike", "salary increase"]}, {"answer": "saleratus", "hint": "synonyms for saleratus", "clues": ["sodium hydrogen carbonate", "baking soda", "bicarbonate of soda", "sodium bicarbonate", "saleratus"]}, {"answer": "sales", "hint": "synonyms for sales", "clues": ["sale", "gross revenue", "gross sales", "sales agreement", "sales event", "cut-rate sale"]}, {"answer": "salim", "hint": "synonyms for salim", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "sally", "hint": "synonyms for sally", "clues": ["sallying forth", "quip", "crack", "sortie", "wisecrack", "sally"]}, {"answer": "salmagundi", "hint": "synonyms for salmagundi", "clues": ["miscellany", "mixture", "variety", "mixed bag", "assortment", "smorgasbord", "motley", "potpourri", "salmagundi"]}, {"answer": "salon", "hint": "synonyms for salon", "clues": ["beauty parlour", "beauty salon", "beauty shop", "salon"]}, {"answer": "saloon", "hint": "synonyms for saloon", "clues": ["sedan", "taproom", "pub", "barroom", "bar", "taphouse", "pothouse", "public house", "gin mill", "saloon"]}, {"answer": "saltation", "hint": "synonyms for saltation", "clues": ["jump", "terpsichore", "dancing", "leap", "bound", "dance", "bounce", "spring", "saltation"]}, {"answer": "saltpeter", "hint": "synonyms for saltpeter", "clues": ["potassium nitrate", "nitre", "saltpetre", "niter"]}, {"answer": "saltpetre", "hint": "synonyms for saltpetre", "clues": ["saltpeter", "potassium nitrate", "nitre", "niter"]}, {"answer": "salve", "hint": "synonyms for salve", "clues": ["unguent", "balm", "ointment", "unction", "salve"]}, {"answer": "sami", "hint": "synonyms for sami", "clues": ["Lapp", "Same", "Lapplander", "Sami"]}, {"answer": "samoa", "hint": "synonyms for samoa", "clues": ["Samoa", "Samoa i Sisifo", "Independent State of Samoa", "Samoan Islands", "Western Samoa"]}, {"answer": "samoa_i_sisifo", "hint": "synonyms for samoa i sisifo", "clues": ["Samoa", "Western Samoa", "Samoa i Sisifo", "Independent State of Samoa"]}, {"answer": "sampler", "hint": "synonyms for sampler", "clues": ["taste tester", "sampling station", "taster", "sampler"]}, {"answer": "samson", "hint": "synonyms for samson", "clues": ["Samson", "bull", "bruiser", "strapper"]}, {"answer": "samuel_f._b._morse", "hint": "synonyms for samuel f. b. morse", "clues": ["Morse", "Samuel Morse", "Samuel Finley Breese Morse", "Samuel F. B. Morse"]}, {"answer": "samuel_finley_breese_morse", "hint": "synonyms for samuel finley breese morse", "clues": ["Morse", "Samuel Morse", "Samuel Finley Breese Morse", "Samuel F. B. Morse"]}, {"answer": "samuel_morse", "hint": "synonyms for samuel morse", "clues": ["Morse", "Samuel Morse", "Samuel Finley Breese Morse", "Samuel F. B. Morse"]}, {"answer": "sanatorium", "hint": "synonyms for sanatorium", "clues": ["funny farm", "loony bin", "cuckoo's nest", "madhouse", "sanatarium", "nuthouse", "snake pit", "booby hatch", "Bedlam", "crazy house", "funny house"]}, {"answer": "sanchez", "hint": "synonyms for sanchez", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Michael Assat", "Carlos the Jackal"]}, {"answer": "sanction", "hint": "synonyms for sanction", "clues": ["authority", "imprimatur", "indorsement", "authorisation", "warrant", "countenance", "sanction"]}, {"answer": "sanctuary", "hint": "synonyms for sanctuary", "clues": ["chancel", "refuge", "asylum", "bema", "sanctuary"]}, {"answer": "sand", "hint": "synonyms for sand", "clues": ["grit", "Amandine Aurore Lucie Dupin", "Sand", "guts", "George Sand", "backbone", "gumption", "Baroness Dudevant", "moxie"]}, {"answer": "sandril", "hint": "synonyms for sandril", "clues": ["reserpine", "Serpasil", "Sandril", "Raudixin", "Rau-Sed"]}, {"answer": "sands", "hint": "synonyms for sands", "clues": ["grit", "Baroness Dudevant", "Amandine Aurore Lucie Dupin", "Sand", "guts", "littoral zone", "littoral", "George Sand", "backbone", "gumption", "moxie"]}, {"answer": "sang-froid", "hint": "synonyms for sang-froid", "clues": ["poise", "assuredness", "cool", "aplomb", "sang-froid"]}, {"answer": "sanger", "hint": "synonyms for sanger", "clues": ["Margaret Higgins Sanger", "Frederick Sanger", "Sanger", "Margaret Sanger", "Fred Sanger"]}, {"answer": "sanies", "hint": "synonyms for sanies", "clues": ["ichor", "purulence", "festering", "pus", "suppuration", "sanies"]}, {"answer": "santa", "hint": "synonyms for santa", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "santa_claus", "hint": "synonyms for santa claus", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "santa_maria_de_belem", "hint": "synonyms for santa maria de belem", "clues": ["Belem", "Para", "Santa Maria de Belem", "St. Mary of Bethlehem", "Feliz Lusitania"]}, {"answer": "santee", "hint": "synonyms for santee", "clues": ["Santee Dakota", "Santee", "Eastern Sioux", "Santee Sioux"]}, {"answer": "santee_dakota", "hint": "synonyms for santee dakota", "clues": ["Eastern Sioux", "Santee Sioux", "Santee Dakota", "Santee"]}, {"answer": "santee_sioux", "hint": "synonyms for santee sioux", "clues": ["Eastern Sioux", "Santee Sioux", "Santee Dakota", "Santee"]}, {"answer": "santiago", "hint": "synonyms for santiago", "clues": ["Santiago", "capital of Chile", "Santiago de Cuba", "Gran Santiago", "Santiago de los Caballeros", "Santiago de Chile"]}, {"answer": "santiago_de_chile", "hint": "synonyms for santiago de chile", "clues": ["Santiago", "Gran Santiago", "capital of Chile", "Santiago de Chile"]}, {"answer": "sap", "hint": "synonyms for sap", "clues": ["saphead", "blackjack", "cosh", "fool", "muggins", "tomfool", "sap"]}, {"answer": "saphead", "hint": "synonyms for saphead", "clues": ["muggins", "tomfool", "fool", "sap", "saphead"]}, {"answer": "sapidity", "hint": "synonyms for sapidity", "clues": ["flavour", "nip", "relish", "savor", "smack", "sapidness", "tang", "sapidity"]}, {"answer": "sarafem", "hint": "synonyms for sarafem", "clues": ["Sarafem", "fluoxetine hydrocholoride", "fluoxetine", "Prozac"]}, {"answer": "saratoga_chip", "hint": "synonyms for saratoga chip", "clues": ["crisp", "Saratoga chip", "chip", "potato chip"]}, {"answer": "sas", "hint": "synonyms for sas", "clues": ["Sturmabteilung", "SA", "Special Air Service", "Storm Troops"]}, {"answer": "sash", "hint": "synonyms for sash", "clues": ["cincture", "waistband", "window sash", "waistcloth", "girdle", "sash"]}, {"answer": "sashay", "hint": "synonyms for sashay", "clues": ["chasse", "excursion", "jaunt", "expedition", "pleasure trip", "junket", "outing", "sashay"]}, {"answer": "saskatoon", "hint": "synonyms for saskatoon", "clues": ["Saskatoon", "shadberry", "serviceberry", "juneberry"]}, {"answer": "sass", "hint": "synonyms for sass", "clues": ["Special Air Service", "mouth", "backtalk", "SAS", "sassing", "lip"]}, {"answer": "sassing", "hint": "synonyms for sassing", "clues": ["sass", "mouth", "backtalk", "lip"]}, {"answer": "satan", "hint": "synonyms for satan", "clues": ["Satan", "the Tempter", "Prince of Darkness", "Old Nick", "Beelzebub", "Devil", "Lucifer"]}, {"answer": "saturation", "hint": "synonyms for saturation", "clues": ["vividness", "intensity", "chroma", "impregnation", "saturation"]}, {"answer": "saturnalia", "hint": "synonyms for saturnalia", "clues": ["orgy", "riot", "Saturnalia", "bacchanal", "debauchery", "drunken revelry", "debauch"]}, {"answer": "satyr", "hint": "synonyms for satyr", "clues": ["forest god", "lecher", "letch", "satyr"]}, {"answer": "saucer", "hint": "synonyms for saucer", "clues": ["dish aerial", "disk", "dish", "dish antenna", "discus", "disc", "saucer"]}, {"answer": "sauciness", "hint": "synonyms for sauciness", "clues": ["archness", "pertness", "perkiness", "impertinence", "sauciness"]}, {"answer": "saul", "hint": "synonyms for saul", "clues": ["Apostle Paul", "Saul of Tarsus", "Paul", "Saint Paul", "Saul", "Paul the Apostle", "Apostle of the Gentiles", "St. Paul"]}, {"answer": "saul_of_tarsus", "hint": "synonyms for saul of tarsus", "clues": ["Apostle Paul", "Saul of Tarsus", "St. Paul", "Paul", "Saint Paul", "Saul", "Apostle of the Gentiles", "Paul the Apostle"]}, {"answer": "saunter", "hint": "synonyms for saunter", "clues": ["amble", "stroll", "promenade", "perambulation", "saunter"]}, {"answer": "savagery", "hint": "synonyms for savagery", "clues": ["barbarism", "barbarity", "ferociousness", "savageness", "viciousness", "brutality", "savagery"]}, {"answer": "savings", "hint": "synonyms for savings", "clues": ["preservation", "nest egg", "deliverance", "economy", "saving", "rescue", "delivery"]}, {"answer": "savings_account_trust", "hint": "synonyms for savings account trust", "clues": ["trust account", "Totten trust", "savings bank trust", "savings account trust"]}, {"answer": "savings_bank_trust", "hint": "synonyms for savings bank trust", "clues": ["trust account", "Totten trust", "savings account trust", "savings bank trust"]}, {"answer": "savior", "hint": "synonyms for savior", "clues": ["Saviour", "Christ", "the Nazarene", "rescuer", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "saviour", "hint": "synonyms for saviour", "clues": ["Saviour", "Christ", "the Nazarene", "rescuer", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "savor", "hint": "synonyms for savor", "clues": ["flavour", "nip", "sapidity", "relish", "smack", "tang", "savour"]}, {"answer": "savoring", "hint": "synonyms for savoring", "clues": ["savouring", "tasting", "degustation", "relishing"]}, {"answer": "savour", "hint": "synonyms for savour", "clues": ["flavour", "nip", "sapidity", "relish", "savor", "smack", "tang"]}, {"answer": "savouring", "hint": "synonyms for savouring", "clues": ["savoring", "tasting", "degustation", "relishing"]}, {"answer": "saw", "hint": "synonyms for saw", "clues": ["adage", "sawing machine", "power saw", "byword", "proverb", "saw"]}, {"answer": "saxe", "hint": "synonyms for saxe", "clues": ["Sachsen", "Hermann Maurice Saxe", "Marshal Saxe", "Saxony", "comte de Saxe", "Saxe"]}, {"answer": "say-so", "hint": "synonyms for say-so", "clues": ["authority", "dominance", "dictum", "authorisation", "potency", "pronouncement", "say-so"]}, {"answer": "say_hey_kid", "hint": "synonyms for say hey kid", "clues": ["Willie Howard Mays Jr.", "Mays", "Say Hey Kid", "Willie Mays"]}, {"answer": "sayonara", "hint": "synonyms for sayonara", "clues": ["good-bye", "cheerio", "good day", "so long", "adieu", "au revoir", "arrivederci", "auf wiedersehen", "adios", "bye-bye", "bye", "sayonara"]}, {"answer": "sb", "hint": "synonyms for sb", "clues": ["Sb", "BS", "atomic number 51", "antimony", "Bachelor of Science"]}, {"answer": "sc", "hint": "synonyms for sc", "clues": ["Palmetto State", "Security Council", "SC", "atomic number 21", "scandium", "South Carolina"]}, {"answer": "scads", "hint": "synonyms for scads", "clues": ["slews", "heaps", "lots", "tons", "wads", "gobs", "rafts", "lashings", "oodles", "scores", "stacks", "piles", "loads", "dozens", "scads"]}, {"answer": "scag", "hint": "synonyms for scag", "clues": ["big H", "nose drops", "hell dust", "smack", "thunder", "skag", "scag"]}, {"answer": "scalawag", "hint": "synonyms for scalawag", "clues": ["scallywag", "rascal", "varlet", "rogue", "monkey", "scamp", "knave", "rapscallion", "imp", "scalawag"]}, {"answer": "scale", "hint": "synonyms for scale", "clues": ["plate", "exfoliation", "scale of measurement", "graduated table", "scurf", "shell", "ordered series", "musical scale", "weighing machine", "scale"]}, {"answer": "scallop", "hint": "synonyms for scallop", "clues": ["cutlet", "escallop", "crenelle", "scollop", "crenature", "crenation"]}, {"answer": "scallywag", "hint": "synonyms for scallywag", "clues": ["rascal", "varlet", "rogue", "scalawag", "monkey", "scamp", "knave", "rapscallion", "imp", "scallywag"]}, {"answer": "scammer", "hint": "synonyms for scammer", "clues": ["chiseler", "defrauder", "swindler", "gouger", "grifter", "scammer"]}, {"answer": "scamp", "hint": "synonyms for scamp", "clues": ["scallywag", "rascal", "rapscallion", "scalawag", "monkey", "imp", "scamp"]}, {"answer": "scandinavian_language", "hint": "synonyms for scandinavian language", "clues": ["Norse", "Nordic", "Scandinavian", "Scandinavian language", "North Germanic language", "North Germanic"]}, {"answer": "scantiness", "hint": "synonyms for scantiness", "clues": ["poorness", "meagreness", "exiguity", "leanness", "scantness"]}, {"answer": "scantness", "hint": "synonyms for scantness", "clues": ["poorness", "scantiness", "meagreness", "exiguity", "leanness"]}, {"answer": "scar", "hint": "synonyms for scar", "clues": ["scrape", "scratch", "mark", "cicatrix", "cicatrice", "scar"]}, {"answer": "scarecrow", "hint": "synonyms for scarecrow", "clues": ["strawman", "scarer", "bird-scarer", "scarecrow"]}, {"answer": "scarer", "hint": "synonyms for scarer", "clues": ["strawman", "scarecrow", "bird-scarer", "scarer"]}, {"answer": "scarface", "hint": "synonyms for scarface", "clues": ["Scarface", "Al Capone", "Capone", "Alphonse Capone"]}, {"answer": "scattering", "hint": "synonyms for scattering", "clues": ["strewing", "sprinkling", "dispersion", "scatter", "sprinkle"]}, {"answer": "scene", "hint": "synonyms for scene", "clues": ["view", "shot", "panorama", "fit", "prospect", "aspect", "tantrum", "conniption", "picture", "setting", "scenery", "vista", "scene"]}, {"answer": "scent", "hint": "synonyms for scent", "clues": ["smell", "olfactory property", "perfume", "odor", "fragrance", "aroma", "scent"]}, {"answer": "scheme", "hint": "synonyms for scheme", "clues": ["system", "dodge", "outline", "schema", "strategy", "dodging", "scheme"]}, {"answer": "scheol", "hint": "synonyms for scheol", "clues": ["netherworld", "infernal region", "Hades", "Hell", "underworld", "Scheol"]}, {"answer": "schlesien", "hint": "synonyms for schlesien", "clues": ["Slezsko", "Schlesien", "Silesia", "Slask"]}, {"answer": "schmoose", "hint": "synonyms for schmoose", "clues": ["schmooze", "chat", "confab", "confabulation"]}, {"answer": "schmooze", "hint": "synonyms for schmooze", "clues": ["schmoose", "chat", "confab", "confabulation"]}, {"answer": "schnorchel", "hint": "synonyms for schnorchel", "clues": ["schnorkel", "snorkel breather", "breather", "schnorchel"]}, {"answer": "schnorkel", "hint": "synonyms for schnorkel", "clues": ["schnorchel", "snorkel breather", "breather", "snorkel"]}, {"answer": "schnoz", "hint": "synonyms for schnoz", "clues": ["schnozzle", "snout", "snoot", "hooter", "beak", "honker", "nozzle", "schnoz"]}, {"answer": "schnozzle", "hint": "synonyms for schnozzle", "clues": ["snout", "snoot", "hooter", "beak", "honker", "schnoz", "nozzle", "schnozzle"]}, {"answer": "scholar", "hint": "synonyms for scholar", "clues": ["student", "bookman", "assimilator", "learner", "scholarly person", "scholar"]}, {"answer": "scholarship", "hint": "synonyms for scholarship", "clues": ["learning", "learnedness", "encyclopedism", "erudition", "eruditeness", "scholarship"]}, {"answer": "school", "hint": "synonyms for school", "clues": ["schooltime", "schoolhouse", "school day", "shoal", "schooling"]}, {"answer": "school_of_thought", "hint": "synonyms for school of thought", "clues": ["philosophical system", "doctrine", "ism", "philosophy", "school of thought"]}, {"answer": "school_text", "hint": "synonyms for school text", "clues": ["text edition", "schoolbook", "text", "textbook", "school text"]}, {"answer": "schoolbook", "hint": "synonyms for schoolbook", "clues": ["text edition", "school text", "textbook", "text", "schoolbook"]}, {"answer": "schumann", "hint": "synonyms for schumann", "clues": ["Robert Schumann", "Schumann", "Robert Alexander Schumann", "Clara Josephine Schumann"]}, {"answer": "schweiz", "hint": "synonyms for schweiz", "clues": ["Swiss Confederation", "Schweiz", "Svizzera", "Switzerland", "Suisse"]}, {"answer": "science_lab", "hint": "synonyms for science lab", "clues": ["lab", "research lab", "science laboratory", "laboratory", "research laboratory", "science lab"]}, {"answer": "science_laboratory", "hint": "synonyms for science laboratory", "clues": ["lab", "research lab", "laboratory", "research laboratory", "science lab", "science laboratory"]}, {"answer": "scintilla", "hint": "synonyms for scintilla", "clues": ["tittle", "iota", "smidge", "shred", "whit", "smidgin", "scintilla"]}, {"answer": "scintillation", "hint": "synonyms for scintillation", "clues": ["twinkle", "sparkle", "glister", "sparkling", "scintillation"]}, {"answer": "scipio", "hint": "synonyms for scipio", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "scipio_africanus", "hint": "synonyms for scipio africanus", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "scipio_africanus_major", "hint": "synonyms for scipio africanus major", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "scipio_the_elder", "hint": "synonyms for scipio the elder", "clues": ["Scipio Africanus", "Publius Cornelius Scipio Africanus Major", "Scipio Africanus Major", "Scipio the Elder", "Scipio", "Publius Cornelius Scipio"]}, {"answer": "scissors", "hint": "synonyms for scissors", "clues": ["scissors grip", "pair of scissors", "scissors hold", "scissors"]}, {"answer": "scissure", "hint": "synonyms for scissure", "clues": ["crack", "fissure", "cleft", "crevice", "scissure"]}, {"answer": "sclerosing_leukoencephalitis", "hint": "synonyms for sclerosing leukoencephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis", "sclerosing leukoencephalitis"]}, {"answer": "scnt", "hint": "synonyms for scnt", "clues": ["somatic cell nuclear transfer", "SCNT", "nuclear transplantation", "somatic cell nuclear transplantation"]}, {"answer": "scoffer", "hint": "synonyms for scoffer", "clues": ["mocker", "jeerer", "flouter", "gorger", "scoffer"]}, {"answer": "scold", "hint": "synonyms for scold", "clues": ["nag", "scolder", "common scold", "nagger", "scold"]}, {"answer": "scolder", "hint": "synonyms for scolder", "clues": ["scold", "nag", "common scold", "nagger", "scolder"]}, {"answer": "scoop", "hint": "synonyms for scoop", "clues": ["soap", "liquid ecstasy", "easy lay", "scoop shovel", "scoopful", "Georgia home boy", "grievous bodily harm", "max", "goop", "exclusive", "pocket", "scoop"]}, {"answer": "scooter", "hint": "synonyms for scooter", "clues": ["motor scooter", "water scooter", "ice yacht", "iceboat", "sea scooter", "scooter"]}, {"answer": "scope", "hint": "synonyms for scope", "clues": ["ambit", "range", "background", "CRO", "orbit", "telescope", "reach", "setting", "cathode-ray oscilloscope", "compass", "oscilloscope", "scope"]}, {"answer": "scopes", "hint": "synonyms for scopes", "clues": ["ambit", "range", "background", "CRO", "John Thomas Scopes", "Scopes", "oscilloscope", "John Scopes", "orbit", "reach", "setting", "telescope", "compass", "cathode-ray oscilloscope"]}, {"answer": "score", "hint": "synonyms for score", "clues": ["grudge", "grade", "grievance", "scotch", "musical score", "mark", "sexual conquest", "account", "score"]}, {"answer": "scores", "hint": "synonyms for scores", "clues": ["scotch", "musical score", "tons", "score", "gobs", "rafts", "lashings", "grade", "oodles", "account", "dozens", "grievance", "scads", "slews", "heaps", "lots", "mark", "sexual conquest", "wads", "grudge", "stacks", "loads", "piles"]}, {"answer": "scotch_malt_whiskey", "hint": "synonyms for scotch malt whiskey", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whisky"]}, {"answer": "scotch_malt_whisky", "hint": "synonyms for scotch malt whisky", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whisky"]}, {"answer": "scotch_whiskey", "hint": "synonyms for scotch whiskey", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whisky"]}, {"answer": "scotch_whisky", "hint": "synonyms for scotch whisky", "clues": ["Scotch whisky", "Scotch malt whisky", "Scotch", "malt whisky"]}, {"answer": "scott", "hint": "synonyms for scott", "clues": ["Dred Scott", "Sir Walter Scott", "George C. Scott", "Winfield Scott", "Robert Falcon Scott", "Robert Scott", "Scott"]}, {"answer": "scourge", "hint": "synonyms for scourge", "clues": ["flagellum", "nemesis", "terror", "curse", "bane", "threat", "scourge"]}, {"answer": "scourge_of_god", "hint": "synonyms for scourge of god", "clues": ["Scourge of the Gods", "Scourge of God", "Attila", "Attila the Hun"]}, {"answer": "scourge_of_the_gods", "hint": "synonyms for scourge of the gods", "clues": ["Scourge of the Gods", "Scourge of God", "Attila", "Attila the Hun"]}, {"answer": "scout", "hint": "synonyms for scout", "clues": ["sentry", "Scout", "talent scout", "lookout man", "sentinel", "picket", "lookout", "guide", "pathfinder", "spotter", "watch"]}, {"answer": "scrap", "hint": "synonyms for scrap", "clues": ["combat", "fleck", "bit", "fight", "chip", "flake", "trash", "rubbish", "scrap"]}, {"answer": "scrape", "hint": "synonyms for scrape", "clues": ["excoriation", "scratching", "scraping", "abrasion", "mark", "scar", "scrape"]}, {"answer": "scrapheap", "hint": "synonyms for scrapheap", "clues": ["garbage heap", "trash pile", "trash heap", "refuse heap", "junk heap", "rubbish heap", "junk pile", "scrapheap"]}, {"answer": "scrapper", "hint": "synonyms for scrapper", "clues": ["belligerent", "battler", "fighter", "combatant", "scrapper"]}, {"answer": "scraps", "hint": "synonyms for scraps", "clues": ["combat", "garbage", "bit", "fight", "chip", "refuse", "flake", "rubbish", "trash", "fleck", "scrap", "food waste"]}, {"answer": "scratch", "hint": "synonyms for scratch", "clues": ["excoriation", "scraping", "slit", "clams", "dinero", "bread", "lettuce", "scrawl", "scar", "scrape", "moolah", "dough", "scribble", "lucre", "scratching", "pelf", "wampum", "kale", "scratch line", "cacography", "start", "chicken feed", "mark", "lolly", "simoleons", "sugar", "gelt", "shekels", "loot", "abrasion", "starting line", "boodle", "dent", "prick", "incision", "cabbage"]}, {"answer": "scream", "hint": "synonyms for scream", "clues": ["shrieking", "thigh-slapper", "riot", "howler", "belly laugh", "screech", "sidesplitter", "wow", "screaming"]}, {"answer": "screamer", "hint": "synonyms for screamer", "clues": ["yeller", "screecher", "bellower", "shouter", "bawler", "scorcher", "roarer", "screamer"]}, {"answer": "screecher", "hint": "synonyms for screecher", "clues": ["screamer", "yeller", "bellower", "shouter", "bawler", "roarer", "screecher"]}, {"answer": "screen", "hint": "synonyms for screen", "clues": ["silver screen", "covert", "sieve", "concealment", "projection screen", "CRT screen", "screenland", "filmdom", "screen door", "blind", "screen"]}, {"answer": "screening", "hint": "synonyms for screening", "clues": ["viewing", "covering", "showing", "masking", "screening"]}, {"answer": "screw", "hint": "synonyms for screw", "clues": ["jailor", "screwing", "shtup", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "prison guard", "nookie", "jailer", "turnkey", "piece of tail", "screw propeller", "gaoler", "ass"]}, {"answer": "screwing", "hint": "synonyms for screwing", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie"]}, {"answer": "scribble", "hint": "synonyms for scribble", "clues": ["scratch", "scrawl", "cacography", "scrabble", "doodle"]}, {"answer": "scribe", "hint": "synonyms for scribe", "clues": ["scriber", "scrivener", "penman", "copyist", "scratch awl", "Augustin Eugene Scribe"]}, {"answer": "script", "hint": "synonyms for script", "clues": ["playscript", "handwriting", "book", "hand", "script"]}, {"answer": "scripture", "hint": "synonyms for scripture", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "sacred scripture", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "scroll", "hint": "synonyms for scroll", "clues": ["whorl", "ringlet", "coil", "curl", "gyre", "roll", "curlicue", "scroll"]}, {"answer": "scrubs", "hint": "synonyms for scrubs", "clues": ["chaparral", "scouring", "bush", "gown", "scrubbing", "scrub", "surgical gown"]}, {"answer": "scruples", "hint": "synonyms for scruples", "clues": ["scruple", "qualm", "moral sense", "conscience", "sense of right and wrong", "misgiving"]}, {"answer": "scrutin_uninomial_system", "hint": "synonyms for scrutin uninomial system", "clues": ["uninominal system", "uninominal voting system", "single-member system", "scrutin uninomial system"]}, {"answer": "scrutin_uninominal_voting_system", "hint": "synonyms for scrutin uninominal voting system", "clues": ["uninominal system", "scrutin uninomial system", "uninominal voting system", "single-member system"]}, {"answer": "scuffle", "hint": "synonyms for scuffle", "clues": ["dogfight", "tussle", "hassle", "scuffle hoe", "Dutch hoe", "scramble", "rough-and-tumble", "scuffle"]}, {"answer": "sculptor", "hint": "synonyms for sculptor", "clues": ["carver", "statue maker", "Sculptor", "sculpturer"]}, {"answer": "sculptural_relief", "hint": "synonyms for sculptural relief", "clues": ["rilievo", "relief", "embossment", "sculptural relief"]}, {"answer": "scum_bag", "hint": "synonyms for scum bag", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "rat", "dirty dog", "lowlife", "stinker", "puke", "rotter", "skunk", "git", "scum bag"]}, {"answer": "sd", "hint": "synonyms for sd", "clues": ["Mount Rushmore State", "South Dakota", "SD", "Coyote State"]}, {"answer": "se", "hint": "synonyms for se", "clues": ["Se", "sou'-east", "selenium", "southeastward", "atomic number 34", "southeast"]}, {"answer": "sea-poose", "hint": "synonyms for sea-poose", "clues": ["sea purse", "sea puss", "undertow", "sea-poose"]}, {"answer": "sea-purse", "hint": "synonyms for sea-purse", "clues": ["sea purse", "sea puss", "sea-poose", "undertow"]}, {"answer": "sea-puss", "hint": "synonyms for sea-puss", "clues": ["sea purse", "sea puss", "sea-poose", "undertow"]}, {"answer": "sea_biscuit", "hint": "synonyms for sea biscuit", "clues": ["hardtack", "pilot biscuit", "pilot bread", "ship biscuit", "sea biscuit"]}, {"answer": "sea_bottom", "hint": "synonyms for sea bottom", "clues": ["ocean bottom", "sea floor", "seabed", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom"]}, {"answer": "sea_dog", "hint": "synonyms for sea dog", "clues": ["Jack", "old salt", "mariner", "seafarer", "seaman", "gob", "Jack-tar", "tar", "sea dog"]}, {"answer": "sea_floor", "hint": "synonyms for sea floor", "clues": ["ocean bottom", "seabed", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom", "sea floor"]}, {"answer": "sea_purse", "hint": "synonyms for sea purse", "clues": ["sea puss", "sea-poose", "undertow", "sea-purse"]}, {"answer": "sea_puss", "hint": "synonyms for sea puss", "clues": ["sea purse", "undertow", "sea-poose", "sea-puss"]}, {"answer": "seabed", "hint": "synonyms for seabed", "clues": ["ocean bottom", "sea floor", "ocean floor", "Davy Jones", "Davy Jones's locker", "sea bottom", "seabed"]}, {"answer": "seafarer", "hint": "synonyms for seafarer", "clues": ["Jack", "old salt", "mariner", "sea dog", "seaman", "gob", "Jack-tar", "tar", "seafarer"]}, {"answer": "seal", "hint": "synonyms for seal", "clues": ["Navy SEAL", "SEAL", "cachet", "sealing wax", "stamp", "sealskin", "seal of approval"]}, {"answer": "seam", "hint": "synonyms for seam", "clues": ["furrow", "crease", "wrinkle", "line", "bed", "seam"]}, {"answer": "seaman", "hint": "synonyms for seaman", "clues": ["Jack", "old salt", "mariner", "Seaman", "Nellie Bly", "Elizabeth Cochrane Seaman", "seafarer", "sea dog", "Elizabeth Seaman", "gob", "Jack-tar", "tar"]}, {"answer": "seamstress", "hint": "synonyms for seamstress", "clues": ["modiste", "dressmaker", "needlewoman", "sempstress"]}, {"answer": "seasoner", "hint": "synonyms for seasoner", "clues": ["seasoning", "flavoring", "flavorer", "seasoner"]}, {"answer": "seasoning", "hint": "synonyms for seasoning", "clues": ["flavoring", "flavorer", "seasoner", "seasoning"]}, {"answer": "seat", "hint": "synonyms for seat", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "butt", "tail end", "derriere", "place", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "seat"]}, {"answer": "seats", "hint": "synonyms for seats", "clues": ["tush", "buns", "seat", "butt", "tail end", "rear", "buttocks", "bum", "rump", "nates", "can", "fundament", "rear end", "hindquarters", "prat", "derriere", "place", "stern", "backside", "seating area", "posterior", "keister", "tail", "seating room", "bottom", "ass", "fanny", "hind end", "arse", "behind", "tooshie"]}, {"answer": "seawall", "hint": "synonyms for seawall", "clues": ["mole", "jetty", "groin", "groyne", "bulwark", "breakwater", "seawall"]}, {"answer": "seconal", "hint": "synonyms for seconal", "clues": ["secobarbital", "secobarbital sodium", "red devil", "Seconal"]}, {"answer": "second_advent", "hint": "synonyms for second advent", "clues": ["Parousia", "Second Advent", "Second Coming", "Second Coming of Christ", "Advent"]}, {"answer": "second_coming", "hint": "synonyms for second coming", "clues": ["Parousia", "Second Advent", "Second Coming", "Second Coming of Christ", "Advent"]}, {"answer": "second_coming_of_christ", "hint": "synonyms for second coming of christ", "clues": ["Parousia", "Second Advent", "Second Coming", "Second Coming of Christ", "Advent"]}, {"answer": "second_earl_of_chatham", "hint": "synonyms for second earl of chatham", "clues": ["Second Earl of Chatham", "William Pitt", "Pitt", "Pitt the Younger"]}, {"answer": "second_sight", "hint": "synonyms for second sight", "clues": ["extrasensory perception", "ESP", "clairvoyance", "E.S.P.", "second sight"]}, {"answer": "secondary_school", "hint": "synonyms for secondary school", "clues": ["middle school", "lycee", "Gymnasium", "lyceum", "secondary school"]}, {"answer": "secrecy", "hint": "synonyms for secrecy", "clues": ["privacy", "privateness", "secretiveness", "concealment", "silence", "secrecy"]}, {"answer": "secret_service", "hint": "synonyms for secret service", "clues": ["SS", "United States Secret Service", "USSS", "Secret Service"]}, {"answer": "secret_writing", "hint": "synonyms for secret writing", "clues": ["coding", "steganography", "cryptography", "cryptogram", "secret writing"]}, {"answer": "secretary", "hint": "synonyms for secretary", "clues": ["secretaire", "writing table", "escritoire", "secretarial assistant", "repository", "secretary"]}, {"answer": "section", "hint": "synonyms for section", "clues": ["plane section", "incision", "surgical incision", "part", "division", "discussion section", "subdivision", "segment", "department", "section"]}, {"answer": "sectionalisation", "hint": "synonyms for sectionalisation", "clues": ["sectionalization", "segmentation", "partition", "division"]}, {"answer": "sectionalization", "hint": "synonyms for sectionalization", "clues": ["segmentation", "partition", "sectionalisation", "division"]}, {"answer": "secureness", "hint": "synonyms for secureness", "clues": ["fastness", "fixity", "fixedness", "fixture", "secureness"]}, {"answer": "security", "hint": "synonyms for security", "clues": ["security department", "protection", "certificate", "surety", "security measure", "security system", "security"]}, {"answer": "seed", "hint": "synonyms for seed", "clues": ["ejaculate", "source", "come", "seminal fluid", "cum", "germ", "seeded player", "semen", "seed"]}, {"answer": "seer", "hint": "synonyms for seer", "clues": ["oracle", "vaticinator", "illusionist", "visionary", "prophesier", "prophet", "seer"]}, {"answer": "seesaw", "hint": "synonyms for seesaw", "clues": ["teeterboard", "dandle board", "teeter-totter", "teeter", "tilting board", "seesaw"]}, {"answer": "segmentation", "hint": "synonyms for segmentation", "clues": ["sectionalization", "cleavage", "partition", "division", "segmentation"]}, {"answer": "seigneur_de_bayard", "hint": "synonyms for seigneur de bayard", "clues": ["Pierre Terrail", "Bayard", "Chevalier de Bayard", "Seigneur de Bayard"]}, {"answer": "seizure", "hint": "synonyms for seizure", "clues": ["ictus", "gaining control", "capture", "raptus", "seizure"]}, {"answer": "selcraig", "hint": "synonyms for selcraig", "clues": ["Selkirk", "Selcraig", "Alexander Selcraig", "Alexander Selkirk"]}, {"answer": "selection", "hint": "synonyms for selection", "clues": ["extract", "choice", "option", "excerpt", "excerption", "survival of the fittest", "natural selection", "survival", "pick", "selection"]}, {"answer": "selective_service", "hint": "synonyms for selective service", "clues": ["draft", "SSS", "Selective Service", "conscription", "muster", "Selective Service System"]}, {"answer": "self-abnegation", "hint": "synonyms for self-abnegation", "clues": ["self-denial", "denial", "abnegation", "self-renunciation", "self-abnegation"]}, {"answer": "self-assurance", "hint": "synonyms for self-assurance", "clues": ["confidence", "authority", "self-confidence", "assurance", "sureness", "self-assurance"]}, {"answer": "self-centeredness", "hint": "synonyms for self-centeredness", "clues": ["self-interest", "egoism", "self-concern", "egocentrism", "self-centeredness"]}, {"answer": "self-command", "hint": "synonyms for self-command", "clues": ["self-will", "willpower", "self-control", "possession", "self-possession", "self-command"]}, {"answer": "self-concern", "hint": "synonyms for self-concern", "clues": ["self-interest", "egoism", "egocentrism", "self-centeredness", "self-concern"]}, {"answer": "self-confidence", "hint": "synonyms for self-confidence", "clues": ["confidence", "authority", "self-assurance", "assurance", "sureness", "self-confidence"]}, {"answer": "self-control", "hint": "synonyms for self-control", "clues": ["self-will", "willpower", "self-command", "self-discipline", "self-denial", "possession", "self-possession", "self-control"]}, {"answer": "self-denial", "hint": "synonyms for self-denial", "clues": ["denial", "abnegation", "self-control", "self-abnegation", "self-discipline", "self-renunciation", "self-denial"]}, {"answer": "self-drive", "hint": "synonyms for self-drive", "clues": ["you-drive", "car rental", "hire car", "rent-a-car", "self-drive"]}, {"answer": "self-interest", "hint": "synonyms for self-interest", "clues": ["opportunism", "self-seeking", "self-concern", "egocentrism", "self-centeredness", "egoism", "expedience", "self-interest"]}, {"answer": "self-love", "hint": "synonyms for self-love", "clues": ["amour propre", "narcissism", "vanity", "narcism", "conceit", "self-love"]}, {"answer": "self-possession", "hint": "synonyms for self-possession", "clues": ["self-will", "willpower", "self-command", "self-control", "possession", "self-possession"]}, {"answer": "self-renunciation", "hint": "synonyms for self-renunciation", "clues": ["self-abnegation", "self-denial", "denial", "abnegation", "self-renunciation"]}, {"answer": "self-taught_art", "hint": "synonyms for self-taught art", "clues": ["primitive art", "vernacular art", "outsider art", "naive art", "self-taught art"]}, {"answer": "self-will", "hint": "synonyms for self-will", "clues": ["willpower", "bullheadedness", "self-command", "self-control", "obstinance", "stubbornness", "pigheadedness", "possession", "obstinacy", "self-possession", "self-will"]}, {"answer": "selkirk", "hint": "synonyms for selkirk", "clues": ["Selkirk", "Selcraig", "Alexander Selcraig", "Alexander Selkirk"]}, {"answer": "seller", "hint": "synonyms for seller", "clues": ["marketer", "trafficker", "vender", "vendor", "seller"]}, {"answer": "sellers", "hint": "synonyms for sellers", "clues": ["Peter Sellers", "Sellers", "vendor", "vender", "marketer", "trafficker"]}, {"answer": "seltzer", "hint": "synonyms for seltzer", "clues": ["soda water", "carbonated water", "sparkling water", "club soda", "seltzer"]}, {"answer": "semblance", "hint": "synonyms for semblance", "clues": ["color", "illusion", "likeness", "gloss", "semblance"]}, {"answer": "semen", "hint": "synonyms for semen", "clues": ["ejaculate", "seed", "come", "seminal fluid", "cum", "semen"]}, {"answer": "semi", "hint": "synonyms for semi", "clues": ["articulated lorry", "trucking rig", "rig", "semifinal", "trailer truck", "tractor trailer", "semitrailer", "semi"]}, {"answer": "seminal_fluid", "hint": "synonyms for seminal fluid", "clues": ["ejaculate", "semen", "seed", "come", "cum", "seminal fluid"]}, {"answer": "sempstress", "hint": "synonyms for sempstress", "clues": ["modiste", "dressmaker", "needlewoman", "seamstress"]}, {"answer": "sendup", "hint": "synonyms for sendup", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "takeoff", "burlesque", "parody", "lampoon", "spoof", "sendup"]}, {"answer": "senior_high", "hint": "synonyms for senior high", "clues": ["highschool", "high", "senior high school", "senior high"]}, {"answer": "senior_high_school", "hint": "synonyms for senior high school", "clues": ["highschool", "high", "senior high", "senior high school"]}, {"answer": "seniority", "hint": "synonyms for seniority", "clues": ["senior status", "higher rank", "longevity", "higher status", "seniority"]}, {"answer": "sens", "hint": "synonyms for sens", "clues": ["locoweed", "Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "sen", "sess", "weed", "skunk"]}, {"answer": "sensation", "hint": "synonyms for sensation", "clues": ["hotshot", "esthesis", "virtuoso", "sense experience", "wizard", "champion", "sensory faculty", "ace", "maven", "star", "wiz", "whizz", "superstar", "genius", "mavin", "adept", "sense", "sentience", "sense datum", "sense impression", "sensation"]}, {"answer": "sensationalism", "hint": "synonyms for sensationalism", "clues": ["empiricist philosophy", "empiricism", "sensualism", "luridness", "sensationalism"]}, {"answer": "sense", "hint": "synonyms for sense", "clues": ["good sense", "common sense", "sensory faculty", "signified", "horse sense", "sensation", "mother wit", "sentience", "gumption", "sense"]}, {"answer": "sense_datum", "hint": "synonyms for sense datum", "clues": ["sensation", "esthesis", "sense experience", "sense impression", "sense datum"]}, {"answer": "sense_experience", "hint": "synonyms for sense experience", "clues": ["sensation", "esthesis", "sense datum", "sense impression", "sense experience"]}, {"answer": "sense_impression", "hint": "synonyms for sense impression", "clues": ["sensation", "esthesis", "sense experience", "sense datum", "sense impression"]}, {"answer": "sense_of_balance", "hint": "synonyms for sense of balance", "clues": ["vestibular sense", "labyrinthine sense", "equilibrium", "sense of equilibrium", "sense of balance"]}, {"answer": "sense_of_equilibrium", "hint": "synonyms for sense of equilibrium", "clues": ["vestibular sense", "labyrinthine sense", "equilibrium", "sense of balance", "sense of equilibrium"]}, {"answer": "sense_of_hearing", "hint": "synonyms for sense of hearing", "clues": ["auditory modality", "auditory sense", "hearing", "audition", "sense of hearing"]}, {"answer": "sense_of_movement", "hint": "synonyms for sense of movement", "clues": ["kinaesthesis", "muscle sense", "kinesthetics", "sense of movement"]}, {"answer": "sense_of_touch", "hint": "synonyms for sense of touch", "clues": ["cutaneous senses", "skin senses", "touch", "touch modality", "sense of touch"]}, {"answer": "senselessness", "hint": "synonyms for senselessness", "clues": ["vacuity", "mindlessness", "pointlessness", "inanity", "senselessness"]}, {"answer": "sensibility", "hint": "synonyms for sensibility", "clues": ["sensitiveness", "sensitivity", "aesthesia", "sensibility"]}, {"answer": "sensible_horizon", "hint": "synonyms for sensible horizon", "clues": ["horizon", "apparent horizon", "skyline", "visible horizon", "sensible horizon"]}, {"answer": "sensory_aphasia", "hint": "synonyms for sensory aphasia", "clues": ["receptive aphasia", "impressive aphasia", "fluent aphasia", "Wernicke's aphasia", "sensory aphasia"]}, {"answer": "sensory_faculty", "hint": "synonyms for sensory faculty", "clues": ["sense", "sensation", "sentiency", "sensory faculty"]}, {"answer": "sentence", "hint": "synonyms for sentence", "clues": ["judgment of conviction", "conviction", "condemnation", "time", "prison term", "sentence"]}, {"answer": "sentience", "hint": "synonyms for sentience", "clues": ["sense", "sensation", "sentiency", "awareness", "sensory faculty"]}, {"answer": "sentiency", "hint": "synonyms for sentiency", "clues": ["sentience", "sense", "sensation", "sensory faculty"]}, {"answer": "sentiment", "hint": "synonyms for sentiment", "clues": ["view", "thought", "opinion", "persuasion", "sentiment"]}, {"answer": "sentimentality", "hint": "synonyms for sentimentality", "clues": ["mushiness", "mawkishness", "drippiness", "sloppiness", "soupiness", "sentimentality"]}, {"answer": "sentinel", "hint": "synonyms for sentinel", "clues": ["sentry", "lookout man", "watch", "scout", "picket", "spotter", "lookout", "sentinel"]}, {"answer": "sentry", "hint": "synonyms for sentry", "clues": ["lookout man", "sentinel", "watch", "scout", "picket", "spotter", "lookout", "sentry"]}, {"answer": "sep_11", "hint": "synonyms for sep 11", "clues": ["September 11", "9/11", "Sept. 11", "9-11"]}, {"answer": "separateness", "hint": "synonyms for separateness", "clues": ["otherness", "distinctness", "discreteness", "severalty", "separateness"]}, {"answer": "separation", "hint": "synonyms for separation", "clues": ["interval", "detachment", "legal separation", "breakup", "separation"]}, {"answer": "separatrix", "hint": "synonyms for separatrix", "clues": ["solidus", "virgule", "slash", "stroke", "diagonal", "separatrix"]}, {"answer": "sepia", "hint": "synonyms for sepia", "clues": ["Venetian red", "reddish brown", "mahogany", "burnt sienna", "sepia"]}, {"answer": "sept", "hint": "synonyms for sept", "clues": ["folk", "kinsfolk", "September", "phratry", "family", "Sept", "family line"]}, {"answer": "sept._11", "hint": "synonyms for sept. 11", "clues": ["September 11", "9/11", "Sept. 11", "9-11"]}, {"answer": "september_11", "hint": "synonyms for september 11", "clues": ["September 11", "9/11", "Sept. 11", "9-11"]}, {"answer": "septenary", "hint": "synonyms for septenary", "clues": ["heptad", "VII", "sevener", "seven", "septet", "7", "septenary"]}, {"answer": "septet", "hint": "synonyms for septet", "clues": ["VII", "sevener", "sevensome", "seven", "7", "septette", "septenary", "heptad"]}, {"answer": "septic_sore_throat", "hint": "synonyms for septic sore throat", "clues": ["streptococcus tonsilitis", "strep throat", "streptococcal sore throat", "throat infection", "septic sore throat"]}, {"answer": "sepulture", "hint": "synonyms for sepulture", "clues": ["sepulchre", "burial", "interment", "burial chamber", "inhumation", "entombment", "sepulture"]}, {"answer": "sequence", "hint": "synonyms for sequence", "clues": ["chronological sequence", "chronological succession", "successiveness", "succession", "episode", "sequence"]}, {"answer": "serbia_and_montenegro", "hint": "synonyms for serbia and montenegro", "clues": ["Yugoslavia", "Union of Serbia and Montenegro", "Federal Republic of Yugoslavia", "Serbia and Montenegro"]}, {"answer": "serenity", "hint": "synonyms for serenity", "clues": ["peacefulness", "repose", "placidity", "peace", "tranquility", "quiet", "peace of mind", "ataraxis", "heartsease", "serenity"]}, {"answer": "seriousness", "hint": "synonyms for seriousness", "clues": ["sincerity", "distressfulness", "earnestness", "serious-mindedness", "seriousness"]}, {"answer": "serpasil", "hint": "synonyms for serpasil", "clues": ["reserpine", "Serpasil", "Sandril", "Raudixin", "Rau-Sed"]}, {"answer": "service", "hint": "synonyms for service", "clues": ["divine service", "armed service", "table service", "overhaul", "Service", "serve", "inspection and repair", "religious service", "service of process", "help", "serving", "military service", "Robert William Service", "avail"]}, {"answer": "serviceability", "hint": "synonyms for serviceability", "clues": ["useableness", "serviceableness", "usability", "serviceability"]}, {"answer": "serviceableness", "hint": "synonyms for serviceableness", "clues": ["useableness", "serviceability", "usability", "serviceableness"]}, {"answer": "services", "hint": "synonyms for services", "clues": ["divine service", "armed service", "table service", "service", "serve", "inspection and repair", "religious service", "service of process", "overhaul", "help", "serving", "military service", "Robert William Service", "avail"]}, {"answer": "serving", "hint": "synonyms for serving", "clues": ["service of process", "portion", "helping", "service", "serving"]}, {"answer": "sess", "hint": "synonyms for sess", "clues": ["locoweed", "Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "weed", "skunk", "sens", "sess"]}, {"answer": "session", "hint": "synonyms for session", "clues": ["sitting", "seance", "academic term", "academic session", "school term", "session"]}, {"answer": "sessions", "hint": "synonyms for sessions", "clues": ["Roger Sessions", "seance", "academic term", "Roger Huntington Sessions", "academic session", "sitting", "Sessions", "school term"]}, {"answer": "sestet", "hint": "synonyms for sestet", "clues": ["6", "sixer", "VI", "sise", "sextette", "hexad", "half a dozen", "sextuplet", "Captain Hicks", "six", "sestet"]}, {"answer": "set_phrase", "hint": "synonyms for set phrase", "clues": ["phrase", "idiomatic expression", "phrasal idiom", "idiom", "set phrase"]}, {"answer": "setback", "hint": "synonyms for setback", "clues": ["reversal", "reverse", "black eye", "blow", "setback"]}, {"answer": "setline", "hint": "synonyms for setline", "clues": ["trawl line", "trawl", "spiller", "trotline", "setline"]}, {"answer": "seton", "hint": "synonyms for seton", "clues": ["Saint Elizabeth Ann Bayley Seton", "Mother Seton", "Seton", "Elizabeth Seton"]}, {"answer": "setting", "hint": "synonyms for setting", "clues": ["context", "scene", "background", "stage setting", "circumstance", "scope", "mise en scene", "mount", "place setting", "setting"]}, {"answer": "settlement", "hint": "synonyms for settlement", "clues": ["liquidation", "colony", "small town", "colonisation", "resolution", "village", "closure", "settlement"]}, {"answer": "settlings", "hint": "synonyms for settlings", "clues": ["dregs", "subsiding", "subsidence", "settling"]}, {"answer": "sevener", "hint": "synonyms for sevener", "clues": ["heptad", "VII", "septenary", "seven", "septet", "7", "sevener"]}, {"answer": "sevens", "hint": "synonyms for sevens", "clues": ["VII", "fantan", "sevener", "seven-spot", "seven", "7", "heptad", "septenary", "parliament", "septet"]}, {"answer": "seventh_heaven", "hint": "synonyms for seventh heaven", "clues": ["cloud nine", "walking on air", "blissfulness", "bliss", "seventh heaven"]}, {"answer": "seventies", "hint": "synonyms for seventies", "clues": ["LXX", "1970s", "70", "mid-seventies", "seventy", "seventies"]}, {"answer": "severance", "hint": "synonyms for severance", "clues": ["break", "breach", "severing", "rupture", "rift", "falling out", "severance"]}, {"answer": "severeness", "hint": "synonyms for severeness", "clues": ["stiffness", "inclemency", "austereness", "severity", "asperity", "rigour", "harshness", "hardship", "badness", "rigorousness", "grimness", "hardness", "severeness"]}, {"answer": "severity", "hint": "synonyms for severity", "clues": ["stiffness", "inclemency", "austereness", "severeness", "asperity", "rigour", "harshness", "hardship", "badness", "rigorousness", "grimness", "hardness", "severity"]}, {"answer": "sewer", "hint": "synonyms for sewer", "clues": ["sewerage", "cloaca", "toilet", "gutter", "sewer"]}, {"answer": "sex", "hint": "synonyms for sex", "clues": ["sexuality", "sexual activity", "sexual practice", "gender", "sexual urge", "sex"]}, {"answer": "sex_act", "hint": "synonyms for sex act", "clues": ["sexual relation", "coitus", "sexual intercourse", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "copulation", "sex act"]}, {"answer": "sexiness", "hint": "synonyms for sexiness", "clues": ["erotism", "amorousness", "amativeness", "sexiness"]}, {"answer": "sextet", "hint": "synonyms for sextet", "clues": ["6", "sixsome", "VI", "sise", "sextette", "hexad", "sextuplet", "half a dozen", "sestet", "sixer", "Captain Hicks", "six"]}, {"answer": "sextuplet", "hint": "synonyms for sextuplet", "clues": ["6", "VI", "sise", "hexad", "half a dozen", "sextet", "sestet", "sixer", "Captain Hicks", "six", "sextuplet"]}, {"answer": "sexual_congress", "hint": "synonyms for sexual congress", "clues": ["sexual relation", "coitus", "sexual intercourse", "sex act", "coition", "relation", "carnal knowledge", "congress", "intercourse", "copulation", "sexual congress"]}, {"answer": "sexual_intercourse", "hint": "synonyms for sexual intercourse", "clues": ["sexual relation", "coitus", "sex act", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "copulation", "sexual intercourse"]}, {"answer": "sexual_love", "hint": "synonyms for sexual love", "clues": ["lovemaking", "making love", "erotic love", "love life", "love", "sexual love"]}, {"answer": "sexual_relation", "hint": "synonyms for sexual relation", "clues": ["coitus", "sexual intercourse", "sex act", "coition", "relation", "sexual congress", "carnal knowledge", "congress", "intercourse", "copulation", "sexual relation"]}, {"answer": "sexual_union", "hint": "synonyms for sexual union", "clues": ["coupling", "union", "mating", "conjugation", "pairing", "sexual union"]}, {"answer": "sexually_transmitted_disease", "hint": "synonyms for sexually transmitted disease", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "VD", "venereal infection", "sexually transmitted disease"]}, {"answer": "sg", "hint": "synonyms for sg", "clues": ["atomic number 106", "element 106", "seaborgium", "Sg"]}, {"answer": "shabbiness", "hint": "synonyms for shabbiness", "clues": ["manginess", "seediness", "sleaziness", "injustice", "unfairness", "iniquity", "shabbiness"]}, {"answer": "shabu", "hint": "synonyms for shabu", "clues": ["crank", "Methedrine", "deoxyephedrine", "chicken feed", "meth", "chalk", "glass", "ice", "methamphetamine hydrochloride", "trash", "methamphetamine", "shabu"]}, {"answer": "shabuoth", "hint": "synonyms for shabuoth", "clues": ["Shavous", "Shavuot", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "shack", "hint": "synonyms for shack", "clues": ["shanty", "hut", "hovel", "hutch", "shack"]}, {"answer": "shade", "hint": "synonyms for shade", "clues": ["tincture", "tint", "wraith", "refinement", "tad", "spook", "nicety", "tone", "shadowiness", "ghost", "subtlety", "spectre", "nuance", "shade"]}, {"answer": "shades", "hint": "synonyms for shades", "clues": ["shade", "tint", "refinement", "nicety", "tone", "shadowiness", "spectre", "subtlety", "nuance", "spook", "sunglasses", "tincture", "wraith", "tad", "dark glasses", "ghost"]}, {"answer": "shadow", "hint": "synonyms for shadow", "clues": ["tincture", "darkness", "phantom", "dark", "phantasma", "tail", "shadower", "trace", "fantasm", "vestige", "apparition"]}, {"answer": "shadowgraph", "hint": "synonyms for shadowgraph", "clues": ["radiograph", "skiagram", "radiogram", "skiagraph", "shadowgraph"]}, {"answer": "shaft", "hint": "synonyms for shaft", "clues": ["beam", "light beam", "diaphysis", "cock", "slam", "pecker", "gibe", "tool", "ray", "dick", "barb", "dig", "shot", "peter", "rotating shaft", "beam of light", "ray of light", "shaft of light", "jibe", "lance", "scape", "irradiation", "spear", "prick", "putz", "shaft"]}, {"answer": "shaft_of_light", "hint": "synonyms for shaft of light", "clues": ["shaft", "irradiation", "ray", "beam of light", "ray of light", "beam", "light beam", "shaft of light"]}, {"answer": "shag", "hint": "synonyms for shag", "clues": ["piece of tail", "screw", "shtup", "nooky", "fucking", "piece of ass", "roll in the hay", "ass", "nookie", "shag"]}, {"answer": "shake", "hint": "synonyms for shake", "clues": ["wag", "shiver", "shingle", "waggle", "milkshake", "trill", "tremble", "handshaking", "handshake", "handclasp", "shake"]}, {"answer": "shakiness", "hint": "synonyms for shakiness", "clues": ["shaking", "vibration", "quivering", "trembling", "palpitation", "shakiness"]}, {"answer": "shaking", "hint": "synonyms for shaking", "clues": ["vibration", "quivering", "shakiness", "trembling", "palpitation", "shaking"]}, {"answer": "shaking_palsy", "hint": "synonyms for shaking palsy", "clues": ["Parkinson's syndrome", "Parkinsonism", "paralysis agitans", "Parkinson's disease", "shaking palsy"]}, {"answer": "shambles", "hint": "synonyms for shambles", "clues": ["slaughterhouse", "shambling", "abattoir", "shamble", "butchery", "shuffling", "shuffle"]}, {"answer": "shammer", "hint": "synonyms for shammer", "clues": ["malingerer", "fake", "imposter", "pseudo", "pretender", "sham", "skulker", "role player", "fraud", "shammer"]}, {"answer": "shammy", "hint": "synonyms for shammy", "clues": ["chammy", "chamois leather", "chamois", "chammy leather", "shammy"]}, {"answer": "shammy_leather", "hint": "synonyms for shammy leather", "clues": ["chammy", "chamois leather", "chamois", "chammy leather", "shammy"]}, {"answer": "shamus", "hint": "synonyms for shamus", "clues": ["sherlock", "operative", "PI", "private detective", "private eye", "private investigator", "shamus"]}, {"answer": "shangri-la", "hint": "synonyms for shangri-la", "clues": ["heaven", "nirvana", "promised land", "Eden", "Shangri-la", "paradise"]}, {"answer": "shanty", "hint": "synonyms for shanty", "clues": ["chanty", "hut", "hovel", "sea chantey", "hutch", "shack", "shanty"]}, {"answer": "shape", "hint": "synonyms for shape", "clues": ["form", "conformation", "flesh", "anatomy", "cast", "physical body", "human body", "embodiment", "condition", "soma", "SHAPE", "bod", "physique", "pattern", "figure", "Supreme Headquarters Allied Powers Europe", "frame", "configuration", "chassis", "material body", "contour", "build"]}, {"answer": "share", "hint": "synonyms for share", "clues": ["portion", "percentage", "plowshare", "ploughshare", "parcel", "part", "contribution", "share"]}, {"answer": "sharp-sightedness", "hint": "synonyms for sharp-sightedness", "clues": ["visual acuity", "acuity", "alertness", "on the qui vive", "sharp-sightedness"]}, {"answer": "sharpie", "hint": "synonyms for sharpie", "clues": ["card sharper", "sharper", "busy bee", "sharpy", "eager beaver", "live wire", "card shark"]}, {"answer": "sharpness", "hint": "synonyms for sharpness", "clues": ["raciness", "asperity", "pungency", "bite", "keenness", "distinctness", "acuity", "acuteness", "edge", "sharpness"]}, {"answer": "sharpy", "hint": "synonyms for sharpy", "clues": ["card sharper", "sharper", "busy bee", "eager beaver", "live wire", "card shark", "sharpy"]}, {"answer": "shaver", "hint": "synonyms for shaver", "clues": ["fry", "nipper", "nestling", "youngster", "tike", "minor", "electric razor", "tyke", "tiddler", "electric shaver", "kid", "small fry", "child", "shaver"]}, {"answer": "shaving", "hint": "synonyms for shaving", "clues": ["skimming", "paring", "shave", "sliver", "grazing", "shaving"]}, {"answer": "shavous", "hint": "synonyms for shavous", "clues": ["Shavous", "Shavuot", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "shavuot", "hint": "synonyms for shavuot", "clues": ["Shavous", "Shavuot", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "shavuoth", "hint": "synonyms for shavuoth", "clues": ["Shavous", "Shavuot", "Shabuoth", "Pentecost", "Feast of Weeks"]}, {"answer": "shaw", "hint": "synonyms for shaw", "clues": ["Artie Shaw", "George Bernard Shaw", "Henry Wheeler Shaw", "Shaw", "Josh Billings", "Anna Howard Shaw", "G. B. Shaw", "Arthur Jacob Arshawsky"]}, {"answer": "sheepskin", "hint": "synonyms for sheepskin", "clues": ["parchment", "fleece", "diploma", "lambskin", "sheepskin"]}, {"answer": "sheesha", "hint": "synonyms for sheesha", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "water pipe", "sheesha"]}, {"answer": "sheet", "hint": "synonyms for sheet", "clues": ["bed sheet", "canvas", "shroud", "sheet of paper", "tabloid", "mainsheet", "piece of paper", "weather sheet", "sail", "tack", "plane", "rag", "flat solid", "sheet"]}, {"answer": "sheik", "hint": "synonyms for sheik", "clues": ["fashion plate", "Arab chief", "fop", "dandy", "gallant", "sheikh", "clotheshorse", "beau", "tribal sheikh", "swell", "dude"]}, {"answer": "shekels", "hint": "synonyms for shekels", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "boodle", "cabbage", "shekel"]}, {"answer": "shell", "hint": "synonyms for shell", "clues": ["casing", "plate", "racing shell", "case", "scale", "eggshell", "shell"]}, {"answer": "shelley", "hint": "synonyms for shelley", "clues": ["Mary Godwin Wollstonecraft Shelley", "Mary Shelley", "Shelley", "Percy Bysshe Shelley"]}, {"answer": "shelling", "hint": "synonyms for shelling", "clues": ["barrage", "bombardment", "barrage fire", "battery", "shelling"]}, {"answer": "shenanigan", "hint": "synonyms for shenanigan", "clues": ["mischief-making", "devilry", "wile", "roguishness", "chicane", "rascality", "mischief", "mischievousness", "roguery", "devilment", "guile", "trickery", "shenanigan"]}, {"answer": "shepard", "hint": "synonyms for shepard", "clues": ["Shepard", "Alan Shepard", "Sam Shepard", "Alan Bartlett Shepard Jr."]}, {"answer": "sherlock", "hint": "synonyms for sherlock", "clues": ["operative", "shamus", "PI", "private detective", "private eye", "private investigator", "sherlock"]}, {"answer": "sherman", "hint": "synonyms for sherman", "clues": ["Sherman", "Mount Sherman", "William Tecumseh Sherman", "Roger Sherman"]}, {"answer": "shield_of_david", "hint": "synonyms for shield of david", "clues": ["Mogen David", "Shield of David", "Solomon's seal", "Star of David"]}, {"answer": "shift", "hint": "synonyms for shift", "clues": ["break", "slip", "faulting", "chemise", "transformation", "shift key", "work shift", "teddy", "shimmy", "displacement", "shifting", "transmutation", "switching", "fracture", "duty period", "geological fault", "sack"]}, {"answer": "shifter", "hint": "synonyms for shifter", "clues": ["gear lever", "sceneshifter", "gearshift", "gearstick", "shifter"]}, {"answer": "shilling", "hint": "synonyms for shilling", "clues": ["Somalian shilling", "British shilling", "Kenyan shilling", "Tanzanian shilling", "Ugandan shilling", "bob", "shilling"]}, {"answer": "shimmy", "hint": "synonyms for shimmy", "clues": ["slip", "teddy", "chemise", "shift", "shimmy"]}, {"answer": "shine", "hint": "synonyms for shine", "clues": ["refulgency", "radiancy", "effulgence", "shine"]}, {"answer": "shingles", "hint": "synonyms for shingles", "clues": ["zoster", "shake", "shingle", "herpes zoster"]}, {"answer": "ship_biscuit", "hint": "synonyms for ship biscuit", "clues": ["hardtack", "sea biscuit", "pilot biscuit", "pilot bread", "ship biscuit"]}, {"answer": "shipment", "hint": "synonyms for shipment", "clues": ["dispatch", "load", "lading", "cargo", "payload", "freight", "consignment", "shipment"]}, {"answer": "shipping", "hint": "synonyms for shipping", "clues": ["transport", "merchant vessels", "transportation", "merchant marine", "cargo ships", "shipping"]}, {"answer": "shirking", "hint": "synonyms for shirking", "clues": ["goldbricking", "slacking", "goofing off", "soldiering", "shirking"]}, {"answer": "shisha", "hint": "synonyms for shisha", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "chicha", "hubble-bubble", "sheesha", "water pipe", "shisha"]}, {"answer": "shit", "hint": "synonyms for shit", "clues": ["doodly-squat", "bullshit", "squat", "diddlysquat", "son of a bitch", "cocksucker", "diddley", "bastard", "tinker's damn", "asshole", "Irish bull", "dirt", "crap", "jack", "bull", "poop", "dogshit", "diddlyshit", "SOB", "motherfucker", "dickhead", "shucks", "turd", "damn", "hoot", "red cent", "darn", "shite", "whoreson", "horseshit", "prick", "dump"]}, {"answer": "shite", "hint": "synonyms for shite", "clues": ["crap", "poop", "shit", "dirt", "turd"]}, {"answer": "shithead", "hint": "synonyms for shithead", "clues": ["dumbass", "dunderhead", "fuckhead", "hammerhead", "dunce", "bonehead", "muttonhead", "knucklehead", "numskull", "lunkhead", "blockhead", "loggerhead", "shithead"]}, {"answer": "shivaree", "hint": "synonyms for shivaree", "clues": ["belling", "callithump", "charivari", "chivaree"]}, {"answer": "shiver", "hint": "synonyms for shiver", "clues": ["thrill", "shake", "shudder", "chill", "tremble", "frisson", "quiver", "tingle", "shiver"]}, {"answer": "shock", "hint": "synonyms for shock", "clues": ["shock absorber", "daze", "stupor", "seismic disturbance", "blow", "jar", "electrical shock", "impact", "jolt", "cushion", "jounce", "shock"]}, {"answer": "shoes", "hint": "synonyms for shoes", "clues": ["brake shoe", "shoe", "place", "horseshoe", "skid"]}, {"answer": "shogunate", "hint": "synonyms for shogunate", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "dictatorship", "tyranny", "authoritarianism", "absolutism", "shogunate"]}, {"answer": "shoo-in", "hint": "synonyms for shoo-in", "clues": ["walkaway", "blowout", "runaway", "laugher", "romp", "shoo-in"]}, {"answer": "shooter", "hint": "synonyms for shooter", "clues": ["shot", "taw", "hit man", "torpedo", "gun for hire", "hired gun", "crap-shooter", "gun", "gunman", "gunslinger", "triggerman", "shooter"]}, {"answer": "shopping_center", "hint": "synonyms for shopping center", "clues": ["center", "plaza", "mall", "shopping mall", "shopping centre"]}, {"answer": "shopping_centre", "hint": "synonyms for shopping centre", "clues": ["center", "plaza", "shopping center", "mall", "shopping mall"]}, {"answer": "shopping_mall", "hint": "synonyms for shopping mall", "clues": ["center", "shopping center", "mall", "plaza", "shopping mall"]}, {"answer": "short_hundredweight", "hint": "synonyms for short hundredweight", "clues": ["quintal", "centner", "cental", "cwt", "hundredweight", "short hundredweight"]}, {"answer": "short_sleep", "hint": "synonyms for short sleep", "clues": ["catnap", "snooze", "nap", "cat sleep", "forty winks", "short sleep"]}, {"answer": "shortage", "hint": "synonyms for shortage", "clues": ["deficit", "shortfall", "famine", "dearth", "shortage"]}, {"answer": "shortness", "hint": "synonyms for shortness", "clues": ["truncation", "curtness", "gruffness", "brusqueness", "abruptness", "shortness"]}, {"answer": "shorts", "hint": "synonyms for shorts", "clues": ["boxershorts", "short circuit", "trunks", "short pants", "short", "boxers", "underdrawers", "drawers", "shortstop"]}, {"answer": "shout", "hint": "synonyms for shout", "clues": ["vociferation", "call", "outcry", "cry", "yell", "shout"]}, {"answer": "shouter", "hint": "synonyms for shouter", "clues": ["screamer", "yeller", "screecher", "bellower", "bawler", "roarer", "shouter"]}, {"answer": "shovel", "hint": "synonyms for shovel", "clues": ["shovelful", "power shovel", "excavator", "digger", "spadeful", "shovel"]}, {"answer": "showcase", "hint": "synonyms for showcase", "clues": ["vitrine", "display case", "show window", "case", "showcase"]}, {"answer": "shower", "hint": "synonyms for shower", "clues": ["exhibitioner", "shower bath", "rain shower", "cascade", "shower"]}, {"answer": "showing", "hint": "synonyms for showing", "clues": ["viewing", "exhibit", "screening", "display", "showing"]}, {"answer": "showtime", "hint": "synonyms for showtime", "clues": ["outset", "start", "offset", "get-go", "starting time", "kickoff", "beginning", "commencement", "first", "showtime"]}, {"answer": "shred", "hint": "synonyms for shred", "clues": ["tittle", "smidgin", "iota", "tag", "tag end", "tatter", "rag", "smidge", "whit", "scintilla", "shred"]}, {"answer": "shrimp", "hint": "synonyms for shrimp", "clues": ["peewee", "runt", "half-pint", "prawn", "shrimp"]}, {"answer": "shroud", "hint": "synonyms for shroud", "clues": ["winding-clothes", "mainsheet", "weather sheet", "tack", "winding-sheet", "pall", "cerement", "sheet", "shroud"]}, {"answer": "shtup", "hint": "synonyms for shtup", "clues": ["piece of tail", "screw", "nooky", "fucking", "shag", "piece of ass", "roll in the hay", "ass", "nookie", "shtup"]}, {"answer": "shuck", "hint": "synonyms for shuck", "clues": ["stalk", "straw", "chaff", "stubble", "husk", "shuck"]}, {"answer": "shucks", "hint": "synonyms for shucks", "clues": ["tinker's damn", "stalk", "straw", "chaff", "hoot", "damn", "red cent", "shuck", "husk", "shit", "darn", "stubble"]}, {"answer": "shudder", "hint": "synonyms for shudder", "clues": ["thrill", "chill", "shiver", "tremor", "quiver", "tingle", "frisson", "shudder"]}, {"answer": "shuffle", "hint": "synonyms for shuffle", "clues": ["make", "shambling", "shuffling", "shamble", "shuffle"]}, {"answer": "shuffling", "hint": "synonyms for shuffling", "clues": ["shambling", "make", "shuffle", "shamble", "shuffling"]}, {"answer": "shylock", "hint": "synonyms for shylock", "clues": ["loan shark", "Shylock", "moneylender", "usurer"]}, {"answer": "si", "hint": "synonyms for si", "clues": ["ti", "Si", "International System", "SI system", "International System of Units", "SI unit", "Systeme International d'Unites", "silicon", "te", "atomic number 14", "Systeme International"]}, {"answer": "si_system", "hint": "synonyms for si system", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "si_unit", "hint": "synonyms for si unit", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "sian", "hint": "synonyms for sian", "clues": ["Hsian", "Changan", "Xian", "Singan"]}, {"answer": "sib", "hint": "synonyms for sib", "clues": ["cognate", "blood relative", "sibling", "sib"]}, {"answer": "sibilation", "hint": "synonyms for sibilation", "clues": ["hushing", "assibilation", "hissing", "fizzle"]}, {"answer": "sickeningness", "hint": "synonyms for sickeningness", "clues": ["disgustingness", "unsavoriness", "distastefulness", "nauseatingness", "sickeningness"]}, {"answer": "sickle-cell_anaemia", "hint": "synonyms for sickle-cell anaemia", "clues": ["crescent-cell anemia", "sickle-cell disease", "drepanocytic anaemia", "sickle-cell anemia"]}, {"answer": "sickle-cell_anemia", "hint": "synonyms for sickle-cell anemia", "clues": ["crescent-cell anemia", "sickle-cell disease", "sickle-cell anaemia", "drepanocytic anaemia"]}, {"answer": "sickle-cell_disease", "hint": "synonyms for sickle-cell disease", "clues": ["crescent-cell anemia", "sickle-cell anaemia", "drepanocytic anaemia", "sickle-cell disease"]}, {"answer": "sickness", "hint": "synonyms for sickness", "clues": ["illness", "unwellness", "malady", "nausea", "sickness"]}, {"answer": "siddhartha", "hint": "synonyms for siddhartha", "clues": ["Gautama", "Gautama Siddhartha", "Gautama Buddha", "Buddha", "Siddhartha"]}, {"answer": "sidekick", "hint": "synonyms for sidekick", "clues": ["crony", "buddy", "chum", "brother", "pal", "sidekick"]}, {"answer": "sideline", "hint": "synonyms for sideline", "clues": ["hobby", "spare-time activity", "pursuit", "avocation", "by-line", "out of bounds", "sideline"]}, {"answer": "sidesplitter", "hint": "synonyms for sidesplitter", "clues": ["scream", "thigh-slapper", "riot", "howler", "belly laugh", "wow", "sidesplitter"]}, {"answer": "sidney_james_webb", "hint": "synonyms for sidney james webb", "clues": ["First Baron Passfield", "Webb", "Sidney James Webb", "Sidney Webb"]}, {"answer": "sidney_webb", "hint": "synonyms for sidney webb", "clues": ["First Baron Passfield", "Webb", "Sidney James Webb", "Sidney Webb"]}, {"answer": "sids", "hint": "synonyms for sids", "clues": ["SIDS", "cot death", "sudden infant death syndrome", "crib death", "infant death"]}, {"answer": "siemens", "hint": "synonyms for siemens", "clues": ["reciprocal ohm", "Karl Wilhelm Siemens", "Siemens", "Ernst Werner von Siemens", "mho", "Sir Charles William Siemens", "S"]}, {"answer": "sight", "hint": "synonyms for sight", "clues": ["view", "mint", "ken", "peck", "quite a little", "deal", "mountain", "stack", "visual sense", "lot", "raft", "batch", "mess", "plenty", "muckle", "wad", "vision", "mickle", "mass", "great deal", "hatful", "pot", "good deal", "passel", "pile", "tidy sum", "spate", "survey", "visual modality", "slew", "heap", "flock", "sight"]}, {"answer": "sights", "hint": "synonyms for sights", "clues": ["view", "mint", "ken", "peck", "quite a little", "deal", "mountain", "stack", "visual sense", "lot", "raft", "batch", "mess", "plenty", "sight", "muckle", "wad", "vision", "mickle", "mass", "great deal", "hatful", "pot", "good deal", "passel", "pile", "tidy sum", "spate", "survey", "visual modality", "slew", "heap", "flock"]}, {"answer": "sign_of_the_zodiac", "hint": "synonyms for sign of the zodiac", "clues": ["planetary house", "star sign", "mansion", "sign", "house", "sign of the zodiac"]}, {"answer": "signal-to-noise", "hint": "synonyms for signal-to-noise", "clues": ["signal-to-noise ratio", "signal/noise", "S/N", "signal-to-noise"]}, {"answer": "signal-to-noise_ratio", "hint": "synonyms for signal-to-noise ratio", "clues": ["signal-to-noise", "signal/noise ratio", "signal/noise", "S/N"]}, {"answer": "signal/noise", "hint": "synonyms for signal/noise", "clues": ["signal-to-noise", "signal-to-noise ratio", "S/N", "signal/noise"]}, {"answer": "signal/noise_ratio", "hint": "synonyms for signal/noise ratio", "clues": ["signal-to-noise", "signal-to-noise ratio", "signal/noise", "S/N"]}, {"answer": "signature", "hint": "synonyms for signature", "clues": ["theme song", "signature tune", "key signature", "touch", "signature"]}, {"answer": "significance", "hint": "synonyms for significance", "clues": ["meaning", "implication", "signification", "import", "significance"]}, {"answer": "silence", "hint": "synonyms for silence", "clues": ["muteness", "quiet", "secrecy", "secretiveness", "silence"]}, {"answer": "silesia", "hint": "synonyms for silesia", "clues": ["Slezsko", "Schlesien", "Silesia", "Slask"]}, {"answer": "silicon_chip", "hint": "synonyms for silicon chip", "clues": ["microprocessor chip", "micro chip", "chip", "silicon chip"]}, {"answer": "silk_hat", "hint": "synonyms for silk hat", "clues": ["high hat", "top hat", "beaver", "stovepipe", "opera hat", "topper", "dress hat", "silk hat"]}, {"answer": "silk_stocking", "hint": "synonyms for silk stocking", "clues": ["rayon stocking", "nylons", "rayons", "silk stocking"]}, {"answer": "silliness", "hint": "synonyms for silliness", "clues": ["absurdity", "fatuousness", "fatuity", "giddiness", "silliness"]}, {"answer": "silver_state", "hint": "synonyms for silver state", "clues": ["Battle Born State", "Silver State", "Sagebrush State", "Nevada", "NV"]}, {"answer": "similitude", "hint": "synonyms for similitude", "clues": ["alikeness", "counterpart", "twin", "similitude"]}, {"answer": "simoleons", "hint": "synonyms for simoleons", "clues": ["clams", "dinero", "bread", "lettuce", "dough", "moolah", "lucre", "pelf", "wampum", "kale", "lolly", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "simoleons"]}, {"answer": "simon", "hint": "synonyms for simon", "clues": ["Neil Simon", "Herbert Alexander Simon", "Simon the Canaanite", "Simon", "Simon Zelotes", "Marvin Neil Simon", "St. Simon", "Herbert A. Simon", "Paul Simon", "Herb Simon", "Simon the Zealot"]}, {"answer": "simon_peter", "hint": "synonyms for simon peter", "clues": ["Simon Peter", "Saint Peter", "Saint Peter the Apostle", "St. Peter", "Peter"]}, {"answer": "simon_the_canaanite", "hint": "synonyms for simon the canaanite", "clues": ["Simon", "Simon Zelotes", "St. Simon", "Simon the Canaanite", "Simon the Zealot"]}, {"answer": "simon_the_zealot", "hint": "synonyms for simon the zealot", "clues": ["Simon", "Simon Zelotes", "St. Simon", "Simon the Canaanite", "Simon the Zealot"]}, {"answer": "simon_zelotes", "hint": "synonyms for simon zelotes", "clues": ["Simon", "Simon Zelotes", "St. Simon", "Simon the Canaanite", "Simon the Zealot"]}, {"answer": "simpleness", "hint": "synonyms for simpleness", "clues": ["chasteness", "easiness", "ease", "simplicity", "simple mindedness", "restraint", "simpleness"]}, {"answer": "simplicity", "hint": "synonyms for simplicity", "clues": ["simmpleness", "chasteness", "easiness", "ease", "simple mindedness", "restraint", "simplicity"]}, {"answer": "simpson", "hint": "synonyms for simpson", "clues": ["Duchess of Windsor", "Wallis Warfield Simpson", "Mrs. Simpson", "Wallis Warfield Windsor", "Sir James Young Simpson", "Simpson"]}, {"answer": "simulation", "hint": "synonyms for simulation", "clues": ["feigning", "computer simulation", "pretense", "pretending", "model", "simulation"]}, {"answer": "sin", "hint": "synonyms for sin", "clues": ["Sin", "wickedness", "sinning", "hell", "sinfulness"]}, {"answer": "sinai", "hint": "synonyms for sinai", "clues": ["Sinai", "Sinai Peninsula", "Sinai Desert", "Mount Sinai"]}, {"answer": "sincerity", "hint": "synonyms for sincerity", "clues": ["earnestness", "unassumingness", "seriousness", "serious-mindedness", "sincerity"]}, {"answer": "sinclair", "hint": "synonyms for sinclair", "clues": ["Clive Sinclair", "Sir Clive Marles Sinclair", "Sinclair", "Upton Sinclair", "Upton Beall Sinclair"]}, {"answer": "sinequan", "hint": "synonyms for sinequan", "clues": ["doxepin hydrochloride", "Sinequan", "doxepin", "Adapin"]}, {"answer": "sinew", "hint": "synonyms for sinew", "clues": ["muscularity", "brawniness", "brawn", "muscle", "tendon", "heftiness", "sinew"]}, {"answer": "singan", "hint": "synonyms for singan", "clues": ["Hsian", "Changan", "Xian", "Singan"]}, {"answer": "singapore", "hint": "synonyms for singapore", "clues": ["Republic of Singapore", "capital of Singapore", "Singapore Island", "Singapore"]}, {"answer": "singer", "hint": "synonyms for singer", "clues": ["Isaac Merrit Singer", "vocalist", "vocaliser", "Isaac Bashevis Singer", "Singer", "Isaac M. Singer"]}, {"answer": "single-member_system", "hint": "synonyms for single-member system", "clues": ["uninominal system", "scrutin uninomial system", "uninominal voting system", "single-member system"]}, {"answer": "single-valued_function", "hint": "synonyms for single-valued function", "clues": ["mapping", "mathematical function", "function", "map", "single-valued function"]}, {"answer": "singles", "hint": "synonyms for singles", "clues": ["I", "single", "ace", "bingle", "one", "1", "unity"]}, {"answer": "sink", "hint": "synonyms for sink", "clues": ["sinkhole", "swallow hole", "sump", "cesspool", "cesspit", "sink"]}, {"answer": "sinlessness", "hint": "synonyms for sinlessness", "clues": ["whiteness", "innocence", "purity", "pureness", "sinlessness"]}, {"answer": "sion", "hint": "synonyms for sion", "clues": ["Sion", "Zion", "State of Israel", "Israel", "Utopia"]}, {"answer": "sir_david_alexander_cecil_low", "hint": "synonyms for sir david alexander cecil low", "clues": ["Sir David Alexander Cecil Low", "David Low", "Low", "Sir David Low"]}, {"answer": "sir_david_low", "hint": "synonyms for sir david low", "clues": ["Sir David Alexander Cecil Low", "David Low", "Low", "Sir David Low"]}, {"answer": "sir_francis_bacon", "hint": "synonyms for sir francis bacon", "clues": ["Francis Bacon", "Bacon", "Viscount St. Albans", "Baron Verulam"]}, {"answer": "sir_henry_morton_stanley", "hint": "synonyms for sir henry morton stanley", "clues": ["John Rowlands", "Sir Henry Morton Stanley", "Stanley", "Henry M. Stanley"]}, {"answer": "sir_henry_percy", "hint": "synonyms for sir henry percy", "clues": ["Percy", "Sir Henry Percy", "Hotspur", "Harry Hotspur"]}, {"answer": "sir_james_augustus_henry_murray", "hint": "synonyms for sir james augustus henry murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "sir_james_augustus_murray", "hint": "synonyms for sir james augustus murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "sir_james_matthew_barrie", "hint": "synonyms for sir james matthew barrie", "clues": ["Sir James Matthew Barrie", "Barrie", "J. M. Barrie", "James Barrie"]}, {"answer": "sir_james_murray", "hint": "synonyms for sir james murray", "clues": ["Sir James Augustus Henry Murray", "Sir James Murray", "James Augustus Murray", "Murray"]}, {"answer": "sir_laurence_kerr_olivier", "hint": "synonyms for sir laurence kerr olivier", "clues": ["Sir Laurence Kerr Olivier", "Olivier", "Laurence Olivier", "Baron Olivier of Birghton"]}, {"answer": "sir_william_gilbert", "hint": "synonyms for sir william gilbert", "clues": ["Gilbert", "Sir William Gilbert", "William Schwenk Gilbert", "William S. Gilbert"]}, {"answer": "sirach", "hint": "synonyms for sirach", "clues": ["Ben Sira", "Sirach", "Wisdom of Jesus the Son of Sirach", "Ecclesiasticus"]}, {"answer": "siren", "hint": "synonyms for siren", "clues": ["femme fatale", "temptress", "Delilah", "enchantress", "Siren"]}, {"answer": "sirius", "hint": "synonyms for sirius", "clues": ["Dog Star", "Canicula", "Sothis", "Sirius"]}, {"answer": "sis", "hint": "synonyms for sis", "clues": ["ti", "Si", "International System", "SI system", "International System of Units", "SI unit", "Systeme International d'Unites", "silicon", "te", "atomic number 14", "Systeme International", "sister"]}, {"answer": "sise", "hint": "synonyms for sise", "clues": ["6", "sixer", "VI", "hexad", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six", "sise"]}, {"answer": "sissiness", "hint": "synonyms for sissiness", "clues": ["unmanliness", "womanishness", "effeminateness", "effeminacy", "softness", "sissiness"]}, {"answer": "sister", "hint": "synonyms for sister", "clues": ["sis", "babe", "baby", "Sister"]}, {"answer": "site", "hint": "synonyms for site", "clues": ["situation", "internet site", "land site", "website", "site"]}, {"answer": "sitter", "hint": "synonyms for sitter", "clues": ["babysitter", "Sitter", "Willem de Sitter", "artist's model"]}, {"answer": "sitting_room", "hint": "synonyms for sitting room", "clues": ["parlour", "living-room", "front room", "sitting room"]}, {"answer": "situation", "hint": "synonyms for situation", "clues": ["berth", "spot", "billet", "state of affairs", "site", "office", "place", "post", "position", "situation"]}, {"answer": "six_nations", "hint": "synonyms for six nations", "clues": ["Iroquois League", "Five Nations", "Six Nations", "League of Iroquois"]}, {"answer": "sixer", "hint": "synonyms for sixer", "clues": ["6", "VI", "sise", "hexad", "half a dozen", "sextet", "sestet", "sextuplet", "Captain Hicks", "six", "sixer"]}, {"answer": "sixth_cranial_nerve", "hint": "synonyms for sixth cranial nerve", "clues": ["nervus abducens", "abducent nerve", "abducent", "sixth cranial nerve"]}, {"answer": "sixties", "hint": "synonyms for sixties", "clues": ["sixty", "mid-sixties", "LX", "1960s", "60", "sixties"]}, {"answer": "sizeableness", "hint": "synonyms for sizeableness", "clues": ["immenseness", "immensity", "vastness", "enormousness", "greatness", "wideness", "grandness", "sizeableness"]}, {"answer": "skag", "hint": "synonyms for skag", "clues": ["scag", "nose drops", "smack", "hell dust", "thunder", "big H", "skag"]}, {"answer": "skeleton", "hint": "synonyms for skeleton", "clues": ["skeleton in the closet", "skeletal frame", "underframe", "frame", "skeletal system", "systema skeletale", "skeleton in the cupboard", "skeleton"]}, {"answer": "skepticism", "hint": "synonyms for skepticism", "clues": ["incredulity", "scepticism", "disbelief", "mental rejection", "agnosticism"]}, {"answer": "sketch", "hint": "synonyms for sketch", "clues": ["survey", "vignette", "study", "resume", "cartoon", "sketch"]}, {"answer": "skiagram", "hint": "synonyms for skiagram", "clues": ["radiograph", "shadowgraph", "radiogram", "skiagraph", "skiagram"]}, {"answer": "skiagraph", "hint": "synonyms for skiagraph", "clues": ["radiograph", "shadowgraph", "skiagram", "radiogram", "skiagraph"]}, {"answer": "skid", "hint": "synonyms for skid", "clues": ["sideslip", "brake shoe", "shoe", "slip", "skid"]}, {"answer": "skill", "hint": "synonyms for skill", "clues": ["science", "acquirement", "acquisition", "accomplishment", "attainment", "skill"]}, {"answer": "skimmer", "hint": "synonyms for skimmer", "clues": ["sailor", "leghorn", "boater", "straw hat", "Panama hat", "Panama", "skimmer"]}, {"answer": "skin_senses", "hint": "synonyms for skin senses", "clues": ["cutaneous senses", "sense of touch", "touch", "touch modality", "skin senses"]}, {"answer": "skinner", "hint": "synonyms for skinner", "clues": ["mule driver", "Otis Skinner", "Skinner", "Fred Skinner", "Cornelia Otis Skinner", "mule skinner", "Burrhus Frederic Skinner", "B. F. Skinner", "muleteer"]}, {"answer": "skirt", "hint": "synonyms for skirt", "clues": ["bird", "chick", "doll", "dame", "wench", "skirt"]}, {"answer": "skulduggery", "hint": "synonyms for skulduggery", "clues": ["hocus-pocus", "slickness", "skullduggery", "hanky panky", "jiggery-pokery", "trickery"]}, {"answer": "skulker", "hint": "synonyms for skulker", "clues": ["lurcher", "shammer", "malingerer", "lurker", "skulker"]}, {"answer": "skullduggery", "hint": "synonyms for skullduggery", "clues": ["skulduggery", "hocus-pocus", "slickness", "hanky panky", "jiggery-pokery", "trickery"]}, {"answer": "skunk", "hint": "synonyms for skunk", "clues": ["stinkpot", "scum bag", "pot", "dirty dog", "lowlife", "stinker", "dope", "grass", "weed", "git", "shutout", "locoweed", "Mary Jane", "bum", "so-and-so", "crumb", "gage", "rat", "smoke", "green goddess", "puke", "sess", "rotter", "sens", "skunk"]}, {"answer": "skyline", "hint": "synonyms for skyline", "clues": ["sensible horizon", "horizon", "apparent horizon", "visible horizon", "skyline"]}, {"answer": "slacking", "hint": "synonyms for slacking", "clues": ["goldbricking", "soldiering", "goofing off", "shirking", "slacking"]}, {"answer": "slackness", "hint": "synonyms for slackness", "clues": ["laxness", "lassitude", "slack", "lethargy", "remissness", "laxity", "inanition", "slackness"]}, {"answer": "slacks", "hint": "synonyms for slacks", "clues": ["slump", "falling off", "quag", "slackness", "falloff", "slack", "slack water", "drop-off", "quagmire", "morass", "mire"]}, {"answer": "slaked_lime", "hint": "synonyms for slaked lime", "clues": ["calcium hydrate", "hydrated lime", "lime hydrate", "lime", "caustic lime", "calcium hydroxide", "slaked lime"]}, {"answer": "slam", "hint": "synonyms for slam", "clues": ["shaft", "shot", "sweep", "gibe", "dig", "jibe", "barb", "slam"]}, {"answer": "slammer", "hint": "synonyms for slammer", "clues": ["pokey", "gaol", "jail", "clink", "jailhouse", "slammer"]}, {"answer": "slander", "hint": "synonyms for slander", "clues": ["defamation", "calumny", "denigration", "aspersion", "slander"]}, {"answer": "slanderer", "hint": "synonyms for slanderer", "clues": ["libeler", "defamer", "traducer", "vilifier", "maligner", "backbiter", "slanderer"]}, {"answer": "slang", "hint": "synonyms for slang", "clues": ["slang term", "slang expression", "argot", "vernacular", "patois", "lingo", "cant", "jargon", "slang"]}, {"answer": "slash", "hint": "synonyms for slash", "clues": ["virgule", "separatrix", "cut", "stroke", "slice", "gash", "solidus", "diagonal", "slash"]}, {"answer": "slask", "hint": "synonyms for slask", "clues": ["Slezsko", "Schlesien", "Silesia", "Slask"]}, {"answer": "slattern", "hint": "synonyms for slattern", "clues": ["hustler", "hooker", "streetwalker", "street girl", "slut", "trollop", "floozie", "slovenly woman", "floozy", "slattern"]}, {"answer": "slaughter", "hint": "synonyms for slaughter", "clues": ["massacre", "carnage", "mass murder", "butchery", "trouncing", "walloping", "debacle", "drubbing", "whipping", "thrashing", "slaughter"]}, {"answer": "slaver", "hint": "synonyms for slaver", "clues": ["slave owner", "slave trader", "slaveholder", "slave dealer", "slaver"]}, {"answer": "slavery", "hint": "synonyms for slavery", "clues": ["thraldom", "thrall", "slaveholding", "bondage", "slavery"]}, {"answer": "sledge", "hint": "synonyms for sledge", "clues": ["maul", "sled", "sledgehammer", "sleigh", "sledge"]}, {"answer": "sleep", "hint": "synonyms for sleep", "clues": ["nap", "sopor", "slumber", "eternal rest", "eternal sleep", "rest", "quietus", "sleep"]}, {"answer": "sleeper", "hint": "synonyms for sleeper", "clues": ["tie", "sleeping car", "slumberer", "wagon-lit", "railroad tie", "crosstie", "sleeper"]}, {"answer": "sleeping_accommodation", "hint": "synonyms for sleeping accommodation", "clues": ["bedroom", "sleeping room", "chamber", "bedchamber", "sleeping accommodation"]}, {"answer": "sleeping_room", "hint": "synonyms for sleeping room", "clues": ["bedroom", "sleeping accommodation", "chamber", "bedchamber", "sleeping room"]}, {"answer": "sleeping_sickness", "hint": "synonyms for sleeping sickness", "clues": ["epidemic encephalitis", "lethargic encephalitis", "encephalitis lethargica", "sleepy sickness"]}, {"answer": "sleepwalking", "hint": "synonyms for sleepwalking", "clues": ["noctambulism", "somnambulism", "somnambulation", "noctambulation", "sleepwalking"]}, {"answer": "sleepy_sickness", "hint": "synonyms for sleepy sickness", "clues": ["epidemic encephalitis", "lethargic encephalitis", "encephalitis lethargica", "sleeping sickness"]}, {"answer": "slenderness", "hint": "synonyms for slenderness", "clues": ["slightness", "thinness", "slimness", "tenuity", "slenderness"]}, {"answer": "slew", "hint": "synonyms for slew", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "slew"]}, {"answer": "slews", "hint": "synonyms for slews", "clues": ["mint", "peck", "quite a little", "tons", "deal", "mountain", "gobs", "rafts", "stack", "lot", "heaps", "batch", "mess", "wads", "plenty", "sight", "muckle", "mickle", "mass", "loads", "piles", "great deal", "hatful", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "scads", "slew", "scores", "flock"]}, {"answer": "slezsko", "hint": "synonyms for slezsko", "clues": ["Slezsko", "Schlesien", "Silesia", "Slask"]}, {"answer": "slice", "hint": "synonyms for slice", "clues": ["slicing", "gash", "slash", "cut", "fade", "piece", "slice"]}, {"answer": "slicker", "hint": "synonyms for slicker", "clues": ["cheat", "beguiler", "oilskin", "cheater", "deceiver", "trickster", "slicker"]}, {"answer": "slickness", "hint": "synonyms for slickness", "clues": ["skulduggery", "slipperiness", "slip", "jiggery-pokery", "glibness", "slick", "hocus-pocus", "hanky panky", "trickery", "slickness"]}, {"answer": "slide", "hint": "synonyms for slide", "clues": ["sliding board", "slideway", "sloping trough", "coast", "swoop", "playground slide", "chute", "lantern slide", "microscope slide", "glide", "slide"]}, {"answer": "slightness", "hint": "synonyms for slightness", "clues": ["slenderness", "slimness", "triviality", "puniness", "pettiness", "delicacy", "slightness"]}, {"answer": "slime", "hint": "synonyms for slime", "clues": ["gunk", "goo", "ooze", "guck", "sludge", "muck", "slime"]}, {"answer": "sliminess", "hint": "synonyms for sliminess", "clues": ["lousiness", "repulsiveness", "wickedness", "loathsomeness", "vileness", "sliminess"]}, {"answer": "slimness", "hint": "synonyms for slimness", "clues": ["slenderness", "narrowness", "narrow margin", "slightness", "slimness"]}, {"answer": "sling", "hint": "synonyms for sling", "clues": ["catapult", "triangular bandage", "slingshot", "slingback", "scarf bandage", "sling"]}, {"answer": "slip", "hint": "synonyms for slip", "clues": ["moorage", "faux pas", "slip of paper", "mooring", "strip", "skid", "chemise", "slick", "gaucherie", "teddy", "case", "sideslip", "solecism", "parapraxis", "shimmy", "slip-up", "slipperiness", "berth", "elusion", "miscue", "pillow slip", "pillowcase", "gaffe", "slickness", "eluding", "shift", "slip"]}, {"answer": "slipperiness", "hint": "synonyms for slipperiness", "clues": ["rascality", "slick", "slickness", "slip", "shiftiness", "trickiness", "slipperiness"]}, {"answer": "slipstream", "hint": "synonyms for slipstream", "clues": ["airstream", "wash", "race", "backwash", "slipstream"]}, {"answer": "slit", "hint": "synonyms for slit", "clues": ["cunt", "pussy", "snatch", "scratch", "dent", "prick", "incision", "twat", "slit"]}, {"answer": "slo-bid", "hint": "synonyms for slo-bid", "clues": ["Slo-Bid", "Theobid", "Elixophyllin", "theophylline"]}, {"answer": "slop", "hint": "synonyms for slop", "clues": ["pigswill", "pigwash", "glop", "treacle", "swill", "slops", "mush", "mire"]}, {"answer": "sloppiness", "hint": "synonyms for sloppiness", "clues": ["unkemptness", "mawkishness", "sentimentality", "drippiness", "mushiness", "carelessness", "wateriness", "soupiness", "slovenliness", "muddiness", "sloppiness"]}, {"answer": "slops", "hint": "synonyms for slops", "clues": ["treacle", "slop", "mush", "glop", "pigswill", "pigwash", "swill", "mire"]}, {"answer": "slowness", "hint": "synonyms for slowness", "clues": ["awkwardness", "deliberateness", "maladroitness", "subnormality", "retardation", "deliberation", "ineptitude", "unhurriedness", "clumsiness", "ineptness", "mental retardation", "slowness"]}, {"answer": "sls", "hint": "synonyms for sls", "clues": ["SL", "Shining Path", "sodium lauryl sulphate", "Sendero Luminoso"]}, {"answer": "sludge", "hint": "synonyms for sludge", "clues": ["gunk", "goo", "slime", "ooze", "guck", "muck", "sludge"]}, {"answer": "slug", "hint": "synonyms for slug", "clues": ["sluggard", "punch", "lick", "clout", "type slug", "bullet", "poke", "biff", "slug"]}, {"answer": "slugger", "hint": "synonyms for slugger", "clues": ["hitter", "batsman", "batter", "slogger"]}, {"answer": "sluggishness", "hint": "synonyms for sluggishness", "clues": ["languor", "phlegm", "lassitude", "lethargy", "flatness", "sluggishness"]}, {"answer": "sluice_valve", "hint": "synonyms for sluice valve", "clues": ["penstock", "water gate", "head gate", "floodgate", "sluicegate", "sluice valve"]}, {"answer": "sluicegate", "hint": "synonyms for sluicegate", "clues": ["penstock", "water gate", "sluice valve", "floodgate", "head gate", "sluicegate"]}, {"answer": "slump", "hint": "synonyms for slump", "clues": ["falloff", "slack", "depression", "drop-off", "economic crisis", "falling off", "slump"]}, {"answer": "slur", "hint": "synonyms for slur", "clues": ["smear", "daub", "aspersion", "blot", "spot", "smirch", "smudge", "slur"]}, {"answer": "slut", "hint": "synonyms for slut", "clues": ["strumpet", "adulteress", "loose woman", "jade", "slattern", "fornicatress", "trollop", "hussy", "slovenly woman", "slut"]}, {"answer": "slyness", "hint": "synonyms for slyness", "clues": ["foxiness", "wiliness", "guile", "craftiness", "craft", "cunning", "slyness"]}, {"answer": "sm", "hint": "synonyms for sm", "clues": ["Master of Science", "samarium", "MS", "SM", "MSc", "atomic number 62"]}, {"answer": "small_fry", "hint": "synonyms for small fry", "clues": ["squirt", "nipper", "pip-squeak", "shaver", "nestling", "tike", "minor", "tyke", "tiddler", "fry", "youngster", "child", "kid", "small fry"]}, {"answer": "small_talk", "hint": "synonyms for small talk", "clues": ["chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "tittle-tattle", "gossip", "gab", "small talk"]}, {"answer": "smarminess", "hint": "synonyms for smarminess", "clues": ["oleaginousness", "unction", "unctuousness", "fulsomeness", "oiliness", "smarminess"]}, {"answer": "smart_aleck", "hint": "synonyms for smart aleck", "clues": ["wise guy", "wiseacre", "wisenheimer", "smart aleck"]}, {"answer": "smart_set", "hint": "synonyms for smart set", "clues": ["beau monde", "society", "bon ton", "high society", "smart set"]}, {"answer": "smartness", "hint": "synonyms for smartness", "clues": ["smarting", "stylishness", "brightness", "chic", "swank", "last word", "cleverness", "modishness", "briskness", "alacrity", "chichi", "chicness", "smartness"]}, {"answer": "smasher", "hint": "synonyms for smasher", "clues": ["ravisher", "stunner", "looker", "strike", "hit", "knockout", "smash", "peach", "mantrap", "sweetheart", "bang", "dish", "beauty", "lulu", "smasher"]}, {"answer": "smear", "hint": "synonyms for smear", "clues": ["daub", "slur", "blot", "spot", "cytologic smear", "stain", "malignment", "vilification", "cytosmear", "smirch", "smudge", "smear"]}, {"answer": "smell", "hint": "synonyms for smell", "clues": ["flavour", "look", "olfactory perception", "olfactory property", "spirit", "scent", "odor", "tone", "sense of smell", "smelling", "feel", "olfaction", "olfactory sensation", "olfactory modality", "aroma"]}, {"answer": "smidge", "hint": "synonyms for smidge", "clues": ["tittle", "smidgin", "iota", "shred", "whit", "scintilla", "smidgeon"]}, {"answer": "smidgen", "hint": "synonyms for smidgen", "clues": ["tittle", "smidgin", "iota", "smidge", "shred", "whit", "scintilla"]}, {"answer": "smidgeon", "hint": "synonyms for smidgeon", "clues": ["tittle", "smidgin", "iota", "smidge", "shred", "whit", "scintilla"]}, {"answer": "smidgin", "hint": "synonyms for smidgin", "clues": ["tittle", "iota", "smidge", "shred", "whit", "scintilla", "smidgin"]}, {"answer": "smiler", "hint": "synonyms for smiler", "clues": ["phiz", "kisser", "physiognomy", "visage", "mug", "countenance", "smiler"]}, {"answer": "smirch", "hint": "synonyms for smirch", "clues": ["smear", "daub", "slur", "blot", "spot", "stain", "smudge", "smirch"]}, {"answer": "smith", "hint": "synonyms for smith", "clues": ["Adam Smith", "Smith", "David Smith", "Ian Douglas Smith", "Bessie Smith", "Ian Smith", "Captain John Smith", "Kate Smith", "David Roland Smith", "John Smith", "Kathryn Elizabeth Smith", "Joseph Smith", "metalworker", "Julia Evelina Smith"]}, {"answer": "smitty_stevens", "hint": "synonyms for smitty stevens", "clues": ["S. Smith Stevens", "Stevens", "Stanley Smith Stevens", "Smitty Stevens"]}, {"answer": "smock", "hint": "synonyms for smock", "clues": ["gaberdine", "duster", "dust coat", "smock"]}, {"answer": "smoke", "hint": "synonyms for smoke", "clues": ["roll of tobacco", "locoweed", "Mary Jane", "hummer", "gage", "bullet", "pot", "green goddess", "fume", "dope", "grass", "sess", "fastball", "weed", "skunk", "heater", "sens", "smoking", "smoke"]}, {"answer": "smoker", "hint": "synonyms for smoker", "clues": ["tobacco user", "stag party", "smoking compartment", "smoking carriage", "smoking car", "smoker"]}, {"answer": "smooching", "hint": "synonyms for smooching", "clues": ["petting", "cuddling", "necking", "hugging", "caressing", "fondling", "kissing", "snuggling", "smooching"]}, {"answer": "smoothness", "hint": "synonyms for smoothness", "clues": ["suavity", "eloquence", "suaveness", "fluency", "blandness", "smoothness"]}, {"answer": "smorgasbord", "hint": "synonyms for smorgasbord", "clues": ["miscellany", "mixture", "variety", "salmagundi", "mixed bag", "assortment", "motley", "potpourri", "smorgasbord"]}, {"answer": "smother", "hint": "synonyms for smother", "clues": ["muddle", "welter", "mare's nest", "clutter", "fuddle", "jumble", "smother"]}, {"answer": "smudge", "hint": "synonyms for smudge", "clues": ["smear", "daub", "slur", "blot", "spot", "smirch", "smudge"]}, {"answer": "smuggler", "hint": "synonyms for smuggler", "clues": ["contrabandist", "moon curser", "runner", "smuggler"]}, {"answer": "smut", "hint": "synonyms for smut", "clues": ["pornography", "obscenity", "carbon black", "porno", "dirty word", "soot", "vulgarism", "erotica", "lampblack", "crock", "filth", "smut"]}, {"answer": "smuts", "hint": "synonyms for smuts", "clues": ["smut", "pornography", "obscenity", "carbon black", "porno", "dirty word", "Jan Christian Smuts", "soot", "vulgarism", "erotica", "lampblack", "crock", "filth"]}, {"answer": "snag", "hint": "synonyms for snag", "clues": ["hitch", "rent", "split", "rub", "rip", "hang-up", "tear", "snag"]}, {"answer": "snake", "hint": "synonyms for snake", "clues": ["Hydra", "Snake River", "snake in the grass", "Snake"]}, {"answer": "snake_pit", "hint": "synonyms for snake pit", "clues": ["loony bin", "cuckoo's nest", "madhouse", "sanatorium", "booby hatch", "nut house", "hell", "funny house", "funny farm", "the pits", "Bedlam", "hellhole", "hell on earth", "inferno", "crazy house", "snake pit"]}, {"answer": "snap", "hint": "synonyms for snap", "clues": ["snap fastener", "elasticity", "pushover", "picnic", "piece of cake", "catch", "crack", "ginger snap", "walkover", "snap bean", "shot", "centering", "grab", "ginger nut", "cinch", "child's play", "snapshot", "snatch", "press stud", "duck soup", "breeze", "snap"]}, {"answer": "snappishness", "hint": "synonyms for snappishness", "clues": ["temper", "surliness", "peevishness", "pettishness", "biliousness", "irritability", "snappishness"]}, {"answer": "snare", "hint": "synonyms for snare", "clues": ["side drum", "noose", "snare drum", "gin", "trap", "snare"]}, {"answer": "snatch", "hint": "synonyms for snatch", "clues": ["snap", "slit", "cunt", "grab", "bit", "pussy", "kidnapping", "catch", "twat", "snatch"]}, {"answer": "sneaker", "hint": "synonyms for sneaker", "clues": ["gym shoe", "tennis shoe", "stool pigeon", "snitcher", "stoolie", "sneak", "fink", "canary", "sneaker"]}, {"answer": "snip", "hint": "synonyms for snip", "clues": ["snippet", "clip", "snipping", "clipping", "snip"]}, {"answer": "snips", "hint": "synonyms for snips", "clues": ["clip", "snipping", "clipping", "snippet", "snip", "tinsnips"]}, {"answer": "snitch", "hint": "synonyms for snitch", "clues": ["sneaker", "stool pigeon", "snitcher", "stoolie", "sneak", "fink", "canary"]}, {"answer": "snitcher", "hint": "synonyms for snitcher", "clues": ["sneaker", "snitch", "stool pigeon", "stoolie", "sneak", "fink", "canary", "pilferer", "sneak thief"]}, {"answer": "sniveller", "hint": "synonyms for sniveller", "clues": ["grumbler", "moaner", "bellyacher", "whiner", "complainer", "crybaby", "squawker", "sniveller"]}, {"answer": "snoot", "hint": "synonyms for snoot", "clues": ["snob", "snot", "beak", "schnoz", "schnozzle", "prig", "hooter", "honker", "nozzle"]}, {"answer": "snooze", "hint": "synonyms for snooze", "clues": ["catnap", "nap", "short sleep", "cat sleep", "forty winks", "snooze"]}, {"answer": "snorkel", "hint": "synonyms for snorkel", "clues": ["schnorchel", "snorkel breather", "breather", "schnorkel"]}, {"answer": "snorkel_breather", "hint": "synonyms for snorkel breather", "clues": ["schnorchel", "breather", "schnorkel", "snorkel breather"]}, {"answer": "snort", "hint": "synonyms for snort", "clues": ["bird", "boo", "hoot", "raspberry", "Bronx cheer", "snigger", "razzing", "snicker", "hiss", "snort"]}, {"answer": "snout", "hint": "synonyms for snout", "clues": ["schnozzle", "snoot", "hooter", "beak", "honker", "schnoz", "nozzle", "snout"]}, {"answer": "snow", "hint": "synonyms for snow", "clues": ["snowfall", "Snow", "blow", "C", "coke", "C. P. Snow", "nose candy", "Charles Percy Snow", "Baron Snow of Leicester"]}, {"answer": "snow_mist", "hint": "synonyms for snow mist", "clues": ["frost snow", "frost mist", "ice crystal", "poudrin", "diamond dust", "ice needle", "snow mist"]}, {"answer": "snuggling", "hint": "synonyms for snuggling", "clues": ["petting", "smooching", "cuddling", "necking", "hugging", "caressing", "fondling", "kissing", "snuggling"]}, {"answer": "so-and-so", "hint": "synonyms for so-and-so", "clues": ["bum", "crumb", "stinkpot", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "puke", "rotter", "skunk", "git", "so-and-so"]}, {"answer": "so_long", "hint": "synonyms for so long", "clues": ["good-bye", "cheerio", "good day", "adieu", "au revoir", "arrivederci", "sayonara", "auf wiedersehen", "adios", "bye-bye", "bye", "so long"]}, {"answer": "soaker", "hint": "synonyms for soaker", "clues": ["downpour", "dipsomaniac", "alcoholic", "souse", "cloudburst", "deluge", "lush", "torrent", "boozer", "pelter", "alky", "waterspout", "soaker"]}, {"answer": "soap", "hint": "synonyms for soap", "clues": ["Georgia home boy", "grievous bodily harm", "max", "scoop", "goop", "liquid ecstasy", "easy lay", "soap"]}, {"answer": "soapbox", "hint": "synonyms for soapbox", "clues": ["pulpit", "podium", "dais", "ambo", "stump", "rostrum", "soapbox"]}, {"answer": "sob", "hint": "synonyms for sob", "clues": ["bastard", "SOB", "shortness of breath", "motherfucker", "son of a bitch", "asshole", "cocksucker", "whoreson", "sobbing", "shit", "breathlessness", "dickhead", "prick"]}, {"answer": "soberness", "hint": "synonyms for soberness", "clues": ["somberness", "sobriety", "graveness", "gravity"]}, {"answer": "sobriety", "hint": "synonyms for sobriety", "clues": ["somberness", "graveness", "temperance", "gravity", "dryness", "sobriety"]}, {"answer": "sobriquet", "hint": "synonyms for sobriquet", "clues": ["byname", "soubriquet", "cognomen", "nickname", "moniker"]}, {"answer": "social_club", "hint": "synonyms for social club", "clues": ["gild", "club", "society", "order", "lodge", "social club"]}, {"answer": "social_disease", "hint": "synonyms for social disease", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "venereal disease", "sexually transmitted disease", "VD", "venereal infection", "social disease"]}, {"answer": "social_function", "hint": "synonyms for social function", "clues": ["affair", "social occasion", "occasion", "function", "social function"]}, {"answer": "social_occasion", "hint": "synonyms for social occasion", "clues": ["affair", "occasion", "function", "social function", "social occasion"]}, {"answer": "social_organisation", "hint": "synonyms for social organisation", "clues": ["social system", "social organization", "social structure", "structure"]}, {"answer": "social_organization", "hint": "synonyms for social organization", "clues": ["social organisation", "social system", "social structure", "structure"]}, {"answer": "social_reformer", "hint": "synonyms for social reformer", "clues": ["reformist", "crusader", "reformer", "meliorist", "social reformer"]}, {"answer": "social_structure", "hint": "synonyms for social structure", "clues": ["social organisation", "structure", "social system", "social structure"]}, {"answer": "social_system", "hint": "synonyms for social system", "clues": ["social organisation", "social structure", "structure", "social system"]}, {"answer": "socialisation", "hint": "synonyms for socialisation", "clues": ["enculturation", "socializing", "socialization", "acculturation"]}, {"answer": "socialization", "hint": "synonyms for socialization", "clues": ["enculturation", "socializing", "socialisation", "acculturation"]}, {"answer": "society", "hint": "synonyms for society", "clues": ["smart set", "high society", "club", "companionship", "social club", "guild", "lodge", "fellowship", "beau monde", "bon ton", "order", "company", "society"]}, {"answer": "sock", "hint": "synonyms for sock", "clues": ["wind cone", "wind sock", "air sock", "air-sleeve", "drogue", "wind sleeve", "sock"]}, {"answer": "sod", "hint": "synonyms for sod", "clues": ["sward", "bugger", "greensward", "sodomite", "turf", "superoxide dismutase", "SOD"]}, {"answer": "soda", "hint": "synonyms for soda", "clues": ["sodium carbonate", "sal soda", "soda ash", "soda pop", "pop", "soda water", "tonic", "washing soda", "soda"]}, {"answer": "soda_ash", "hint": "synonyms for soda ash", "clues": ["sodium carbonate", "sal soda", "washing soda", "soda", "soda ash"]}, {"answer": "soda_pop", "hint": "synonyms for soda pop", "clues": ["soda water", "tonic", "pop", "soda", "soda pop"]}, {"answer": "soda_water", "hint": "synonyms for soda water", "clues": ["sparkling water", "seltzer", "soda", "carbonated water", "soda pop", "pop", "tonic", "club soda", "soda water"]}, {"answer": "soddy", "hint": "synonyms for soddy", "clues": ["Soddy", "sod house", "adobe house", "Frederick Soddy"]}, {"answer": "sodium_bicarbonate", "hint": "synonyms for sodium bicarbonate", "clues": ["saleratus", "sodium hydrogen carbonate", "baking soda", "bicarbonate of soda", "sodium bicarbonate"]}, {"answer": "sodium_carbonate", "hint": "synonyms for sodium carbonate", "clues": ["soda ash", "washing soda", "sal soda", "soda", "sodium carbonate"]}, {"answer": "sodium_hydrogen_carbonate", "hint": "synonyms for sodium hydrogen carbonate", "clues": ["saleratus", "baking soda", "bicarbonate of soda", "sodium bicarbonate", "sodium hydrogen carbonate"]}, {"answer": "sodium_thiopental", "hint": "synonyms for sodium thiopental", "clues": ["phenobarbital", "phenobarbitone", "Luminal", "purple heart", "sodium thiopental"]}, {"answer": "soft-cover", "hint": "synonyms for soft-cover", "clues": ["soft-cover book", "softback book", "paperback book", "paperback", "softback", "soft-cover"]}, {"answer": "soft-cover_book", "hint": "synonyms for soft-cover book", "clues": ["soft-cover", "softback book", "paperback book", "paperback", "softback", "soft-cover book"]}, {"answer": "soft_soap", "hint": "synonyms for soft soap", "clues": ["green soap", "blarney", "coaxing", "sweet talk", "soft soap"]}, {"answer": "soft_spot", "hint": "synonyms for soft spot", "clues": ["weak spot", "weak part", "fontanel", "soft spot"]}, {"answer": "soft_touch", "hint": "synonyms for soft touch", "clues": ["fall guy", "mark", "mug", "gull", "patsy", "fool", "chump", "sucker", "soft touch"]}, {"answer": "softback", "hint": "synonyms for softback", "clues": ["soft-cover book", "soft-cover", "softback book", "paperback book", "paperback", "softback"]}, {"answer": "softback_book", "hint": "synonyms for softback book", "clues": ["soft-cover book", "soft-cover", "paperback book", "paperback", "softback", "softback book"]}, {"answer": "softness", "hint": "synonyms for softness", "clues": ["unfitness", "mildness", "blurriness", "womanishness", "fuzziness", "sissiness", "balminess", "gentleness", "effeminacy", "unmanliness", "indistinctness", "fogginess", "effeminateness", "softness"]}, {"answer": "software", "hint": "synonyms for software", "clues": ["software system", "software package", "package", "computer software", "software program", "software"]}, {"answer": "software_package", "hint": "synonyms for software package", "clues": ["software system", "software", "software product", "package", "computer software", "software program", "software package"]}, {"answer": "software_program", "hint": "synonyms for software program", "clues": ["software system", "software", "software package", "package", "computer software", "software program"]}, {"answer": "software_system", "hint": "synonyms for software system", "clues": ["software", "software package", "package", "computer software", "software program", "software system"]}, {"answer": "soil", "hint": "synonyms for soil", "clues": ["territory", "grime", "ground", "grease", "stain", "grunge", "land", "dirt", "filth", "soil"]}, {"answer": "soissons", "hint": "synonyms for soissons", "clues": ["battle of the Aisne", "battle of the Chemin-des-Dames", "battle of Soissons-Reims", "Soissons"]}, {"answer": "sol", "hint": "synonyms for sol", "clues": ["colloidal solution", "colloidal suspension", "soh", "Sol", "so"]}, {"answer": "solar_day", "hint": "synonyms for solar day", "clues": ["mean solar day", "day", "twenty-four hours", "twenty-four hour period", "24-hour interval", "solar day"]}, {"answer": "solarium", "hint": "synonyms for solarium", "clues": ["sun parlor", "sun porch", "sunroom", "sun lounge", "solarium"]}, {"answer": "soldiering", "hint": "synonyms for soldiering", "clues": ["goofing off", "soldiership", "goldbricking", "slacking", "shirking", "soldiering"]}, {"answer": "solecism", "hint": "synonyms for solecism", "clues": ["gaffe", "faux pas", "gaucherie", "slip", "solecism"]}, {"answer": "solemnity", "hint": "synonyms for solemnity", "clues": ["solemness", "staidness", "gravity", "sedateness", "solemnity"]}, {"answer": "solicitation", "hint": "synonyms for solicitation", "clues": ["appeal", "allurement", "collection", "ingathering", "solicitation"]}, {"answer": "solid_ground", "hint": "synonyms for solid ground", "clues": ["ground", "terra firma", "land", "dry land", "earth", "solid ground"]}, {"answer": "solidification", "hint": "synonyms for solidification", "clues": ["set", "solidifying", "hardening", "curing", "solidification"]}, {"answer": "solidifying", "hint": "synonyms for solidifying", "clues": ["set", "solidification", "hardening", "curing", "solidifying"]}, {"answer": "solidness", "hint": "synonyms for solidness", "clues": ["solidity", "solid", "substantiality", "substantialness", "solid state", "solidness"]}, {"answer": "solidus", "hint": "synonyms for solidus", "clues": ["virgule", "separatrix", "bezzant", "stroke", "byzant", "slash", "diagonal", "solidus"]}, {"answer": "solitudinarian", "hint": "synonyms for solitudinarian", "clues": ["hermit", "recluse", "solitary", "troglodyte", "solitudinarian"]}, {"answer": "solomon's_seal", "hint": "synonyms for solomon's seal", "clues": ["Mogen David", "Shield of David", "Solomon's seal", "Star of David"]}, {"answer": "soluble_rna", "hint": "synonyms for soluble rna", "clues": ["acceptor RNA", "tRNA", "transfer RNA", "soluble RNA"]}, {"answer": "solution", "hint": "synonyms for solution", "clues": ["root", "answer", "result", "resolution", "solvent"]}, {"answer": "soma", "hint": "synonyms for soma", "clues": ["human body", "form", "bod", "physique", "material body", "Soma", "flesh", "figure", "chassis", "anatomy", "shape", "frame", "physical body", "build"]}, {"answer": "somaesthesia", "hint": "synonyms for somaesthesia", "clues": ["somatic sense", "somesthesia", "somataesthesis", "somatosensory system", "somatic sensation"]}, {"answer": "somaesthesis", "hint": "synonyms for somaesthesis", "clues": ["somesthesia", "somataesthesis", "somatosensory system", "somatic sense"]}, {"answer": "somataesthesis", "hint": "synonyms for somataesthesis", "clues": ["somatic sense", "somesthesia", "somatosensory system", "somataesthesis"]}, {"answer": "somatesthesia", "hint": "synonyms for somatesthesia", "clues": ["somesthesia", "somataesthesis", "somatosensory system", "somatic sensation", "somatic sense"]}, {"answer": "somatic_sense", "hint": "synonyms for somatic sense", "clues": ["somesthesia", "somataesthesis", "somatosensory system", "somatic sense"]}, {"answer": "somatic_sensory_system", "hint": "synonyms for somatic sensory system", "clues": ["somatic sense", "somesthesia", "somataesthesis", "somatosensory system"]}, {"answer": "somatosensory_system", "hint": "synonyms for somatosensory system", "clues": ["somatic sense", "somesthesia", "somataesthesis", "somatic sensory system"]}, {"answer": "somatotrophic_hormone", "hint": "synonyms for somatotrophic hormone", "clues": ["somatotrophin", "somatotropic hormone", "STH", "human growth hormone", "growth hormone"]}, {"answer": "somatotrophin", "hint": "synonyms for somatotrophin", "clues": ["somatotropic hormone", "STH", "somatotropin", "human growth hormone", "growth hormone"]}, {"answer": "somatotropic_hormone", "hint": "synonyms for somatotropic hormone", "clues": ["somatotrophin", "somatotrophic hormone", "STH", "human growth hormone", "growth hormone"]}, {"answer": "somatotropin", "hint": "synonyms for somatotropin", "clues": ["somatotrophin", "somatotrophic hormone", "STH", "human growth hormone", "growth hormone"]}, {"answer": "somberness", "hint": "synonyms for somberness", "clues": ["gloom", "soberness", "sobriety", "graveness", "gravity", "sombreness", "gloominess"]}, {"answer": "sombreness", "hint": "synonyms for sombreness", "clues": ["somberness", "gloom", "sobriety", "graveness", "gravity", "gloominess"]}, {"answer": "somebody", "hint": "synonyms for somebody", "clues": ["person", "mortal", "someone", "soul", "individual", "somebody"]}, {"answer": "someone", "hint": "synonyms for someone", "clues": ["person", "somebody", "soul", "mortal", "individual", "someone"]}, {"answer": "somersault", "hint": "synonyms for somersault", "clues": ["flip", "somerset", "summersault", "summerset", "somersaulting"]}, {"answer": "somersaulting", "hint": "synonyms for somersaulting", "clues": ["flip", "somersault", "somerset", "summerset"]}, {"answer": "somerset", "hint": "synonyms for somerset", "clues": ["Somerset", "flip", "somersault", "summerset"]}, {"answer": "somesthesia", "hint": "synonyms for somesthesia", "clues": ["somatic sense", "somataesthesis", "somatosensory system", "somatic sensation", "somaesthesia"]}, {"answer": "somesthesis", "hint": "synonyms for somesthesis", "clues": ["somatic sense", "somesthesia", "somataesthesis", "somatosensory system"]}, {"answer": "somnambulation", "hint": "synonyms for somnambulation", "clues": ["sleepwalking", "noctambulism", "somnambulism", "noctambulation", "somnambulation"]}, {"answer": "somnambulism", "hint": "synonyms for somnambulism", "clues": ["sleepwalking", "noctambulism", "somnambulation", "noctambulation", "somnambulism"]}, {"answer": "son", "hint": "synonyms for son", "clues": ["boy", "Son", "Word", "Logos"]}, {"answer": "son_of_a_bitch", "hint": "synonyms for son of a bitch", "clues": ["SOB", "motherfucker", "shit", "cocksucker", "whoreson", "bastard", "asshole", "prick", "dickhead", "son of a bitch"]}, {"answer": "song", "hint": "synonyms for song", "clues": ["call", "vocal", "Sung dynasty", "Song", "birdcall", "strain", "Sung", "birdsong"]}, {"answer": "song_and_dance", "hint": "synonyms for song and dance", "clues": ["fairy tale", "cock-and-bull story", "fairy story", "song and dance"]}, {"answer": "song_of_solomon", "hint": "synonyms for song of solomon", "clues": ["Song of Songs", "Canticle of Canticles", "Song of Solomon", "Canticles"]}, {"answer": "song_of_songs", "hint": "synonyms for song of songs", "clues": ["Song of Songs", "Canticle of Canticles", "Song of Solomon", "Canticles"]}, {"answer": "sonny", "hint": "synonyms for sonny", "clues": ["laddie", "cub", "sonny boy", "lad", "sonny"]}, {"answer": "sonny_boy", "hint": "synonyms for sonny boy", "clues": ["laddie", "cub", "sonny", "lad", "sonny boy"]}, {"answer": "sonority", "hint": "synonyms for sonority", "clues": ["sonorousness", "vibrancy", "ringing", "resonance", "reverberance", "plangency", "sonority"]}, {"answer": "sonorousness", "hint": "synonyms for sonorousness", "clues": ["plangency", "vibrancy", "ringing", "resonance", "reverberance", "sonority", "sonorousness"]}, {"answer": "soot", "hint": "synonyms for soot", "clues": ["smut", "lampblack", "crock", "carbon black", "soot"]}, {"answer": "soot_black", "hint": "synonyms for soot black", "clues": ["jet black", "ebony", "pitch black", "coal black", "sable", "soot black"]}, {"answer": "sophistication", "hint": "synonyms for sophistication", "clues": ["sophistry", "sophism", "edification", "mundanity", "worldliness", "mundaneness", "sophistication"]}, {"answer": "sorcerer", "hint": "synonyms for sorcerer", "clues": ["thaumaturge", "magician", "wizard", "thaumaturgist", "necromancer", "sorcerer"]}, {"answer": "sordidness", "hint": "synonyms for sordidness", "clues": ["squalidness", "squalor", "contemptibility", "baseness", "despicability", "despicableness", "sordidness"]}, {"answer": "soreness", "hint": "synonyms for soreness", "clues": ["irritation", "tenderness", "rawness", "discomfort", "soreness"]}, {"answer": "sorrow", "hint": "synonyms for sorrow", "clues": ["grief", "ruefulness", "sorrowfulness", "regret", "rue", "sadness", "sorrow"]}, {"answer": "sorrowfulness", "hint": "synonyms for sorrowfulness", "clues": ["sorrow", "ruthfulness", "sadness", "mournfulness", "sorrowfulness"]}, {"answer": "sort", "hint": "synonyms for sort", "clues": ["form", "variety", "kind", "sorting"]}, {"answer": "sot", "hint": "synonyms for sot", "clues": ["wino", "inebriate", "rummy", "drunk", "drunkard", "sot"]}, {"answer": "sothis", "hint": "synonyms for sothis", "clues": ["Dog Star", "Canicula", "Sothis", "Sirius"]}, {"answer": "soubriquet", "hint": "synonyms for soubriquet", "clues": ["byname", "cognomen", "sobriquet", "nickname", "moniker"]}, {"answer": "soul", "hint": "synonyms for soul", "clues": ["person", "somebody", "psyche", "soulfulness", "someone", "mortal", "individual", "soul"]}, {"answer": "soupcon", "hint": "synonyms for soupcon", "clues": ["mite", "hint", "tinge", "pinch", "jot", "speck", "touch", "soupcon"]}, {"answer": "soupiness", "hint": "synonyms for soupiness", "clues": ["mushiness", "mawkishness", "creaminess", "sentimentality", "drippiness", "sloppiness", "soupiness"]}, {"answer": "source", "hint": "synonyms for source", "clues": ["root", "author", "informant", "rootage", "origin", "germ", "reference", "reservoir", "seed", "beginning", "generator", "source"]}, {"answer": "sourness", "hint": "synonyms for sourness", "clues": ["moroseness", "sour", "tartness", "sulkiness", "sullenness", "acidity", "sourness"]}, {"answer": "souse", "hint": "synonyms for souse", "clues": ["dipsomaniac", "alcoholic", "sousing", "lush", "drenching", "boozer", "soaking", "alky", "soaker", "souse"]}, {"answer": "south_dakota", "hint": "synonyms for south dakota", "clues": ["Mount Rushmore State", "South Dakota", "SD", "Coyote State"]}, {"answer": "southern_rhodesia", "hint": "synonyms for southern rhodesia", "clues": ["Rhodesia", "Southern Rhodesia", "Republic of Zimbabwe", "Zimbabwe"]}, {"answer": "southpaw", "hint": "synonyms for southpaw", "clues": ["left-hander", "lefty", "left-handed pitcher", "southpaw"]}, {"answer": "souvenir", "hint": "synonyms for souvenir", "clues": ["memento", "token", "keepsake", "relic", "souvenir"]}, {"answer": "soviet_union", "hint": "synonyms for soviet union", "clues": ["Union of Soviet Socialist Republics", "Russia", "Soviet Union", "USSR"]}, {"answer": "spa", "hint": "synonyms for spa", "clues": ["health spa", "watering place", "watering hole", "health club", "resort hotel", "spa"]}, {"answer": "space", "hint": "synonyms for space", "clues": ["blank space", "quad", "infinite", "outer space", "blank", "place", "distance", "space"]}, {"answer": "spade", "hint": "synonyms for spade", "clues": ["coon", "nigra", "nigger", "nigga", "jigaboo", "spade"]}, {"answer": "span", "hint": "synonyms for span", "clues": ["brace", "couplet", "bridge", "dyad", "duo", "twain", "duet", "twosome", "distich", "duad", "yoke", "pair", "straddle", "span"]}, {"answer": "spare-time_activity", "hint": "synonyms for spare-time activity", "clues": ["hobby", "pursuit", "avocation", "by-line", "sideline", "spare-time activity"]}, {"answer": "spareness", "hint": "synonyms for spareness", "clues": ["thinness", "sparsity", "leanness", "sparseness"]}, {"answer": "spark", "hint": "synonyms for spark", "clues": ["Muriel Sarah Spark", "flicker", "arc", "light", "sparkle", "Muriel Spark", "electric arc", "twinkle", "Dame Muriel Spark", "Spark", "electric discharge", "glint", "discharge"]}, {"answer": "sparkle", "hint": "synonyms for sparkle", "clues": ["scintillation", "light", "glister", "coruscation", "spark", "twinkle", "sparkle"]}, {"answer": "sparkling_water", "hint": "synonyms for sparkling water", "clues": ["soda water", "carbonated water", "club soda", "seltzer", "sparkling water"]}, {"answer": "spat", "hint": "synonyms for spat", "clues": ["squabble", "bickering", "tiff", "gaiter", "pettifoggery", "fuss", "spat"]}, {"answer": "spate", "hint": "synonyms for spate", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "rush", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "surge", "lot", "raft", "freshet", "batch", "mess", "slew", "plenty", "upsurge", "sight", "muckle", "wad", "heap", "mickle", "flock", "spate"]}, {"answer": "speaker", "hint": "synonyms for speaker", "clues": ["Speaker", "talker", "loudspeaker system", "verbalizer", "loudspeaker", "speaker unit", "utterer"]}, {"answer": "speaker_system", "hint": "synonyms for speaker system", "clues": ["speaker unit", "loudspeaker system", "loudspeaker", "speaker"]}, {"answer": "speaker_unit", "hint": "synonyms for speaker unit", "clues": ["loudspeaker system", "loudspeaker", "speaker", "speaker unit"]}, {"answer": "spear", "hint": "synonyms for spear", "clues": ["shaft", "gig", "fishgig", "lance", "fizgig", "spear"]}, {"answer": "special_k", "hint": "synonyms for special k", "clues": ["cat valium", "green", "super C", "special K", "super acid", "K", "honey oil", "jet"]}, {"answer": "specialisation", "hint": "synonyms for specialisation", "clues": ["speciality", "specialism", "differentiation", "specialization"]}, {"answer": "speciality", "hint": "synonyms for speciality", "clues": ["long suit", "strong point", "strength", "specialness", "distinctiveness", "peculiarity", "specialty", "strong suit", "specialisation", "specialism", "forte", "metier"]}, {"answer": "specialization", "hint": "synonyms for specialization", "clues": ["speciality", "specialism", "specialisation", "differentiation"]}, {"answer": "specialness", "hint": "synonyms for specialness", "clues": ["speciality", "particularity", "distinctiveness", "peculiarity", "specialness"]}, {"answer": "specialty", "hint": "synonyms for specialty", "clues": ["long suit", "strong point", "strength", "specialness", "distinctiveness", "peculiarity", "speciality", "strong suit", "specialisation", "specialism", "forte", "metier"]}, {"answer": "species", "hint": "synonyms for species", "clues": ["metal money", "mintage", "specie", "coinage"]}, {"answer": "speck", "hint": "synonyms for speck", "clues": ["mite", "mote", "corpuscle", "hint", "pinch", "soupcon", "touch", "pinpoint", "particle", "tinge", "jot", "molecule", "atom", "speck"]}, {"answer": "speckle", "hint": "synonyms for speckle", "clues": ["patch", "maculation", "fleck", "dapple", "spot", "speckle"]}, {"answer": "specs", "hint": "synonyms for specs", "clues": ["eyeglasses", "specification", "glasses", "spectacles", "spec"]}, {"answer": "spectacles", "hint": "synonyms for spectacles", "clues": ["eyeglasses", "glasses", "specs", "spectacle"]}, {"answer": "spectator", "hint": "synonyms for spectator", "clues": ["looker", "viewer", "watcher", "spectator pump", "witness", "spectator"]}, {"answer": "specter", "hint": "synonyms for specter", "clues": ["shade", "phantom", "wraith", "phantasma", "ghost", "spectre", "fantasm", "apparition", "spook"]}, {"answer": "spectre", "hint": "synonyms for spectre", "clues": ["shade", "phantom", "wraith", "phantasma", "fantasm", "ghost", "specter", "apparition", "spook"]}, {"answer": "spectrographic_analysis", "hint": "synonyms for spectrographic analysis", "clues": ["spectroscopic analysis", "spectrometry", "spectroscopy", "spectrum analysis", "spectrographic analysis"]}, {"answer": "spectrometry", "hint": "synonyms for spectrometry", "clues": ["spectrographic analysis", "spectroscopic analysis", "spectroscopy", "spectrum analysis", "spectrometry"]}, {"answer": "spectroscopic_analysis", "hint": "synonyms for spectroscopic analysis", "clues": ["spectrographic analysis", "spectrometry", "spectroscopy", "spectrum analysis", "spectroscopic analysis"]}, {"answer": "spectroscopy", "hint": "synonyms for spectroscopy", "clues": ["spectrographic analysis", "spectrometry", "spectroscopic analysis", "spectrum analysis", "spectroscopy"]}, {"answer": "spectrum_analysis", "hint": "synonyms for spectrum analysis", "clues": ["spectrographic analysis", "spectrometry", "spectroscopic analysis", "spectroscopy", "spectrum analysis"]}, {"answer": "speculation", "hint": "synonyms for speculation", "clues": ["surmise", "hypothesis", "surmisal", "conjecture", "supposition", "guess", "venture", "meditation", "speculation"]}, {"answer": "speech", "hint": "synonyms for speech", "clues": ["language", "voice communication", "oral communication", "spoken language", "talking to", "speech communication", "words", "lecture", "actor's line", "address", "manner of speaking", "delivery", "speech"]}, {"answer": "speech_communication", "hint": "synonyms for speech communication", "clues": ["spoken communication", "speech", "language", "voice communication", "oral communication", "spoken language"]}, {"answer": "speechifier", "hint": "synonyms for speechifier", "clues": ["public speaker", "orator", "rhetorician", "speechmaker", "speechifier"]}, {"answer": "speechmaker", "hint": "synonyms for speechmaker", "clues": ["public speaker", "orator", "rhetorician", "speechifier", "speechmaker"]}, {"answer": "speed", "hint": "synonyms for speed", "clues": ["fastness", "swiftness", "focal ratio", "hurrying", "velocity", "pep pill", "f number", "upper", "speeding", "stop number", "amphetamine"]}, {"answer": "speediness", "hint": "synonyms for speediness", "clues": ["celerity", "quickness", "rapidness", "rapidity", "speediness"]}, {"answer": "spell", "hint": "synonyms for spell", "clues": ["tour", "go", "magical spell", "trance", "patch", "turn", "enchantment", "charm", "piece", "while", "spell"]}, {"answer": "spender", "hint": "synonyms for spender", "clues": ["disburser", "spend-all", "Stephen Spender", "scattergood", "Spender", "Sir Stephen Harold Spender", "expender", "spendthrift"]}, {"answer": "spending", "hint": "synonyms for spending", "clues": ["outgo", "outlay", "disbursement", "disbursal", "expenditure", "spending"]}, {"answer": "sphacelus", "hint": "synonyms for sphacelus", "clues": ["mortification", "slough", "gangrene", "necrosis", "sphacelus"]}, {"answer": "sphere", "hint": "synonyms for sphere", "clues": ["sector", "field", "celestial sphere", "firmament", "sphere of influence", "heavens", "orbit", "arena", "domain", "welkin", "empyrean", "vault of heaven", "sphere"]}, {"answer": "sphericalness", "hint": "synonyms for sphericalness", "clues": ["rotundity", "globosity", "sphericity", "rotundness", "globularness", "sphericalness"]}, {"answer": "sphericity", "hint": "synonyms for sphericity", "clues": ["rotundity", "globosity", "sphericalness", "rotundness", "globularness", "sphericity"]}, {"answer": "spheroid_joint", "hint": "synonyms for spheroid joint", "clues": ["cotyloid joint", "ball-and-socket joint", "enarthrodial joint", "articulatio spheroidea", "enarthrosis", "spheroid joint"]}, {"answer": "spiceberry", "hint": "synonyms for spiceberry", "clues": ["wintergreen", "checkerberry", "teaberry", "boxberry", "spiceberry"]}, {"answer": "spiciness", "hint": "synonyms for spiciness", "clues": ["raciness", "gaminess", "ribaldry", "spice", "spicery", "spiciness"]}, {"answer": "spike_arrester", "hint": "synonyms for spike arrester", "clues": ["lightning arrester", "spike suppressor", "surge protector", "surge suppressor", "spike arrester"]}, {"answer": "spike_suppressor", "hint": "synonyms for spike suppressor", "clues": ["spike arrester", "lightning arrester", "surge protector", "surge suppressor", "spike suppressor"]}, {"answer": "spile", "hint": "synonyms for spile", "clues": ["stilt", "piling", "pile", "bung"]}, {"answer": "spill", "hint": "synonyms for spill", "clues": ["tumble", "wasteweir", "spillage", "spillway", "release", "fall", "spill"]}, {"answer": "spiller", "hint": "synonyms for spiller", "clues": ["trawl", "setline", "trawl line", "trotline", "shedder", "spiller"]}, {"answer": "spin", "hint": "synonyms for spin", "clues": ["whirl", "twisting", "twirl", "tailspin", "spin"]}, {"answer": "spinal_column", "hint": "synonyms for spinal column", "clues": ["vertebral column", "spine", "back", "backbone", "rachis", "spinal column"]}, {"answer": "spindle", "hint": "synonyms for spindle", "clues": ["arbor", "mandril", "spike", "spindle"]}, {"answer": "spine", "hint": "synonyms for spine", "clues": ["vertebral column", "spinal column", "back", "spur", "backbone", "acantha", "rachis", "spine"]}, {"answer": "spinoza", "hint": "synonyms for spinoza", "clues": ["Baruch de Spinoza", "de Spinoza", "Spinoza", "Benedict de Spinoza"]}, {"answer": "spirit", "hint": "synonyms for spirit", "clues": ["flavour", "look", "smell", "sprightliness", "tone", "intent", "emotional state", "life", "feeling", "heart", "disembodied spirit", "liveliness", "purport", "spirit"]}, {"answer": "spiritedness", "hint": "synonyms for spiritedness", "clues": ["animation", "invigoration", "brio", "vivification", "spiritedness"]}, {"answer": "spirits", "hint": "synonyms for spirits", "clues": ["flavour", "look", "tone", "intent", "John Barleycorn", "heart", "disembodied spirit", "liveliness", "smell", "hard drink", "liquor", "spirit", "sprightliness", "booze", "hard liquor", "strong drink", "emotional state", "life", "feel", "purport"]}, {"answer": "spirituality", "hint": "synonyms for spirituality", "clues": ["spiritualty", "church property", "spiritualism", "otherworldliness"]}, {"answer": "spit", "hint": "synonyms for spit", "clues": ["tongue", "expectoration", "spittle", "spitting", "saliva", "spit"]}, {"answer": "spite", "hint": "synonyms for spite", "clues": ["malice", "nastiness", "cattiness", "spitefulness", "maliciousness", "bitchiness", "venom", "spite"]}, {"answer": "spitefulness", "hint": "synonyms for spitefulness", "clues": ["spite", "malice", "nastiness", "cattiness", "maliciousness", "bitchiness", "venom", "spitefulness"]}, {"answer": "splash", "hint": "synonyms for splash", "clues": ["dab", "splattering", "spatter", "plash", "stir", "splashing"]}, {"answer": "splashiness", "hint": "synonyms for splashiness", "clues": ["ostentatiousness", "inflation", "pretentiousness", "pomposity", "puffiness", "pompousness", "ostentation", "splashiness"]}, {"answer": "splatter", "hint": "synonyms for splatter", "clues": ["spatter", "splattering", "dab", "splash", "splutter"]}, {"answer": "splattering", "hint": "synonyms for splattering", "clues": ["sputter", "splash", "splatter", "spattering"]}, {"answer": "spleen", "hint": "synonyms for spleen", "clues": ["lien", "short temper", "quick temper", "irascibility", "spleen"]}, {"answer": "splendor", "hint": "synonyms for splendor", "clues": ["lustre", "grandeur", "magnificence", "luster", "brilliancy", "grandness", "splendour"]}, {"answer": "splendour", "hint": "synonyms for splendour", "clues": ["grandeur", "magnificence", "luster", "brilliancy", "grandness", "splendor", "lustre"]}, {"answer": "spliff", "hint": "synonyms for spliff", "clues": ["stick", "marijuana cigarette", "joint", "reefer", "spliff"]}, {"answer": "split_second", "hint": "synonyms for split second", "clues": ["flash", "trice", "instant", "wink", "jiffy", "New York minute", "twinkling", "blink of an eye", "heartbeat", "split second"]}, {"answer": "spoil", "hint": "synonyms for spoil", "clues": ["spoliation", "despoilation", "spoiling", "spoilage", "despoilment"]}, {"answer": "spoilation", "hint": "synonyms for spoilation", "clues": ["spoliation", "despoilation", "spoil", "despoilment"]}, {"answer": "spoiler", "hint": "synonyms for spoiler", "clues": ["coddler", "despoiler", "pamperer", "pillager", "plunderer", "freebooter", "raider", "mollycoddler", "looter"]}, {"answer": "spoke", "hint": "synonyms for spoke", "clues": ["radius", "rundle", "rung", "wheel spoke", "spoke"]}, {"answer": "spoken_communication", "hint": "synonyms for spoken communication", "clues": ["speech", "language", "voice communication", "oral communication", "spoken language", "speech communication"]}, {"answer": "spoken_language", "hint": "synonyms for spoken language", "clues": ["spoken communication", "speech", "language", "voice communication", "oral communication", "spoken language"]}, {"answer": "spoliation", "hint": "synonyms for spoliation", "clues": ["despoilation", "spoil", "despoilment", "spoliation"]}, {"answer": "sponge", "hint": "synonyms for sponge", "clues": ["leech", "sponger", "quick study", "parasite"]}, {"answer": "spoof", "hint": "synonyms for spoof", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "takeoff", "burlesque", "parody", "lampoon", "spoof"]}, {"answer": "spook", "hint": "synonyms for spook", "clues": ["shade", "wraith", "weirdie", "weirdy", "ghost", "creep", "spectre", "weirdo", "spook"]}, {"answer": "sport", "hint": "synonyms for sport", "clues": ["mutant", "sportswoman", "summercater", "play", "athletics", "variation", "mutation", "fun", "sport"]}, {"answer": "sporting_house", "hint": "synonyms for sporting house", "clues": ["bagnio", "house of ill repute", "bordello", "whorehouse", "house of prostitution", "cathouse", "brothel", "bawdyhouse", "sporting house"]}, {"answer": "sporting_lady", "hint": "synonyms for sporting lady", "clues": ["harlot", "working girl", "fancy woman", "bawd", "prostitute", "lady of pleasure", "tart", "cocotte", "whore", "woman of the street", "cyprian", "sporting lady"]}, {"answer": "spot", "hint": "synonyms for spot", "clues": ["daub", "bit", "stain", "topographic point", "spotlight", "patch", "speckle", "place", "fleck", "point", "pip", "billet", "smear", "slur", "maculation", "berth", "blot", "dapple", "touch", "situation", "office", "post", "smirch", "smudge", "position", "spot"]}, {"answer": "spotlight", "hint": "synonyms for spotlight", "clues": ["limelight", "spot", "public eye", "glare", "spotlight"]}, {"answer": "spots", "hint": "synonyms for spots", "clues": ["daub", "bit", "muscae volitantes", "topographic point", "stain", "spotlight", "patch", "place", "speckle", "point", "fleck", "pip", "billet", "smear", "slur", "maculation", "berth", "blot", "spot", "floater", "dapple", "touch", "situation", "office", "post", "smirch", "smudge", "position"]}, {"answer": "spotter", "hint": "synonyms for spotter", "clues": ["sentry", "lookout man", "sentinel", "discoverer", "picket", "lookout", "finder", "scout", "watch", "spotter"]}, {"answer": "spotting", "hint": "synonyms for spotting", "clues": ["detection", "maculation", "espial", "spying", "catching", "staining", "spotting"]}, {"answer": "spousal_relationship", "hint": "synonyms for spousal relationship", "clues": ["matrimony", "union", "wedlock", "marriage", "spousal relationship"]}, {"answer": "spouse", "hint": "synonyms for spouse", "clues": ["partner", "married person", "better half", "mate", "spouse"]}, {"answer": "spouter", "hint": "synonyms for spouter", "clues": ["babbler", "prater", "chatterer", "chatterbox", "magpie", "spouter"]}, {"answer": "spray", "hint": "synonyms for spray", "clues": ["atomiser", "nebulizer", "sprayer", "spraying"]}, {"answer": "spray_can", "hint": "synonyms for spray can", "clues": ["aerosol bomb", "aerosol can", "aerosol container", "aerosol", "spray can"]}, {"answer": "sprayer", "hint": "synonyms for sprayer", "clues": ["atomiser", "nebulizer", "spray", "sprayer"]}, {"answer": "spreading", "hint": "synonyms for spreading", "clues": ["dissemination", "public exposure", "spread", "airing"]}, {"answer": "spring", "hint": "synonyms for spring", "clues": ["saltation", "springiness", "natural spring", "outflow", "fountain", "leap", "outpouring", "springtime", "bound", "bounce", "give", "spring"]}, {"answer": "sprinkles", "hint": "synonyms for sprinkles", "clues": ["scattering", "sparge", "sprinkling", "jimmies", "sprinkle"]}, {"answer": "sprinkling", "hint": "synonyms for sprinkling", "clues": ["scattering", "sparge", "aspersion", "sprinkle", "sprinkling"]}, {"answer": "sprite", "hint": "synonyms for sprite", "clues": ["faerie", "fay", "fairy", "faery", "sprite"]}, {"answer": "sprites", "hint": "synonyms for sprites", "clues": ["faerie", "fay", "fairy", "sprite", "faery", "red sprites"]}, {"answer": "spud", "hint": "synonyms for spud", "clues": ["Irish potato", "stump spud", "potato", "murphy", "white potato", "tater", "spud"]}, {"answer": "spunk", "hint": "synonyms for spunk", "clues": ["mettle", "nerve", "heart", "punk", "touchwood", "kindling", "tinder"]}, {"answer": "spur", "hint": "synonyms for spur", "clues": ["gad", "spurring", "spine", "branch line", "acantha", "prod", "goading", "urging", "prodding", "spur track", "spur"]}, {"answer": "spurring", "hint": "synonyms for spurring", "clues": ["goading", "urging", "spur", "prodding", "prod", "spurring"]}, {"answer": "spying", "hint": "synonyms for spying", "clues": ["undercover work", "detection", "spotting", "espial", "catching", "spying"]}, {"answer": "squabble", "hint": "synonyms for squabble", "clues": ["spat", "bickering", "tiff", "pettifoggery", "fuss", "squabble"]}, {"answer": "squad_car", "hint": "synonyms for squad car", "clues": ["prowl car", "cruiser", "police car", "patrol car", "police cruiser", "squad car"]}, {"answer": "squawk", "hint": "synonyms for squawk", "clues": ["bitch", "beef", "kick", "gripe", "squawk"]}, {"answer": "squawker", "hint": "synonyms for squawker", "clues": ["bellyacher", "squawk box", "whiner", "complainer", "grumbler", "moaner", "sniveller", "crybaby", "intercom speaker", "squawker"]}, {"answer": "squeak", "hint": "synonyms for squeak", "clues": ["close shave", "close call", "squeaker", "narrow escape"]}, {"answer": "squeaker", "hint": "synonyms for squeaker", "clues": ["close shave", "close call", "narrow escape", "squeak"]}, {"answer": "squealer", "hint": "synonyms for squealer", "clues": ["betrayer", "blabber", "rat", "informer", "squealer"]}, {"answer": "squeeze", "hint": "synonyms for squeeze", "clues": ["squeezing", "liquidity crisis", "hug", "squeeze play", "credit crunch", "wring", "clinch", "power play", "squeeze"]}, {"answer": "squelch", "hint": "synonyms for squelch", "clues": ["squelcher", "squelch circuit", "takedown", "put-down"]}, {"answer": "squelcher", "hint": "synonyms for squelcher", "clues": ["squelch circuit", "takedown", "put-down", "squelch"]}, {"answer": "squirt", "hint": "synonyms for squirt", "clues": ["jet", "pip-squeak", "spurt", "small fry", "spirt", "squirt"]}, {"answer": "sr", "hint": "synonyms for sr", "clues": ["atomic number 38", "Sr", "steradian", "strontium"]}, {"answer": "ss", "hint": "synonyms for ss", "clues": ["due south", "SS", "mho", "US Secret Service", "USSS", "south", "sulphur", "sulfur", "entropy", "Schutzstaffel", "United States Secret Service", "atomic number 16", "reciprocal ohm", "southward", "randomness", "second", "sec", "siemens"]}, {"answer": "sspe", "hint": "synonyms for sspe", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "sss", "hint": "synonyms for sss", "clues": ["SS", "Selective Service", "Secret Service", "Schutzstaffel", "United States Secret Service", "USSS", "Selective Service System"]}, {"answer": "st._andrew", "hint": "synonyms for st. andrew", "clues": ["St. Andrew", "Saint Andrew the Apostle", "Andrew", "Saint Andrew"]}, {"answer": "st._baeda", "hint": "synonyms for st. baeda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "st._basil", "hint": "synonyms for st. basil", "clues": ["Basil", "St. Basil", "Basil the Great", "Basil of Caesarea"]}, {"answer": "st._basil_the_great", "hint": "synonyms for st. basil the great", "clues": ["Basil", "St. Basil", "Basil the Great", "Basil of Caesarea"]}, {"answer": "st._beda", "hint": "synonyms for st. beda", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "st._bede", "hint": "synonyms for st. bede", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "st._boniface", "hint": "synonyms for st. boniface", "clues": ["St. Boniface", "Boniface", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "st._bride", "hint": "synonyms for st. bride", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "st._bridget", "hint": "synonyms for st. bridget", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "st._brigid", "hint": "synonyms for st. brigid", "clues": ["Bride", "St. Brigid", "Brigid", "Saint Bride", "Bridget", "St. Bridget"]}, {"answer": "st._christopher", "hint": "synonyms for st. christopher", "clues": ["Christopher", "St. Christopher", "Saint Kitts", "St. Kitts"]}, {"answer": "st._dominic", "hint": "synonyms for st. dominic", "clues": ["Domingo de Guzman", "Dominic", "Saint Dominic", "St. Dominic"]}, {"answer": "st._elmo's_fire", "hint": "synonyms for st. elmo's fire", "clues": ["Saint Ulmo's light", "Saint Ulmo's fire", "electric glow", "corposant", "corona discharge", "St. Elmo's fire", "corona"]}, {"answer": "st._francis", "hint": "synonyms for st. francis", "clues": ["St. Francis of Assisi", "Saint Francis River", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "st._francis_of_assisi", "hint": "synonyms for st. francis of assisi", "clues": ["St. Francis of Assisi", "Saint Francis", "Giovanni di Bernardone", "St. Francis"]}, {"answer": "st._james", "hint": "synonyms for st. james", "clues": ["St. James", "Saint James the Apostle", "Saint James", "James"]}, {"answer": "st._james_the_apostle", "hint": "synonyms for st. james the apostle", "clues": ["St. James", "Saint James the Apostle", "Saint James", "James"]}, {"answer": "st._jerome", "hint": "synonyms for st. jerome", "clues": ["Eusebius Sophronius Hieronymus", "Saint Jerome", "Eusebius Hieronymus", "St. Jerome", "Jerome", "Hieronymus"]}, {"answer": "st._john", "hint": "synonyms for st. john", "clues": ["John the Evangelist", "John the Divine", "St. John River", "Saint John", "St. John the Apostle", "St. John", "John"]}, {"answer": "st._john_the_apostle", "hint": "synonyms for st. john the apostle", "clues": ["Saint John the Apostle", "Saint John", "St. John", "John the Evangelist", "John", "John the Divine"]}, {"answer": "st._johns", "hint": "synonyms for st. johns", "clues": ["Saint John the Apostle", "John", "John the Evangelist", "John the Divine", "St. John River", "Saint John", "St. John", "Saint Johns River"]}, {"answer": "st._joseph", "hint": "synonyms for st. joseph", "clues": ["acetylsalicylic acid", "St. Joseph", "Saint Joseph", "Bayer", "aspirin", "Empirin"]}, {"answer": "st._jude", "hint": "synonyms for st. jude", "clues": ["Jude", "Saint Jude", "Thaddaeus", "St. Jude", "Judas"]}, {"answer": "st._lawrence", "hint": "synonyms for st. lawrence", "clues": ["St. Lawrence", "Saint Lawrence River", "Lawrence", "Laurentius", "Saint Lawrence"]}, {"answer": "st._louis", "hint": "synonyms for st. louis", "clues": ["Gateway to the West", "St. Louis", "Saint Louis", "Louis IX"]}, {"answer": "st._mary_of_bethlehem", "hint": "synonyms for st. mary of bethlehem", "clues": ["Belem", "Para", "Santa Maria de Belem", "St. Mary of Bethlehem", "Feliz Lusitania"]}, {"answer": "st._matthew", "hint": "synonyms for st. matthew", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Matthew"]}, {"answer": "st._matthew_the_apostle", "hint": "synonyms for st. matthew the apostle", "clues": ["Levi", "St. Matthew", "Saint Matthew", "St. Matthew the Apostle", "Matthew"]}, {"answer": "st._nick", "hint": "synonyms for st. nick", "clues": ["St. Nick", "Father Christmas", "Kriss Kringle", "Saint Nicholas", "Santa", "Santa Claus", "Saint Nick"]}, {"answer": "st._paul", "hint": "synonyms for st. paul", "clues": ["Apostle Paul", "Saul of Tarsus", "Paul", "capital of Minnesota", "Saint Paul", "Saul", "Paul the Apostle", "Apostle of the Gentiles", "St. Paul"]}, {"answer": "st._peter", "hint": "synonyms for st. peter", "clues": ["Simon Peter", "Saint Peter", "Saint Peter the Apostle", "St. Peter", "Peter"]}, {"answer": "st._peter_the_apostle", "hint": "synonyms for st. peter the apostle", "clues": ["Simon Peter", "Saint Peter", "Saint Peter the Apostle", "St. Peter", "Peter"]}, {"answer": "st._petersburg", "hint": "synonyms for st. petersburg", "clues": ["Peterburg", "St. Petersburg", "Leningrad", "Petrograd"]}, {"answer": "st._simon", "hint": "synonyms for st. simon", "clues": ["Simon", "Simon Zelotes", "St. Simon", "Simon the Canaanite", "Simon the Zealot"]}, {"answer": "st._thomas", "hint": "synonyms for st. thomas", "clues": ["Saint Thomas Aquinas", "Thomas Aquinas", "Thomas the doubting Apostle", "Thomas", "doubting Thomas", "Saint Thomas", "St. Thomas", "Aquinas"]}, {"answer": "st._thomas_aquinas", "hint": "synonyms for st. thomas aquinas", "clues": ["Saint Thomas Aquinas", "Saint Thomas", "Thomas Aquinas", "St. Thomas", "Aquinas"]}, {"answer": "st_john's_eve", "hint": "synonyms for st john's eve", "clues": ["June 23", "St John's Night", "St John's Eve", "Midsummer Night", "Midsummer Eve"]}, {"answer": "st_john's_night", "hint": "synonyms for st john's night", "clues": ["June 23", "St John's Night", "St John's Eve", "Midsummer Night", "Midsummer Eve"]}, {"answer": "stab", "hint": "synonyms for stab", "clues": ["shot", "twinge", "pang", "knife thrust", "thrust", "stab"]}, {"answer": "stableboy", "hint": "synonyms for stableboy", "clues": ["stableman", "groom", "ostler", "stableboy"]}, {"answer": "stableman", "hint": "synonyms for stableman", "clues": ["groom", "ostler", "stableboy", "stableman"]}, {"answer": "stack", "hint": "synonyms for stack", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "push-down list", "deal", "mountain", "pot", "push-down storage", "good deal", "passel", "mass", "pile", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "push-down stack", "wad", "heap", "mickle", "smokestack", "flock", "stack"]}, {"answer": "stacks", "hint": "synonyms for stacks", "clues": ["mint", "peck", "quite a little", "tons", "deal", "mountain", "gobs", "rafts", "push-down storage", "stack", "lot", "slews", "heaps", "batch", "mess", "wads", "plenty", "sight", "muckle", "mickle", "mass", "loads", "piles", "great deal", "hatful", "push-down list", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "scads", "scores", "push-down stack", "smokestack", "flock"]}, {"answer": "stage", "hint": "synonyms for stage", "clues": ["leg", "level", "phase", "microscope stage", "point", "degree", "stagecoach", "stage"]}, {"answer": "stager", "hint": "synonyms for stager", "clues": ["old hand", "stage manager", "old stager", "oldtimer", "veteran", "warhorse", "stager"]}, {"answer": "stagger_head", "hint": "synonyms for stagger head", "clues": ["drop line", "staggered head", "stephead", "stepped line"]}, {"answer": "staggered_head", "hint": "synonyms for staggered head", "clues": ["drop line", "stagger head", "stephead", "stepped line"]}, {"answer": "staggers", "hint": "synonyms for staggers", "clues": ["stagger", "stumble", "lurch", "blind staggers"]}, {"answer": "stain", "hint": "synonyms for stain", "clues": ["soil", "smear", "grime", "stigma", "mark", "blot", "spot", "grease", "brand", "grunge", "smirch", "discolouration", "dirt", "filth", "stain"]}, {"answer": "stake", "hint": "synonyms for stake", "clues": ["bet", "stakes", "wager", "post", "interest"]}, {"answer": "stakes", "hint": "synonyms for stakes", "clues": ["bet", "wager", "interest", "stake", "post"]}, {"answer": "stalemate", "hint": "synonyms for stalemate", "clues": ["standstill", "impasse", "deadlock", "dead end", "stalemate"]}, {"answer": "stalin_peak", "hint": "synonyms for stalin peak", "clues": ["Stalin Peak", "Mount Garmo", "Communism Peak", "Mount Communism"]}, {"answer": "stalinabad", "hint": "synonyms for stalinabad", "clues": ["Stalinabad", "Dusanbe", "Dyushambe", "capital of Tajikistan"]}, {"answer": "stalinism", "hint": "synonyms for stalinism", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "dictatorship", "tyranny", "authoritarianism", "absolutism"]}, {"answer": "stalk", "hint": "synonyms for stalk", "clues": ["stalking", "stubble", "angry walk", "straw", "chaff", "shuck", "still hunt", "husk"]}, {"answer": "stall", "hint": "synonyms for stall", "clues": ["sales booth", "cubicle", "carrell", "kiosk", "stand", "booth", "stalling"]}, {"answer": "stalls", "hint": "synonyms for stalls", "clues": ["sales booth", "horse barn", "stall", "stable", "booth", "cubicle", "carrell", "kiosk", "stand"]}, {"answer": "stamp", "hint": "synonyms for stamp", "clues": ["pestle", "postage", "tender", "seal", "mold", "impression", "postage stamp", "cast", "revenue stamp", "legal tender", "stamp"]}, {"answer": "stamping_ground", "hint": "synonyms for stamping ground", "clues": ["haunt", "hangout", "repair", "resort", "stamping ground"]}, {"answer": "stan_musial", "hint": "synonyms for stan musial", "clues": ["Stan the Man", "Musial", "Stan Musial", "Stanley Frank Musial"]}, {"answer": "stan_the_man", "hint": "synonyms for stan the man", "clues": ["Stan the Man", "Musial", "Stan Musial", "Stanley Frank Musial"]}, {"answer": "stand", "hint": "synonyms for stand", "clues": ["base", "point of view", "sales booth", "viewpoint", "stall", "bandstand", "outdoor stage", "standstill", "rack", "pedestal", "tie-up", "standpoint", "stand"]}, {"answer": "stand-in", "hint": "synonyms for stand-in", "clues": ["backup", "fill-in", "substitute", "relief", "reliever", "backup man", "stand-in"]}, {"answer": "standstill", "hint": "synonyms for standstill", "clues": ["deadlock", "dead end", "stand", "tie-up", "impasse", "stalemate", "standstill"]}, {"answer": "stanislavsky", "hint": "synonyms for stanislavsky", "clues": ["Stanislavsky", "Konstantin Sergeevich Alekseev", "Konstantin Sergeyevich Stanislavsky", "Konstantin Stanislavsky"]}, {"answer": "stanley", "hint": "synonyms for stanley", "clues": ["Sir Henry Morton Stanley", "Henry M. Stanley", "John Rowlands", "Stanley", "Francis Edgar Stanley"]}, {"answer": "stanley_frank_musial", "hint": "synonyms for stanley frank musial", "clues": ["Stan the Man", "Musial", "Stan Musial", "Stanley Frank Musial"]}, {"answer": "stanley_smith_stevens", "hint": "synonyms for stanley smith stevens", "clues": ["S. Smith Stevens", "Stevens", "Stanley Smith Stevens", "Smitty Stevens"]}, {"answer": "star-spangled_banner", "hint": "synonyms for star-spangled banner", "clues": ["Stars and Stripes", "Old Glory", "American flag", "Star-Spangled Banner"]}, {"answer": "star_of_david", "hint": "synonyms for star of david", "clues": ["Mogen David", "Shield of David", "Solomon's seal", "Star of David"]}, {"answer": "star_sign", "hint": "synonyms for star sign", "clues": ["sign of the zodiac", "planetary house", "mansion", "sign", "house", "star sign"]}, {"answer": "starkey", "hint": "synonyms for starkey", "clues": ["Richard Starkey", "Ringo Starr", "Starr", "Starkey"]}, {"answer": "starr", "hint": "synonyms for starr", "clues": ["Richard Starkey", "Ringo Starr", "Starr", "Starkey"]}, {"answer": "stars_and_stripes", "hint": "synonyms for stars and stripes", "clues": ["Stars and Stripes", "Old Glory", "American flag", "Star-Spangled Banner"]}, {"answer": "start", "hint": "synonyms for start", "clues": ["jump", "showtime", "startle", "outset", "scratch line", "offset", "get-go", "starting", "head start", "scratch", "starting line", "starting signal", "starting time", "kickoff", "beginning", "commencement", "first"]}, {"answer": "starter", "hint": "synonyms for starter", "clues": ["dispatcher", "starter motor", "crank", "entrant", "fledgeling", "freshman", "appetizer", "neophyte", "newcomer", "newbie", "starting motor", "starter"]}, {"answer": "starting_time", "hint": "synonyms for starting time", "clues": ["showtime", "outset", "start", "offset", "get-go", "kickoff", "beginning", "commencement", "first", "starting time"]}, {"answer": "stat_mi", "hint": "synonyms for stat mi", "clues": ["land mile", "mile", "statute mile", "mi", "international mile", "stat mi"]}, {"answer": "state", "hint": "synonyms for state", "clues": ["body politic", "res publica", "state of matter", "United States Department of State", "province", "nation", "country", "commonwealth", "State Department", "State", "land", "DoS", "Department of State"]}, {"answer": "state_department", "hint": "synonyms for state department", "clues": ["State", "United States Department of State", "Department of State", "DoS", "State Department"]}, {"answer": "state_highway", "hint": "synonyms for state highway", "clues": ["motorway", "thruway", "pike", "freeway", "superhighway", "throughway", "expressway", "state highway"]}, {"answer": "state_of_israel", "hint": "synonyms for state of israel", "clues": ["Sion", "Zion", "State of Israel", "Israel"]}, {"answer": "statement", "hint": "synonyms for statement", "clues": ["affirmation", "program line", "assertion", "argument", "financial statement", "instruction", "command", "statement"]}, {"answer": "station_waggon", "hint": "synonyms for station waggon", "clues": ["beach waggon", "station wagon", "estate car", "waggon"]}, {"answer": "station_wagon", "hint": "synonyms for station wagon", "clues": ["beach wagon", "estate car", "waggon", "station waggon"]}, {"answer": "stations", "hint": "synonyms for stations", "clues": ["Stations", "post", "Stations of the Cross", "place"]}, {"answer": "statute_mile", "hint": "synonyms for statute mile", "clues": ["land mile", "mile", "mi", "international mile", "stat mi", "statute mile"]}, {"answer": "stave", "hint": "synonyms for stave", "clues": ["staff", "lag", "round", "rung", "stave"]}, {"answer": "stay", "hint": "synonyms for stay", "clues": ["halt", "hitch", "stoppage", "arrest", "check", "stop", "stay"]}, {"answer": "stays", "hint": "synonyms for stays", "clues": ["halt", "hitch", "stay", "stop", "corset", "stoppage", "arrest", "girdle", "check"]}, {"answer": "std", "hint": "synonyms for std", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "Doctor of Sacred Theology", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "stealing", "hint": "synonyms for stealing", "clues": ["larceny", "theft", "thievery", "stealth", "thieving", "stealing"]}, {"answer": "steam_bath", "hint": "synonyms for steam bath", "clues": ["vapour bath", "steam room", "Turkish bath", "steam bath"]}, {"answer": "steamer", "hint": "synonyms for steamer", "clues": ["soft-shell clam", "steamer clam", "long-neck clam", "steamship", "steamer"]}, {"answer": "steaminess", "hint": "synonyms for steaminess", "clues": ["vaporousness", "haziness", "mistiness", "steaminess"]}, {"answer": "steer", "hint": "synonyms for steer", "clues": ["lead", "confidential information", "hint", "wind", "tip", "steer"]}, {"answer": "steinert's_disease", "hint": "synonyms for steinert's disease", "clues": ["myotonic dystrophy", "Steinert's disease", "myotonic muscular dystrophy", "myotonia atrophica"]}, {"answer": "stem", "hint": "synonyms for stem", "clues": ["base", "radical", "root", "shank", "stem turn", "root word", "bow", "fore", "prow", "theme", "stem"]}, {"answer": "stemma", "hint": "synonyms for stemma", "clues": ["blood line", "lineage", "simple eye", "blood", "ocellus", "line", "line of descent", "ancestry", "parentage", "origin", "descent", "pedigree", "stock", "stemma"]}, {"answer": "stench", "hint": "synonyms for stench", "clues": ["fetor", "stink", "mephitis", "malodour", "reek", "stench"]}, {"answer": "step", "hint": "synonyms for step", "clues": ["stair", "pace", "gradation", "footfall", "whole tone", "measure", "footmark", "tone", "whole step", "dance step", "stone's throw", "footprint", "footstep", "stride", "step"]}, {"answer": "stephead", "hint": "synonyms for stephead", "clues": ["drop line", "stagger head", "stepped line", "stephead"]}, {"answer": "stephen_grover_cleveland", "hint": "synonyms for stephen grover cleveland", "clues": ["Cleveland", "Stephen Grover Cleveland", "President Cleveland", "Grover Cleveland"]}, {"answer": "stepped_line", "hint": "synonyms for stepped line", "clues": ["drop line", "stagger head", "stephead", "stepped line"]}, {"answer": "steps", "hint": "synonyms for steps", "clues": ["step", "stair", "pace", "gradation", "footfall", "whole tone", "measure", "footmark", "tone", "whole step", "dance step", "stone's throw", "footprint", "footstep", "stride"]}, {"answer": "sterility", "hint": "synonyms for sterility", "clues": ["infertility", "asepsis", "sterileness", "antisepsis", "sterility"]}, {"answer": "stetson", "hint": "synonyms for stetson", "clues": ["homburg", "fedora", "Stetson", "felt hat", "trilby"]}, {"answer": "stevedore", "hint": "synonyms for stevedore", "clues": ["longshoreman", "docker", "dockhand", "dock-walloper", "dockworker", "loader", "lumper", "stevedore"]}, {"answer": "stevens", "hint": "synonyms for stevens", "clues": ["Stanley Smith Stevens", "Wallace Stevens", "George Stevens", "Smitty Stevens", "S. Smith Stevens", "Stevens"]}, {"answer": "stevenson", "hint": "synonyms for stevenson", "clues": ["Adlai Stevenson", "Stevenson", "Robert Louis Balfour Stevenson", "Robert Louis Stevenson", "Adlai Ewing Stevenson"]}, {"answer": "stew", "hint": "synonyms for stew", "clues": ["swither", "sweat", "lather", "fret", "stew"]}, {"answer": "steward", "hint": "synonyms for steward", "clues": ["keeper", "flight attendant", "shop steward", "custodian", "steward"]}, {"answer": "stewart", "hint": "synonyms for stewart", "clues": ["James Maitland Stewart", "Dugald Stewart", "Jimmy Stewart", "Stewart"]}, {"answer": "sth", "hint": "synonyms for sth", "clues": ["somatotrophin", "somatotrophic hormone", "STH", "human growth hormone", "growth hormone"]}, {"answer": "stick", "hint": "synonyms for stick", "clues": ["marijuana cigarette", "control stick", "joystick", "pin", "peg", "joint", "reefer", "spliff", "stick"]}, {"answer": "sticker", "hint": "synonyms for sticker", "clues": ["paster", "stumper", "toughie", "poser", "gummed label", "dagger", "sticker"]}, {"answer": "stiffness", "hint": "synonyms for stiffness", "clues": ["severity", "awkwardness", "harshness", "gracelessness", "rigour", "inclemency", "rigorousness", "clumsiness", "hardness", "severeness", "stiffness"]}, {"answer": "stigmata", "hint": "synonyms for stigmata", "clues": ["stigma", "mark", "stain", "brand"]}, {"answer": "stillness", "hint": "synonyms for stillness", "clues": ["hush", "still", "lifelessness", "motionlessness", "windlessness", "stillness"]}, {"answer": "stilwell", "hint": "synonyms for stilwell", "clues": ["Uncle Joe", "Stilwell", "Joseph Warren Stilwell", "Vinegar Joe Stilwell"]}, {"answer": "stimulation", "hint": "synonyms for stimulation", "clues": ["stimulus", "stimulant", "arousal", "foreplay", "input", "stimulation"]}, {"answer": "sting", "hint": "synonyms for sting", "clues": ["confidence trick", "con", "stinging", "insect bite", "pang", "bite", "con game", "bunko game", "flimflam", "bunco", "gyp", "bunko", "confidence game", "hustle"]}, {"answer": "stink", "hint": "synonyms for stink", "clues": ["fetor", "mephitis", "malodour", "stench", "reek", "stink"]}, {"answer": "stinker", "hint": "synonyms for stinker", "clues": ["bum", "so-and-so", "crumb", "stinkpot", "scum bag", "rat", "dirty dog", "lowlife", "puke", "rotter", "skunk", "lemon", "git", "stinker"]}, {"answer": "stinkiness", "hint": "synonyms for stinkiness", "clues": ["malodorousness", "rankness", "fetidness", "foulness", "stinkiness"]}, {"answer": "stinkpot", "hint": "synonyms for stinkpot", "clues": ["bum", "so-and-so", "crumb", "scum bag", "rat", "dirty dog", "lowlife", "stinker", "puke", "rotter", "skunk", "git", "stinkpot"]}, {"answer": "stipulation", "hint": "synonyms for stipulation", "clues": ["condition", "specification", "judicial admission", "stipulation"]}, {"answer": "stir", "hint": "synonyms for stir", "clues": ["bustle", "hustle", "splash", "ado", "fuss", "flurry", "stir"]}, {"answer": "stochastic_variable", "hint": "synonyms for stochastic variable", "clues": ["variant", "random variable", "chance variable", "stochastic variable"]}, {"answer": "stocks", "hint": "synonyms for stocks", "clues": ["lineage", "blood", "neckcloth", "stemma", "line", "line of descent", "parentage", "broth", "origin", "descent", "strain", "stock", "pedigree", "breed", "bloodline", "fund", "inventory", "stock certificate", "ancestry", "store", "gunstock"]}, {"answer": "stokes-adams_syndrome", "hint": "synonyms for stokes-adams syndrome", "clues": ["heart block", "Adams-Stokes syndrome", "atrioventricular block", "Stokes-Adams syndrome"]}, {"answer": "stolidity", "hint": "synonyms for stolidity", "clues": ["emotionlessness", "phlegm", "stolidness", "unemotionality", "indifference", "impassivity", "stoicism", "impassiveness", "stolidity"]}, {"answer": "stomach", "hint": "synonyms for stomach", "clues": ["abdomen", "belly", "breadbasket", "venter", "tum", "tummy", "stomach"]}, {"answer": "stonewall_jackson", "hint": "synonyms for stonewall jackson", "clues": ["Thomas J. Jackson", "Jackson", "Thomas Jonathan Jackson", "Stonewall Jackson"]}, {"answer": "stooge", "hint": "synonyms for stooge", "clues": ["goat", "flunky", "yes-man", "laughingstock", "butt", "stooge"]}, {"answer": "stool", "hint": "synonyms for stool", "clues": ["ordure", "toilet", "faecal matter", "feces", "pot", "BM", "dejection", "potty", "commode", "throne", "can", "crapper", "stool"]}, {"answer": "stool_pigeon", "hint": "synonyms for stool pigeon", "clues": ["sneaker", "snitcher", "stoolpigeon", "stoolie", "sneak", "fink", "canary"]}, {"answer": "stoolie", "hint": "synonyms for stoolie", "clues": ["sneaker", "stool pigeon", "snitcher", "sneak", "fink", "canary", "stoolie"]}, {"answer": "stoolpigeon", "hint": "synonyms for stoolpigeon", "clues": ["sneaker", "stool pigeon", "snitcher", "stoolie", "sneak", "fink", "canary"]}, {"answer": "stop", "hint": "synonyms for stop", "clues": ["full point", "plosive speech sound", "halt", "hitch", "plosive", "plosive consonant", "occlusion", "diaphragm", "layover", "catch", "stoppage", "full stop", "point", "occlusive", "block", "closure", "period", "stay", "stopover", "arrest", "stop consonant", "blockage", "check", "stop"]}, {"answer": "stop_consonant", "hint": "synonyms for stop consonant", "clues": ["plosive speech sound", "plosive", "occlusive", "plosive consonant", "stop", "stop consonant"]}, {"answer": "stoppage", "hint": "synonyms for stoppage", "clues": ["halt", "hitch", "occlusion", "block", "closure", "stop", "stay", "arrest", "blockage", "check", "stoppage"]}, {"answer": "stopper", "hint": "synonyms for stopper", "clues": ["showstopper", "plug", "stopple", "conversation stopper"]}, {"answer": "stopping_point", "hint": "synonyms for stopping point", "clues": ["finale", "conclusion", "close", "finish", "last", "stopping point"]}, {"answer": "stops", "hint": "synonyms for stops", "clues": ["Newmarket", "plosive speech sound", "halt", "hitch", "plosive", "full point", "plosive consonant", "occlusion", "diaphragm", "Michigan", "layover", "catch", "stoppage", "full stop", "point", "occlusive", "block", "closure", "period", "stop", "stay", "stopover", "arrest", "stop consonant", "boodle", "blockage", "Chicago", "check"]}, {"answer": "storage", "hint": "synonyms for storage", "clues": ["warehousing", "memory", "store", "computer storage", "memory board", "storehouse", "entrepot", "computer memory", "reposition", "depot", "storage"]}, {"answer": "storage_area", "hint": "synonyms for storage area", "clues": ["cargo area", "cargo deck", "cargo hold", "hold", "storage area"]}, {"answer": "store", "hint": "synonyms for store", "clues": ["fund", "memory", "computer storage", "memory board", "storage", "shop", "computer memory", "entrepot", "stock", "storehouse", "depot", "store"]}, {"answer": "storehouse", "hint": "synonyms for storehouse", "clues": ["depot", "storage", "entrepot", "store", "storehouse"]}, {"answer": "storm_lamp", "hint": "synonyms for storm lamp", "clues": ["hurricane lamp", "tornado lantern", "hurricane lantern", "storm lantern", "storm lamp"]}, {"answer": "storm_lantern", "hint": "synonyms for storm lantern", "clues": ["hurricane lamp", "storm lamp", "hurricane lantern", "tornado lantern", "storm lantern"]}, {"answer": "story", "hint": "synonyms for story", "clues": ["news report", "write up", "narration", "narrative", "chronicle", "level", "report", "fib", "tale", "tarradiddle", "floor", "account", "history", "storey"]}, {"answer": "storyteller", "hint": "synonyms for storyteller", "clues": ["narrator", "fabricator", "fibber", "teller", "storyteller"]}, {"answer": "stoutness", "hint": "synonyms for stoutness", "clues": ["corpulence", "stalwartness", "overweight", "adiposis", "stoutness"]}, {"answer": "stove", "hint": "synonyms for stove", "clues": ["kitchen range", "range", "cooking stove", "kitchen stove", "stove"]}, {"answer": "stovepipe", "hint": "synonyms for stovepipe", "clues": ["high hat", "silk hat", "top hat", "beaver", "opera hat", "topper", "dress hat", "stovepipe"]}, {"answer": "straightness", "hint": "synonyms for straightness", "clues": ["heterosexuality", "good faith", "directness", "straightness"]}, {"answer": "strain", "hint": "synonyms for strain", "clues": ["stress", "form", "melodic phrase", "line", "var.", "straining", "song", "striving", "breed", "stock", "nisus", "melody", "air", "mental strain", "nervous strain", "tune", "tenor", "variant", "pains", "melodic line"]}, {"answer": "straits", "hint": "synonyms for straits", "clues": ["pass", "head", "sound", "strait"]}, {"answer": "strand", "hint": "synonyms for strand", "clues": ["Strand", "chain", "fibril", "filament", "string"]}, {"answer": "strangler", "hint": "synonyms for strangler", "clues": ["garroter", "throttler", "choker", "strangler"]}, {"answer": "stratagem", "hint": "synonyms for stratagem", "clues": ["contrivance", "ploy", "dodge", "gambit", "stratagem"]}, {"answer": "stratum", "hint": "synonyms for stratum", "clues": ["layer", "socio-economic class", "level", "class", "social class", "stratum"]}, {"answer": "strauss", "hint": "synonyms for strauss", "clues": ["Richard Strauss", "Strauss the Elder", "Johann Strauss", "Strauss", "Strauss the Younger"]}, {"answer": "straw_hat", "hint": "synonyms for straw hat", "clues": ["skimmer", "sailor", "leghorn", "boater", "Panama hat", "Panama", "straw hat"]}, {"answer": "straw_man", "hint": "synonyms for straw man", "clues": ["strawman", "nominal head", "front man", "front", "scarer", "scarecrow", "figurehead", "bird-scarer"]}, {"answer": "strawman", "hint": "synonyms for strawman", "clues": ["nominal head", "front man", "front", "scarer", "straw man", "scarecrow", "figurehead", "bird-scarer"]}, {"answer": "streamer", "hint": "synonyms for streamer", "clues": ["banner", "pennant", "pennon", "waft", "streamer"]}, {"answer": "streamlet", "hint": "synonyms for streamlet", "clues": ["rill", "runnel", "run", "rivulet", "streamlet"]}, {"answer": "street_girl", "hint": "synonyms for street girl", "clues": ["hustler", "floozy", "hooker", "floozie", "streetwalker", "slattern", "street girl"]}, {"answer": "street_organ", "hint": "synonyms for street organ", "clues": ["grind organ", "barrel organ", "hurdy-gurdy", "hand organ", "street organ"]}, {"answer": "streetcar", "hint": "synonyms for streetcar", "clues": ["tramcar", "trolley car", "tram", "trolley", "streetcar"]}, {"answer": "streetwalker", "hint": "synonyms for streetwalker", "clues": ["hustler", "floozy", "hooker", "floozie", "slattern", "street girl", "streetwalker"]}, {"answer": "strength", "hint": "synonyms for strength", "clues": ["long suit", "strong point", "enduringness", "persuasiveness", "effectiveness", "forcefulness", "military posture", "durability", "intensity", "lastingness", "military capability", "potency", "posture", "military strength", "intensity level", "speciality", "strong suit", "force", "forte", "metier", "strength"]}, {"answer": "strep_throat", "hint": "synonyms for strep throat", "clues": ["septic sore throat", "streptococcus tonsilitis", "streptococcal sore throat", "throat infection", "strep throat"]}, {"answer": "streptococcal_sore_throat", "hint": "synonyms for streptococcal sore throat", "clues": ["septic sore throat", "streptococcus tonsilitis", "strep throat", "throat infection", "streptococcal sore throat"]}, {"answer": "streptococcus_tonsilitis", "hint": "synonyms for streptococcus tonsilitis", "clues": ["septic sore throat", "strep throat", "streptococcal sore throat", "throat infection", "streptococcus tonsilitis"]}, {"answer": "stress", "hint": "synonyms for stress", "clues": ["accent", "tension", "focus", "tenseness", "emphasis", "strain", "stress"]}, {"answer": "striate_area", "hint": "synonyms for striate area", "clues": ["striate cortex", "first visual area", "area 17 of Brodmann", "Brodmann's area 17", "striate area"]}, {"answer": "striate_cortex", "hint": "synonyms for striate cortex", "clues": ["first visual area", "area 17 of Brodmann", "striate area", "Brodmann's area 17", "striate cortex"]}, {"answer": "stride", "hint": "synonyms for stride", "clues": ["step", "pace", "tread", "footstep", "stride"]}, {"answer": "strike", "hint": "synonyms for strike", "clues": ["rap", "smasher", "hit", "tap", "work stoppage", "smash", "bang", "ten-strike", "strike"]}, {"answer": "string", "hint": "synonyms for string", "clues": ["drawstring", "chain", "bowed stringed instrument", "cosmic string", "train", "strand", "drawing string", "twine", "string"]}, {"answer": "string_bass", "hint": "synonyms for string bass", "clues": ["double bass", "bass fiddle", "bull fiddle", "contrabass", "bass viol", "string bass"]}, {"answer": "strings", "hint": "synonyms for strings", "clues": ["bowed stringed instrument", "cosmic string", "string", "train", "drawing string", "drawstring", "chain", "string section", "strand", "twine"]}, {"answer": "strip", "hint": "synonyms for strip", "clues": ["landing strip", "slip", "flight strip", "funnies", "striptease", "strip show", "cartoon strip", "comic strip", "airstrip", "strip"]}, {"answer": "stripe", "hint": "synonyms for stripe", "clues": ["streak", "band", "grade insignia", "stripes", "bar", "chevron"]}, {"answer": "stripes", "hint": "synonyms for stripes", "clues": ["band", "stripe", "grade insignia", "streak", "bar", "chevron"]}, {"answer": "stripper", "hint": "synonyms for stripper", "clues": ["stemmer", "striptease", "ecdysiast", "sprigger", "peeler", "striptease artist", "exotic dancer", "stripper well", "stripper"]}, {"answer": "stripping", "hint": "synonyms for stripping", "clues": ["husking", "denudation", "baring", "uncovering", "stripping"]}, {"answer": "striptease", "hint": "synonyms for striptease", "clues": ["stripper", "ecdysiast", "stripteaser", "peeler", "strip show", "striptease artist", "exotic dancer", "strip"]}, {"answer": "striptease_artist", "hint": "synonyms for striptease artist", "clues": ["stripper", "ecdysiast", "stripteaser", "peeler", "exotic dancer", "striptease artist"]}, {"answer": "stripteaser", "hint": "synonyms for stripteaser", "clues": ["stripper", "ecdysiast", "peeler", "striptease artist", "exotic dancer", "striptease"]}, {"answer": "stroke", "hint": "synonyms for stroke", "clues": ["throw", "shot", "cerebrovascular accident", "virgule", "separatrix", "fortuity", "chance event", "apoplexy", "accident", "slash", "solidus", "CVA", "stroking", "diagonal", "cam stroke", "stroke"]}, {"answer": "stroll", "hint": "synonyms for stroll", "clues": ["amble", "promenade", "saunter", "perambulation", "stroll"]}, {"answer": "stroller", "hint": "synonyms for stroller", "clues": ["perambulator", "saunterer", "pusher", "carriage", "pushchair", "baby carriage", "baby buggy", "pram", "go-cart", "ambler", "stroller"]}, {"answer": "strong-armer", "hint": "synonyms for strong-armer", "clues": ["hoodlum", "toughie", "punk", "thug", "goon", "tough", "hood", "strong-armer"]}, {"answer": "strong_drink", "hint": "synonyms for strong drink", "clues": ["John Barleycorn", "hard drink", "liquor", "booze", "spirits", "hard liquor", "strong drink"]}, {"answer": "strong_point", "hint": "synonyms for strong point", "clues": ["long suit", "speciality", "strength", "strong suit", "forte", "metier", "strong point"]}, {"answer": "strong_suit", "hint": "synonyms for strong suit", "clues": ["long suit", "strong point", "strength", "speciality", "forte", "metier", "strong suit"]}, {"answer": "structure", "hint": "synonyms for structure", "clues": ["anatomical structure", "social system", "body structure", "complex body part", "social structure", "construction", "social organisation", "structure"]}, {"answer": "struma", "hint": "synonyms for struma", "clues": ["king's evil", "goitre", "scrofula", "thyromegaly", "goiter", "struma"]}, {"answer": "strumpet", "hint": "synonyms for strumpet", "clues": ["slut", "hussy", "trollop", "adulteress", "loose woman", "jade", "fornicatress", "strumpet"]}, {"answer": "stub", "hint": "synonyms for stub", "clues": ["nub", "counterfoil", "butt", "ticket stub", "check stub", "stub"]}, {"answer": "stubble", "hint": "synonyms for stubble", "clues": ["stalk", "straw", "chaff", "shuck", "husk", "stubble"]}, {"answer": "stubbornness", "hint": "synonyms for stubbornness", "clues": ["self-will", "mulishness", "bullheadedness", "obstinance", "pigheadedness", "obstinacy", "stubbornness"]}, {"answer": "stud", "hint": "synonyms for stud", "clues": ["stud poker", "rivet", "he-man", "macho-man", "scantling", "stud"]}, {"answer": "student", "hint": "synonyms for student", "clues": ["bookman", "scholar", "scholarly person", "pupil", "educatee", "student"]}, {"answer": "student_residence", "hint": "synonyms for student residence", "clues": ["dorm", "dormitory", "hall", "residence hall", "student residence"]}, {"answer": "study", "hint": "synonyms for study", "clues": ["field of study", "survey", "work", "subject field", "field", "written report", "report", "sketch", "cogitation", "subject", "discipline", "bailiwick", "subject area", "study"]}, {"answer": "stuff", "hint": "synonyms for stuff", "clues": ["hooey", "material", "poppycock", "stuff and nonsense", "clobber", "stuff"]}, {"answer": "stultification", "hint": "synonyms for stultification", "clues": ["befooling", "deadening", "constipation", "impairment", "stultification"]}, {"answer": "stumble", "hint": "synonyms for stumble", "clues": ["misstep", "stagger", "trip", "trip-up", "lurch", "stumble"]}, {"answer": "stumblebum", "hint": "synonyms for stumblebum", "clues": ["clod", "lump", "palooka", "lubber", "gawk", "oaf", "lout", "goon", "lummox", "stumblebum"]}, {"answer": "stumbler", "hint": "synonyms for stumbler", "clues": ["bumbler", "bungler", "tripper", "butcher", "fuckup", "blunderer", "sad sack", "stumbler"]}, {"answer": "stump", "hint": "synonyms for stump", "clues": ["pulpit", "podium", "dais", "ambo", "soapbox", "rostrum", "stump"]}, {"answer": "stunner", "hint": "synonyms for stunner", "clues": ["ravisher", "looker", "smasher", "knockout", "peach", "mantrap", "sweetheart", "dish", "beauty", "lulu", "stunner"]}, {"answer": "stupe", "hint": "synonyms for stupe", "clues": ["pudding head", "poor fish", "dullard", "stupid person", "pudden-head", "dolt", "stupid", "pillock", "stupe"]}, {"answer": "stupid_person", "hint": "synonyms for stupid person", "clues": ["pudding head", "poor fish", "dullard", "pudden-head", "dolt", "stupe", "stupid", "pillock", "stupid person"]}, {"answer": "stupidity", "hint": "synonyms for stupidity", "clues": ["imbecility", "foolishness", "betise", "folly", "stupidity"]}, {"answer": "stupor", "hint": "synonyms for stupor", "clues": ["stupefaction", "daze", "semiconsciousness", "shock", "grogginess", "stupor"]}, {"answer": "sty", "hint": "synonyms for sty", "clues": ["stye", "pigpen", "pigsty", "eye infection", "hordeolum"]}, {"answer": "style", "hint": "synonyms for style", "clues": ["trend", "flair", "stylus", "elan", "way", "dash", "manner", "mode", "vogue", "fashion", "expressive style", "panache", "style"]}, {"answer": "stylishness", "hint": "synonyms for stylishness", "clues": ["smartness", "chic", "swank", "last word", "chichi", "chicness", "modishness", "stylishness"]}, {"answer": "sub", "hint": "synonyms for sub", "clues": ["Italian sandwich", "pigboat", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "hoagie", "Cuban sandwich", "U-boat", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "sub"]}, {"answer": "subacute_inclusion_body_encephalitis", "hint": "synonyms for subacute inclusion body encephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "inclusion body encephalitis"]}, {"answer": "subacute_sclerosing_leukoencephalitis", "hint": "synonyms for subacute sclerosing leukoencephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "subacute_sclerosing_panencephalitis", "hint": "synonyms for subacute sclerosing panencephalitis", "clues": ["Dawson's encephalitis", "SSPE", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis", "subacute sclerosing panencephalitis"]}, {"answer": "subdivision", "hint": "synonyms for subdivision", "clues": ["branch", "section", "subsection", "arm", "subdivision"]}, {"answer": "subject_area", "hint": "synonyms for subject area", "clues": ["bailiwick", "field of study", "subject field", "study", "field", "subject", "discipline", "subject area"]}, {"answer": "subject_field", "hint": "synonyms for subject field", "clues": ["bailiwick", "field of study", "study", "field", "subject area", "subject", "discipline", "subject field"]}, {"answer": "subjugation", "hint": "synonyms for subjugation", "clues": ["oppression", "subjection", "conquering", "conquest", "subjugation"]}, {"answer": "submarine_sandwich", "hint": "synonyms for submarine sandwich", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "zep", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "hero sandwich", "submarine sandwich"]}, {"answer": "submaxilla", "hint": "synonyms for submaxilla", "clues": ["jawbone", "mandible", "mandibular bone", "lower jaw", "lower jawbone", "mandibula", "jowl", "submaxilla"]}, {"answer": "submersion", "hint": "synonyms for submersion", "clues": ["ducking", "immersion", "dousing", "submergence", "submerging", "submersion"]}, {"answer": "subnormality", "hint": "synonyms for subnormality", "clues": ["slowness", "retardation", "backwardness", "mental retardation", "subnormality"]}, {"answer": "subprogram", "hint": "synonyms for subprogram", "clues": ["routine", "subroutine", "function", "procedure", "subprogram"]}, {"answer": "subroutine", "hint": "synonyms for subroutine", "clues": ["routine", "subprogram", "function", "procedure", "subroutine"]}, {"answer": "subscriber", "hint": "synonyms for subscriber", "clues": ["endorser", "reader", "contributor", "ratifier", "subscriber"]}, {"answer": "subscriber_line", "hint": "synonyms for subscriber line", "clues": ["telephone circuit", "line", "phone line", "telephone line", "subscriber line"]}, {"answer": "subsidence", "hint": "synonyms for subsidence", "clues": ["remission", "subsiding", "cave in", "remittal", "settling", "subsidence"]}, {"answer": "substance", "hint": "synonyms for substance", "clues": ["marrow", "meaning", "means", "inwardness", "nitty-gritty", "center", "kernel", "nub", "heart", "core", "sum", "gist", "essence", "heart and soul", "centre", "meat", "content", "pith", "subject matter", "message", "substance"]}, {"answer": "substantiation", "hint": "synonyms for substantiation", "clues": ["confirmation", "proof", "verification", "validation", "check", "substantiation"]}, {"answer": "substitution", "hint": "synonyms for substitution", "clues": ["permutation", "transposition", "switch", "commutation", "replacement", "exchange", "substitution"]}, {"answer": "substructure", "hint": "synonyms for substructure", "clues": ["base", "fundament", "understructure", "foot", "infrastructure", "groundwork", "foundation", "substructure"]}, {"answer": "subtlety", "hint": "synonyms for subtlety", "clues": ["niceness", "shade", "refinement", "nicety", "nuance", "subtlety"]}, {"answer": "subway", "hint": "synonyms for subway", "clues": ["metro", "tube", "underpass", "underground", "subway system", "subway"]}, {"answer": "subway_system", "hint": "synonyms for subway system", "clues": ["metro", "tube", "subway", "underground", "subway system"]}, {"answer": "succession", "hint": "synonyms for succession", "clues": ["chronological sequence", "ecological succession", "successiveness", "taking over", "sequence", "succession"]}, {"answer": "successiveness", "hint": "synonyms for successiveness", "clues": ["succession", "chronological sequence", "chronological succession", "sequence", "successiveness"]}, {"answer": "succos", "hint": "synonyms for succos", "clues": ["Feast of Booths", "Tabernacles", "Feast of Tabernacles", "Sukkoth", "Succos", "Succoth"]}, {"answer": "succoth", "hint": "synonyms for succoth", "clues": ["Feast of Booths", "Tabernacles", "Feast of Tabernacles", "Sukkoth", "Succos", "Succoth"]}, {"answer": "sucker", "hint": "synonyms for sucker", "clues": ["soft touch", "fall guy", "mark", "lollipop", "mug", "all-day sucker", "gull", "patsy", "fool", "chump", "sucker"]}, {"answer": "suckling", "hint": "synonyms for suckling", "clues": ["Sir John Suckling", "Suckling", "nursling", "lactation"]}, {"answer": "sudation", "hint": "synonyms for sudation", "clues": ["sweating", "hidrosis", "diaphoresis", "perspiration", "sudation"]}, {"answer": "sudden_infant_death_syndrome", "hint": "synonyms for sudden infant death syndrome", "clues": ["SIDS", "cot death", "crib death", "infant death", "sudden infant death syndrome"]}, {"answer": "suddenness", "hint": "synonyms for suddenness", "clues": ["precipitateness", "precipitousness", "precipitance", "abruptness", "suddenness"]}, {"answer": "sugar", "hint": "synonyms for sugar", "clues": ["clams", "dinero", "bread", "lettuce", "carbohydrate", "dough", "moolah", "lucre", "pelf", "saccharide", "wampum", "kale", "refined sugar", "lolly", "simoleons", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "sugar"]}, {"answer": "sugar_ray_robinson", "hint": "synonyms for sugar ray robinson", "clues": ["Sugar Ray Robinson", "Walker Smith", "Ray Robinson", "Robinson"]}, {"answer": "suggestion", "hint": "synonyms for suggestion", "clues": ["trace", "hint", "proffer", "proposition", "hypnotism", "prompting", "mesmerism", "suggestion"]}, {"answer": "suisse", "hint": "synonyms for suisse", "clues": ["Swiss Confederation", "Schweiz", "Svizzera", "Switzerland", "Suisse"]}, {"answer": "suit", "hint": "synonyms for suit", "clues": ["causa", "courting", "lawsuit", "case", "courtship", "suit of clothes", "wooing", "suit"]}, {"answer": "suit_of_armor", "hint": "synonyms for suit of armor", "clues": ["body armour", "suit of armour", "coat of mail", "cataphract"]}, {"answer": "suit_of_armour", "hint": "synonyms for suit of armour", "clues": ["body armour", "coat of mail", "suit of armor", "cataphract"]}, {"answer": "suitcase", "hint": "synonyms for suitcase", "clues": ["travelling bag", "grip", "bag", "suitcase"]}, {"answer": "suite", "hint": "synonyms for suite", "clues": ["rooms", "cortege", "retinue", "entourage", "suite"]}, {"answer": "sukkoth", "hint": "synonyms for sukkoth", "clues": ["Feast of Booths", "Tabernacles", "Feast of Tabernacles", "Sukkoth", "Succos", "Succoth"]}, {"answer": "sulfur_mustard", "hint": "synonyms for sulfur mustard", "clues": ["mustard agent", "blistering agent", "dichloroethyl sulfide", "mustard gas", "sulfur mustard"]}, {"answer": "sulkiness", "hint": "synonyms for sulkiness", "clues": ["moroseness", "sourness", "sulk", "sullenness", "huffishness", "sulkiness"]}, {"answer": "sullenness", "hint": "synonyms for sullenness", "clues": ["moroseness", "sourness", "glumness", "sulkiness", "sullenness"]}, {"answer": "sullivan", "hint": "synonyms for sullivan", "clues": ["Arthur Sullivan", "Anne Sullivan", "Ed Sullivan", "Louis Henri Sullivan", "Sullivan", "Anne Mansfield Sullivan", "Louis Sullivan", "Arthur Seymour Sullivan", "Harry Stack Sullivan", "Edward Vincent Sullivan"]}, {"answer": "sully", "hint": "synonyms for sully", "clues": ["Duc de Sully", "Sully", "Maxmilien de Bethune", "Thomas Sully"]}, {"answer": "sultan_of_swat", "hint": "synonyms for sultan of swat", "clues": ["Ruth", "Babe Ruth", "Sultan of Swat", "George Herman Ruth"]}, {"answer": "sum", "hint": "synonyms for sum", "clues": ["marrow", "inwardness", "sum total", "nitty-gritty", "summation", "center", "join", "kernel", "nub", "amount", "heart", "sum of money", "total", "totality", "core", "aggregate", "gist", "essence", "heart and soul", "union", "centre", "amount of money", "meat", "substance", "pith", "sum"]}, {"answer": "summation", "hint": "synonyms for summation", "clues": ["sum", "summing up", "rundown", "addition", "sum total", "plus", "summation"]}, {"answer": "summersault", "hint": "synonyms for summersault", "clues": ["flip", "somersault", "somerset", "summerset"]}, {"answer": "summerset", "hint": "synonyms for summerset", "clues": ["flip", "somersault", "somerset", "summerset"]}, {"answer": "summit", "hint": "synonyms for summit", "clues": ["height", "crest", "peak", "meridian", "acme", "tiptop", "top", "tip", "crown", "summit meeting", "superlative", "pinnacle", "elevation", "summit"]}, {"answer": "sumptuousness", "hint": "synonyms for sumptuousness", "clues": ["opulence", "luxury", "sumptuosity", "luxuriousness", "lavishness", "sumptuousness"]}, {"answer": "sun", "hint": "synonyms for sun", "clues": ["sunshine", "sunlight", "Sun", "Lord's Day", "Sunday", "Dominicus"]}, {"answer": "sun_helmet", "hint": "synonyms for sun helmet", "clues": ["topee", "pith helmet", "pith hat", "topi", "sun helmet"]}, {"answer": "sun_lounge", "hint": "synonyms for sun lounge", "clues": ["sun parlor", "sun porch", "sunroom", "solarium", "sun lounge"]}, {"answer": "sun_parlor", "hint": "synonyms for sun parlor", "clues": ["sun lounge", "sun porch", "sunroom", "sun parlour", "solarium"]}, {"answer": "sun_parlour", "hint": "synonyms for sun parlour", "clues": ["sun parlor", "sun lounge", "sun porch", "sunroom", "solarium"]}, {"answer": "sun_porch", "hint": "synonyms for sun porch", "clues": ["sun parlor", "sun lounge", "sunroom", "sunporch", "solarium"]}, {"answer": "sunburn", "hint": "synonyms for sunburn", "clues": ["erythema solare", "burn", "suntan", "tan", "sunburn"]}, {"answer": "sunday", "hint": "synonyms for sunday", "clues": ["William Ashley Sunday", "Sun", "Lord's Day", "Sunday", "Billy Sunday", "Dominicus"]}, {"answer": "sunday_punch", "hint": "synonyms for sunday punch", "clues": ["Sunday punch", "knockout punch", "haymaker", "KO punch"]}, {"answer": "sunni", "hint": "synonyms for sunni", "clues": ["Sunni", "Sunnite", "Sunni Islam", "Sunni Muslim"]}, {"answer": "sunporch", "hint": "synonyms for sunporch", "clues": ["sun lounge", "sun porch", "sunroom", "sun parlor", "solarium"]}, {"answer": "sunroom", "hint": "synonyms for sunroom", "clues": ["sun parlor", "sun lounge", "sun porch", "solarium", "sunroom"]}, {"answer": "sunshine", "hint": "synonyms for sunshine", "clues": ["sunlight", "fair weather", "sunniness", "cheerfulness", "temperateness", "sun", "cheer", "sunshine"]}, {"answer": "sunshine_state", "hint": "synonyms for sunshine state", "clues": ["Sunshine State", "FL", "Florida", "Everglade State"]}, {"answer": "sunup", "hint": "synonyms for sunup", "clues": ["sunrise", "break of day", "dayspring", "daybreak", "aurora", "dawning", "first light", "morning", "cockcrow", "sunup"]}, {"answer": "suomi", "hint": "synonyms for suomi", "clues": ["Finnish", "Republic of Finland", "Finland", "Suomi"]}, {"answer": "super_acid", "hint": "synonyms for super acid", "clues": ["cat valium", "honey oil", "green", "super C", "jet", "special K", "K", "super acid"]}, {"answer": "super_c", "hint": "synonyms for super c", "clues": ["cat valium", "green", "super C", "special K", "super acid", "K", "honey oil", "jet"]}, {"answer": "superannuation", "hint": "synonyms for superannuation", "clues": ["retirement benefit", "retirement check", "retirement pension", "old-age pension", "retirement fund", "obsoleteness", "superannuation"]}, {"answer": "superhighway", "hint": "synonyms for superhighway", "clues": ["information superhighway", "motorway", "thruway", "pike", "freeway", "throughway", "state highway", "expressway", "superhighway"]}, {"answer": "superior_vocal_cord", "hint": "synonyms for superior vocal cord", "clues": ["vestibular fold", "ventricular fold", "false vocal fold", "superior vocal cord"]}, {"answer": "superiority", "hint": "synonyms for superiority", "clues": ["transcendence", "favorable position", "high quality", "superiority"]}, {"answer": "superman", "hint": "synonyms for superman", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "demigod", "dot", "back breaker", "battery-acid", "loony toons", "window pane", "acid", "Ubermensch", "superman"]}, {"answer": "supermex", "hint": "synonyms for supermex", "clues": ["Trevino", "Supermex", "Lee Buck Trevino", "Lee Trevino"]}, {"answer": "superpower", "hint": "synonyms for superpower", "clues": ["great power", "power", "world power", "major power", "superpower"]}, {"answer": "superstar", "hint": "synonyms for superstar", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "genius", "superstar"]}, {"answer": "supplement", "hint": "synonyms for supplement", "clues": ["appurtenance", "addendum", "supplementation", "postscript", "accessory", "add-on", "supplement"]}, {"answer": "suppleness", "hint": "synonyms for suppleness", "clues": ["pliability", "litheness", "pliancy", "lissomeness", "pliantness", "suppleness"]}, {"answer": "support", "hint": "synonyms for support", "clues": ["backup", "financial backing", "sustenance", "bread and butter", "accompaniment", "musical accompaniment", "funding", "keep", "backing", "reenforcement", "supporting", "financial support", "living", "livelihood", "documentation"]}, {"answer": "supporter", "hint": "synonyms for supporter", "clues": ["suspensor", "sponsor", "booster", "athletic supporter", "champion", "helper", "assistant", "help", "jockstrap", "garter", "jock", "friend", "patron", "protagonist", "admirer", "supporter"]}, {"answer": "supposition", "hint": "synonyms for supposition", "clues": ["surmise", "assumption", "speculation", "hypothesis", "supposal", "surmisal", "conjecture", "guess", "supposition"]}, {"answer": "suppression", "hint": "synonyms for suppression", "clues": ["curtailment", "inhibition", "quelling", "crushing", "stifling", "suppression"]}, {"answer": "suppuration", "hint": "synonyms for suppuration", "clues": ["ichor", "purulence", "sanies", "festering", "pus", "maturation", "suppuration"]}, {"answer": "supreme_court", "hint": "synonyms for supreme court", "clues": ["United States Supreme Court", "Supreme Court", "Supreme Court of the United States", "high court", "state supreme court"]}, {"answer": "sureness", "hint": "synonyms for sureness", "clues": ["confidence", "authority", "self-assurance", "self-confidence", "assurance", "sureness"]}, {"answer": "surety", "hint": "synonyms for surety", "clues": ["security", "guarantor", "hostage", "warranter", "surety"]}, {"answer": "surfeit", "hint": "synonyms for surfeit", "clues": ["oversupply", "excess", "overabundance", "glut", "repletion", "surfeit"]}, {"answer": "surge", "hint": "synonyms for surge", "clues": ["rush", "spate", "upsurge", "billow", "surge"]}, {"answer": "surge_protector", "hint": "synonyms for surge protector", "clues": ["spike arrester", "lightning arrester", "spike suppressor", "surge suppressor", "surge protector"]}, {"answer": "surge_suppressor", "hint": "synonyms for surge suppressor", "clues": ["spike arrester", "lightning arrester", "spike suppressor", "surge protector", "surge suppressor"]}, {"answer": "surgery", "hint": "synonyms for surgery", "clues": ["OR", "operating room", "operating theater", "operation", "surgical process", "surgical procedure", "surgical operation", "surgery"]}, {"answer": "surgical_operation", "hint": "synonyms for surgical operation", "clues": ["operation", "surgical process", "surgery", "surgical procedure", "surgical operation"]}, {"answer": "surgical_procedure", "hint": "synonyms for surgical procedure", "clues": ["operation", "surgical operation", "surgery", "surgical process", "surgical procedure"]}, {"answer": "surgical_process", "hint": "synonyms for surgical process", "clues": ["operation", "surgical operation", "surgery", "surgical procedure", "surgical process"]}, {"answer": "surinam", "hint": "synonyms for surinam", "clues": ["Suriname", "Dutch Guiana", "Republic of Suriname", "Netherlands Guiana"]}, {"answer": "suriname", "hint": "synonyms for suriname", "clues": ["Suriname", "Dutch Guiana", "Republic of Suriname", "Netherlands Guiana"]}, {"answer": "surliness", "hint": "synonyms for surliness", "clues": ["temper", "peevishness", "pettishness", "biliousness", "snappishness", "irritability", "surliness"]}, {"answer": "surmisal", "hint": "synonyms for surmisal", "clues": ["speculation", "surmise", "hypothesis", "conjecture", "supposition", "guess", "surmisal"]}, {"answer": "surmise", "hint": "synonyms for surmise", "clues": ["speculation", "hypothesis", "surmisal", "conjecture", "supposition", "guess", "surmise"]}, {"answer": "surrender", "hint": "synonyms for surrender", "clues": ["yielding", "giving up", "capitulation", "resignation", "fall", "surrender"]}, {"answer": "surroundings", "hint": "synonyms for surroundings", "clues": ["environment", "surround", "milieu", "environs", "surroundings"]}, {"answer": "survey", "hint": "synonyms for survey", "clues": ["sight", "view", "sketch", "study", "resume", "survey"]}, {"answer": "survival", "hint": "synonyms for survival", "clues": ["endurance", "selection", "survival of the fittest", "natural selection", "survival"]}, {"answer": "suspension", "hint": "synonyms for suspension", "clues": ["break", "respite", "abatement", "hanging", "suspension system", "intermission", "pause", "hiatus", "reprieve", "temporary removal", "abeyance", "interruption", "dangling", "suspension"]}, {"answer": "suspensor", "hint": "synonyms for suspensor", "clues": ["jockstrap", "athletic supporter", "jock", "supporter", "suspensor"]}, {"answer": "suspicion", "hint": "synonyms for suspicion", "clues": ["mistrust", "suspiciousness", "intuition", "hunch", "misgiving", "suspicion"]}, {"answer": "sustainment", "hint": "synonyms for sustainment", "clues": ["sustentation", "sustenance", "maintenance", "upkeep", "sustainment"]}, {"answer": "sustenance", "hint": "synonyms for sustenance", "clues": ["support", "sustentation", "victuals", "upkeep", "nutriment", "sustainment", "keep", "aliment", "nutrition", "alimentation", "nourishment", "bread and butter", "living", "livelihood", "maintenance", "sustenance"]}, {"answer": "sustentation", "hint": "synonyms for sustentation", "clues": ["sustainment", "sustenance", "maintenance", "upkeep", "sustentation"]}, {"answer": "susurration", "hint": "synonyms for susurration", "clues": ["susurrus", "voicelessness", "whispering", "susurration"]}, {"answer": "suv", "hint": "synonyms for suv", "clues": ["S.U.V.", "SUV", "sport utility vehicle", "sport utility"]}, {"answer": "svedberg", "hint": "synonyms for svedberg", "clues": ["Emanuel Svedberg", "Svedberg", "Emanuel Swedenborg", "Swedenborg"]}, {"answer": "svizzera", "hint": "synonyms for svizzera", "clues": ["Swiss Confederation", "Schweiz", "Svizzera", "Switzerland", "Suisse"]}, {"answer": "sw", "hint": "synonyms for sw", "clues": ["southwestward", "southwest", "sou'-west", "SW"]}, {"answer": "swag", "hint": "synonyms for swag", "clues": ["plunder", "pillage", "loot", "prize", "dirty money", "booty", "swag"]}, {"answer": "swain", "hint": "synonyms for swain", "clues": ["boyfriend", "young man", "fellow", "beau", "swain"]}, {"answer": "swashbuckler", "hint": "synonyms for swashbuckler", "clues": ["daredevil", "madcap", "hothead", "lunatic", "harum-scarum", "swashbuckler"]}, {"answer": "swearing", "hint": "synonyms for swearing", "clues": ["curse word", "oath", "curse", "expletive", "cuss", "swearword", "swearing"]}, {"answer": "swearword", "hint": "synonyms for swearword", "clues": ["curse word", "oath", "curse", "expletive", "swearing", "cuss", "swearword"]}, {"answer": "sweat", "hint": "synonyms for sweat", "clues": ["swither", "stew", "lather", "exertion", "elbow grease", "travail", "effort", "perspiration", "sudor", "fret", "sweat"]}, {"answer": "sweating", "hint": "synonyms for sweating", "clues": ["hidrosis", "diaphoresis", "perspiration", "sudation", "sweating"]}, {"answer": "sweats", "hint": "synonyms for sweats", "clues": ["swither", "workout suit", "stew", "lather", "sweat suit", "exertion", "elbow grease", "travail", "sudor", "effort", "sweat", "perspiration", "fret"]}, {"answer": "swede", "hint": "synonyms for swede", "clues": ["yellow turnip", "Swede", "swedish turnip", "rutabaga"]}, {"answer": "swedenborg", "hint": "synonyms for swedenborg", "clues": ["Emanuel Svedberg", "Svedberg", "Emanuel Swedenborg", "Swedenborg"]}, {"answer": "sweep", "hint": "synonyms for sweep", "clues": ["slam", "chimneysweep", "end run", "expanse", "sweep oar", "sweep"]}, {"answer": "sweet_fanny_adams", "hint": "synonyms for sweet fanny adams", "clues": ["bugger all", "fuck all", "Fanny Adams", "sweet Fanny Adams"]}, {"answer": "sweetener", "hint": "synonyms for sweetener", "clues": ["hook", "lure", "bait", "come-on", "sweetening", "sweetener"]}, {"answer": "sweetness", "hint": "synonyms for sweetness", "clues": ["sweet", "bouquet", "fragrance", "redolence", "pleasantness", "sugariness", "sweetness"]}, {"answer": "swelling", "hint": "synonyms for swelling", "clues": ["lump", "extrusion", "prominence", "excrescence", "gibbosity", "hump", "protuberance", "gibbousness", "intumescency", "puffiness", "bulge", "protrusion", "jut", "bump", "swelling"]}, {"answer": "swill", "hint": "synonyms for swill", "clues": ["pigswill", "pigwash", "slops", "swill"]}, {"answer": "swimming_costume", "hint": "synonyms for swimming costume", "clues": ["swimwear", "bathing costume", "swimsuit", "bathing suit", "swimming costume"]}, {"answer": "swimsuit", "hint": "synonyms for swimsuit", "clues": ["swimwear", "bathing costume", "bathing suit", "swimming costume", "swimsuit"]}, {"answer": "swimwear", "hint": "synonyms for swimwear", "clues": ["bathing costume", "swimsuit", "bathing suit", "swimming costume", "swimwear"]}, {"answer": "swindler", "hint": "synonyms for swindler", "clues": ["chiseler", "defrauder", "scammer", "gouger", "grifter", "swindler"]}, {"answer": "swing", "hint": "synonyms for swing", "clues": ["baseball swing", "vacillation", "cut", "swing music", "golf shot", "lilt", "jive", "golf stroke", "swinging"]}, {"answer": "swiss_chard", "hint": "synonyms for swiss chard", "clues": ["spinach beet", "chard", "leaf beet", "Swiss chard"]}, {"answer": "swiss_confederation", "hint": "synonyms for swiss confederation", "clues": ["Swiss Confederation", "Schweiz", "Svizzera", "Switzerland", "Suisse"]}, {"answer": "switch", "hint": "synonyms for switch", "clues": ["permutation", "shift", "transposition", "switching", "replacement", "substitution", "electrical switch"]}, {"answer": "swither", "hint": "synonyms for swither", "clues": ["stew", "sweat", "lather", "fret", "swither"]}, {"answer": "switzerland", "hint": "synonyms for switzerland", "clues": ["Swiss Confederation", "Schweiz", "Svizzera", "Switzerland", "Suisse"]}, {"answer": "swot", "hint": "synonyms for swot", "clues": ["grind", "dweeb", "nerd", "wonk", "swot"]}, {"answer": "sycophant", "hint": "synonyms for sycophant", "clues": ["crawler", "lackey", "ass-kisser", "toady", "sycophant"]}, {"answer": "syllabus", "hint": "synonyms for syllabus", "clues": ["programme", "course of study", "curriculum", "syllabus"]}, {"answer": "sylvian_fissure", "hint": "synonyms for sylvian fissure", "clues": ["fissure of Sylvius", "lateral cerebral sulcus", "Sylvian fissure", "sulcus lateralis cerebri"]}, {"answer": "symbolisation", "hint": "synonyms for symbolisation", "clues": ["symbolic representation", "symbolism", "symbol", "symbolization"]}, {"answer": "symbolization", "hint": "synonyms for symbolization", "clues": ["symbolic representation", "symbolism", "symbol", "symbolisation"]}, {"answer": "symmetry", "hint": "synonyms for symmetry", "clues": ["isotropy", "proportion", "balance", "symmetricalness", "correspondence", "symmetry"]}, {"answer": "synchroneity", "hint": "synonyms for synchroneity", "clues": ["synchronizing", "synchronisation", "synchronism", "synchronicity", "synchrony"]}, {"answer": "synchronicity", "hint": "synonyms for synchronicity", "clues": ["synchronizing", "synchroneity", "synchronisation", "synchronism"]}, {"answer": "synchronisation", "hint": "synonyms for synchronisation", "clues": ["synchronicity", "synchrony", "synchronizing", "synchronism", "synchronisation"]}, {"answer": "synchronism", "hint": "synonyms for synchronism", "clues": ["synchroneity", "synchronizing", "synchronisation", "synchronism"]}, {"answer": "synchronization", "hint": "synonyms for synchronization", "clues": ["synchronisation", "synchronicity", "synchrony", "synchronizing", "synchronism"]}, {"answer": "synchronizing", "hint": "synonyms for synchronizing", "clues": ["synchronisation", "synchronicity", "synchrony", "synchronism", "synchronizing"]}, {"answer": "synchrony", "hint": "synonyms for synchrony", "clues": ["synchroneity", "synchronizing", "synchronisation", "synchronism"]}, {"answer": "syncope", "hint": "synonyms for syncope", "clues": ["syncopation", "deliquium", "faint", "swoon", "syncope"]}, {"answer": "syndicate", "hint": "synonyms for syndicate", "clues": ["family", "pool", "mob", "crime syndicate", "consortium", "syndicate"]}, {"answer": "synthetic_heroin", "hint": "synonyms for synthetic heroin", "clues": ["methadon", "fixer", "methadone hydrochloride", "dolophine hydrochloride", "synthetic heroin"]}, {"answer": "syph", "hint": "synonyms for syph", "clues": ["lues", "syphilis", "lues venerea", "pox", "syph"]}, {"answer": "syphilis", "hint": "synonyms for syphilis", "clues": ["lues", "syph", "lues venerea", "pox", "syphilis"]}, {"answer": "system", "hint": "synonyms for system", "clues": ["system of rules", "organisation", "arrangement", "scheme", "system"]}, {"answer": "systema_urogenitale", "hint": "synonyms for systema urogenitale", "clues": ["genitourinary system", "urogenital system", "urogenital apparatus", "apparatus urogenitalis", "urinary apparatus", "urinary system", "systema urogenitale"]}, {"answer": "systematiser", "hint": "synonyms for systematiser", "clues": ["systematist", "systemiser", "systematizer", "orderer"]}, {"answer": "systematist", "hint": "synonyms for systematist", "clues": ["taxonomist", "taxonomer", "systemiser", "systematizer", "orderer", "systematist"]}, {"answer": "systematizer", "hint": "synonyms for systematizer", "clues": ["systematist", "systemiser", "orderer", "systematizer"]}, {"answer": "systeme_international", "hint": "synonyms for systeme international", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "systeme_international_d'unites", "hint": "synonyms for systeme international d'unites", "clues": ["International System of Units", "SI", "SI unit", "Systeme International d'Unites", "International System", "Systeme International", "SI system"]}, {"answer": "systemizer", "hint": "synonyms for systemizer", "clues": ["systematist", "systemiser", "systematizer", "orderer"]}, {"answer": "t", "hint": "synonyms for t", "clues": ["tonne", "MT", "metric ton", "triiodothyronine", "thyroxin", "T", "deoxythymidine monophosphate", "liothyronine", "thymine"]}, {"answer": "t._e._lawrence", "hint": "synonyms for t. e. lawrence", "clues": ["T. E. Lawrence", "Thomas Edward Lawrence", "Lawrence of Arabia", "Lawrence"]}, {"answer": "tab", "hint": "synonyms for tab", "clues": ["tablet", "yellow journalism", "lozenge", "pill", "check", "tabloid", "chit", "tab key", "tab"]}, {"answer": "tabernacle", "hint": "synonyms for tabernacle", "clues": ["Tabernacle", "Mormon Tabernacle", "temple", "synagogue"]}, {"answer": "tabernacles", "hint": "synonyms for tabernacles", "clues": ["Tabernacle", "temple", "Feast of Tabernacles", "Succos", "Feast of Booths", "Mormon Tabernacle", "Succoth", "Sukkoth", "synagogue"]}, {"answer": "tablet", "hint": "synonyms for tablet", "clues": ["tab", "lozenge", "pill", "pad of paper", "pad", "tablet"]}, {"answer": "tabloid", "hint": "synonyms for tabloid", "clues": ["tab", "yellow journalism", "sheet", "rag", "tabloid"]}, {"answer": "tack", "hint": "synonyms for tack", "clues": ["shroud", "tacking", "weather sheet", "mainsheet", "sheet", "stable gear", "saddlery"]}, {"answer": "tackiness", "hint": "synonyms for tackiness", "clues": ["viscidness", "gumminess", "tat", "sleaze", "ropiness", "glueyness", "viscidity", "gluiness", "cohesiveness", "cheapness", "tackiness"]}, {"answer": "tacking", "hint": "synonyms for tacking", "clues": ["basting stitch", "tack", "baste", "basting"]}, {"answer": "tackle", "hint": "synonyms for tackle", "clues": ["rig", "rigging", "fishing rig", "fishing tackle", "fishing gear", "tackle"]}, {"answer": "tactile_sensation", "hint": "synonyms for tactile sensation", "clues": ["feeling", "tactual sensation", "touch", "touch sensation"]}, {"answer": "tactual_sensation", "hint": "synonyms for tactual sensation", "clues": ["skin perceptiveness", "touch sensation", "feeling", "touch perception", "tactility", "tactile sensation", "touch"]}, {"answer": "tadjik", "hint": "synonyms for tadjik", "clues": ["Tadzhik", "Tadzhikistan", "Tajikistan", "Republic of Tajikistan", "Tadjik"]}, {"answer": "tadzhik", "hint": "synonyms for tadzhik", "clues": ["Tadzhikistan", "Tajikistan", "Tadjik", "Tadzhik", "Republic of Tajikistan", "Tajiki"]}, {"answer": "tadzhikistan", "hint": "synonyms for tadzhikistan", "clues": ["Tadzhik", "Tadzhikistan", "Tajikistan", "Republic of Tajikistan", "Tadjik"]}, {"answer": "taffy_apple", "hint": "synonyms for taffy apple", "clues": ["candy apple", "caramel apple", "candied apple", "toffee apple", "taffy apple"]}, {"answer": "taft", "hint": "synonyms for taft", "clues": ["William Howard Taft", "Lorado Taft", "Taft", "President Taft"]}, {"answer": "tag", "hint": "synonyms for tag", "clues": ["tatter", "rag", "shred", "tag end", "ticket", "tag"]}, {"answer": "tag_end", "hint": "synonyms for tag end", "clues": ["tag", "shred", "tatter", "rag", "tag end"]}, {"answer": "tail", "hint": "synonyms for tail", "clues": ["fundament", "rear end", "tush", "buns", "nates", "hindquarters", "prat", "seat", "butt", "shadower", "tail end", "derriere", "rear", "stern", "after part", "backside", "buttocks", "bum", "posterior", "empennage", "keister", "tail assembly", "poop", "rump", "quarter", "bottom", "ass", "fanny", "hind end", "arse", "behind", "fag end", "tooshie", "can", "tail"]}, {"answer": "tail_coat", "hint": "synonyms for tail coat", "clues": ["white tie and tails", "dress suit", "tailcoat", "white tie", "full dress", "tails"]}, {"answer": "tail_end", "hint": "synonyms for tail end", "clues": ["fundament", "rear end", "tush", "buns", "nates", "hindquarters", "prat", "seat", "butt", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "tail", "rump", "bottom", "ass", "fanny", "hind end", "arse", "behind", "fag end", "tooshie", "can", "tail end"]}, {"answer": "tail_fin", "hint": "synonyms for tail fin", "clues": ["vertical stabiliser", "vertical fin", "tailfin", "fin"]}, {"answer": "tailcoat", "hint": "synonyms for tailcoat", "clues": ["white tie and tails", "dress suit", "white tie", "full dress", "tail coat", "tails"]}, {"answer": "tailfin", "hint": "synonyms for tailfin", "clues": ["vertical stabiliser", "vertical fin", "fin", "tail fin"]}, {"answer": "tails", "hint": "synonyms for tails", "clues": ["tush", "buns", "dress suit", "seat", "butt", "shadow", "tail end", "full dress", "rear", "buttocks", "bum", "poop", "white tie", "rump", "fag end", "nates", "can", "fundament", "rear end", "hindquarters", "prat", "derriere", "white tie and tails", "tailcoat", "stern", "after part", "backside", "empennage", "posterior", "tail assembly", "keister", "arse", "tail", "quarter", "bottom", "ass", "fanny", "hind end", "behind", "tooshie"]}, {"answer": "taiwan", "hint": "synonyms for taiwan", "clues": ["Formosa", "Nationalist China", "Republic of China", "China", "Taiwan"]}, {"answer": "tajik", "hint": "synonyms for tajik", "clues": ["Tadzhikistan", "Tajikistan", "Tadjik", "Tadzhik", "Republic of Tajikistan", "Tajiki"]}, {"answer": "tajikistan", "hint": "synonyms for tajikistan", "clues": ["Tadzhik", "Tadzhikistan", "Tajikistan", "Republic of Tajikistan", "Tadjik"]}, {"answer": "take", "hint": "synonyms for take", "clues": ["payoff", "proceeds", "return", "issue", "takings", "yield", "take"]}, {"answer": "takeoff", "hint": "synonyms for takeoff", "clues": ["charade", "pasquinade", "mockery", "put-on", "travesty", "sendup", "burlesque", "parody", "lampoon", "spoof", "takeoff"]}, {"answer": "takeoff_booster", "hint": "synonyms for takeoff booster", "clues": ["booster rocket", "booster unit", "takeoff rocket", "booster", "takeoff booster"]}, {"answer": "takeoff_rocket", "hint": "synonyms for takeoff rocket", "clues": ["booster rocket", "booster unit", "takeoff booster", "booster", "takeoff rocket"]}, {"answer": "taking_into_custody", "hint": "synonyms for taking into custody", "clues": ["apprehension", "catch", "pinch", "arrest", "collar", "taking into custody"]}, {"answer": "takings", "hint": "synonyms for takings", "clues": ["pickings", "payoff", "proceeds", "take", "return", "taking", "issue", "yield"]}, {"answer": "tale", "hint": "synonyms for tale", "clues": ["narration", "narrative", "fib", "story", "taradiddle", "tale"]}, {"answer": "talebearer", "hint": "synonyms for talebearer", "clues": ["tattletale", "telltale", "blabbermouth", "taleteller", "tattler", "talebearer"]}, {"answer": "taleteller", "hint": "synonyms for taleteller", "clues": ["talebearer", "tattletale", "telltale", "blabbermouth", "tattler", "taleteller"]}, {"answer": "talk", "hint": "synonyms for talk", "clues": ["lecture", "public lecture", "talking", "talk of the town"]}, {"answer": "talkativeness", "hint": "synonyms for talkativeness", "clues": ["garrulity", "loquacity", "garrulousness", "loquaciousness", "talkativeness"]}, {"answer": "talker", "hint": "synonyms for talker", "clues": ["verbaliser", "speaker", "utterer", "talker"]}, {"answer": "talks", "hint": "synonyms for talks", "clues": ["dialogue", "lecture", "talk of the town", "talk", "public lecture", "negotiation"]}, {"answer": "tallis", "hint": "synonyms for tallis", "clues": ["Thomas Tallis", "Tallis", "prayer shawl", "tallith"]}, {"answer": "tally", "hint": "synonyms for tally", "clues": ["reckoning", "numeration", "run", "count", "tally"]}, {"answer": "talus", "hint": "synonyms for talus", "clues": ["scree", "astragalus", "anklebone", "talus"]}, {"answer": "tamburlaine", "hint": "synonyms for tamburlaine", "clues": ["Tamburlaine", "Timur", "Tamerlane", "Timur Lenk"]}, {"answer": "tameness", "hint": "synonyms for tameness", "clues": ["vapidity", "domestication", "jejunity", "vapidness", "jejuneness", "tameness"]}, {"answer": "tamerlane", "hint": "synonyms for tamerlane", "clues": ["Tamburlaine", "Timur", "Tamerlane", "Timur Lenk"]}, {"answer": "tamil_tigers", "hint": "synonyms for tamil tigers", "clues": ["World Tamil Association", "Tamil Tigers", "Tigers", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "tang", "hint": "synonyms for tang", "clues": ["flavour", "nip", "sapidity", "relish", "savor", "piquancy", "smack", "zest", "Tang", "piquantness", "tanginess", "Tang dynasty"]}, {"answer": "tanginess", "hint": "synonyms for tanginess", "clues": ["piquantness", "nip", "zest", "piquance", "tang", "tanginess"]}, {"answer": "tank", "hint": "synonyms for tank", "clues": ["armoured combat vehicle", "tankful", "cooler", "storage tank", "tank car", "army tank", "tank"]}, {"answer": "tanker", "hint": "synonyms for tanker", "clues": ["oil tanker", "oiler", "tank ship", "tank driver", "tanker"]}, {"answer": "tanning", "hint": "synonyms for tanning", "clues": ["whipping", "flagellation", "lashing", "flogging", "tanning"]}, {"answer": "tap", "hint": "synonyms for tap", "clues": ["rap", "strike", "dab", "water tap", "hydrant", "pat", "wiretap", "water faucet", "spigot", "tap"]}, {"answer": "tape", "hint": "synonyms for tape", "clues": ["magnetic tape", "tape measure", "mag tape", "taping", "tape recording", "tapeline", "tape"]}, {"answer": "taphouse", "hint": "synonyms for taphouse", "clues": ["gin mill", "public house", "saloon", "pub", "pothouse", "taphouse"]}, {"answer": "tapper", "hint": "synonyms for tapper", "clues": ["phone tapper", "tapster", "wiretapper", "tap dancer", "tapper"]}, {"answer": "taproom", "hint": "synonyms for taproom", "clues": ["barroom", "bar", "saloon", "ginmill", "taproom"]}, {"answer": "taps", "hint": "synonyms for taps", "clues": ["rap", "strike", "dab", "water tap", "hydrant", "tap", "pat", "wiretap", "spigot", "water faucet", "lights-out"]}, {"answer": "tar", "hint": "synonyms for tar", "clues": ["Jack", "old salt", "mariner", "pitch", "seafarer", "sea dog", "gob", "seaman", "Jack-tar", "tar"]}, {"answer": "tar_heel_state", "hint": "synonyms for tar heel state", "clues": ["Tar Heel State", "North Carolina", "NC", "Old North State"]}, {"answer": "tarabulus", "hint": "synonyms for tarabulus", "clues": ["Tripoli", "Tarabulus Ash-Sham", "Tarabulus", "Trablous"]}, {"answer": "tarabulus_ash-sham", "hint": "synonyms for tarabulus ash-sham", "clues": ["Tripoli", "Tarabulus Ash-Sham", "Tarabulus", "Trablous"]}, {"answer": "taradiddle", "hint": "synonyms for taradiddle", "clues": ["tommyrot", "fib", "story", "tarradiddle", "tale", "tosh", "baloney", "bilgewater", "bosh", "drool", "twaddle", "humbug"]}, {"answer": "tarawa", "hint": "synonyms for tarawa", "clues": ["Bairiki", "Tarawa-Makin", "Makin", "Tarawa"]}, {"answer": "tarchanoff_phenomenon", "hint": "synonyms for tarchanoff phenomenon", "clues": ["electrical skin response", "Tarchanoff phenomenon", "electrodermal response", "galvanic skin response", "GSR", "Fere phenomenon", "psychogalvanic response"]}, {"answer": "target", "hint": "synonyms for target", "clues": ["object", "quarry", "objective", "mark", "butt", "target area", "fair game", "aim", "prey", "target"]}, {"answer": "taro", "hint": "synonyms for taro", "clues": ["edda", "cocoyam", "taro root", "dasheen", "taro"]}, {"answer": "taro_root", "hint": "synonyms for taro root", "clues": ["edda", "cocoyam", "taro", "dasheen", "taro root"]}, {"answer": "tarquin", "hint": "synonyms for tarquin", "clues": ["Lucius Tarquinius Superbus", "Tarquinius", "Tarquinius Superbus", "Tarquin the Proud", "Tarquin"]}, {"answer": "tarquin_the_proud", "hint": "synonyms for tarquin the proud", "clues": ["Lucius Tarquinius Superbus", "Tarquinius", "Tarquinius Superbus", "Tarquin the Proud", "Tarquin"]}, {"answer": "tarquinius", "hint": "synonyms for tarquinius", "clues": ["Lucius Tarquinius Superbus", "Tarquinius", "Tarquinius Superbus", "Tarquin the Proud", "Tarquin"]}, {"answer": "tarquinius_superbus", "hint": "synonyms for tarquinius superbus", "clues": ["Lucius Tarquinius Superbus", "Tarquinius", "Tarquinius Superbus", "Tarquin the Proud", "Tarquin"]}, {"answer": "tarradiddle", "hint": "synonyms for tarradiddle", "clues": ["tommyrot", "fib", "story", "tosh", "tale", "baloney", "bilgewater", "bosh", "drool", "twaddle", "humbug", "taradiddle"]}, {"answer": "tartar", "hint": "synonyms for tartar", "clues": ["potassium hydrogen tartrate", "Tartar", "dragon", "calculus", "cream of tartar", "potassium bitartrate", "tophus", "Mongol Tatar"]}, {"answer": "tartness", "hint": "synonyms for tartness", "clues": ["bitterness", "sour", "sourness", "acrimony", "jaundice", "thorniness", "acerbity", "tartness"]}, {"answer": "task", "hint": "synonyms for task", "clues": ["labor", "chore", "job", "project", "undertaking", "task"]}, {"answer": "taste", "hint": "synonyms for taste", "clues": ["discernment", "tasting", "taste sensation", "penchant", "predilection", "gustation", "gustatory modality", "perceptiveness", "gustatory sensation", "gustatory perception", "preference", "appreciation", "sense of taste", "taste perception", "mouthful", "taste"]}, {"answer": "taste_perception", "hint": "synonyms for taste perception", "clues": ["gustatory sensation", "gustatory perception", "taste", "taste sensation", "taste perception"]}, {"answer": "taste_sensation", "hint": "synonyms for taste sensation", "clues": ["taste perception", "gustatory sensation", "gustatory perception", "taste", "taste sensation"]}, {"answer": "tasting", "hint": "synonyms for tasting", "clues": ["relishing", "savoring", "taste", "degustation", "tasting"]}, {"answer": "tat", "hint": "synonyms for tat", "clues": ["TAT", "tackiness", "sleaze", "cheapness", "Thematic Apperception Test"]}, {"answer": "tater", "hint": "synonyms for tater", "clues": ["Irish potato", "potato", "murphy", "spud", "white potato", "tater"]}, {"answer": "tatter", "hint": "synonyms for tatter", "clues": ["tag", "shred", "tag end", "rag", "tatter"]}, {"answer": "tattler", "hint": "synonyms for tattler", "clues": ["talebearer", "tattletale", "telltale", "blabbermouth", "taleteller", "tattler"]}, {"answer": "tattletale", "hint": "synonyms for tattletale", "clues": ["talebearer", "telltale", "blabbermouth", "taleteller", "tattler", "tattletale"]}, {"answer": "taurus", "hint": "synonyms for taurus", "clues": ["Salim", "Carlos", "Andres Martinez", "Hector Hevodidbon", "Taurus", "Glen Gebhard", "Bull", "Sanchez", "Ilich Sanchez", "Ilich Ramirez Sanchez", "Taurus the Bull", "Michael Assat", "Carlos the Jackal"]}, {"answer": "tautness", "hint": "synonyms for tautness", "clues": ["tightness", "tension", "tenseness", "tensity", "tautness"]}, {"answer": "tawdriness", "hint": "synonyms for tawdriness", "clues": ["garishness", "flashiness", "brashness", "glitz", "meretriciousness", "gaudiness", "loudness", "tawdriness"]}, {"answer": "tax_collector", "hint": "synonyms for tax collector", "clues": ["collector of internal revenue", "internal revenue agent", "exciseman", "taxman", "tax collector"]}, {"answer": "taxation", "hint": "synonyms for taxation", "clues": ["tax", "tax revenue", "revenue", "tax income", "revenue enhancement", "taxation"]}, {"answer": "taxidriver", "hint": "synonyms for taxidriver", "clues": ["hack driver", "cabby", "cabman", "cabdriver", "livery driver", "taximan", "taxidriver"]}, {"answer": "taximan", "hint": "synonyms for taximan", "clues": ["hack driver", "taxidriver", "cabby", "cabman", "cabdriver", "livery driver", "taximan"]}, {"answer": "taxis", "hint": "synonyms for taxis", "clues": ["cab", "hack", "taxi", "taxicab"]}, {"answer": "taxman", "hint": "synonyms for taxman", "clues": ["collector of internal revenue", "internal revenue agent", "exciseman", "tax collector", "taxman"]}, {"answer": "taylor", "hint": "synonyms for taylor", "clues": ["Joseph Deems Taylor", "President Taylor", "Zachary Taylor", "Elizabeth Taylor", "Deems Taylor", "Taylor"]}, {"answer": "tb", "hint": "synonyms for tb", "clues": ["tuberculosis", "TB", "terabit", "atomic number 65", "T.B.", "terbium", "Tbit", "tebibyte", "TiB", "terabyte"]}, {"answer": "tc", "hint": "synonyms for tc", "clues": ["Tc", "atomic number 43", "Trusteeship Council", "technetium"]}, {"answer": "tdt", "hint": "synonyms for tdt", "clues": ["ephemeris time", "TDT", "terrestrial dynamical time", "TT", "terrestrial time"]}, {"answer": "te", "hint": "synonyms for te", "clues": ["Te", "ti", "si", "tellurium", "atomic number 52"]}, {"answer": "tea_parlor", "hint": "synonyms for tea parlor", "clues": ["teahouse", "tearoom", "tea parlour", "teashop"]}, {"answer": "tea_parlour", "hint": "synonyms for tea parlour", "clues": ["teahouse", "tearoom", "tea parlor", "teashop"]}, {"answer": "teaberry", "hint": "synonyms for teaberry", "clues": ["wintergreen", "checkerberry", "spiceberry", "boxberry", "teaberry"]}, {"answer": "teach", "hint": "synonyms for teach", "clues": ["Edward Teach", "Blackbeard", "Thatch", "Teach"]}, {"answer": "teaching", "hint": "synonyms for teaching", "clues": ["instruction", "education", "precept", "didactics", "pedagogy", "commandment", "educational activity", "teaching"]}, {"answer": "teahouse", "hint": "synonyms for teahouse", "clues": ["tea parlour", "tearoom", "teashop", "teahouse"]}, {"answer": "tear", "hint": "synonyms for tear", "clues": ["rent", "split", "snag", "bout", "bust", "teardrop", "binge", "rip", "tear"]}, {"answer": "tearoom", "hint": "synonyms for tearoom", "clues": ["tea parlour", "teahouse", "teashop", "tearoom"]}, {"answer": "tears", "hint": "synonyms for tears", "clues": ["split", "snag", "crying", "bout", "weeping", "teardrop", "rip", "rent", "bust", "binge", "tear"]}, {"answer": "tease", "hint": "synonyms for tease", "clues": ["prickteaser", "teasing", "vexer", "minx", "ribbing", "tantalization", "annoyer", "coquette", "vamper", "vamp", "flirt", "teaser"]}, {"answer": "teaser", "hint": "synonyms for teaser", "clues": ["tease", "vexer", "puzzle", "tormenter", "annoyer", "mystifier"]}, {"answer": "teashop", "hint": "synonyms for teashop", "clues": ["tea parlour", "tearoom", "teahouse", "teashop"]}, {"answer": "teat", "hint": "synonyms for teat", "clues": ["pap", "nipple", "mammilla", "tit", "teat"]}, {"answer": "teddy", "hint": "synonyms for teddy", "clues": ["shimmy", "slip", "teddy bear", "chemise", "shift", "teddy"]}, {"answer": "tedium", "hint": "synonyms for tedium", "clues": ["ennui", "tiresomeness", "tediousness", "boredom", "tedium"]}, {"answer": "teens", "hint": "synonyms for teens", "clues": ["teenager", "stripling", "teen", "adolescent"]}, {"answer": "teeter", "hint": "synonyms for teeter", "clues": ["teeterboard", "dandle board", "seesaw", "tilting board", "teeter-totter", "teeter"]}, {"answer": "teeter-totter", "hint": "synonyms for teeter-totter", "clues": ["teeterboard", "dandle board", "seesaw", "teeter", "tilting board", "teetertotter"]}, {"answer": "teeterboard", "hint": "synonyms for teeterboard", "clues": ["dandle board", "seesaw", "teeter-totter", "teeter", "tilting board", "teeterboard"]}, {"answer": "teetertotter", "hint": "synonyms for teetertotter", "clues": ["teeterboard", "dandle board", "seesaw", "teeter-totter", "teeter", "tilting board"]}, {"answer": "telephone_booth", "hint": "synonyms for telephone booth", "clues": ["telephone box", "call box", "telephone kiosk", "phone booth"]}, {"answer": "telephone_box", "hint": "synonyms for telephone box", "clues": ["telephone booth", "call box", "telephone kiosk", "phone booth"]}, {"answer": "telephone_circuit", "hint": "synonyms for telephone circuit", "clues": ["line", "phone line", "subscriber line", "telephone line", "telephone circuit"]}, {"answer": "telephone_kiosk", "hint": "synonyms for telephone kiosk", "clues": ["telephone box", "call box", "phone booth", "telephone kiosk"]}, {"answer": "telephone_line", "hint": "synonyms for telephone line", "clues": ["telephone circuit", "phone line", "telegraph line", "telephone wire", "line", "subscriber line"]}, {"answer": "teleprinter", "hint": "synonyms for teleprinter", "clues": ["teletype machine", "teletypewriter", "telex machine", "telex", "teleprinter"]}, {"answer": "teletype_machine", "hint": "synonyms for teletype machine", "clues": ["teletypewriter", "teleprinter", "telex machine", "telex", "teletype machine"]}, {"answer": "teletypewriter", "hint": "synonyms for teletypewriter", "clues": ["teletype machine", "teleprinter", "telex machine", "telex", "teletypewriter"]}, {"answer": "television", "hint": "synonyms for television", "clues": ["telecasting", "TV", "boob tube", "television set", "goggle box", "video", "telly", "idiot box", "television receiver", "tv set", "television system", "television"]}, {"answer": "television_receiver", "hint": "synonyms for television receiver", "clues": ["boob tube", "tv set", "television set", "telly", "tv", "television", "goggle box", "idiot box", "television receiver"]}, {"answer": "television_set", "hint": "synonyms for television set", "clues": ["boob tube", "tv set", "telly", "television receiver", "tv", "television", "goggle box", "idiot box", "television set"]}, {"answer": "telex", "hint": "synonyms for telex", "clues": ["teletype machine", "teletypewriter", "teleprinter", "telex machine", "telex"]}, {"answer": "telex_machine", "hint": "synonyms for telex machine", "clues": ["teletype machine", "teletypewriter", "teleprinter", "telex", "telex machine"]}, {"answer": "teller", "hint": "synonyms for teller", "clues": ["Teller", "storyteller", "bank clerk", "vote counter", "narrator", "cashier", "Edward Teller"]}, {"answer": "telly", "hint": "synonyms for telly", "clues": ["boob tube", "tv set", "television set", "television receiver", "tv", "television", "goggle box", "idiot box", "telly"]}, {"answer": "temper", "hint": "synonyms for temper", "clues": ["humor", "peevishness", "toughness", "mood", "irritation", "surliness", "pettishness", "pique", "biliousness", "snappishness", "irritability", "temper"]}, {"answer": "tempestuousness", "hint": "synonyms for tempestuousness", "clues": ["ferment", "fermentation", "unrest", "agitation", "tempestuousness"]}, {"answer": "template_rna", "hint": "synonyms for template rna", "clues": ["informational RNA", "template RNA", "messenger RNA", "mRNA"]}, {"answer": "temple_of_apollo", "hint": "synonyms for temple of apollo", "clues": ["Temple of Apollo", "Oracle of Apollo", "Delphic oracle", "oracle of Delphi"]}, {"answer": "tempra", "hint": "synonyms for tempra", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "temptress", "hint": "synonyms for temptress", "clues": ["femme fatale", "siren", "Delilah", "enchantress", "temptress"]}, {"answer": "temujin", "hint": "synonyms for temujin", "clues": ["Temujin", "Jenghiz Khan", "Jinghis Khan", "Genghis Khan"]}, {"answer": "tenaciousness", "hint": "synonyms for tenaciousness", "clues": ["persistence", "perseverance", "pertinacity", "doggedness", "tenacity", "tenaciousness"]}, {"answer": "tenacity", "hint": "synonyms for tenacity", "clues": ["persistence", "tenaciousness", "perseverance", "pertinacity", "doggedness", "tenacity"]}, {"answer": "tendency", "hint": "synonyms for tendency", "clues": ["trend", "propensity", "inclination", "leaning", "disposition", "tendency"]}, {"answer": "tenderness", "hint": "synonyms for tenderness", "clues": ["rawness", "affection", "softheartedness", "soreness", "fondness", "tenderheartedness", "warmheartedness", "heart", "affectionateness", "philia", "warmness", "tenderness"]}, {"answer": "tenner", "hint": "synonyms for tenner", "clues": ["decade", "ten dollar bill", "10", "X", "ten", "tenner"]}, {"answer": "tennessee", "hint": "synonyms for tennessee", "clues": ["Tennessee River", "TN", "Tennessee", "Volunteer State"]}, {"answer": "tenseness", "hint": "synonyms for tenseness", "clues": ["stress", "tension", "tautness", "tensity", "tenseness"]}, {"answer": "tension", "hint": "synonyms for tension", "clues": ["stress", "latent hostility", "tenseness", "tautness", "tensity", "tension"]}, {"answer": "tent-fly", "hint": "synonyms for tent-fly", "clues": ["rainfly", "fly sheet", "tent flap", "fly", "tent-fly"]}, {"answer": "tent_flap", "hint": "synonyms for tent flap", "clues": ["rainfly", "fly sheet", "tent-fly", "fly", "tent flap"]}, {"answer": "tenth_cranial_nerve", "hint": "synonyms for tenth cranial nerve", "clues": ["vagus", "vagus nerve", "nervus vagus", "pneumogastric", "wandering nerve", "pneumogastric nerve", "tenth cranial nerve"]}, {"answer": "tenuity", "hint": "synonyms for tenuity", "clues": ["rarity", "slenderness", "thinness", "low density", "feebleness", "tenuity"]}, {"answer": "tercet", "hint": "synonyms for tercet", "clues": ["ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "tercet"]}, {"answer": "term", "hint": "synonyms for term", "clues": ["condition", "terminal figure", "terminus", "full term", "term"]}, {"answer": "term_of_enlistment", "hint": "synonyms for term of enlistment", "clues": ["tour", "hitch", "enlistment", "tour of duty", "duty tour", "term of enlistment"]}, {"answer": "termination", "hint": "synonyms for termination", "clues": ["end point", "outcome", "conclusion", "resultant", "expiration", "expiry", "ending", "result", "final result", "terminus", "termination"]}, {"answer": "terminus", "hint": "synonyms for terminus", "clues": ["end point", "termination", "term", "terminal", "destination", "depot", "terminal figure", "terminus"]}, {"answer": "terms", "hint": "synonyms for terms", "clues": ["condition", "full term", "terminus", "price", "damage", "term", "terminal figure", "footing"]}, {"answer": "ternion", "hint": "synonyms for ternion", "clues": ["tercet", "ternary", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "ternion"]}, {"answer": "terpsichore", "hint": "synonyms for terpsichore", "clues": ["dance", "Terpsichore", "saltation", "dancing"]}, {"answer": "terra_alba", "hint": "synonyms for terra alba", "clues": ["china clay", "kaolin", "pipeclay", "china stone", "porcelain clay", "terra alba"]}, {"answer": "terra_firma", "hint": "synonyms for terra firma", "clues": ["ground", "land", "solid ground", "dry land", "earth", "terra firma"]}, {"answer": "terrestrial_dynamical_time", "hint": "synonyms for terrestrial dynamical time", "clues": ["TT", "ephemeris time", "TDT", "terrestrial time", "terrestrial dynamical time"]}, {"answer": "terrestrial_time", "hint": "synonyms for terrestrial time", "clues": ["TT", "ephemeris time", "TDT", "terrestrial dynamical time", "terrestrial time"]}, {"answer": "territory", "hint": "synonyms for territory", "clues": ["soil", "territorial dominion", "district", "dominion", "territory"]}, {"answer": "terror", "hint": "synonyms for terror", "clues": ["little terror", "panic", "holy terror", "scourge", "affright", "brat", "threat", "terror"]}, {"answer": "terry", "hint": "synonyms for terry", "clues": ["Dame Alice Ellen Terry", "Dame Ellen Terry", "Terry", "terry cloth"]}, {"answer": "terzetto", "hint": "synonyms for terzetto", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "terzetto"]}, {"answer": "test", "hint": "synonyms for test", "clues": ["tryout", "trial run", "exam", "trial", "mental test", "psychometric test", "examination", "run", "test"]}, {"answer": "testicle", "hint": "synonyms for testicle", "clues": ["ballock", "nut", "orchis", "ball", "egg", "testis", "testicle"]}, {"answer": "testis", "hint": "synonyms for testis", "clues": ["ballock", "nut", "orchis", "testicle", "ball", "egg", "testis"]}, {"answer": "tetanilla", "hint": "synonyms for tetanilla", "clues": ["tetany", "intermittent tetanus", "apyretic tetanus", "intermittent cramp", "tetanilla"]}, {"answer": "tetany", "hint": "synonyms for tetany", "clues": ["tetanilla", "intermittent tetanus", "apyretic tetanus", "intermittent cramp", "tetany"]}, {"answer": "teton", "hint": "synonyms for teton", "clues": ["Lakota", "Teton", "Teton Sioux", "Teton Dakota"]}, {"answer": "teton_dakota", "hint": "synonyms for teton dakota", "clues": ["Lakota", "Teton", "Teton Sioux", "Teton Dakota"]}, {"answer": "teton_sioux", "hint": "synonyms for teton sioux", "clues": ["Lakota", "Teton", "Teton Sioux", "Teton Dakota"]}, {"answer": "tetrad", "hint": "synonyms for tetrad", "clues": ["IV", "Little Joe", "four", "quaternion", "quadruplet", "quartet", "4", "quaternity", "quatern", "foursome", "quaternary", "tetrad"]}, {"answer": "text", "hint": "synonyms for text", "clues": ["textbook", "schoolbook", "school text", "text edition", "textual matter", "text"]}, {"answer": "text_edition", "hint": "synonyms for text edition", "clues": ["school text", "schoolbook", "text", "textbook", "text edition"]}, {"answer": "th", "hint": "synonyms for th", "clues": ["thorium", "atomic number 90", "Th", "Thursday"]}, {"answer": "thaddaeus", "hint": "synonyms for thaddaeus", "clues": ["Jude", "Saint Jude", "Thaddaeus", "St. Jude", "Judas"]}, {"answer": "thatch", "hint": "synonyms for thatch", "clues": ["Edward Teach", "Blackbeard", "thatched roof", "Thatch", "Teach"]}, {"answer": "thatcher", "hint": "synonyms for thatcher", "clues": ["Margaret Hilda Thatcher", "Thatcher", "Iron Lady", "Baroness Thatcher of Kesteven"]}, {"answer": "thaumaturge", "hint": "synonyms for thaumaturge", "clues": ["sorcerer", "magician", "wizard", "thaumaturgist", "necromancer", "thaumaturge"]}, {"answer": "thaumaturgist", "hint": "synonyms for thaumaturgist", "clues": ["thaumaturge", "sorcerer", "magician", "wizard", "necromancer", "thaumaturgist"]}, {"answer": "thaumaturgy", "hint": "synonyms for thaumaturgy", "clues": ["illusion", "legerdemain", "magic trick", "deception", "trick", "conjuration", "magic", "conjuring trick", "thaumaturgy"]}, {"answer": "the_flood", "hint": "synonyms for the flood", "clues": ["Noah and the Flood", "Noah's flood", "the Flood", "Noachian deluge"]}, {"answer": "the_great_calamity", "hint": "synonyms for the great calamity", "clues": ["the Great Calamity", "the Great Hunger", "the Great Starvation", "the Irish Famine"]}, {"answer": "the_great_hunger", "hint": "synonyms for the great hunger", "clues": ["the Great Calamity", "the Great Hunger", "the Great Starvation", "the Irish Famine"]}, {"answer": "the_great_starvation", "hint": "synonyms for the great starvation", "clues": ["the Great Calamity", "the Great Hunger", "the Great Starvation", "the Irish Famine"]}, {"answer": "the_great_unwashed", "hint": "synonyms for the great unwashed", "clues": ["masses", "multitude", "people", "hoi polloi", "the great unwashed"]}, {"answer": "the_irish_famine", "hint": "synonyms for the irish famine", "clues": ["the Great Calamity", "the Great Hunger", "the Great Starvation", "the Irish Famine"]}, {"answer": "the_nazarene", "hint": "synonyms for the nazarene", "clues": ["Saviour", "Christ", "the Nazarene", "Deliverer", "Good Shepherd", "Jesus Christ", "Jesus of Nazareth", "Jesus", "Redeemer"]}, {"answer": "the_netherlands", "hint": "synonyms for the netherlands", "clues": ["The Netherlands", "Holland", "Kingdom of The Netherlands", "Nederland", "Netherlands"]}, {"answer": "the_pits", "hint": "synonyms for the pits", "clues": ["snake pit", "hellhole", "hell", "hell on earth", "inferno", "the pits"]}, {"answer": "the_states", "hint": "synonyms for the states", "clues": ["America", "U.S.A.", "United States", "United States of America", "the States", "USA", "US", "U.S."]}, {"answer": "the_tempter", "hint": "synonyms for the tempter", "clues": ["Satan", "the Tempter", "Prince of Darkness", "Old Nick", "Beelzebub", "Devil", "Lucifer"]}, {"answer": "the_venerable_bede", "hint": "synonyms for the venerable bede", "clues": ["the Venerable Bede", "Saint Baeda", "St. Baeda", "St. Bede", "Bede", "Beda"]}, {"answer": "the_virgin", "hint": "synonyms for the virgin", "clues": ["Madonna", "Virgin Mary", "Mary", "The Virgin", "Blessed Virgin"]}, {"answer": "theater", "hint": "synonyms for theater", "clues": ["dramatic art", "field", "theater of operations", "dramatics", "theatre", "house", "field of operations", "dramaturgy"]}, {"answer": "theater_of_operations", "hint": "synonyms for theater of operations", "clues": ["theater", "field of operations", "theatre of operations", "field"]}, {"answer": "theatre", "hint": "synonyms for theatre", "clues": ["dramatic art", "theater", "field", "theater of operations", "dramatics", "house", "field of operations", "dramaturgy"]}, {"answer": "theatre_of_operations", "hint": "synonyms for theatre of operations", "clues": ["theater", "field of operations", "field", "theater of operations"]}, {"answer": "theatrical_role", "hint": "synonyms for theatrical role", "clues": ["character", "persona", "role", "part", "theatrical role"]}, {"answer": "theft", "hint": "synonyms for theft", "clues": ["larceny", "stealing", "thievery", "thieving", "theft"]}, {"answer": "theme", "hint": "synonyms for theme", "clues": ["composition", "topic", "base", "radical", "root", "paper", "idea", "report", "subject", "root word", "stem", "motif", "melodic theme", "musical theme", "theme"]}, {"answer": "theobid", "hint": "synonyms for theobid", "clues": ["Slo-Bid", "Theobid", "Elixophyllin", "theophylline"]}, {"answer": "theodore_roosevelt", "hint": "synonyms for theodore roosevelt", "clues": ["President Roosevelt", "Theodore Roosevelt", "President Theodore Roosevelt", "Roosevelt"]}, {"answer": "theoretician", "hint": "synonyms for theoretician", "clues": ["idealogue", "theoriser", "theorist", "theoretician"]}, {"answer": "theoriser", "hint": "synonyms for theoriser", "clues": ["idealogue", "theoretician", "theorizer", "theorist"]}, {"answer": "theorist", "hint": "synonyms for theorist", "clues": ["idealogue", "theoriser", "theoretician", "theorist"]}, {"answer": "theorizer", "hint": "synonyms for theorizer", "clues": ["idealogue", "theoriser", "theoretician", "theorist"]}, {"answer": "therapeutics", "hint": "synonyms for therapeutics", "clues": ["remedy", "therapeutic", "curative", "cure"]}, {"answer": "thermionic_tube", "hint": "synonyms for thermionic tube", "clues": ["tube", "thermionic valve", "thermionic vacuum tube", "vacuum tube", "electron tube", "thermionic tube"]}, {"answer": "thermionic_vacuum_tube", "hint": "synonyms for thermionic vacuum tube", "clues": ["thermionic tube", "tube", "thermionic valve", "vacuum tube", "electron tube", "thermionic vacuum tube"]}, {"answer": "thermionic_valve", "hint": "synonyms for thermionic valve", "clues": ["thermionic tube", "tube", "thermionic vacuum tube", "vacuum tube", "electron tube", "thermionic valve"]}, {"answer": "thermobaric_bomb", "hint": "synonyms for thermobaric bomb", "clues": ["volume-detonation bomb", "vacuum bomb", "fuel-air bomb", "aerosol bomb", "thermobaric bomb"]}, {"answer": "thiamin", "hint": "synonyms for thiamin", "clues": ["aneurin", "vitamin B1", "antiberiberi factor", "thiamine"]}, {"answer": "thiamine", "hint": "synonyms for thiamine", "clues": ["aneurin", "thiamin", "antiberiberi factor", "vitamin B1"]}, {"answer": "thicket", "hint": "synonyms for thicket", "clues": ["brush", "brushwood", "coppice", "copse", "thicket"]}, {"answer": "thievery", "hint": "synonyms for thievery", "clues": ["larceny", "stealing", "thieving", "theft", "thievery"]}, {"answer": "thigh-slapper", "hint": "synonyms for thigh-slapper", "clues": ["scream", "riot", "howler", "sidesplitter", "belly laugh", "wow", "thigh-slapper"]}, {"answer": "thingamabob", "hint": "synonyms for thingamabob", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingamajig", "hint": "synonyms for thingamajig", "clues": ["thingumabob", "gubbins", "whatchamacallit", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingumajig", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingmabob", "hint": "synonyms for thingmabob", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingmajig", "hint": "synonyms for thingmajig", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingumabob", "hint": "synonyms for thingumabob", "clues": ["gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "thingamabob", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingumajig", "hint": "synonyms for thingumajig", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "thingummy", "hint": "synonyms for thingummy", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "whatsis", "gimmick", "thingummy"]}, {"answer": "thinness", "hint": "synonyms for thinness", "clues": ["slenderness", "sparsity", "fineness", "leanness", "tenuity", "sparseness", "thinness"]}, {"answer": "third_baron_rayleigh", "hint": "synonyms for third baron rayleigh", "clues": ["Rayleigh", "Lord Rayleigh", "Third Baron Rayleigh", "John William Strutt"]}, {"answer": "third_tonsil", "hint": "synonyms for third tonsil", "clues": ["Luschka's tonsil", "adenoid", "tonsilla adenoidea", "pharyngeal tonsil", "tonsilla pharyngealis", "third tonsil"]}, {"answer": "thirstiness", "hint": "synonyms for thirstiness", "clues": ["thirst", "hunger", "hungriness", "aridity", "aridness", "thirstiness"]}, {"answer": "thirties", "hint": "synonyms for thirties", "clues": ["thirty-something", "mid-thirties", "thirty", "XXX", "1930s", "30", "thirties"]}, {"answer": "thole", "hint": "synonyms for thole", "clues": ["oarlock", "pin", "peg", "rowlock", "tholepin", "thole"]}, {"answer": "tholepin", "hint": "synonyms for tholepin", "clues": ["oarlock", "pin", "peg", "rowlock", "thole", "tholepin"]}, {"answer": "thomas", "hint": "synonyms for thomas", "clues": ["Dylan Thomas", "Thomas the doubting Apostle", "Seth Thomas", "Lowell Jackson Thomas", "Thomas", "Lowell Thomas", "doubting Thomas", "Saint Thomas", "Norman Mattoon Thomas", "Norman Thomas", "Dylan Marlais Thomas"]}, {"answer": "thomas_aquinas", "hint": "synonyms for thomas aquinas", "clues": ["Saint Thomas Aquinas", "Saint Thomas", "Thomas Aquinas", "St. Thomas", "Aquinas"]}, {"answer": "thomas_babington_macaulay", "hint": "synonyms for thomas babington macaulay", "clues": ["Macaulay", "First Baron Macaulay", "Thomas Babington Macaulay", "Lord Macaulay"]}, {"answer": "thomas_edward_lawrence", "hint": "synonyms for thomas edward lawrence", "clues": ["T. E. Lawrence", "Thomas Edward Lawrence", "Lawrence of Arabia", "Lawrence"]}, {"answer": "thomas_j._jackson", "hint": "synonyms for thomas j. jackson", "clues": ["Thomas J. Jackson", "Jackson", "Thomas Jonathan Jackson", "Stonewall Jackson"]}, {"answer": "thomas_jackson", "hint": "synonyms for thomas jackson", "clues": ["Thomas J. Jackson", "Jackson", "Thomas Jonathan Jackson", "Stonewall Jackson"]}, {"answer": "thomas_jonathan_jackson", "hint": "synonyms for thomas jonathan jackson", "clues": ["Thomas J. Jackson", "Jackson", "Thomas Jonathan Jackson", "Stonewall Jackson"]}, {"answer": "thomas_the_doubting_apostle", "hint": "synonyms for thomas the doubting apostle", "clues": ["Thomas", "doubting Thomas", "Saint Thomas", "Thomas the doubting Apostle", "St. Thomas"]}, {"answer": "thomas_wolfe", "hint": "synonyms for thomas wolfe", "clues": ["Thomas Kennerly Wolfe Jr.", "Tom Wolfe", "Wolfe", "Thomas Clayton Wolfe"]}, {"answer": "thomas_woodrow_wilson", "hint": "synonyms for thomas woodrow wilson", "clues": ["Wilson", "Woodrow Wilson", "President Wilson", "Thomas Woodrow Wilson"]}, {"answer": "thompson", "hint": "synonyms for thompson", "clues": ["Homer Armstrong Thompson", "Homer A. Thompson", "Thompson", "Benjamin Thompson", "Count Rumford"]}, {"answer": "thomson", "hint": "synonyms for thomson", "clues": ["George Paget Thomson", "Thomson", "Joseph John Thomson", "Virgil Thomson", "Elihu Thomson", "Virgil Garnett Thomson"]}, {"answer": "thorniness", "hint": "synonyms for thorniness", "clues": ["tartness", "bristliness", "bitterness", "prickliness", "acrimony", "spininess", "jaundice", "acerbity", "thorniness"]}, {"answer": "thou", "hint": "synonyms for thou", "clues": ["grand", "chiliad", "M", "K", "thousand", "yard", "G", "one thousand", "1000", "thou"]}, {"answer": "thought", "hint": "synonyms for thought", "clues": ["view", "intellection", "persuasion", "idea", "thinking", "mentation", "thought process", "sentiment", "opinion", "cerebration", "thought"]}, {"answer": "thought_process", "hint": "synonyms for thought process", "clues": ["thought", "intellection", "thinking", "mentation", "cerebration", "thought process"]}, {"answer": "thoughtfulness", "hint": "synonyms for thoughtfulness", "clues": ["reflexion", "rumination", "reflection", "musing", "consideration", "considerateness", "contemplation", "thoughtfulness"]}, {"answer": "thraldom", "hint": "synonyms for thraldom", "clues": ["bondage", "thrall", "slavery", "thralldom"]}, {"answer": "thrall", "hint": "synonyms for thrall", "clues": ["bondage", "slavery", "thralldom", "thrall"]}, {"answer": "thralldom", "hint": "synonyms for thralldom", "clues": ["bondage", "thrall", "slavery", "thraldom"]}, {"answer": "thrashing", "hint": "synonyms for thrashing", "clues": ["licking", "lacing", "trouncing", "walloping", "slaughter", "beating", "debacle", "drubbing", "whipping", "whacking", "thrashing"]}, {"answer": "thread", "hint": "synonyms for thread", "clues": ["screw thread", "train of thought", "ribbon", "yarn", "thread"]}, {"answer": "threads", "hint": "synonyms for threads", "clues": ["screw thread", "train of thought", "duds", "thread", "ribbon", "togs", "yarn"]}, {"answer": "three_kings'_day", "hint": "synonyms for three kings' day", "clues": ["Three Kings' Day", "Epiphany of Our Lord", "Epiphany", "Twelfth day", "January 6"]}, {"answer": "threesome", "hint": "synonyms for threesome", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "threesome"]}, {"answer": "threnody", "hint": "synonyms for threnody", "clues": ["dirge", "requiem", "lament", "coronach", "threnody"]}, {"answer": "threshold", "hint": "synonyms for threshold", "clues": ["doorstep", "door", "doorsill", "verge", "room access", "limen", "doorway", "brink", "threshold"]}, {"answer": "thrill", "hint": "synonyms for thrill", "clues": ["shiver", "rush", "flush", "shudder", "boot", "bang", "frisson", "chill", "kick", "charge", "quiver", "tingle", "thrill"]}, {"answer": "throat_infection", "hint": "synonyms for throat infection", "clues": ["septic sore throat", "streptococcus tonsilitis", "strep throat", "streptococcal sore throat", "throat infection"]}, {"answer": "throne", "hint": "synonyms for throne", "clues": ["commode", "crapper", "stool", "toilet", "pot", "can", "potty", "throne"]}, {"answer": "throttle", "hint": "synonyms for throttle", "clues": ["accelerator", "accelerator pedal", "gun", "gas pedal", "throttle valve", "gas", "throttle"]}, {"answer": "throttler", "hint": "synonyms for throttler", "clues": ["strangler", "garroter", "choker", "throttler"]}, {"answer": "throughway", "hint": "synonyms for throughway", "clues": ["motorway", "thruway", "pike", "freeway", "superhighway", "state highway", "expressway", "throughway"]}, {"answer": "throwing_stick", "hint": "synonyms for throwing stick", "clues": ["dart thrower", "boomerang", "throw stick", "spear thrower", "throwing board"]}, {"answer": "thrust", "hint": "synonyms for thrust", "clues": ["stab", "poking", "thrusting", "push", "jabbing", "jab", "poke", "knife thrust", "driving force", "drive"]}, {"answer": "thrusting", "hint": "synonyms for thrusting", "clues": ["poking", "jabbing", "poke", "thrust", "jab"]}, {"answer": "thruway", "hint": "synonyms for thruway", "clues": ["motorway", "pike", "freeway", "superhighway", "throughway", "state highway", "expressway", "thruway"]}, {"answer": "thud", "hint": "synonyms for thud", "clues": ["clunk", "thumping", "clump", "thud"]}, {"answer": "thug", "hint": "synonyms for thug", "clues": ["hoodlum", "toughie", "punk", "goon", "tough", "strong-armer", "hood", "thug"]}, {"answer": "thumbnut", "hint": "synonyms for thumbnut", "clues": ["butterfly nut", "wing screw", "wing-nut", "thumbnut"]}, {"answer": "thump", "hint": "synonyms for thump", "clues": ["clunk", "thumping", "thud", "clump"]}, {"answer": "thunder", "hint": "synonyms for thunder", "clues": ["nose drops", "hell dust", "smack", "skag", "boom", "scag", "roar", "big H", "thunder"]}, {"answer": "thunderbolt", "hint": "synonyms for thunderbolt", "clues": ["bolt", "bombshell", "bolt of lightning", "thunderclap", "thunderbolt"]}, {"answer": "thwarter", "hint": "synonyms for thwarter", "clues": ["obstructor", "obstructionist", "resister", "thwarter"]}, {"answer": "thyroid-stimulating_hormone", "hint": "synonyms for thyroid-stimulating hormone", "clues": ["thyrotrophic hormone", "thyrotrophin", "TSH", "thyroid-stimulating hormone"]}, {"answer": "thyrotrophic_hormone", "hint": "synonyms for thyrotrophic hormone", "clues": ["thyrotropic hormone", "thyroid-stimulating hormone", "thyrotrophin", "TSH"]}, {"answer": "thyrotrophin", "hint": "synonyms for thyrotrophin", "clues": ["thyrotrophic hormone", "thyroid-stimulating hormone", "thyrotropin", "TSH"]}, {"answer": "thyrotropic_hormone", "hint": "synonyms for thyrotropic hormone", "clues": ["thyrotrophic hormone", "thyroid-stimulating hormone", "thyrotrophin", "TSH"]}, {"answer": "thyrotropin", "hint": "synonyms for thyrotropin", "clues": ["thyrotrophic hormone", "thyroid-stimulating hormone", "thyrotrophin", "TSH"]}, {"answer": "thyrotropin-releasing_factor", "hint": "synonyms for thyrotropin-releasing factor", "clues": ["protirelin", "TRH", "TRF", "thyrotropin-releasing hormone", "thyrotropin-releasing factor"]}, {"answer": "thyrotropin-releasing_hormone", "hint": "synonyms for thyrotropin-releasing hormone", "clues": ["protirelin", "TRH", "thyrotropin-releasing factor", "TRF", "thyrotropin-releasing hormone"]}, {"answer": "ti", "hint": "synonyms for ti", "clues": ["te", "si", "atomic number 22", "titanium", "Ti"]}, {"answer": "tib", "hint": "synonyms for tib", "clues": ["tebibyte", "terabyte", "TiB", "TB"]}, {"answer": "tibia_vara", "hint": "synonyms for tibia vara", "clues": ["bow leg", "bandy leg", "genu varum", "tibia vara"]}, {"answer": "tic-tac-toe", "hint": "synonyms for tic-tac-toe", "clues": ["ticktacktoe", "tit-tat-toe", "noughts and crosses", "tic-tac-toe"]}, {"answer": "tick-tack-toe", "hint": "synonyms for tick-tack-toe", "clues": ["ticktacktoe", "tic-tac-toe", "tit-tat-toe", "noughts and crosses"]}, {"answer": "ticker", "hint": "synonyms for ticker", "clues": ["stock ticker", "pump", "watch", "heart", "ticker"]}, {"answer": "ticktacktoe", "hint": "synonyms for ticktacktoe", "clues": ["tick-tack-toe", "tit-tat-toe", "noughts and crosses", "ticktacktoo"]}, {"answer": "ticktacktoo", "hint": "synonyms for ticktacktoo", "clues": ["ticktacktoe", "tic-tac-toe", "tit-tat-toe", "noughts and crosses"]}, {"answer": "tidal_bore", "hint": "synonyms for tidal bore", "clues": ["eagre", "eager", "bore", "aegir", "tidal bore"]}, {"answer": "tiddler", "hint": "synonyms for tiddler", "clues": ["fry", "nipper", "shaver", "nestling", "youngster", "tike", "minor", "tyke", "kid", "small fry", "child", "tiddler"]}, {"answer": "tide_rip", "hint": "synonyms for tide rip", "clues": ["countercurrent", "rip", "riptide", "crosscurrent", "tide rip"]}, {"answer": "tidy_sum", "hint": "synonyms for tidy sum", "clues": ["great deal", "mint", "peck", "quite a little", "hatful", "deal", "mountain", "pot", "good deal", "passel", "mass", "pile", "stack", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "wad", "heap", "mickle", "flock", "tidy sum"]}, {"answer": "tie", "hint": "synonyms for tie", "clues": ["standoff", "necktie", "sleeper", "link", "tie-in", "association", "tie-up", "draw", "affiliation", "linkup", "railroad tie", "crosstie", "tie beam", "tie"]}, {"answer": "tie-up", "hint": "synonyms for tie-up", "clues": ["tie", "association", "stand", "standstill", "affiliation", "tie-up"]}, {"answer": "tierce", "hint": "synonyms for tierce", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "third", "leash", "trinity", "one-third", "terzetto", "trio", "trine", "threesome", "three", "triplet", "trey", "troika", "deuce-ace", "tierce"]}, {"answer": "tiff", "hint": "synonyms for tiff", "clues": ["spat", "bickering", "squabble", "pettifoggery", "fuss", "tiff"]}, {"answer": "tigers", "hint": "synonyms for tigers", "clues": ["World Tamil Association", "Tamil Tigers", "tiger", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "tightfistedness", "hint": "synonyms for tightfistedness", "clues": ["niggardness", "parsimony", "minginess", "tightness", "parsimoniousness", "meanness", "closeness", "tightfistedness"]}, {"answer": "tightness", "hint": "synonyms for tightness", "clues": ["denseness", "niggardness", "parsimony", "minginess", "tautness", "parsimoniousness", "tightfistedness", "concentration", "density", "meanness", "closeness", "stringency", "constriction", "compactness", "tightness"]}, {"answer": "tike", "hint": "synonyms for tike", "clues": ["nipper", "Goth", "churl", "tyke", "fry", "youngster", "child", "shaver", "nestling", "minor", "peasant", "tiddler", "kid", "small fry", "boor", "barbarian", "tike"]}, {"answer": "till", "hint": "synonyms for till", "clues": ["public treasury", "trough", "boulder clay", "cashbox", "money box", "till"]}, {"answer": "tillage", "hint": "synonyms for tillage", "clues": ["tilled land", "cultivated land", "tilth", "plowland", "ploughland", "farmland", "tillage"]}, {"answer": "tilled_land", "hint": "synonyms for tilled land", "clues": ["tillage", "cultivated land", "tilth", "plowland", "ploughland", "farmland", "tilled land"]}, {"answer": "tilt", "hint": "synonyms for tilt", "clues": ["contention", "careen", "leaning", "joust", "disceptation", "rock", "sway", "inclination", "list", "argument", "arguing", "contestation", "controversy", "tilt"]}, {"answer": "tilth", "hint": "synonyms for tilth", "clues": ["tillage", "cultivated land", "tilled land", "plowland", "ploughland", "farmland", "tilth"]}, {"answer": "tilting_board", "hint": "synonyms for tilting board", "clues": ["teeterboard", "dandle board", "seesaw", "teeter", "teeter-totter", "tilting board"]}, {"answer": "tim_leary", "hint": "synonyms for tim leary", "clues": ["Timothy Francis Leary", "Tim Leary", "Leary", "Timothy Leary"]}, {"answer": "timber", "hint": "synonyms for timber", "clues": ["forest", "quality", "timbre", "timberland", "lumber", "tone", "woodland", "timber"]}, {"answer": "time", "hint": "synonyms for time", "clues": ["sentence", "clip", "fourth dimension", "meter", "metre", "clock time", "prison term", "time"]}, {"answer": "time-and-motion_study", "hint": "synonyms for time-and-motion study", "clues": ["time study", "motion study", "time-motion study", "time and motion study", "work study"]}, {"answer": "time-motion_study", "hint": "synonyms for time-motion study", "clues": ["time study", "motion study", "time and motion study", "work study", "time-motion study"]}, {"answer": "time_and_motion_study", "hint": "synonyms for time and motion study", "clues": ["time study", "motion study", "time-motion study", "work study", "time and motion study"]}, {"answer": "time_lag", "hint": "synonyms for time lag", "clues": ["hold", "postponement", "wait", "delay", "time lag"]}, {"answer": "time_study", "hint": "synonyms for time study", "clues": ["motion study", "time-motion study", "time and motion study", "work study", "time study"]}, {"answer": "times", "hint": "synonyms for times", "clues": ["clip", "multiplication", "meter", "sentence", "fourth dimension", "time", "metre", "clock time", "prison term"]}, {"answer": "timothy_francis_leary", "hint": "synonyms for timothy francis leary", "clues": ["Timothy Francis Leary", "Tim Leary", "Leary", "Timothy Leary"]}, {"answer": "timothy_leary", "hint": "synonyms for timothy leary", "clues": ["Timothy Francis Leary", "Tim Leary", "Leary", "Timothy Leary"]}, {"answer": "timpani", "hint": "synonyms for timpani", "clues": ["kettle", "tympani", "kettledrum", "tympanum"]}, {"answer": "timur", "hint": "synonyms for timur", "clues": ["Tamburlaine", "Timur", "Tamerlane", "Timur Lenk"]}, {"answer": "timur_lenk", "hint": "synonyms for timur lenk", "clues": ["Tamburlaine", "Timur", "Tamerlane", "Timur Lenk"]}, {"answer": "tin", "hint": "synonyms for tin", "clues": ["atomic number 50", "canister", "tin can", "Sn", "can", "tin"]}, {"answer": "tincture", "hint": "synonyms for tincture", "clues": ["shadow", "trace", "shade", "tint", "vestige", "tone", "tincture"]}, {"answer": "tinder", "hint": "synonyms for tinder", "clues": ["punk", "touchwood", "kindling", "tinder"]}, {"answer": "tinge", "hint": "synonyms for tinge", "clues": ["mite", "undertone", "hint", "pinch", "jot", "speck", "soupcon", "touch", "tinge"]}, {"answer": "tingle", "hint": "synonyms for tingle", "clues": ["thrill", "shudder", "chill", "tingling", "shiver", "quiver", "prickling", "frisson", "tingle"]}, {"answer": "tininess", "hint": "synonyms for tininess", "clues": ["minuteness", "diminutiveness", "weeness", "petiteness", "tininess"]}, {"answer": "tinker's_dam", "hint": "synonyms for tinker's dam", "clues": ["shucks", "shit", "darn", "hoot", "tinker's damn", "damn", "red cent"]}, {"answer": "tinker's_damn", "hint": "synonyms for tinker's damn", "clues": ["shucks", "darn", "hoot", "shit", "damn", "red cent", "tinker's dam"]}, {"answer": "tip", "hint": "synonyms for tip", "clues": ["pourboire", "crest", "confidential information", "hint", "wind", "summit", "top", "bakshis", "baksheesh", "steer", "crown", "lead", "gratuity", "point", "peak", "tip"]}, {"answer": "tip_truck", "hint": "synonyms for tip truck", "clues": ["tipper lorry", "dumper", "tipper", "tipper truck", "dump truck"]}, {"answer": "tipper", "hint": "synonyms for tipper", "clues": ["tip truck", "tipper lorry", "dumper", "dump truck", "tipper"]}, {"answer": "tipper_lorry", "hint": "synonyms for tipper lorry", "clues": ["tip truck", "dumper", "tipper", "dump truck", "tipper lorry"]}, {"answer": "tipper_truck", "hint": "synonyms for tipper truck", "clues": ["tip truck", "tipper lorry", "dumper", "tipper", "dump truck"]}, {"answer": "tipsiness", "hint": "synonyms for tipsiness", "clues": ["drunkenness", "inebriety", "inebriation", "intoxication", "insobriety", "tipsiness"]}, {"answer": "tiro", "hint": "synonyms for tiro", "clues": ["initiate", "novice", "tyro", "beginner", "tiro"]}, {"answer": "tit", "hint": "synonyms for tit", "clues": ["titty", "boob", "knocker", "nipple", "breast", "pap", "teat", "mammilla", "bosom", "tit"]}, {"answer": "tit-tat-toe", "hint": "synonyms for tit-tat-toe", "clues": ["ticktacktoe", "tic-tac-toe", "noughts and crosses", "tit-tat-toe"]}, {"answer": "titan", "hint": "synonyms for titan", "clues": ["Titan", "giant", "colossus", "heavyweight", "behemoth"]}, {"answer": "title", "hint": "synonyms for title", "clues": ["form of address", "claim", "title of respect", "rubric", "statute title", "deed of conveyance", "championship", "deed", "title"]}, {"answer": "tittle", "hint": "synonyms for tittle", "clues": ["smidgin", "iota", "smidge", "shred", "whit", "scintilla", "tittle"]}, {"answer": "tittle-tattle", "hint": "synonyms for tittle-tattle", "clues": ["small talk", "chin-wagging", "chitchat", "gabfest", "causerie", "chin-wag", "gossip", "gab", "tittle-tattle"]}, {"answer": "titty", "hint": "synonyms for titty", "clues": ["boob", "knocker", "breast", "bosom", "tit", "titty"]}, {"answer": "titus", "hint": "synonyms for titus", "clues": ["Titus", "Titus Vespasianus Augustus", "Epistle of Paul the Apostle to Titus", "Epistle to Titus", "Titus Flavius Vespasianus"]}, {"answer": "tizzy", "hint": "synonyms for tizzy", "clues": ["flap", "dither", "pother", "fuss", "tizzy"]}, {"answer": "to-do", "hint": "synonyms for to-do", "clues": ["hurly burly", "commotion", "kerfuffle", "disturbance", "flutter", "hoo-ha", "disruption", "to-do"]}, {"answer": "toady", "hint": "synonyms for toady", "clues": ["crawler", "lackey", "ass-kisser", "sycophant", "toady"]}, {"answer": "tobin_bronze", "hint": "synonyms for tobin bronze", "clues": ["Admiralty Metal", "naval brass", "Admiralty brass", "Tobin bronze"]}, {"answer": "todd", "hint": "synonyms for todd", "clues": ["Lord Todd", "Todd", "Sir Alexander Robertus Todd", "Sweeney Todd"]}, {"answer": "toffee_apple", "hint": "synonyms for toffee apple", "clues": ["taffy apple", "candy apple", "caramel apple", "candied apple", "toffee apple"]}, {"answer": "tofranil", "hint": "synonyms for tofranil", "clues": ["Imavate", "impramine hydrochloride", "imipramine", "Tofranil"]}, {"answer": "toilet", "hint": "synonyms for toilet", "clues": ["bathroom", "john", "lavatory", "toilette", "pot", "privy", "potty", "commode", "lav", "sewer", "stool", "throne", "gutter", "can", "crapper"]}, {"answer": "toilet_facility", "hint": "synonyms for toilet facility", "clues": ["public toilet", "wash room", "public lavatory", "public convenience", "comfort station", "convenience", "restroom", "toilet facility"]}, {"answer": "tokio", "hint": "synonyms for tokio", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "tokyo", "hint": "synonyms for tokyo", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "tolerance", "hint": "synonyms for tolerance", "clues": ["leeway", "permissiveness", "margin", "allowance", "tolerance"]}, {"answer": "toll_agent", "hint": "synonyms for toll agent", "clues": ["toller", "toll collector", "toll taker", "tollkeeper", "tollgatherer", "tollman", "toll agent"]}, {"answer": "toll_collector", "hint": "synonyms for toll collector", "clues": ["toll agent", "toller", "toll taker", "tollkeeper", "tollgatherer", "tollman", "toll collector"]}, {"answer": "toll_taker", "hint": "synonyms for toll taker", "clues": ["toll agent", "toller", "toll collector", "tollkeeper", "tollgatherer", "tollman", "toll taker"]}, {"answer": "toller", "hint": "synonyms for toller", "clues": ["toll agent", "tollman", "toll collector", "bell ringer", "toll taker", "tollkeeper", "ringer", "tollgatherer", "toller"]}, {"answer": "tollgatherer", "hint": "synonyms for tollgatherer", "clues": ["toll agent", "toller", "toll collector", "toll taker", "tollkeeper", "tollman", "tollgatherer"]}, {"answer": "tollkeeper", "hint": "synonyms for tollkeeper", "clues": ["toll agent", "toller", "toll collector", "toll taker", "tollgatherer", "tollman", "tollkeeper"]}, {"answer": "tollman", "hint": "synonyms for tollman", "clues": ["toll agent", "toller", "toll collector", "toll taker", "tollkeeper", "tollgatherer", "tollman"]}, {"answer": "tomfool", "hint": "synonyms for tomfool", "clues": ["saphead", "muggins", "fool", "sap", "tomfool"]}, {"answer": "tomfoolery", "hint": "synonyms for tomfoolery", "clues": ["foolery", "lunacy", "craziness", "indulgence", "folly", "tomfoolery"]}, {"answer": "tommyrot", "hint": "synonyms for tommyrot", "clues": ["tarradiddle", "tosh", "baloney", "bilgewater", "bosh", "drool", "twaddle", "humbug", "tommyrot"]}, {"answer": "ton", "hint": "synonyms for ton", "clues": ["short ton", "net ton", "gross ton", "long ton", "ton"]}, {"answer": "tone", "hint": "synonyms for tone", "clues": ["flavour", "look", "shade", "note", "tint", "tonus", "musical note", "whole tone", "whole step", "tonicity", "timber", "smell", "tincture", "step", "spirit", "tone of voice", "feel", "quality", "timbre", "pure tone", "tone"]}, {"answer": "tongue", "hint": "synonyms for tongue", "clues": ["glossa", "natural language", "knife", "spit", "clapper", "lingua", "tongue"]}, {"answer": "tons", "hint": "synonyms for tons", "clues": ["ton", "gobs", "rafts", "lashings", "gross ton", "oodles", "long ton", "dozens", "short ton", "scads", "slews", "heaps", "lots", "net ton", "wads", "scores", "stacks", "loads", "piles"]}, {"answer": "tonsilla_adenoidea", "hint": "synonyms for tonsilla adenoidea", "clues": ["Luschka's tonsil", "adenoid", "pharyngeal tonsil", "tonsilla pharyngealis", "third tonsil", "tonsilla adenoidea"]}, {"answer": "tonsilla_pharyngealis", "hint": "synonyms for tonsilla pharyngealis", "clues": ["Luschka's tonsil", "adenoid", "tonsilla adenoidea", "pharyngeal tonsil", "third tonsil", "tonsilla pharyngealis"]}, {"answer": "tool", "hint": "synonyms for tool", "clues": ["peter", "creature", "puppet", "shaft", "cock", "pecker", "instrument", "prick", "dick", "putz", "tool"]}, {"answer": "tooshie", "hint": "synonyms for tooshie", "clues": ["fundament", "rear end", "tush", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "can", "tooshie"]}, {"answer": "toot", "hint": "synonyms for toot", "clues": ["booze-up", "bender", "carousal", "carouse", "toot"]}, {"answer": "top_boot", "hint": "synonyms for top boot", "clues": ["combat boot", "desert boot", "half boot", "buskin", "top boot"]}, {"answer": "top_executive", "hint": "synonyms for top executive", "clues": ["king", "business leader", "baron", "power", "tycoon", "mogul", "magnate", "big businessman", "top executive"]}, {"answer": "top_hat", "hint": "synonyms for top hat", "clues": ["high hat", "silk hat", "beaver", "stovepipe", "opera hat", "topper", "dress hat", "top hat"]}, {"answer": "topee", "hint": "synonyms for topee", "clues": ["topi", "pith helmet", "pith hat", "sun helmet", "topee"]}, {"answer": "toper's_nose", "hint": "synonyms for toper's nose", "clues": ["brandy nose", "hammer nose", "rum-blossom", "potato nose", "hypertrophic rosacea", "rum nose", "rhinophyma", "copper nose", "toper's nose"]}, {"answer": "topi", "hint": "synonyms for topi", "clues": ["topee", "pith helmet", "pith hat", "sun helmet", "topi"]}, {"answer": "topic", "hint": "synonyms for topic", "clues": ["matter", "theme", "issue", "subject", "topic"]}, {"answer": "topology", "hint": "synonyms for topology", "clues": ["network topology", "topographic anatomy", "regional anatomy", "analysis situs", "topology"]}, {"answer": "topper", "hint": "synonyms for topper", "clues": ["high hat", "top hat", "beaver", "dress hat", "silk hat", "opera hat", "stovepipe", "best", "topper"]}, {"answer": "topsy-turvydom", "hint": "synonyms for topsy-turvydom", "clues": ["bedlam", "pandemonium", "chaos", "topsy-turvyness", "topsy-turvydom"]}, {"answer": "topsy-turvyness", "hint": "synonyms for topsy-turvyness", "clues": ["topsy-turvydom", "bedlam", "pandemonium", "chaos", "topsy-turvyness"]}, {"answer": "topv", "hint": "synonyms for topv", "clues": ["TOPV", "Sabin vaccine", "oral poliovirus vaccine", "trivalent live oral poliomyelitis vaccine"]}, {"answer": "torment", "hint": "synonyms for torment", "clues": ["anguish", "harassment", "worrying", "curse", "bedevilment", "torture", "badgering", "agony", "torment"]}, {"answer": "tornado_lantern", "hint": "synonyms for tornado lantern", "clues": ["hurricane lamp", "storm lamp", "hurricane lantern", "storm lantern", "tornado lantern"]}, {"answer": "torpedo", "hint": "synonyms for torpedo", "clues": ["gun for hire", "submarine", "hired gun", "bomber", "Cuban sandwich", "grinder", "wedge", "gunslinger", "submarine sandwich", "gunman", "hero sandwich", "Italian sandwich", "hit man", "poor boy", "zep", "hoagy", "sub", "shooter", "hoagie", "gun", "hero", "triggerman", "torpedo"]}, {"answer": "torrent", "hint": "synonyms for torrent", "clues": ["downpour", "violent stream", "inundation", "cloudburst", "flood", "deluge", "pelter", "soaker", "waterspout", "torrent"]}, {"answer": "torsion", "hint": "synonyms for torsion", "clues": ["torque", "tortuosity", "contortion", "tortuousness", "crookedness", "torsion"]}, {"answer": "tortuosity", "hint": "synonyms for tortuosity", "clues": ["torsion", "tortuousness", "contortion", "crookedness", "tortuosity"]}, {"answer": "tortuousness", "hint": "synonyms for tortuousness", "clues": ["tortuosity", "complicatedness", "contortion", "complication", "knottiness", "torsion", "crookedness", "tortuousness"]}, {"answer": "torture", "hint": "synonyms for torture", "clues": ["anguish", "twisting", "distortion", "torturing", "overrefinement", "torment", "straining", "agony", "torture"]}, {"answer": "tosh", "hint": "synonyms for tosh", "clues": ["tommyrot", "tarradiddle", "baloney", "bilgewater", "bosh", "drool", "twaddle", "humbug", "tosh"]}, {"answer": "total_darkness", "hint": "synonyms for total darkness", "clues": ["pitch blackness", "black", "lightlessness", "blackness", "total darkness"]}, {"answer": "totaliser", "hint": "synonyms for totaliser", "clues": ["totalizer", "totalizator", "pari-mutuel machine", "adding machine"]}, {"answer": "totalitarianism", "hint": "synonyms for totalitarianism", "clues": ["one-man rule", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "totalism", "dictatorship", "tyranny", "authoritarianism", "absolutism", "totalitarianism"]}, {"answer": "totality", "hint": "synonyms for totality", "clues": ["total", "entireness", "aggregate", "sum", "entirety", "integrality", "totality"]}, {"answer": "totalizer", "hint": "synonyms for totalizer", "clues": ["totaliser", "totalizator", "pari-mutuel machine", "adding machine"]}, {"answer": "totten_trust", "hint": "synonyms for totten trust", "clues": ["trust account", "Totten trust", "savings account trust", "savings bank trust"]}, {"answer": "touch", "hint": "synonyms for touch", "clues": ["mite", "sense of touch", "hint", "signature", "speck", "touching", "touch sensation", "jot", "soupcon", "skin senses", "tactile sensation", "touch modality", "pinch", "spot", "cutaneous senses", "trace", "ghost", "tinge", "feeling", "contact"]}, {"answer": "touch_modality", "hint": "synonyms for touch modality", "clues": ["cutaneous senses", "skin senses", "sense of touch", "touch", "touch modality"]}, {"answer": "touch_sensation", "hint": "synonyms for touch sensation", "clues": ["feeling", "tactual sensation", "touch", "touch sensation"]}, {"answer": "touchwood", "hint": "synonyms for touchwood", "clues": ["punk", "kindling", "tinder", "touchwood"]}, {"answer": "toughie", "hint": "synonyms for toughie", "clues": ["stumper", "poser", "punk", "thug", "strong-armer", "sticker", "tough", "goon", "hoodlum", "hood", "toughie"]}, {"answer": "toughness", "hint": "synonyms for toughness", "clues": ["temper", "huskiness", "formidability", "stamina", "staying power", "ruggedness", "toughness"]}, {"answer": "tour", "hint": "synonyms for tour", "clues": ["go", "hitch", "enlistment", "tour of duty", "term of enlistment", "circuit", "turn", "duty tour", "spell", "tour"]}, {"answer": "tour_of_duty", "hint": "synonyms for tour of duty", "clues": ["tour", "hitch", "enlistment", "duty tour", "term of enlistment", "tour of duty"]}, {"answer": "tourer", "hint": "synonyms for tourer", "clues": ["holidaymaker", "touring car", "phaeton", "tourist", "tourer"]}, {"answer": "tourist_court", "hint": "synonyms for tourist court", "clues": ["court", "motor lodge", "motor hotel", "motor inn", "tourist court"]}, {"answer": "tours", "hint": "synonyms for tours", "clues": ["tour", "go", "hitch", "enlistment", "tour of duty", "term of enlistment", "circuit", "turn", "duty tour", "spell"]}, {"answer": "tower", "hint": "synonyms for tower", "clues": ["tugboat", "pillar", "towboat", "tug", "column", "tower"]}, {"answer": "town", "hint": "synonyms for town", "clues": ["townsfolk", "Ithiel Town", "Town", "township", "townspeople"]}, {"answer": "toying", "hint": "synonyms for toying", "clues": ["coquetry", "dalliance", "flirtation", "flirting", "toying"]}, {"answer": "trablous", "hint": "synonyms for trablous", "clues": ["Tripoli", "Tarabulus Ash-Sham", "Tarabulus", "Trablous"]}, {"answer": "trace", "hint": "synonyms for trace", "clues": ["shadow", "tincture", "hint", "ghost", "suggestion", "tracing", "vestige", "touch", "trace"]}, {"answer": "track", "hint": "synonyms for track", "clues": ["caterpillar tread", "cut", "raceway", "racetrack", "data track", "rail", "cartroad", "course", "cart track", "lead", "runway", "path", "running", "racecourse", "track"]}, {"answer": "tract", "hint": "synonyms for tract", "clues": ["piece of land", "piece of ground", "pamphlet", "nerve tract", "parcel of land", "parcel", "pathway", "nerve pathway", "tract"]}, {"answer": "tractor_trailer", "hint": "synonyms for tractor trailer", "clues": ["articulated lorry", "trucking rig", "rig", "trailer truck", "semi", "tractor trailer"]}, {"answer": "trade", "hint": "synonyms for trade", "clues": ["business deal", "barter", "swop", "trade wind", "deal", "patronage", "craft", "swap", "trade"]}, {"answer": "trade_union", "hint": "synonyms for trade union", "clues": ["brotherhood", "union", "trades union", "labor union"]}, {"answer": "trades_union", "hint": "synonyms for trades union", "clues": ["brotherhood", "trade union", "union", "labor union"]}, {"answer": "traducement", "hint": "synonyms for traducement", "clues": ["defamation", "calumniation", "obloquy", "calumny", "hatchet job", "traducement"]}, {"answer": "traducer", "hint": "synonyms for traducer", "clues": ["libeler", "slanderer", "defamer", "vilifier", "maligner", "backbiter", "traducer"]}, {"answer": "trafficker", "hint": "synonyms for trafficker", "clues": ["marketer", "vender", "seller", "vendor", "trafficker"]}, {"answer": "tragedy", "hint": "synonyms for tragedy", "clues": ["calamity", "catastrophe", "disaster", "cataclysm", "tragedy"]}, {"answer": "trailer", "hint": "synonyms for trailer", "clues": ["prevue", "lagger", "poke", "preview", "laggard", "house trailer", "drone", "dawdler", "trailer"]}, {"answer": "trailer_truck", "hint": "synonyms for trailer truck", "clues": ["articulated lorry", "trucking rig", "rig", "tractor trailer", "semi", "trailer truck"]}, {"answer": "train", "hint": "synonyms for train", "clues": ["caravan", "gearing", "power train", "wagon train", "string", "railroad train", "geartrain", "train"]}, {"answer": "train_depot", "hint": "synonyms for train depot", "clues": ["railroad terminal", "train station", "railway station", "railroad station", "train depot"]}, {"answer": "train_station", "hint": "synonyms for train station", "clues": ["railroad terminal", "train depot", "railway station", "railroad station", "train station"]}, {"answer": "training", "hint": "synonyms for training", "clues": ["preparation", "grooming", "education", "breeding", "training"]}, {"answer": "trainman", "hint": "synonyms for trainman", "clues": ["railroader", "railway man", "railroad man", "trainman"]}, {"answer": "traitor", "hint": "synonyms for traitor", "clues": ["treasonist", "double-crosser", "betrayer", "double-dealer", "two-timer", "traitor"]}, {"answer": "tram", "hint": "synonyms for tram", "clues": ["aerial tramway", "tramcar", "streetcar", "trolley car", "ropeway", "tramway", "trolley", "cable tramway", "tram"]}, {"answer": "tramcar", "hint": "synonyms for tramcar", "clues": ["tram", "trolley", "streetcar", "trolley car", "tramcar"]}, {"answer": "trammel", "hint": "synonyms for trammel", "clues": ["shackle", "hamper", "bond", "trammel net", "trammel"]}, {"answer": "tramp", "hint": "synonyms for tramp", "clues": ["hiker", "tramper", "bum", "hiking", "hobo", "swinger", "tramp steamer", "tramp"]}, {"answer": "tramper", "hint": "synonyms for tramper", "clues": ["tramp", "stamper", "trampler", "hiker"]}, {"answer": "tramway", "hint": "synonyms for tramway", "clues": ["aerial tramway", "ropeway", "streetcar track", "tramline", "tram", "cable tramway", "tramway"]}, {"answer": "trandate", "hint": "synonyms for trandate", "clues": ["Trandate", "Normodyne", "labetalol", "labetalol hydrochloride"]}, {"answer": "tranquility", "hint": "synonyms for tranquility", "clues": ["quietness", "repose", "placidity", "quiet", "quietude", "serenity", "tranquillity"]}, {"answer": "tranquilizer", "hint": "synonyms for tranquilizer", "clues": ["ataractic agent", "ataractic drug", "tranquilliser", "antianxiety agent", "ataractic"]}, {"answer": "tranquilliser", "hint": "synonyms for tranquilliser", "clues": ["ataractic agent", "ataractic drug", "tranquillizer", "antianxiety agent", "ataractic"]}, {"answer": "tranquillity", "hint": "synonyms for tranquillity", "clues": ["repose", "quietude", "quietness", "placidity", "tranquility", "quiet", "serenity"]}, {"answer": "tranquillizer", "hint": "synonyms for tranquillizer", "clues": ["ataractic agent", "tranquilliser", "ataractic drug", "antianxiety agent", "ataractic"]}, {"answer": "transactions", "hint": "synonyms for transactions", "clues": ["transaction", "proceedings", "dealings", "minutes"]}, {"answer": "transcription", "hint": "synonyms for transcription", "clues": ["arrangement", "arranging", "recording", "written text", "transcription"]}, {"answer": "transfer", "hint": "synonyms for transfer", "clues": ["transferral", "transference", "transportation", "conveyance", "transport", "transfer of training", "carry-over", "transfer"]}, {"answer": "transfer_rna", "hint": "synonyms for transfer rna", "clues": ["acceptor RNA", "tRNA", "transfer RNA", "soluble RNA"]}, {"answer": "transferral", "hint": "synonyms for transferral", "clues": ["transport", "transfer", "conveyance", "transportation", "transferral"]}, {"answer": "transfiguration", "hint": "synonyms for transfiguration", "clues": ["August 6", "metamorphosis", "Transfiguration of Jesus", "Transfiguration"]}, {"answer": "transience", "hint": "synonyms for transience", "clues": ["brevity", "transiency", "briefness", "transitoriness"]}, {"answer": "transit", "hint": "synonyms for transit", "clues": ["transportation", "passage", "transportation system", "theodolite", "transit"]}, {"answer": "transition", "hint": "synonyms for transition", "clues": ["modulation", "passage", "conversion", "changeover", "transition"]}, {"answer": "translation", "hint": "synonyms for translation", "clues": ["displacement", "transformation", "interlingual rendition", "version", "rendering", "translation"]}, {"answer": "transmission", "hint": "synonyms for transmission", "clues": ["infection", "transmitting", "transmittance", "transmission system", "contagion", "transmittal", "transmission"]}, {"answer": "transplant", "hint": "synonyms for transplant", "clues": ["organ transplant", "transplantation", "graft", "transplant"]}, {"answer": "transport", "hint": "synonyms for transport", "clues": ["transfer", "ecstasy", "rapture", "transferral", "transportation", "tape drive", "tape transport", "conveyance", "exaltation", "shipping", "raptus", "transport"]}, {"answer": "transportation", "hint": "synonyms for transportation", "clues": ["transfer", "Transportation", "exile", "transferral", "expatriation", "fare", "conveyance", "transit", "transport", "deportation", "DoT", "shipping", "Department of Transportation", "transportation system"]}, {"answer": "transporter", "hint": "synonyms for transporter", "clues": ["conveyor", "conveyer belt", "car transporter", "transporter"]}, {"answer": "transposition", "hint": "synonyms for transposition", "clues": ["permutation", "heterotaxy", "replacement", "reversal", "switch", "substitution", "transposition"]}, {"answer": "trap", "hint": "synonyms for trap", "clues": ["ambush", "cakehole", "ambuscade", "yap", "snare", "sand trap", "bunker", "lying in wait", "maw", "gob", "hole", "trap"]}, {"answer": "trappings", "hint": "synonyms for trappings", "clues": ["housing", "trapping", "caparison", "furnishing"]}, {"answer": "trash", "hint": "synonyms for trash", "clues": ["scum", "Methedrine", "glass", "methamphetamine", "shabu", "crank", "deoxyephedrine", "chicken feed", "applesauce", "meth", "tripe", "chalk", "wish-wash", "ice", "methamphetamine hydrochloride", "trumpery", "rubbish", "codswallop", "scrap", "folderol", "trash"]}, {"answer": "trash_barrel", "hint": "synonyms for trash barrel", "clues": ["ash bin", "trash can", "ashcan", "garbage can", "wastebin", "dustbin", "trash barrel"]}, {"answer": "trash_bin", "hint": "synonyms for trash bin", "clues": ["ash bin", "trash can", "ashcan", "garbage can", "trash barrel", "wastebin", "dustbin"]}, {"answer": "trash_can", "hint": "synonyms for trash can", "clues": ["ash bin", "ashcan", "garbage can", "trash barrel", "wastebin", "dustbin", "trash can"]}, {"answer": "trash_dump", "hint": "synonyms for trash dump", "clues": ["dumpsite", "rubbish dump", "garbage dump", "waste-yard", "dump", "trash dump"]}, {"answer": "trash_heap", "hint": "synonyms for trash heap", "clues": ["garbage heap", "trash pile", "refuse heap", "junk heap", "rubbish heap", "scrapheap", "junk pile", "trash heap"]}, {"answer": "trash_pile", "hint": "synonyms for trash pile", "clues": ["garbage heap", "trash heap", "refuse heap", "junk heap", "rubbish heap", "scrapheap", "junk pile", "trash pile"]}, {"answer": "trauma", "hint": "synonyms for trauma", "clues": ["hurt", "harm", "psychic trauma", "injury", "trauma"]}, {"answer": "travail", "hint": "synonyms for travail", "clues": ["labour", "lying-in", "exertion", "elbow grease", "confinement", "effort", "sweat", "childbed", "parturiency", "travail"]}, {"answer": "travel", "hint": "synonyms for travel", "clues": ["locomotion", "travelling", "change of location", "travel"]}, {"answer": "traveling_bag", "hint": "synonyms for traveling bag", "clues": ["travelling bag", "suitcase", "grip", "bag"]}, {"answer": "traveling_salesman", "hint": "synonyms for traveling salesman", "clues": ["roadman", "commercial traveler", "travelling salesman", "bagman"]}, {"answer": "travelling_bag", "hint": "synonyms for travelling bag", "clues": ["suitcase", "grip", "traveling bag", "bag"]}, {"answer": "travelling_salesman", "hint": "synonyms for travelling salesman", "clues": ["roadman", "commercial traveler", "traveling salesman", "bagman"]}, {"answer": "traverse", "hint": "synonyms for traverse", "clues": ["trave", "transom", "crosspiece", "crossbeam", "traversal", "traverse"]}, {"answer": "travesty", "hint": "synonyms for travesty", "clues": ["charade", "pasquinade", "mockery", "put-on", "farce comedy", "sendup", "takeoff", "burlesque", "farce", "parody", "lampoon", "spoof", "travesty"]}, {"answer": "trawl", "hint": "synonyms for trawl", "clues": ["dragnet", "spiller", "setline", "trawl net", "trawl line", "trotline", "trawl"]}, {"answer": "trawl_line", "hint": "synonyms for trawl line", "clues": ["trotline", "trawl", "spiller", "setline", "trawl line"]}, {"answer": "treachery", "hint": "synonyms for treachery", "clues": ["treason", "perfidy", "perfidiousness", "betrayal", "treachery"]}, {"answer": "treacle", "hint": "synonyms for treacle", "clues": ["slop", "mush", "glop", "golden syrup", "treacle"]}, {"answer": "treason", "hint": "synonyms for treason", "clues": ["high treason", "perfidy", "treachery", "lese majesty", "subversiveness", "traitorousness", "betrayal", "treason"]}, {"answer": "treasury", "hint": "synonyms for treasury", "clues": ["exchequer", "United States Treasury", "Treasury Department", "Department of the Treasury", "Treasury obligations", "Treasury", "First Lord of the Treasury"]}, {"answer": "treasury_department", "hint": "synonyms for treasury department", "clues": ["United States Treasury", "Treasury", "Treasury Department", "Department of the Treasury"]}, {"answer": "treat", "hint": "synonyms for treat", "clues": ["goody", "delicacy", "kickshaw", "dainty", "treat"]}, {"answer": "treatment", "hint": "synonyms for treatment", "clues": ["handling", "discussion", "intervention", "discourse", "treatment"]}, {"answer": "trebuchet", "hint": "synonyms for trebuchet", "clues": ["catapult", "arbalest", "onager", "bricole", "trebucket", "ballista", "mangonel"]}, {"answer": "trebucket", "hint": "synonyms for trebucket", "clues": ["catapult", "arbalest", "onager", "bricole", "ballista", "mangonel", "trebuchet"]}, {"answer": "trembles", "hint": "synonyms for trembles", "clues": ["shake", "milk sickness", "tremble", "shiver"]}, {"answer": "trend", "hint": "synonyms for trend", "clues": ["style", "movement", "vogue", "tendency", "drift", "course", "trend"]}, {"answer": "trespass", "hint": "synonyms for trespass", "clues": ["intrusion", "encroachment", "usurpation", "violation", "trespass"]}, {"answer": "trevino", "hint": "synonyms for trevino", "clues": ["Trevino", "Supermex", "Lee Buck Trevino", "Lee Trevino"]}, {"answer": "trey", "hint": "synonyms for trey", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "troika", "deuce-ace", "trey"]}, {"answer": "trf", "hint": "synonyms for trf", "clues": ["protirelin", "TRF", "thyrotropin-releasing hormone", "TRH", "thyrotropin-releasing factor"]}, {"answer": "trh", "hint": "synonyms for trh", "clues": ["protirelin", "TRF", "thyrotropin-releasing hormone", "TRH", "thyrotropin-releasing factor"]}, {"answer": "triad", "hint": "synonyms for triad", "clues": ["tercet", "ternary", "ternion", "III", "3", "leash", "trinity", "terzetto", "triple", "trio", "trine", "common chord", "threesome", "tierce", "three", "trey", "troika", "deuce-ace", "triad"]}, {"answer": "trial", "hint": "synonyms for trial", "clues": ["tryout", "trial run", "tribulation", "test", "run", "visitation", "trial"]}, {"answer": "triangle", "hint": "synonyms for triangle", "clues": ["Triangle", "Triangulum", "trigon", "trilateral"]}, {"answer": "tribe", "hint": "synonyms for tribe", "clues": ["folk", "kinship group", "kin group", "federation of tribes", "kindred", "kin", "clan", "tribe"]}, {"answer": "trice", "hint": "synonyms for trice", "clues": ["flash", "instant", "wink", "jiffy", "New York minute", "split second", "twinkling", "blink of an eye", "heartbeat", "trice"]}, {"answer": "trick", "hint": "synonyms for trick", "clues": ["illusion", "legerdemain", "john", "put-on", "magic trick", "thaumaturgy", "whoremaster", "joke", "deception", "prank", "whoremonger", "conjuration", "magic", "antic", "conjuring trick", "caper", "fast one", "trick"]}, {"answer": "tricker", "hint": "synonyms for tricker", "clues": ["practical joker", "trickster", "hoaxer", "prankster", "cut-up"]}, {"answer": "trickery", "hint": "synonyms for trickery", "clues": ["skulduggery", "wile", "chicane", "jiggery-pokery", "hocus-pocus", "slickness", "hanky panky", "shenanigan", "guile", "trickery"]}, {"answer": "trickster", "hint": "synonyms for trickster", "clues": ["tricker", "cheater", "deceiver", "practical joker", "cheat", "beguiler", "hoaxer", "prankster", "slicker", "cut-up"]}, {"answer": "trifle", "hint": "synonyms for trifle", "clues": ["small beer", "triviality", "technicality", "trivia", "trifle"]}, {"answer": "trigeminal", "hint": "synonyms for trigeminal", "clues": ["trigeminal nerve", "fifth cranial nerve", "trigeminus", "nervus trigeminus", "trigeminal"]}, {"answer": "trigeminal_nerve", "hint": "synonyms for trigeminal nerve", "clues": ["trigeminus", "fifth cranial nerve", "trigeminal", "nervus trigeminus", "trigeminal nerve"]}, {"answer": "trigeminus", "hint": "synonyms for trigeminus", "clues": ["trigeminal nerve", "fifth cranial nerve", "trigeminal", "nervus trigeminus", "trigeminus"]}, {"answer": "triggerman", "hint": "synonyms for triggerman", "clues": ["hit man", "torpedo", "gun for hire", "hired gun", "shooter", "gun", "gunslinger", "gunman", "triggerman"]}, {"answer": "trilby", "hint": "synonyms for trilby", "clues": ["homburg", "fedora", "Trilby", "Stetson", "felt hat"]}, {"answer": "trimmings", "hint": "synonyms for trimmings", "clues": ["trim", "fixings", "passementerie", "clipping", "trimming"]}, {"answer": "trimox", "hint": "synonyms for trimox", "clues": ["amoxicillin", "Amoxil", "Augmentin", "Polymox", "Larotid", "Trimox"]}, {"answer": "trine", "hint": "synonyms for trine", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "threesome", "tierce", "three", "triplet", "trey", "troika", "deuce-ace", "trine"]}, {"answer": "trinitroglycerin", "hint": "synonyms for trinitroglycerin", "clues": ["glyceryl trinitrate", "Nitrospan", "nitroglycerin", "Nitrostat"]}, {"answer": "trinity", "hint": "synonyms for trinity", "clues": ["tercet", "ternary", "ternion", "III", "3", "Trinity", "triad", "leash", "terzetto", "Holy Trinity", "trio", "trine", "Blessed Trinity", "threesome", "tierce", "three", "triplet", "trey", "troika", "Sacred Trinity", "deuce-ace"]}, {"answer": "trinket", "hint": "synonyms for trinket", "clues": ["bangle", "gaud", "gewgaw", "novelty", "bauble", "fallal", "trinket"]}, {"answer": "trio", "hint": "synonyms for trio", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "triple", "trine", "threesome", "tierce", "three", "trey", "troika", "deuce-ace", "trio"]}, {"answer": "trip", "hint": "synonyms for trip", "clues": ["misstep", "slip", "tripper", "trip-up", "stumble", "head trip", "trip"]}, {"answer": "tripe", "hint": "synonyms for tripe", "clues": ["wish-wash", "trumpery", "trash", "rubbish", "codswallop", "applesauce", "folderol", "tripe"]}, {"answer": "triplet", "hint": "synonyms for triplet", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "triple", "trio", "trine", "threesome", "tierce", "three", "trey", "troika", "deuce-ace"]}, {"answer": "tripoli", "hint": "synonyms for tripoli", "clues": ["Trablous", "rottenstone", "Tarabulus Al-Gharb", "capital of Libya", "Tarabulus Ash-Sham", "Tripoli", "Tarabulus"]}, {"answer": "tripper", "hint": "synonyms for tripper", "clues": ["excursionist", "stumbler", "trip", "rubberneck", "sightseer", "tripper"]}, {"answer": "triquetral", "hint": "synonyms for triquetral", "clues": ["triquetral bone", "cuneiform bone", "pyramidal bone", "os triquetrum", "triquetral"]}, {"answer": "triquetral_bone", "hint": "synonyms for triquetral bone", "clues": ["triquetral", "cuneiform bone", "pyramidal bone", "os triquetrum", "triquetral bone"]}, {"answer": "trivalent_live_oral_poliomyelitis_vaccine", "hint": "synonyms for trivalent live oral poliomyelitis vaccine", "clues": ["oral poliovirus vaccine", "OPV", "Sabin vaccine", "trivalent live oral poliomyelitis vaccine"]}, {"answer": "trivia", "hint": "synonyms for trivia", "clues": ["small beer", "trifle", "triviality", "trivium", "trivia"]}, {"answer": "triviality", "hint": "synonyms for triviality", "clues": ["small beer", "slightness", "technicality", "puniness", "trifle", "pettiness", "trivia", "triviality"]}, {"answer": "trna", "hint": "synonyms for trna", "clues": ["acceptor RNA", "tRNA", "transfer RNA", "soluble RNA"]}, {"answer": "troglodyte", "hint": "synonyms for troglodyte", "clues": ["hermit", "solitudinarian", "cave man", "recluse", "solitary", "cave dweller", "troglodyte"]}, {"answer": "troglodytes", "hint": "synonyms for troglodytes", "clues": ["hermit", "caveman", "recluse", "cave dweller", "solitudinarian", "troglodyte", "solitary"]}, {"answer": "troika", "hint": "synonyms for troika", "clues": ["tercet", "ternary", "ternion", "III", "3", "triad", "leash", "trinity", "terzetto", "trio", "trine", "threesome", "tierce", "three", "triplet", "trey", "deuce-ace", "troika"]}, {"answer": "trojan_horse", "hint": "synonyms for trojan horse", "clues": ["Trojan horse", "Wooden Horse", "trojan", "fifth column"]}, {"answer": "trolley", "hint": "synonyms for trolley", "clues": ["tramcar", "trolley car", "streetcar", "tram", "trolley"]}, {"answer": "trolley_car", "hint": "synonyms for trolley car", "clues": ["tramcar", "streetcar", "tram", "trolley", "trolley car"]}, {"answer": "trollop", "hint": "synonyms for trollop", "clues": ["strumpet", "adulteress", "loose woman", "jade", "slattern", "fornicatress", "slut", "hussy", "slovenly woman", "trollop"]}, {"answer": "troops", "hint": "synonyms for troops", "clues": ["soldiery", "troop", "flock", "scout group", "scout troop", "military personnel"]}, {"answer": "tropical_sore", "hint": "synonyms for tropical sore", "clues": ["Old World leishmaniasis", "Aleppo boil", "cutaneous leishmaniasis", "oriental sore", "Delhi boil", "tropical sore"]}, {"answer": "trot", "hint": "synonyms for trot", "clues": ["crib", "Trotskyite", "pony", "jog", "lope", "Trot"]}, {"answer": "trotline", "hint": "synonyms for trotline", "clues": ["trawl line", "trawl", "spiller", "setline", "trotline"]}, {"answer": "troubadour", "hint": "synonyms for troubadour", "clues": ["minstrel", "folk singer", "poet-singer", "jongleur", "troubadour"]}, {"answer": "trouble", "hint": "synonyms for trouble", "clues": ["bother", "worry", "problem", "difficulty", "hassle", "fuss", "trouble"]}, {"answer": "trouble_maker", "hint": "synonyms for trouble maker", "clues": ["troublemaker", "bad hat", "troubler", "mischief-maker"]}, {"answer": "troublemaker", "hint": "synonyms for troublemaker", "clues": ["troubler", "trouble maker", "bad hat", "mischief-maker"]}, {"answer": "troubler", "hint": "synonyms for troubler", "clues": ["troublemaker", "bad hat", "mischief-maker", "troubler"]}, {"answer": "trough", "hint": "synonyms for trough", "clues": ["public treasury", "till", "manger", "gutter", "bowl", "trough"]}, {"answer": "trouncing", "hint": "synonyms for trouncing", "clues": ["licking", "lacing", "walloping", "slaughter", "beating", "debacle", "drubbing", "whipping", "thrashing", "whacking", "trouncing"]}, {"answer": "troy", "hint": "synonyms for troy", "clues": ["Ilium", "troy weight", "Ilion", "Troy"]}, {"answer": "trucking_rig", "hint": "synonyms for trucking rig", "clues": ["articulated lorry", "rig", "trailer truck", "tractor trailer", "semi", "trucking rig"]}, {"answer": "truckler", "hint": "synonyms for truckler", "clues": ["groveler", "bootlicker", "fawner", "apple polisher", "truckler"]}, {"answer": "trueness", "hint": "synonyms for trueness", "clues": ["loyalty", "truth", "verity", "the true", "trueness"]}, {"answer": "trump", "hint": "synonyms for trump", "clues": ["trump card", "cornet", "horn", "trumpet", "trump"]}, {"answer": "trumpery", "hint": "synonyms for trumpery", "clues": ["nonsense", "gimcrackery", "applesauce", "tripe", "frill", "wish-wash", "gimcrack", "falderol", "folderal", "trash", "rubbish", "codswallop", "trumpery"]}, {"answer": "trumpets", "hint": "synonyms for trumpets", "clues": ["cornet", "horn", "trump", "trumpet"]}, {"answer": "truncheon", "hint": "synonyms for truncheon", "clues": ["billystick", "nightstick", "billy club", "billy", "baton", "truncheon"]}, {"answer": "trunk", "hint": "synonyms for trunk", "clues": ["body", "automobile trunk", "torso", "luggage compartment", "trunk"]}, {"answer": "trunks", "hint": "synonyms for trunks", "clues": ["automobile trunk", "torso", "shorts", "body", "luggage compartment", "trunk", "short pants"]}, {"answer": "trust", "hint": "synonyms for trust", "clues": ["trustingness", "cartel", "faith", "confidence", "trustfulness", "combine", "corporate trust", "reliance", "trust"]}, {"answer": "trust_account", "hint": "synonyms for trust account", "clues": ["Totten trust", "savings account trust", "savings bank trust", "trustee account"]}, {"answer": "trustee_account", "hint": "synonyms for trustee account", "clues": ["trust account", "Totten trust", "savings account trust", "savings bank trust"]}, {"answer": "truth", "hint": "synonyms for truth", "clues": ["true statement", "Truth", "Sojourner Truth", "accuracy", "trueness", "verity", "the true"]}, {"answer": "try", "hint": "synonyms for try", "clues": ["effort", "endeavor", "attempt", "try"]}, {"answer": "tryout", "hint": "synonyms for tryout", "clues": ["trial run", "test", "trial", "audition", "tryout"]}, {"answer": "tsaritsa", "hint": "synonyms for tsaritsa", "clues": ["tsarina", "czarina", "czaritza", "tsaritsa"]}, {"answer": "tsh", "hint": "synonyms for tsh", "clues": ["thyrotrophic hormone", "thyroid-stimulating hormone", "thyrotrophin", "TSH"]}, {"answer": "tt", "hint": "synonyms for tt", "clues": ["ephemeris time", "Palau", "Republic of Palau", "TDT", "Micronesia", "terrestrial dynamical time", "TT", "Federated States of Micronesia", "terrestrial time"]}, {"answer": "tub", "hint": "synonyms for tub", "clues": ["bathing tub", "bath", "bathtub", "vat", "tubful", "tub"]}, {"answer": "tube", "hint": "synonyms for tube", "clues": ["pipe", "underground", "electron tube", "subway", "thermionic tube", "metro", "thermionic vacuum tube", "thermionic valve", "tubing", "vacuum tube", "subway system", "tube-shaped structure", "tube"]}, {"answer": "tug", "hint": "synonyms for tug", "clues": ["tugboat", "towboat", "jerk", "tower", "tug"]}, {"answer": "tularaemia", "hint": "synonyms for tularaemia", "clues": ["yatobyo", "rabbit fever", "deer fly fever", "tularemia"]}, {"answer": "tularemia", "hint": "synonyms for tularemia", "clues": ["yatobyo", "rabbit fever", "tularaemia", "deer fly fever"]}, {"answer": "tummy", "hint": "synonyms for tummy", "clues": ["breadbasket", "bay window", "tum", "stomach", "potbelly", "pot", "corporation", "tummy"]}, {"answer": "tums", "hint": "synonyms for tums", "clues": ["breadbasket", "stomach", "Tums", "tummy"]}, {"answer": "tumult", "hint": "synonyms for tumult", "clues": ["garboil", "rumpus", "commotion", "ruction", "din", "ruckus", "uproar", "turmoil", "tumultuousness", "tumult"]}, {"answer": "tune", "hint": "synonyms for tune", "clues": ["strain", "melodic phrase", "line", "melody", "air", "melodic line", "tune"]}, {"answer": "tuner", "hint": "synonyms for tuner", "clues": ["piano tuner", "radio receiver", "radio set", "radio", "wireless", "receiving set", "tuner"]}, {"answer": "tungus", "hint": "synonyms for tungus", "clues": ["Evenki", "Tunguz", "Tungus", "Ewenki"]}, {"answer": "tunguska", "hint": "synonyms for tunguska", "clues": ["Stony Tunguska", "Tunguska", "Upper Tunguska", "Angara", "Angara River", "Lower Tunguska"]}, {"answer": "tunguz", "hint": "synonyms for tunguz", "clues": ["Evenki", "Tunguz", "Ewenki", "Tungus"]}, {"answer": "turbofan", "hint": "synonyms for turbofan", "clues": ["turbojet", "fanjet engine", "fanjet", "turbofan engine", "turbojet engine", "turbofan"]}, {"answer": "turbofan_engine", "hint": "synonyms for turbofan engine", "clues": ["turbofan", "fanjet", "fanjet engine", "turbojet", "turbojet engine", "turbofan engine"]}, {"answer": "turbojet", "hint": "synonyms for turbojet", "clues": ["turbofan", "fanjet engine", "fanjet", "turbofan engine", "turbojet engine", "turbojet"]}, {"answer": "turbojet_engine", "hint": "synonyms for turbojet engine", "clues": ["turbofan", "turbofan engine", "fanjet engine", "turbojet", "fanjet", "turbojet engine"]}, {"answer": "turd", "hint": "synonyms for turd", "clues": ["crap", "shite", "poop", "dirt", "turd"]}, {"answer": "turkey", "hint": "synonyms for turkey", "clues": ["dud", "Republic of Turkey", "joker", "Turkey", "bomb"]}, {"answer": "turkish_capital", "hint": "synonyms for turkish capital", "clues": ["Ankara", "Turkish capital", "capital of Turkey", "Angora"]}, {"answer": "turmoil", "hint": "synonyms for turmoil", "clues": ["convulsion", "upheaval", "hullabaloo", "agitation", "tumult", "excitement", "turmoil"]}, {"answer": "turn", "hint": "synonyms for turn", "clues": ["tour", "go", "crook", "twist", "play", "bout", "number", "act", "bit", "routine", "bend", "round", "turning", "good turn", "turn of events", "spell"]}, {"answer": "turnabout", "hint": "synonyms for turnabout", "clues": ["turnaround", "flip-flop", "reversion", "reverse", "change of mind", "reversal", "turnabout"]}, {"answer": "turnaround", "hint": "synonyms for turnaround", "clues": ["flip-flop", "reversion", "turnaround time", "reverse", "change of mind", "turnround", "reversal", "turnabout"]}, {"answer": "turncoat", "hint": "synonyms for turncoat", "clues": ["ratter", "deserter", "apostate", "renegade", "recreant", "turncoat"]}, {"answer": "turner", "hint": "synonyms for turner", "clues": ["Henry Hubert Turner", "Nat Turner", "food turner", "Turner", "Joseph Mallord William Turner", "Frederick Jackson Turner"]}, {"answer": "turning_point", "hint": "synonyms for turning point", "clues": ["street corner", "watershed", "corner", "landmark", "turning point"]}, {"answer": "turnkey", "hint": "synonyms for turnkey", "clues": ["prison guard", "jailor", "jailer", "screw", "gaoler", "turnkey"]}, {"answer": "turnout", "hint": "synonyms for turnout", "clues": ["outfit", "rig", "output", "outturn", "sidetrack", "getup", "widening", "railroad siding", "siding", "turnout"]}, {"answer": "turnover", "hint": "synonyms for turnover", "clues": ["employee turnover", "turnover rate", "dollar volume", "upset", "overturn", "turnover"]}, {"answer": "turpentine", "hint": "synonyms for turpentine", "clues": ["turps", "gum terpentine", "spirit of turpentine", "oil of turpentine", "turpentine"]}, {"answer": "turps", "hint": "synonyms for turps", "clues": ["TURP", "transurethral resection of the prostate", "turpentine", "spirit of turpentine", "oil of turpentine"]}, {"answer": "turquoise", "hint": "synonyms for turquoise", "clues": ["greenish blue", "peacock blue", "aquamarine", "cobalt blue", "aqua", "turquoise"]}, {"answer": "tush", "hint": "synonyms for tush", "clues": ["fundament", "rear end", "buns", "hindquarters", "prat", "seat", "butt", "tail end", "derriere", "rear", "stern", "backside", "buttocks", "bum", "posterior", "keister", "rump", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "nates", "tooshie", "can", "tush"]}, {"answer": "tussaud", "hint": "synonyms for tussaud", "clues": ["Tussaud", "Madame Tussaud", "Marie Tussaud", "Marie Grosholtz"]}, {"answer": "tussle", "hint": "synonyms for tussle", "clues": ["hassle", "dogfight", "scuffle", "rough-and-tumble", "tussle"]}, {"answer": "tutelage", "hint": "synonyms for tutelage", "clues": ["guardianship", "tuition", "tutorship", "charge", "care", "tutelage"]}, {"answer": "tv", "hint": "synonyms for tv", "clues": ["TV", "boob tube", "television set", "goggle box", "video", "telly", "idiot box", "television receiver", "television", "tv set", "telecasting"]}, {"answer": "tv_newsman", "hint": "synonyms for tv newsman", "clues": ["TV reporter", "TV newsman", "television reporter", "television newscaster"]}, {"answer": "tv_program", "hint": "synonyms for tv program", "clues": ["television show", "TV program", "television program", "TV show"]}, {"answer": "tv_reporter", "hint": "synonyms for tv reporter", "clues": ["TV reporter", "TV newsman", "television reporter", "television newscaster"]}, {"answer": "tv_set", "hint": "synonyms for tv set", "clues": ["boob tube", "television set", "telly", "television receiver", "tv", "television", "goggle box", "idiot box", "tv set"]}, {"answer": "tv_show", "hint": "synonyms for tv show", "clues": ["television show", "TV program", "television program", "TV show"]}, {"answer": "twaddle", "hint": "synonyms for twaddle", "clues": ["tommyrot", "tarradiddle", "tosh", "baloney", "bilgewater", "bosh", "drool", "humbug", "twaddle"]}, {"answer": "twain", "hint": "synonyms for twain", "clues": ["brace", "couplet", "dyad", "duo", "duet", "twosome", "distich", "duad", "yoke", "pair", "span", "twain"]}, {"answer": "twat", "hint": "synonyms for twat", "clues": ["fathead", "slit", "jackass", "goofball", "cunt", "goose", "goof", "pussy", "snatch", "bozo", "cuckoo", "zany", "twat"]}, {"answer": "twelfth_day", "hint": "synonyms for twelfth day", "clues": ["Three Kings' Day", "Epiphany of Our Lord", "Epiphany", "Twelfth day", "January 6"]}, {"answer": "twelve_noon", "hint": "synonyms for twelve noon", "clues": ["midday", "noonday", "noontide", "noon", "high noon", "twelve noon"]}, {"answer": "twenties", "hint": "synonyms for twenties", "clues": ["mid-twenties", "1920s", "twenty dollar bill", "twenty", "XX", "20", "twenties"]}, {"answer": "twenty-five_percent", "hint": "synonyms for twenty-five percent", "clues": ["quartern", "one-fourth", "one-quarter", "fourth", "fourth part", "twenty-five percent"]}, {"answer": "twenty-four_hour_period", "hint": "synonyms for twenty-four hour period", "clues": ["mean solar day", "day", "twenty-four hours", "solar day", "24-hour interval", "twenty-four hour period"]}, {"answer": "twenty-four_hours", "hint": "synonyms for twenty-four hours", "clues": ["mean solar day", "solar day", "day", "twenty-four hour period", "24-hour interval", "twenty-four hours"]}, {"answer": "twinkle", "hint": "synonyms for twinkle", "clues": ["scintillation", "light", "sparkle", "spark", "sparkling", "twinkle"]}, {"answer": "twins", "hint": "synonyms for twins", "clues": ["Twins", "Gemini the Twins", "Twin Falls", "similitude", "counterpart", "Gemini"]}, {"answer": "twirl", "hint": "synonyms for twirl", "clues": ["whirl", "kink", "twisting", "spin", "twirl"]}, {"answer": "twist", "hint": "synonyms for twist", "clues": ["winding", "whirl", "twisting", "kink", "bend", "eddy", "turn of events", "construction", "pull", "braid", "crook", "plait", "twirl", "tress", "wrench", "turn", "spin", "device", "gimmick"]}, {"answer": "twit", "hint": "synonyms for twit", "clues": ["taunt", "twerp", "twirp", "twit"]}, {"answer": "two-timer", "hint": "synonyms for two-timer", "clues": ["betrayer", "double-dealer", "traitor", "double-crosser", "two-timer"]}, {"answer": "twosome", "hint": "synonyms for twosome", "clues": ["brace", "couplet", "dyad", "duo", "twain", "duet", "distich", "duad", "yoke", "pair", "span", "twosome"]}, {"answer": "tycoon", "hint": "synonyms for tycoon", "clues": ["king", "business leader", "baron", "power", "mogul", "magnate", "big businessman", "top executive", "tycoon"]}, {"answer": "tyke", "hint": "synonyms for tyke", "clues": ["nipper", "Goth", "churl", "tike", "Tyke", "fry", "youngster", "child", "shaver", "nestling", "minor", "peasant", "tiddler", "kid", "small fry", "boor", "barbarian"]}, {"answer": "tylenol", "hint": "synonyms for tylenol", "clues": ["Tempra", "Anacin III", "acetaminophen", "Tylenol", "Phenaphen", "Datril", "Panadol"]}, {"answer": "tympani", "hint": "synonyms for tympani", "clues": ["kettle", "tympanum", "kettledrum", "timpani"]}, {"answer": "tympanum", "hint": "synonyms for tympanum", "clues": ["kettle", "myringa", "middle ear", "tympanic membrane", "tympanic cavity", "timpani", "eardrum", "kettledrum", "tympanum"]}, {"answer": "type_i_allergic_reaction", "hint": "synonyms for type i allergic reaction", "clues": ["immediate allergy", "atopic allergy", "type I allergic reaction", "atopy"]}, {"answer": "type_i_diabetes", "hint": "synonyms for type i diabetes", "clues": ["juvenile diabetes", "ketoacidosis-prone diabetes", "growth-onset diabetes", "IDDM", "autoimmune diabetes", "type I diabetes", "insulin-dependent diabetes mellitus"]}, {"answer": "type_ii_diabetes", "hint": "synonyms for type ii diabetes", "clues": ["ketosis-resistant diabetes", "mature-onset diabetes", "NIDDM", "non-insulin-dependent diabetes", "adult-onset diabetes", "ketoacidosis-resistant diabetes mellitus", "maturity-onset diabetes mellitus", "type II diabetes"]}, {"answer": "typeface", "hint": "synonyms for typeface", "clues": ["face", "font", "case", "typeface"]}, {"answer": "typo", "hint": "synonyms for typo", "clues": ["misprint", "literal error", "typographical error", "literal", "erratum", "typo"]}, {"answer": "typographical_error", "hint": "synonyms for typographical error", "clues": ["misprint", "literal error", "literal", "typo", "erratum", "typographical error"]}, {"answer": "tyranny", "hint": "synonyms for tyranny", "clues": ["one-man rule", "totalitarianism", "despotism", "monocracy", "Caesarism", "Stalinism", "shogunate", "dictatorship", "authoritarianism", "absolutism", "tyranny"]}, {"answer": "tyro", "hint": "synonyms for tyro", "clues": ["initiate", "novice", "tiro", "beginner", "tyro"]}, {"answer": "tzarina", "hint": "synonyms for tzarina", "clues": ["tsarina", "czarina", "czaritza", "tsaritsa"]}, {"answer": "u-boat", "hint": "synonyms for u-boat", "clues": ["submarine", "pigboat", "U-boat", "sub"]}, {"answer": "u-drive", "hint": "synonyms for u-drive", "clues": ["self-drive", "you-drive", "car rental", "hire car", "rent-a-car"]}, {"answer": "u._s._army", "hint": "synonyms for u. s. army", "clues": ["Army", "USA", "U. S. Army", "United States Army", "US Army"]}, {"answer": "u.k.", "hint": "synonyms for u.k.", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "U.K."]}, {"answer": "u.s.", "hint": "synonyms for u.s.", "clues": ["America", "U.S.A.", "the States", "U.S.", "United States of America", "U.S. government", "USA", "US", "United States", "United States government"]}, {"answer": "u.s._government", "hint": "synonyms for u.s. government", "clues": ["US Government", "United States", "United States government", "U.S."]}, {"answer": "u.s.a.", "hint": "synonyms for u.s.a.", "clues": ["America", "U.S.A.", "United States", "United States of America", "the States", "USA", "US", "U.S."]}, {"answer": "uk", "hint": "synonyms for uk", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "U.K."]}, {"answer": "ulaanbaatar", "hint": "synonyms for ulaanbaatar", "clues": ["Ulaanbaatar", "capital of Mongolia", "Urga", "Kulun", "Ulan Bator"]}, {"answer": "ulan_bator", "hint": "synonyms for ulan bator", "clues": ["Ulaanbaatar", "capital of Mongolia", "Urga", "Kulun", "Ulan Bator"]}, {"answer": "ultraviolet_illumination", "hint": "synonyms for ultraviolet illumination", "clues": ["ultraviolet radiation", "ultraviolet light", "ultraviolet", "UV", "ultraviolet illumination"]}, {"answer": "ultraviolet_light", "hint": "synonyms for ultraviolet light", "clues": ["ultraviolet radiation", "ultraviolet illumination", "ultraviolet", "UV", "ultraviolet light"]}, {"answer": "ultraviolet_radiation", "hint": "synonyms for ultraviolet radiation", "clues": ["ultraviolet illumination", "ultraviolet light", "ultraviolet", "UV", "ultraviolet radiation"]}, {"answer": "ulysses_grant", "hint": "synonyms for ulysses grant", "clues": ["Grant", "Hiram Ulysses Grant", "Ulysses Grant", "President Grant", "Ulysses Simpson Grant"]}, {"answer": "ulysses_s._grant", "hint": "synonyms for ulysses s. grant", "clues": ["Grant", "Hiram Ulysses Grant", "Ulysses Grant", "President Grant", "Ulysses Simpson Grant"]}, {"answer": "ulysses_simpson_grant", "hint": "synonyms for ulysses simpson grant", "clues": ["Grant", "Hiram Ulysses Grant", "Ulysses Grant", "President Grant", "Ulysses Simpson Grant"]}, {"answer": "umbilicus", "hint": "synonyms for umbilicus", "clues": ["belly button", "navel", "omphalos", "umbilicus"]}, {"answer": "umma", "hint": "synonyms for umma", "clues": ["Muslim Ummah", "Islam Nation", "Islamic Ummah", "Umma"]}, {"answer": "ummah", "hint": "synonyms for ummah", "clues": ["Muslim Ummah", "Islam Nation", "Islamic Ummah", "Umma"]}, {"answer": "unavoidable_casualty", "hint": "synonyms for unavoidable casualty", "clues": ["inevitable accident", "vis major", "force majeure", "act of God", "unavoidable casualty"]}, {"answer": "unbalance", "hint": "synonyms for unbalance", "clues": ["imbalance", "derangement", "instability", "mental unsoundness", "unbalance"]}, {"answer": "unboundedness", "hint": "synonyms for unboundedness", "clues": ["limitlessness", "boundlessness", "infiniteness", "infinitude", "unboundedness"]}, {"answer": "uncertainty", "hint": "synonyms for uncertainty", "clues": ["incertitude", "doubtfulness", "doubt", "uncertainness", "dubiety", "dubiousness", "precariousness", "uncertainty"]}, {"answer": "uncle_joe", "hint": "synonyms for uncle joe", "clues": ["Uncle Joe", "Stilwell", "Joseph Warren Stilwell", "Vinegar Joe Stilwell"]}, {"answer": "unconditioned_reflex", "hint": "synonyms for unconditioned reflex", "clues": ["inborn reflex", "reflex response", "instinctive reflex", "innate reflex", "reflex", "reflex action", "physiological reaction", "unconditioned reflex"]}, {"answer": "uncovering", "hint": "synonyms for uncovering", "clues": ["find", "denudation", "discovery", "stripping", "husking", "baring", "uncovering"]}, {"answer": "unction", "hint": "synonyms for unction", "clues": ["salve", "unctuousness", "oiliness", "smarminess", "unguent", "balm", "ointment", "oleaginousness", "smarm", "fulsomeness", "inunction"]}, {"answer": "unctuousness", "hint": "synonyms for unctuousness", "clues": ["oleaginousness", "unction", "oiliness", "fulsomeness", "smarminess", "unctuousness"]}, {"answer": "undercoat", "hint": "synonyms for undercoat", "clues": ["primer coat", "priming coat", "primer", "underseal", "ground", "priming", "flat coat", "undercoat"]}, {"answer": "underdrawers", "hint": "synonyms for underdrawers", "clues": ["boxershorts", "boxers", "drawers", "shorts", "underdrawers"]}, {"answer": "understructure", "hint": "synonyms for understructure", "clues": ["base", "fundament", "foot", "substructure", "groundwork", "foundation", "understructure"]}, {"answer": "undertow", "hint": "synonyms for undertow", "clues": ["sea purse", "sea puss", "sea-poose", "undertow"]}, {"answer": "underworld", "hint": "synonyms for underworld", "clues": ["netherworld", "infernal region", "Hades", "Hell", "Scheol", "underworld"]}, {"answer": "underwriter", "hint": "synonyms for underwriter", "clues": ["insurance firm", "insurance agent", "insurance company", "insurer", "insurance broker", "investment banker", "general agent", "insurance underwriter", "underwriter"]}, {"answer": "undoer", "hint": "synonyms for undoer", "clues": ["untier", "destroyer", "unfastener", "waster", "ruiner", "opener", "uprooter", "undoer"]}, {"answer": "undulant_fever", "hint": "synonyms for undulant fever", "clues": ["Mediterranean fever", "Gibraltar fever", "Rock fever", "Malta fever", "brucellosis", "undulant fever"]}, {"answer": "uneasiness", "hint": "synonyms for uneasiness", "clues": ["disquietude", "self-consciousness", "uncomfortableness", "edginess", "queasiness", "disquiet", "restlessness", "malaise", "unease"]}, {"answer": "unemotionality", "hint": "synonyms for unemotionality", "clues": ["impassiveness", "emotionlessness", "phlegm", "indifference", "impassivity", "stolidity", "unemotionality"]}, {"answer": "unfairness", "hint": "synonyms for unfairness", "clues": ["injustice", "inequity", "shabbiness", "unfairness"]}, {"answer": "unfeelingness", "hint": "synonyms for unfeelingness", "clues": ["hardness", "callosity", "callousness", "insensibility", "unfeelingness"]}, {"answer": "unguent", "hint": "synonyms for unguent", "clues": ["balm", "salve", "ointment", "unction", "unguent"]}, {"answer": "unification", "hint": "synonyms for unification", "clues": ["union", "merger", "conjugation", "jointure", "uniting", "fusion", "unification"]}, {"answer": "uninominal_system", "hint": "synonyms for uninominal system", "clues": ["scrutin uninomial system", "uninominal voting system", "single-member system", "uninominal system"]}, {"answer": "uninominal_voting_system", "hint": "synonyms for uninominal voting system", "clues": ["uninominal system", "scrutin uninomial system", "single-member system", "uninominal voting system"]}, {"answer": "union_of_serbia_and_montenegro", "hint": "synonyms for union of serbia and montenegro", "clues": ["Yugoslavia", "Union of Serbia and Montenegro", "Federal Republic of Yugoslavia", "Serbia and Montenegro"]}, {"answer": "union_of_soviet_socialist_republics", "hint": "synonyms for union of soviet socialist republics", "clues": ["Union of Soviet Socialist Republics", "Russia", "Soviet Union", "USSR"]}, {"answer": "unit", "hint": "synonyms for unit", "clues": ["social unit", "unit of measurement", "whole", "building block", "unit"]}, {"answer": "united_kingdom", "hint": "synonyms for united kingdom", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "U.K."]}, {"answer": "united_kingdom_of_great_britain_and_northern_ireland", "hint": "synonyms for united kingdom of great britain and northern ireland", "clues": ["United Kingdom", "Britain", "UK", "United Kingdom of Great Britain and Northern Ireland", "Great Britain", "U.K."]}, {"answer": "united_states", "hint": "synonyms for united states", "clues": ["America", "U.S.A.", "United States", "United States of America", "the States", "U.S. government", "USA", "US", "U.S.", "United States government"]}, {"answer": "united_states_army", "hint": "synonyms for united states army", "clues": ["Army", "USA", "U. S. Army", "United States Army", "US Army"]}, {"answer": "united_states_department_of_defense", "hint": "synonyms for united states department of defense", "clues": ["Department of Defense", "DoD", "Defense Department", "United States Department of Defense", "Defense"]}, {"answer": "united_states_department_of_state", "hint": "synonyms for united states department of state", "clues": ["State", "United States Department of State", "Department of State", "DoS", "State Department"]}, {"answer": "united_states_government", "hint": "synonyms for united states government", "clues": ["US Government", "United States", "United States government", "U.S."]}, {"answer": "united_states_intelligence_community", "hint": "synonyms for united states intelligence community", "clues": ["United States Intelligence Community", "Intelligence Community", "IC", "National Intelligence Community"]}, {"answer": "united_states_navy", "hint": "synonyms for united states navy", "clues": ["Navy", "United States Navy", "US Navy", "USN"]}, {"answer": "united_states_of_america", "hint": "synonyms for united states of america", "clues": ["America", "U.S.A.", "United States", "United States of America", "the States", "USA", "US", "U.S."]}, {"answer": "united_states_president", "hint": "synonyms for united states president", "clues": ["Chief Executive", "President of the United States", "United States President", "President"]}, {"answer": "united_states_secret_service", "hint": "synonyms for united states secret service", "clues": ["SS", "United States Secret Service", "USSS", "Secret Service"]}, {"answer": "united_states_treasury", "hint": "synonyms for united states treasury", "clues": ["United States Treasury", "Treasury", "Treasury Department", "Department of the Treasury"]}, {"answer": "uniting", "hint": "synonyms for uniting", "clues": ["union", "unification", "merger", "conjugation", "jointure", "amalgamation", "uniting"]}, {"answer": "unity", "hint": "synonyms for unity", "clues": ["ace", "I", "one", "wholeness", "1", "oneness", "single", "integrity", "unity"]}, {"answer": "universal_time", "hint": "synonyms for universal time", "clues": ["Greenwich Time", "UT1", "UT", "GMT", "Greenwich Mean Time", "universal time"]}, {"answer": "universe", "hint": "synonyms for universe", "clues": ["creation", "cosmos", "population", "macrocosm", "universe of discourse", "world", "existence", "universe"]}, {"answer": "unknowingness", "hint": "synonyms for unknowingness", "clues": ["nescience", "unknowing", "ignorantness", "unawareness", "unknowingness"]}, {"answer": "unmanliness", "hint": "synonyms for unmanliness", "clues": ["womanishness", "effeminateness", "sissiness", "effeminacy", "softness", "unmanliness"]}, {"answer": "unnilquadium", "hint": "synonyms for unnilquadium", "clues": ["atomic number 104", "Rf", "rutherfordium", "Unq", "element 104", "unnilquadium"]}, {"answer": "unq", "hint": "synonyms for unq", "clues": ["atomic number 104", "Rf", "rutherfordium", "Unq", "element 104", "unnilquadium"]}, {"answer": "unrest", "hint": "synonyms for unrest", "clues": ["ferment", "fermentation", "tempestuousness", "agitation", "unrest"]}, {"answer": "unsavoriness", "hint": "synonyms for unsavoriness", "clues": ["disgustingness", "distastefulness", "sickeningness", "nauseatingness", "unsavoriness"]}, {"answer": "unslaked_lime", "hint": "synonyms for unslaked lime", "clues": ["calcined lime", "calcium oxide", "calx", "burnt lime", "quicklime", "fluxing lime", "lime", "unslaked lime"]}, {"answer": "unveiling", "hint": "synonyms for unveiling", "clues": ["entry", "introduction", "launching", "first appearance", "debut", "unveiling"]}, {"answer": "upbraiding", "hint": "synonyms for upbraiding", "clues": ["chewing out", "bawling out", "castigation", "dressing down", "earful", "going-over", "upbraiding"]}, {"answer": "upbringing", "hint": "synonyms for upbringing", "clues": ["fostering", "rearing", "breeding", "raising", "bringing up", "fosterage", "nurture", "upbringing"]}, {"answer": "upgrade", "hint": "synonyms for upgrade", "clues": ["rise", "ascent", "rising slope", "climb", "acclivity", "upgrade"]}, {"answer": "upheaval", "hint": "synonyms for upheaval", "clues": ["upthrust", "hullabaloo", "agitation", "upthrow", "turbulence", "uplift", "convulsion", "Sturm und Drang", "turmoil", "excitement", "upheaval"]}, {"answer": "upkeep", "hint": "synonyms for upkeep", "clues": ["sustentation", "sustenance", "sustainment", "maintenance", "care", "upkeep"]}, {"answer": "upper-case_letter", "hint": "synonyms for upper-case letter", "clues": ["capital letter", "majuscule", "capital", "uppercase", "upper-case letter"]}, {"answer": "upper_avon", "hint": "synonyms for upper avon", "clues": ["Upper Avon River", "Avon", "River Avon", "Upper Avon"]}, {"answer": "upper_avon_river", "hint": "synonyms for upper avon river", "clues": ["Upper Avon River", "Avon", "River Avon", "Upper Avon"]}, {"answer": "upper_carboniferous", "hint": "synonyms for upper carboniferous", "clues": ["Upper Carboniferous", "Pennsylvanian", "Upper Carboniferous period", "Pennsylvanian period"]}, {"answer": "upper_carboniferous_period", "hint": "synonyms for upper carboniferous period", "clues": ["Upper Carboniferous", "Pennsylvanian", "Upper Carboniferous period", "Pennsylvanian period"]}, {"answer": "upper_tunguska", "hint": "synonyms for upper tunguska", "clues": ["Tunguska", "Angara", "Angara River", "Upper Tunguska"]}, {"answer": "uprightness", "hint": "synonyms for uprightness", "clues": ["rectitude", "erectness", "verticalness", "verticality", "uprightness"]}, {"answer": "uprising", "hint": "synonyms for uprising", "clues": ["insurrection", "rising", "revolt", "rebellion"]}, {"answer": "uproar", "hint": "synonyms for uproar", "clues": ["garboil", "brouhaha", "hubbub", "tumult", "katzenjammer", "tumultuousness", "uproar"]}, {"answer": "uprooter", "hint": "synonyms for uprooter", "clues": ["undoer", "waster", "ruiner", "destroyer", "uprooter"]}, {"answer": "upshot", "hint": "synonyms for upshot", "clues": ["event", "outcome", "effect", "result", "issue", "consequence", "upshot"]}, {"answer": "urban_ii", "hint": "synonyms for urban ii", "clues": ["Odo", "Otho of Lagery", "Otho", "Urban II"]}, {"answer": "urga", "hint": "synonyms for urga", "clues": ["Ulaanbaatar", "capital of Mongolia", "Urga", "Kulun", "Ulan Bator"]}, {"answer": "urging", "hint": "synonyms for urging", "clues": ["goading", "spurring", "importunity", "spur", "urgency", "prodding", "prod", "urging"]}, {"answer": "urinary_apparatus", "hint": "synonyms for urinary apparatus", "clues": ["genitourinary system", "urogenital apparatus", "urogenital system", "apparatus urogenitalis", "urinary system", "genitourinary apparatus", "systema urogenitale"]}, {"answer": "urinary_system", "hint": "synonyms for urinary system", "clues": ["genitourinary system", "urogenital system", "urogenital apparatus", "apparatus urogenitalis", "urinary apparatus", "systema urogenitale", "urinary system"]}, {"answer": "urine", "hint": "synonyms for urine", "clues": ["piddle", "weewee", "water", "pee", "piss", "urine"]}, {"answer": "urmia", "hint": "synonyms for urmia", "clues": ["Urmia", "Daryacheh-ye Orumiyeh", "Lake Urmia", "Orumiyeh"]}, {"answer": "urogenital_apparatus", "hint": "synonyms for urogenital apparatus", "clues": ["genitourinary system", "urogenital system", "genitourinary apparatus", "apparatus urogenitalis", "systema urogenitale", "urinary system", "urogenital apparatus"]}, {"answer": "urogenital_cleft", "hint": "synonyms for urogenital cleft", "clues": ["pudendal cleavage", "rima vulvae", "pudendal slit", "rima pudendi", "pudendal cleft", "vulvar slit", "urogenital cleft"]}, {"answer": "urogenital_system", "hint": "synonyms for urogenital system", "clues": ["genitourinary system", "urogenital apparatus", "genitourinary apparatus", "apparatus urogenitalis", "systema urogenitale", "urinary system", "urogenital system"]}, {"answer": "us", "hint": "synonyms for us", "clues": ["America", "uracil", "U.S.A.", "United States", "United States of America", "the States", "u", "USA", "atomic number 92", "U.S.", "uranium"]}, {"answer": "us_army", "hint": "synonyms for us army", "clues": ["Army", "USA", "U. S. Army", "United States Army", "US Army"]}, {"answer": "us_government", "hint": "synonyms for us government", "clues": ["US Government", "United States", "United States government", "U.S."]}, {"answer": "us_navy", "hint": "synonyms for us navy", "clues": ["Navy", "United States Navy", "US Navy", "USN"]}, {"answer": "us_secret_service", "hint": "synonyms for us secret service", "clues": ["SS", "United States Secret Service", "USSS", "Secret Service"]}, {"answer": "usa", "hint": "synonyms for usa", "clues": ["America", "Army", "U.S.A.", "United States Army", "United States", "United States of America", "the States", "US Army", "USA", "US", "U.S.", "U. S. Army"]}, {"answer": "usability", "hint": "synonyms for usability", "clues": ["useableness", "serviceableness", "serviceability", "usability"]}, {"answer": "usableness", "hint": "synonyms for usableness", "clues": ["useableness", "serviceableness", "serviceability", "usability"]}, {"answer": "usage", "hint": "synonyms for usage", "clues": ["usance", "exercise", "employment", "utilisation", "custom", "use", "usage"]}, {"answer": "usance", "hint": "synonyms for usance", "clues": ["usage", "economic consumption", "use of goods and services", "consumption", "custom", "use", "usance"]}, {"answer": "usbeg", "hint": "synonyms for usbeg", "clues": ["Uzbak", "Uzbeg", "Usbeg", "Usbek", "Uzbek"]}, {"answer": "usbek", "hint": "synonyms for usbek", "clues": ["Uzbak", "Uzbeg", "Usbeg", "Usbek", "Uzbek"]}, {"answer": "uscb", "hint": "synonyms for uscb", "clues": ["Customs Service", "Customs Bureau", "Bureau of Customs", "USCB"]}, {"answer": "usda", "hint": "synonyms for usda", "clues": ["USDA", "Department of Agriculture", "Agriculture Department", "Agriculture"]}, {"answer": "use", "hint": "synonyms for use", "clues": ["role", "usance", "purpose", "use of goods and services", "exercise", "consumption", "utilisation", "manipulation", "enjoyment", "usage", "economic consumption", "habit", "employment", "function", "use"]}, {"answer": "use_of_goods_and_services", "hint": "synonyms for use of goods and services", "clues": ["consumption", "usance", "economic consumption", "use", "use of goods and services"]}, {"answer": "useableness", "hint": "synonyms for useableness", "clues": ["serviceableness", "usableness", "serviceability", "usability"]}, {"answer": "usher", "hint": "synonyms for usher", "clues": ["James Usher", "doorkeeper", "Usher", "guide"]}, {"answer": "usn", "hint": "synonyms for usn", "clues": ["Navy", "United States Navy", "US Navy", "USN"]}, {"answer": "ussr", "hint": "synonyms for ussr", "clues": ["Union of Soviet Socialist Republics", "Russia", "Soviet Union", "USSR"]}, {"answer": "usss", "hint": "synonyms for usss", "clues": ["SS", "United States Secret Service", "USSS", "Secret Service"]}, {"answer": "usurpation", "hint": "synonyms for usurpation", "clues": ["trespass", "intrusion", "encroachment", "violation", "usurpation"]}, {"answer": "ut", "hint": "synonyms for ut", "clues": ["do", "UT1", "GMT", "universal time", "Greenwich Time", "doh", "Beehive State", "UT", "Utah", "Mormon State", "Greenwich Mean Time"]}, {"answer": "ut1", "hint": "synonyms for ut1", "clues": ["universal time", "Greenwich Time", "UT1", "UT", "GMT", "Greenwich Mean Time"]}, {"answer": "utah", "hint": "synonyms for utah", "clues": ["Utah", "Mormon State", "Beehive State", "UT"]}, {"answer": "utilisation", "hint": "synonyms for utilisation", "clues": ["usage", "exercise", "employment", "utilization", "use"]}, {"answer": "utilization", "hint": "synonyms for utilization", "clues": ["usage", "exercise", "employment", "utilisation", "use"]}, {"answer": "utterer", "hint": "synonyms for utterer", "clues": ["talker", "speaker", "verbalizer", "vocaliser", "utterer"]}, {"answer": "uub", "hint": "synonyms for uub", "clues": ["Uub", "element 112", "atomic number 112", "ununbium"]}, {"answer": "uuh", "hint": "synonyms for uuh", "clues": ["Uuh", "atomic number 116", "ununhexium", "element 116"]}, {"answer": "uup", "hint": "synonyms for uup", "clues": ["element 115", "atomic number 115", "Uup", "ununpentium"]}, {"answer": "uuq", "hint": "synonyms for uuq", "clues": ["element 114", "Uuq", "ununquadium", "atomic number 114"]}, {"answer": "uut", "hint": "synonyms for uut", "clues": ["element 113", "Uut", "ununtrium", "atomic number 113"]}, {"answer": "uv", "hint": "synonyms for uv", "clues": ["ultraviolet radiation", "ultraviolet light", "UV", "ultraviolet illumination", "ultraviolet"]}, {"answer": "uzbak", "hint": "synonyms for uzbak", "clues": ["Uzbak", "Uzbeg", "Usbeg", "Usbek", "Uzbek"]}, {"answer": "uzbeg", "hint": "synonyms for uzbeg", "clues": ["Uzbak", "Uzbeg", "Usbeg", "Usbek", "Uzbek"]}, {"answer": "uzbek", "hint": "synonyms for uzbek", "clues": ["Republic of Uzbekistan", "Uzbak", "Uzbeg", "Usbeg", "Uzbekistan", "Usbek", "Uzbek"]}, {"answer": "v-1", "hint": "synonyms for v-1", "clues": ["buzz bomb", "robot bomb", "doodlebug", "V-1", "flying bomb"]}, {"answer": "va", "hint": "synonyms for va", "clues": ["Virginia", "Old Dominion State", "VA", "Department of Veterans Affairs", "Old Dominion"]}, {"answer": "vacillation", "hint": "synonyms for vacillation", "clues": ["wavering", "swing", "hesitation", "vacillation"]}, {"answer": "vacuity", "hint": "synonyms for vacuity", "clues": ["senselessness", "pointlessness", "inanity", "mindlessness", "vacuum", "vacuity"]}, {"answer": "vacuum", "hint": "synonyms for vacuum", "clues": ["void", "vacuity", "vacancy", "emptiness", "vacuum cleaner", "vacuum"]}, {"answer": "vacuum_bomb", "hint": "synonyms for vacuum bomb", "clues": ["volume-detonation bomb", "thermobaric bomb", "fuel-air bomb", "aerosol bomb", "vacuum bomb"]}, {"answer": "vacuum_tube", "hint": "synonyms for vacuum tube", "clues": ["thermionic tube", "tube", "thermionic vacuum tube", "thermionic valve", "electron tube", "vacuum tube"]}, {"answer": "vagus", "hint": "synonyms for vagus", "clues": ["vagus nerve", "nervus vagus", "pneumogastric", "wandering nerve", "tenth cranial nerve", "pneumogastric nerve", "vagus"]}, {"answer": "vagus_nerve", "hint": "synonyms for vagus nerve", "clues": ["vagus", "pneumogastric", "nervus vagus", "wandering nerve", "tenth cranial nerve", "pneumogastric nerve", "vagus nerve"]}, {"answer": "valet", "hint": "synonyms for valet", "clues": ["gentleman", "gentleman's gentleman", "valet de chambre", "valet"]}, {"answer": "valet_de_chambre", "hint": "synonyms for valet de chambre", "clues": ["gentleman", "gentleman's gentleman", "valet", "valet de chambre"]}, {"answer": "valetudinarianism", "hint": "synonyms for valetudinarianism", "clues": ["frailness", "infirmity", "debility", "frailty", "feebleness", "valetudinarianism"]}, {"answer": "valiance", "hint": "synonyms for valiance", "clues": ["valor", "gallantry", "valiancy", "heroism", "valorousness"]}, {"answer": "valiancy", "hint": "synonyms for valiancy", "clues": ["valor", "valiance", "gallantry", "heroism", "valorousness"]}, {"answer": "validity", "hint": "synonyms for validity", "clues": ["lustiness", "robustness", "rigour", "hardiness", "cogency", "validness", "validity"]}, {"answer": "valor", "hint": "synonyms for valor", "clues": ["valour", "valiance", "gallantry", "heroism", "valorousness"]}, {"answer": "valorousness", "hint": "synonyms for valorousness", "clues": ["valor", "valiance", "gallantry", "heroism", "valorousness"]}, {"answer": "valour", "hint": "synonyms for valour", "clues": ["valor", "valiance", "gallantry", "heroism", "valorousness"]}, {"answer": "values", "hint": "synonyms for values", "clues": ["value", "note value", "economic value", "time value"]}, {"answer": "vamp", "hint": "synonyms for vamp", "clues": ["prickteaser", "coquette", "tease", "minx", "vamper", "flirt", "vamp"]}, {"answer": "vamper", "hint": "synonyms for vamper", "clues": ["prickteaser", "coquette", "tease", "minx", "vamp", "flirt", "vamper"]}, {"answer": "van", "hint": "synonyms for van", "clues": ["caravan", "vanguard", "new wave", "avant-garde", "van"]}, {"answer": "van_bogaert_encephalitis", "hint": "synonyms for van bogaert encephalitis", "clues": ["Dawson's encephalitis", "SSPE", "subacute sclerosing panencephalitis", "sclerosing leukoencephalitis", "Van Bogaert encephalitis", "Bosin's disease", "subacute inclusion body encephalitis"]}, {"answer": "van_de_graaff_generator", "hint": "synonyms for van de graaff generator", "clues": ["electrostatic generator", "Van de Graaff generator", "Wimshurst machine", "electrostatic machine"]}, {"answer": "vandyke", "hint": "synonyms for vandyke", "clues": ["Vandyke", "Van Dyck", "Anthony Vandyke", "vandyke beard"]}, {"answer": "vane", "hint": "synonyms for vane", "clues": ["weathervane", "blade", "wind vane", "vane"]}, {"answer": "vanguard", "hint": "synonyms for vanguard", "clues": ["new wave", "van", "avant-garde", "cutting edge", "forefront", "vanguard"]}, {"answer": "vanguards_of_conquest", "hint": "synonyms for vanguards of conquest", "clues": ["Islamic Jihad", "al-Jihad", "Egyptian Islamic Jihad", "Vanguards of Conquest"]}, {"answer": "vanity", "hint": "synonyms for vanity", "clues": ["dressing table", "amour propre", "conceitedness", "dresser", "self-love", "toilet table", "emptiness", "conceit", "vanity"]}, {"answer": "vapidity", "hint": "synonyms for vapidity", "clues": ["jejuneness", "tameness", "jejunity", "vapidness", "vapidity"]}, {"answer": "vapidness", "hint": "synonyms for vapidness", "clues": ["vapidity", "jejuneness", "tameness", "jejunity", "vapidness"]}, {"answer": "vapor_bath", "hint": "synonyms for vapor bath", "clues": ["vapour bath", "steam room", "Turkish bath", "steam bath"]}, {"answer": "vaporing", "hint": "synonyms for vaporing", "clues": ["gasconade", "brag", "bragging", "crow", "line-shooting", "vaporing"]}, {"answer": "vaporousness", "hint": "synonyms for vaporousness", "clues": ["vapourousness", "haziness", "steaminess", "mistiness"]}, {"answer": "vapors", "hint": "synonyms for vapors", "clues": ["blue devils", "vapor", "evaporation", "blues", "megrims", "vapours"]}, {"answer": "vapour_bath", "hint": "synonyms for vapour bath", "clues": ["steam room", "Turkish bath", "steam bath", "vapor bath"]}, {"answer": "vapourousness", "hint": "synonyms for vapourousness", "clues": ["vaporousness", "haziness", "steaminess", "mistiness"]}, {"answer": "vapours", "hint": "synonyms for vapours", "clues": ["blue devils", "vapor", "evaporation", "blues", "megrims", "vapours"]}, {"answer": "variance", "hint": "synonyms for variance", "clues": ["discrepancy", "divergence", "variation", "variant", "disagreement", "variableness", "variability", "division", "variance"]}, {"answer": "variate", "hint": "synonyms for variate", "clues": ["stochastic variable", "random variable", "chance variable", "variant"]}, {"answer": "variation", "hint": "synonyms for variation", "clues": ["mutant", "sport", "fluctuation", "magnetic variation", "version", "variance", "pas seul", "mutation", "variant", "edition", "magnetic declination", "variation"]}, {"answer": "variety", "hint": "synonyms for variety", "clues": ["miscellany", "mixture", "multifariousness", "salmagundi", "form", "sort", "mixed bag", "assortment", "diversity", "change", "smorgasbord", "kind", "variety show", "motley", "diverseness", "potpourri", "variety"]}, {"answer": "variola_minor", "hint": "synonyms for variola minor", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "Kaffir pox", "pseudovariola", "milk pox", "variola minor"]}, {"answer": "varlet", "hint": "synonyms for varlet", "clues": ["scallywag", "rascal", "knave", "rapscallion", "rogue", "scalawag", "page", "varlet"]}, {"answer": "vas", "hint": "synonyms for vas", "clues": ["Virginia", "Old Dominion State", "vessel", "VA", "Department of Veterans Affairs", "Old Dominion"]}, {"answer": "vassal", "hint": "synonyms for vassal", "clues": ["liege subject", "liege", "feudatory", "liegeman", "vassal"]}, {"answer": "vastness", "hint": "synonyms for vastness", "clues": ["immenseness", "immensity", "enormousness", "grandness", "greatness", "wideness", "sizeableness", "vastness"]}, {"answer": "vat", "hint": "synonyms for vat", "clues": ["tub", "ad valorem tax", "VAT", "value-added tax"]}, {"answer": "vaticinator", "hint": "synonyms for vaticinator", "clues": ["seer", "oracle", "prophesier", "prophet", "vaticinator"]}, {"answer": "vault_of_heaven", "hint": "synonyms for vault of heaven", "clues": ["sphere", "heavens", "welkin", "empyrean", "celestial sphere", "firmament", "vault of heaven"]}, {"answer": "vaunter", "hint": "synonyms for vaunter", "clues": ["blowhard", "line-shooter", "boaster", "bragger", "braggart", "vaunter"]}, {"answer": "vd", "hint": "synonyms for vd", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "veblen", "hint": "synonyms for veblen", "clues": ["Thorstein Bunde Veblen", "Thorstein Veblen", "Veblen", "Oswald Veblen"]}, {"answer": "vehemence", "hint": "synonyms for vehemence", "clues": ["fierceness", "furiousness", "emphasis", "ferocity", "fury", "violence", "wildness", "vehemence"]}, {"answer": "veil", "hint": "synonyms for veil", "clues": ["caul", "humeral veil", "embryonic membrane", "head covering", "veil"]}, {"answer": "vender", "hint": "synonyms for vender", "clues": ["marketer", "trafficker", "seller", "vendor", "vender"]}, {"answer": "vendor", "hint": "synonyms for vendor", "clues": ["marketer", "trafficker", "vender", "seller", "vendor"]}, {"answer": "veneration", "hint": "synonyms for veneration", "clues": ["devotion", "awe", "reverence", "cultism", "fear", "idolatry", "veneration"]}, {"answer": "venereal_disease", "hint": "synonyms for venereal disease", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "sexually transmitted disease", "VD", "venereal infection", "venereal disease"]}, {"answer": "venereal_infection", "hint": "synonyms for venereal infection", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "venetian_red", "hint": "synonyms for venetian red", "clues": ["reddish brown", "sepia", "burnt sienna", "Venetian red", "mahogany"]}, {"answer": "venom", "hint": "synonyms for venom", "clues": ["spite", "spitefulness", "maliciousness", "malice", "venom"]}, {"answer": "vent", "hint": "synonyms for vent", "clues": ["venthole", "volcano", "outlet", "blowhole", "release", "vent"]}, {"answer": "ventilation", "hint": "synonyms for ventilation", "clues": ["public discussion", "ventilating system", "respiration", "external respiration", "breathing", "airing", "ventilation"]}, {"answer": "ventricular_fold", "hint": "synonyms for ventricular fold", "clues": ["vestibular fold", "superior vocal cord", "false vocal fold", "ventricular fold"]}, {"answer": "venus's_curse", "hint": "synonyms for venus's curse", "clues": ["Cupid's itch", "STD", "dose", "Cupid's disease", "Venus's curse", "social disease", "venereal disease", "sexually transmitted disease", "VD", "venereal infection"]}, {"answer": "verbaliser", "hint": "synonyms for verbaliser", "clues": ["talker", "speaker", "verbalizer", "utterer"]}, {"answer": "verbalizer", "hint": "synonyms for verbalizer", "clues": ["talker", "verbaliser", "speaker", "utterer"]}, {"answer": "verbiage", "hint": "synonyms for verbiage", "clues": ["diction", "phraseology", "phrasing", "verbalism", "wording", "choice of words", "verbiage"]}, {"answer": "verge", "hint": "synonyms for verge", "clues": ["scepter", "threshold", "brink", "wand", "verge"]}, {"answer": "vernacular_art", "hint": "synonyms for vernacular art", "clues": ["primitive art", "self-taught art", "outsider art", "naive art", "vernacular art"]}, {"answer": "veronal", "hint": "synonyms for veronal", "clues": ["diethylmalonylurea", "barbitone", "diethylbarbituric acid", "barbital", "veronal"]}, {"answer": "verse", "hint": "synonyms for verse", "clues": ["poetry", "rhyme", "poesy", "verse line", "verse"]}, {"answer": "versifier", "hint": "synonyms for versifier", "clues": ["poetiser", "rhymer", "rhymester", "versifier"]}, {"answer": "version", "hint": "synonyms for version", "clues": ["translation", "interpretation", "reading", "interlingual rendition", "variation", "adaptation", "variant", "edition", "rendering", "version"]}, {"answer": "vertebral_column", "hint": "synonyms for vertebral column", "clues": ["spinal column", "spine", "back", "backbone", "rachis", "vertebral column"]}, {"answer": "very_important_person", "hint": "synonyms for very important person", "clues": ["high-up", "VIP", "dignitary", "high muckamuck", "panjandrum", "very important person"]}, {"answer": "vespers", "hint": "synonyms for vespers", "clues": ["Hesperus", "evensong", "Vesper", "evening star"]}, {"answer": "vestibular_fold", "hint": "synonyms for vestibular fold", "clues": ["ventricular fold", "superior vocal cord", "false vocal fold", "vestibular fold"]}, {"answer": "vestibular_sense", "hint": "synonyms for vestibular sense", "clues": ["labyrinthine sense", "equilibrium", "sense of balance", "sense of equilibrium", "vestibular sense"]}, {"answer": "vestibule", "hint": "synonyms for vestibule", "clues": ["entrance hall", "antechamber", "anteroom", "foyer", "lobby", "hall", "vestibule"]}, {"answer": "vestibulocochlear_nerve", "hint": "synonyms for vestibulocochlear nerve", "clues": ["eighth cranial nerve", "nervus vestibulocochlearis", "acoustic nerve", "auditory nerve", "vestibulocochlear nerve"]}, {"answer": "vesture", "hint": "synonyms for vesture", "clues": ["wear", "habiliment", "clothing", "article of clothing", "wearable", "vesture"]}, {"answer": "vet", "hint": "synonyms for vet", "clues": ["veterinary surgeon", "veterinarian", "veteran", "veterinary", "ex-serviceman", "vet"]}, {"answer": "vexation", "hint": "synonyms for vexation", "clues": ["botheration", "headache", "chafe", "annoying", "annoyance", "irritation", "worry", "concern", "vexation"]}, {"answer": "vhf", "hint": "synonyms for vhf", "clues": ["very high frequency", "viral hemorrhagic fever", "VHF", "haemorrhagic fever"]}, {"answer": "vial", "hint": "synonyms for vial", "clues": ["phial", "ampul", "ampoule", "vial"]}, {"answer": "viands", "hint": "synonyms for viands", "clues": ["commissariat", "provender", "victuals", "provisions", "viand"]}, {"answer": "vibes", "hint": "synonyms for vibes", "clues": ["vibraphone", "vibraharp", "vibration", "vibe"]}, {"answer": "vibrancy", "hint": "synonyms for vibrancy", "clues": ["plangency", "sonorousness", "ringing", "resonance", "reverberance", "sonority", "vibrancy"]}, {"answer": "vibration", "hint": "synonyms for vibration", "clues": ["shaking", "vibe", "quivering", "shakiness", "trembling", "oscillation", "palpitation", "vibration"]}, {"answer": "vicar_of_christ", "hint": "synonyms for vicar of christ", "clues": ["Roman Catholic Pope", "Bishop of Rome", "pope", "Catholic Pope", "Holy Father", "pontiff", "Vicar of Christ"]}, {"answer": "vicinity", "hint": "synonyms for vicinity", "clues": ["neighborhood", "locality", "neck of the woods", "vicinity"]}, {"answer": "victoria", "hint": "synonyms for victoria", "clues": ["Victoria", "Victoria Falls", "capital of Seychelles", "Queen Victoria"]}, {"answer": "victoria_falls", "hint": "synonyms for victoria falls", "clues": ["Iguassu", "Victoria", "Victoria Falls", "Iguazu Falls", "Iguazu"]}, {"answer": "victual", "hint": "synonyms for victual", "clues": ["victuals", "edible", "pabulum", "comestible", "eatable"]}, {"answer": "victuals", "hint": "synonyms for victuals", "clues": ["provender", "sustenance", "edible", "nutriment", "viands", "alimentation", "provisions", "victual", "commissariat", "pabulum", "aliment", "nutrition", "nourishment", "comestible", "eatable"]}, {"answer": "video", "hint": "synonyms for video", "clues": ["TV", "picture", "television", "telecasting", "video recording", "video"]}, {"answer": "vietnam", "hint": "synonyms for vietnam", "clues": ["Annam", "Vietnam", "Socialist Republic of Vietnam", "Vietnam War"]}, {"answer": "view", "hint": "synonyms for view", "clues": ["thought", "panorama", "survey", "persuasion", "scene", "purview", "prospect", "aspect", "sight", "horizon", "sentiment", "eyeshot", "opinion", "vista", "perspective", "position", "view"]}, {"answer": "viewer", "hint": "synonyms for viewer", "clues": ["spectator", "looker", "witness", "watcher", "viewer"]}, {"answer": "viewers", "hint": "synonyms for viewers", "clues": ["TV audience", "spectator", "looker", "viewer", "watcher", "viewing audience", "witness"]}, {"answer": "viewpoint", "hint": "synonyms for viewpoint", "clues": ["point of view", "stand", "vantage point", "standpoint", "viewpoint"]}, {"answer": "vigilance", "hint": "synonyms for vigilance", "clues": ["wakefulness", "weather eye", "watchfulness", "alertness", "vigilance"]}, {"answer": "vigor", "hint": "synonyms for vigor", "clues": ["vim", "energy", "vigour", "muscularity", "dynamism", "zip", "heartiness"]}, {"answer": "vigour", "hint": "synonyms for vigour", "clues": ["vim", "energy", "muscularity", "dynamism", "vigor", "zip", "heartiness"]}, {"answer": "vileness", "hint": "synonyms for vileness", "clues": ["lousiness", "wickedness", "repulsiveness", "loathsomeness", "nefariousness", "ugliness", "sliminess", "vileness"]}, {"answer": "vilification", "hint": "synonyms for vilification", "clues": ["malignment", "smear", "abuse", "revilement", "insult", "contumely", "vilification"]}, {"answer": "vilifier", "hint": "synonyms for vilifier", "clues": ["libeler", "slanderer", "defamer", "traducer", "maligner", "backbiter", "vilifier"]}, {"answer": "villa", "hint": "synonyms for villa", "clues": ["Pancho Villa", "Francisco Villa", "Doroteo Arango", "Villa"]}, {"answer": "village", "hint": "synonyms for village", "clues": ["small town", "Village", "hamlet", "Greenwich Village", "settlement"]}, {"answer": "vilna", "hint": "synonyms for vilna", "clues": ["capital of Lithuania", "Vilnius", "Vilno", "Wilno", "Vilna"]}, {"answer": "vilnius", "hint": "synonyms for vilnius", "clues": ["capital of Lithuania", "Vilnius", "Vilno", "Wilno", "Vilna"]}, {"answer": "vilno", "hint": "synonyms for vilno", "clues": ["capital of Lithuania", "Vilnius", "Vilno", "Wilno", "Vilna"]}, {"answer": "vim", "hint": "synonyms for vim", "clues": ["muscularity", "vitality", "energy", "vigor", "vim"]}, {"answer": "vinegar_joe_stilwell", "hint": "synonyms for vinegar joe stilwell", "clues": ["Uncle Joe", "Stilwell", "Joseph Warren Stilwell", "Vinegar Joe Stilwell"]}, {"answer": "vinyl_ether", "hint": "synonyms for vinyl ether", "clues": ["ether", "ethyl ether", "divinyl ether", "ethoxyethane"]}, {"answer": "violation", "hint": "synonyms for violation", "clues": ["intrusion", "ravishment", "assault", "usurpation", "rape", "misdemeanor", "infraction", "trespass", "infringement", "encroachment", "irreverence", "violation"]}, {"answer": "violator", "hint": "synonyms for violator", "clues": ["ravisher", "debaucher", "law offender", "lawbreaker", "violator"]}, {"answer": "violence", "hint": "synonyms for violence", "clues": ["fierceness", "furiousness", "ferocity", "vehemence", "fury", "force", "wildness", "violence"]}, {"answer": "viosterol", "hint": "synonyms for viosterol", "clues": ["calciferol", "cholecalciferol", "ergocalciferol", "D", "vitamin D", "viosterol"]}, {"answer": "vip", "hint": "synonyms for vip", "clues": ["VIP", "high-up", "very important person", "dignitary", "high muckamuck", "panjandrum"]}, {"answer": "virgin_birth", "hint": "synonyms for virgin birth", "clues": ["Nativity", "Virgin Birth", "parthenogeny", "parthenogenesis"]}, {"answer": "virgin_mary", "hint": "synonyms for virgin mary", "clues": ["Madonna", "Virgin Mary", "bloody shame", "Mary", "The Virgin", "Blessed Virgin"]}, {"answer": "virginia", "hint": "synonyms for virginia", "clues": ["Virginia", "Old Dominion State", "VA", "Old Dominion"]}, {"answer": "virginia_fence", "hint": "synonyms for virginia fence", "clues": ["snake-rail fence", "snake fence", "Virginia fence", "worm fence"]}, {"answer": "virginia_katherine_mcmath", "hint": "synonyms for virginia katherine mcmath", "clues": ["Virginia Katherine McMath", "Rogers", "Ginger Rogers", "Virginia McMath"]}, {"answer": "virginia_mcmath", "hint": "synonyms for virginia mcmath", "clues": ["Virginia Katherine McMath", "Rogers", "Ginger Rogers", "Virginia McMath"]}, {"answer": "virgule", "hint": "synonyms for virgule", "clues": ["solidus", "separatrix", "slash", "stroke", "diagonal", "virgule"]}, {"answer": "virtue", "hint": "synonyms for virtue", "clues": ["sexual morality", "moral excellence", "virtuousness", "chastity", "merit", "virtue"]}, {"answer": "vis_major", "hint": "synonyms for vis major", "clues": ["unavoidable casualty", "inevitable accident", "force majeure", "act of God", "vis major"]}, {"answer": "visage", "hint": "synonyms for visage", "clues": ["smiler", "phiz", "kisser", "physiognomy", "mug", "countenance", "visage"]}, {"answer": "viscidity", "hint": "synonyms for viscidity", "clues": ["viscidness", "gumminess", "tackiness", "cohesiveness", "ropiness", "glueyness", "gluiness", "viscidity"]}, {"answer": "viscidness", "hint": "synonyms for viscidness", "clues": ["gumminess", "tackiness", "cohesiveness", "viscidity", "ropiness", "glueyness", "gluiness", "viscidness"]}, {"answer": "viscount_nelson", "hint": "synonyms for viscount nelson", "clues": ["Viscount Nelson", "Admiral Nelson", "Lord Nelson", "Horatio Nelson", "Nelson"]}, {"answer": "viscount_st._albans", "hint": "synonyms for viscount st. albans", "clues": ["Francis Bacon", "Bacon", "Viscount St. Albans", "Baron Verulam"]}, {"answer": "visible_horizon", "hint": "synonyms for visible horizon", "clues": ["sensible horizon", "horizon", "apparent horizon", "skyline", "visible horizon"]}, {"answer": "vision", "hint": "synonyms for vision", "clues": ["sight", "visual sensation", "imaginativeness", "visual modality", "imagination", "visual sense", "vision"]}, {"answer": "visor", "hint": "synonyms for visor", "clues": ["eyeshade", "vizor", "bill", "peak", "visor"]}, {"answer": "vista", "hint": "synonyms for vista", "clues": ["view", "panorama", "scene", "prospect", "aspect", "vista"]}, {"answer": "vistaril", "hint": "synonyms for vistaril", "clues": ["Vistaril", "hydroxyzine", "hydroxyzine hydrochloride", "Atarax"]}, {"answer": "vitality", "hint": "synonyms for vitality", "clues": ["vim", "life force", "verve", "animation", "elan vital", "energy", "vital force", "vitality"]}, {"answer": "vitamin_a", "hint": "synonyms for vitamin a", "clues": ["vitamin A", "antiophthalmic factor", "A", "axerophthol"]}, {"answer": "vitamin_b", "hint": "synonyms for vitamin b", "clues": ["B-complex vitamin", "B complex", "B vitamin", "B", "vitamin B", "vitamin B complex"]}, {"answer": "vitamin_b1", "hint": "synonyms for vitamin b1", "clues": ["vitamin B1", "antiberiberi factor", "aneurin", "thiamin"]}, {"answer": "vitamin_b12", "hint": "synonyms for vitamin b12", "clues": ["vitamin B12", "cyanocobalamin", "cobalamin", "antipernicious anemia factor"]}, {"answer": "vitamin_b2", "hint": "synonyms for vitamin b2", "clues": ["lactoflavin", "riboflavin", "ovoflavin", "vitamin B2", "vitamin G", "hepatoflavin"]}, {"answer": "vitamin_b6", "hint": "synonyms for vitamin b6", "clues": ["adermin", "pyridoxal", "pyridoxine", "vitamin B6"]}, {"answer": "vitamin_b_complex", "hint": "synonyms for vitamin b complex", "clues": ["B-complex vitamin", "B complex", "B vitamin", "B", "vitamin B", "vitamin B complex"]}, {"answer": "vitamin_bc", "hint": "synonyms for vitamin bc", "clues": ["folacin", "pteroylmonoglutamic acid", "vitamin Bc", "folic acid", "folate", "vitamin M"]}, {"answer": "vitamin_d", "hint": "synonyms for vitamin d", "clues": ["calciferol", "cholecalciferol", "D", "ergocalciferol", "viosterol", "vitamin D"]}, {"answer": "vitamin_g", "hint": "synonyms for vitamin g", "clues": ["lactoflavin", "riboflavin", "ovoflavin", "vitamin B2", "vitamin G", "hepatoflavin"]}, {"answer": "vitamin_m", "hint": "synonyms for vitamin m", "clues": ["folacin", "pteroylmonoglutamic acid", "vitamin Bc", "folic acid", "folate", "vitamin M"]}, {"answer": "vitreous_silica", "hint": "synonyms for vitreous silica", "clues": ["lechatelierite", "quartz glass", "quartz", "crystal", "vitreous silica"]}, {"answer": "vitriol", "hint": "synonyms for vitriol", "clues": ["vituperation", "sulphuric acid", "oil of vitriol", "invective", "vitriol"]}, {"answer": "viva", "hint": "synonyms for viva", "clues": ["oral examination", "oral exam", "viva voce", "oral", "viva"]}, {"answer": "vividness", "hint": "synonyms for vividness", "clues": ["color", "chroma", "intensity", "saturation", "vividness"]}, {"answer": "vivification", "hint": "synonyms for vivification", "clues": ["spiritedness", "animation", "invigoration", "brio", "vivification"]}, {"answer": "vizor", "hint": "synonyms for vizor", "clues": ["visor", "eyeshade", "bill", "peak", "vizor"]}, {"answer": "vladimir_ilich_lenin", "hint": "synonyms for vladimir ilich lenin", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "vladimir_ilich_ulyanov", "hint": "synonyms for vladimir ilich ulyanov", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "vladimir_ilyich_lenin", "hint": "synonyms for vladimir ilyich lenin", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "vladimir_ilyich_ulyanov", "hint": "synonyms for vladimir ilyich ulyanov", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "vladimir_lenin", "hint": "synonyms for vladimir lenin", "clues": ["Vladimir Ilich Lenin", "Nikolai Lenin", "Lenin", "Vladimir Ilich Ulyanov", "Vladimir Lenin"]}, {"answer": "vocalisation", "hint": "synonyms for vocalisation", "clues": ["voice", "vocalization", "vocalism", "phonation", "vox"]}, {"answer": "vocaliser", "hint": "synonyms for vocaliser", "clues": ["singer", "vocalist", "vocalizer", "utterer"]}, {"answer": "vocalism", "hint": "synonyms for vocalism", "clues": ["vocalisation", "voice", "vowel system", "phonation", "vox", "vocalism"]}, {"answer": "vocalization", "hint": "synonyms for vocalization", "clues": ["vocalisation", "utterance", "voice", "vocalism", "phonation", "vox"]}, {"answer": "vocalizer", "hint": "synonyms for vocalizer", "clues": ["singer", "vocalist", "vocaliser", "utterer"]}, {"answer": "vociferation", "hint": "synonyms for vociferation", "clues": ["yell", "call", "outcry", "cry", "shout", "vociferation"]}, {"answer": "voice", "hint": "synonyms for voice", "clues": ["vocalization", "phonation", "part", "representative", "interpreter", "spokesperson", "vocalism", "articulation", "vox", "voice"]}, {"answer": "voice_communication", "hint": "synonyms for voice communication", "clues": ["spoken communication", "speech", "language", "oral communication", "spoken language", "voice communication"]}, {"answer": "voicelessness", "hint": "synonyms for voicelessness", "clues": ["susurration", "aphonia", "whispering", "voicelessness"]}, {"answer": "voider", "hint": "synonyms for voider", "clues": ["clothes hamper", "laundry basket", "nullifier", "clothes basket", "gusset", "defecator", "invalidator", "shitter", "voider"]}, {"answer": "voiding", "hint": "synonyms for voiding", "clues": ["excretion", "evacuation", "elimination", "voiding"]}, {"answer": "voltage", "hint": "synonyms for voltage", "clues": ["electric potential", "potential drop", "potential", "emf", "potential difference", "electromotive force", "voltage"]}, {"answer": "volume", "hint": "synonyms for volume", "clues": ["loudness", "mass", "intensity", "bulk", "book", "volume"]}, {"answer": "volume-detonation_bomb", "hint": "synonyms for volume-detonation bomb", "clues": ["thermobaric bomb", "vacuum bomb", "fuel-air bomb", "aerosol bomb", "volume-detonation bomb"]}, {"answer": "volume_unit", "hint": "synonyms for volume unit", "clues": ["cubature unit", "capacity unit", "cubic content unit", "cubage unit", "displacement unit", "cubic measure", "capacity measure", "volume unit"]}, {"answer": "voluptuousness", "hint": "synonyms for voluptuousness", "clues": ["lushness", "shapeliness", "curvaceousness", "luxuriance", "hot stuff", "voluptuousness"]}, {"answer": "vomit", "hint": "synonyms for vomit", "clues": ["emesis", "emetic", "nauseant", "disgorgement", "vomiting", "vomitus", "vomitive", "puke", "barf", "regurgitation", "puking"]}, {"answer": "vomiting", "hint": "synonyms for vomiting", "clues": ["emesis", "disgorgement", "vomit", "regurgitation", "puking"]}, {"answer": "von_bismarck", "hint": "synonyms for von bismarck", "clues": ["Prince Otto Eduard Leopold von Bismarck", "Iron Chancellor", "Bismarck", "von Bismarck", "Otto von Bismarck", "Prince Otto von Bismarck"]}, {"answer": "von_blucher", "hint": "synonyms for von blucher", "clues": ["G. L. von Blucher", "Gebhard Leberecht von Blucher", "Blucher", "von Blucher"]}, {"answer": "von_braun", "hint": "synonyms for von braun", "clues": ["Braun", "von Braun", "Wernher von Braun", "Wernher Magnus Maximilian von Braun"]}, {"answer": "von_mauser", "hint": "synonyms for von mauser", "clues": ["Peter Paul Mauser", "von Mauser", "P. P. von Mauser", "Mauser"]}, {"answer": "von_willebrand", "hint": "synonyms for von willebrand", "clues": ["Willebrand", "Erik Adolf von Willebrand", "E. A. von Willebrand", "von Willebrand"]}, {"answer": "voodoo", "hint": "synonyms for voodoo", "clues": ["hoodoo", "hoodooism", "fetich", "vodoun", "juju", "fetish", "voodoo"]}, {"answer": "voraciousness", "hint": "synonyms for voraciousness", "clues": ["rapacity", "ravenousness", "rapaciousness", "esurience", "greediness", "edacity", "voracity", "voraciousness"]}, {"answer": "voracity", "hint": "synonyms for voracity", "clues": ["voraciousness", "rapacity", "ravenousness", "rapaciousness", "esurience", "edacity", "voracity"]}, {"answer": "vortex", "hint": "synonyms for vortex", "clues": ["convolution", "whirl", "swirl", "maelstrom", "whirlpool", "vortex"]}, {"answer": "vote", "hint": "synonyms for vote", "clues": ["right to vote", "ballot", "voting", "voter turnout", "suffrage", "vote"]}, {"answer": "vox", "hint": "synonyms for vox", "clues": ["vocalisation", "voice", "vocalism", "phonation", "vox"]}, {"answer": "vulgarism", "hint": "synonyms for vulgarism", "clues": ["smut", "grossness", "vulgarity", "obscenity", "dirty word", "raunch", "coarseness", "commonness", "filth", "vulgarism"]}, {"answer": "vulgarity", "hint": "synonyms for vulgarity", "clues": ["vulgarism", "grossness", "coarseness", "commonness", "raunch", "vulgarity"]}, {"answer": "vulvar_slit", "hint": "synonyms for vulvar slit", "clues": ["pudendal cleavage", "urogenital cleft", "rima vulvae", "pudendal slit", "rima pudendi", "pudendal cleft", "vulvar slit"]}, {"answer": "w", "hint": "synonyms for w", "clues": ["atomic number 74", "west", "wolfram", "watt", "tungsten", "westward", "W", "double-u", "due west"]}, {"answer": "w.c.", "hint": "synonyms for w.c.", "clues": ["loo", "water closet", "closet", "W.C."]}, {"answer": "wad", "hint": "synonyms for wad", "clues": ["great deal", "mint", "plug", "peck", "quite a little", "hatful", "cud", "deal", "mountain", "pot", "quid", "good deal", "passel", "mass", "pile", "stack", "tidy sum", "spate", "lot", "raft", "batch", "mess", "slew", "plenty", "sight", "muckle", "heap", "mickle", "chew", "chaw", "flock", "wad"]}, {"answer": "wads", "hint": "synonyms for wads", "clues": ["mint", "plug", "peck", "quite a little", "tons", "deal", "mountain", "cud", "gobs", "rafts", "stack", "lot", "slews", "heaps", "batch", "mess", "plenty", "sight", "muckle", "wad", "mickle", "mass", "loads", "piles", "chaw", "great deal", "hatful", "quid", "pot", "lashings", "good deal", "oodles", "passel", "tidy sum", "spate", "dozens", "scads", "scores", "chew", "flock"]}, {"answer": "wag", "hint": "synonyms for wag", "clues": ["card", "waggle", "shake", "wit", "wag"]}, {"answer": "wage", "hint": "synonyms for wage", "clues": ["remuneration", "pay", "salary", "earnings", "wage"]}, {"answer": "wage_hike", "hint": "synonyms for wage hike", "clues": ["rise", "hike", "wage increase", "salary increase", "wage hike"]}, {"answer": "wage_increase", "hint": "synonyms for wage increase", "clues": ["rise", "wage hike", "hike", "salary increase", "wage increase"]}, {"answer": "wages", "hint": "synonyms for wages", "clues": ["remuneration", "payoff", "pay", "wage", "salary", "reward", "earnings"]}, {"answer": "waggon", "hint": "synonyms for waggon", "clues": ["beach wagon", "station wagon", "estate car", "wagon"]}, {"answer": "wagner", "hint": "synonyms for wagner", "clues": ["Richard Wagner", "Wagner", "Wilhelm Richard Wagner", "Otto Wagner"]}, {"answer": "wagon", "hint": "synonyms for wagon", "clues": ["paddy wagon", "beach waggon", "station wagon", "police wagon", "Charles's Wain", "patrol wagon", "estate car", "police van", "coaster wagon", "black Maria", "Plough", "Big Dipper", "Wain", "Wagon", "Dipper"]}, {"answer": "wahvey", "hint": "synonyms for wahvey", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "wain", "hint": "synonyms for wain", "clues": ["Plough", "Big Dipper", "Wain", "Charles's Wain", "Wagon", "John Wain", "John Barrington Wain", "Dipper"]}, {"answer": "waistband", "hint": "synonyms for waistband", "clues": ["girdle", "cincture", "waistcloth", "sash", "waistband"]}, {"answer": "waistcloth", "hint": "synonyms for waistcloth", "clues": ["girdle", "cincture", "sash", "waistband", "waistcloth"]}, {"answer": "wait", "hint": "synonyms for wait", "clues": ["hold", "postponement", "waiting", "time lag", "delay"]}, {"answer": "wake", "hint": "synonyms for wake", "clues": ["viewing", "Wake", "aftermath", "Wake Island", "backwash"]}, {"answer": "wakefulness", "hint": "synonyms for wakefulness", "clues": ["sleeplessness", "vigilance", "watchfulness", "alertness", "wakefulness"]}, {"answer": "wale", "hint": "synonyms for wale", "clues": ["welt", "weal", "strake", "wale"]}, {"answer": "wales", "hint": "synonyms for wales", "clues": ["wale", "weal", "welt", "Cambria", "Cymru", "strake"]}, {"answer": "walk", "hint": "synonyms for walk", "clues": ["paseo", "base on balls", "walkway", "walk of life", "pass", "walking", "manner of walking"]}, {"answer": "walkaway", "hint": "synonyms for walkaway", "clues": ["blowout", "runaway", "laugher", "romp", "shoo-in", "walkaway"]}, {"answer": "walker", "hint": "synonyms for walker", "clues": ["footer", "baby-walker", "Walker", "Alice Walker", "Alice Malsenior Walker", "pedestrian", "Zimmer frame", "go-cart", "Zimmer", "John Walker"]}, {"answer": "walker_smith", "hint": "synonyms for walker smith", "clues": ["Sugar Ray Robinson", "Walker Smith", "Ray Robinson", "Robinson"]}, {"answer": "walking_on_air", "hint": "synonyms for walking on air", "clues": ["cloud nine", "blissfulness", "seventh heaven", "bliss", "walking on air"]}, {"answer": "walkover", "hint": "synonyms for walkover", "clues": ["snap", "cinch", "pushover", "child's play", "picnic", "piece of cake", "duck soup", "breeze", "walkover"]}, {"answer": "wall_plug", "hint": "synonyms for wall plug", "clues": ["outlet", "electrical outlet", "electric receptacle", "wall socket", "wall plug"]}, {"answer": "wall_socket", "hint": "synonyms for wall socket", "clues": ["wall plug", "outlet", "electrical outlet", "electric receptacle", "wall socket"]}, {"answer": "wallace", "hint": "synonyms for wallace", "clues": ["Alfred Russel Wallace", "Richard Horatio Edgar Wallace", "Edgar Wallace", "Sir William Wallace", "Wallace"]}, {"answer": "wallis_warfield_simpson", "hint": "synonyms for wallis warfield simpson", "clues": ["Duchess of Windsor", "Wallis Warfield Simpson", "Mrs. Simpson", "Wallis Warfield Windsor", "Simpson"]}, {"answer": "wallis_warfield_windsor", "hint": "synonyms for wallis warfield windsor", "clues": ["Duchess of Windsor", "Wallis Warfield Simpson", "Mrs. Simpson", "Wallis Warfield Windsor", "Simpson"]}, {"answer": "walpole", "hint": "synonyms for walpole", "clues": ["Horatio Walpole", "Sir Robert Walpole", "First Earl of Orford", "Horace Walpole", "Walpole"]}, {"answer": "walton", "hint": "synonyms for walton", "clues": ["William Walton", "Walton", "Izaak Walton", "Ernest Thomas Sinton Walton", "E. T. S. Walton", "Ernest Walton", "Sir William Turner Walton"]}, {"answer": "wampum", "hint": "synonyms for wampum", "clues": ["clams", "dinero", "bread", "lettuce", "peag", "dough", "moolah", "lucre", "pelf", "wampumpeag", "kale", "lolly", "simoleons", "sugar", "gelt", "scratch", "loot", "shekels", "boodle", "cabbage", "wampum"]}, {"answer": "wand", "hint": "synonyms for wand", "clues": ["sceptre", "verge", "baton", "wand"]}, {"answer": "wanderer", "hint": "synonyms for wanderer", "clues": ["bird of passage", "roamer", "rover", "spider", "wanderer"]}, {"answer": "wandering_nerve", "hint": "synonyms for wandering nerve", "clues": ["vagus", "pneumogastric", "nervus vagus", "vagus nerve", "pneumogastric nerve", "tenth cranial nerve", "wandering nerve"]}, {"answer": "wannabe", "hint": "synonyms for wannabe", "clues": ["wannabee", "hopeful", "aspirer", "aspirant"]}, {"answer": "wannabee", "hint": "synonyms for wannabee", "clues": ["hopeful", "aspirer", "wannabe", "aspirant"]}, {"answer": "wanness", "hint": "synonyms for wanness", "clues": ["pallor", "luridness", "lividity", "achromasia", "pallidness", "paleness", "lividness", "wanness"]}, {"answer": "want", "hint": "synonyms for want", "clues": ["privation", "need", "wishing", "neediness", "lack", "deficiency", "want"]}, {"answer": "war_cry", "hint": "synonyms for war cry", "clues": ["watchword", "war whoop", "cry", "rallying cry", "battle cry", "war cry"]}, {"answer": "war_machine", "hint": "synonyms for war machine", "clues": ["military", "armed forces", "military machine", "armed services", "war machine"]}, {"answer": "war_of_american_independence", "hint": "synonyms for war of american independence", "clues": ["American Revolution", "War of American Independence", "American War of Independence", "American Revolutionary War"]}, {"answer": "war_to_end_war", "hint": "synonyms for war to end war", "clues": ["World War I", "First World War", "War to End War", "Great War"]}, {"answer": "warburg", "hint": "synonyms for warburg", "clues": ["Warburg", "Aby Warburg", "Otto Heinrich Warburg", "Aby Moritz Warburg"]}, {"answer": "ward", "hint": "synonyms for ward", "clues": ["Montgomery Ward", "Barbara Ward", "hospital ward", "Mrs. Humphrey Ward", "Baroness Jackson of Lodsworth", "Mary Augusta Arnold Ward", "Ward", "cellblock", "Aaron Montgomery Ward"]}, {"answer": "warhorse", "hint": "synonyms for warhorse", "clues": ["old hand", "old stager", "stager", "veteran", "oldtimer", "warhorse"]}, {"answer": "warmheartedness", "hint": "synonyms for warmheartedness", "clues": ["warmth", "tenderness", "affection", "fondness", "heart", "affectionateness", "philia", "warmness", "warmheartedness"]}, {"answer": "warmness", "hint": "synonyms for warmness", "clues": ["warmth", "tenderness", "warmheartedness", "affection", "heart", "affectionateness", "philia", "fondness", "warmness"]}, {"answer": "warmth", "hint": "synonyms for warmth", "clues": ["warmheartedness", "affectionateness", "heat", "passion", "lovingness", "fondness", "warmness", "warmth"]}, {"answer": "warrant", "hint": "synonyms for warrant", "clues": ["warranty", "imprimatur", "stock warrant", "stock-purchase warrant", "guarantee", "sanction", "indorsement", "warrantee", "countenance"]}, {"answer": "warren", "hint": "synonyms for warren", "clues": ["Earl Warren", "Warren", "rabbit warren", "Robert Penn Warren"]}, {"answer": "warren_gamaliel_harding", "hint": "synonyms for warren gamaliel harding", "clues": ["President Harding", "Warren Gamaliel Harding", "Warren Harding", "Harding"]}, {"answer": "warren_harding", "hint": "synonyms for warren harding", "clues": ["President Harding", "Warren Gamaliel Harding", "Warren Harding", "Harding"]}, {"answer": "warwick", "hint": "synonyms for warwick", "clues": ["Richard Neville", "Earl of Warwick", "Warwick", "Kingmaker"]}, {"answer": "wash", "hint": "synonyms for wash", "clues": ["washing", "slipstream", "wash drawing", "dry wash", "washout", "lavation", "race", "laundry", "washables", "airstream", "backwash"]}, {"answer": "wash-hand_basin", "hint": "synonyms for wash-hand basin", "clues": ["lavabo", "handbasin", "washbasin", "washbowl", "wash-hand basin"]}, {"answer": "wash_room", "hint": "synonyms for wash room", "clues": ["public toilet", "toilet facility", "public lavatory", "public convenience", "comfort station", "convenience", "restroom", "wash room"]}, {"answer": "washbasin", "hint": "synonyms for washbasin", "clues": ["lavabo", "handbasin", "lavatory", "basin", "wash-hand basin", "washbowl", "washstand", "washbasin"]}, {"answer": "washbowl", "hint": "synonyms for washbowl", "clues": ["lavabo", "handbasin", "washbasin", "lavatory", "basin", "wash-hand basin", "washstand", "washbowl"]}, {"answer": "washing", "hint": "synonyms for washing", "clues": ["lavation", "wash", "laundry", "washables"]}, {"answer": "washing_soda", "hint": "synonyms for washing soda", "clues": ["soda ash", "sodium carbonate", "sal soda", "soda", "washing soda"]}, {"answer": "washington", "hint": "synonyms for washington", "clues": ["George Washington", "Booker T. Washington", "Evergreen State", "WA", "American capital", "President Washington", "capital of the United States", "Booker Taliaferro Washington", "Washington D.C.", "Washington", "Capital"]}, {"answer": "washington_d.c.", "hint": "synonyms for washington d.c.", "clues": ["American capital", "capital of the United States", "Washington D.C.", "Washington"]}, {"answer": "washstand", "hint": "synonyms for washstand", "clues": ["washbasin", "wash-hand stand", "lavatory", "basin", "washbowl", "washstand"]}, {"answer": "wassermann", "hint": "synonyms for wassermann", "clues": ["August von Wassermann", "Wassermann test", "Wassermann", "Wasserman reaction"]}, {"answer": "waste-yard", "hint": "synonyms for waste-yard", "clues": ["dumpsite", "rubbish dump", "garbage dump", "trash dump", "dump", "wasteyard"]}, {"answer": "wastebin", "hint": "synonyms for wastebin", "clues": ["ash bin", "trash can", "ashcan", "garbage can", "trash barrel", "dustbin", "wastebin"]}, {"answer": "waster", "hint": "synonyms for waster", "clues": ["wastrel", "destroyer", "undoer", "ruiner", "uprooter", "waster"]}, {"answer": "wasteyard", "hint": "synonyms for wasteyard", "clues": ["dumpsite", "rubbish dump", "garbage dump", "waste-yard", "trash dump", "dump"]}, {"answer": "wasting", "hint": "synonyms for wasting", "clues": ["atrophy", "cachexy", "wasting away", "cachexia", "wasting"]}, {"answer": "wasting_disease", "hint": "synonyms for wasting disease", "clues": ["consumption", "pulmonary tuberculosis", "white plague", "phthisis", "wasting disease"]}, {"answer": "watch", "hint": "synonyms for watch", "clues": ["sentry", "lookout man", "sentinel", "picket", "lookout", "ticker", "scout", "spotter", "vigil", "watch"]}, {"answer": "watch_bracelet", "hint": "synonyms for watch bracelet", "clues": ["watchstrap", "wristband", "watchband", "bracelet", "watch bracelet"]}, {"answer": "watchband", "hint": "synonyms for watchband", "clues": ["watchstrap", "wristband", "watch bracelet", "bracelet", "watchband"]}, {"answer": "watcher", "hint": "synonyms for watcher", "clues": ["looker", "viewer", "security guard", "watchman", "spectator", "witness", "watcher"]}, {"answer": "watchfulness", "hint": "synonyms for watchfulness", "clues": ["wakefulness", "weather eye", "vigilance", "alertness", "watchfulness"]}, {"answer": "watchstrap", "hint": "synonyms for watchstrap", "clues": ["wristband", "watchband", "watch bracelet", "bracelet", "watchstrap"]}, {"answer": "watchword", "hint": "synonyms for watchword", "clues": ["parole", "countersign", "cry", "rallying cry", "word", "password", "war cry", "battle cry", "watchword"]}, {"answer": "water", "hint": "synonyms for water", "clues": ["weewee", "urine", "piss", "water supply", "H2O", "piddle", "body of water", "pee", "water system", "water"]}, {"answer": "water_finder", "hint": "synonyms for water finder", "clues": ["divining rod", "waterfinder", "dowser", "dowsing rod"]}, {"answer": "water_gate", "hint": "synonyms for water gate", "clues": ["penstock", "sluice valve", "floodgate", "sluicegate", "head gate", "water gate"]}, {"answer": "water_glass", "hint": "synonyms for water glass", "clues": ["water gage", "sodium silicate", "clepsydra", "soluble glass", "water clock", "water glass"]}, {"answer": "water_level", "hint": "synonyms for water level", "clues": ["water line", "water table", "groundwater level", "water level"]}, {"answer": "water_pipe", "hint": "synonyms for water pipe", "clues": ["nargileh", "calean", "kalian", "hookah", "hubbly-bubbly", "shisha", "chicha", "hubble-bubble", "sheesha", "water pipe"]}, {"answer": "waterfinder", "hint": "synonyms for waterfinder", "clues": ["divining rod", "water finder", "dowser", "dowsing rod"]}, {"answer": "waters", "hint": "synonyms for waters", "clues": ["weewee", "urine", "amnionic fluid", "piss", "water supply", "Ethel Waters", "water", "H2O", "piddle", "body of water", "pee", "water system"]}, {"answer": "watershed", "hint": "synonyms for watershed", "clues": ["catchment basin", "catchment area", "turning point", "basin", "drainage area", "drainage basin", "divide", "water parting", "river basin", "landmark", "watershed"]}, {"answer": "waterspout", "hint": "synonyms for waterspout", "clues": ["deluge", "downpour", "torrent", "pelter", "cloudburst", "soaker", "waterspout"]}, {"answer": "watson", "hint": "synonyms for watson", "clues": ["James Dewey Watson", "John Broadus Watson", "Thomas Augustus Watson", "James Watson", "Watson"]}, {"answer": "watts", "hint": "synonyms for watts", "clues": ["Watt", "W", "James Watt", "Isaac Watts"]}, {"answer": "wave", "hint": "synonyms for wave", "clues": ["undulation", "Wave", "waving", "wafture", "moving ridge"]}, {"answer": "waver", "hint": "synonyms for waver", "clues": ["flicker", "faltering", "hesitation", "flutter", "waver"]}, {"answer": "wayne", "hint": "synonyms for wayne", "clues": ["John Wayne", "Mad Anthony Wayne", "Wayne", "Duke Wayne"]}, {"answer": "ways", "hint": "synonyms for ways", "clues": ["means", "shipway", "style", "room", "way", "way of life", "manner", "mode", "path", "fashion", "agency", "elbow room", "direction"]}, {"answer": "wbc", "hint": "synonyms for wbc", "clues": ["white cell", "white blood corpuscle", "white blood cell", "white corpuscle", "leucocyte", "WBC"]}, {"answer": "weaponry", "hint": "synonyms for weaponry", "clues": ["weapons system", "implements of war", "munition", "arms", "weaponry"]}, {"answer": "weapons_system", "hint": "synonyms for weapons system", "clues": ["implements of war", "weaponry", "munition", "arms", "weapons system"]}, {"answer": "wear", "hint": "synonyms for wear", "clues": ["habiliment", "vesture", "clothing", "wearing", "article of clothing", "wearable"]}, {"answer": "wearing_away", "hint": "synonyms for wearing away", "clues": ["erosion", "wearing", "eating away", "eroding"]}, {"answer": "weather_sheet", "hint": "synonyms for weather sheet", "clues": ["mainsheet", "sheet", "shroud", "tack", "weather sheet"]}, {"answer": "weatherboard", "hint": "synonyms for weatherboard", "clues": ["to windward", "windward side", "clapboard", "weatherboarding", "weather side"]}, {"answer": "web", "hint": "synonyms for web", "clues": ["WWW", "World Wide Web", "network", "entanglement", "web"]}, {"answer": "webb", "hint": "synonyms for webb", "clues": ["First Baron Passfield", "Sidney Webb", "Beatrice Webb", "Webb", "Sidney James Webb", "Martha Beatrice Potter Webb"]}, {"answer": "weber", "hint": "synonyms for weber", "clues": ["Weber", "Carl Maria von Weber", "Ernst Heinrich Weber", "Wilhelm Eduard Weber", "Baron Karl Maria Friedrich Ernst von Weber", "Wb", "Max Weber", "E. H. Weber"]}, {"answer": "webster", "hint": "synonyms for webster", "clues": ["Daniel Webster", "Noah Webster", "Webster", "John Webster"]}, {"answer": "wedding", "hint": "synonyms for wedding", "clues": ["marriage", "marriage ceremony", "hymeneals", "nuptials", "wedding party", "wedding ceremony", "wedding"]}, {"answer": "wedge", "hint": "synonyms for wedge", "clues": ["cuneus", "submarine", "bomber", "Cuban sandwich", "chock", "grinder", "wedge shape", "wedge heel", "submarine sandwich", "Italian sandwich", "torpedo", "hacek", "poor boy", "zep", "hoagy", "sub", "hoagie", "hero", "hero sandwich", "wedge"]}, {"answer": "wedlock", "hint": "synonyms for wedlock", "clues": ["matrimony", "union", "spousal relationship", "marriage", "wedlock"]}, {"answer": "weed", "hint": "synonyms for weed", "clues": ["locoweed", "mourning band", "Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "sess", "skunk", "sens", "weed"]}, {"answer": "weeds", "hint": "synonyms for weeds", "clues": ["locoweed", "mourning band", "Mary Jane", "gage", "pot", "smoke", "green goddess", "dope", "grass", "sess", "weed", "skunk", "sens", "widow's weeds"]}, {"answer": "weeness", "hint": "synonyms for weeness", "clues": ["minuteness", "diminutiveness", "tininess", "petiteness", "weeness"]}, {"answer": "weenie", "hint": "synonyms for weenie", "clues": ["hotdog", "wiener", "dog", "wienerwurst", "frank", "frankfurter", "weenie"]}, {"answer": "weewee", "hint": "synonyms for weewee", "clues": ["piddle", "water", "urine", "pee", "piss", "weewee"]}, {"answer": "weight", "hint": "synonyms for weight", "clues": ["weighting", "exercising weight", "system of weights", "weight unit", "free weight", "weightiness"]}, {"answer": "weirdie", "hint": "synonyms for weirdie", "clues": ["weirdy", "creep", "spook", "weirdo", "weirdie"]}, {"answer": "weirdo", "hint": "synonyms for weirdo", "clues": ["weirdy", "loony", "nutcase", "creep", "crazy", "spook", "weirdie", "weirdo"]}, {"answer": "weirdy", "hint": "synonyms for weirdy", "clues": ["weirdo", "creep", "spook", "weirdie", "weirdy"]}, {"answer": "weisenheimer", "hint": "synonyms for weisenheimer", "clues": ["wise guy", "wiseacre", "smart aleck", "wisenheimer"]}, {"answer": "welfare", "hint": "synonyms for welfare", "clues": ["wellbeing", "public assistance", "upbeat", "eudaemonia", "social welfare", "benefit", "welfare"]}, {"answer": "welkin", "hint": "synonyms for welkin", "clues": ["sphere", "heavens", "empyrean", "celestial sphere", "vault of heaven", "firmament", "welkin"]}, {"answer": "well-being", "hint": "synonyms for well-being", "clues": ["welfare", "eudaemonia", "wellbeing", "upbeat"]}, {"answer": "wellbeing", "hint": "synonyms for wellbeing", "clues": ["welfare", "eudaemonia", "well-being", "upbeat"]}, {"answer": "wellington", "hint": "synonyms for wellington", "clues": ["Iron Duke", "Hessian boot", "Arthur Wellesley", "Wellington boot", "hessian", "First Duke of Wellington", "capital of New Zealand", "Wellington", "jackboot"]}, {"answer": "wellington_boot", "hint": "synonyms for wellington boot", "clues": ["Hessian boot", "Wellington boot", "hessian", "Wellington", "jackboot"]}, {"answer": "wells", "hint": "synonyms for wells", "clues": ["wellspring", "Herbert George Wells", "Wells", "fountainhead", "H. G. Wells"]}, {"answer": "welshman", "hint": "synonyms for welshman", "clues": ["Cambrian", "Welshman", "Welsh", "Cymry"]}, {"answer": "welter", "hint": "synonyms for welter", "clues": ["muddle", "mare's nest", "clutter", "fuddle", "smother", "jumble", "welter"]}, {"answer": "wench", "hint": "synonyms for wench", "clues": ["bird", "skirt", "chick", "doll", "dame", "wench"]}, {"answer": "werlhof's_disease", "hint": "synonyms for werlhof's disease", "clues": ["Werlhof's disease", "idiopathic thrombocytopenic purpura", "thrombocytopenic purpura", "purpura hemorrhagica"]}, {"answer": "wernher_magnus_maximilian_von_braun", "hint": "synonyms for wernher magnus maximilian von braun", "clues": ["Braun", "von Braun", "Wernher von Braun", "Wernher Magnus Maximilian von Braun"]}, {"answer": "wernher_von_braun", "hint": "synonyms for wernher von braun", "clues": ["Braun", "von Braun", "Wernher von Braun", "Wernher Magnus Maximilian von Braun"]}, {"answer": "wernicke's_aphasia", "hint": "synonyms for wernicke's aphasia", "clues": ["Wernicke's aphasia", "sensory aphasia", "receptive aphasia", "impressive aphasia", "fluent aphasia"]}, {"answer": "west_indian_cherry", "hint": "synonyms for west indian cherry", "clues": ["West Indian cherry", "surinam cherry", "barbados cherry", "acerola"]}, {"answer": "west_indian_smallpox", "hint": "synonyms for west indian smallpox", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "white pox", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox"]}, {"answer": "western_church", "hint": "synonyms for western church", "clues": ["Roman Catholic", "Roman Church", "Roman Catholic Church", "Church of Rome", "Western Church"]}, {"answer": "western_samoa", "hint": "synonyms for western samoa", "clues": ["Samoa", "Western Samoa", "Samoa i Sisifo", "Independent State of Samoa"]}, {"answer": "wetter", "hint": "synonyms for wetter", "clues": ["wetting agent", "surface-active agent", "bed wetter", "surfactant", "wetter"]}, {"answer": "whack", "hint": "synonyms for whack", "clues": ["belt", "rap", "whang", "knock", "whack"]}, {"answer": "whang", "hint": "synonyms for whang", "clues": ["belt", "whack", "rap", "knock", "whang"]}, {"answer": "wharfage", "hint": "synonyms for wharfage", "clues": ["dock", "pier", "wharf", "quayage", "wharfage"]}, {"answer": "whatchamacallit", "hint": "synonyms for whatchamacallit", "clues": ["thingumabob", "gubbins", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "whatchamacallum", "thingummy", "whatsis", "gimmick"]}, {"answer": "whatchamacallum", "hint": "synonyms for whatchamacallum", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "whatsis", "gimmick"]}, {"answer": "whatnot", "hint": "synonyms for whatnot", "clues": ["knickknackery", "bric-a-brac", "nicknack", "whatnot"]}, {"answer": "whatsis", "hint": "synonyms for whatsis", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "widget", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "thingummy", "gimmick", "whatsis"]}, {"answer": "wheel", "hint": "synonyms for wheel", "clues": ["bike", "cycle", "roulette wheel", "rack", "steering wheel", "bicycle", "wheel"]}, {"answer": "wheeler", "hint": "synonyms for wheeler", "clues": ["Wheeler", "bicycler", "wheelwright", "Sir Robert Eric Mortimer Wheeler", "Sir Mortimer Wheeler", "bicyclist"]}, {"answer": "whim", "hint": "synonyms for whim", "clues": ["whimsey", "impulse", "notion", "caprice", "whim"]}, {"answer": "whimsey", "hint": "synonyms for whimsey", "clues": ["flightiness", "whimsy", "capriciousness", "arbitrariness", "whimsicality", "notion", "whim"]}, {"answer": "whimsicality", "hint": "synonyms for whimsicality", "clues": ["whimsey", "flightiness", "impishness", "arbitrariness", "mischievousness", "capriciousness", "puckishness", "whimsicality"]}, {"answer": "whimsy", "hint": "synonyms for whimsy", "clues": ["whimsey", "flightiness", "capriciousness", "arbitrariness", "whimsicality", "notion", "whim"]}, {"answer": "whiner", "hint": "synonyms for whiner", "clues": ["grumbler", "moaner", "sniveller", "bellyacher", "complainer", "crybaby", "squawker", "whiner"]}, {"answer": "whirl", "hint": "synonyms for whirl", "clues": ["go", "offer", "twist", "commotion", "vortex", "twirl", "convolution", "crack", "spin", "swirl", "pass", "fling", "whirl"]}, {"answer": "whirligig", "hint": "synonyms for whirligig", "clues": ["teetotum", "carrousel", "spinning top", "merry-go-round", "top", "roundabout", "whirligig"]}, {"answer": "whiskers", "hint": "synonyms for whiskers", "clues": ["face fungus", "beard", "hair", "whisker", "hair's-breadth"]}, {"answer": "whisper", "hint": "synonyms for whisper", "clues": ["susurration", "rustling", "rustle", "whispering", "voicelessness"]}, {"answer": "whit", "hint": "synonyms for whit", "clues": ["tittle", "smidgin", "iota", "smidge", "shred", "scintilla", "whit"]}, {"answer": "white_arsenic", "hint": "synonyms for white arsenic", "clues": ["arsenic trioxide", "arsenous oxide", "arsenous anhydride", "arsenic", "ratsbane", "white arsenic"]}, {"answer": "white_blood_cell", "hint": "synonyms for white blood cell", "clues": ["white cell", "white blood corpuscle", "white corpuscle", "leucocyte", "WBC", "white blood cell"]}, {"answer": "white_blood_corpuscle", "hint": "synonyms for white blood corpuscle", "clues": ["white cell", "white blood cell", "white corpuscle", "leucocyte", "WBC", "white blood corpuscle"]}, {"answer": "white_cell", "hint": "synonyms for white cell", "clues": ["white blood corpuscle", "white blood cell", "white corpuscle", "leucocyte", "WBC", "white cell"]}, {"answer": "white_corpuscle", "hint": "synonyms for white corpuscle", "clues": ["white cell", "white blood corpuscle", "white blood cell", "leucocyte", "WBC", "white corpuscle"]}, {"answer": "white_plague", "hint": "synonyms for white plague", "clues": ["wasting disease", "phthisis", "consumption", "pulmonary tuberculosis", "drug addiction", "white plague"]}, {"answer": "white_potato", "hint": "synonyms for white potato", "clues": ["Irish potato", "potato", "murphy", "spud", "tater", "white potato"]}, {"answer": "white_pox", "hint": "synonyms for white pox", "clues": ["West Indian smallpox", "alastrim", "Cuban itch", "pseudosmallpox", "variola minor", "Kaffir pox", "pseudovariola", "milk pox", "white pox"]}, {"answer": "white_russia", "hint": "synonyms for white russia", "clues": ["Byelarus", "Byelorussia", "Republic of Belarus", "White Russia"]}, {"answer": "white_tie", "hint": "synonyms for white tie", "clues": ["white tie and tails", "dress suit", "tailcoat", "full dress", "tails", "white tie"]}, {"answer": "white_tie_and_tails", "hint": "synonyms for white tie and tails", "clues": ["dress suit", "tailcoat", "white tie", "full dress", "tails", "white tie and tails"]}, {"answer": "whiteness", "hint": "synonyms for whiteness", "clues": ["white", "sinlessness", "innocence", "pureness", "purity", "whiteness"]}, {"answer": "whiz", "hint": "synonyms for whiz", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "wiz", "whizz", "superstar", "genius"]}, {"answer": "whizz", "hint": "synonyms for whizz", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius"]}, {"answer": "whole_caboodle", "hint": "synonyms for whole caboodle", "clues": ["whole kit", "works", "whole kit and boodle", "kit and caboodle", "whole shebang", "whole works", "full treatment", "whole caboodle"]}, {"answer": "whole_kit", "hint": "synonyms for whole kit", "clues": ["works", "whole kit and boodle", "kit and caboodle", "whole shebang", "whole works", "full treatment", "whole caboodle", "whole kit"]}, {"answer": "whole_kit_and_boodle", "hint": "synonyms for whole kit and boodle", "clues": ["whole kit", "works", "kit and caboodle", "whole shebang", "whole works", "full treatment", "whole caboodle", "whole kit and caboodle"]}, {"answer": "whole_kit_and_caboodle", "hint": "synonyms for whole kit and caboodle", "clues": ["whole kit", "works", "kit and caboodle", "whole kit and boodle", "whole shebang", "whole works", "full treatment", "whole caboodle"]}, {"answer": "whole_shebang", "hint": "synonyms for whole shebang", "clues": ["whole kit", "works", "kit and caboodle", "whole kit and boodle", "whole works", "full treatment", "whole caboodle", "whole shebang"]}, {"answer": "whole_works", "hint": "synonyms for whole works", "clues": ["whole kit", "works", "kit and caboodle", "whole kit and boodle", "whole shebang", "full treatment", "whole caboodle", "whole works"]}, {"answer": "whore", "hint": "synonyms for whore", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "tart", "cocotte", "woman of the street", "cyprian", "whore"]}, {"answer": "whorehouse", "hint": "synonyms for whorehouse", "clues": ["bagnio", "house of ill repute", "bordello", "sporting house", "house of prostitution", "cathouse", "brothel", "bawdyhouse", "whorehouse"]}, {"answer": "whoreson", "hint": "synonyms for whoreson", "clues": ["love child", "SOB", "illegitimate", "motherfucker", "son of a bitch", "shit", "illegitimate child", "by-blow", "cocksucker", "asshole", "bastard", "dickhead", "prick", "whoreson"]}, {"answer": "whorl", "hint": "synonyms for whorl", "clues": ["ringlet", "coil", "curl", "scroll", "roll", "spiral", "curlicue", "volute", "gyre", "helix", "lock", "whorl"]}, {"answer": "wickedness", "hint": "synonyms for wickedness", "clues": ["lousiness", "darkness", "repulsiveness", "sin", "loathsomeness", "dark", "sinfulness", "nefariousness", "evil", "sliminess", "ugliness", "vileness", "iniquity", "immorality", "wickedness"]}, {"answer": "wicket", "hint": "synonyms for wicket", "clues": ["wicket gate", "hoop", "lattice", "grille", "wicket door", "wicket"]}, {"answer": "wickliffe", "hint": "synonyms for wickliffe", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "wiclif", "hint": "synonyms for wiclif", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "wideness", "hint": "synonyms for wideness", "clues": ["broadness", "immenseness", "enormousness", "grandness", "immensity", "vastness", "greatness", "sizeableness", "wideness"]}, {"answer": "widget", "hint": "synonyms for widget", "clues": ["thingumabob", "gubbins", "whatchamacallit", "thingamajig", "convenience", "gismo", "doojigger", "doodad", "doohickey", "gizmo", "contrivance", "gadget", "thingummy", "appliance", "whatsis", "contraption", "gimmick", "widget"]}, {"answer": "wiener", "hint": "synonyms for wiener", "clues": ["hotdog", "wienerwurst", "frankfurter", "frank", "dog", "weenie", "Wiener", "Norbert Wiener"]}, {"answer": "wienerwurst", "hint": "synonyms for wienerwurst", "clues": ["hotdog", "dog", "weenie", "wiener", "frank", "frankfurter", "wienerwurst"]}, {"answer": "wifi", "hint": "synonyms for wifi", "clues": ["wireless fidelity", "wireless local area network", "WLAN", "WiFi"]}, {"answer": "wilder", "hint": "synonyms for wilder", "clues": ["Thornton Niven Wilder", "Wilder", "Billy Wilder", "Thornton Wilder", "Samuel Wilder"]}, {"answer": "wildness", "hint": "synonyms for wildness", "clues": ["abandon", "fierceness", "furiousness", "ferocity", "vehemence", "fury", "violence", "wildness"]}, {"answer": "wile", "hint": "synonyms for wile", "clues": ["shenanigan", "chicane", "guile", "trickery", "wile"]}, {"answer": "wiliness", "hint": "synonyms for wiliness", "clues": ["foxiness", "slyness", "guile", "craftiness", "craft", "cunning", "wiliness"]}, {"answer": "wilkins", "hint": "synonyms for wilkins", "clues": ["George Hubert Wilkins", "Maurice Wilkins", "Roy Wilkins", "Wilkins", "Maurice Hugh Frederick Wilkins"]}, {"answer": "will_power", "hint": "synonyms for will power", "clues": ["self-will", "willpower", "self-command", "self-control", "possession", "self-possession"]}, {"answer": "willebrand", "hint": "synonyms for willebrand", "clues": ["Willebrand", "Erik Adolf von Willebrand", "E. A. von Willebrand", "von Willebrand"]}, {"answer": "william_augustus", "hint": "synonyms for william augustus", "clues": ["Duke of Cumberland", "Butcher Cumberland", "Cumberland", "William Augustus"]}, {"answer": "william_f._cody", "hint": "synonyms for william f. cody", "clues": ["William Frederick Cody", "Buffalo Bill Cody", "Buffalo Bill", "Cody", "William F. Cody"]}, {"answer": "william_frederick_cody", "hint": "synonyms for william frederick cody", "clues": ["William Frederick Cody", "Buffalo Bill Cody", "Buffalo Bill", "Cody", "William F. Cody"]}, {"answer": "william_gilbert", "hint": "synonyms for william gilbert", "clues": ["Gilbert", "Sir William Gilbert", "William Schwenk Gilbert", "William S. Gilbert"]}, {"answer": "william_harrison_dempsey", "hint": "synonyms for william harrison dempsey", "clues": ["Dempsey", "Manassa Mauler", "William Harrison Dempsey", "Jack Dempsey"]}, {"answer": "william_henry_harrison", "hint": "synonyms for william henry harrison", "clues": ["President William Henry Harrison", "William Henry Harrison", "President Harrison", "Harrison"]}, {"answer": "william_jefferson_clinton", "hint": "synonyms for william jefferson clinton", "clues": ["Clinton", "Bill Clinton", "William Jefferson Clinton", "President Clinton"]}, {"answer": "william_jennings_bryan", "hint": "synonyms for william jennings bryan", "clues": ["William Jennings Bryan", "Great Commoner", "Bryan", "Boy Orator of the Platte"]}, {"answer": "william_pitt", "hint": "synonyms for william pitt", "clues": ["William Pitt", "Pitt the Elder", "Pitt", "Second Earl of Chatham", "Pitt the Younger", "First Earl of Chatham"]}, {"answer": "william_s._gilbert", "hint": "synonyms for william s. gilbert", "clues": ["Gilbert", "Sir William Gilbert", "William Schwenk Gilbert", "William S. Gilbert"]}, {"answer": "william_schwenk_gilbert", "hint": "synonyms for william schwenk gilbert", "clues": ["Gilbert", "Sir William Gilbert", "William Schwenk Gilbert", "William S. Gilbert"]}, {"answer": "williams", "hint": "synonyms for williams", "clues": ["Hiram Williams", "Theodore Samuel Williams", "Thomas Lanier Williams", "Roger Williams", "Tennessee Williams", "Bernard Arthur Owen Williams", "William Carlos Williams", "Ted Williams", "Williams", "Hank Williams", "Hiram King Williams", "Sir Bernard Williams"]}, {"answer": "willie_howard_mays_jr.", "hint": "synonyms for willie howard mays jr.", "clues": ["Willie Howard Mays Jr.", "Mays", "Say Hey Kid", "Willie Mays"]}, {"answer": "willie_mays", "hint": "synonyms for willie mays", "clues": ["Willie Howard Mays Jr.", "Mays", "Say Hey Kid", "Willie Mays"]}, {"answer": "willpower", "hint": "synonyms for willpower", "clues": ["self-will", "will power", "self-command", "self-control", "possession", "self-possession"]}, {"answer": "wilms'_tumor", "hint": "synonyms for wilms' tumor", "clues": ["adenomyosarcoma", "embryoma of the kidney", "nephroblastoma", "Wilms' tumor"]}, {"answer": "wilms_tumour", "hint": "synonyms for wilms tumour", "clues": ["adenomyosarcoma", "embryoma of the kidney", "nephroblastoma", "Wilms' tumor"]}, {"answer": "wilno", "hint": "synonyms for wilno", "clues": ["capital of Lithuania", "Vilnius", "Vilno", "Wilno", "Vilna"]}, {"answer": "wilson", "hint": "synonyms for wilson", "clues": ["Robert Woodrow Wilson", "Harriet Wilson", "John Tuzo Wilson", "President Wilson", "Wilson", "Sir Angus Wilson", "E. O. Wilson", "Edmund Wilson", "Mount Wilson", "Woodrow Wilson", "Thomas Woodrow Wilson", "James Wilson", "Alexander Wilson", "Edward Osborne Wilson", "Charles Thomson Rees Wilson", "Angus Frank Johnstone Wilson"]}, {"answer": "wimp", "hint": "synonyms for wimp", "clues": ["chicken", "crybaby", "weakly interacting massive particle", "WIMP"]}, {"answer": "wimshurst_machine", "hint": "synonyms for wimshurst machine", "clues": ["electrostatic generator", "Van de Graaff generator", "Wimshurst machine", "electrostatic machine"]}, {"answer": "wind", "hint": "synonyms for wind", "clues": ["hint", "winding", "malarkey", "lead", "breaking wind", "wind instrument", "tip", "nothingness", "fart", "confidential information", "current of air", "twist", "air current", "jazz", "steer", "flatus", "idle words"]}, {"answer": "wind_cone", "hint": "synonyms for wind cone", "clues": ["wind sock", "air sock", "sock", "drogue", "air-sleeve", "wind sleeve", "wind cone"]}, {"answer": "wind_sleeve", "hint": "synonyms for wind sleeve", "clues": ["wind cone", "wind sock", "air sock", "sock", "drogue", "air-sleeve", "wind sleeve"]}, {"answer": "wind_sock", "hint": "synonyms for wind sock", "clues": ["wind cone", "air sock", "sock", "drogue", "air-sleeve", "windsock", "wind sleeve"]}, {"answer": "windfall", "hint": "synonyms for windfall", "clues": ["bonanza", "manna from heaven", "godsend", "boom", "gold rush", "bunce", "gravy", "windfall"]}, {"answer": "windiness", "hint": "synonyms for windiness", "clues": ["long-windedness", "breeziness", "prolixity", "prolixness", "wordiness", "windiness"]}, {"answer": "winding-clothes", "hint": "synonyms for winding-clothes", "clues": ["pall", "cerement", "shroud", "winding-sheet", "winding-clothes"]}, {"answer": "winding-sheet", "hint": "synonyms for winding-sheet", "clues": ["pall", "cerement", "winding-clothes", "shroud", "winding-sheet"]}, {"answer": "window_pane", "hint": "synonyms for window pane", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "battery-acid", "loony toons", "acid", "back breaker", "window pane"]}, {"answer": "windsock", "hint": "synonyms for windsock", "clues": ["wind cone", "wind sock", "air sock", "sock", "drogue", "air-sleeve", "wind sleeve"]}, {"answer": "winfred", "hint": "synonyms for winfred", "clues": ["St. Boniface", "Boniface", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "wing", "hint": "synonyms for wing", "clues": ["fender", "extension", "annex", "offstage", "flank", "backstage", "wing"]}, {"answer": "wing-nut", "hint": "synonyms for wing-nut", "clues": ["thumbnut", "butterfly nut", "wing nut", "wing screw"]}, {"answer": "wing_nut", "hint": "synonyms for wing nut", "clues": ["thumbnut", "butterfly nut", "wing-nut", "wing screw"]}, {"answer": "wing_screw", "hint": "synonyms for wing screw", "clues": ["thumbnut", "butterfly nut", "wing-nut", "wing screw"]}, {"answer": "wings", "hint": "synonyms for wings", "clues": ["fender", "extension", "annex", "offstage", "wing", "flank", "backstage"]}, {"answer": "wink", "hint": "synonyms for wink", "clues": ["flash", "trice", "winking", "instant", "blink", "nictation", "jiffy", "New York minute", "split second", "blink of an eye", "eye blink", "heartbeat"]}, {"answer": "winner", "hint": "synonyms for winner", "clues": ["achiever", "succeeder", "victor", "success", "winner"]}, {"answer": "wino", "hint": "synonyms for wino", "clues": ["inebriate", "rummy", "drunk", "sot", "drunkard", "wino"]}, {"answer": "wintergreen", "hint": "synonyms for wintergreen", "clues": ["checkerberry", "teaberry", "spiceberry", "boxberry", "wintergreen"]}, {"answer": "wiper", "hint": "synonyms for wiper", "clues": ["windshield wiper", "wiper arm", "wiper blade", "contact arm", "windscreen wiper", "wiper"]}, {"answer": "wire_service", "hint": "synonyms for wire service", "clues": ["news organization", "news agency", "press association", "press agency", "wire service"]}, {"answer": "wisconsin", "hint": "synonyms for wisconsin", "clues": ["WI", "Wisconsin River", "Badger State", "Wisconsin"]}, {"answer": "wisdom", "hint": "synonyms for wisdom", "clues": ["wiseness", "sapience", "Wisdom", "Wisdom of Solomon", "soundness"]}, {"answer": "wisdom_of_jesus_the_son_of_sirach", "hint": "synonyms for wisdom of jesus the son of sirach", "clues": ["Ben Sira", "Sirach", "Wisdom of Jesus the Son of Sirach", "Ecclesiasticus"]}, {"answer": "wise_guy", "hint": "synonyms for wise guy", "clues": ["wisenheimer", "wiseacre", "smart aleck", "wise guy"]}, {"answer": "wiseacre", "hint": "synonyms for wiseacre", "clues": ["wise guy", "smart aleck", "wisenheimer", "wiseacre"]}, {"answer": "wisenheimer", "hint": "synonyms for wisenheimer", "clues": ["wise guy", "wiseacre", "smart aleck", "weisenheimer"]}, {"answer": "wish", "hint": "synonyms for wish", "clues": ["regard", "want", "wishing", "compliments", "indirect request"]}, {"answer": "wish-wash", "hint": "synonyms for wish-wash", "clues": ["trumpery", "trash", "rubbish", "codswallop", "applesauce", "tripe", "folderol", "wish-wash"]}, {"answer": "wit", "hint": "synonyms for wit", "clues": ["witticism", "humor", "mentality", "card", "brainpower", "wittiness", "mental capacity", "wag", "learning ability", "brain", "wit"]}, {"answer": "witch", "hint": "synonyms for witch", "clues": ["beldame", "enchantress", "crone", "hag", "Wiccan", "witch"]}, {"answer": "withdrawal", "hint": "synonyms for withdrawal", "clues": ["detachment", "secession", "pulling out", "climb-down", "drug withdrawal", "onanism", "withdrawal method", "backdown", "coitus interruptus", "withdrawal"]}, {"answer": "withdrawal_method", "hint": "synonyms for withdrawal method", "clues": ["withdrawal", "onanism", "coitus interruptus", "pulling out", "withdrawal method"]}, {"answer": "witness", "hint": "synonyms for witness", "clues": ["attestor", "looker", "watcher", "attestant", "informant", "witnesser", "viewer", "spectator"]}, {"answer": "wits", "hint": "synonyms for wits", "clues": ["witticism", "humor", "mentality", "learning ability", "card", "brainpower", "wittiness", "wit", "mental capacity", "wag", "marbles", "brain"]}, {"answer": "witticism", "hint": "synonyms for witticism", "clues": ["wittiness", "humor", "wit", "witticism"]}, {"answer": "wittiness", "hint": "synonyms for wittiness", "clues": ["witticism", "humor", "wit", "wittiness"]}, {"answer": "wiz", "hint": "synonyms for wiz", "clues": ["hotshot", "mavin", "virtuoso", "wizard", "champion", "adept", "ace", "maven", "sensation", "star", "whiz", "superstar", "genius"]}, {"answer": "wlan", "hint": "synonyms for wlan", "clues": ["wireless fidelity", "wireless local area network", "WLAN", "WiFi"]}, {"answer": "wolf", "hint": "synonyms for wolf", "clues": ["skirt chaser", "wildcat", "Wolf", "Hugo Wolf", "brute", "beast", "woman chaser", "Friedrich August Wolf", "masher", "savage"]}, {"answer": "wolfe", "hint": "synonyms for wolfe", "clues": ["Thomas Kennerly Wolfe Jr.", "Tom Wolfe", "Wolfe", "Thomas Clayton Wolfe"]}, {"answer": "wolverine_state", "hint": "synonyms for wolverine state", "clues": ["Michigan", "Great Lakes State", "Wolverine State", "MI"]}, {"answer": "woman", "hint": "synonyms for woman", "clues": ["char", "charwoman", "fair sex", "womanhood", "adult female", "cleaning woman", "cleaning lady"]}, {"answer": "woman_of_the_street", "hint": "synonyms for woman of the street", "clues": ["harlot", "working girl", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "tart", "cocotte", "whore", "cyprian", "woman of the street"]}, {"answer": "womanishness", "hint": "synonyms for womanishness", "clues": ["unmanliness", "effeminateness", "sissiness", "effeminacy", "softness", "womanishness"]}, {"answer": "wonder", "hint": "synonyms for wonder", "clues": ["marvel", "admiration", "curiosity", "wonderment", "wonder"]}, {"answer": "wonk", "hint": "synonyms for wonk", "clues": ["grind", "dweeb", "nerd", "swot", "wonk"]}, {"answer": "wood", "hint": "synonyms for wood", "clues": ["Ellen Price Wood", "Grant Wood", "Mrs. Henry Wood", "Sir Henry Joseph Wood", "forest", "Natalie Wood", "Sir Henry Wood", "woodwind instrument", "woods", "woodwind"]}, {"answer": "woodrow_wilson", "hint": "synonyms for woodrow wilson", "clues": ["Wilson", "Woodrow Wilson", "President Wilson", "Thomas Woodrow Wilson"]}, {"answer": "woods", "hint": "synonyms for woods", "clues": ["Ellen Price Wood", "Grant Wood", "Sir Henry Joseph Wood", "wood", "forest", "Natalie Wood", "Sir Henry Wood", "woodwind instrument", "Mrs. Henry Wood", "woodwind"]}, {"answer": "woodward", "hint": "synonyms for woodward", "clues": ["Woodward", "C. Vann Woodward", "Robert Burns Woodward", "Robert Woodward", "Bob Woodward"]}, {"answer": "woolsorter's_disease", "hint": "synonyms for woolsorter's disease", "clues": ["pulmonary anthrax", "ragsorter's disease", "woolsorter's pneumonia", "anthrax pneumonia", "inhalation anthrax", "ragpicker's disease", "woolsorter's disease"]}, {"answer": "woolsorter's_pneumonia", "hint": "synonyms for woolsorter's pneumonia", "clues": ["pulmonary anthrax", "woolsorter's disease", "ragsorter's disease", "anthrax pneumonia", "inhalation anthrax", "ragpicker's disease", "woolsorter's pneumonia"]}, {"answer": "wop", "hint": "synonyms for wop", "clues": ["Guinea", "ginzo", "dago", "greaseball", "wop"]}, {"answer": "word", "hint": "synonyms for word", "clues": ["parole", "Good Book", "Scripture", "Holy Writ", "countersign", "word of honor", "discussion", "Son", "watchword", "password", "Bible", "Book", "news", "Holy Scripture", "Logos", "intelligence", "Christian Bible", "tidings", "give-and-take", "Word", "Word of God"]}, {"answer": "word-painting", "hint": "synonyms for word-painting", "clues": ["characterization", "depiction", "picture", "delineation", "word picture", "word-painting"]}, {"answer": "word_of_god", "hint": "synonyms for word of god", "clues": ["Holy Scripture", "Good Book", "Scripture", "Holy Writ", "Christian Bible", "Bible", "Word", "Book", "Word of God"]}, {"answer": "word_picture", "hint": "synonyms for word picture", "clues": ["characterization", "depiction", "picture", "delineation", "word-painting", "word picture"]}, {"answer": "wordiness", "hint": "synonyms for wordiness", "clues": ["long-windedness", "prolixity", "prolixness", "windiness", "wordiness"]}, {"answer": "wording", "hint": "synonyms for wording", "clues": ["diction", "phraseology", "verbiage", "phrasing", "choice of words", "wording"]}, {"answer": "words", "hint": "synonyms for words", "clues": ["parole", "language", "Good Book", "Scripture", "Holy Writ", "countersign", "run-in", "word of honor", "discussion", "Son", "watchword", "password", "Bible", "Book", "word", "speech", "news", "Holy Scripture", "Logos", "intelligence", "dustup", "Christian Bible", "row", "quarrel", "actor's line", "tidings", "give-and-take", "wrangle", "lyric", "Word of God"]}, {"answer": "work", "hint": "synonyms for work", "clues": ["piece of work", "workplace", "oeuvre", "study", "employment", "body of work", "work"]}, {"answer": "work_study", "hint": "synonyms for work study", "clues": ["time study", "motion study", "time-motion study", "time and motion study", "work study"]}, {"answer": "worker", "hint": "synonyms for worker", "clues": ["proletarian", "prole", "doer", "actor", "worker"]}, {"answer": "working_girl", "hint": "synonyms for working girl", "clues": ["harlot", "fancy woman", "sporting lady", "bawd", "prostitute", "lady of pleasure", "tart", "cocotte", "whore", "woman of the street", "cyprian", "working girl"]}, {"answer": "workout", "hint": "synonyms for workout", "clues": ["physical exercise", "exercise", "exercising", "physical exertion", "workout"]}, {"answer": "works", "hint": "synonyms for works", "clues": ["whole kit", "piece of work", "kit and caboodle", "whole kit and boodle", "whole shebang", "deeds", "work", "full treatment", "study", "employment", "body of work", "workings", "plant", "whole works", "industrial plant", "whole caboodle", "workplace", "oeuvre"]}, {"answer": "world_power", "hint": "synonyms for world power", "clues": ["great power", "superpower", "power", "major power", "world power"]}, {"answer": "world_tamil_association", "hint": "synonyms for world tamil association", "clues": ["World Tamil Association", "Tamil Tigers", "Tigers", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "world_tamil_movement", "hint": "synonyms for world tamil movement", "clues": ["World Tamil Association", "Tamil Tigers", "Tigers", "World Tamil Movement", "Liberation Tigers of Tamil Eelam", "LTTE"]}, {"answer": "world_war_1", "hint": "synonyms for world war 1", "clues": ["World War I", "First World War", "War to End War", "Great War"]}, {"answer": "world_war_i", "hint": "synonyms for world war i", "clues": ["World War I", "First World War", "War to End War", "Great War"]}, {"answer": "worry", "hint": "synonyms for worry", "clues": ["vexation", "headache", "concern", "trouble", "worry"]}, {"answer": "wow", "hint": "synonyms for wow", "clues": ["scream", "riot", "thigh-slapper", "howler", "sidesplitter", "belly laugh", "wow"]}, {"answer": "wraith", "hint": "synonyms for wraith", "clues": ["shade", "ghost", "spectre", "spook", "wraith"]}, {"answer": "wrangle", "hint": "synonyms for wrangle", "clues": ["haggle", "quarrel", "wrangling", "words", "run-in", "haggling", "dustup", "row", "wrangle"]}, {"answer": "wrapper", "hint": "synonyms for wrapper", "clues": ["neglige", "wrap", "housecoat", "wrapping", "peignoir", "wrapper"]}, {"answer": "wreath", "hint": "synonyms for wreath", "clues": ["chaplet", "coronal", "lei", "garland", "wreath"]}, {"answer": "wrecker", "hint": "synonyms for wrecker", "clues": ["tow car", "tow truck", "saboteur", "diversionist", "wrecker"]}, {"answer": "wrecking", "hint": "synonyms for wrecking", "clues": ["ruining", "laying waste", "razing", "ruination", "wrecking"]}, {"answer": "wrestle", "hint": "synonyms for wrestle", "clues": ["grappling", "grapple", "wrestling", "hand-to-hand struggle", "wrestle"]}, {"answer": "wrestling", "hint": "synonyms for wrestling", "clues": ["grappling", "grapple", "hand-to-hand struggle", "rassling", "wrestle", "wrestling"]}, {"answer": "wright", "hint": "synonyms for wright", "clues": ["Wright", "Wilbur Wright", "S. S. Van Dine", "Frances Wright", "Frank Lloyd Wright", "Orville Wright", "Richard Wright", "Willard Huntington Wright", "Fanny Wright"]}, {"answer": "wrinkle", "hint": "synonyms for wrinkle", "clues": ["furrow", "crease", "seam", "line", "crinkle"]}, {"answer": "wrist", "hint": "synonyms for wrist", "clues": ["carpus", "wrist joint", "articulatio radiocarpea", "radiocarpal joint", "wrist"]}, {"answer": "wrist_joint", "hint": "synonyms for wrist joint", "clues": ["carpus", "wrist", "articulatio radiocarpea", "radiocarpal joint", "wrist joint"]}, {"answer": "wristband", "hint": "synonyms for wristband", "clues": ["watchstrap", "watchband", "watch bracelet", "bracelet", "wristband"]}, {"answer": "write_up", "hint": "synonyms for write up", "clues": ["report", "story", "account", "news report", "write up"]}, {"answer": "writing", "hint": "synonyms for writing", "clues": ["composition", "authorship", "piece of writing", "committal to writing", "penning", "written material", "writing"]}, {"answer": "writings", "hint": "synonyms for writings", "clues": ["composition", "authorship", "penning", "Ketubim", "Writings", "written material", "committal to writing", "piece of writing", "Hagiographa"]}, {"answer": "wrongdoing", "hint": "synonyms for wrongdoing", "clues": ["wrongful conduct", "actus reus", "error", "misconduct", "wrongdoing"]}, {"answer": "wyclif", "hint": "synonyms for wyclif", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "wycliffe", "hint": "synonyms for wycliffe", "clues": ["Wickliffe", "Wiclif", "John Wycliffe", "John Wiclif", "Wyclif"]}, {"answer": "wynfrith", "hint": "synonyms for wynfrith", "clues": ["St. Boniface", "Boniface", "Apostle of Germany", "Wynfrith", "Winfred", "Saint Boniface"]}, {"answer": "x-radiation", "hint": "synonyms for x-radiation", "clues": ["X ray", "X-radiation", "roentgen ray", "X-ray"]}, {"answer": "x-ray", "hint": "synonyms for x-ray", "clues": ["X-radiation", "X-ray picture", "roentgenogram", "X ray", "X-ray photograph", "roentgen ray", "X-ray"]}, {"answer": "x-ray_photograph", "hint": "synonyms for x-ray photograph", "clues": ["X ray", "X-ray photograph", "X-ray picture", "X-ray", "roentgenogram"]}, {"answer": "x-ray_picture", "hint": "synonyms for x-ray picture", "clues": ["X ray", "X-ray photograph", "X-ray picture", "X-ray", "roentgenogram"]}, {"answer": "x_ray", "hint": "synonyms for x ray", "clues": ["X-radiation", "X-ray picture", "roentgenogram", "X ray", "X-ray photograph", "roentgen ray", "X-ray"]}, {"answer": "xanthoma_multiplex", "hint": "synonyms for xanthoma multiplex", "clues": ["lipoid granulomatosis", "xanthomatosis", "cholesterosis cutis", "xanthoma multiplex"]}, {"answer": "xanthomatosis", "hint": "synonyms for xanthomatosis", "clues": ["lipoid granulomatosis", "xanthoma multiplex", "cholesterosis cutis", "xanthomatosis"]}, {"answer": "xerox", "hint": "synonyms for xerox", "clues": ["xerox copy", "Xerox machine", "xerographic copier", "Xerox"]}, {"answer": "xian", "hint": "synonyms for xian", "clues": ["Hsian", "Changan", "Xian", "Singan"]}, {"answer": "xmas", "hint": "synonyms for xmas", "clues": ["Christmas Day", "Christmas", "Dec 25", "Xmas"]}, {"answer": "xtc", "hint": "synonyms for xtc", "clues": ["go", "Adam", "ecstasy", "hug drug", "XTC", "disco biscuit", "cristal", "X"]}, {"answer": "y", "hint": "synonyms for y", "clues": ["atomic number 39", "Y", "yttrium", "wye"]}, {"answer": "yack", "hint": "synonyms for yack", "clues": ["chatter", "cackle", "yakety-yak", "yak"]}, {"answer": "yahoo", "hint": "synonyms for yahoo", "clues": ["chawbacon", "yokel", "rube", "hayseed", "bumpkin", "Yahoo", "hick"]}, {"answer": "yahve", "hint": "synonyms for yahve", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yahveh", "hint": "synonyms for yahveh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yahwe", "hint": "synonyms for yahwe", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yahweh", "hint": "synonyms for yahweh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yak", "hint": "synonyms for yak", "clues": ["chatter", "cackle", "yakety-yak", "yack"]}, {"answer": "yakety-yak", "hint": "synonyms for yakety-yak", "clues": ["chatter", "cackle", "yak", "yakety-yak"]}, {"answer": "yaltopya", "hint": "synonyms for yaltopya", "clues": ["Ethiopia", "Yaltopya", "Abyssinia", "Federal Democratic Republic of Ethiopia"]}, {"answer": "yangtze", "hint": "synonyms for yangtze", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "yangtze_kiang", "hint": "synonyms for yangtze kiang", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "yangtze_river", "hint": "synonyms for yangtze river", "clues": ["Chang Jiang", "Yangtze River", "Yangtze", "Chang", "Yangtze Kiang"]}, {"answer": "yank", "hint": "synonyms for yank", "clues": ["Yank", "Yankee", "Northerner", "Yankee-Doodle"]}, {"answer": "yap", "hint": "synonyms for yap", "clues": ["cakehole", "maw", "gob", "hole", "trap", "yap"]}, {"answer": "yard", "hint": "synonyms for yard", "clues": ["grand", "pace", "chiliad", "M", "K", "cubic yard", "railway yard", "curtilage", "railyard", "G", "one thousand", "grounds", "1000", "thou", "thousand", "yard"]}, {"answer": "yard_bird", "hint": "synonyms for yard bird", "clues": ["inmate", "convict", "con", "yardbird"]}, {"answer": "yardbird", "hint": "synonyms for yardbird", "clues": ["yard bird", "inmate", "convict", "con"]}, {"answer": "yardbird_parker", "hint": "synonyms for yardbird parker", "clues": ["Charlie Parker", "Yardbird Parker", "Bird Parker", "Parker", "Charles Christopher Parker"]}, {"answer": "yatobyo", "hint": "synonyms for yatobyo", "clues": ["rabbit fever", "tularaemia", "deer fly fever", "yatobyo"]}, {"answer": "yb", "hint": "synonyms for yb", "clues": ["Ybit", "yottabit", "YB", "yottabyte", "ytterbium", "yobibyte", "YiB", "atomic number 70"]}, {"answer": "years", "hint": "synonyms for years", "clues": ["long time", "class", "twelvemonth", "days", "old age", "yr", "age", "year", "geezerhood", "eld"]}, {"answer": "yeddo", "hint": "synonyms for yeddo", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "yedo", "hint": "synonyms for yedo", "clues": ["Yeddo", "Japanese capital", "Tokyo", "Edo", "capital of Japan", "Tokio"]}, {"answer": "yell", "hint": "synonyms for yell", "clues": ["vociferation", "call", "outcry", "cry", "shout", "yell"]}, {"answer": "yeller", "hint": "synonyms for yeller", "clues": ["screamer", "screecher", "bellower", "shouter", "bawler", "roarer", "yeller"]}, {"answer": "yellow_green", "hint": "synonyms for yellow green", "clues": ["yellowish green", "pea green", "chartreuse", "Paris green"]}, {"answer": "yellowish_brown", "hint": "synonyms for yellowish brown", "clues": ["caramel brown", "caramel", "buff", "raw sienna", "yellowish brown"]}, {"answer": "yellowish_green", "hint": "synonyms for yellowish green", "clues": ["yellow green", "pea green", "chartreuse", "Paris green"]}, {"answer": "yenisei", "hint": "synonyms for yenisei", "clues": ["Yeniseian", "Yenisey River", "Entsi", "Yenisey", "Entsy", "Yenisei-Samoyed", "Enets"]}, {"answer": "yenisei-samoyed", "hint": "synonyms for yenisei-samoyed", "clues": ["Yeniseian", "Entsy", "Entsi", "Yenisei-Samoyed", "Enets"]}, {"answer": "yeniseian", "hint": "synonyms for yeniseian", "clues": ["Yeniseian", "Entsy", "Entsi", "Yenisei-Samoyed", "Enets"]}, {"answer": "yhvh", "hint": "synonyms for yhvh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yhwh", "hint": "synonyms for yhwh", "clues": ["Jehovah", "Wahvey", "Jahvey", "YHVH", "Yahwe", "Yahveh", "YHWH", "Jahweh", "JHVH"]}, {"answer": "yib", "hint": "synonyms for yib", "clues": ["yobibyte", "YiB", "YB", "yottabyte"]}, {"answer": "yield", "hint": "synonyms for yield", "clues": ["output", "take", "return", "issue", "payoff", "proceeds", "fruit", "production", "takings", "yield"]}, {"answer": "yisrael", "hint": "synonyms for yisrael", "clues": ["Sion", "Zion", "State of Israel", "Israel"]}, {"answer": "yob", "hint": "synonyms for yob", "clues": ["yobo", "rowdy", "tough", "bully", "ruffian", "hooligan", "roughneck"]}, {"answer": "yobbo", "hint": "synonyms for yobbo", "clues": ["yob", "rowdy", "tough", "bully", "ruffian", "hooligan", "roughneck", "yobbo"]}, {"answer": "yobo", "hint": "synonyms for yobo", "clues": ["yob", "rowdy", "tough", "bully", "ruffian", "hooligan", "roughneck", "yobbo"]}, {"answer": "yogi", "hint": "synonyms for yogi", "clues": ["Berra", "Yogi", "Yogi Berra", "Lawrence Peter Berra"]}, {"answer": "yogi_berra", "hint": "synonyms for yogi berra", "clues": ["Berra", "Yogi", "Yogi Berra", "Lawrence Peter Berra"]}, {"answer": "yoke", "hint": "synonyms for yoke", "clues": ["coupling", "brace", "couplet", "dyad", "duo", "twain", "duet", "twosome", "distich", "duad", "pair", "span", "yoke"]}, {"answer": "yokel", "hint": "synonyms for yokel", "clues": ["chawbacon", "yahoo", "rube", "hayseed", "bumpkin", "hick", "yokel"]}, {"answer": "you-drive", "hint": "synonyms for you-drive", "clues": ["self-drive", "car rental", "hire car", "rent-a-car", "u-drive"]}, {"answer": "young_lady", "hint": "synonyms for young lady", "clues": ["young woman", "missy", "girl", "fille", "young lady"]}, {"answer": "young_man", "hint": "synonyms for young man", "clues": ["boyfriend", "swain", "beau", "fellow", "young buck", "young man"]}, {"answer": "young_woman", "hint": "synonyms for young woman", "clues": ["missy", "girl", "young lady", "fille", "young woman"]}, {"answer": "youngster", "hint": "synonyms for youngster", "clues": ["fry", "nipper", "shaver", "nestling", "tike", "minor", "tyke", "tiddler", "kid", "small fry", "child", "youngster"]}, {"answer": "youth", "hint": "synonyms for youth", "clues": ["early days", "juvenility", "youthfulness", "spring chicken", "young person", "young", "younker", "youth"]}, {"answer": "yowl", "hint": "synonyms for yowl", "clues": ["hollo", "bellow", "roaring", "hollering", "holla", "yowl"]}, {"answer": "ypres", "hint": "synonyms for ypres", "clues": ["Ypres", "second battle of Ypres", "third battle of Ypres", "battle of Ypres"]}, {"answer": "yuan", "hint": "synonyms for yuan", "clues": ["kwai", "Yuan", "Mongol dynasty", "Yuan dynasty"]}, {"answer": "yue", "hint": "synonyms for yue", "clues": ["Yue", "Cantonese dialect", "Yue dialect", "Cantonese"]}, {"answer": "yue_dialect", "hint": "synonyms for yue dialect", "clues": ["Yue", "Cantonese dialect", "Yue dialect", "Cantonese"]}, {"answer": "yugoslavia", "hint": "synonyms for yugoslavia", "clues": ["Yugoslavia", "Union of Serbia and Montenegro", "Federal Republic of Yugoslavia", "Serbia and Montenegro"]}, {"answer": "yule", "hint": "synonyms for yule", "clues": ["Christmastime", "Yuletide", "Christmas", "Noel", "Yule"]}, {"answer": "yuletide", "hint": "synonyms for yuletide", "clues": ["Christmastime", "Yuletide", "Christmas", "Noel", "Yule"]}, {"answer": "yurak-samoyed", "hint": "synonyms for yurak-samoyed", "clues": ["Yurak-Samoyed", "Nenets", "Nentsi", "Nentsy"]}, {"answer": "z", "hint": "synonyms for z", "clues": ["izzard", "omega", "zee", "Z", "ezed"]}, {"answer": "zaharias", "hint": "synonyms for zaharias", "clues": ["Mildred Ella Didrikson Zaharias", "Babe Zaharias", "Babe Didrikson", "Didrikson", "Zaharias", "Mildred Ella Didrikson"]}, {"answer": "zaire", "hint": "synonyms for zaire", "clues": ["Congo", "Belgian Congo", "Zaire", "Democratic Republic of the Congo"]}, {"answer": "zb", "hint": "synonyms for zb", "clues": ["ZB", "Zbit", "zettabit", "zebibyte", "ZiB", "zettabyte"]}, {"answer": "zdv", "hint": "synonyms for zdv", "clues": ["ZDV", "Retrovir", "AZT", "zidovudine"]}, {"answer": "zeal", "hint": "synonyms for zeal", "clues": ["forwardness", "ardor", "elan", "readiness", "eagerness", "zeal"]}, {"answer": "zed", "hint": "synonyms for zed", "clues": ["izzard", "z", "zee", "ezed"]}, {"answer": "zee", "hint": "synonyms for zee", "clues": ["izzard", "z", "ezed", "zee"]}, {"answer": "zen", "hint": "synonyms for zen", "clues": ["pane", "dose", "Zen", "Elvis", "Lucy in the sky with diamonds", "dot", "superman", "Zen Buddhism", "battery-acid", "loony toons", "window pane", "acid", "back breaker"]}, {"answer": "zep", "hint": "synonyms for zep", "clues": ["Italian sandwich", "torpedo", "poor boy", "submarine", "bomber", "hoagy", "sub", "hoagie", "Cuban sandwich", "grinder", "wedge", "hero", "submarine sandwich", "hero sandwich", "zep"]}, {"answer": "zephyr", "hint": "synonyms for zephyr", "clues": ["Zephyr", "gentle wind", "air", "breeze"]}, {"answer": "zest", "hint": "synonyms for zest", "clues": ["nip", "relish", "zestfulness", "piquancy", "tang", "piquantness", "tanginess", "gusto", "zest"]}, {"answer": "zhou", "hint": "synonyms for zhou", "clues": ["Chou dynasty", "Zhou", "Chou", "Chow"]}, {"answer": "zhou_dynasty", "hint": "synonyms for zhou dynasty", "clues": ["Chou dynasty", "Zhou", "Chou", "Chow"]}, {"answer": "zhu_jiang", "hint": "synonyms for zhu jiang", "clues": ["Chu Kiang", "Zhu Jiang", "Pearl River", "Canton River"]}, {"answer": "zib", "hint": "synonyms for zib", "clues": ["zebibyte", "ZiB", "zettabyte", "ZB"]}, {"answer": "zilch", "hint": "synonyms for zilch", "clues": ["nothing", "null", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zippo", "zip", "zilch"]}, {"answer": "zimbabwe", "hint": "synonyms for zimbabwe", "clues": ["Rhodesia", "Southern Rhodesia", "Republic of Zimbabwe", "Zimbabwe"]}, {"answer": "zing", "hint": "synonyms for zing", "clues": ["pizzaz", "oomph", "dynamism", "zing"]}, {"answer": "zion", "hint": "synonyms for zion", "clues": ["Sion", "Zion", "State of Israel", "Israel", "Utopia"]}, {"answer": "zip", "hint": "synonyms for zip", "clues": ["slide fastener", "ZIP code", "cipher", "zero", "ZIP", "nix", "zipper", "zippo", "zilch", "null", "postcode", "goose egg", "aught", "nada", "nil", "energy", "zip fastener", "postal code", "cypher", "nothing", "vigor"]}, {"answer": "zip_code", "hint": "synonyms for zip code", "clues": ["postal code", "ZIP", "postcode", "ZIP code"]}, {"answer": "zippo", "hint": "synonyms for zippo", "clues": ["nothing", "null", "zip", "cipher", "zero", "aught", "nada", "nil", "cypher", "nix", "goose egg", "zilch", "zippo"]}, {"answer": "zombi", "hint": "synonyms for zombi", "clues": ["zombi spirit", "living dead", "snake god", "automaton", "zombie"]}, {"answer": "zombie", "hint": "synonyms for zombie", "clues": ["living dead", "snake god", "zombie spirit", "zombi", "automaton"]}, {"answer": "zygomatic_bone", "hint": "synonyms for zygomatic bone", "clues": ["cheekbone", "jugal bone", "malar bone", "os zygomaticum", "malar", "zygomatic", "zygomatic bone"]}, {"answer": "assess", "hint": "synonyms for assess", "clues": ["tush", "buns", "seat", "butt", "tail end", "shag", "fuck", "rear", "nookie", "buttocks", "bum", "piece of tail", "rump", "nates", "can", "fundament", "rear end", "hindquarters", "prat", "screwing", "shtup", "nooky", "derriere", "piece of ass", "roll in the hay", "stern", "backside", "posterior", "keister", "tail", "bottom", "ass", "fanny", "hind end", "arse", "behind", "tooshie", "assess"]}, {"answer": "bollocks", "hint": "synonyms for bollocks", "clues": ["egg", "bollock", "bullock block", "nut", "orchis", "testicle", "ball", "testis"]}, {"answer": "doss", "hint": "synonyms for doss", "clues": ["State", "DOS", "United States Department of State", "disk operating system", "Department of State", "State Department"]}, {"answer": "obsess", "hint": "synonyms for obsess", "clues": ["midwifery", "Ob", "tocology", "Ob River", "obstetrics", "obsess"]}], "portion": 0.2}, {"name": "adjectives", "groups": [{"answer": "1000", "hint": "synonyms for 1000", "clues": ["k", "m", "one thousand", "thousand", "1000"]}, {"answer": "6", "hint": "synonyms for 6", "clues": ["half dozen", "six", "vi", "6"]}, {"answer": "a-one", "hint": "synonyms for a-one", "clues": ["topnotch", "first-rate", "tops", "tiptop", "ace", "crack", "A-one", "super"]}, {"answer": "a_la_mode", "hint": "synonyms for a la mode", "clues": ["modish", "in style", "latest", "in vogue", "a la mode"]}, {"answer": "abhorrent", "hint": "synonyms for abhorrent", "clues": ["obscene", "detestable", "repugnant", "repulsive", "abhorrent"]}, {"answer": "abject", "hint": "synonyms for abject", "clues": ["low-down", "scurvy", "unhopeful", "miserable", "low", "scummy", "abject"]}, {"answer": "ablaze", "hint": "synonyms for ablaze", "clues": ["afire", "alight", "reddened", "on fire", "inflamed", "aflame", "aroused", "aflare", "ablaze"]}, {"answer": "abominable", "hint": "synonyms for abominable", "clues": ["dreadful", "painful", "terrible", "awful", "detestable", "odious", "atrocious", "unspeakable", "execrable", "abominable"]}, {"answer": "aboriginal", "hint": "synonyms for aboriginal", "clues": ["primal", "primaeval", "native", "primordial", "Aboriginal"]}, {"answer": "absent", "hint": "synonyms for absent", "clues": ["lacking", "wanting", "scatty", "missing", "abstracted", "absentminded", "absent"]}, {"answer": "absolute", "hint": "synonyms for absolute", "clues": ["rank", "sheer", "out-and-out", "infrangible", "inviolable", "right-down", "downright", "absolute"]}, {"answer": "absolved", "hint": "synonyms for absolved", "clues": ["exculpated", "exonerated", "vindicated", "cleared", "clear", "absolved"]}, {"answer": "absorbed", "hint": "synonyms for absorbed", "clues": ["engrossed", "captive", "wrapped", "intent", "absorbed"]}, {"answer": "absorbing", "hint": "synonyms for absorbing", "clues": ["engrossing", "gripping", "riveting", "fascinating", "absorbing"]}, {"answer": "absurd", "hint": "synonyms for absurd", "clues": ["derisory", "preposterous", "nonsensical", "idiotic", "cockeyed", "ridiculous", "ludicrous", "laughable", "absurd"]}, {"answer": "accessory", "hint": "synonyms for accessory", "clues": ["adjuvant", "ancillary", "adjunct", "auxiliary", "appurtenant", "accessary"]}, {"answer": "accompanying", "hint": "synonyms for accompanying", "clues": ["incidental", "consequent", "sequent", "ensuant", "concomitant", "attendant", "resultant", "accompanying"]}, {"answer": "accomplishable", "hint": "synonyms for accomplishable", "clues": ["doable", "achievable", "manageable", "realizable", "accomplishable"]}, {"answer": "accomplished", "hint": "synonyms for accomplished", "clues": ["effected", "complete", "established", "realised", "accomplished"]}, {"answer": "accordant", "hint": "synonyms for accordant", "clues": ["conformable", "consonant", "concordant", "agreeable", "accordant"]}, {"answer": "accusative", "hint": "synonyms for accusative", "clues": ["accusatory", "objective", "accusive", "accusing"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["topnotch", "first-rate", "tops", "tiptop", "crack", "A-one", "super", "ace"]}, {"answer": "acerb", "hint": "synonyms for acerb", "clues": ["acrid", "caustic", "blistering", "virulent", "acerbic", "sulfurous", "vitriolic", "astringent", "sulphurous", "bitter", "acerb"]}, {"answer": "acerbic", "hint": "synonyms for acerbic", "clues": ["acrid", "caustic", "acerb", "blistering", "virulent", "sulfurous", "vitriolic", "astringent", "sulphurous", "bitter", "acerbic"]}, {"answer": "achievable", "hint": "synonyms for achievable", "clues": ["doable", "accomplishable", "manageable", "realizable", "achievable"]}, {"answer": "acid", "hint": "synonyms for acid", "clues": ["acrid", "caustic", "acidulent", "acidic", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "acidulous", "vitriolic", "sulphurous", "bitter"]}, {"answer": "acrid", "hint": "synonyms for acrid", "clues": ["caustic", "pungent", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "vitriolic", "acid", "sulphurous", "bitter"]}, {"answer": "across-the-board", "hint": "synonyms for across-the-board", "clues": ["panoptic", "blanket", "encompassing", "extensive", "wide", "all-inclusive", "all-embracing", "broad", "across-the-board"]}, {"answer": "active", "hint": "synonyms for active", "clues": ["combat-ready", "alive", "dynamic", "participating", "fighting", "active"]}, {"answer": "actual", "hint": "synonyms for actual", "clues": ["existent", "genuine", "real", "literal", "factual"]}, {"answer": "acute", "hint": "synonyms for acute", "clues": ["knifelike", "piercing", "intense", "needlelike", "penetrative", "keen", "incisive", "acuate", "sharp", "penetrating", "discriminating"]}, {"answer": "ad-lib", "hint": "synonyms for ad-lib", "clues": ["extempore", "off-the-cuff", "spontaneous", "unwritten", "extemporary", "unrehearsed", "offhanded", "extemporaneous", "impromptu", "ad-lib"]}, {"answer": "addled", "hint": "synonyms for addled", "clues": ["wooly", "muzzy", "befuddled", "woolly-headed", "wooly-minded", "muddled", "addled"]}, {"answer": "adept", "hint": "synonyms for adept", "clues": ["practiced", "skillful", "good", "proficient", "expert", "adept"]}, {"answer": "adequate", "hint": "synonyms for adequate", "clues": ["passable", "equal", "decent", "fair to middling", "tolerable", "enough", "adequate"]}, {"answer": "adjacent", "hint": "synonyms for adjacent", "clues": ["neighboring", "conterminous", "next", "side by side", "contiguous", "adjacent"]}, {"answer": "adjunct", "hint": "synonyms for adjunct", "clues": ["adjuvant", "ancillary", "auxiliary", "appurtenant", "assistant", "accessory", "adjunct"]}, {"answer": "adjuvant", "hint": "synonyms for adjuvant", "clues": ["ancillary", "adjunct", "auxiliary", "appurtenant", "accessory", "adjuvant"]}, {"answer": "admonitory", "hint": "synonyms for admonitory", "clues": ["reproachful", "monitory", "cautionary", "warning", "exemplary", "admonishing", "reproving"]}, {"answer": "adolescent", "hint": "synonyms for adolescent", "clues": ["teenage", "teen", "jejune", "juvenile", "puerile", "adolescent"]}, {"answer": "adrift", "hint": "synonyms for adrift", "clues": ["aimless", "directionless", "planless", "rudderless", "afloat", "undirected", "adrift"]}, {"answer": "adult", "hint": "synonyms for adult", "clues": ["grownup", "fully grown", "pornographic", "big", "grown", "adult"]}, {"answer": "adulterous", "hint": "synonyms for adulterous", "clues": ["extramarital", "extracurricular", "cheating", "two-timing", "adulterous"]}, {"answer": "adust", "hint": "synonyms for adust", "clues": ["sunbaked", "baked", "parched", "scorched", "adust"]}, {"answer": "advanced", "hint": "synonyms for advanced", "clues": ["sophisticated", "advance", "innovative", "ripe", "forward-looking", "modern", "in advance"]}, {"answer": "adynamic", "hint": "synonyms for adynamic", "clues": ["asthenic", "enervated", "debilitated", "undynamic", "adynamic"]}, {"answer": "aeonian", "hint": "synonyms for aeonian", "clues": ["eonian", "ageless", "unending", "everlasting", "eternal", "perpetual", "unceasing"]}, {"answer": "aerial", "hint": "synonyms for aerial", "clues": ["aeriform", "ethereal", "aery", "airy", "aerial"]}, {"answer": "aeriform", "hint": "synonyms for aeriform", "clues": ["airlike", "aerial", "airy", "ethereal", "aery", "aeriform"]}, {"answer": "aery", "hint": "synonyms for aery", "clues": ["aeriform", "aerial", "ethereal", "airy", "aery"]}, {"answer": "affected", "hint": "synonyms for affected", "clues": ["stirred", "touched", "unnatural", "moved", "affected"]}, {"answer": "affectionate", "hint": "synonyms for affectionate", "clues": ["lovesome", "fond", "tender", "warm", "affectionate"]}, {"answer": "affirmative", "hint": "synonyms for affirmative", "clues": ["approbatory", "approbative", "optimistic", "affirmatory", "approving", "plausive", "affirmative"]}, {"answer": "affluent", "hint": "synonyms for affluent", "clues": ["moneyed", "loaded", "flush", "wealthy", "affluent"]}, {"answer": "afire", "hint": "synonyms for afire", "clues": ["ablaze", "alight", "on fire", "aflame", "aflare", "afire"]}, {"answer": "aflame", "hint": "synonyms for aflame", "clues": ["ablaze", "afire", "alight", "on fire", "aroused", "aflare", "aflame"]}, {"answer": "aflare", "hint": "synonyms for aflare", "clues": ["ablaze", "afire", "alight", "flaring", "on fire", "aflame", "aflare"]}, {"answer": "afloat", "hint": "synonyms for afloat", "clues": ["inundated", "aimless", "rudderless", "undirected", "overflowing", "directionless", "planless", "adrift", "awash", "flooded", "afloat"]}, {"answer": "agamic", "hint": "synonyms for agamic", "clues": ["apomictic", "parthenogenetic", "agamous", "agamogenetic", "agamic"]}, {"answer": "agamogenetic", "hint": "synonyms for agamogenetic", "clues": ["apomictic", "parthenogenetic", "agamous", "agamic", "agamogenetic"]}, {"answer": "agamous", "hint": "synonyms for agamous", "clues": ["agamogenetic", "parthenogenetic", "agamic", "apomictic", "agamous"]}, {"answer": "aged", "hint": "synonyms for aged", "clues": ["senior", "cured", "elderly", "ripened", "of age", "older", "aged"]}, {"answer": "ageless", "hint": "synonyms for ageless", "clues": ["eonian", "unending", "everlasting", "eternal", "perpetual", "unceasing", "ageless"]}, {"answer": "aglitter", "hint": "synonyms for aglitter", "clues": ["sparkly", "glittering", "coruscant", "glittery", "scintillant", "fulgid", "glinting", "scintillating"]}, {"answer": "agonising", "hint": "synonyms for agonising", "clues": ["torturesome", "excruciating", "torturing", "harrowing", "agonizing", "torturous"]}, {"answer": "agonizing", "hint": "synonyms for agonizing", "clues": ["torturesome", "agonising", "excruciating", "harrowing", "torturing", "torturous"]}, {"answer": "agreeable", "hint": "synonyms for agreeable", "clues": ["conformable", "accordant", "concordant", "consonant", "agreeable"]}, {"answer": "ailing", "hint": "synonyms for ailing", "clues": ["sickly", "indisposed", "poorly", "under the weather", "seedy", "peaked", "unwell", "ailing"]}, {"answer": "aimless", "hint": "synonyms for aimless", "clues": ["vagrant", "rudderless", "afloat", "vagabond", "undirected", "directionless", "drifting", "planless", "adrift", "floating", "aimless"]}, {"answer": "airheaded", "hint": "synonyms for airheaded", "clues": ["featherbrained", "silly", "empty-headed", "lightheaded", "dizzy", "giddy", "airheaded"]}, {"answer": "airy", "hint": "synonyms for airy", "clues": ["aerial", "Laputan", "aeriform", "visionary", "aired", "windy", "impractical", "ethereal", "aery", "airy"]}, {"answer": "akin", "hint": "synonyms for akin", "clues": ["blood-related", "cognate", "kin", "consanguine", "kindred"]}, {"answer": "alar", "hint": "synonyms for alar", "clues": ["alary", "aliform", "wing-shaped", "axillary"]}, {"answer": "alert", "hint": "synonyms for alert", "clues": ["alive", "lively", "snappy", "awake", "brisk", "merry", "watchful", "rattling", "spanking", "zippy", "alert"]}, {"answer": "alight", "hint": "synonyms for alight", "clues": ["ablaze", "afire", "on fire", "aflame", "aflare", "alight"]}, {"answer": "alimental", "hint": "synonyms for alimental", "clues": ["nutritive", "nutritious", "nutrient", "nourishing", "alimentary", "alimental"]}, {"answer": "alimentary", "hint": "synonyms for alimentary", "clues": ["alimental", "nutritive", "nutritious", "nutrient", "nourishing", "alimentary"]}, {"answer": "alive", "hint": "synonyms for alive", "clues": ["animated", "awake", "active", "alert", "live"]}, {"answer": "all-embracing", "hint": "synonyms for all-embracing", "clues": ["panoptic", "across-the-board", "blanket", "encompassing", "extensive", "wide", "all-inclusive", "broad", "all-embracing"]}, {"answer": "all-encompassing", "hint": "synonyms for all-encompassing", "clues": ["panoptic", "across-the-board", "blanket", "encompassing", "extensive", "wide", "all-inclusive", "all-embracing", "broad"]}, {"answer": "all-important", "hint": "synonyms for all-important", "clues": ["essential", "crucial", "of the essence", "all important"]}, {"answer": "all-inclusive", "hint": "synonyms for all-inclusive", "clues": ["panoptic", "across-the-board", "blanket", "encompassing", "extensive", "wide", "all-embracing", "broad", "all-inclusive"]}, {"answer": "all_important", "hint": "synonyms for all important", "clues": ["essential", "crucial", "of the essence", "all-important"]}, {"answer": "all_over", "hint": "synonyms for all over", "clues": ["terminated", "complete", "concluded", "ended", "over", "all over"]}, {"answer": "all_right", "hint": "synonyms for all right", "clues": ["o.k.", "okay", "ok", "hunky-dory", "fine", "all right"]}, {"answer": "allergic", "hint": "synonyms for allergic", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "alleviative", "hint": "synonyms for alleviative", "clues": ["lenitive", "alleviatory", "mitigatory", "mitigative", "palliative"]}, {"answer": "alleviatory", "hint": "synonyms for alleviatory", "clues": ["lenitive", "alleviative", "mitigatory", "mitigative", "alleviatory"]}, {"answer": "alone", "hint": "synonyms for alone", "clues": ["lone", "only", "unequalled", "unparalleled", "unique", "solitary"]}, {"answer": "alterative", "hint": "synonyms for alterative", "clues": ["healing", "therapeutic", "curative", "remedial", "sanative", "alterative"]}, {"answer": "alveolate", "hint": "synonyms for alveolate", "clues": ["pitted", "faveolate", "cavitied", "honeycombed"]}, {"answer": "amalgamate", "hint": "synonyms for amalgamate", "clues": ["amalgamated", "fused", "coalesced", "consolidated"]}, {"answer": "amalgamated", "hint": "synonyms for amalgamated", "clues": ["consolidated", "coalesced", "fused", "amalgamate"]}, {"answer": "amateur", "hint": "synonyms for amateur", "clues": ["unskilled", "inexpert", "unpaid", "recreational", "amateurish", "amateur"]}, {"answer": "amazed", "hint": "synonyms for amazed", "clues": ["astounded", "astonished", "stunned", "amazed"]}, {"answer": "amazing", "hint": "synonyms for amazing", "clues": ["astonishing", "awesome", "awing", "awful", "awe-inspiring", "amazing"]}, {"answer": "ambidextrous", "hint": "synonyms for ambidextrous", "clues": ["Janus-faced", "double-dealing", "double-faced", "two-handed", "double-tongued", "deceitful", "two-faced", "duplicitous", "ambidextrous"]}, {"answer": "amiable", "hint": "synonyms for amiable", "clues": ["good-humoured", "cordial", "affable", "genial", "amiable"]}, {"answer": "amok", "hint": "synonyms for amok", "clues": ["demoniacal", "amuck", "berserk", "possessed", "amok"]}, {"answer": "amorphous", "hint": "synonyms for amorphous", "clues": ["unstructured", "uncrystallised", "formless", "shapeless", "amorphous"]}, {"answer": "ample", "hint": "synonyms for ample", "clues": ["rich", "plentiful", "copious", "sizable", "plenteous", "ample"]}, {"answer": "amuck", "hint": "synonyms for amuck", "clues": ["demoniacal", "amok", "berserk", "possessed", "amuck"]}, {"answer": "amusing", "hint": "synonyms for amusing", "clues": ["risible", "amusive", "funny", "comical", "mirthful", "diverting", "comic", "laughable", "amusing"]}, {"answer": "amylaceous", "hint": "synonyms for amylaceous", "clues": ["farinaceous", "amyloid", "starchlike", "amylaceous"]}, {"answer": "amyloid", "hint": "synonyms for amyloid", "clues": ["farinaceous", "amyloidal", "amylaceous", "starchlike"]}, {"answer": "amyloidal", "hint": "synonyms for amyloidal", "clues": ["farinaceous", "amyloid", "amylaceous", "starchlike"]}, {"answer": "ancillary", "hint": "synonyms for ancillary", "clues": ["adjuvant", "adjunct", "auxiliary", "appurtenant", "accessory", "ancillary"]}, {"answer": "angelic", "hint": "synonyms for angelic", "clues": ["cherubic", "sainted", "angelical", "seraphic", "saintly", "sweet", "saintlike", "beatific"]}, {"answer": "angelical", "hint": "synonyms for angelical", "clues": ["angelic", "cherubic", "sainted", "seraphic", "sweet", "saintly", "saintlike", "beatific"]}, {"answer": "angered", "hint": "synonyms for angered", "clues": ["infuriated", "maddened", "enraged", "furious", "angered"]}, {"answer": "angry", "hint": "synonyms for angry", "clues": ["raging", "tempestuous", "wild", "furious", "angry"]}, {"answer": "annoyed", "hint": "synonyms for annoyed", "clues": ["harried", "nettled", "steamed", "pissed off", "pestered", "riled", "pissed", "stung", "miffed", "harassed", "peeved", "vexed", "irritated", "annoyed"]}, {"answer": "annoying", "hint": "synonyms for annoying", "clues": ["teasing", "nettlesome", "pestiferous", "pesky", "plaguy", "irritating", "pestering", "vexing", "bothersome", "galling", "vexatious", "annoying"]}, {"answer": "annular", "hint": "synonyms for annular", "clues": ["ring-shaped", "circinate", "ringed", "doughnut-shaped", "annulate", "annular"]}, {"answer": "annulate", "hint": "synonyms for annulate", "clues": ["annular", "ring-shaped", "circinate", "ringed", "doughnut-shaped", "annulated"]}, {"answer": "annulated", "hint": "synonyms for annulated", "clues": ["annular", "ring-shaped", "circinate", "ringed", "doughnut-shaped", "annulate"]}, {"answer": "anserine", "hint": "synonyms for anserine", "clues": ["dopey", "goosey", "jerky", "gooselike", "foolish", "anserine"]}, {"answer": "antagonistic", "hint": "synonyms for antagonistic", "clues": ["counter", "antipathetic", "incompatible", "antagonistic"]}, {"answer": "antipathetic", "hint": "synonyms for antipathetic", "clues": ["loth", "indisposed", "averse", "antagonistic", "antipathetical"]}, {"answer": "antipathetical", "hint": "synonyms for antipathetical", "clues": ["indisposed", "averse", "antipathetic", "loath", "antagonistic"]}, {"answer": "antique", "hint": "synonyms for antique", "clues": ["age-old", "outmoded", "old-fashioned", "ex", "demode", "passe", "old-hat", "antique"]}, {"answer": "anxious", "hint": "synonyms for anxious", "clues": ["dying", "unquiet", "queasy", "nervous", "uneasy", "anxious"]}, {"answer": "apomictic", "hint": "synonyms for apomictic", "clues": ["apomictical", "agamic", "parthenogenetic", "agamous", "agamogenetic"]}, {"answer": "appareled", "hint": "synonyms for appareled", "clues": ["garmented", "dressed", "robed", "attired", "garbed", "habilimented", "appareled"]}, {"answer": "apparent", "hint": "synonyms for apparent", "clues": ["ostensible", "manifest", "plain", "evident", "patent", "seeming", "unmistakable", "apparent"]}, {"answer": "apparitional", "hint": "synonyms for apparitional", "clues": ["ghostlike", "spiritual", "ghostly", "phantasmal", "spectral", "apparitional"]}, {"answer": "appointed", "hint": "synonyms for appointed", "clues": ["prescribed", "ordained", "appointive", "decreed", "appointed"]}, {"answer": "apportioned", "hint": "synonyms for apportioned", "clues": ["parceled out", "doled out", "meted out", "dealt out", "apportioned"]}, {"answer": "apprehensible", "hint": "synonyms for apprehensible", "clues": ["intelligible", "perceivable", "understandable", "graspable", "apprehensible"]}, {"answer": "approbative", "hint": "synonyms for approbative", "clues": ["approbatory", "affirmative", "approving", "plausive", "approbative"]}, {"answer": "approbatory", "hint": "synonyms for approbatory", "clues": ["approbative", "affirmative", "approving", "plausive", "approbatory"]}, {"answer": "approving", "hint": "synonyms for approving", "clues": ["approbatory", "approbative", "affirmative", "plausive", "approving"]}, {"answer": "approximate", "hint": "synonyms for approximate", "clues": ["approximative", "close together", "near", "rough"]}, {"answer": "appurtenant", "hint": "synonyms for appurtenant", "clues": ["adjuvant", "ancillary", "adjunct", "auxiliary", "accessory", "appurtenant"]}, {"answer": "apt", "hint": "synonyms for apt", "clues": ["apposite", "given", "tending", "minded", "disposed", "liable", "pertinent", "clever", "apt"]}, {"answer": "arachnidian", "hint": "synonyms for arachnidian", "clues": ["arachnoid", "spiderlike", "spidery", "arachnidian"]}, {"answer": "arachnoid", "hint": "synonyms for arachnoid", "clues": ["arachnidian", "spiderlike", "spidery", "arachnoid"]}, {"answer": "arboreal", "hint": "synonyms for arboreal", "clues": ["arboreous", "arborescent", "arborary", "dendroid", "arborical", "tree-living", "arboriform", "arboresque", "treelike", "tree-shaped", "dendriform", "arboreal"]}, {"answer": "arboreous", "hint": "synonyms for arboreous", "clues": ["arborescent", "arboresque", "arboraceous", "dendroid", "arboreal", "woodsy", "tree-living", "arboriform", "treelike", "tree-shaped", "dendriform"]}, {"answer": "arborescent", "hint": "synonyms for arborescent", "clues": ["arboreous", "dendroid", "treelike", "arboreal", "arboriform", "arboresque", "dendriform", "tree-shaped", "arborescent"]}, {"answer": "arboresque", "hint": "synonyms for arboresque", "clues": ["arboreous", "arborescent", "dendroid", "treelike", "arboreal", "arboriform", "dendriform", "tree-shaped", "arboresque"]}, {"answer": "arboriform", "hint": "synonyms for arboriform", "clues": ["arboreous", "arborescent", "dendroid", "treelike", "arboreal", "arboresque", "dendriform", "tree-shaped", "arboriform"]}, {"answer": "arced", "hint": "synonyms for arced", "clues": ["arciform", "bowed", "arched", "arching", "arcuate"]}, {"answer": "arch", "hint": "synonyms for arch", "clues": ["patronizing", "prankish", "impish", "mischievous", "pixilated", "puckish", "condescending", "wicked", "implike", "arch"]}, {"answer": "arched", "hint": "synonyms for arched", "clues": ["arciform", "bowed", "arching", "arced", "arcuate"]}, {"answer": "arching", "hint": "synonyms for arching", "clues": ["arciform", "bowed", "arched", "arcuate", "arching"]}, {"answer": "arciform", "hint": "synonyms for arciform", "clues": ["bowed", "arched", "arching", "arcuate", "arciform"]}, {"answer": "arctic", "hint": "synonyms for arctic", "clues": ["gelid", "north-polar", "icy", "polar", "Arctic", "glacial", "frigid"]}, {"answer": "arcuate", "hint": "synonyms for arcuate", "clues": ["arciform", "bowed", "arched", "arching", "arcuate"]}, {"answer": "ardent", "hint": "synonyms for ardent", "clues": ["fervent", "impassioned", "torrid", "warm", "fervid", "fiery", "perfervid", "ardent"]}, {"answer": "arduous", "hint": "synonyms for arduous", "clues": ["punishing", "strenuous", "hard", "backbreaking", "heavy", "gruelling", "laborious", "straining", "toilsome", "operose", "arduous"]}, {"answer": "argus-eyed", "hint": "synonyms for argus-eyed", "clues": ["lynx-eyed", "sharp-sighted", "open-eyed", "vigilant", "quick-sighted", "wakeful", "sharp-eyed", "keen-sighted", "hawk-eyed", "argus-eyed"]}, {"answer": "aristocratic", "hint": "synonyms for aristocratic", "clues": ["blue-blooded", "patrician", "gentle", "blue", "aristocratical"]}, {"answer": "aristocratical", "hint": "synonyms for aristocratical", "clues": ["blue-blooded", "aristocratic", "patrician", "gentle", "blue"]}, {"answer": "around_the_bend", "hint": "synonyms for around the bend", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "round the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty"]}, {"answer": "aroused", "hint": "synonyms for aroused", "clues": ["stirred up", "turned on", "stirred", "stimulated", "worked up", "aflame", "steamy", "ruttish", "ablaze", "horny", "excited", "emotional", "randy", "wound up", "aroused"]}, {"answer": "arrant", "hint": "synonyms for arrant", "clues": ["consummate", "double-dyed", "gross", "perfect", "sodding", "staring", "unadulterated", "everlasting", "complete", "thoroughgoing", "utter", "pure", "stark", "arrant"]}, {"answer": "arthritic", "hint": "synonyms for arthritic", "clues": ["rheumatic", "rheumy", "creaky", "rheumatoid", "arthritic"]}, {"answer": "artificial", "hint": "synonyms for artificial", "clues": ["stilted", "hokey", "contrived", "unreal", "artificial"]}, {"answer": "ashen", "hint": "synonyms for ashen", "clues": ["blanched", "white", "livid", "bloodless", "ashen"]}, {"answer": "asinine", "hint": "synonyms for asinine", "clues": ["mindless", "fatuous", "inane", "vacuous", "asinine"]}, {"answer": "askance", "hint": "synonyms for askance", "clues": ["askant", "squint-eyed", "sidelong", "asquint", "askance"]}, {"answer": "askant", "hint": "synonyms for askant", "clues": ["squint-eyed", "askance", "sidelong", "asquint", "askant"]}, {"answer": "askew", "hint": "synonyms for askew", "clues": ["skew-whiff", "wonky", "cockeyed", "awry", "lopsided", "askew"]}, {"answer": "aslant", "hint": "synonyms for aslant", "clues": ["sloping", "aslope", "sloped", "slanting", "diagonal", "slanted", "aslant"]}, {"answer": "asleep", "hint": "synonyms for asleep", "clues": ["at rest", "numb", "benumbed", "at peace", "gone", "deceased", "departed", "asleep"]}, {"answer": "aslope", "hint": "synonyms for aslope", "clues": ["sloping", "aslant", "sloped", "slanting", "diagonal", "slanted", "aslope"]}, {"answer": "asquint", "hint": "synonyms for asquint", "clues": ["askant", "askance", "sidelong", "squinty", "squint-eyed"]}, {"answer": "assignable", "hint": "synonyms for assignable", "clues": ["transferrable", "conveyable", "negotiable", "assignable"]}, {"answer": "assorted", "hint": "synonyms for assorted", "clues": ["sundry", "mixed", "motley", "various", "miscellaneous", "assorted"]}, {"answer": "assumed", "hint": "synonyms for assumed", "clues": ["pretended", "sham", "fictive", "put on", "fictitious", "false", "assumed"]}, {"answer": "astonied", "hint": "synonyms for astonied", "clues": ["amazed", "astounded", "stunned", "astonished"]}, {"answer": "astonished", "hint": "synonyms for astonished", "clues": ["amazed", "astounded", "stunned", "astonied"]}, {"answer": "astonishing", "hint": "synonyms for astonishing", "clues": ["staggering", "stupefying", "amazing", "astounding", "astonishing"]}, {"answer": "astounded", "hint": "synonyms for astounded", "clues": ["amazed", "astonished", "stunned", "astounded"]}, {"answer": "astounding", "hint": "synonyms for astounding", "clues": ["astonishing", "staggering", "dumbfounding", "stupefying", "astounding"]}, {"answer": "at_hand", "hint": "synonyms for at hand", "clues": ["imminent", "close at hand", "impendent", "impending", "at hand"]}, {"answer": "at_peace", "hint": "synonyms for at peace", "clues": ["at rest", "asleep", "gone", "deceased", "departed", "at peace"]}, {"answer": "at_rest", "hint": "synonyms for at rest", "clues": ["at peace", "asleep", "gone", "deceased", "departed", "at rest"]}, {"answer": "at_sea", "hint": "synonyms for at sea", "clues": ["bewildered", "confused", "bemused", "lost", "mazed", "mixed-up", "confounded", "befuddled", "baffled", "at sea"]}, {"answer": "ataractic", "hint": "synonyms for ataractic", "clues": ["ataraxic", "tranquilising", "sedative", "ataractic"]}, {"answer": "ataraxic", "hint": "synonyms for ataraxic", "clues": ["tranquillising", "sedative", "ataractic", "ataraxic"]}, {"answer": "atilt", "hint": "synonyms for atilt", "clues": ["tipped", "leaning", "canted", "tilted", "atilt"]}, {"answer": "atrocious", "hint": "synonyms for atrocious", "clues": ["frightful", "grievous", "dreadful", "horrifying", "ugly", "painful", "terrible", "flagitious", "awful", "abominable", "monstrous", "unspeakable", "horrible", "atrocious"]}, {"answer": "attendant", "hint": "synonyms for attendant", "clues": ["incidental", "consequent", "sequent", "ensuant", "resultant", "concomitant", "accompanying", "attendant"]}, {"answer": "attired", "hint": "synonyms for attired", "clues": ["garmented", "appareled", "dressed", "robed", "garbed", "habilimented", "attired"]}, {"answer": "audacious", "hint": "synonyms for audacious", "clues": ["daring", "unfearing", "fearless", "hardy", "brave", "bodacious", "barefaced", "brazen-faced", "venturous", "brassy", "dauntless", "venturesome", "brazen", "intrepid", "bald-faced", "insolent", "audacious"]}, {"answer": "august", "hint": "synonyms for august", "clues": ["venerable", "grand", "lordly", "revered", "august"]}, {"answer": "aureate", "hint": "synonyms for aureate", "clues": ["gold", "golden", "gilded", "gilt", "flamboyant", "florid", "aureate"]}, {"answer": "austere", "hint": "synonyms for austere", "clues": ["ascetical", "severe", "spartan", "stern", "stark", "austere"]}, {"answer": "authentic", "hint": "synonyms for authentic", "clues": ["unquestionable", "veritable", "reliable", "bona fide", "authentic"]}, {"answer": "authoritarian", "hint": "synonyms for authoritarian", "clues": ["autocratic", "despotic", "tyrannic", "overbearing", "dictatorial", "authoritarian"]}, {"answer": "authoritative", "hint": "synonyms for authoritative", "clues": ["authorised", "important", "definitive", "classic", "authoritative"]}, {"answer": "autochthonal", "hint": "synonyms for autochthonal", "clues": ["endemic", "autochthonic", "indigenous", "autochthonous", "autochthonal"]}, {"answer": "autochthonic", "hint": "synonyms for autochthonic", "clues": ["autochthonal", "endemic", "indigenous", "autochthonous", "autochthonic"]}, {"answer": "autochthonous", "hint": "synonyms for autochthonous", "clues": ["autochthonal", "endemic", "autochthonic", "indigenous", "autochthonous"]}, {"answer": "autocratic", "hint": "synonyms for autocratic", "clues": ["magisterial", "dominating", "peremptory", "bossy", "tyrannical", "authoritarian", "despotic", "high-and-mighty", "dictatorial", "autocratic"]}, {"answer": "automatic", "hint": "synonyms for automatic", "clues": ["reflexive", "automatonlike", "machinelike", "robotic", "reflex", "robotlike", "automatic"]}, {"answer": "automatonlike", "hint": "synonyms for automatonlike", "clues": ["machinelike", "robotlike", "automatic", "robotic", "automatonlike"]}, {"answer": "autonomous", "hint": "synonyms for autonomous", "clues": ["self-governing", "independent", "sovereign", "self-directed", "self-reliant", "autonomous"]}, {"answer": "autumn-blooming", "hint": "synonyms for autumn-blooming", "clues": ["autumn-flowering", "late-flowering", "fall-flowering", "fall-blooming", "late-blooming", "autumn-blooming"]}, {"answer": "autumn-flowering", "hint": "synonyms for autumn-flowering", "clues": ["late-flowering", "fall-flowering", "autumn-blooming", "fall-blooming", "late-blooming", "autumn-flowering"]}, {"answer": "auxiliary", "hint": "synonyms for auxiliary", "clues": ["adjuvant", "ancillary", "subsidiary", "supplemental", "adjunct", "appurtenant", "accessory", "auxiliary"]}, {"answer": "avaricious", "hint": "synonyms for avaricious", "clues": ["grabby", "covetous", "grasping", "prehensile", "greedy", "avaricious"]}, {"answer": "average", "hint": "synonyms for average", "clues": ["mediocre", "ordinary", "fair", "middling", "intermediate", "median", "mean", "medium", "modal", "average"]}, {"answer": "averse", "hint": "synonyms for averse", "clues": ["indisposed", "antipathetic", "loath", "averse"]}, {"answer": "avid", "hint": "synonyms for avid", "clues": ["greedy", "esurient", "devouring", "zealous", "avid"]}, {"answer": "awash", "hint": "synonyms for awash", "clues": ["inundated", "afloat", "overflowing", "flooded", "awash"]}, {"answer": "awe-inspiring", "hint": "synonyms for awe-inspiring", "clues": ["awesome", "awing", "amazing", "awful", "awe-inspiring"]}, {"answer": "awesome", "hint": "synonyms for awesome", "clues": ["awing", "awful", "amazing", "awe-inspiring", "awesome"]}, {"answer": "awful", "hint": "synonyms for awful", "clues": ["dreaded", "direful", "fearsome", "painful", "amazing", "frightening", "abominable", "dread", "horrendous", "unspeakable", "fearful", "frightful", "dreadful", "horrific", "awing", "dire", "terrible", "nasty", "awe-inspiring", "tremendous", "atrocious", "awesome", "awed", "awful"]}, {"answer": "awing", "hint": "synonyms for awing", "clues": ["awesome", "awful", "amazing", "awe-inspiring", "awing"]}, {"answer": "awkward", "hint": "synonyms for awkward", "clues": ["ungainly", "inapt", "sticky", "unenviable", "ill at ease", "cumbersome", "bunglesome", "embarrassing", "ill-chosen", "clumsy", "inept", "uneasy", "awkward"]}, {"answer": "awry", "hint": "synonyms for awry", "clues": ["skew-whiff", "wonky", "cockeyed", "haywire", "askew", "wrong", "lopsided", "amiss", "awry"]}, {"answer": "axiomatic", "hint": "synonyms for axiomatic", "clues": ["aphoristic", "postulational", "self-evident", "axiomatical", "taken for granted"]}, {"answer": "bacchanal", "hint": "synonyms for bacchanal", "clues": ["bacchanalian", "bacchic", "orgiastic", "carousing"]}, {"answer": "bacchanalian", "hint": "synonyms for bacchanalian", "clues": ["bacchic", "bacchanal", "orgiastic", "carousing"]}, {"answer": "bacchic", "hint": "synonyms for bacchic", "clues": ["bacchanalian", "orgiastic", "carousing", "bacchic"]}, {"answer": "backbreaking", "hint": "synonyms for backbreaking", "clues": ["punishing", "hard", "gruelling", "heavy", "laborious", "toilsome", "arduous", "operose", "backbreaking"]}, {"answer": "bad", "hint": "synonyms for bad", "clues": ["spoilt", "unsound", "speculative", "big", "spoiled", "uncollectible", "forged", "unfit", "defective", "high-risk", "regretful", "risky", "tough", "sorry", "bad"]}, {"answer": "bad-mannered", "hint": "synonyms for bad-mannered", "clues": ["rude", "unmannerly", "unmannered", "ill-mannered", "bad-mannered"]}, {"answer": "bad-tempered", "hint": "synonyms for bad-tempered", "clues": ["crabby", "crabbed", "grumpy", "ill-tempered", "cross", "fussy", "grouchy", "bad-tempered"]}, {"answer": "baffled", "hint": "synonyms for baffled", "clues": ["bewildered", "confused", "bemused", "at sea", "lost", "mazed", "mixed-up", "confounded", "befuddled", "baffled"]}, {"answer": "baffling", "hint": "synonyms for baffling", "clues": ["knotty", "problematic", "elusive", "tough", "baffling"]}, {"answer": "baked", "hint": "synonyms for baked", "clues": ["sunbaked", "scorched", "parched", "adust", "baked"]}, {"answer": "bald", "hint": "synonyms for bald", "clues": ["bald-headed", "denuded", "bald-pated", "denudate", "barefaced", "bald"]}, {"answer": "bald-faced", "hint": "synonyms for bald-faced", "clues": ["brazen-faced", "brassy", "audacious", "brazen", "bodacious", "barefaced", "insolent", "bald-faced"]}, {"answer": "baleful", "hint": "synonyms for baleful", "clues": ["baneful", "forbidding", "ominous", "minatory", "menacing", "minacious", "sinister", "threatening"]}, {"answer": "ball-shaped", "hint": "synonyms for ball-shaped", "clues": ["globular", "orbicular", "globose", "global", "spherical", "ball-shaped"]}, {"answer": "bally", "hint": "synonyms for bally", "clues": ["blinking", "blooming", "flaming", "crashing", "bloody", "fucking", "bally"]}, {"answer": "balmy", "hint": "synonyms for balmy", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "soft", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "mild", "nutty", "buggy", "cracked", "crackers", "dotty", "balmy"]}, {"answer": "banal", "hint": "synonyms for banal", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "commonplace", "trite", "stock", "well-worn", "shopworn", "threadbare", "banal"]}, {"answer": "bandy", "hint": "synonyms for bandy", "clues": ["bowlegged", "bandy-legged", "bowed", "bowleg", "bandy"]}, {"answer": "bandy-legged", "hint": "synonyms for bandy-legged", "clues": ["bowlegged", "bowleg", "bowed", "bandy", "bandy-legged"]}, {"answer": "baneful", "hint": "synonyms for baneful", "clues": ["deadly", "baleful", "pestilent", "pernicious"]}, {"answer": "bang-up", "hint": "synonyms for bang-up", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "swell", "great", "bang-up"]}, {"answer": "banging", "hint": "synonyms for banging", "clues": ["walloping", "whopping", "thumping", "humongous", "banging"]}, {"answer": "bantam", "hint": "synonyms for bantam", "clues": ["flyspeck", "petite", "midget", "lilliputian", "tiny", "diminutive", "bantam"]}, {"answer": "barbarian", "hint": "synonyms for barbarian", "clues": ["uncivilized", "barbaric", "wild", "savage", "barbarian"]}, {"answer": "barbaric", "hint": "synonyms for barbaric", "clues": ["uncivilized", "wild", "barbarian", "savage", "barbaric"]}, {"answer": "barbarous", "hint": "synonyms for barbarous", "clues": ["roughshod", "fell", "brutal", "cruel", "vicious", "savage", "barbarous"]}, {"answer": "barbate", "hint": "synonyms for barbate", "clues": ["whiskered", "whiskery", "bearded", "barbate"]}, {"answer": "barbed", "hint": "synonyms for barbed", "clues": ["bristly", "biting", "nipping", "mordacious", "bristled", "thorny", "spiny", "pungent", "setaceous", "prickly", "burred", "briery", "briary", "barbellate", "setose", "burry", "barbed"]}, {"answer": "barbellate", "hint": "synonyms for barbellate", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briery", "briary", "bristled", "barbed", "burry", "thorny", "barbellate"]}, {"answer": "bare", "hint": "synonyms for bare", "clues": ["stark", "mere", "unornamented", "simple", "marginal", "au naturel", "plain", "barren", "unsheathed", "scanty", "unfinished", "desolate", "naked", "unembellished", "bleak", "nude", "stripped", "spare", "bare"]}, {"answer": "bare-ass", "hint": "synonyms for bare-ass", "clues": ["peeled", "in the altogether", "stark naked", "raw", "in the raw", "naked as a jaybird", "in the buff", "bare-assed"]}, {"answer": "bare-assed", "hint": "synonyms for bare-assed", "clues": ["peeled", "in the altogether", "stark naked", "raw", "in the raw", "bare-ass", "naked as a jaybird", "in the buff"]}, {"answer": "barefaced", "hint": "synonyms for barefaced", "clues": ["bodacious", "brazen-faced", "brassy", "brazen", "bald-faced", "bald", "audacious", "insolent", "barefaced"]}, {"answer": "barmy", "hint": "synonyms for barmy", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "crackers", "bats", "balmy", "zesty", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "yeasty", "cracked", "zestful", "dotty", "barmy"]}, {"answer": "barren", "hint": "synonyms for barren", "clues": ["innocent", "devoid", "desolate", "bare", "bleak", "destitute", "stark", "free", "barren"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["immoral", "baseborn", "mean", "meanspirited", "lowly", "humble", "basal", "base"]}, {"answer": "baseless", "hint": "synonyms for baseless", "clues": ["unfounded", "unwarranted", "groundless", "wild", "idle", "baseless"]}, {"answer": "bastard", "hint": "synonyms for bastard", "clues": ["phoney", "fake", "bogus", "bastard"]}, {"answer": "bastardly", "hint": "synonyms for bastardly", "clues": ["misbegot", "mean", "spurious", "misbegotten", "bastardly"]}, {"answer": "bathetic", "hint": "synonyms for bathetic", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "soupy", "maudlin", "drippy", "slushy", "soppy", "bathetic"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "bats"]}, {"answer": "batty", "hint": "synonyms for batty", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "batty"]}, {"answer": "beady", "hint": "synonyms for beady", "clues": ["sequined", "buttony", "gemmed", "spangly", "buttonlike", "beadlike", "jewelled", "spangled", "beady"]}, {"answer": "beaming", "hint": "synonyms for beaming", "clues": ["glad", "radiant", "beamy", "effulgent", "beaming"]}, {"answer": "beamy", "hint": "synonyms for beamy", "clues": ["refulgent", "radiant", "beaming", "beamy"]}, {"answer": "bearded", "hint": "synonyms for bearded", "clues": ["whiskered", "barbate", "whiskery", "bearded"]}, {"answer": "beastly", "hint": "synonyms for beastly", "clues": ["bestial", "hellish", "brutal", "god-awful", "brutish", "brute", "beastly"]}, {"answer": "beatific", "hint": "synonyms for beatific", "clues": ["angelic", "saintly", "sainted", "saintlike", "beatific"]}, {"answer": "becoming", "hint": "synonyms for becoming", "clues": ["decorous", "decent", "comely", "comme il faut", "seemly", "becoming"]}, {"answer": "bedraggled", "hint": "synonyms for bedraggled", "clues": ["tatterdemalion", "dilapidated", "tumble-down", "broken-down", "ramshackle", "derelict", "draggled"]}, {"answer": "beefy", "hint": "synonyms for beefy", "clues": ["strapping", "buirdly", "burly", "husky", "beefy"]}, {"answer": "befuddled", "hint": "synonyms for befuddled", "clues": ["wooly", "bewildered", "confused", "woolly-headed", "bemused", "at sea", "lost", "addled", "mazed", "befogged", "mixed-up", "muzzy", "confounded", "baffled", "wooly-minded", "muddled", "befuddled"]}, {"answer": "begrimed", "hint": "synonyms for begrimed", "clues": ["grubby", "raunchy", "grungy", "grimy", "dingy", "begrimed"]}, {"answer": "beguiled", "hint": "synonyms for beguiled", "clues": ["delighted", "enthralled", "captivated", "entranced", "charmed", "beguiled"]}, {"answer": "belittling", "hint": "synonyms for belittling", "clues": ["deprecatory", "deprecative", "deprecating", "slighting", "belittling"]}, {"answer": "bellied", "hint": "synonyms for bellied", "clues": ["protuberant", "bulgy", "bulbous", "bulging", "bellying", "bellied"]}, {"answer": "belligerent", "hint": "synonyms for belligerent", "clues": ["war-ridden", "warring", "aggressive", "militant", "belligerent"]}, {"answer": "bellying", "hint": "synonyms for bellying", "clues": ["protuberant", "bellied", "bulgy", "bulbous", "bulging", "bellying"]}, {"answer": "bemused", "hint": "synonyms for bemused", "clues": ["deep in thought", "preoccupied", "bewildered", "confused", "at sea", "lost", "mazed", "mixed-up", "confounded", "befuddled", "baffled", "bemused"]}, {"answer": "benevolent", "hint": "synonyms for benevolent", "clues": ["beneficent", "openhearted", "philanthropic", "sympathetic", "charitable", "good-hearted", "eleemosynary", "large-hearted", "freehearted", "kindly", "benevolent"]}, {"answer": "bent", "hint": "synonyms for bent", "clues": ["out to", "dead set", "crumpled", "dented", "bended", "bent on", "bent"]}, {"answer": "bereaved", "hint": "synonyms for bereaved", "clues": ["sorrowing", "grieving", "bereft", "mourning", "grief-stricken", "bereaved"]}, {"answer": "bereft", "hint": "synonyms for bereft", "clues": ["unbeloved", "lovelorn", "sorrowing", "grieving", "bereaved", "mourning", "grief-stricken", "bereft"]}, {"answer": "berserk", "hint": "synonyms for berserk", "clues": ["demoniacal", "amuck", "amok", "possessed", "berserk"]}, {"answer": "besotted", "hint": "synonyms for besotted", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "besotted"]}, {"answer": "bespoke", "hint": "synonyms for bespoke", "clues": ["bespoken", "tailored", "tailor-made", "made-to-order"]}, {"answer": "bespoken", "hint": "synonyms for bespoken", "clues": ["made-to-order", "tailored", "bespoke", "tailor-made", "betrothed"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["full", "secure", "effective", "unspoilt", "estimable", "better", "good", "ripe", "dependable", "skilful", "salutary", "expert", "just", "beneficial", "near", "right", "dear", "serious", "adept", "sound", "undecomposed", "proficient", "in force", "honest", "well", "practiced", "safe", "honorable", "respectable", "unspoiled", "upright", "in effect", "best"]}, {"answer": "best-loved", "hint": "synonyms for best-loved", "clues": ["preferred", "favourite", "pet", "favored", "preferent", "best-loved"]}, {"answer": "bestial", "hint": "synonyms for bestial", "clues": ["brute", "brutish", "brutal", "beastly", "bestial"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["full", "secure", "effective", "unspoilt", "estimable", "ripe", "good", "dependable", "skilful", "salutary", "expert", "just", "beneficial", "near", "right", "dear", "serious", "adept", "sound", "undecomposed", "proficient", "in force", "in effect", "well", "practiced", "safe", "honorable", "honest", "respectable", "unspoiled", "upright", "best", "better"]}, {"answer": "better-looking", "hint": "synonyms for better-looking", "clues": ["well-favoured", "handsome", "good-looking", "fine-looking", "better-looking"]}, {"answer": "bewhiskered", "hint": "synonyms for bewhiskered", "clues": ["whiskered", "barbate", "whiskery", "bearded"]}, {"answer": "bewildered", "hint": "synonyms for bewildered", "clues": ["confused", "bemused", "at sea", "lost", "mazed", "mixed-up", "confounded", "befuddled", "baffled", "bewildered"]}, {"answer": "bewitching", "hint": "synonyms for bewitching", "clues": ["captivating", "enchanting", "fascinating", "entrancing", "enthralling", "bewitching"]}, {"answer": "biased", "hint": "synonyms for biased", "clues": ["coloured", "one-sided", "slanted", "biased"]}, {"answer": "bichrome", "hint": "synonyms for bichrome", "clues": ["bicolor", "bicoloured", "dichromatic", "bichrome"]}, {"answer": "bicolor", "hint": "synonyms for bicolor", "clues": ["bicoloured", "dichromatic", "bichrome", "bicolor"]}, {"answer": "bicolored", "hint": "synonyms for bicolored", "clues": ["bicolor", "bicoloured", "dichromatic", "bichrome"]}, {"answer": "bicolour", "hint": "synonyms for bicolour", "clues": ["bicolor", "bicoloured", "dichromatic", "bichrome"]}, {"answer": "bicoloured", "hint": "synonyms for bicoloured", "clues": ["bicolor", "dichromatic", "bichrome", "bicoloured"]}, {"answer": "bifurcate", "hint": "synonyms for bifurcate", "clues": ["branched", "biramous", "forficate", "fork-like", "prongy", "forked", "pronged", "bifurcate"]}, {"answer": "big", "hint": "synonyms for big", "clues": ["openhanded", "expectant", "heavy", "gravid", "bounteous", "bighearted", "with child", "full-grown", "vainglorious", "grownup", "braggart", "handsome", "bragging", "great", "self-aggrandizing", "cock-a-hoop", "boastful", "liberal", "enceinte", "crowing", "grown", "bad", "prominent", "magnanimous", "adult", "braggy", "swelled", "freehanded", "bountiful", "giving", "large", "big"]}, {"answer": "bigger", "hint": "synonyms for bigger", "clues": ["openhanded", "expectant", "heavy", "bounteous", "bighearted", "big", "vainglorious", "grownup", "handsome", "bragging", "great", "self-aggrandizing", "cock-a-hoop", "boastful", "liberal", "crowing", "prominent", "magnanimous", "freehanded", "braggy", "full-grown", "giving", "large", "gravid", "with child", "braggart", "grown", "bad", "bountiful", "adult", "swelled", "enceinte", "bigger"]}, {"answer": "bigheaded", "hint": "synonyms for bigheaded", "clues": ["snotty", "persnickety", "snooty", "too big for one's breeches", "snot-nosed", "uppish", "stuck-up", "bigheaded"]}, {"answer": "bighearted", "hint": "synonyms for bighearted", "clues": ["openhanded", "liberal", "bounteous", "big", "handsome", "freehanded", "bountiful", "giving", "bighearted"]}, {"answer": "bilaterally_symmetrical", "hint": "synonyms for bilaterally symmetrical", "clues": ["zygomorphous", "isobilateral", "bilaterally symmetric", "zygomorphic"]}, {"answer": "bilious", "hint": "synonyms for bilious", "clues": ["biliary", "livery", "atrabilious", "dyspeptic", "liverish", "bilious"]}, {"answer": "biramous", "hint": "synonyms for biramous", "clues": ["branched", "forficate", "bifurcate", "fork-like", "prongy", "forked", "pronged", "biramous"]}, {"answer": "bit-by-bit", "hint": "synonyms for bit-by-bit", "clues": ["step-by-step", "in small stages", "stepwise", "piecemeal", "bit-by-bit"]}, {"answer": "biting", "hint": "synonyms for biting", "clues": ["nipping", "mordacious", "pungent", "barbed", "bitter", "biting"]}, {"answer": "bitter", "hint": "synonyms for bitter", "clues": ["acrid", "caustic", "biting", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "vitriolic", "sulphurous", "acrimonious", "bitter"]}, {"answer": "bittie", "hint": "synonyms for bittie", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "itty-bitty", "teensy-weensy", "bittie"]}, {"answer": "bitty", "hint": "synonyms for bitty", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bittie", "itty-bitty", "teensy-weensy", "bitty"]}, {"answer": "biyearly", "hint": "synonyms for biyearly", "clues": ["half-yearly", "semiannual", "biennial", "biannual", "biyearly"]}, {"answer": "bizarre", "hint": "synonyms for bizarre", "clues": ["gonzo", "off-the-wall", "flaky", "freaky", "outlandish", "freakish", "outre", "eccentric", "bizarre"]}, {"answer": "blabbermouthed", "hint": "synonyms for blabbermouthed", "clues": ["bigmouthed", "blabby", "leaky", "talebearing", "tattling", "talkative", "blabbermouthed"]}, {"answer": "black", "hint": "synonyms for black", "clues": ["dim", "sinister", "pitch-black", "blackened", "fateful", "opprobrious", "mordant", "grim", "inglorious", "fatal", "pitch-dark", "black-market", "shameful", "contraband", "disgraceful", "dark", "smuggled", "smutty", "calamitous", "bootleg", "bleak", "disastrous", "ignominious", "black"]}, {"answer": "black-market", "hint": "synonyms for black-market", "clues": ["bootleg", "black", "contraband", "smuggled", "black-market"]}, {"answer": "blamable", "hint": "synonyms for blamable", "clues": ["culpable", "blameful", "censurable", "blameworthy", "blameable"]}, {"answer": "blame", "hint": "synonyms for blame", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blasted", "blamed", "deuced"]}, {"answer": "blameable", "hint": "synonyms for blameable", "clues": ["culpable", "blameful", "censurable", "blameworthy", "blamable"]}, {"answer": "blamed", "hint": "synonyms for blamed", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blasted", "deuced", "blame"]}, {"answer": "blameful", "hint": "synonyms for blameful", "clues": ["culpable", "censurable", "blameworthy", "blamable", "blameful"]}, {"answer": "blameworthy", "hint": "synonyms for blameworthy", "clues": ["culpable", "blameful", "censurable", "blamable", "blameworthy"]}, {"answer": "blanched", "hint": "synonyms for blanched", "clues": ["white", "etiolate", "ashen", "bloodless", "livid", "blanched"]}, {"answer": "bland", "hint": "synonyms for bland", "clues": ["politic", "smooth", "flavorless", "insipid", "flat", "savourless", "suave", "vapid", "bland"]}, {"answer": "blanket", "hint": "synonyms for blanket", "clues": ["panoptic", "across-the-board", "encompassing", "extensive", "wide", "all-inclusive", "all-embracing", "broad", "blanket"]}, {"answer": "blasted", "hint": "synonyms for blasted", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blamed", "deuced", "blasted"]}, {"answer": "blatant", "hint": "synonyms for blatant", "clues": ["clamant", "strident", "blazing", "conspicuous", "vociferous", "clamorous", "blatant"]}, {"answer": "blazing", "hint": "synonyms for blazing", "clues": ["blinding", "blatant", "dazzling", "conspicuous", "glary", "glaring", "fulgent", "blazing"]}, {"answer": "bleached", "hint": "synonyms for bleached", "clues": ["washy", "washed-out", "coloured", "faded", "dyed", "bleached"]}, {"answer": "bleak", "hint": "synonyms for bleak", "clues": ["black", "barren", "raw", "desolate", "bare", "dim", "stark", "cutting", "bleak"]}, {"answer": "bleary", "hint": "synonyms for bleary", "clues": ["hazy", "blurry", "blear-eyed", "foggy", "blear", "fuzzy", "muzzy", "blurred"]}, {"answer": "blessed", "hint": "synonyms for blessed", "clues": ["darned", "goddamn", "damned", "damn", "infernal", "Blessed", "blest", "blasted", "blamed", "beatified", "deuced"]}, {"answer": "blind_drunk", "hint": "synonyms for blind drunk", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "blind drunk"]}, {"answer": "blinding", "hint": "synonyms for blinding", "clues": ["blazing", "dazzling", "glary", "glaring", "fulgent", "blinding"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["winking", "bally", "blooming", "flaming", "crashing", "bloody", "fucking", "blinking"]}, {"answer": "blistering", "hint": "synonyms for blistering", "clues": ["acrid", "caustic", "hot", "red-hot", "acerb", "virulent", "acerbic", "sulfurous", "vitriolic", "sulphurous", "bitter", "blistery", "blistering"]}, {"answer": "blithe", "hint": "synonyms for blithe", "clues": ["lightsome", "blithesome", "lighthearted", "blithe"]}, {"answer": "blithesome", "hint": "synonyms for blithesome", "clues": ["blithe", "lightsome", "lighthearted", "blithesome"]}, {"answer": "blockheaded", "hint": "synonyms for blockheaded", "clues": ["fatheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled", "blockheaded"]}, {"answer": "blood-red", "hint": "synonyms for blood-red", "clues": ["cherry-red", "crimson", "ruddy", "cerise", "ruby", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry", "blood-red"]}, {"answer": "blood-related", "hint": "synonyms for blood-related", "clues": ["akin", "consanguine", "cognate", "blood-related"]}, {"answer": "bloodless", "hint": "synonyms for bloodless", "clues": ["blanched", "white", "exsanguine", "exsanguinous", "ashen", "livid", "bloodless"]}, {"answer": "bloody", "hint": "synonyms for bloody", "clues": ["blinking", "bally", "blooming", "flaming", "crashing", "fucking", "bloody"]}, {"answer": "blooming", "hint": "synonyms for blooming", "clues": ["blinking", "bally", "flaming", "crashing", "bloody", "fucking", "blooming"]}, {"answer": "blotto", "hint": "synonyms for blotto", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "pixilated", "smashed", "crocked", "wet", "plastered", "blotto"]}, {"answer": "blue", "hint": "synonyms for blue", "clues": ["drab", "gamey", "bluish", "downhearted", "grim", "risque", "spicy", "low", "dingy", "dark", "gloomy", "downcast", "dispirited", "blue-blooded", "patrician", "dreary", "profane", "racy", "gentle", "disconsolate", "aristocratical", "sorry", "down", "depressed", "juicy", "low-spirited", "puritanical", "down in the mouth", "naughty", "blasphemous", "dismal", "blue"]}, {"answer": "blue-blooded", "hint": "synonyms for blue-blooded", "clues": ["aristocratic", "patrician", "gentle", "blue", "blue-blooded"]}, {"answer": "blunt", "hint": "synonyms for blunt", "clues": ["crude", "outspoken", "free-spoken", "candid", "point-blank", "straight-from-the-shoulder", "plainspoken", "forthright", "frank", "stark", "blunt"]}, {"answer": "blurred", "hint": "synonyms for blurred", "clues": ["hazy", "muzzy", "bleary", "blurry", "foggy", "clouded", "fuzzy", "blurred"]}, {"answer": "blurry", "hint": "synonyms for blurry", "clues": ["hazy", "muzzy", "bleary", "foggy", "blurred", "fuzzy", "blurry"]}, {"answer": "boastful", "hint": "synonyms for boastful", "clues": ["self-aggrandizing", "cock-a-hoop", "braggy", "big", "crowing", "braggart", "bragging", "boastful"]}, {"answer": "bodacious", "hint": "synonyms for bodacious", "clues": ["brazen-faced", "brassy", "audacious", "brazen", "bald-faced", "barefaced", "insolent", "bodacious"]}, {"answer": "bodied", "hint": "synonyms for bodied", "clues": ["embodied", "incarnate", "corporate", "corporal"]}, {"answer": "bodiless", "hint": "synonyms for bodiless", "clues": ["discorporate", "bodyless", "unbodied", "disembodied"]}, {"answer": "boggy", "hint": "synonyms for boggy", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "quaggy", "sloughy", "swampy", "sloppy", "waterlogged", "squashy", "boggy"]}, {"answer": "bogus", "hint": "synonyms for bogus", "clues": ["phoney", "fake", "bastard", "bogus"]}, {"answer": "boisterous", "hint": "synonyms for boisterous", "clues": ["rambunctious", "unruly", "fierce", "rumbustious", "rough", "knockabout", "boisterous"]}, {"answer": "bombastic", "hint": "synonyms for bombastic", "clues": ["orotund", "large", "declamatory", "tumid", "turgid", "bombastic"]}, {"answer": "boneheaded", "hint": "synonyms for boneheaded", "clues": ["blockheaded", "fatheaded", "loggerheaded", "thickheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled", "boneheaded"]}, {"answer": "boney", "hint": "synonyms for boney", "clues": ["skinny", "weedy", "bony", "scraggy", "underweight", "scrawny"]}, {"answer": "bonkers", "hint": "synonyms for bonkers", "clues": ["fruity", "loony", "haywire", "nuts", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "bonkers"]}, {"answer": "bonnie", "hint": "synonyms for bonnie", "clues": ["bonny", "comely", "sightly", "fair", "bonnie"]}, {"answer": "bonny", "hint": "synonyms for bonny", "clues": ["fair", "comely", "sightly", "bonnie", "bonny"]}, {"answer": "bony", "hint": "synonyms for bony", "clues": ["boney", "haggard", "cadaverous", "emaciated", "osteal", "wasted", "skeletal", "pinched", "osseous", "gaunt"]}, {"answer": "booming", "hint": "synonyms for booming", "clues": ["flourishing", "prospering", "stentorian", "roaring", "prosperous", "thriving", "palmy", "booming"]}, {"answer": "boorish", "hint": "synonyms for boorish", "clues": ["oafish", "neanderthal", "swinish", "loutish", "boorish"]}, {"answer": "bootleg", "hint": "synonyms for bootleg", "clues": ["smuggled", "black", "contraband", "black-market", "bootleg"]}, {"answer": "bootless", "hint": "synonyms for bootless", "clues": ["fruitless", "sleeveless", "futile", "vain", "bootless"]}, {"answer": "bootlicking", "hint": "synonyms for bootlicking", "clues": ["fawning", "sycophantic", "toadyish", "obsequious", "bootlicking"]}, {"answer": "boring", "hint": "synonyms for boring", "clues": ["tedious", "slow", "dull", "irksome", "wearisome", "deadening", "tiresome", "ho-hum", "boring"]}, {"answer": "bosomy", "hint": "synonyms for bosomy", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "buxom", "curvy", "stacked", "busty", "sonsie", "bosomy"]}, {"answer": "bossy", "hint": "synonyms for bossy", "clues": ["autocratic", "magisterial", "high-and-mighty", "dominating", "peremptory", "bossy"]}, {"answer": "bothersome", "hint": "synonyms for bothersome", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritating", "pestering", "vexing", "galling", "vexatious", "bothersome"]}, {"answer": "bouncing", "hint": "synonyms for bouncing", "clues": ["spirited", "peppy", "bouncy", "zippy", "bouncing"]}, {"answer": "bouncy", "hint": "synonyms for bouncy", "clues": ["spirited", "lively", "bouncing", "resilient", "peppy", "springy", "zippy", "bouncy"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["apprenticed", "articled", "destined", "indentured", "bandaged", "bound"]}, {"answer": "bounderish", "hint": "synonyms for bounderish", "clues": ["ill-bred", "underbred", "yokelish", "lowbred", "rude", "bounderish"]}, {"answer": "bounteous", "hint": "synonyms for bounteous", "clues": ["openhanded", "liberal", "bighearted", "big", "handsome", "freehanded", "bountiful", "giving", "bounteous"]}, {"answer": "bountiful", "hint": "synonyms for bountiful", "clues": ["openhanded", "plentiful", "liberal", "bounteous", "bighearted", "big", "handsome", "freehanded", "giving", "bountiful"]}, {"answer": "bowed", "hint": "synonyms for bowed", "clues": ["bowlegged", "arched", "arching", "bandy-legged", "bowleg", "arciform", "bowing", "bandy", "arcuate", "bowed"]}, {"answer": "bowleg", "hint": "synonyms for bowleg", "clues": ["bowlegged", "bandy-legged", "bowed", "bandy", "bowleg"]}, {"answer": "bowlegged", "hint": "synonyms for bowlegged", "clues": ["bandy-legged", "bowed", "bowleg", "bandy", "bowlegged"]}, {"answer": "bracing", "hint": "synonyms for bracing", "clues": ["refreshing", "fresh", "brisk", "tonic", "refreshful", "bracing"]}, {"answer": "braggart", "hint": "synonyms for braggart", "clues": ["self-aggrandizing", "bragging", "cock-a-hoop", "boastful", "big", "crowing", "braggy", "braggart"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["self-aggrandizing", "cock-a-hoop", "boastful", "big", "crowing", "braggart", "braggy", "bragging"]}, {"answer": "braggy", "hint": "synonyms for braggy", "clues": ["self-aggrandizing", "cock-a-hoop", "boastful", "big", "crowing", "braggart", "bragging", "braggy"]}, {"answer": "brainish", "hint": "synonyms for brainish", "clues": ["impulsive", "hotheaded", "madcap", "impetuous", "tearaway", "brainish"]}, {"answer": "brainsick", "hint": "synonyms for brainsick", "clues": ["mad", "crazy", "unhinged", "demented", "disturbed", "sick", "unbalanced", "brainsick"]}, {"answer": "branched", "hint": "synonyms for branched", "clues": ["ramose", "forficate", "forked", "ramate", "branching", "pronged", "ramous", "fork-like", "prongy", "bifurcate", "branched"]}, {"answer": "branching", "hint": "synonyms for branching", "clues": ["ramous", "branched", "ramose", "ramate", "branching"]}, {"answer": "brassy", "hint": "synonyms for brassy", "clues": ["tacky", "tatty", "cheap", "tawdry", "gimcrack", "bodacious", "trashy", "garish", "bald-faced", "gaudy", "audacious", "meretricious", "flash", "barefaced", "loud", "brazen-faced", "brazen", "brasslike", "insolent", "brassy"]}, {"answer": "brave", "hint": "synonyms for brave", "clues": ["braw", "courageous", "unfearing", "fearless", "hardy", "dauntless", "gay", "intrepid", "audacious", "brave"]}, {"answer": "brawny", "hint": "synonyms for brawny", "clues": ["hefty", "muscular", "powerful", "sinewy", "brawny"]}, {"answer": "brazen", "hint": "synonyms for brazen", "clues": ["brazen-faced", "brassy", "audacious", "bald-faced", "bodacious", "barefaced", "insolent", "brazen"]}, {"answer": "brazen-faced", "hint": "synonyms for brazen-faced", "clues": ["brassy", "audacious", "brazen", "bald-faced", "bodacious", "barefaced", "insolent", "brazen-faced"]}, {"answer": "breathless", "hint": "synonyms for breathless", "clues": ["dyspnoeic", "inanimate", "pulseless", "breathtaking", "dyspneal", "breathless"]}, {"answer": "briary", "hint": "synonyms for briary", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briery", "bristled", "barbellate", "barbed", "burry", "thorny", "briary"]}, {"answer": "bribable", "hint": "synonyms for bribable", "clues": ["corruptible", "venal", "dishonest", "purchasable", "bribable"]}, {"answer": "briery", "hint": "synonyms for briery", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briary", "bristled", "barbellate", "barbed", "burry", "thorny", "briery"]}, {"answer": "bright", "hint": "synonyms for bright", "clues": ["burnished", "vivid", "brilliant", "lustrous", "hopeful", "smart", "shiny", "undimmed", "shining", "promising", "bright"]}, {"answer": "brilliant", "hint": "synonyms for brilliant", "clues": ["vivid", "superb", "magnificent", "brainy", "smart as a whip", "bright", "splendid", "glorious", "brilliant"]}, {"answer": "brisk", "hint": "synonyms for brisk", "clues": ["refreshing", "bracing", "refreshful", "fresh", "alert", "lively", "snappy", "merry", "tonic", "rattling", "spanking", "zippy", "brisk"]}, {"answer": "bristled", "hint": "synonyms for bristled", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briery", "briary", "barbellate", "barbed", "burry", "thorny", "bristled"]}, {"answer": "bristly", "hint": "synonyms for bristly", "clues": ["spiny", "waspish", "setaceous", "prickly", "burred", "thorny", "briery", "splenetic", "briary", "bristled", "barbellate", "setose", "burry", "barbed", "bristly"]}, {"answer": "broad", "hint": "synonyms for broad", "clues": ["panoptic", "full", "tolerant", "spacious", "liberal", "across-the-board", "blanket", "encompassing", "wide", "all-inclusive", "large-minded", "unsubtle", "all-embracing", "extensive", "unspecific", "broad"]}, {"answer": "broadnosed", "hint": "synonyms for broadnosed", "clues": ["platyrhine", "platyrhinian", "platyrrhinic", "broadnosed"]}, {"answer": "brobdingnagian", "hint": "synonyms for brobdingnagian", "clues": ["huge", "vast", "immense", "Brobdingnagian"]}, {"answer": "broke", "hint": "synonyms for broke", "clues": ["stony-broke", "bust", "skint", "broke"]}, {"answer": "broken", "hint": "synonyms for broken", "clues": ["rugged", "wiped out", "unkept", "confused", "impoverished", "upset", "disordered", "crushed", "busted", "humiliated", "low", "humbled", "broken in", "broken"]}, {"answer": "broken-down", "hint": "synonyms for broken-down", "clues": ["tatterdemalion", "dilapidated", "tumble-down", "ramshackle", "derelict", "bedraggled", "broken-down"]}, {"answer": "brooding", "hint": "synonyms for brooding", "clues": ["broody", "ruminative", "musing", "reflective", "contemplative", "pondering", "meditative", "pensive", "brooding"]}, {"answer": "broody", "hint": "synonyms for broody", "clues": ["brooding", "ruminative", "musing", "reflective", "contemplative", "pondering", "meditative", "pensive", "broody"]}, {"answer": "brown", "hint": "synonyms for brown", "clues": ["dark-brown", "brownish", "chocolate-brown", "browned", "brown"]}, {"answer": "brutal", "hint": "synonyms for brutal", "clues": ["bestial", "barbarous", "cruel", "brutish", "brute", "roughshod", "fell", "unrelenting", "vicious", "savage", "beastly", "brutal"]}, {"answer": "brute", "hint": "synonyms for brute", "clues": ["bestial", "brutish", "brutal", "beastly", "brute"]}, {"answer": "brutish", "hint": "synonyms for brutish", "clues": ["bestial", "brute", "brutal", "beastly", "brutish"]}, {"answer": "bubbling", "hint": "synonyms for bubbling", "clues": ["sparkly", "spumy", "bubbly", "foamy", "effervescent", "foaming", "effervescing", "scintillating", "frothy", "bubbling"]}, {"answer": "bubbly", "hint": "synonyms for bubbly", "clues": ["effervescing", "foaming", "frothy", "spumy", "bubbling", "foamy", "bubbly"]}, {"answer": "buffeted", "hint": "synonyms for buffeted", "clues": ["tempest-swept", "tempest-tost", "tempest-tossed", "storm-tossed", "buffeted"]}, {"answer": "buggy", "hint": "synonyms for buggy", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "cracked", "crackers", "dotty", "buggy"]}, {"answer": "built-in", "hint": "synonyms for built-in", "clues": ["inherent", "constitutional", "inbuilt", "integral", "built-in"]}, {"answer": "buirdly", "hint": "synonyms for buirdly", "clues": ["strapping", "husky", "burly", "beefy", "buirdly"]}, {"answer": "bulbous", "hint": "synonyms for bulbous", "clues": ["protuberant", "bulgy", "bellying", "bellied", "bulb-shaped", "bulging", "bulblike", "bulbous"]}, {"answer": "bulging", "hint": "synonyms for bulging", "clues": ["protuberant", "bellied", "bulgy", "bellying", "bulbous", "convex", "bulging"]}, {"answer": "bulgy", "hint": "synonyms for bulgy", "clues": ["protuberant", "bellied", "bulbous", "bulging", "bellying", "bulgy"]}, {"answer": "bully", "hint": "synonyms for bully", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "not bad", "cracking", "bang-up", "swell", "great", "bully"]}, {"answer": "bum", "hint": "synonyms for bum", "clues": ["cheesy", "tinny", "punk", "crummy", "cheap", "chintzy", "sleazy", "bum"]}, {"answer": "bumbling", "hint": "synonyms for bumbling", "clues": ["ham-fisted", "bungling", "left-handed", "handless", "heavy-handed", "ham-handed", "butterfingered", "bumbling"]}, {"answer": "bumpy", "hint": "synonyms for bumpy", "clues": ["jumpy", "jolty", "jolting", "rough", "rocky", "bumpy"]}, {"answer": "bungling", "hint": "synonyms for bungling", "clues": ["ham-fisted", "fumbling", "incompetent", "left-handed", "handless", "heavy-handed", "butterfingered", "clumsy", "ham-handed", "bungling"]}, {"answer": "burly", "hint": "synonyms for burly", "clues": ["strapping", "buirdly", "beefy", "husky", "burly"]}, {"answer": "burned", "hint": "synonyms for burned", "clues": ["burnt-out", "burned-out", "burned-over", "burnt", "burned"]}, {"answer": "burned-out", "hint": "synonyms for burned-out", "clues": ["burned-over", "burnt-out", "burnt", "burned", "burned-out"]}, {"answer": "burned-over", "hint": "synonyms for burned-over", "clues": ["burnt-out", "burnt", "burned", "burned-out", "burned-over"]}, {"answer": "burnished", "hint": "synonyms for burnished", "clues": ["lustrous", "shiny", "bright", "shining", "burnished"]}, {"answer": "burnt", "hint": "synonyms for burnt", "clues": ["burnt-out", "burned-out", "burned-over", "burned", "burnt"]}, {"answer": "burnt-out", "hint": "synonyms for burnt-out", "clues": ["burned-out", "burned-over", "burnt", "burned", "burnt-out"]}, {"answer": "burred", "hint": "synonyms for burred", "clues": ["bristly", "spiny", "setaceous", "prickly", "setose", "briery", "briary", "bristled", "barbellate", "barbed", "burry", "thorny", "burred"]}, {"answer": "burry", "hint": "synonyms for burry", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briery", "briary", "bristled", "barbellate", "barbed", "thorny", "burry"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["broke", "stony-broke", "skint", "bust"]}, {"answer": "busty", "hint": "synonyms for busty", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "sonsie", "busty"]}, {"answer": "busy", "hint": "synonyms for busy", "clues": ["officious", "in use", "engaged", "meddling", "interfering", "busybodied", "fussy", "meddlesome", "busy"]}, {"answer": "busybodied", "hint": "synonyms for busybodied", "clues": ["officious", "busy", "interfering", "meddlesome", "meddling", "busybodied"]}, {"answer": "butcherly", "hint": "synonyms for butcherly", "clues": ["sanguineous", "gory", "sanguinary", "botchy", "slaughterous", "unskillful", "butcherly"]}, {"answer": "butterfingered", "hint": "synonyms for butterfingered", "clues": ["ham-fisted", "bungling", "left-handed", "handless", "bumbling", "heavy-handed", "ham-handed", "butterfingered"]}, {"answer": "buttery", "hint": "synonyms for buttery", "clues": ["oily", "unctuous", "smarmy", "soapy", "oleaginous", "fulsome", "buttery"]}, {"answer": "buxom", "hint": "synonyms for buxom", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "zaftig", "bosomy", "zoftig", "curvy", "stacked", "busty", "sonsie", "buxom"]}, {"answer": "bygone", "hint": "synonyms for bygone", "clues": ["gone", "bypast", "foregone", "departed", "bygone"]}, {"answer": "bypast", "hint": "synonyms for bypast", "clues": ["bygone", "gone", "foregone", "departed", "bypast"]}, {"answer": "byzantine", "hint": "synonyms for byzantine", "clues": ["tortuous", "Byzantine", "knotty", "involved", "tangled", "convoluted"]}, {"answer": "cadaverous", "hint": "synonyms for cadaverous", "clues": ["wasted", "haggard", "skeletal", "bony", "pinched", "cadaveric", "gaunt", "emaciated", "cadaverous"]}, {"answer": "cagey", "hint": "synonyms for cagey", "clues": ["cagy", "chary", "canny", "clever"]}, {"answer": "cagy", "hint": "synonyms for cagy", "clues": ["chary", "canny", "cagey", "clever"]}, {"answer": "calamitous", "hint": "synonyms for calamitous", "clues": ["fatal", "black", "disastrous", "fateful", "calamitous"]}, {"answer": "calculating", "hint": "synonyms for calculating", "clues": ["scheming", "calculative", "shrewd", "conniving", "calculating"]}, {"answer": "calculative", "hint": "synonyms for calculative", "clues": ["scheming", "conniving", "shrewd", "calculating", "calculative"]}, {"answer": "calico", "hint": "synonyms for calico", "clues": ["particoloured", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored", "calico"]}, {"answer": "callous", "hint": "synonyms for callous", "clues": ["pachydermatous", "thickened", "calloused", "indurate"]}, {"answer": "calumniatory", "hint": "synonyms for calumniatory", "clues": ["denigratory", "denigrative", "slanderous", "libellous", "defamatory", "calumnious", "denigrating", "calumniatory"]}, {"answer": "calumnious", "hint": "synonyms for calumnious", "clues": ["denigratory", "denigrative", "libellous", "calumniatory", "defamatory", "slanderous", "denigrating", "calumnious"]}, {"answer": "candid", "hint": "synonyms for candid", "clues": ["outspoken", "heart-to-heart", "free-spoken", "open", "point-blank", "straight-from-the-shoulder", "plainspoken", "forthright", "frank", "blunt", "candid"]}, {"answer": "candied", "hint": "synonyms for candied", "clues": ["crystalised", "sugar-coated", "glace", "candied"]}, {"answer": "cannular", "hint": "synonyms for cannular", "clues": ["tube-shaped", "tubular", "tubelike", "vasiform", "cannular"]}, {"answer": "canted", "hint": "synonyms for canted", "clues": ["leaning", "atilt", "tipped", "tilted", "canted"]}, {"answer": "capable", "hint": "synonyms for capable", "clues": ["able", "up to", "open", "adequate to", "subject", "equal to", "capable"]}, {"answer": "captivated", "hint": "synonyms for captivated", "clues": ["beguiled", "delighted", "enthralled", "entranced", "charmed", "captivated"]}, {"answer": "captivating", "hint": "synonyms for captivating", "clues": ["enchanting", "fascinating", "bewitching", "entrancing", "enthralling", "captivating"]}, {"answer": "captive", "hint": "synonyms for captive", "clues": ["engrossed", "wrapped", "intent", "confined", "imprisoned", "absorbed", "jailed", "captive"]}, {"answer": "cardinal", "hint": "synonyms for cardinal", "clues": ["central", "key", "primal", "fundamental", "cardinal"]}, {"answer": "carefree", "hint": "synonyms for carefree", "clues": ["slaphappy", "happy-go-lucky", "unworried", "devil-may-care", "harum-scarum", "freewheeling", "carefree"]}, {"answer": "careful", "hint": "synonyms for careful", "clues": ["thrifty", "deliberate", "measured", "heedful", "careful"]}, {"answer": "careworn", "hint": "synonyms for careworn", "clues": ["haggard", "worn", "drawn", "raddled", "careworn"]}, {"answer": "carmine", "hint": "synonyms for carmine", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "ruby-red", "scarlet", "reddish", "cherry", "carmine"]}, {"answer": "carousing", "hint": "synonyms for carousing", "clues": ["bacchanalian", "bacchic", "orgiastic", "carousing"]}, {"answer": "casual", "hint": "synonyms for casual", "clues": ["insouciant", "everyday", "daily", "effortless", "free-and-easy", "nonchalant", "occasional", "perfunctory", "passing", "fooling", "cursory", "chance", "casual"]}, {"answer": "cata-cornered", "hint": "synonyms for cata-cornered", "clues": ["cater-cornered", "catty-corner", "catacorner", "kitty-cornered"]}, {"answer": "catacorner", "hint": "synonyms for catacorner", "clues": ["cater-cornered", "catty-corner", "kitty-cornered", "catacorner"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["transmissible", "communicable", "contagious", "contractable", "transmittable", "catching"]}, {"answer": "cater-cornered", "hint": "synonyms for cater-cornered", "clues": ["catty-corner", "catercorner", "cata-cornered", "kitty-cornered"]}, {"answer": "catercorner", "hint": "synonyms for catercorner", "clues": ["cater-cornered", "catty-corner", "catacorner", "kitty-cornered"]}, {"answer": "cathartic", "hint": "synonyms for cathartic", "clues": ["evacuant", "psychotherapeutic", "purgative", "releasing", "cathartic"]}, {"answer": "catty-corner", "hint": "synonyms for catty-corner", "clues": ["cater-cornered", "catacorner", "kitty-cornered", "catty-corner"]}, {"answer": "catty-cornered", "hint": "synonyms for catty-cornered", "clues": ["cater-cornered", "catty-corner", "catacorner", "kitty-cornered"]}, {"answer": "caustic", "hint": "synonyms for caustic", "clues": ["erosive", "acrid", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "mordant", "vitriolic", "sulphurous", "bitter", "corrosive", "caustic"]}, {"answer": "cautionary", "hint": "synonyms for cautionary", "clues": ["monitory", "exemplary", "warning", "prophylactic", "cautionary"]}, {"answer": "cavitied", "hint": "synonyms for cavitied", "clues": ["pitted", "alveolate", "honeycombed", "cavitied"]}, {"answer": "ceaseless", "hint": "synonyms for ceaseless", "clues": ["never-ending", "perpetual", "constant", "unremitting", "unceasing", "incessant", "ceaseless"]}, {"answer": "celebrated", "hint": "synonyms for celebrated", "clues": ["noted", "historied", "far-famed", "renowned", "notable", "illustrious", "famous", "famed", "celebrated"]}, {"answer": "censurable", "hint": "synonyms for censurable", "clues": ["culpable", "blameful", "blameworthy", "blamable", "censurable"]}, {"answer": "central", "hint": "synonyms for central", "clues": ["key", "cardinal", "primal", "fundamental", "central"]}, {"answer": "cerise", "hint": "synonyms for cerise", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "ruby", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry", "cerise"]}, {"answer": "cernuous", "hint": "synonyms for cernuous", "clues": ["weeping", "nodding", "pendulous", "drooping", "cernuous"]}, {"answer": "chancy", "hint": "synonyms for chancy", "clues": ["iffy", "chanceful", "dicey", "dodgy", "fluky", "chancy"]}, {"answer": "changeable", "hint": "synonyms for changeable", "clues": ["changeful", "shot", "chatoyant", "unsettled", "iridescent", "mutable", "uncertain", "changeable"]}, {"answer": "changeless", "hint": "synonyms for changeless", "clues": ["immutable", "unvarying", "constant", "unalterable", "invariant", "changeless"]}, {"answer": "charitable", "hint": "synonyms for charitable", "clues": ["openhearted", "good-hearted", "large-hearted", "benevolent", "kindly", "sympathetic", "charitable"]}, {"answer": "charmed", "hint": "synonyms for charmed", "clues": ["beguiled", "delighted", "captivated", "entranced", "enthralled", "charmed"]}, {"answer": "charming", "hint": "synonyms for charming", "clues": ["magic", "wizardly", "sorcerous", "magical", "witching", "charming"]}, {"answer": "chatty", "hint": "synonyms for chatty", "clues": ["garrulous", "gossipy", "loquacious", "newsy", "talkative", "talky", "gabby", "chatty"]}, {"answer": "chauvinistic", "hint": "synonyms for chauvinistic", "clues": ["jingoistic", "ultranationalistic", "nationalistic", "flag-waving", "superpatriotic", "chauvinistic"]}, {"answer": "cheap", "hint": "synonyms for cheap", "clues": ["tacky", "punk", "tatty", "tawdry", "inexpensive", "chinchy", "gimcrack", "cheesy", "trashy", "garish", "brassy", "crummy", "gaudy", "chintzy", "meretricious", "flash", "bum", "tinny", "sleazy", "loud", "cheap"]}, {"answer": "cheating", "hint": "synonyms for cheating", "clues": ["dirty", "unsportsmanlike", "adulterous", "unsporting", "foul", "two-timing", "cheating"]}, {"answer": "cheeseparing", "hint": "synonyms for cheeseparing", "clues": ["skinny", "penny-pinching", "near", "close", "cheeseparing"]}, {"answer": "cheesy", "hint": "synonyms for cheesy", "clues": ["bum", "tinny", "punk", "crummy", "cheap", "chintzy", "sleazy", "cheesy"]}, {"answer": "cherry", "hint": "synonyms for cherry", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry"]}, {"answer": "cherry-red", "hint": "synonyms for cherry-red", "clues": ["crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry", "cherry-red"]}, {"answer": "cherubic", "hint": "synonyms for cherubic", "clues": ["seraphic", "angelic", "sweet", "cherubic"]}, {"answer": "chicken", "hint": "synonyms for chicken", "clues": ["yellow-bellied", "yellow", "white-livered", "chickenhearted", "lily-livered", "chicken"]}, {"answer": "chickenhearted", "hint": "synonyms for chickenhearted", "clues": ["yellow-bellied", "yellow", "chicken", "white-livered", "lily-livered", "chickenhearted"]}, {"answer": "chief", "hint": "synonyms for chief", "clues": ["master", "primary", "main", "principal", "chief"]}, {"answer": "childlike", "hint": "synonyms for childlike", "clues": ["childly", "wide-eyed", "round-eyed", "dewy-eyed", "simple", "childlike"]}, {"answer": "chilling", "hint": "synonyms for chilling", "clues": ["scarey", "shivery", "shuddery", "chilling"]}, {"answer": "chintzy", "hint": "synonyms for chintzy", "clues": ["bum", "tinny", "punk", "cheap", "chinchy", "sleazy", "cheesy", "crummy", "chintzy"]}, {"answer": "chock-full", "hint": "synonyms for chock-full", "clues": ["choke-full", "chockful", "chockablock", "cram full", "chuck-full"]}, {"answer": "chockablock", "hint": "synonyms for chockablock", "clues": ["choke-full", "chockful", "cram full", "chuck-full", "chockablock"]}, {"answer": "chockful", "hint": "synonyms for chockful", "clues": ["choke-full", "chockablock", "cram full", "chuck-full", "chockful"]}, {"answer": "choice", "hint": "synonyms for choice", "clues": ["prime", "quality", "select", "prize", "choice"]}, {"answer": "choke-full", "hint": "synonyms for choke-full", "clues": ["chockful", "chockablock", "cram full", "chuck-full", "choke-full"]}, {"answer": "choleric", "hint": "synonyms for choleric", "clues": ["short-tempered", "irascible", "hotheaded", "quick-tempered", "choleric"]}, {"answer": "chuck-full", "hint": "synonyms for chuck-full", "clues": ["choke-full", "chockful", "chockablock", "cram full", "chuck-full"]}, {"answer": "chummy", "hint": "synonyms for chummy", "clues": ["thick", "pally", "buddy-buddy", "matey", "palsy-walsy", "chummy"]}, {"answer": "chunky", "hint": "synonyms for chunky", "clues": ["low-set", "dumpy", "stumpy", "squatty", "lumpy", "squat", "chunky"]}, {"answer": "churning", "hint": "synonyms for churning", "clues": ["turbulent", "roiling", "roily", "roiled", "churned-up", "churning"]}, {"answer": "circinate", "hint": "synonyms for circinate", "clues": ["annular", "ring-shaped", "ringed", "doughnut-shaped", "annulate", "circinate"]}, {"answer": "cissy", "hint": "synonyms for cissy", "clues": ["effeminate", "sissified", "sissy", "epicene", "emasculate", "sissyish", "cissy"]}, {"answer": "civilised", "hint": "synonyms for civilised", "clues": ["cultivated", "polite", "civilized", "genteel", "cultured"]}, {"answer": "civilized", "hint": "synonyms for civilized", "clues": ["cultivated", "polite", "civilised", "genteel", "cultured"]}, {"answer": "clamant", "hint": "synonyms for clamant", "clues": ["strident", "crying", "instant", "vociferous", "blatant", "exigent", "clamorous", "insistent", "clamant"]}, {"answer": "clamorous", "hint": "synonyms for clamorous", "clues": ["clamant", "vociferous", "blatant", "strident", "clamorous"]}, {"answer": "clandestine", "hint": "synonyms for clandestine", "clues": ["hush-hush", "undercover", "hole-and-corner", "underground", "surreptitious", "cloak-and-dagger", "hugger-mugger", "secret", "clandestine"]}, {"answer": "clannish", "hint": "synonyms for clannish", "clues": ["snobbish", "cliquish", "clubby", "snobby", "clannish"]}, {"answer": "classic", "hint": "synonyms for classic", "clues": ["Graeco-Roman", "definitive", "classical", "authoritative", "Hellenic"]}, {"answer": "classical", "hint": "synonyms for classical", "clues": ["Graeco-Roman", "definitive", "classic", "authoritative", "Hellenic"]}, {"answer": "clean", "hint": "synonyms for clean", "clues": ["unobjectionable", "light", "fresh", "fair", "sportsmanlike", "sporty", "blank", "uncontaminating", "unclouded", "white", "uninfected", "clean-living", "neat", "sporting", "clear", "clean"]}, {"answer": "clean-cut", "hint": "synonyms for clean-cut", "clues": ["clear-cut", "trim", "trig", "clear"]}, {"answer": "clear", "hint": "synonyms for clear", "clues": ["exculpated", "well-defined", "light", "readable", "open", "exonerated", "percipient", "clean-cut", "unmortgaged", "unclouded", "clean", "decipherable", "vindicated", "cleared", "absolved", "clear"]}, {"answer": "clear-cut", "hint": "synonyms for clear-cut", "clues": ["trenchant", "clean-cut", "distinct", "clear"]}, {"answer": "cleared", "hint": "synonyms for cleared", "clues": ["exculpated", "exonerated", "vindicated", "absolved", "clear", "cleared"]}, {"answer": "clever", "hint": "synonyms for clever", "clues": ["apt", "cagy", "ingenious", "canny", "cunning", "clever"]}, {"answer": "cliquish", "hint": "synonyms for cliquish", "clues": ["snobbish", "clannish", "clubby", "snobby", "cliquish"]}, {"answer": "cloak-and-dagger", "hint": "synonyms for cloak-and-dagger", "clues": ["hush-hush", "undercover", "hole-and-corner", "underground", "clandestine", "surreptitious", "hugger-mugger", "secret", "cloak-and-dagger"]}, {"answer": "cloaked", "hint": "synonyms for cloaked", "clues": ["mantled", "draped", "disguised", "wrapped", "masked", "clothed", "cloaked"]}, {"answer": "cloistered", "hint": "synonyms for cloistered", "clues": ["reclusive", "secluded", "monastical", "cloistral", "sequestered", "conventual", "cloistered"]}, {"answer": "cloistral", "hint": "synonyms for cloistral", "clues": ["monastic", "cloistered", "conventual", "cloistral"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["tightlipped", "close-fitting", "cheeseparing", "tight", "near", "nigh", "penny-pinching", "unaired", "secretive", "skinny", "stuffy", "snug", "closelipped", "confining", "airless", "closemouthed", "faithful", "close"]}, {"answer": "close_at_hand", "hint": "synonyms for close at hand", "clues": ["at hand", "imminent", "impending", "impendent", "close at hand"]}, {"answer": "closed", "hint": "synonyms for closed", "clues": ["closed in", "shut", "unsympathetic", "unopen", "closed"]}, {"answer": "closelipped", "hint": "synonyms for closelipped", "clues": ["tightlipped", "closemouthed", "secretive", "close", "closelipped"]}, {"answer": "closemouthed", "hint": "synonyms for closemouthed", "clues": ["tightlipped", "closelipped", "secretive", "close", "closemouthed"]}, {"answer": "clothed", "hint": "synonyms for clothed", "clues": ["mantled", "draped", "cloaked", "wrapped", "clad", "clothed"]}, {"answer": "clouded", "hint": "synonyms for clouded", "clues": ["sunless", "overcast", "blurred", "cloud-covered", "clouded"]}, {"answer": "cloudy", "hint": "synonyms for cloudy", "clues": ["turbid", "muddy", "murky", "nebulose", "mirky", "cloudy"]}, {"answer": "clubby", "hint": "synonyms for clubby", "clues": ["clannish", "snobby", "snobbish", "clubbish", "cliquish", "clubby"]}, {"answer": "clumsy", "hint": "synonyms for clumsy", "clues": ["gawky", "unwieldy", "ungainly", "clunky", "fumbling", "inapt", "incompetent", "cumbersome", "bunglesome", "ill-chosen", "awkward", "bungling", "inept", "clumsy"]}, {"answer": "clunky", "hint": "synonyms for clunky", "clues": ["gawky", "unwieldy", "clumsy", "ungainly", "clunky"]}, {"answer": "co-occurrent", "hint": "synonyms for co-occurrent", "clues": ["coinciding", "simultaneous", "concurrent", "coincident", "cooccurring", "co-occurrent"]}, {"answer": "co-ordinated", "hint": "synonyms for co-ordinated", "clues": ["unified", "interconnected", "matching", "coordinated"]}, {"answer": "coagulated", "hint": "synonyms for coagulated", "clues": ["curdled", "grumose", "solidified", "coagulate"]}, {"answer": "coal-black", "hint": "synonyms for coal-black", "clues": ["sooty", "pitchy", "jet", "jet-black", "coal-black"]}, {"answer": "coalesced", "hint": "synonyms for coalesced", "clues": ["amalgamated", "consolidated", "fused", "coalesced"]}, {"answer": "coarse", "hint": "synonyms for coarse", "clues": ["rough-cut", "vulgar", "harsh", "common", "uncouth", "coarse"]}, {"answer": "coarse-grained", "hint": "synonyms for coarse-grained", "clues": ["large-grained", "mealy", "granulose", "grainy", "granular", "farinaceous", "gritty", "coarse-grained"]}, {"answer": "cobwebby", "hint": "synonyms for cobwebby", "clues": ["sheer", "filmy", "vapourous", "gossamer", "gauzy", "gauze-like", "diaphanous", "see-through", "transparent", "cobwebby"]}, {"answer": "cock-a-hoop", "hint": "synonyms for cock-a-hoop", "clues": ["self-aggrandizing", "boastful", "braggy", "big", "crowing", "braggart", "bragging", "cock-a-hoop"]}, {"answer": "cockamamie", "hint": "synonyms for cockamamie", "clues": ["wacky", "cockamamy", "goofy", "silly", "sappy", "zany", "cockamamie"]}, {"answer": "cockamamy", "hint": "synonyms for cockamamy", "clues": ["wacky", "goofy", "silly", "cockamamie", "sappy", "zany", "cockamamy"]}, {"answer": "cockeyed", "hint": "synonyms for cockeyed", "clues": ["pie-eyed", "preposterous", "squiffy", "blind drunk", "pissed", "absurd", "soused", "sozzled", "besotted", "lopsided", "blotto", "nonsensical", "askew", "awry", "wet", "laughable", "plastered", "wonky", "loaded", "tight", "soaked", "fuddled", "slopped", "ludicrous", "stiff", "skew-whiff", "sloshed", "derisory", "pixilated", "idiotic", "ridiculous", "smashed", "crocked", "cockeyed"]}, {"answer": "cognate", "hint": "synonyms for cognate", "clues": ["blood-related", "connate", "akin", "consanguine"]}, {"answer": "coherent", "hint": "synonyms for coherent", "clues": ["lucid", "logical", "consistent", "ordered", "tenacious", "coherent"]}, {"answer": "coiling", "hint": "synonyms for coiling", "clues": ["helical", "volute", "turbinate", "spiraling", "whorled", "coiling"]}, {"answer": "coincident", "hint": "synonyms for coincident", "clues": ["coinciding", "simultaneous", "concurrent", "co-occurrent", "cooccurring", "coincidental"]}, {"answer": "coincidental", "hint": "synonyms for coincidental", "clues": ["coinciding", "simultaneous", "concurrent", "coincident", "co-occurrent", "cooccurring"]}, {"answer": "coinciding", "hint": "synonyms for coinciding", "clues": ["simultaneous", "concurrent", "coincident", "co-occurrent", "cooccurring", "coinciding"]}, {"answer": "cold", "hint": "synonyms for cold", "clues": ["stale", "cold-blooded", "moth-eaten", "dusty", "inhuman", "insensate", "frigid", "cold"]}, {"answer": "collateral", "hint": "synonyms for collateral", "clues": ["indirect", "validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "validatory", "confirming", "collateral"]}, {"answer": "collected", "hint": "synonyms for collected", "clues": ["self-contained", "self-collected", "self-possessed", "poised", "equanimous", "gathered", "collected"]}, {"answer": "colored", "hint": "synonyms for colored", "clues": ["coloured", "dark", "biased", "dyed", "slanted", "dark-skinned", "colorful", "non-white", "one-sided", "bleached"]}, {"answer": "coloured", "hint": "synonyms for coloured", "clues": ["dark", "biased", "slanted", "dark-skinned", "non-white", "colored", "colorful", "dyed", "one-sided", "bleached"]}, {"answer": "coltish", "hint": "synonyms for coltish", "clues": ["frolicky", "sportive", "rollicking", "frolicsome", "coltish"]}, {"answer": "combative", "hint": "synonyms for combative", "clues": ["disputatious", "battleful", "disputative", "litigious", "contentious", "bellicose", "agonistical", "combative"]}, {"answer": "combinatory", "hint": "synonyms for combinatory", "clues": ["combinatorial", "combinable", "combinative", "combinational", "combinatory"]}, {"answer": "comely", "hint": "synonyms for comely", "clues": ["decorous", "sightly", "fair", "comme il faut", "becoming", "decent", "bonnie", "bonny", "seemly", "comely"]}, {"answer": "comfortable", "hint": "synonyms for comfortable", "clues": ["well-heeled", "well-off", "easy", "well-to-do", "prosperous", "comfy", "well-situated", "well-fixed", "comfortable"]}, {"answer": "comforting", "hint": "synonyms for comforting", "clues": ["satisfying", "cheering", "consoling", "consolatory", "comforting"]}, {"answer": "comic", "hint": "synonyms for comic", "clues": ["comical", "mirthful", "risible", "amusing", "funny", "laughable", "comic"]}, {"answer": "comical", "hint": "synonyms for comical", "clues": ["mirthful", "risible", "amusing", "comic", "funny", "laughable", "comical"]}, {"answer": "comme_il_faut", "hint": "synonyms for comme il faut", "clues": ["becoming", "decorous", "decent", "comely", "seemly", "comme il faut"]}, {"answer": "common", "hint": "synonyms for common", "clues": ["vernacular", "usual", "unwashed", "mutual", "coarse", "rough-cut", "plebeian", "vulgar", "uncouth", "common"]}, {"answer": "commonplace", "hint": "synonyms for commonplace", "clues": ["hackneyed", "shopworn", "old-hat", "unglamorous", "timeworn", "tired", "humdrum", "trite", "well-worn", "stock", "prosaic", "banal", "threadbare", "commonplace"]}, {"answer": "communicable", "hint": "synonyms for communicable", "clues": ["transmissible", "catching", "contagious", "contractable", "transmittable", "communicable"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["thick", "heavyset", "compendious", "summary", "stocky", "succinct", "thickset", "compact"]}, {"answer": "compensable", "hint": "synonyms for compensable", "clues": ["paying", "stipendiary", "salaried", "remunerative", "compensable"]}, {"answer": "competitive", "hint": "synonyms for competitive", "clues": ["militant", "competitory", "private-enterprise", "free-enterprise", "competitive"]}, {"answer": "complete", "hint": "synonyms for complete", "clues": ["accomplished", "consummate", "double-dyed", "over", "gross", "sodding", "unadulterated", "thoroughgoing", "concluded", "utter", "pure", "all over", "terminated", "ended", "perfect", "arrant", "staring", "everlasting", "stark", "complete"]}, {"answer": "complimentary", "hint": "synonyms for complimentary", "clues": ["gratis", "costless", "gratuitous", "free", "complimentary"]}, {"answer": "conceited", "hint": "synonyms for conceited", "clues": ["egotistical", "vain", "swollen", "self-conceited", "swollen-headed", "conceited"]}, {"answer": "concluded", "hint": "synonyms for concluded", "clues": ["terminated", "complete", "ended", "over", "all over", "concluded"]}, {"answer": "concomitant", "hint": "synonyms for concomitant", "clues": ["incidental", "consequent", "sequent", "ensuant", "accompanying", "attendant", "resultant", "concomitant"]}, {"answer": "concordant", "hint": "synonyms for concordant", "clues": ["consonant", "concurring", "conformable", "accordant", "agreeable", "concordant"]}, {"answer": "concurrent", "hint": "synonyms for concurrent", "clues": ["coinciding", "simultaneous", "coincident", "co-occurrent", "cooccurring", "concurrent"]}, {"answer": "condemnable", "hint": "synonyms for condemnable", "clues": ["deplorable", "reprehensible", "criminal", "vicious", "condemnable"]}, {"answer": "conducive", "hint": "synonyms for conducive", "clues": ["tributary", "contributory", "contributive", "contributing", "conducive"]}, {"answer": "confident", "hint": "synonyms for confident", "clues": ["convinced", "sure-footed", "positive", "confident"]}, {"answer": "confining", "hint": "synonyms for confining", "clues": ["constrictive", "limiting", "close", "restricting", "constraining", "confining"]}, {"answer": "confirmative", "hint": "synonyms for confirmative", "clues": ["validating", "corroboratory", "verifying", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming", "confirmative"]}, {"answer": "confirmatory", "hint": "synonyms for confirmatory", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "verificatory", "corroborative", "collateral", "validatory", "confirming", "confirmatory"]}, {"answer": "confirming", "hint": "synonyms for confirming", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "positive", "corroborative", "collateral", "validatory", "confirming"]}, {"answer": "conformable", "hint": "synonyms for conformable", "clues": ["consonant", "amenable", "accordant", "concordant", "agreeable", "conformable"]}, {"answer": "confounded", "hint": "synonyms for confounded", "clues": ["bewildered", "confused", "bemused", "at sea", "lost", "mazed", "mixed-up", "befuddled", "baffled", "confounded"]}, {"answer": "confused", "hint": "synonyms for confused", "clues": ["disoriented", "unconnected", "bemused", "at sea", "disordered", "garbled", "scattered", "disconnected", "bewildered", "upset", "lost", "mazed", "mixed-up", "illogical", "befuddled", "confounded", "baffled", "broken", "confused"]}, {"answer": "conjectural", "hint": "synonyms for conjectural", "clues": ["hypothetical", "suppositional", "supposed", "supposititious", "divinatory", "conjectural"]}, {"answer": "conniving", "hint": "synonyms for conniving", "clues": ["shrewd", "scheming", "calculative", "collusive", "calculating", "conniving"]}, {"answer": "consanguine", "hint": "synonyms for consanguine", "clues": ["blood-related", "akin", "consanguineal", "cognate", "consanguineous"]}, {"answer": "consanguineal", "hint": "synonyms for consanguineal", "clues": ["blood-related", "akin", "consanguine", "cognate"]}, {"answer": "consanguineous", "hint": "synonyms for consanguineous", "clues": ["blood-related", "akin", "consanguine", "cognate"]}, {"answer": "consecrated", "hint": "synonyms for consecrated", "clues": ["consecrate", "sacred", "sanctified", "dedicated"]}, {"answer": "consecutive", "hint": "synonyms for consecutive", "clues": ["straight", "successive", "sequent", "serial", "sequential", "back-to-back", "consecutive"]}, {"answer": "consequent", "hint": "synonyms for consequent", "clues": ["incidental", "sequent", "ensuant", "resultant", "concomitant", "attendant", "accompanying", "consequent"]}, {"answer": "conservative", "hint": "synonyms for conservative", "clues": ["buttoned-down", "bourgeois", "materialistic", "cautious", "conservative"]}, {"answer": "consistent", "hint": "synonyms for consistent", "clues": ["uniform", "coherent", "reproducible", "logical", "ordered", "consistent"]}, {"answer": "consolidated", "hint": "synonyms for consolidated", "clues": ["amalgamated", "fused", "coalesced", "consolidated"]}, {"answer": "consonant", "hint": "synonyms for consonant", "clues": ["conformable", "harmonical", "accordant", "harmonised", "concordant", "agreeable", "consonant"]}, {"answer": "constant", "hint": "synonyms for constant", "clues": ["changeless", "unvarying", "ceaseless", "unremitting", "incessant", "never-ending", "perpetual", "invariant", "unceasing", "constant"]}, {"answer": "constitutional", "hint": "synonyms for constitutional", "clues": ["organic", "constituent", "inbuilt", "built-in", "inherent", "constitutive", "integral", "constitutional"]}, {"answer": "constraining", "hint": "synonyms for constraining", "clues": ["constrictive", "restricting", "limiting", "confining", "constraining"]}, {"answer": "constrictive", "hint": "synonyms for constrictive", "clues": ["limiting", "confining", "narrowing", "restricting", "constraining", "constricting", "constrictive"]}, {"answer": "consummate", "hint": "synonyms for consummate", "clues": ["double-dyed", "virtuoso", "masterly", "gross", "sodding", "unadulterated", "complete", "thoroughgoing", "utter", "pure", "masterful", "perfect", "arrant", "staring", "everlasting", "stark", "consummate"]}, {"answer": "contagious", "hint": "synonyms for contagious", "clues": ["transmissible", "communicable", "catching", "contractable", "transmittable", "contagious"]}, {"answer": "contemplative", "hint": "synonyms for contemplative", "clues": ["broody", "brooding", "ruminative", "musing", "reflective", "pondering", "meditative", "pensive", "contemplative"]}, {"answer": "contentious", "hint": "synonyms for contentious", "clues": ["disputatious", "litigious", "disputative", "combative", "contentious"]}, {"answer": "conterminous", "hint": "synonyms for conterminous", "clues": ["coextensive", "adjacent", "neighboring", "coterminous", "contiguous"]}, {"answer": "contiguous", "hint": "synonyms for contiguous", "clues": ["immediate", "conterminous", "adjacent", "neighboring", "contiguous"]}, {"answer": "contingent", "hint": "synonyms for contingent", "clues": ["dependant on", "contingent upon", "depending on", "dependent upon", "contingent"]}, {"answer": "contingent_on", "hint": "synonyms for contingent on", "clues": ["dependant on", "contingent upon", "depending on", "dependent upon", "contingent"]}, {"answer": "contingent_upon", "hint": "synonyms for contingent upon", "clues": ["dependant on", "depending on", "contingent", "dependent upon", "contingent upon"]}, {"answer": "continuant", "hint": "synonyms for continuant", "clues": ["sibilant", "fricative", "strident", "spirant", "continuant"]}, {"answer": "contraband", "hint": "synonyms for contraband", "clues": ["bootleg", "black", "smuggled", "black-market", "contraband"]}, {"answer": "contractable", "hint": "synonyms for contractable", "clues": ["transmissible", "communicable", "catching", "contagious", "transmittable", "contractable"]}, {"answer": "contradictory", "hint": "synonyms for contradictory", "clues": ["at odds", "self-contradictory", "confounding", "mutually exclusive", "conflicting", "contradictory"]}, {"answer": "contrary", "hint": "synonyms for contrary", "clues": ["wayward", "adverse", "perverse", "obstinate", "contrary"]}, {"answer": "contributing", "hint": "synonyms for contributing", "clues": ["tributary", "contributory", "contributive", "conducive", "contributing"]}, {"answer": "contributive", "hint": "synonyms for contributive", "clues": ["tributary", "contributing", "contributory", "conducive", "contributive"]}, {"answer": "contributory", "hint": "synonyms for contributory", "clues": ["tributary", "contributing", "contributive", "conducive", "contributory"]}, {"answer": "conventional", "hint": "synonyms for conventional", "clues": ["ceremonious", "formal", "established", "schematic", "conventional"]}, {"answer": "conventual", "hint": "synonyms for conventual", "clues": ["monastic", "cloistered", "cloistral", "conventual"]}, {"answer": "convertible", "hint": "synonyms for convertible", "clues": ["translatable", "transformable", "transmutable", "exchangeable", "convertible"]}, {"answer": "conveyable", "hint": "synonyms for conveyable", "clues": ["transferrable", "negotiable", "assignable", "conveyable"]}, {"answer": "convoluted", "hint": "synonyms for convoluted", "clues": ["tortuous", "Byzantine", "knotty", "convolute", "involved", "tangled"]}, {"answer": "cooccurring", "hint": "synonyms for cooccurring", "clues": ["coinciding", "simultaneous", "concurrent", "coincident", "co-occurrent", "cooccurring"]}, {"answer": "cooperative", "hint": "synonyms for cooperative", "clues": ["conjunct", "accommodative", "concerted", "conjunctive", "cooperative"]}, {"answer": "coordinated", "hint": "synonyms for coordinated", "clues": ["co-ordinated", "unified", "interconnected", "matching"]}, {"answer": "copious", "hint": "synonyms for copious", "clues": ["rich", "plentiful", "voluminous", "ample", "plenteous", "copious"]}, {"answer": "corking", "hint": "synonyms for corking", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "corking"]}, {"answer": "corporal", "hint": "synonyms for corporal", "clues": ["bodily", "embodied", "incarnate", "corporate", "somatic", "corporeal"]}, {"answer": "corporate", "hint": "synonyms for corporate", "clues": ["collective", "incorporated", "embodied", "incarnate", "corporal"]}, {"answer": "corporeal", "hint": "synonyms for corporeal", "clues": ["bodily", "corporal", "somatic", "material"]}, {"answer": "corroborative", "hint": "synonyms for corroborative", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "collateral", "validatory", "confirming", "corroborative"]}, {"answer": "corroboratory", "hint": "synonyms for corroboratory", "clues": ["validating", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming", "corroboratory"]}, {"answer": "corrosive", "hint": "synonyms for corrosive", "clues": ["erosive", "caustic", "mordant", "vitriolic", "corrosive"]}, {"answer": "corruptible", "hint": "synonyms for corruptible", "clues": ["venal", "dishonest", "bribable", "purchasable", "corruptible"]}, {"answer": "coruscant", "hint": "synonyms for coruscant", "clues": ["sparkly", "glittering", "glittery", "scintillant", "fulgid", "glinting", "scintillating", "coruscant"]}, {"answer": "cosmopolitan", "hint": "synonyms for cosmopolitan", "clues": ["universal", "widely distributed", "general", "oecumenical", "worldwide", "cosmopolitan"]}, {"answer": "costless", "hint": "synonyms for costless", "clues": ["gratis", "gratuitous", "complimentary", "free", "costless"]}, {"answer": "costly", "hint": "synonyms for costly", "clues": ["pricy", "high-priced", "dear", "dearly-won", "costly"]}, {"answer": "countless", "hint": "synonyms for countless", "clues": ["unnumberable", "numberless", "multitudinous", "uncounted", "infinite", "unnumbered", "innumerous", "myriad", "countless"]}, {"answer": "coupled", "hint": "synonyms for coupled", "clues": ["joined", "conjugate", "linked", "coupled"]}, {"answer": "covetous", "hint": "synonyms for covetous", "clues": ["grabby", "avaricious", "envious", "grasping", "prehensile", "jealous", "greedy", "covetous"]}, {"answer": "cozy", "hint": "synonyms for cozy", "clues": ["cosy", "snug", "informal", "intimate", "cozy"]}, {"answer": "crabbed", "hint": "synonyms for crabbed", "clues": ["grouchy", "crabby", "grumpy", "ill-tempered", "cross", "fussy", "bad-tempered", "crabbed"]}, {"answer": "crabby", "hint": "synonyms for crabby", "clues": ["grouchy", "crabbed", "grumpy", "ill-tempered", "cross", "fussy", "bad-tempered", "crabby"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["topnotch", "first-rate", "tops", "tiptop", "ace", "A-one", "super", "crack"]}, {"answer": "cracked", "hint": "synonyms for cracked", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "chapped", "bats", "alligatored", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "roughened", "daft", "nutty", "buggy", "crackers", "dotty", "cracked"]}, {"answer": "crackers", "hint": "synonyms for crackers", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "dotty", "crackers"]}, {"answer": "cracking", "hint": "synonyms for cracking", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "bang-up", "swell", "great", "cracking"]}, {"answer": "crafty", "hint": "synonyms for crafty", "clues": ["guileful", "wily", "dodgy", "tricksy", "foxy", "sly", "slick", "knavish", "cunning", "crafty"]}, {"answer": "cram_full", "hint": "synonyms for cram full", "clues": ["choke-full", "chockful", "chockablock", "chuck-full", "cram full"]}, {"answer": "cranky", "hint": "synonyms for cranky", "clues": ["irritable", "crank", "tender", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "pettish", "tippy", "peevish", "peckish", "petulant"]}, {"answer": "crappy", "hint": "synonyms for crappy", "clues": ["icky", "stinky", "rotten", "stinking", "shitty", "lousy", "crappy"]}, {"answer": "crashing", "hint": "synonyms for crashing", "clues": ["blinking", "bally", "blooming", "flaming", "bloody", "fucking", "crashing"]}, {"answer": "crazy", "hint": "synonyms for crazy", "clues": ["screwball", "brainsick", "unhinged", "demented", "disturbed", "wild", "softheaded", "dotty", "mad", "gaga", "sick", "half-baked", "unbalanced", "crazy"]}, {"answer": "creaky", "hint": "synonyms for creaky", "clues": ["flea-bitten", "run-down", "decrepit", "arthritic", "derelict", "rheumy", "rheumatic", "rheumatoid", "screaky", "woebegone"]}, {"answer": "criminal", "hint": "synonyms for criminal", "clues": ["deplorable", "reprehensible", "felonious", "vicious", "condemnable", "criminal"]}, {"answer": "crimson", "hint": "synonyms for crimson", "clues": ["violent", "cherry-red", "blood-red", "ruddy", "cerise", "ruby", "flushed", "red", "ruby-red", "scarlet", "red-faced", "reddened", "reddish", "carmine", "cherry", "crimson"]}, {"answer": "cringing", "hint": "synonyms for cringing", "clues": ["groveling", "wormlike", "wormy", "cringing"]}, {"answer": "crinkled", "hint": "synonyms for crinkled", "clues": ["wavelike", "crinkly", "wavy", "rippled", "crinkled"]}, {"answer": "crinkly", "hint": "synonyms for crinkly", "clues": ["wavelike", "crinkled", "wavy", "rippled", "crinkly"]}, {"answer": "crippled", "hint": "synonyms for crippled", "clues": ["halting", "gimpy", "game", "lame", "crippled"]}, {"answer": "crisp", "hint": "synonyms for crisp", "clues": ["frosty", "frizzly", "curt", "kinky", "crispy", "snappy", "nipping", "nippy", "sharp", "terse", "laconic"]}, {"answer": "crocked", "hint": "synonyms for crocked", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "wet", "plastered", "crocked"]}, {"answer": "crookback", "hint": "synonyms for crookback", "clues": ["hunchbacked", "crookbacked", "humpbacked", "humped", "kyphotic", "gibbous"]}, {"answer": "crookbacked", "hint": "synonyms for crookbacked", "clues": ["hunchbacked", "humpbacked", "humped", "kyphotic", "gibbous", "crookback"]}, {"answer": "crooked", "hint": "synonyms for crooked", "clues": ["asymmetrical", "hunched", "stooped", "round-backed", "corrupt", "round-shouldered", "stooping", "crooked"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["ill-tempered", "grouchy", "fussy", "transversal", "crabby", "crabbed", "thwartwise", "grumpy", "bad-tempered", "cross"]}, {"answer": "crowing", "hint": "synonyms for crowing", "clues": ["self-aggrandizing", "cock-a-hoop", "boastful", "braggy", "big", "braggart", "bragging", "crowing"]}, {"answer": "crucial", "hint": "synonyms for crucial", "clues": ["all-important", "important", "of the essence", "essential", "crucial"]}, {"answer": "cruddy", "hint": "synonyms for cruddy", "clues": ["smutty", "foul", "nasty", "filthy", "cruddy"]}, {"answer": "crude", "hint": "synonyms for crude", "clues": ["unprocessed", "stark", "rude", "gross", "unrefined", "earthy", "raw", "vulgar", "blunt", "primitive", "rough"]}, {"answer": "cruel", "hint": "synonyms for cruel", "clues": ["roughshod", "fell", "brutal", "barbarous", "vicious", "savage", "cruel"]}, {"answer": "crummy", "hint": "synonyms for crummy", "clues": ["cheesy", "bum", "tinny", "punk", "cheap", "chintzy", "sleazy", "crummy"]}, {"answer": "crushed", "hint": "synonyms for crushed", "clues": ["low", "humbled", "humiliated", "broken", "crushed"]}, {"answer": "crusty", "hint": "synonyms for crusty", "clues": ["curmudgeonly", "ill-humoured", "crusted", "gruff", "crustlike", "crusty"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["rank", "instant", "glaring", "gross", "flagrant", "clamant", "exigent", "insistent", "egregious", "crying"]}, {"answer": "cryptic", "hint": "synonyms for cryptic", "clues": ["qabalistic", "mysterious", "sibylline", "mystifying", "inscrutable", "deep", "cryptical"]}, {"answer": "cryptical", "hint": "synonyms for cryptical", "clues": ["qabalistic", "mysterious", "sibylline", "cryptic", "mystifying", "inscrutable", "deep"]}, {"answer": "crystal_clear", "hint": "synonyms for crystal clear", "clues": ["perspicuous", "lucid", "limpid", "crystalline", "luculent", "pellucid", "transparent", "crystal clear"]}, {"answer": "crystalline", "hint": "synonyms for crystalline", "clues": ["crystal clear", "lucid", "limpid", "pellucid", "transparent", "crystalline"]}, {"answer": "cube-shaped", "hint": "synonyms for cube-shaped", "clues": ["cubelike", "cuboidal", "cubical", "cubiform", "cube-shaped"]}, {"answer": "cubelike", "hint": "synonyms for cubelike", "clues": ["cuboidal", "cubical", "cube-shaped", "cubiform", "cubelike"]}, {"answer": "cubical", "hint": "synonyms for cubical", "clues": ["cubelike", "cuboidal", "cube-shaped", "cubiform", "cubical"]}, {"answer": "cubiform", "hint": "synonyms for cubiform", "clues": ["cubelike", "cuboidal", "cubical", "cube-shaped", "cubiform"]}, {"answer": "cuboid", "hint": "synonyms for cuboid", "clues": ["cubelike", "cuboidal", "cubical", "cube-shaped", "cubiform"]}, {"answer": "cuboidal", "hint": "synonyms for cuboidal", "clues": ["cubelike", "cubical", "cuboid", "cube-shaped", "cubiform"]}, {"answer": "culpable", "hint": "synonyms for culpable", "clues": ["blameful", "censurable", "blameworthy", "blamable", "culpable"]}, {"answer": "cultivated", "hint": "synonyms for cultivated", "clues": ["polite", "civilized", "genteel", "cultured", "cultivated"]}, {"answer": "cultured", "hint": "synonyms for cultured", "clues": ["cultivated", "polite", "civilized", "genteel", "cultured"]}, {"answer": "cumbersome", "hint": "synonyms for cumbersome", "clues": ["cumbrous", "ill-chosen", "awkward", "clumsy", "inapt", "inept", "cumbersome"]}, {"answer": "cunning", "hint": "synonyms for cunning", "clues": ["guileful", "cute", "wily", "dodgy", "ingenious", "tricksy", "foxy", "sly", "slick", "knavish", "crafty", "clever", "cunning"]}, {"answer": "curative", "hint": "synonyms for curative", "clues": ["healing", "therapeutic", "remedial", "sanative", "alterative", "curative"]}, {"answer": "cured", "hint": "synonyms for cured", "clues": ["vulcanized", "aged", "healed", "corned", "recovered", "cured"]}, {"answer": "curious", "hint": "synonyms for curious", "clues": ["rum", "odd", "peculiar", "singular", "rummy", "queer", "funny", "curious"]}, {"answer": "curmudgeonly", "hint": "synonyms for curmudgeonly", "clues": ["ill-humoured", "crusty", "gruff", "curmudgeonly"]}, {"answer": "cursed", "hint": "synonyms for cursed", "clues": ["unredeemed", "curst", "unsaved", "damned", "doomed", "cursed"]}, {"answer": "curt", "hint": "synonyms for curt", "clues": ["crisp", "short", "brusk", "brusque", "terse", "laconic", "curt"]}, {"answer": "curvaceous", "hint": "synonyms for curvaceous", "clues": ["sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie", "curvaceous"]}, {"answer": "curvy", "hint": "synonyms for curvy", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "stacked", "curvey", "busty", "sonsie"]}, {"answer": "cuspated", "hint": "synonyms for cuspated", "clues": ["cuspidated", "cusped", "cuspidal", "cuspate"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["weakened", "shortened", "trimmed", "mown", "slashed", "gelded", "emasculated", "thinned", "cut"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["stinging", "knifelike", "piercing", "lancinate", "raw", "lancinating", "keen", "edged", "bleak", "stabbing", "cutting"]}, {"answer": "daft", "hint": "synonyms for daft", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "nutty", "buggy", "cracked", "crackers", "dotty", "daft"]}, {"answer": "daily", "hint": "synonyms for daily", "clues": ["casual", "day-to-day", "everyday", "day-by-day", "day-after-day", "daily"]}, {"answer": "dainty", "hint": "synonyms for dainty", "clues": ["twee", "nice", "prim", "squeamish", "niminy-piminy", "prissy", "overnice", "exquisite", "mincing", "dainty"]}, {"answer": "damaging", "hint": "synonyms for damaging", "clues": ["detrimental", "negative", "prejudicious", "prejudicial", "damaging"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["blessed", "darned", "goddamn", "damned", "infernal", "blasted", "blamed", "deuced", "damn"]}, {"answer": "damned", "hint": "synonyms for damned", "clues": ["blessed", "darned", "cursed", "goddamn", "unsaved", "damn", "infernal", "blasted", "blamed", "unredeemed", "deuced", "doomed", "damned"]}, {"answer": "dandy", "hint": "synonyms for dandy", "clues": ["slap-up", "nifty", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "dandy"]}, {"answer": "dangerous", "hint": "synonyms for dangerous", "clues": ["unsafe", "grievous", "grave", "life-threatening", "severe", "serious", "dangerous"]}, {"answer": "dapper", "hint": "synonyms for dapper", "clues": ["natty", "jaunty", "dashing", "snappy", "rakish", "spruce", "spiffy", "raffish", "dapper"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["venturous", "venturesome", "avant-garde", "audacious", "daring"]}, {"answer": "dark", "hint": "synonyms for dark", "clues": ["coloured", "drab", "dour", "saturnine", "benighted", "sinister", "dark-skinned", "glum", "blue", "grim", "non-white", "dingy", "dismal", "obscure", "black", "moody", "gloomy", "glowering", "sour", "dreary", "morose", "sullen", "disconsolate", "sorry", "dark"]}, {"answer": "dark-skinned", "hint": "synonyms for dark-skinned", "clues": ["swarthy", "coloured", "dusky", "dark", "swart", "non-white", "dark-skinned"]}, {"answer": "darned", "hint": "synonyms for darned", "clues": ["blessed", "goddamn", "damned", "damn", "infernal", "blasted", "blamed", "deuced", "darned"]}, {"answer": "dashing", "hint": "synonyms for dashing", "clues": ["gallant", "natty", "jaunty", "dapper", "snappy", "rakish", "spiffy", "spruce", "raffish", "dashing"]}, {"answer": "dateless", "hint": "synonyms for dateless", "clues": ["sempiternal", "undated", "endless", "timeless", "dateless"]}, {"answer": "dauntless", "hint": "synonyms for dauntless", "clues": ["intrepid", "unfearing", "fearless", "hardy", "brave", "audacious", "dauntless"]}, {"answer": "dazed", "hint": "synonyms for dazed", "clues": ["stupid", "foggy", "logy", "stupefied", "stuporous", "groggy", "stunned", "dazed"]}, {"answer": "dazzling", "hint": "synonyms for dazzling", "clues": ["fulgurant", "fulgurous", "blazing", "glaring", "fulgent", "blinding", "eye-popping", "glary", "dazzling"]}, {"answer": "dead", "hint": "synonyms for dead", "clues": ["bushed", "stagnant", "drained", "all in", "idle", "beat", "numb", "deadened", "utter", "dead"]}, {"answer": "deadening", "hint": "synonyms for deadening", "clues": ["boring", "tedious", "slow", "dull", "irksome", "wearisome", "tiresome", "ho-hum", "deadening"]}, {"answer": "deadly", "hint": "synonyms for deadly", "clues": ["venomous", "lethal", "baneful", "deathly", "pernicious", "virulent", "pestilent", "mortal", "deadly"]}, {"answer": "deadpan", "hint": "synonyms for deadpan", "clues": ["expressionless", "poker-faced", "unexpressive", "impassive", "deadpan"]}, {"answer": "dealt_out", "hint": "synonyms for dealt out", "clues": ["parceled out", "apportioned", "doled out", "meted out", "dealt out"]}, {"answer": "dear", "hint": "synonyms for dear", "clues": ["pricy", "near", "beloved", "costly", "high-priced", "devout", "good", "earnest", "heartfelt", "darling", "dear"]}, {"answer": "debased", "hint": "synonyms for debased", "clues": ["devalued", "adulterated", "corrupted", "degraded", "vitiated", "debased"]}, {"answer": "debatable", "hint": "synonyms for debatable", "clues": ["arguable", "disputable", "moot", "problematic", "debatable"]}, {"answer": "debauched", "hint": "synonyms for debauched", "clues": ["degenerate", "degraded", "libertine", "fast", "profligate", "dissolute", "riotous", "dissipated", "debauched"]}, {"answer": "debile", "hint": "synonyms for debile", "clues": ["feeble", "weak", "infirm", "decrepit", "sapless", "rickety", "debile"]}, {"answer": "debonair", "hint": "synonyms for debonair", "clues": ["jaunty", "debonaire", "suave", "chipper"]}, {"answer": "debonaire", "hint": "synonyms for debonaire", "clues": ["jaunty", "suave", "debonnaire", "chipper"]}, {"answer": "deceased", "hint": "synonyms for deceased", "clues": ["at rest", "at peace", "asleep", "gone", "departed", "deceased"]}, {"answer": "deceitful", "hint": "synonyms for deceitful", "clues": ["Janus-faced", "double-dealing", "fallacious", "double-faced", "double-tongued", "two-faced", "fraudulent", "ambidextrous", "duplicitous", "deceitful"]}, {"answer": "decent", "hint": "synonyms for decent", "clues": ["becoming", "decorous", "comely", "adequate", "nice", "comme il faut", "seemly", "enough", "decent"]}, {"answer": "declamatory", "hint": "synonyms for declamatory", "clues": ["orotund", "bombastic", "large", "tumid", "turgid", "declamatory"]}, {"answer": "decorous", "hint": "synonyms for decorous", "clues": ["becoming", "decent", "comely", "comme il faut", "seemly", "decorous"]}, {"answer": "decrepit", "hint": "synonyms for decrepit", "clues": ["feeble", "flea-bitten", "weakly", "run-down", "derelict", "rickety", "debile", "infirm", "creaky", "sapless", "woebegone", "decrepit"]}, {"answer": "deep", "hint": "synonyms for deep", "clues": ["mysterious", "cryptic", "mystifying", "bass", "inscrutable", "thick", "rich", "abstruse", "recondite", "deep"]}, {"answer": "deep-rooted", "hint": "synonyms for deep-rooted", "clues": ["planted", "ingrained", "deep-seated", "deep-rooted"]}, {"answer": "deep-seated", "hint": "synonyms for deep-seated", "clues": ["deep-rooted", "planted", "ingrained", "deep-seated"]}, {"answer": "defamatory", "hint": "synonyms for defamatory", "clues": ["denigratory", "denigrative", "slanderous", "libellous", "calumniatory", "calumnious", "denigrating", "defamatory"]}, {"answer": "defeated", "hint": "synonyms for defeated", "clues": ["frustrated", "foiled", "thwarted", "disappointed", "discomfited", "defeated"]}, {"answer": "deficient", "hint": "synonyms for deficient", "clues": ["substandard", "lacking", "wanting", "inferior", "insufficient", "deficient"]}, {"answer": "definitive", "hint": "synonyms for definitive", "clues": ["classic", "authoritative", "unequivocal", "determinate", "definitive"]}, {"answer": "deformed", "hint": "synonyms for deformed", "clues": ["misshapen", "malformed", "ill-shapen", "distorted", "deformed"]}, {"answer": "degenerate", "hint": "synonyms for degenerate", "clues": ["degraded", "libertine", "fast", "debauched", "profligate", "dissolute", "riotous", "dissipated", "degenerate"]}, {"answer": "degraded", "hint": "synonyms for degraded", "clues": ["devalued", "degenerate", "libertine", "debauched", "fast", "profligate", "debased", "dissolute", "riotous", "dissipated", "degraded"]}, {"answer": "delectable", "hint": "synonyms for delectable", "clues": ["pleasant-tasting", "toothsome", "sexually attractive", "scrumptious", "luscious", "delicious", "yummy", "delectable"]}, {"answer": "delicate", "hint": "synonyms for delicate", "clues": ["touchy", "finespun", "soft", "ticklish", "fragile", "frail", "delicate"]}, {"answer": "delicious", "hint": "synonyms for delicious", "clues": ["delectable", "pleasant-tasting", "toothsome", "delightful", "luscious", "scrumptious", "yummy", "delicious"]}, {"answer": "delighted", "hint": "synonyms for delighted", "clues": ["beguiled", "enthralled", "captivated", "entranced", "charmed", "delighted"]}, {"answer": "delinquent", "hint": "synonyms for delinquent", "clues": ["neglectful", "remiss", "derelict", "overdue", "delinquent"]}, {"answer": "delirious", "hint": "synonyms for delirious", "clues": ["mad", "frantic", "excited", "unrestrained", "hallucinating", "delirious"]}, {"answer": "deluxe", "hint": "synonyms for deluxe", "clues": ["grand", "de luxe", "princely", "luxe", "opulent", "gilded", "luxurious", "sumptuous"]}, {"answer": "demented", "hint": "synonyms for demented", "clues": ["mad", "crazy", "brainsick", "unbalanced", "disturbed", "sick", "unhinged", "demented"]}, {"answer": "demode", "hint": "synonyms for demode", "clues": ["antique", "outmoded", "old-fashioned", "ex", "passe", "old-hat", "demode"]}, {"answer": "demoniac", "hint": "synonyms for demoniac", "clues": ["demoniacal", "amuck", "amok", "berserk", "possessed"]}, {"answer": "demoniacal", "hint": "synonyms for demoniacal", "clues": ["amuck", "amok", "berserk", "demoniac", "possessed"]}, {"answer": "demonic", "hint": "synonyms for demonic", "clues": ["diabolic", "hellish", "satanic", "fiendish", "unholy", "infernal", "demonic"]}, {"answer": "dendriform", "hint": "synonyms for dendriform", "clues": ["arboreous", "arborescent", "dendroid", "arboreal", "arboriform", "arboresque", "treelike", "tree-shaped", "dendriform"]}, {"answer": "dendroid", "hint": "synonyms for dendroid", "clues": ["arboreous", "arborescent", "treelike", "arboreal", "dendroidal", "arboriform", "arboresque", "dendriform", "tree-shaped"]}, {"answer": "dendroidal", "hint": "synonyms for dendroidal", "clues": ["arboreous", "arborescent", "dendroid", "treelike", "arboreal", "arboriform", "arboresque", "dendriform", "tree-shaped"]}, {"answer": "denigrating", "hint": "synonyms for denigrating", "clues": ["denigratory", "denigrative", "slanderous", "libellous", "calumniatory", "defamatory", "calumnious", "denigrating"]}, {"answer": "denigrative", "hint": "synonyms for denigrative", "clues": ["denigratory", "slanderous", "libellous", "calumniatory", "defamatory", "calumnious", "denigrating", "denigrative"]}, {"answer": "denigratory", "hint": "synonyms for denigratory", "clues": ["denigrative", "slanderous", "libellous", "calumniatory", "defamatory", "calumnious", "denigrating", "denigratory"]}, {"answer": "dense", "hint": "synonyms for dense", "clues": ["heavy", "dim", "slow", "thick", "dull", "obtuse", "impenetrable", "dumb", "dense"]}, {"answer": "departed", "hint": "synonyms for departed", "clues": ["at rest", "at peace", "bygone", "bypast", "deceased", "foregone", "asleep", "gone", "departed"]}, {"answer": "dependable", "hint": "synonyms for dependable", "clues": ["honest", "steady-going", "secure", "safe", "rock-steady", "good", "reliable", "true", "dependable"]}, {"answer": "dependant", "hint": "synonyms for dependant", "clues": ["dependent", "strung-out", "drug-addicted", "hooked", "qualified"]}, {"answer": "dependant_on", "hint": "synonyms for dependant on", "clues": ["contingent upon", "depending on", "contingent", "dependent on", "dependant upon"]}, {"answer": "dependant_upon", "hint": "synonyms for dependant upon", "clues": ["dependant on", "contingent upon", "depending on", "contingent", "dependent upon"]}, {"answer": "dependent", "hint": "synonyms for dependent", "clues": ["strung-out", "drug-addicted", "hooked", "subordinate", "subject", "pendant", "qualified", "dependent"]}, {"answer": "dependent_on", "hint": "synonyms for dependent on", "clues": ["dependant on", "contingent upon", "depending on", "contingent", "dependent upon"]}, {"answer": "dependent_upon", "hint": "synonyms for dependent upon", "clues": ["dependant on", "contingent upon", "depending on", "contingent", "dependent upon"]}, {"answer": "depending_on", "hint": "synonyms for depending on", "clues": ["dependant on", "contingent upon", "contingent", "dependent upon", "depending on"]}, {"answer": "deplorable", "hint": "synonyms for deplorable", "clues": ["wretched", "reprehensible", "sad", "execrable", "condemnable", "woeful", "vicious", "pitiful", "distressing", "miserable", "criminal", "sorry", "lamentable", "deplorable"]}, {"answer": "deprecating", "hint": "synonyms for deprecating", "clues": ["deprecatory", "deprecative", "belittling", "slighting", "deprecating"]}, {"answer": "deprecative", "hint": "synonyms for deprecative", "clues": ["deprecatory", "belittling", "depreciative", "deprecating", "slighting"]}, {"answer": "deprecatory", "hint": "synonyms for deprecatory", "clues": ["deprecative", "depreciatory", "belittling", "deprecating", "slighting"]}, {"answer": "depreciative", "hint": "synonyms for depreciative", "clues": ["depreciating", "deprecative", "belittling", "slighting", "deprecatory"]}, {"answer": "depreciatory", "hint": "synonyms for depreciatory", "clues": ["depreciating", "belittling", "slighting", "deprecatory", "deprecative"]}, {"answer": "depressed", "hint": "synonyms for depressed", "clues": ["down", "gloomy", "low-spirited", "downcast", "dispirited", "downhearted", "grim", "blue", "down in the mouth", "low", "depressed"]}, {"answer": "derelict", "hint": "synonyms for derelict", "clues": ["delinquent", "abandoned", "flea-bitten", "run-down", "decrepit", "broken-down", "bedraggled", "tatterdemalion", "dilapidated", "tumble-down", "creaky", "neglectful", "deserted", "remiss", "woebegone", "ramshackle", "derelict"]}, {"answer": "derisive", "hint": "synonyms for derisive", "clues": ["mocking", "jeering", "taunting", "gibelike", "derisive"]}, {"answer": "derisory", "hint": "synonyms for derisory", "clues": ["preposterous", "nonsensical", "idiotic", "absurd", "cockeyed", "ridiculous", "ludicrous", "laughable", "derisory"]}, {"answer": "dermal", "hint": "synonyms for dermal", "clues": ["epidermal", "cutaneal", "cutaneous", "cuticular", "epidermic", "dermic", "dermal"]}, {"answer": "desiccated", "hint": "synonyms for desiccated", "clues": ["desiccate", "dehydrated", "dried-out", "dried", "arid"]}, {"answer": "desired", "hint": "synonyms for desired", "clues": ["coveted", "sought after", "craved", "in demand", "desired"]}, {"answer": "desolate", "hint": "synonyms for desolate", "clues": ["bare", "barren", "stark", "bleak", "desolate"]}, {"answer": "desperate", "hint": "synonyms for desperate", "clues": ["heroic", "dire", "despairing", "do-or-die", "desperate"]}, {"answer": "despicable", "hint": "synonyms for despicable", "clues": ["vile", "worthless", "ugly", "wretched", "unworthy", "slimy", "despicable"]}, {"answer": "despoiled", "hint": "synonyms for despoiled", "clues": ["sacked", "raped", "pillaged", "ravaged", "despoiled"]}, {"answer": "despotic", "hint": "synonyms for despotic", "clues": ["authoritarian", "autocratic", "tyrannic", "despotical", "dictatorial"]}, {"answer": "destitute", "hint": "synonyms for destitute", "clues": ["innocent", "poverty-stricken", "necessitous", "devoid", "impoverished", "indigent", "needy", "barren", "free", "destitute"]}, {"answer": "detached", "hint": "synonyms for detached", "clues": ["set-apart", "degage", "uncaring", "unaffectionate", "separated", "uninvolved", "isolated", "free", "detached"]}, {"answer": "determined", "hint": "synonyms for determined", "clues": ["set", "dictated", "driven", "compulsive", "determined"]}, {"answer": "detestable", "hint": "synonyms for detestable", "clues": ["obscene", "repugnant", "odious", "abominable", "repulsive", "abhorrent", "execrable", "detestable"]}, {"answer": "deuced", "hint": "synonyms for deuced", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blasted", "blamed", "deuced"]}, {"answer": "devastating", "hint": "synonyms for devastating", "clues": ["crushing", "annihilative", "withering", "annihilating", "devastating"]}, {"answer": "devil-may-care", "hint": "synonyms for devil-may-care", "clues": ["slaphappy", "rakish", "happy-go-lucky", "carefree", "harum-scarum", "freewheeling", "raffish", "devil-may-care"]}, {"answer": "devilish", "hint": "synonyms for devilish", "clues": ["diabolic", "roguish", "rascally", "mephistophelean", "devilish"]}, {"answer": "devious", "hint": "synonyms for devious", "clues": ["circuitous", "shifty", "roundabout", "oblique", "devious"]}, {"answer": "devoid", "hint": "synonyms for devoid", "clues": ["barren", "destitute", "innocent", "free", "devoid"]}, {"answer": "devout", "hint": "synonyms for devout", "clues": ["dear", "god-fearing", "earnest", "heartfelt", "devout"]}, {"answer": "dewy-eyed", "hint": "synonyms for dewy-eyed", "clues": ["wide-eyed", "childlike", "simple", "round-eyed", "dewy-eyed"]}, {"answer": "diabolic", "hint": "synonyms for diabolic", "clues": ["demonic", "diabolical", "satanic", "fiendish", "unholy", "infernal", "mephistophelian", "hellish", "devilish"]}, {"answer": "diabolical", "hint": "synonyms for diabolical", "clues": ["diabolic", "demonic", "satanic", "fiendish", "unholy", "infernal", "mephistophelian", "hellish", "devilish"]}, {"answer": "diagonal", "hint": "synonyms for diagonal", "clues": ["sloping", "aslant", "aslope", "sloped", "slanting", "slanted", "diagonal"]}, {"answer": "diametrical", "hint": "synonyms for diametrical", "clues": ["opposite", "polar", "diametral", "diametric"]}, {"answer": "diaphanous", "hint": "synonyms for diaphanous", "clues": ["sheer", "filmy", "vapourous", "gossamer", "gauzy", "gauze-like", "cobwebby", "see-through", "transparent", "diaphanous"]}, {"answer": "dichromatic", "hint": "synonyms for dichromatic", "clues": ["bicolor", "bicoloured", "bichrome", "dichromatic"]}, {"answer": "dictatorial", "hint": "synonyms for dictatorial", "clues": ["authoritarian", "autocratic", "despotic", "tyrannical", "overbearing", "dictatorial"]}, {"answer": "digressive", "hint": "synonyms for digressive", "clues": ["tangential", "excursive", "rambling", "discursive", "digressive"]}, {"answer": "dilapidated", "hint": "synonyms for dilapidated", "clues": ["tatterdemalion", "tumble-down", "broken-down", "ramshackle", "derelict", "bedraggled", "dilapidated"]}, {"answer": "dim", "hint": "synonyms for dim", "clues": ["black", "shadowy", "subdued", "dense", "wispy", "slow", "dimmed", "dull", "obtuse", "faint", "bleak", "vague", "dumb", "dim"]}, {"answer": "dim-sighted", "hint": "synonyms for dim-sighted", "clues": ["visually challenged", "sand-blind", "visually impaired", "near-blind", "purblind", "dim-sighted"]}, {"answer": "diminished", "hint": "synonyms for diminished", "clues": ["weakened", "wasted", "small", "lessened", "belittled", "atrophied", "vitiated", "diminished"]}, {"answer": "diminutive", "hint": "synonyms for diminutive", "clues": ["bantam", "petite", "midget", "flyspeck", "lilliputian", "tiny", "diminutive"]}, {"answer": "dingy", "hint": "synonyms for dingy", "clues": ["muddied", "muddy", "drab", "grungy", "begrimed", "grim", "blue", "dirty", "grubby", "dismal", "dark", "gloomy", "raunchy", "dreary", "disconsolate", "sorry", "dingy"]}, {"answer": "dire", "hint": "synonyms for dire", "clues": ["dreadful", "dreaded", "direful", "fearsome", "horrific", "terrible", "awful", "frightening", "dread", "desperate", "horrendous", "fearful", "dire"]}, {"answer": "directionless", "hint": "synonyms for directionless", "clues": ["aimless", "adrift", "planless", "rudderless", "afloat", "undirected", "directionless"]}, {"answer": "direful", "hint": "synonyms for direful", "clues": ["dreadful", "dreaded", "fearsome", "horrific", "dire", "terrible", "awful", "frightening", "dread", "horrendous", "fearful", "direful"]}, {"answer": "dirty", "hint": "synonyms for dirty", "clues": ["muddied", "muddy", "marked-up", "unsportsmanlike", "sordid", "pestiferous", "unsporting", "foul", "unclean", "filthy", "cheating", "lousy", "contaminating", "ill-gotten", "soiled", "dingy", "dirty"]}, {"answer": "disappointed", "hint": "synonyms for disappointed", "clues": ["frustrated", "foiled", "thwarted", "discomfited", "defeated", "disappointed"]}, {"answer": "disastrous", "hint": "synonyms for disastrous", "clues": ["fateful", "fatal", "black", "calamitous", "disastrous"]}, {"answer": "discharged", "hint": "synonyms for discharged", "clues": ["laid-off", "fired", "dismissed", "pink-slipped", "discharged"]}, {"answer": "discomfited", "hint": "synonyms for discomfited", "clues": ["foiled", "frustrated", "thwarted", "disappointed", "defeated", "discomfited"]}, {"answer": "disconnected", "hint": "synonyms for disconnected", "clues": ["split", "confused", "abrupt", "unconnected", "disordered", "garbled", "illogical", "disunited", "disjointed", "scattered", "fragmented", "staccato", "disconnected"]}, {"answer": "disconsolate", "hint": "synonyms for disconsolate", "clues": ["unconsolable", "drab", "dark", "gloomy", "dreary", "blue", "grim", "sorry", "dingy", "dismal", "disconsolate"]}, {"answer": "discorporate", "hint": "synonyms for discorporate", "clues": ["unbodied", "bodiless", "disembodied", "discorporate"]}, {"answer": "discredited", "hint": "synonyms for discredited", "clues": ["disgraced", "damaged", "shamed", "dishonored", "discredited"]}, {"answer": "discrepant", "hint": "synonyms for discrepant", "clues": ["dissonant", "inconsistent", "incompatible", "at variance", "discrepant"]}, {"answer": "discriminating", "hint": "synonyms for discriminating", "clues": ["knifelike", "acute", "piercing", "penetrative", "keen", "incisive", "sharp", "penetrating", "discriminating"]}, {"answer": "discriminatory", "hint": "synonyms for discriminatory", "clues": ["preferential", "prejudiced", "discriminative", "invidious", "discriminatory"]}, {"answer": "discursive", "hint": "synonyms for discursive", "clues": ["dianoetic", "excursive", "digressive", "rambling", "discursive"]}, {"answer": "disdainful", "hint": "synonyms for disdainful", "clues": ["haughty", "prideful", "lordly", "overbearing", "sniffy", "scornful", "imperious", "insulting", "contemptuous", "swaggering", "supercilious", "disdainful"]}, {"answer": "disembodied", "hint": "synonyms for disembodied", "clues": ["unbodied", "bodiless", "discorporate", "disembodied"]}, {"answer": "disgraceful", "hint": "synonyms for disgraceful", "clues": ["black", "shameful", "scandalous", "opprobrious", "ignominious", "inglorious", "shocking", "disgraceful"]}, {"answer": "disgusted", "hint": "synonyms for disgusted", "clues": ["fed up", "sick of", "sick", "tired of", "disgusted"]}, {"answer": "disgustful", "hint": "synonyms for disgustful", "clues": ["repellent", "repelling", "loathly", "wicked", "yucky", "loathsome", "foul", "skanky", "disgusting", "distasteful", "revolting", "disgustful"]}, {"answer": "disgusting", "hint": "synonyms for disgusting", "clues": ["repellent", "repelling", "loathly", "wicked", "yucky", "disgustful", "loathsome", "foul", "skanky", "distasteful", "revolting", "disgusting"]}, {"answer": "disheveled", "hint": "synonyms for disheveled", "clues": ["tousled", "dishevelled", "rumpled", "frowzled"]}, {"answer": "dishevelled", "hint": "synonyms for dishevelled", "clues": ["tousled", "rumpled", "frowzled", "disheveled"]}, {"answer": "dishonest", "hint": "synonyms for dishonest", "clues": ["venal", "purchasable", "corruptible", "dishonorable", "bribable", "dishonest"]}, {"answer": "disjointed", "hint": "synonyms for disjointed", "clues": ["confused", "separated", "unconnected", "disordered", "garbled", "illogical", "scattered", "dislocated", "disconnected", "disjointed"]}, {"answer": "dismal", "hint": "synonyms for dismal", "clues": ["drab", "dark", "gloomy", "dreary", "blue", "grim", "disconsolate", "sorry", "dingy", "dismal"]}, {"answer": "dismissed", "hint": "synonyms for dismissed", "clues": ["laid-off", "fired", "discharged", "pink-slipped", "dismissed"]}, {"answer": "disordered", "hint": "synonyms for disordered", "clues": ["confused", "unconnected", "upset", "unordered", "garbled", "illogical", "disjointed", "scattered", "disconnected", "broken", "disordered"]}, {"answer": "disorderly", "hint": "synonyms for disorderly", "clues": ["higgledy-piggledy", "chaotic", "topsy-turvy", "jumbled", "hugger-mugger", "disorderly"]}, {"answer": "disoriented", "hint": "synonyms for disoriented", "clues": ["confused", "alienated", "anomic", "lost", "disoriented"]}, {"answer": "dispirited", "hint": "synonyms for dispirited", "clues": ["down", "depressed", "gloomy", "listless", "low-spirited", "downcast", "downhearted", "grim", "blue", "down in the mouth", "low", "dispirited"]}, {"answer": "disposed", "hint": "synonyms for disposed", "clues": ["prepared", "given", "tending", "fain", "inclined", "minded", "apt", "disposed"]}, {"answer": "disputatious", "hint": "synonyms for disputatious", "clues": ["litigious", "disputative", "contentious", "combative", "disputatious"]}, {"answer": "disputative", "hint": "synonyms for disputative", "clues": ["disputatious", "litigious", "contentious", "combative", "disputative"]}, {"answer": "disquieted", "hint": "synonyms for disquieted", "clues": ["disturbed", "distressed", "upset", "worried", "disquieted"]}, {"answer": "disruptive", "hint": "synonyms for disruptive", "clues": ["troubled", "riotous", "turbulent", "tumultuous", "disruptive"]}, {"answer": "dissident", "hint": "synonyms for dissident", "clues": ["dissenting", "heretical", "heterodox", "dissident"]}, {"answer": "dissipated", "hint": "synonyms for dissipated", "clues": ["degenerate", "degraded", "libertine", "debauched", "fast", "profligate", "dissolute", "card-playing", "riotous", "sporting", "betting", "dissipated"]}, {"answer": "dissolute", "hint": "synonyms for dissolute", "clues": ["degenerate", "degraded", "libertine", "fast", "debauched", "profligate", "riotous", "dissipated", "dissolute"]}, {"answer": "dissonant", "hint": "synonyms for dissonant", "clues": ["inharmonic", "discrepant", "unresolved", "at variance", "disharmonious", "discordant", "dissonant"]}, {"answer": "distant", "hint": "synonyms for distant", "clues": ["remote", "removed", "upstage", "aloof", "distant"]}, {"answer": "distasteful", "hint": "synonyms for distasteful", "clues": ["repellent", "repelling", "skanky", "loathly", "yucky", "disgustful", "loathsome", "foul", "unsavoury", "wicked", "disgusting", "revolting", "distasteful"]}, {"answer": "distinct", "hint": "synonyms for distinct", "clues": ["distinguishable", "clear-cut", "trenchant", "decided", "discrete", "distinct"]}, {"answer": "distorted", "hint": "synonyms for distorted", "clues": ["deformed", "ill-shapen", "twisted", "misrepresented", "misshapen", "malformed", "perverted", "distorted"]}, {"answer": "distressed", "hint": "synonyms for distressed", "clues": ["in a bad way", "hard put", "dysphoric", "disturbed", "unhappy", "upset", "stressed", "worried", "hard-pressed", "disquieted"]}, {"answer": "distressful", "hint": "synonyms for distressful", "clues": ["troubling", "perturbing", "disturbing", "worrying", "worrisome", "distressing", "distressful"]}, {"answer": "distressing", "hint": "synonyms for distressing", "clues": ["troubling", "pitiful", "sad", "perturbing", "disturbing", "worrying", "deplorable", "worrisome", "distressful", "sorry", "lamentable", "distressing"]}, {"answer": "disturbed", "hint": "synonyms for disturbed", "clues": ["distressed", "maladjusted", "brainsick", "unhinged", "demented", "upset", "mad", "crazy", "worried", "sick", "disquieted", "unbalanced", "disturbed"]}, {"answer": "disturbing", "hint": "synonyms for disturbing", "clues": ["troubling", "perturbing", "worrying", "worrisome", "distressful", "distressing", "disturbing"]}, {"answer": "divided", "hint": "synonyms for divided", "clues": ["dual-lane", "shared out", "shared", "divided up", "divided"]}, {"answer": "divinatory", "hint": "synonyms for divinatory", "clues": ["mantic", "hypothetical", "suppositional", "sibylline", "supposed", "vatic", "conjectural", "suppositious", "sibyllic", "vatical", "divinatory"]}, {"answer": "divine", "hint": "synonyms for divine", "clues": ["inspired", "providential", "godly", "godlike", "elysian", "divine"]}, {"answer": "dizzy", "hint": "synonyms for dizzy", "clues": ["airheaded", "giddy", "featherbrained", "woozy", "silly", "vertiginous", "lightheaded", "empty-headed", "dizzy"]}, {"answer": "doable", "hint": "synonyms for doable", "clues": ["accomplishable", "achievable", "manageable", "realizable", "doable"]}, {"answer": "dodgy", "hint": "synonyms for dodgy", "clues": ["guileful", "chanceful", "wily", "tricksy", "foxy", "chancy", "sly", "slick", "dicey", "knavish", "crafty", "cunning", "dodgy"]}, {"answer": "dog-tired", "hint": "synonyms for dog-tired", "clues": ["spent", "worn-out", "exhausted", "fagged", "washed-out", "fatigued", "played out", "dog-tired"]}, {"answer": "dogged", "hint": "synonyms for dogged", "clues": ["pertinacious", "unyielding", "dour", "persistent", "tenacious", "dogged"]}, {"answer": "doled_out", "hint": "synonyms for doled out", "clues": ["parceled out", "apportioned", "meted out", "dealt out", "doled out"]}, {"answer": "dolled_up", "hint": "synonyms for dolled up", "clues": ["spiffed up", "dressed", "dressed to the nines", "dressed to kill", "spruced up", "togged up", "dressed-up", "dolled up"]}, {"answer": "dolorous", "hint": "synonyms for dolorous", "clues": ["tearful", "weeping", "dolourous", "lachrymose"]}, {"answer": "dolourous", "hint": "synonyms for dolourous", "clues": ["tearful", "weeping", "dolorous", "lachrymose"]}, {"answer": "dominant", "hint": "synonyms for dominant", "clues": ["prevalent", "prevailing", "rife", "predominant", "dominant"]}, {"answer": "dominating", "hint": "synonyms for dominating", "clues": ["magisterial", "commanding", "ascendant", "peremptory", "bossy", "autocratic", "overlooking", "high-and-mighty", "dominating"]}, {"answer": "done_for", "hint": "synonyms for done for", "clues": ["sunk", "ruined", "kaput", "undone", "gone", "washed-up", "done for"]}, {"answer": "doomed", "hint": "synonyms for doomed", "clues": ["cursed", "damned", "unsaved", "unlucky", "ill-fated", "unredeemed", "fated", "ill-starred", "ill-omened", "doomed"]}, {"answer": "dopey", "hint": "synonyms for dopey", "clues": ["goosey", "anserine", "jerky", "dopy", "gooselike", "foolish"]}, {"answer": "dopy", "hint": "synonyms for dopy", "clues": ["dopey", "goosey", "anserine", "jerky", "gooselike", "foolish"]}, {"answer": "dormant", "hint": "synonyms for dormant", "clues": ["sleeping", "inactive", "torpid", "hibernating", "abeyant", "dormant"]}, {"answer": "dotted", "hint": "synonyms for dotted", "clues": ["flecked", "stippled", "dashed", "speckled", "dotted"]}, {"answer": "dotty", "hint": "synonyms for dotty", "clues": ["gaga", "fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "crazy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "wild", "nutty", "buggy", "cracked", "crackers", "dotty"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["treble", "bivalent", "twofold", "forked", "threefold", "duple", "dual", "doubled"]}, {"answer": "double-dealing", "hint": "synonyms for double-dealing", "clues": ["Janus-faced", "deceitful", "two-faced", "ambidextrous", "double-faced", "double-tongued", "duplicitous", "double-dealing"]}, {"answer": "double-dyed", "hint": "synonyms for double-dyed", "clues": ["consummate", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "unadulterated", "complete", "thoroughgoing", "utter", "pure", "stark", "double-dyed"]}, {"answer": "double-faced", "hint": "synonyms for double-faced", "clues": ["Janus-faced", "double-dealing", "deceitful", "two-faced", "ambidextrous", "double-tongued", "duplicitous", "double-faced"]}, {"answer": "double-tongued", "hint": "synonyms for double-tongued", "clues": ["Janus-faced", "double-dealing", "deceitful", "two-faced", "double-faced", "ambidextrous", "duplicitous", "double-tongued"]}, {"answer": "doubtful", "hint": "synonyms for doubtful", "clues": ["tentative", "dubitable", "dubious", "in question", "doubtful"]}, {"answer": "doughnut-shaped", "hint": "synonyms for doughnut-shaped", "clues": ["annular", "ring-shaped", "circinate", "ringed", "annulate", "doughnut-shaped"]}, {"answer": "dour", "hint": "synonyms for dour", "clues": ["forbidding", "unyielding", "moody", "dark", "dogged", "glowering", "saturnine", "tenacious", "sour", "grim", "glum", "pertinacious", "morose", "sullen", "persistent", "dour"]}, {"answer": "down", "hint": "synonyms for down", "clues": ["depressed", "gloomy", "low-spirited", "down pat", "downcast", "dispirited", "downhearted", "grim", "blue", "mastered", "downward", "low", "down in the mouth", "down"]}, {"answer": "down_in_the_mouth", "hint": "synonyms for down in the mouth", "clues": ["down", "depressed", "gloomy", "low-spirited", "downcast", "dispirited", "downhearted", "grim", "blue", "low", "down in the mouth"]}, {"answer": "downcast", "hint": "synonyms for downcast", "clues": ["down", "depressed", "gloomy", "low-spirited", "dispirited", "downhearted", "grim", "blue", "down in the mouth", "low", "downcast"]}, {"answer": "downhearted", "hint": "synonyms for downhearted", "clues": ["down", "depressed", "gloomy", "low-spirited", "downcast", "dispirited", "grim", "blue", "down in the mouth", "low", "downhearted"]}, {"answer": "downright", "hint": "synonyms for downright", "clues": ["absolute", "rank", "sheer", "out-and-out", "right-down", "downright"]}, {"answer": "downy", "hint": "synonyms for downy", "clues": ["fluffy", "puberulent", "pubescent", "flossy", "sericeous", "downlike", "downy"]}, {"answer": "drab", "hint": "synonyms for drab", "clues": ["olive-drab", "dark", "gloomy", "sober", "sombre", "dreary", "blue", "grim", "disconsolate", "sorry", "dingy", "dismal", "drab"]}, {"answer": "draped", "hint": "synonyms for draped", "clues": ["mantled", "wrapped", "clothed", "cloaked", "draped"]}, {"answer": "drawn", "hint": "synonyms for drawn", "clues": ["careworn", "worn", "haggard", "raddled", "drawn"]}, {"answer": "drawn-out", "hint": "synonyms for drawn-out", "clues": ["protracted", "prolonged", "extended", "lengthy", "drawn-out"]}, {"answer": "dread", "hint": "synonyms for dread", "clues": ["dreadful", "direful", "dreaded", "fearsome", "horrific", "dire", "terrible", "awful", "frightening", "horrendous", "fearful", "dread"]}, {"answer": "dreaded", "hint": "synonyms for dreaded", "clues": ["dreadful", "direful", "fearsome", "horrific", "dire", "terrible", "awful", "frightening", "dread", "horrendous", "fearful", "dreaded"]}, {"answer": "dreadful", "hint": "synonyms for dreadful", "clues": ["dreaded", "direful", "fearsome", "horrific", "painful", "dire", "terrible", "awful", "frightening", "abominable", "atrocious", "dread", "horrendous", "unspeakable", "fearful", "dreadful"]}, {"answer": "dreamy", "hint": "synonyms for dreamy", "clues": ["woolgathering", "lackadaisical", "languorous", "moony", "languid", "dreamy"]}, {"answer": "drear", "hint": "synonyms for drear", "clues": ["drab", "dark", "gloomy", "dreary", "grim", "blue", "disconsolate", "sorry", "dingy", "dismal"]}, {"answer": "dreary", "hint": "synonyms for dreary", "clues": ["drab", "dark", "gloomy", "drear", "blue", "grim", "disconsolate", "sorry", "dingy", "dismal"]}, {"answer": "dressed", "hint": "synonyms for dressed", "clues": ["polished", "spruced up", "dolled up", "togged up", "dressed-up", "habilimented", "garmented", "spiffed up", "appareled", "dressed to the nines", "dressed to kill", "robed", "attired", "garbed", "dressed"]}, {"answer": "dressed-up", "hint": "synonyms for dressed-up", "clues": ["spiffed up", "dressed", "dressed to the nines", "dressed to kill", "spruced up", "dolled up", "togged up", "dressed-up"]}, {"answer": "dressed_to_kill", "hint": "synonyms for dressed to kill", "clues": ["spiffed up", "dressed", "dressed to the nines", "spruced up", "dolled up", "togged up", "dressed-up", "dressed to kill"]}, {"answer": "dressed_to_the_nines", "hint": "synonyms for dressed to the nines", "clues": ["spiffed up", "dressed", "dressed to kill", "spruced up", "dolled up", "togged up", "dressed-up", "dressed to the nines"]}, {"answer": "dried-up", "hint": "synonyms for dried-up", "clues": ["sear", "shrivelled", "sere", "withered", "dried-up"]}, {"answer": "drifting", "hint": "synonyms for drifting", "clues": ["aimless", "vagabond", "floating", "vagrant", "drifting"]}, {"answer": "drippy", "hint": "synonyms for drippy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "drizzly", "hokey", "soupy", "maudlin", "bathetic", "slushy", "soppy", "drippy"]}, {"answer": "driven", "hint": "synonyms for driven", "clues": ["determined", "impelled", "compulsive", "goaded", "driven"]}, {"answer": "drooping", "hint": "synonyms for drooping", "clues": ["droopy", "sagging", "pendulous", "flagging", "weeping", "cernuous", "nodding", "drooping"]}, {"answer": "drowsy", "hint": "synonyms for drowsy", "clues": ["yawning", "dozy", "drowsing", "oscitant", "drowsy"]}, {"answer": "drug-addicted", "hint": "synonyms for drug-addicted", "clues": ["strung-out", "hooked", "dependent", "drug-addicted"]}, {"answer": "dry", "hint": "synonyms for dry", "clues": ["ironical", "teetotal", "juiceless", "wry", "dry"]}, {"answer": "dual", "hint": "synonyms for dual", "clues": ["double", "treble", "twofold", "threefold", "duple", "dual"]}, {"answer": "ductile", "hint": "synonyms for ductile", "clues": ["pliant", "tensile", "tractile", "pliable", "malleable", "ductile"]}, {"answer": "dulcet", "hint": "synonyms for dulcet", "clues": ["mellisonant", "sweet", "mellifluous", "honeyed", "dulcet"]}, {"answer": "dull", "hint": "synonyms for dull", "clues": ["boring", "tedious", "thudding", "tiresome", "softened", "dense", "dim", "slow", "obtuse", "irksome", "sluggish", "wearisome", "leaden", "muted", "dumb", "deadening", "muffled", "ho-hum", "dull"]}, {"answer": "dumb", "hint": "synonyms for dumb", "clues": ["dull", "obtuse", "speechless", "silent", "dense", "mute", "dim", "slow", "dumb"]}, {"answer": "dumbfounded", "hint": "synonyms for dumbfounded", "clues": ["dumbstricken", "dumfounded", "stupefied", "thunderstruck", "dumbstruck", "flabbergasted"]}, {"answer": "dumbstricken", "hint": "synonyms for dumbstricken", "clues": ["dumbfounded", "stupefied", "thunderstruck", "dumbstruck", "flabbergasted", "dumbstricken"]}, {"answer": "dumbstruck", "hint": "synonyms for dumbstruck", "clues": ["dumbstricken", "dumbfounded", "stupefied", "thunderstruck", "flabbergasted", "dumbstruck"]}, {"answer": "dumfounded", "hint": "synonyms for dumfounded", "clues": ["dumbstricken", "dumbfounded", "stupefied", "thunderstruck", "dumbstruck", "flabbergasted"]}, {"answer": "dumpy", "hint": "synonyms for dumpy", "clues": ["podgy", "stumpy", "squatty", "tubby", "squat", "roly-poly", "low-set", "chunky", "pudgy", "dumpy"]}, {"answer": "duncical", "hint": "synonyms for duncical", "clues": ["blockheaded", "fatheaded", "boneheaded", "loggerheaded", "thickheaded", "thick", "duncish", "wooden-headed", "thick-skulled", "duncical"]}, {"answer": "duncish", "hint": "synonyms for duncish", "clues": ["blockheaded", "fatheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thick", "wooden-headed", "thick-skulled", "duncish"]}, {"answer": "duplicitous", "hint": "synonyms for duplicitous", "clues": ["Janus-faced", "double-dealing", "deceitful", "two-faced", "ambidextrous", "double-faced", "double-tongued", "duplicitous"]}, {"answer": "durable", "hint": "synonyms for durable", "clues": ["indestructible", "perdurable", "long-wearing", "long-lived", "undestroyable", "lasting", "long-lasting", "durable"]}, {"answer": "dusky", "hint": "synonyms for dusky", "clues": ["swarthy", "dark-skinned", "twilight", "swart", "dusky"]}, {"answer": "dusty", "hint": "synonyms for dusty", "clues": ["moth-eaten", "dust-covered", "stale", "cold", "dusty"]}, {"answer": "earlier", "hint": "synonyms for earlier", "clues": ["former", "other", "earliest", "early", "earlier"]}, {"answer": "earliest", "hint": "synonyms for earliest", "clues": ["former", "other", "earlier", "early", "earliest"]}, {"answer": "early-blooming", "hint": "synonyms for early-blooming", "clues": ["spring-blooming", "early-flowering", "spring-flowering", "early-blooming"]}, {"answer": "early-flowering", "hint": "synonyms for early-flowering", "clues": ["spring-blooming", "early-blooming", "spring-flowering", "early-flowering"]}, {"answer": "earnest", "hint": "synonyms for earnest", "clues": ["businesslike", "dear", "devout", "heartfelt", "sincere", "solemn", "earnest"]}, {"answer": "earthy", "hint": "synonyms for earthy", "clues": ["crude", "gross", "vulgar", "down-to-earth", "earthy"]}, {"answer": "eastern_orthodox", "hint": "synonyms for eastern orthodox", "clues": ["Russian Orthodox", "Greek Orthodox", "Orthodox", "Eastern Orthodox"]}, {"answer": "easy", "hint": "synonyms for easy", "clues": ["promiscuous", "well-heeled", "well-off", "light", "well-to-do", "prosperous", "comfortable", "wanton", "leisurely", "well-situated", "gentle", "sluttish", "well-fixed", "loose", "soft", "easygoing", "easy"]}, {"answer": "easygoing", "hint": "synonyms for easygoing", "clues": ["cushy", "soft", "easy", "leisurely", "easygoing"]}, {"answer": "eccentric", "hint": "synonyms for eccentric", "clues": ["gonzo", "off-the-wall", "nonconcentric", "flaky", "freaky", "outlandish", "freakish", "outre", "bizarre", "eccentric"]}, {"answer": "echoic", "hint": "synonyms for echoic", "clues": ["onomatopoeical", "imitative", "echolike", "echoic"]}, {"answer": "economical", "hint": "synonyms for economical", "clues": ["frugal", "scotch", "stinting", "sparing", "economic"]}, {"answer": "ecstatic", "hint": "synonyms for ecstatic", "clues": ["rhapsodic", "enraptured", "rapturous", "rapt", "ecstatic"]}, {"answer": "ecumenical", "hint": "synonyms for ecumenical", "clues": ["worldwide", "general", "universal", "oecumenical", "cosmopolitan", "ecumenic"]}, {"answer": "edacious", "hint": "synonyms for edacious", "clues": ["esurient", "ravenous", "voracious", "wolfish", "rapacious", "ravening", "edacious"]}, {"answer": "edgy", "hint": "synonyms for edgy", "clues": ["jumpy", "overstrung", "nervy", "restive", "high-strung", "uptight", "jittery", "highly strung", "edgy"]}, {"answer": "effective", "hint": "synonyms for effective", "clues": ["efficient", "effectual", "efficacious", "good", "in force", "in effect", "effective"]}, {"answer": "effectual", "hint": "synonyms for effectual", "clues": ["sound", "effective", "legal", "efficacious", "effectual"]}, {"answer": "effeminate", "hint": "synonyms for effeminate", "clues": ["sissified", "sissy", "epicene", "cissy", "emasculate", "sissyish", "effeminate"]}, {"answer": "effervescent", "hint": "synonyms for effervescent", "clues": ["sparkly", "scintillating", "frothy", "bubbling", "sparkling", "effervescent"]}, {"answer": "effervescing", "hint": "synonyms for effervescing", "clues": ["foaming", "frothy", "spumy", "bubbling", "bubbly", "foamy", "effervescing"]}, {"answer": "effulgent", "hint": "synonyms for effulgent", "clues": ["refulgent", "radiant", "beamy", "beaming"]}, {"answer": "effusive", "hint": "synonyms for effusive", "clues": ["gushing", "burbling", "gushy", "burbly", "effusive"]}, {"answer": "egg-shaped", "hint": "synonyms for egg-shaped", "clues": ["oviform", "oval", "oval-shaped", "elliptical", "ovate", "prolate", "ovoid", "egg-shaped"]}, {"answer": "egotistic", "hint": "synonyms for egotistic", "clues": ["egotistical", "vain", "narcissistic", "self-loving", "swollen-headed", "conceited", "swollen", "self-conceited"]}, {"answer": "egotistical", "hint": "synonyms for egotistical", "clues": ["vain", "narcissistic", "self-loving", "swollen-headed", "conceited", "swollen", "egotistic", "self-conceited"]}, {"answer": "egregious", "hint": "synonyms for egregious", "clues": ["rank", "crying", "glaring", "gross", "flagrant", "egregious"]}, {"answer": "elementary", "hint": "synonyms for elementary", "clues": ["primary", "uncomplicated", "elemental", "simple", "unproblematic", "elementary"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["idealistic", "grand", "rarified", "high-flown", "sublime", "raised", "noble-minded", "exalted", "high-minded", "lofty", "elevated"]}, {"answer": "elfin", "hint": "synonyms for elfin", "clues": ["elflike", "fey", "elvish", "elfish", "elfin"]}, {"answer": "elliptic", "hint": "synonyms for elliptic", "clues": ["oviform", "oval", "oval-shaped", "egg-shaped", "elliptical", "ovate", "prolate", "ovoid"]}, {"answer": "elliptical", "hint": "synonyms for elliptical", "clues": ["oviform", "oval", "oval-shaped", "egg-shaped", "prolate", "ovate", "ovoid", "elliptic"]}, {"answer": "elongated", "hint": "synonyms for elongated", "clues": ["lengthened", "prolonged", "elongate", "extended"]}, {"answer": "eloquent", "hint": "synonyms for eloquent", "clues": ["silver", "silver-tongued", "facile", "fluent", "smooth-spoken", "eloquent"]}, {"answer": "elusive", "hint": "synonyms for elusive", "clues": ["subtle", "knotty", "problematical", "tough", "baffling", "elusive"]}, {"answer": "emaciated", "hint": "synonyms for emaciated", "clues": ["wasted", "haggard", "cadaverous", "skeletal", "bony", "pinched", "gaunt", "emaciated"]}, {"answer": "emasculate", "hint": "synonyms for emasculate", "clues": ["effeminate", "sissified", "sissy", "epicene", "cissy", "sissyish", "emasculate"]}, {"answer": "embarrassed", "hint": "synonyms for embarrassed", "clues": ["mortified", "chagrined", "abashed", "humiliated", "embarrassed"]}, {"answer": "embarrassing", "hint": "synonyms for embarrassing", "clues": ["sticky", "awkward", "unenviable", "mortifying", "embarrassing"]}, {"answer": "emblematic", "hint": "synonyms for emblematic", "clues": ["symbolical", "typic", "exemplary", "emblematical"]}, {"answer": "embodied", "hint": "synonyms for embodied", "clues": ["incarnate", "corporate", "corporal", "bodied"]}, {"answer": "eminent", "hint": "synonyms for eminent", "clues": ["lofty", "soaring", "high", "towering", "eminent"]}, {"answer": "emphatic", "hint": "synonyms for emphatic", "clues": ["exclamatory", "forceful", "emphasized", "emphatic"]}, {"answer": "empty-headed", "hint": "synonyms for empty-headed", "clues": ["featherbrained", "silly", "lightheaded", "airheaded", "dizzy", "giddy", "empty-headed"]}, {"answer": "enamored", "hint": "synonyms for enamored", "clues": ["infatuated", "soft on", "in love", "taken with", "smitten", "potty", "enamored"]}, {"answer": "enceinte", "hint": "synonyms for enceinte", "clues": ["expectant", "gravid", "heavy", "large", "big", "with child", "great", "enceinte"]}, {"answer": "enchanting", "hint": "synonyms for enchanting", "clues": ["captivating", "fascinating", "bewitching", "entrancing", "enthralling", "enchanting"]}, {"answer": "encompassing", "hint": "synonyms for encompassing", "clues": ["panoptic", "circumferent", "across-the-board", "blanket", "extensive", "wide", "all-inclusive", "surrounding", "all-encompassing", "all-embracing", "broad"]}, {"answer": "ended", "hint": "synonyms for ended", "clues": ["terminated", "complete", "concluded", "over", "all over", "ended"]}, {"answer": "endemic", "hint": "synonyms for endemic", "clues": ["indigenous", "endemical", "autochthonal", "autochthonic", "autochthonous"]}, {"answer": "endless", "hint": "synonyms for endless", "clues": ["sempiternal", "eternal", "dateless", "interminable", "endless"]}, {"answer": "engaged", "hint": "synonyms for engaged", "clues": ["in use", "meshed", "occupied", "booked", "busy", "set-aside", "intermeshed", "engaged"]}, {"answer": "engraved", "hint": "synonyms for engraved", "clues": ["etched", "inscribed", "graven", "incised", "engraved"]}, {"answer": "engrossed", "hint": "synonyms for engrossed", "clues": ["captive", "wrapped", "absorbed", "intent", "engrossed"]}, {"answer": "engrossing", "hint": "synonyms for engrossing", "clues": ["gripping", "absorbing", "riveting", "fascinating", "engrossing"]}, {"answer": "enlarged", "hint": "synonyms for enlarged", "clues": ["blown-up", "hypertrophied", "magnified", "exaggerated", "enlarged"]}, {"answer": "enraged", "hint": "synonyms for enraged", "clues": ["infuriated", "maddened", "furious", "angered", "enraged"]}, {"answer": "enraptured", "hint": "synonyms for enraptured", "clues": ["rhapsodic", "rapt", "rapturous", "ecstatic", "enraptured"]}, {"answer": "ensuant", "hint": "synonyms for ensuant", "clues": ["incidental", "consequent", "sequent", "resultant", "concomitant", "attendant", "accompanying", "ensuant"]}, {"answer": "enthralled", "hint": "synonyms for enthralled", "clues": ["beguiled", "delighted", "captivated", "entranced", "charmed", "enthralled"]}, {"answer": "enthralling", "hint": "synonyms for enthralling", "clues": ["captivating", "enchanting", "fascinating", "bewitching", "entrancing", "enthralling"]}, {"answer": "entire", "hint": "synonyms for entire", "clues": ["total", "full", "intact", "integral", "entire"]}, {"answer": "entranced", "hint": "synonyms for entranced", "clues": ["beguiled", "delighted", "enthralled", "captivated", "charmed", "entranced"]}, {"answer": "entrancing", "hint": "synonyms for entrancing", "clues": ["captivating", "enchanting", "fascinating", "bewitching", "enthralling", "entrancing"]}, {"answer": "enwrapped", "hint": "synonyms for enwrapped", "clues": ["engrossed", "captive", "wrapped", "absorbed", "intent"]}, {"answer": "eonian", "hint": "synonyms for eonian", "clues": ["aeonian", "ageless", "unending", "everlasting", "eternal", "perpetual", "unceasing"]}, {"answer": "ephemeral", "hint": "synonyms for ephemeral", "clues": ["transitory", "passing", "fugacious", "transient", "short-lived", "ephemeral"]}, {"answer": "epicene", "hint": "synonyms for epicene", "clues": ["effeminate", "sissyish", "sissified", "sissy", "cissy", "emasculate", "bisexual", "epicene"]}, {"answer": "epicurean", "hint": "synonyms for epicurean", "clues": ["voluptuous", "voluptuary", "hedonistic", "sybaritic", "hedonic", "luxurious", "Epicurean", "luxuriant"]}, {"answer": "equanimous", "hint": "synonyms for equanimous", "clues": ["self-contained", "self-possessed", "collected", "poised", "self-collected", "equanimous"]}, {"answer": "equipped", "hint": "synonyms for equipped", "clues": ["furnished", "fitted out", "weaponed", "equipt", "equipped"]}, {"answer": "erose", "hint": "synonyms for erose", "clues": ["notched", "jagged", "jaggy", "toothed", "erose"]}, {"answer": "erosive", "hint": "synonyms for erosive", "clues": ["caustic", "mordant", "vitriolic", "corrosive", "erosive"]}, {"answer": "erratic", "hint": "synonyms for erratic", "clues": ["planetary", "mercurial", "wandering", "temperamental", "fickle", "quicksilver", "erratic"]}, {"answer": "erstwhile", "hint": "synonyms for erstwhile", "clues": ["sometime", "one-time", "old", "quondam", "former", "erstwhile"]}, {"answer": "essential", "hint": "synonyms for essential", "clues": ["all-important", "substantive", "indispensable", "of the essence", "crucial", "essential"]}, {"answer": "established", "hint": "synonyms for established", "clues": ["effected", "accomplished", "conventional", "constituted", "naturalized", "established"]}, {"answer": "estimable", "hint": "synonyms for estimable", "clues": ["respectable", "good", "computable", "honorable", "estimable"]}, {"answer": "esurient", "hint": "synonyms for esurient", "clues": ["ravenous", "voracious", "greedy", "devouring", "starved", "sharp-set", "famished", "wolfish", "rapacious", "avid", "ravening", "edacious", "esurient"]}, {"answer": "etched", "hint": "synonyms for etched", "clues": ["graven", "inscribed", "incised", "engraved", "etched"]}, {"answer": "eternal", "hint": "synonyms for eternal", "clues": ["eonian", "perpetual", "interminable", "unending", "everlasting", "ageless", "endless", "unceasing", "eternal"]}, {"answer": "ethereal", "hint": "synonyms for ethereal", "clues": ["gossamer", "aerial", "airy", "aeriform", "supernal", "celestial", "aery", "ethereal"]}, {"answer": "ethnic", "hint": "synonyms for ethnic", "clues": ["pagan", "cultural", "heathenish", "ethnical", "heathen"]}, {"answer": "even", "hint": "synonyms for even", "clues": ["tied", "level", "regular", "fifty-fifty", "even"]}, {"answer": "everlasting", "hint": "synonyms for everlasting", "clues": ["eonian", "consummate", "double-dyed", "gross", "sodding", "unadulterated", "complete", "thoroughgoing", "eternal", "perpetual", "utter", "pure", "unceasing", "perfect", "arrant", "staring", "unending", "ageless", "stark", "everlasting"]}, {"answer": "everyday", "hint": "synonyms for everyday", "clues": ["casual", "quotidian", "workaday", "daily", "unremarkable", "mundane", "routine", "everyday"]}, {"answer": "evident", "hint": "synonyms for evident", "clues": ["observable", "discernible", "manifest", "plain", "patent", "apparent", "unmistakable", "evident"]}, {"answer": "evil", "hint": "synonyms for evil", "clues": ["malevolent", "malefic", "malign", "vicious", "evil"]}, {"answer": "evocative", "hint": "synonyms for evocative", "clues": ["redolent", "resonant", "remindful", "reminiscent", "evocative"]}, {"answer": "ex", "hint": "synonyms for ex", "clues": ["antique", "outmoded", "old-fashioned", "demode", "passe", "old-hat", "ex"]}, {"answer": "exacting", "hint": "synonyms for exacting", "clues": ["stern", "fastidious", "exigent", "strict", "exacting"]}, {"answer": "exaggerated", "hint": "synonyms for exaggerated", "clues": ["enlarged", "overstated", "magnified", "overdone", "exaggerated"]}, {"answer": "exalted", "hint": "synonyms for exalted", "clues": ["idealistic", "grand", "rarified", "high-flown", "sublime", "noble-minded", "high-minded", "lofty", "elevated", "exalted"]}, {"answer": "exasperating", "hint": "synonyms for exasperating", "clues": ["aggravating", "vexing", "infuriating", "maddening", "exacerbating", "exasperating"]}, {"answer": "exceeding", "hint": "synonyms for exceeding", "clues": ["surpassing", "olympian", "prodigious", "exceptional", "exceeding"]}, {"answer": "exceptional", "hint": "synonyms for exceptional", "clues": ["surpassing", "olympian", "particular", "special", "exceeding", "prodigious", "exceptional"]}, {"answer": "excess", "hint": "synonyms for excess", "clues": ["extra", "supererogatory", "surplus", "supernumerary", "redundant", "superfluous", "spare", "excess"]}, {"answer": "excessive", "hint": "synonyms for excessive", "clues": ["exuberant", "overweening", "undue", "extravagant", "inordinate", "unreasonable", "excessive"]}, {"answer": "exchangeable", "hint": "synonyms for exchangeable", "clues": ["standardised", "interchangeable", "similar", "convertible", "exchangeable"]}, {"answer": "excited", "hint": "synonyms for excited", "clues": ["mad", "frantic", "emotional", "delirious", "unrestrained", "worked up", "aroused", "activated", "excited"]}, {"answer": "excruciating", "hint": "synonyms for excruciating", "clues": ["torturesome", "agonising", "torturing", "harrowing", "torturous", "excruciating"]}, {"answer": "exculpated", "hint": "synonyms for exculpated", "clues": ["exonerated", "vindicated", "cleared", "absolved", "clear", "exculpated"]}, {"answer": "execrable", "hint": "synonyms for execrable", "clues": ["detestable", "abominable", "woeful", "deplorable", "wretched", "odious", "miserable", "damnable", "execrable"]}, {"answer": "executable", "hint": "synonyms for executable", "clues": ["workable", "practicable", "feasible", "viable", "executable"]}, {"answer": "exemplary", "hint": "synonyms for exemplary", "clues": ["typic", "monitory", "emblematic", "cautionary", "warning", "model", "exemplary"]}, {"answer": "exhausted", "hint": "synonyms for exhausted", "clues": ["spent", "dog-tired", "worn-out", "fagged", "washed-out", "fatigued", "played out", "exhausted"]}, {"answer": "exhausting", "hint": "synonyms for exhausting", "clues": ["wearying", "draining", "tiring", "exhausting"]}, {"answer": "exigent", "hint": "synonyms for exigent", "clues": ["clamant", "exacting", "crying", "instant", "insistent", "exigent"]}, {"answer": "exonerated", "hint": "synonyms for exonerated", "clues": ["exculpated", "vindicated", "cleared", "absolved", "clear", "exonerated"]}, {"answer": "exorbitant", "hint": "synonyms for exorbitant", "clues": ["steep", "outrageous", "usurious", "extortionate", "unconscionable", "exorbitant"]}, {"answer": "expectant", "hint": "synonyms for expectant", "clues": ["gravid", "heavy", "anticipative", "big", "with child", "anticipant", "enceinte", "great", "large", "expectant"]}, {"answer": "expert", "hint": "synonyms for expert", "clues": ["practiced", "skilful", "technical", "adept", "good", "proficient", "expert"]}, {"answer": "exploited", "hint": "synonyms for exploited", "clues": ["used", "victimised", "put-upon", "ill-used", "exploited"]}, {"answer": "expressed", "hint": "synonyms for expressed", "clues": ["explicit", "verbalized", "uttered", "expressed"]}, {"answer": "expressionless", "hint": "synonyms for expressionless", "clues": ["unexpressive", "poker-faced", "deadpan", "impassive", "expressionless"]}, {"answer": "extemporaneous", "hint": "synonyms for extemporaneous", "clues": ["extempore", "ad-lib", "off-the-cuff", "extemporary", "unrehearsed", "offhanded", "impromptu", "extemporaneous"]}, {"answer": "extemporary", "hint": "synonyms for extemporary", "clues": ["extempore", "ad-lib", "off-the-cuff", "unrehearsed", "offhanded", "extemporaneous", "impromptu", "extemporary"]}, {"answer": "extempore", "hint": "synonyms for extempore", "clues": ["off-the-cuff", "ad-lib", "extemporary", "unrehearsed", "offhanded", "extemporaneous", "impromptu", "extempore"]}, {"answer": "extended", "hint": "synonyms for extended", "clues": ["drawn-out", "protracted", "prolonged", "lengthy", "lengthened", "elongated", "extensive", "extended"]}, {"answer": "extensive", "hint": "synonyms for extensive", "clues": ["panoptic", "across-the-board", "blanket", "encompassing", "wide", "extended", "all-inclusive", "all-embracing", "broad", "extensive"]}, {"answer": "extortionate", "hint": "synonyms for extortionate", "clues": ["steep", "outrageous", "usurious", "unconscionable", "exorbitant", "extortionate"]}, {"answer": "extra", "hint": "synonyms for extra", "clues": ["surplus", "superfluous", "redundant", "additional", "supernumerary", "excess", "special", "supererogatory", "spare", "extra"]}, {"answer": "extraneous", "hint": "synonyms for extraneous", "clues": ["external", "impertinent", "outside", "orthogonal", "immaterial", "foreign", "extraneous"]}, {"answer": "extravagant", "hint": "synonyms for extravagant", "clues": ["excessive", "exuberant", "overweening", "profligate", "prodigal", "spendthrift", "extravagant"]}, {"answer": "extroverted", "hint": "synonyms for extroverted", "clues": ["extrovertive", "outgoing", "extraverted", "extrospective", "forthcoming"]}, {"answer": "exuberant", "hint": "synonyms for exuberant", "clues": ["profuse", "extravagant", "ebullient", "excessive", "lush", "high-spirited", "overweening", "riotous", "luxuriant", "exuberant"]}, {"answer": "exultant", "hint": "synonyms for exultant", "clues": ["exulting", "rejoicing", "prideful", "triumphal", "jubilant", "triumphant", "exultant"]}, {"answer": "exulting", "hint": "synonyms for exulting", "clues": ["exultant", "rejoicing", "prideful", "triumphal", "jubilant", "triumphant", "exulting"]}, {"answer": "fabulous", "hint": "synonyms for fabulous", "clues": ["mythologic", "fab", "mythic", "fabulous"]}, {"answer": "facile", "hint": "synonyms for facile", "clues": ["silver", "silver-tongued", "fluent", "eloquent", "smooth-spoken", "facile"]}, {"answer": "faded", "hint": "synonyms for faded", "clues": ["washed-out", "washy", "weakened", "attenuate", "bleached", "faded"]}, {"answer": "fagged", "hint": "synonyms for fagged", "clues": ["spent", "dog-tired", "worn-out", "exhausted", "washed-out", "fatigued", "played out", "fagged"]}, {"answer": "faineant", "hint": "synonyms for faineant", "clues": ["lazy", "slothful", "otiose", "indolent", "work-shy", "faineant"]}, {"answer": "faint", "hint": "synonyms for faint", "clues": ["feeble", "swooning", "fainthearted", "light", "shadowy", "dim", "wispy", "weak", "vague", "timid", "lightheaded", "faint"]}, {"answer": "fair", "hint": "synonyms for fair", "clues": ["just", "mediocre", "sightly", "fairish", "comely", "reasonable", "middling", "honest", "bonnie", "clean", "bonny", "average", "fair"]}, {"answer": "faithless", "hint": "synonyms for faithless", "clues": ["unfaithful", "treasonous", "treasonable", "traitorous", "faithless"]}, {"answer": "fake", "hint": "synonyms for fake", "clues": ["imitation", "bogus", "simulated", "phony", "false", "bastard", "faux", "fake"]}, {"answer": "fall-blooming", "hint": "synonyms for fall-blooming", "clues": ["autumn-flowering", "late-flowering", "fall-flowering", "autumn-blooming", "late-blooming", "fall-blooming"]}, {"answer": "fall-flowering", "hint": "synonyms for fall-flowering", "clues": ["autumn-flowering", "late-flowering", "autumn-blooming", "fall-blooming", "late-blooming", "fall-flowering"]}, {"answer": "false", "hint": "synonyms for false", "clues": ["imitation", "untrue", "simulated", "off-key", "fake", "assumed", "sour", "pretended", "mistaken", "sham", "delusive", "fictive", "put on", "faux", "fictitious", "false"]}, {"answer": "famed", "hint": "synonyms for famed", "clues": ["illustrious", "famous", "celebrated", "noted", "far-famed", "renowned", "notable", "famed"]}, {"answer": "familial", "hint": "synonyms for familial", "clues": ["transmissible", "transmitted", "genetic", "hereditary", "inherited", "familial"]}, {"answer": "famished", "hint": "synonyms for famished", "clues": ["esurient", "starved", "sharp-set", "ravenous", "famished"]}, {"answer": "famous", "hint": "synonyms for famous", "clues": ["illustrious", "celebrated", "noted", "far-famed", "renowned", "notable", "famed", "famous"]}, {"answer": "fantastic", "hint": "synonyms for fantastic", "clues": ["marvelous", "grand", "wonderful", "wondrous", "howling", "wild", "grotesque", "fantastical", "tremendous", "terrific", "antic", "rattling"]}, {"answer": "far-famed", "hint": "synonyms for far-famed", "clues": ["illustrious", "famous", "celebrated", "noted", "renowned", "notable", "famed", "far-famed"]}, {"answer": "far-out", "hint": "synonyms for far-out", "clues": ["kinky", "offbeat", "quirky", "way-out", "far-out"]}, {"answer": "farinaceous", "hint": "synonyms for farinaceous", "clues": ["mealy", "granular", "starchlike", "amyloid", "amylaceous", "gritty", "coarse-grained", "granulose", "grainy", "farinaceous"]}, {"answer": "farseeing", "hint": "synonyms for farseeing", "clues": ["foresightful", "foresighted", "eagle-eyed", "prospicient", "long", "keen-sighted", "longsighted", "farseeing"]}, {"answer": "farsighted", "hint": "synonyms for farsighted", "clues": ["foresightful", "farseeing", "presbyopic", "foresighted", "long", "longsighted", "prospicient"]}, {"answer": "farthermost", "hint": "synonyms for farthermost", "clues": ["utmost", "furthest", "uttermost", "furthermost"]}, {"answer": "farthest", "hint": "synonyms for farthest", "clues": ["farthermost", "utmost", "furthest", "uttermost"]}, {"answer": "fascinated", "hint": "synonyms for fascinated", "clues": ["mesmerized", "transfixed", "hypnotized", "spell-bound", "fascinated"]}, {"answer": "fascinating", "hint": "synonyms for fascinating", "clues": ["gripping", "engrossing", "riveting", "captivating", "enchanting", "bewitching", "absorbing", "entrancing", "enthralling", "fascinating"]}, {"answer": "fast", "hint": "synonyms for fast", "clues": ["quick", "degenerate", "flying", "truehearted", "loyal", "degraded", "libertine", "debauched", "immobile", "profligate", "firm", "dissolute", "riotous", "dissipated", "fast"]}, {"answer": "fat", "hint": "synonyms for fat", "clues": ["rich", "fertile", "juicy", "fatty", "productive", "fat"]}, {"answer": "fatal", "hint": "synonyms for fatal", "clues": ["black", "calamitous", "disastrous", "fateful", "fatal"]}, {"answer": "fateful", "hint": "synonyms for fateful", "clues": ["fatal", "black", "calamitous", "portentous", "disastrous", "foreboding", "fateful"]}, {"answer": "fatheaded", "hint": "synonyms for fatheaded", "clues": ["blockheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled", "fatheaded"]}, {"answer": "fatigued", "hint": "synonyms for fatigued", "clues": ["spent", "dog-tired", "worn-out", "exhausted", "fagged", "washed-out", "played out", "fatigued"]}, {"answer": "fatuous", "hint": "synonyms for fatuous", "clues": ["mindless", "asinine", "inane", "vacuous", "fatuous"]}, {"answer": "faux", "hint": "synonyms for faux", "clues": ["imitation", "fake", "false", "simulated", "faux"]}, {"answer": "faveolate", "hint": "synonyms for faveolate", "clues": ["pitted", "alveolate", "cavitied", "honeycombed"]}, {"answer": "favorable", "hint": "synonyms for favorable", "clues": ["lucky", "favourable", "golden", "friendly", "prosperous", "well-disposed"]}, {"answer": "favored", "hint": "synonyms for favored", "clues": ["preferred", "best-loved", "favourite", "pet", "preferent", "favored"]}, {"answer": "favorite", "hint": "synonyms for favorite", "clues": ["preferred", "best-loved", "favourite", "pet", "favored", "preferent"]}, {"answer": "favourable", "hint": "synonyms for favourable", "clues": ["lucky", "golden", "prosperous", "favorable"]}, {"answer": "favourite", "hint": "synonyms for favourite", "clues": ["preferred", "best-loved", "favored", "pet", "favorite", "preferent"]}, {"answer": "fawning", "hint": "synonyms for fawning", "clues": ["bootlicking", "sycophantic", "toadyish", "obsequious", "fawning"]}, {"answer": "fearful", "hint": "synonyms for fearful", "clues": ["frightful", "dreadful", "dreaded", "direful", "fearsome", "horrific", "dire", "terrible", "awful", "frightening", "dread", "horrendous", "cowardly", "trepid", "timorous", "fearful"]}, {"answer": "fearless", "hint": "synonyms for fearless", "clues": ["dauntless", "unafraid", "intrepid", "unfearing", "hardy", "brave", "audacious", "fearless"]}, {"answer": "fearsome", "hint": "synonyms for fearsome", "clues": ["dreadful", "dreaded", "direful", "horrific", "dire", "terrible", "awful", "frightening", "dread", "horrendous", "fearful", "fearsome"]}, {"answer": "feasible", "hint": "synonyms for feasible", "clues": ["workable", "executable", "practicable", "viable", "feasible"]}, {"answer": "featherbrained", "hint": "synonyms for featherbrained", "clues": ["silly", "empty-headed", "lightheaded", "airheaded", "dizzy", "giddy", "featherbrained"]}, {"answer": "fed_up", "hint": "synonyms for fed up", "clues": ["sick of", "disgusted", "sick", "tired of", "fed up"]}, {"answer": "feeble", "hint": "synonyms for feeble", "clues": ["weakly", "nerveless", "decrepit", "rickety", "debile", "infirm", "faint", "sapless", "lame", "feeble"]}, {"answer": "feisty", "hint": "synonyms for feisty", "clues": ["touchy", "plucky", "huffy", "spunky", "thin-skinned", "feisty"]}, {"answer": "fell", "hint": "synonyms for fell", "clues": ["roughshod", "brutal", "barbarous", "cruel", "vicious", "savage", "fell"]}, {"answer": "fertile", "hint": "synonyms for fertile", "clues": ["fecund", "rich", "fat", "productive", "prolific", "fertile"]}, {"answer": "fervent", "hint": "synonyms for fervent", "clues": ["impassioned", "torrid", "fervid", "fiery", "ardent", "perfervid", "fervent"]}, {"answer": "fervid", "hint": "synonyms for fervid", "clues": ["fervent", "impassioned", "torrid", "fiery", "ardent", "perfervid", "fervid"]}, {"answer": "fetid", "hint": "synonyms for fetid", "clues": ["stinking", "foul-smelling", "foetid", "foul", "funky", "smelly", "noisome", "ill-scented"]}, {"answer": "fibrous", "hint": "synonyms for fibrous", "clues": ["sinewy", "stringy", "hempen", "unchewable", "fibrous"]}, {"answer": "fickle", "hint": "synonyms for fickle", "clues": ["volatile", "erratic", "mercurial", "quicksilver", "fickle"]}, {"answer": "fictitious", "hint": "synonyms for fictitious", "clues": ["fictional", "fancied", "false", "assumed", "fictive", "pretended", "sham", "fabricated", "put on", "fictitious"]}, {"answer": "fictive", "hint": "synonyms for fictive", "clues": ["assumed", "pretended", "sham", "put on", "fictitious", "false", "fictive"]}, {"answer": "fiddling", "hint": "synonyms for fiddling", "clues": ["piffling", "niggling", "petty", "piddling", "footling", "picayune", "lilliputian", "trivial", "little"]}, {"answer": "fiendish", "hint": "synonyms for fiendish", "clues": ["diabolic", "hellish", "demonic", "satanic", "unholy", "infernal", "fiendish"]}, {"answer": "fierce", "hint": "synonyms for fierce", "clues": ["bowelless", "boisterous", "violent", "furious", "ferocious", "trigger-happy", "savage", "tearing", "rough", "vehement", "cutthroat", "fierce"]}, {"answer": "fiery", "hint": "synonyms for fiery", "clues": ["fervent", "impassioned", "torrid", "flaming", "fervid", "igneous", "ardent", "perfervid", "fiery"]}, {"answer": "filamentlike", "hint": "synonyms for filamentlike", "clues": ["filiform", "threadlike", "filamentous", "thready", "filamentlike"]}, {"answer": "filamentous", "hint": "synonyms for filamentous", "clues": ["filamentlike", "threadlike", "filiform", "thready", "filamentous"]}, {"answer": "filiform", "hint": "synonyms for filiform", "clues": ["filamentlike", "threadlike", "filamentous", "thready", "filiform"]}, {"answer": "filmy", "hint": "synonyms for filmy", "clues": ["sheer", "vapourous", "gossamer", "gauzy", "gauze-like", "cobwebby", "diaphanous", "see-through", "transparent", "filmy"]}, {"answer": "filthy", "hint": "synonyms for filthy", "clues": ["smutty", "foul", "nasty", "cruddy", "lousy", "dirty", "filthy"]}, {"answer": "final", "hint": "synonyms for final", "clues": ["terminal", "last", "net", "concluding", "final"]}, {"answer": "fine", "hint": "synonyms for fine", "clues": ["o.k.", "ok", "hunky-dory", "okay", "all right", "fine"]}, {"answer": "fine-grained", "hint": "synonyms for fine-grained", "clues": ["powdery", "pulverized", "small-grained", "powdered", "close-grained", "fine-grained"]}, {"answer": "fine-looking", "hint": "synonyms for fine-looking", "clues": ["well-favoured", "better-looking", "handsome", "good-looking", "fine-looking"]}, {"answer": "finer", "hint": "synonyms for finer", "clues": ["o.k.", "ok", "hunky-dory", "okay", "fine", "all right"]}, {"answer": "finical", "hint": "synonyms for finical", "clues": ["picky", "finicky", "particular", "fussy", "finical"]}, {"answer": "finicky", "hint": "synonyms for finicky", "clues": ["picky", "particular", "finical", "fussy", "finicky"]}, {"answer": "fired", "hint": "synonyms for fired", "clues": ["laid-off", "dismissed", "discharged", "pink-slipped", "fired"]}, {"answer": "firm", "hint": "synonyms for firm", "clues": ["solid", "unwavering", "steady", "unfluctuating", "truehearted", "unbendable", "steadfast", "strong", "loyal", "fast", "immobile", "unfaltering", "unshakable", "stiff", "firm"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["foremost", "initiative", "world-class", "initiatory", "1st", "beginning", "maiden", "inaugural", "first"]}, {"answer": "first-rate", "hint": "synonyms for first-rate", "clues": ["topnotch", "tops", "tiptop", "ace", "crack", "A-one", "super", "first-rate"]}, {"answer": "fishy", "hint": "synonyms for fishy", "clues": ["suspicious", "suspect", "funny", "shady", "fishy"]}, {"answer": "fitter", "hint": "synonyms for fitter", "clues": ["healthier", "fit", "set", "primed", "fitter"]}, {"answer": "flabbergasted", "hint": "synonyms for flabbergasted", "clues": ["dumbstricken", "dumbfounded", "stupefied", "thunderstruck", "dumbstruck", "flabbergasted"]}, {"answer": "flag-waving", "hint": "synonyms for flag-waving", "clues": ["jingoistic", "ultranationalistic", "nationalistic", "superpatriotic", "chauvinistic", "flag-waving"]}, {"answer": "flagitious", "hint": "synonyms for flagitious", "clues": ["grievous", "atrocious", "monstrous", "heinous", "flagitious"]}, {"answer": "flagrant", "hint": "synonyms for flagrant", "clues": ["rank", "crying", "glaring", "gross", "egregious", "flagrant"]}, {"answer": "flakey", "hint": "synonyms for flakey", "clues": ["gonzo", "off-the-wall", "flaky", "freaky", "outlandish", "freakish", "outre", "eccentric", "bizarre"]}, {"answer": "flaky", "hint": "synonyms for flaky", "clues": ["gonzo", "off-the-wall", "freaky", "outlandish", "freakish", "outre", "flakey", "eccentric", "bizarre"]}, {"answer": "flamboyant", "hint": "synonyms for flamboyant", "clues": ["splashy", "showy", "aureate", "florid", "flamboyant"]}, {"answer": "flaming", "hint": "synonyms for flaming", "clues": ["blinking", "bally", "blooming", "fiery", "crashing", "bloody", "fucking", "flaming"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["meretricious", "tacky", "tatty", "cheap", "tawdry", "gimcrack", "loud", "trashy", "garish", "brassy", "flashy", "gaudy"]}, {"answer": "flashy", "hint": "synonyms for flashy", "clues": ["meretricious", "flash", "jazzy", "tacky", "sporty", "tatty", "cheap", "tawdry", "showy", "gimcrack", "loud", "trashy", "garish", "brassy", "gaudy"]}, {"answer": "flat", "hint": "synonyms for flat", "clues": ["compressed", "monotonous", "plane", "monotonic", "vapid", "two-dimensional", "monotone", "flavourless", "categoric", "bland", "matt", "level", "prostrate", "matted", "insipid", "savorless", "unconditional", "flat"]}, {"answer": "flavorful", "hint": "synonyms for flavorful", "clues": ["flavourful", "sapid", "flavoursome", "flavourous", "saporous"]}, {"answer": "flavorless", "hint": "synonyms for flavorless", "clues": ["flat", "savourless", "bland", "vapid", "insipid", "flavorless"]}, {"answer": "flavorous", "hint": "synonyms for flavorous", "clues": ["flavorful", "sapid", "flavoursome", "flavourous", "saporous"]}, {"answer": "flavorsome", "hint": "synonyms for flavorsome", "clues": ["flavorful", "sapid", "flavoursome", "flavourous", "saporous"]}, {"answer": "flavourful", "hint": "synonyms for flavourful", "clues": ["flavorful", "sapid", "flavoursome", "flavourous", "saporous"]}, {"answer": "flavourless", "hint": "synonyms for flavourless", "clues": ["flat", "savourless", "bland", "vapid", "flavorless", "insipid"]}, {"answer": "flavourous", "hint": "synonyms for flavourous", "clues": ["flavorful", "sapid", "flavoursome", "saporous", "flavorous"]}, {"answer": "flavoursome", "hint": "synonyms for flavoursome", "clues": ["flavorful", "sapid", "flavourous", "saporous", "flavorsome"]}, {"answer": "flea-bitten", "hint": "synonyms for flea-bitten", "clues": ["creaky", "run-down", "decrepit", "woebegone", "derelict", "flea-bitten"]}, {"answer": "flecked", "hint": "synonyms for flecked", "clues": ["stippled", "dotted", "speckled", "flecked"]}, {"answer": "flexible", "hint": "synonyms for flexible", "clues": ["pliable", "pliant", "compromising", "whippy", "elastic", "flexile", "conciliatory"]}, {"answer": "flighty", "hint": "synonyms for flighty", "clues": ["scatterbrained", "skittish", "nervous", "spooky", "flyaway", "head-in-the-clouds", "flighty"]}, {"answer": "flimsy", "hint": "synonyms for flimsy", "clues": ["slight", "tenuous", "unconvincing", "fragile", "thin", "flimsy"]}, {"answer": "flint", "hint": "synonyms for flint", "clues": ["obdurate", "stony", "granitic", "flinty"]}, {"answer": "flinty", "hint": "synonyms for flinty", "clues": ["obdurate", "flint", "stony", "granitic"]}, {"answer": "floating", "hint": "synonyms for floating", "clues": ["aimless", "drifting", "vagabond", "vagrant", "floating"]}, {"answer": "flooded", "hint": "synonyms for flooded", "clues": ["inundated", "afloat", "overflowing", "awash", "flooded"]}, {"answer": "florid", "hint": "synonyms for florid", "clues": ["sanguine", "rubicund", "ruddy", "aureate", "flamboyant", "florid"]}, {"answer": "flourishing", "hint": "synonyms for flourishing", "clues": ["booming", "prospering", "roaring", "prosperous", "thriving", "palmy", "flourishing"]}, {"answer": "fluent", "hint": "synonyms for fluent", "clues": ["smooth", "silver-tongued", "facile", "eloquent", "silver", "liquid", "fluid", "smooth-spoken", "fluent"]}, {"answer": "fluid", "hint": "synonyms for fluid", "clues": ["unstable", "smooth", "fluent", "liquid", "runny", "mobile", "fluid"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["moneyed", "loaded", "affluent", "wealthy", "flush"]}, {"answer": "flushed", "hint": "synonyms for flushed", "clues": ["rose-cheeked", "rosy", "red", "red-faced", "reddened", "crimson", "flushed"]}, {"answer": "flyspeck", "hint": "synonyms for flyspeck", "clues": ["petite", "midget", "bantam", "lilliputian", "tiny", "diminutive", "flyspeck"]}, {"answer": "foaming", "hint": "synonyms for foaming", "clues": ["frothing", "effervescing", "frothy", "spumy", "bubbling", "bubbly", "foamy", "foaming"]}, {"answer": "foamy", "hint": "synonyms for foamy", "clues": ["spumy", "bubbling", "bubbly", "foaming", "effervescing", "frothing", "frothy", "foamy"]}, {"answer": "foetid", "hint": "synonyms for foetid", "clues": ["stinking", "foul-smelling", "foul", "fetid", "funky", "smelly", "noisome", "ill-scented"]}, {"answer": "foggy", "hint": "synonyms for foggy", "clues": ["hazy", "bleary", "blurry", "dazed", "groggy", "stuporous", "fuzzy", "misty", "muzzy", "fogged", "logy", "blurred", "brumous", "foggy"]}, {"answer": "fogyish", "hint": "synonyms for fogyish", "clues": ["moss-grown", "mossy", "stodgy", "stick-in-the-mud", "fogyish"]}, {"answer": "foiled", "hint": "synonyms for foiled", "clues": ["frustrated", "thwarted", "disappointed", "discomfited", "defeated", "foiled"]}, {"answer": "foliaceous", "hint": "synonyms for foliaceous", "clues": ["foliaged", "foliate", "foliose", "foliaceous"]}, {"answer": "fond", "hint": "synonyms for fond", "clues": ["adoring", "lovesome", "partial", "tender", "affectionate", "warm", "doting", "fond"]}, {"answer": "foolish", "hint": "synonyms for foolish", "clues": ["dopey", "goosey", "anserine", "jerky", "gooselike", "foolish"]}, {"answer": "footling", "hint": "synonyms for footling", "clues": ["piffling", "niggling", "fiddling", "petty", "picayune", "lilliputian", "trivial", "little", "footling"]}, {"answer": "forbidden", "hint": "synonyms for forbidden", "clues": ["taboo", "verboten", "proscribed", "tabu", "out", "prohibited", "forbidden"]}, {"answer": "forbidding", "hint": "synonyms for forbidding", "clues": ["ominous", "minatory", "menacing", "dour", "minacious", "sinister", "grim", "threatening", "baleful", "forbidding"]}, {"answer": "foregone", "hint": "synonyms for foregone", "clues": ["bygone", "gone", "bypast", "departed", "foregone"]}, {"answer": "foresighted", "hint": "synonyms for foresighted", "clues": ["foresightful", "farseeing", "long", "farsighted", "longsighted", "prospicient"]}, {"answer": "foresightful", "hint": "synonyms for foresightful", "clues": ["farseeing", "foresighted", "long", "longsighted", "prospicient", "foresightful"]}, {"answer": "forficate", "hint": "synonyms for forficate", "clues": ["branched", "biramous", "bifurcate", "fork-like", "prongy", "forked", "pronged", "forficate"]}, {"answer": "forgetful", "hint": "synonyms for forgetful", "clues": ["oblivious", "mindless", "short", "unmindful", "unretentive", "forgetful"]}, {"answer": "fork-like", "hint": "synonyms for fork-like", "clues": ["branched", "biramous", "forficate", "bifurcate", "prongy", "forked", "pronged", "fork-like"]}, {"answer": "forked", "hint": "synonyms for forked", "clues": ["branched", "biramous", "double", "forficate", "bifurcate", "fork-like", "prongy", "pronged", "forked"]}, {"answer": "formal", "hint": "synonyms for formal", "clues": ["stately", "courtly", "conventional", "schematic", "formal"]}, {"answer": "former", "hint": "synonyms for former", "clues": ["erstwhile", "one-time", "old", "quondam", "sometime", "late", "other", "previous", "early", "former"]}, {"answer": "forthcoming", "hint": "synonyms for forthcoming", "clues": ["upcoming", "extroverted", "approaching", "outgoing", "forthcoming"]}, {"answer": "forthright", "hint": "synonyms for forthright", "clues": ["outspoken", "free-spoken", "candid", "point-blank", "straight-from-the-shoulder", "plainspoken", "frank", "blunt", "forthright"]}, {"answer": "foul", "hint": "synonyms for foul", "clues": ["marked-up", "unsportsmanlike", "repelling", "yucky", "foul-smelling", "unsporting", "foetid", "filthy", "repellant", "afoul", "fouled", "cruddy", "ill-scented", "noisome", "smelly", "revolting", "dirty", "smutty", "skanky", "stinking", "loathly", "disgustful", "loathsome", "nasty", "cheating", "funky", "wicked", "disgusting", "distasteful"]}, {"answer": "foul-smelling", "hint": "synonyms for foul-smelling", "clues": ["stinking", "foetid", "foul", "funky", "smelly", "noisome", "ill-scented", "foul-smelling"]}, {"answer": "foxy", "hint": "synonyms for foxy", "clues": ["guileful", "wily", "dodgy", "tricksy", "sly", "slick", "knavish", "crafty", "cunning", "foxy"]}, {"answer": "fractious", "hint": "synonyms for fractious", "clues": ["refractory", "irritable", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "recalcitrant", "pettish", "peevish", "peckish", "petulant", "fractious"]}, {"answer": "fragile", "hint": "synonyms for fragile", "clues": ["flimsy", "slight", "thin", "tenuous", "delicate", "frail", "fragile"]}, {"answer": "frail", "hint": "synonyms for frail", "clues": ["imperfect", "weak", "delicate", "fragile", "fallible", "frail"]}, {"answer": "frank", "hint": "synonyms for frank", "clues": ["outspoken", "free-spoken", "candid", "point-blank", "straight-from-the-shoulder", "plainspoken", "forthright", "blunt", "frank"]}, {"answer": "frantic", "hint": "synonyms for frantic", "clues": ["phrenetic", "mad", "excited", "delirious", "unrestrained", "frenzied", "frenetic", "frantic"]}, {"answer": "freakish", "hint": "synonyms for freakish", "clues": ["gonzo", "off-the-wall", "flaky", "freaky", "outlandish", "outre", "capricious", "eccentric", "bizarre", "freakish"]}, {"answer": "freaky", "hint": "synonyms for freaky", "clues": ["gonzo", "off-the-wall", "flaky", "outlandish", "freakish", "outre", "eccentric", "bizarre", "freaky"]}, {"answer": "free", "hint": "synonyms for free", "clues": ["gratis", "innocent", "complimentary", "devoid", "liberal", "gratuitous", "costless", "detached", "barren", "loose", "destitute", "spare", "free"]}, {"answer": "free-spoken", "hint": "synonyms for free-spoken", "clues": ["outspoken", "candid", "point-blank", "straight-from-the-shoulder", "plainspoken", "forthright", "frank", "blunt", "free-spoken"]}, {"answer": "freehanded", "hint": "synonyms for freehanded", "clues": ["openhanded", "freehand", "liberal", "bounteous", "bighearted", "big", "handsome", "bountiful", "giving"]}, {"answer": "freewheeling", "hint": "synonyms for freewheeling", "clues": ["slaphappy", "happy-go-lucky", "carefree", "devil-may-care", "harum-scarum", "freewheeling"]}, {"answer": "frenzied", "hint": "synonyms for frenzied", "clues": ["frenetic", "phrenetic", "frantic", "manic", "frenzied"]}, {"answer": "fresh", "hint": "synonyms for fresh", "clues": ["novel", "invigorated", "refreshed", "sweet", "unused", "saucy", "impertinent", "smart", "refreshful", "refreshing", "bracing", "new", "sassy", "overbold", "impudent", "unfermented", "brisk", "clean", "tonic", "wise", "fresh"]}, {"answer": "fretful", "hint": "synonyms for fretful", "clues": ["antsy", "itchy", "querulous", "whiney", "fidgety", "fretful"]}, {"answer": "fricative", "hint": "synonyms for fricative", "clues": ["sibilant", "continuant", "strident", "spirant", "fricative"]}, {"answer": "frightened", "hint": "synonyms for frightened", "clues": ["terrified", "panic-struck", "panicked", "panic-stricken", "scared", "panicky", "frightened"]}, {"answer": "frightening", "hint": "synonyms for frightening", "clues": ["dreadful", "dreaded", "direful", "fearsome", "horrific", "dire", "terrible", "awful", "dread", "horrendous", "fearful", "frightening"]}, {"answer": "frightful", "hint": "synonyms for frightful", "clues": ["tremendous", "terrible", "fearful", "horrifying", "atrocious", "ugly", "horrible", "awful", "frightful"]}, {"answer": "frigid", "hint": "synonyms for frigid", "clues": ["gelid", "frosty", "polar", "glacial", "arctic", "frozen", "icy", "wintry", "cold", "frigid"]}, {"answer": "frizzly", "hint": "synonyms for frizzly", "clues": ["crisp", "frizzy", "kinky", "nappy"]}, {"answer": "frizzy", "hint": "synonyms for frizzy", "clues": ["crisp", "frizzly", "kinky", "nappy"]}, {"answer": "frolicky", "hint": "synonyms for frolicky", "clues": ["frolicsome", "sportive", "coltish", "rollicking", "frolicky"]}, {"answer": "frolicsome", "hint": "synonyms for frolicsome", "clues": ["frolicky", "sportive", "coltish", "rollicking", "frolicsome"]}, {"answer": "frosty", "hint": "synonyms for frosty", "clues": ["rimed", "glacial", "rimy", "snappy", "frigid", "crisp", "nipping", "frozen", "icy", "wintry", "nippy", "frosty"]}, {"answer": "frothy", "hint": "synonyms for frothy", "clues": ["sparkly", "spumy", "bubbling", "bubbly", "foamy", "effervescent", "foaming", "effervescing", "scintillating", "frothy"]}, {"answer": "froward", "hint": "synonyms for froward", "clues": ["headstrong", "willful", "self-willed", "froward"]}, {"answer": "frowzled", "hint": "synonyms for frowzled", "clues": ["tousled", "dishevelled", "rumpled", "frowzled"]}, {"answer": "frozen", "hint": "synonyms for frozen", "clues": ["stock-still", "frosty", "fixed", "glacial", "frigid", "rooted", "quick-frozen", "icy", "wintry", "flash-frozen", "frozen"]}, {"answer": "frugal", "hint": "synonyms for frugal", "clues": ["stinting", "sparing", "scotch", "economical", "frugal"]}, {"answer": "fruitless", "hint": "synonyms for fruitless", "clues": ["vain", "sleeveless", "bootless", "futile", "fruitless"]}, {"answer": "fruity", "hint": "synonyms for fruity", "clues": ["loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "fruity"]}, {"answer": "frustrated", "hint": "synonyms for frustrated", "clues": ["foiled", "thwarted", "disappointed", "discomfited", "defeated", "frustrated"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["blinking", "bally", "blooming", "flaming", "crashing", "bloody", "fucking"]}, {"answer": "fuddled", "hint": "synonyms for fuddled", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "fuddled"]}, {"answer": "fugacious", "hint": "synonyms for fugacious", "clues": ["transitory", "ephemeral", "passing", "transient", "short-lived", "fugacious"]}, {"answer": "fulgent", "hint": "synonyms for fulgent", "clues": ["blinding", "blazing", "dazzling", "glary", "glaring", "fulgent"]}, {"answer": "fulgid", "hint": "synonyms for fulgid", "clues": ["sparkly", "glittering", "coruscant", "glittery", "scintillant", "glinting", "scintillating", "fulgid"]}, {"answer": "full", "hint": "synonyms for full", "clues": ["total", "replete", "wide", "wide-cut", "entire", "good", "broad", "full"]}, {"answer": "full-blooded", "hint": "synonyms for full-blooded", "clues": ["blooded", "lusty", "full-blood", "red-blooded", "hearty"]}, {"answer": "full-bosomed", "hint": "synonyms for full-bosomed", "clues": ["curvaceous", "sonsy", "voluptuous", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie", "full-bosomed"]}, {"answer": "full-grown", "hint": "synonyms for full-grown", "clues": ["grownup", "fully grown", "adult", "big", "grown"]}, {"answer": "fully_grown", "hint": "synonyms for fully grown", "clues": ["grownup", "adult", "full-grown", "big", "grown"]}, {"answer": "fulsome", "hint": "synonyms for fulsome", "clues": ["oily", "unctuous", "buttery", "smarmy", "soapy", "oleaginous", "fulsome"]}, {"answer": "functional", "hint": "synonyms for functional", "clues": ["operative", "operational", "working", "useable", "running", "operable", "functional"]}, {"answer": "fundamental", "hint": "synonyms for fundamental", "clues": ["key", "primal", "rudimentary", "profound", "central", "underlying", "cardinal", "fundamental"]}, {"answer": "funky", "hint": "synonyms for funky", "clues": ["low-down", "stinking", "foul-smelling", "foetid", "foul", "smelly", "noisome", "ill-scented", "funky"]}, {"answer": "funny", "hint": "synonyms for funny", "clues": ["fishy", "risible", "singular", "rummy", "shady", "queer", "suspect", "comical", "rum", "mirthful", "odd", "peculiar", "amusing", "suspicious", "curious", "comic", "laughable", "funny"]}, {"answer": "furious", "hint": "synonyms for furious", "clues": ["raging", "wild", "tempestuous", "ferocious", "infuriated", "maddened", "enraged", "angered", "fierce", "savage", "angry", "furious"]}, {"answer": "furthermost", "hint": "synonyms for furthermost", "clues": ["farthermost", "utmost", "furthest", "uttermost"]}, {"answer": "furthest", "hint": "synonyms for furthest", "clues": ["farthermost", "utmost", "uttermost", "farthest"]}, {"answer": "furtive", "hint": "synonyms for furtive", "clues": ["sneak", "backstairs", "stealthy", "surreptitious", "furtive"]}, {"answer": "fused", "hint": "synonyms for fused", "clues": ["amalgamated", "consolidated", "coalesced", "fused"]}, {"answer": "fussy", "hint": "synonyms for fussy", "clues": ["particular", "busy", "ill-tempered", "cross", "crabby", "finical", "crabbed", "finicky", "picky", "bad-tempered", "grumpy", "grouchy", "fussy"]}, {"answer": "fusty", "hint": "synonyms for fusty", "clues": ["nonprogressive", "musty", "standpat", "frowsty", "fusty"]}, {"answer": "futile", "hint": "synonyms for futile", "clues": ["otiose", "vain", "unavailing", "bootless", "ineffectual", "fruitless", "sleeveless", "futile"]}, {"answer": "fuzzy", "hint": "synonyms for fuzzy", "clues": ["hazy", "muzzy", "bleary", "blurry", "foggy", "blurred", "fuzzed", "fuzzy"]}, {"answer": "gabby", "hint": "synonyms for gabby", "clues": ["garrulous", "loquacious", "chatty", "talkative", "talky", "gabby"]}, {"answer": "gaga", "hint": "synonyms for gaga", "clues": ["doddering", "crazy", "doddery", "senile", "wild", "dotty", "gaga"]}, {"answer": "gallant", "hint": "synonyms for gallant", "clues": ["knightly", "proud", "majestic", "lofty", "chivalrous", "dashing", "gallant"]}, {"answer": "galling", "hint": "synonyms for galling", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritating", "pestering", "vexing", "bothersome", "vexatious", "galling"]}, {"answer": "galvanic", "hint": "synonyms for galvanic", "clues": ["galvanizing", "electric", "voltaic", "galvanic"]}, {"answer": "game", "hint": "synonyms for game", "clues": ["spirited", "halt", "mettlesome", "gimpy", "gamey", "crippled", "gritty", "spunky", "lame"]}, {"answer": "gamey", "hint": "synonyms for gamey", "clues": ["spirited", "spunky", "high", "mettlesome", "juicy", "game", "gritty", "blue", "racy", "risque", "spicy", "naughty", "gamy"]}, {"answer": "gamy", "hint": "synonyms for gamy", "clues": ["spirited", "spunky", "high", "juicy", "gamey", "gritty", "blue", "racy", "risque", "spicy", "naughty", "mettlesome"]}, {"answer": "garbed", "hint": "synonyms for garbed", "clues": ["garmented", "appareled", "dressed", "robed", "attired", "habilimented", "garbed"]}, {"answer": "garbled", "hint": "synonyms for garbled", "clues": ["scattered", "illogical", "disjointed", "confused", "disconnected", "unconnected", "disordered", "garbled"]}, {"answer": "garish", "hint": "synonyms for garish", "clues": ["meretricious", "flash", "tacky", "tatty", "cheap", "tawdry", "gimcrack", "loud", "trashy", "brassy", "gaudy", "garish"]}, {"answer": "garmented", "hint": "synonyms for garmented", "clues": ["appareled", "dressed", "robed", "attired", "garbed", "habilimented", "garmented"]}, {"answer": "garrulous", "hint": "synonyms for garrulous", "clues": ["loquacious", "chatty", "talkative", "talky", "gabby", "garrulous"]}, {"answer": "gasified", "hint": "synonyms for gasified", "clues": ["volatilised", "vaporized", "vapourised", "gasified"]}, {"answer": "gaudy", "hint": "synonyms for gaudy", "clues": ["meretricious", "flash", "sporty", "tacky", "jazzy", "tatty", "cheap", "tawdry", "showy", "gimcrack", "loud", "trashy", "garish", "brassy", "gaudy"]}, {"answer": "gaunt", "hint": "synonyms for gaunt", "clues": ["wasted", "haggard", "cadaverous", "skeletal", "bony", "pinched", "emaciated", "gaunt"]}, {"answer": "gauze-like", "hint": "synonyms for gauze-like", "clues": ["sheer", "filmy", "vapourous", "gossamer", "gauzy", "cobwebby", "diaphanous", "see-through", "transparent", "gauze-like"]}, {"answer": "gauzy", "hint": "synonyms for gauzy", "clues": ["sheer", "filmy", "vapourous", "gossamer", "gauze-like", "cobwebby", "diaphanous", "see-through", "transparent", "gauzy"]}, {"answer": "gawky", "hint": "synonyms for gawky", "clues": ["ungainly", "clunky", "clumsy", "unwieldy", "gawky"]}, {"answer": "gay", "hint": "synonyms for gay", "clues": ["jolly", "braw", "festal", "festive", "brave", "queer", "jocund", "mirthful", "jovial", "cheery", "homophile", "merry", "sunny", "gay"]}, {"answer": "gelid", "hint": "synonyms for gelid", "clues": ["icy", "polar", "glacial", "arctic", "frigid", "gelid"]}, {"answer": "gemmed", "hint": "synonyms for gemmed", "clues": ["spangly", "sequined", "jewelled", "spangled", "beady", "gemmed"]}, {"answer": "general", "hint": "synonyms for general", "clues": ["universal", "oecumenical", "cosmopolitan", "worldwide", "general"]}, {"answer": "genetic", "hint": "synonyms for genetic", "clues": ["genic", "genetical", "transmissible", "transmitted", "familial", "hereditary", "inherited"]}, {"answer": "genial", "hint": "synonyms for genial", "clues": ["amiable", "cordial", "mental", "kind", "affable", "genial"]}, {"answer": "genteel", "hint": "synonyms for genteel", "clues": ["cultivated", "polite", "civilized", "cultured", "genteel"]}, {"answer": "gentle", "hint": "synonyms for gentle", "clues": ["aristocratic", "easy", "blue-blooded", "patrician", "docile", "blue", "soft", "gentle"]}, {"answer": "genuine", "hint": "synonyms for genuine", "clues": ["unfeigned", "echt", "real", "literal", "actual", "true", "genuine"]}, {"answer": "gestural", "hint": "synonyms for gestural", "clues": ["sign-language", "signed", "nonverbal", "sign", "gestural"]}, {"answer": "ghastly", "hint": "synonyms for ghastly", "clues": ["grisly", "gruesome", "grim", "macabre", "sick", "sepulchral", "charnel", "ghastly"]}, {"answer": "ghostlike", "hint": "synonyms for ghostlike", "clues": ["spiritual", "apparitional", "ghostly", "phantasmal", "spectral", "ghostlike"]}, {"answer": "ghostly", "hint": "synonyms for ghostly", "clues": ["ghostlike", "spiritual", "apparitional", "phantasmal", "spectral", "ghostly"]}, {"answer": "gibbous", "hint": "synonyms for gibbous", "clues": ["hunchbacked", "crookbacked", "humpbacked", "humped", "kyphotic", "gibbose"]}, {"answer": "gibelike", "hint": "synonyms for gibelike", "clues": ["mocking", "jeering", "derisive", "taunting", "gibelike"]}, {"answer": "giddy", "hint": "synonyms for giddy", "clues": ["airheaded", "dizzy", "featherbrained", "woozy", "silly", "vertiginous", "lightheaded", "empty-headed", "giddy"]}, {"answer": "gilded", "hint": "synonyms for gilded", "clues": ["grand", "meretricious", "gold", "deluxe", "golden", "aureate", "specious", "gilt", "princely", "opulent", "luxurious", "sumptuous", "gilded"]}, {"answer": "gilt", "hint": "synonyms for gilt", "clues": ["gilded", "aureate", "golden", "gold", "gilt"]}, {"answer": "gimcrack", "hint": "synonyms for gimcrack", "clues": ["meretricious", "flash", "tacky", "tatty", "cheap", "tawdry", "loud", "trashy", "garish", "brassy", "gaudy", "gimcrack"]}, {"answer": "gimpy", "hint": "synonyms for gimpy", "clues": ["halting", "crippled", "game", "lame", "gimpy"]}, {"answer": "given", "hint": "synonyms for given", "clues": ["tending", "minded", "disposed", "granted", "apt", "given"]}, {"answer": "giving", "hint": "synonyms for giving", "clues": ["openhanded", "liberal", "bounteous", "bighearted", "big", "handsome", "freehanded", "bountiful", "giving"]}, {"answer": "glacial", "hint": "synonyms for glacial", "clues": ["frosty", "gelid", "polar", "arctic", "frigid", "frozen", "icy", "wintry", "glacial"]}, {"answer": "glaring", "hint": "synonyms for glaring", "clues": ["rank", "blazing", "crying", "glary", "gross", "fulgent", "flagrant", "blinding", "dazzling", "egregious", "glaring"]}, {"answer": "glary", "hint": "synonyms for glary", "clues": ["blinding", "blazing", "dazzling", "glaring", "fulgent", "glary"]}, {"answer": "glib", "hint": "synonyms for glib", "clues": ["smooth-tongued", "slick", "pat", "glib-tongued", "glib"]}, {"answer": "glinting", "hint": "synonyms for glinting", "clues": ["sparkly", "glittering", "coruscant", "glittery", "scintillant", "fulgid", "scintillating", "glinting"]}, {"answer": "glistening", "hint": "synonyms for glistening", "clues": ["lustrous", "shiny", "shining", "sheeny", "glossy", "glistening"]}, {"answer": "glistering", "hint": "synonyms for glistering", "clues": ["sparkly", "glittering", "coruscant", "glittery", "scintillant", "fulgid", "glinting", "scintillating"]}, {"answer": "glittering", "hint": "synonyms for glittering", "clues": ["sparkly", "coruscant", "glittery", "scintillant", "fulgid", "glinting", "scintillating", "glistering"]}, {"answer": "glittery", "hint": "synonyms for glittery", "clues": ["sparkly", "glittering", "coruscant", "scintillant", "fulgid", "aglitter", "glinting", "scintillating"]}, {"answer": "global", "hint": "synonyms for global", "clues": ["globose", "world-wide", "spherical", "planetary", "globular", "orbicular", "ball-shaped", "world", "global"]}, {"answer": "globose", "hint": "synonyms for globose", "clues": ["globular", "orbicular", "ball-shaped", "global", "spherical", "globose"]}, {"answer": "globular", "hint": "synonyms for globular", "clues": ["orbicular", "globose", "ball-shaped", "global", "spherical", "globular"]}, {"answer": "gloomy", "hint": "synonyms for gloomy", "clues": ["gloomful", "down", "depressed", "drab", "glooming", "sulky", "low-spirited", "downhearted", "grim", "blue", "down in the mouth", "low", "dingy", "dismal", "dark", "downcast", "dispirited", "dreary", "disconsolate", "sorry", "gloomy"]}, {"answer": "glorious", "hint": "synonyms for glorious", "clues": ["splendid", "brilliant", "resplendent", "splendiferous", "magnificent", "glorious"]}, {"answer": "glossy", "hint": "synonyms for glossy", "clues": ["lustrous", "shiny", "shining", "sheeny", "calendered", "glistening", "showy", "glossy"]}, {"answer": "glowering", "hint": "synonyms for glowering", "clues": ["moody", "dour", "dark", "saturnine", "sour", "glum", "morose", "sullen", "glowering"]}, {"answer": "gluey", "hint": "synonyms for gluey", "clues": ["mucilaginous", "glutinous", "pasty", "sticky", "viscous", "gummy", "viscid", "gluey"]}, {"answer": "glum", "hint": "synonyms for glum", "clues": ["dour", "moody", "glowering", "dark", "saturnine", "sour", "morose", "sullen", "glum"]}, {"answer": "glutinous", "hint": "synonyms for glutinous", "clues": ["mucilaginous", "gluey", "pasty", "sticky", "viscous", "gummy", "viscid", "glutinous"]}, {"answer": "gnarled", "hint": "synonyms for gnarled", "clues": ["knotted", "gnarly", "knotty", "knobbed", "gnarled"]}, {"answer": "gnarly", "hint": "synonyms for gnarly", "clues": ["knotted", "knotty", "gnarled", "knobbed", "gnarly"]}, {"answer": "goddam", "hint": "synonyms for goddam", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blasted", "blamed", "deuced"]}, {"answer": "goddamn", "hint": "synonyms for goddamn", "clues": ["blessed", "darned", "damned", "goddamned", "damn", "infernal", "blasted", "blamed", "goddam", "deuced"]}, {"answer": "goddamned", "hint": "synonyms for goddamned", "clues": ["blessed", "darned", "goddamn", "damned", "damn", "infernal", "blasted", "blamed", "deuced"]}, {"answer": "gold", "hint": "synonyms for gold", "clues": ["golden", "gilded", "aureate", "gilt", "gold"]}, {"answer": "golden", "hint": "synonyms for golden", "clues": ["lucky", "gold", "prosperous", "gilded", "aureate", "gilt", "favorable", "fortunate", "halcyon", "golden"]}, {"answer": "gone", "hint": "synonyms for gone", "clues": ["at rest", "at peace", "bygone", "deceased", "done for", "bypast", "foregone", "asleep", "kaput", "departed", "gone"]}, {"answer": "gonzo", "hint": "synonyms for gonzo", "clues": ["off-the-wall", "flaky", "freaky", "outlandish", "freakish", "outre", "eccentric", "bizarre", "gonzo"]}, {"answer": "good", "hint": "synonyms for good", "clues": ["full", "secure", "effective", "unspoilt", "estimable", "ripe", "dependable", "skilful", "salutary", "expert", "just", "beneficial", "near", "right", "dear", "serious", "adept", "sound", "undecomposed", "proficient", "in force", "honest", "well", "practiced", "safe", "honorable", "respectable", "unspoiled", "upright", "in effect", "good"]}, {"answer": "good-for-naught", "hint": "synonyms for good-for-naught", "clues": ["no-count", "good-for-nothing", "meritless", "no-good", "sorry", "good-for-naught"]}, {"answer": "good-for-nothing", "hint": "synonyms for good-for-nothing", "clues": ["no-count", "meritless", "good-for-naught", "no-good", "sorry", "good-for-nothing"]}, {"answer": "good-hearted", "hint": "synonyms for good-hearted", "clues": ["openhearted", "large-hearted", "benevolent", "sympathetic", "kindly", "charitable", "good-hearted"]}, {"answer": "good-looking", "hint": "synonyms for good-looking", "clues": ["well-favoured", "better-looking", "handsome", "fine-looking", "good-looking"]}, {"answer": "goodish", "hint": "synonyms for goodish", "clues": ["hefty", "tidy", "healthy", "sizable", "respectable", "goodly", "goodish"]}, {"answer": "goodly", "hint": "synonyms for goodly", "clues": ["hefty", "tidy", "healthy", "sizable", "goodish", "respectable", "goodly"]}, {"answer": "goofy", "hint": "synonyms for goofy", "clues": ["wacky", "cockamamy", "silly", "cockamamie", "sappy", "zany", "goofy"]}, {"answer": "gooselike", "hint": "synonyms for gooselike", "clues": ["dopey", "goosey", "anserine", "jerky", "foolish", "gooselike"]}, {"answer": "goosey", "hint": "synonyms for goosey", "clues": ["dopey", "anserine", "goosy", "jerky", "gooselike", "foolish"]}, {"answer": "goosy", "hint": "synonyms for goosy", "clues": ["dopey", "goosey", "anserine", "jerky", "gooselike", "foolish"]}, {"answer": "gory", "hint": "synonyms for gory", "clues": ["sanguineous", "sanguinary", "butcherly", "bloodstained", "slaughterous", "gory"]}, {"answer": "gossamer", "hint": "synonyms for gossamer", "clues": ["sheer", "filmy", "vapourous", "gauzy", "gauze-like", "cobwebby", "diaphanous", "ethereal", "see-through", "transparent", "gossamer"]}, {"answer": "grabby", "hint": "synonyms for grabby", "clues": ["covetous", "grasping", "prehensile", "avaricious", "greedy", "grabby"]}, {"answer": "graceless", "hint": "synonyms for graceless", "clues": ["gauche", "ungraceful", "unpleasing", "unpolished", "graceless"]}, {"answer": "grainy", "hint": "synonyms for grainy", "clues": ["coarse-grained", "mealy", "granulose", "granular", "farinaceous", "gritty", "grainy"]}, {"answer": "grand", "hint": "synonyms for grand", "clues": ["marvelous", "wonderful", "idealistic", "deluxe", "high-flown", "fantastic", "rarefied", "sublime", "distinguished", "lordly", "noble-minded", "gilded", "exalted", "magisterial", "expansive", "wondrous", "august", "howling", "heroic", "tremendous", "terrific", "high-minded", "princely", "imposing", "opulent", "lofty", "elevated", "rattling", "luxurious", "sumptuous", "grand"]}, {"answer": "grandiloquent", "hint": "synonyms for grandiloquent", "clues": ["tall", "overblown", "pontifical", "pompous", "magniloquent", "portentous", "grandiloquent"]}, {"answer": "grandiose", "hint": "synonyms for grandiose", "clues": ["highfalutin", "hoity-toity", "la-di-da", "grandiose"]}, {"answer": "granitic", "hint": "synonyms for granitic", "clues": ["obdurate", "flint", "rocklike", "granitelike", "stony", "granitic"]}, {"answer": "granular", "hint": "synonyms for granular", "clues": ["coarse-grained", "mealy", "granulose", "grainy", "chondritic", "farinaceous", "gritty", "granular"]}, {"answer": "granulose", "hint": "synonyms for granulose", "clues": ["coarse-grained", "mealy", "grainy", "granular", "farinaceous", "gritty", "granulose"]}, {"answer": "graphic", "hint": "synonyms for graphic", "clues": ["in writing", "lifelike", "vivid", "pictorial", "graphical"]}, {"answer": "graspable", "hint": "synonyms for graspable", "clues": ["intelligible", "apprehensible", "understandable", "perceivable", "graspable"]}, {"answer": "grasping", "hint": "synonyms for grasping", "clues": ["grabby", "covetous", "prehensile", "avaricious", "greedy", "grasping"]}, {"answer": "grating", "hint": "synonyms for grating", "clues": ["gravelly", "raspy", "scratchy", "rough", "rasping", "grating"]}, {"answer": "gratis", "hint": "synonyms for gratis", "clues": ["gratuitous", "costless", "complimentary", "free", "gratis"]}, {"answer": "gratuitous", "hint": "synonyms for gratuitous", "clues": ["gratis", "costless", "complimentary", "uncalled-for", "needless", "free", "gratuitous"]}, {"answer": "grave", "hint": "synonyms for grave", "clues": ["grievous", "heavy", "severe", "life-threatening", "serious", "dangerous", "sober", "sedate", "weighty", "solemn", "grave"]}, {"answer": "gravelly", "hint": "synonyms for gravelly", "clues": ["grating", "raspy", "scratchy", "pebbly", "shingly", "rough", "rasping", "gravelly"]}, {"answer": "graven", "hint": "synonyms for graven", "clues": ["etched", "sculptured", "inscribed", "incised", "engraved", "graven"]}, {"answer": "gravid", "hint": "synonyms for gravid", "clues": ["expectant", "heavy", "large", "big", "enceinte", "with child", "great", "gravid"]}, {"answer": "gray", "hint": "synonyms for gray", "clues": ["grayish", "gray-haired", "hoary", "grey", "gray-headed", "grizzly", "white-haired", "gray"]}, {"answer": "gray-haired", "hint": "synonyms for gray-haired", "clues": ["hoary", "gray", "grey-haired", "white-haired", "grey", "gray-headed", "grizzly"]}, {"answer": "gray-headed", "hint": "synonyms for gray-headed", "clues": ["gray-haired", "hoary", "gray", "white-haired", "grey", "grizzly", "grey-headed"]}, {"answer": "great", "hint": "synonyms for great", "clues": ["expectant", "outstanding", "gravid", "heavy", "dandy", "big", "with child", "neat", "keen", "bully", "majuscule", "cracking", "bang-up", "capital", "slap-up", "nifty", "groovy", "smashing", "corking", "peachy", "not bad", "swell", "enceinte", "large", "great"]}, {"answer": "greater", "hint": "synonyms for greater", "clues": ["expectant", "outstanding", "gravid", "heavy", "dandy", "big", "with child", "neat", "keen", "bully", "majuscule", "cracking", "bang-up", "great", "capital", "slap-up", "nifty", "groovy", "smashing", "corking", "peachy", "not bad", "swell", "enceinte", "large", "greater"]}, {"answer": "greatest", "hint": "synonyms for greatest", "clues": ["expectant", "outstanding", "gravid", "heavy", "dandy", "big", "with child", "sterling", "neat", "keen", "bully", "superlative", "cracking", "bang-up", "majuscule", "great", "capital", "slap-up", "nifty", "groovy", "smashing", "corking", "peachy", "not bad", "swell", "enceinte", "large", "greatest"]}, {"answer": "greedy", "hint": "synonyms for greedy", "clues": ["grabby", "covetous", "avid", "grasping", "prehensile", "esurient", "avaricious", "devouring", "greedy"]}, {"answer": "greek_orthodox", "hint": "synonyms for greek orthodox", "clues": ["Russian Orthodox", "Greek Orthodox", "Orthodox", "Eastern Orthodox"]}, {"answer": "green", "hint": "synonyms for green", "clues": ["greenish", "unripened", "gullible", "immature", "dark-green", "light-green", "unripe", "fleeceable", "green"]}, {"answer": "grey", "hint": "synonyms for grey", "clues": ["grayish", "gray-haired", "hoary", "gray", "gray-headed", "grizzly", "white-haired", "grey"]}, {"answer": "grey-haired", "hint": "synonyms for grey-haired", "clues": ["gray-haired", "hoary", "gray", "white-haired", "grey", "gray-headed", "grizzly"]}, {"answer": "grey-headed", "hint": "synonyms for grey-headed", "clues": ["gray-haired", "hoary", "gray", "grey", "gray-headed", "grizzly", "white-haired"]}, {"answer": "grief-stricken", "hint": "synonyms for grief-stricken", "clues": ["bereft", "sorrowing", "grieving", "bereaved", "mourning", "grief-stricken"]}, {"answer": "grieving", "hint": "synonyms for grieving", "clues": ["bereft", "sorrowing", "bereaved", "mourning", "grief-stricken", "grieving"]}, {"answer": "grievous", "hint": "synonyms for grievous", "clues": ["heartbreaking", "heavy", "severe", "life-threatening", "serious", "flagitious", "dangerous", "grave", "atrocious", "monstrous", "heartrending", "weighty", "grievous"]}, {"answer": "grim", "hint": "synonyms for grim", "clues": ["relentless", "gruesome", "forbidding", "down", "depressed", "drab", "inexorable", "dour", "low-spirited", "downhearted", "mordant", "blue", "unforgiving", "stern", "down in the mouth", "low", "unappeasable", "dingy", "sorry", "grisly", "dismal", "black", "dark", "macabre", "gloomy", "ghastly", "downcast", "dispirited", "dreary", "unrelenting", "disconsolate", "sick", "grim"]}, {"answer": "grimy", "hint": "synonyms for grimy", "clues": ["grubby", "raunchy", "grungy", "begrimed", "dingy", "grimy"]}, {"answer": "gripping", "hint": "synonyms for gripping", "clues": ["engrossing", "absorbing", "riveting", "fascinating", "gripping"]}, {"answer": "grisly", "hint": "synonyms for grisly", "clues": ["gruesome", "grim", "macabre", "ghastly", "sick", "grisly"]}, {"answer": "gritty", "hint": "synonyms for gritty", "clues": ["spirited", "mealy", "mettlesome", "granular", "gamey", "farinaceous", "coarse-grained", "granulose", "grainy", "spunky", "gritty"]}, {"answer": "grizzly", "hint": "synonyms for grizzly", "clues": ["gray-haired", "hoary", "gray", "white-haired", "grey", "gray-headed", "grizzly"]}, {"answer": "groggy", "hint": "synonyms for groggy", "clues": ["stuporous", "dazed", "logy", "foggy", "groggy"]}, {"answer": "groovy", "hint": "synonyms for groovy", "clues": ["slap-up", "nifty", "dandy", "smashing", "corking", "swagger", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "groovy"]}, {"answer": "gross", "hint": "synonyms for gross", "clues": ["crude", "porcine", "consummate", "double-dyed", "crying", "glaring", "earthy", "sodding", "megascopic", "unadulterated", "flagrant", "complete", "thoroughgoing", "utter", "pure", "vulgar", "egregious", "rank", "perfect", "arrant", "staring", "everlasting", "stark", "gross"]}, {"answer": "grotesque", "hint": "synonyms for grotesque", "clues": ["fantastical", "antic", "monstrous", "grotesque"]}, {"answer": "grouchy", "hint": "synonyms for grouchy", "clues": ["crabby", "crabbed", "grumpy", "ill-tempered", "cross", "fussy", "bad-tempered", "grouchy"]}, {"answer": "groundless", "hint": "synonyms for groundless", "clues": ["baseless", "unfounded", "unwarranted", "wild", "idle", "groundless"]}, {"answer": "groveling", "hint": "synonyms for groveling", "clues": ["wormlike", "wormy", "grovelling", "cringing"]}, {"answer": "grovelling", "hint": "synonyms for grovelling", "clues": ["groveling", "wormy", "wormlike", "cringing"]}, {"answer": "grown", "hint": "synonyms for grown", "clues": ["grownup", "fully grown", "adult", "big", "grown"]}, {"answer": "grownup", "hint": "synonyms for grownup", "clues": ["fully grown", "adult", "big", "grown", "grownup"]}, {"answer": "grubby", "hint": "synonyms for grubby", "clues": ["raunchy", "grungy", "grimy", "begrimed", "dingy", "grubby"]}, {"answer": "grueling", "hint": "synonyms for grueling", "clues": ["punishing", "hard", "heavy", "backbreaking", "gruelling", "laborious", "toilsome", "arduous", "operose"]}, {"answer": "gruelling", "hint": "synonyms for gruelling", "clues": ["punishing", "hard", "backbreaking", "heavy", "grueling", "laborious", "toilsome", "arduous", "operose"]}, {"answer": "gruesome", "hint": "synonyms for gruesome", "clues": ["grisly", "grim", "macabre", "ghastly", "sick", "gruesome"]}, {"answer": "gruff", "hint": "synonyms for gruff", "clues": ["curmudgeonly", "ill-humoured", "husky", "crusty", "hoarse", "gruff"]}, {"answer": "grumpy", "hint": "synonyms for grumpy", "clues": ["crabby", "bad-tempered", "crabbed", "ill-tempered", "cross", "fussy", "grouchy", "grumpy"]}, {"answer": "grungy", "hint": "synonyms for grungy", "clues": ["grubby", "raunchy", "grimy", "begrimed", "dingy", "grungy"]}, {"answer": "guileful", "hint": "synonyms for guileful", "clues": ["wily", "dodgy", "tricksy", "foxy", "sly", "slick", "knavish", "crafty", "cunning", "guileful"]}, {"answer": "gummy", "hint": "synonyms for gummy", "clues": ["mucilaginous", "glutinous", "gluey", "pasty", "sticky", "viscous", "gummed", "viscid", "gummy"]}, {"answer": "gushing", "hint": "synonyms for gushing", "clues": ["effusive", "pouring", "burbling", "gushy", "burbly", "gushing"]}, {"answer": "habilimented", "hint": "synonyms for habilimented", "clues": ["garmented", "appareled", "dressed", "robed", "attired", "garbed", "habilimented"]}, {"answer": "hackneyed", "hint": "synonyms for hackneyed", "clues": ["old-hat", "timeworn", "tired", "commonplace", "trite", "stock", "well-worn", "banal", "shopworn", "threadbare", "hackneyed"]}, {"answer": "haggard", "hint": "synonyms for haggard", "clues": ["worn", "cadaverous", "bony", "raddled", "emaciated", "wasted", "drawn", "skeletal", "careworn", "pinched", "gaunt", "haggard"]}, {"answer": "half-baked", "hint": "synonyms for half-baked", "clues": ["underdone", "softheaded", "crazy", "screwball", "half-baked"]}, {"answer": "half-dozen", "hint": "synonyms for half-dozen", "clues": ["6", "half dozen", "six", "vi"]}, {"answer": "half_dozen", "hint": "synonyms for half dozen", "clues": ["6", "half-dozen", "six", "vi"]}, {"answer": "halt", "hint": "synonyms for halt", "clues": ["halting", "gimpy", "crippled", "game", "lame"]}, {"answer": "halting", "hint": "synonyms for halting", "clues": ["halt", "gimpy", "crippled", "game", "lame"]}, {"answer": "ham-fisted", "hint": "synonyms for ham-fisted", "clues": ["bungling", "left-handed", "handless", "bumbling", "heavy-handed", "ham-handed", "butterfingered", "ham-fisted"]}, {"answer": "ham-handed", "hint": "synonyms for ham-handed", "clues": ["ham-fisted", "bungling", "left-handed", "handless", "bumbling", "heavy-handed", "butterfingered", "ham-handed"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["ham-fisted", "bungling", "left-handed", "ham-handed", "bumbling", "heavy-handed", "butterfingered", "handless"]}, {"answer": "handsome", "hint": "synonyms for handsome", "clues": ["well-favored", "better-looking", "openhanded", "good-looking", "liberal", "bounteous", "fine-looking", "bighearted", "big", "freehanded", "bountiful", "giving", "handsome"]}, {"answer": "haphazard", "hint": "synonyms for haphazard", "clues": ["hit-or-miss", "slapdash", "sloppy", "slipshod", "haphazard"]}, {"answer": "hapless", "hint": "synonyms for hapless", "clues": ["pathetic", "pitiable", "wretched", "piteous", "poor", "pitiful", "miserable", "misfortunate", "hapless"]}, {"answer": "happy-go-lucky", "hint": "synonyms for happy-go-lucky", "clues": ["slaphappy", "carefree", "harum-scarum", "devil-may-care", "freewheeling", "happy-go-lucky"]}, {"answer": "harassed", "hint": "synonyms for harassed", "clues": ["harried", "pestered", "annoyed", "vexed", "harassed"]}, {"answer": "hard", "hint": "synonyms for hard", "clues": ["heavy", "backbreaking", "severe", "laborious", "voiceless", "unvoiced", "toilsome", "tough", "punishing", "surd", "intemperate", "gruelling", "difficult", "knockout", "strong", "concentrated", "arduous", "operose", "hard"]}, {"answer": "hard-boiled", "hint": "synonyms for hard-boiled", "clues": ["hard-bitten", "hardened", "pugnacious", "case-hardened", "hard-boiled"]}, {"answer": "hard_up", "hint": "synonyms for hard up", "clues": ["impecunious", "in straitened circumstances", "pinched", "penniless", "penurious", "hard up"]}, {"answer": "hardened", "hint": "synonyms for hardened", "clues": ["tempered", "toughened", "treated", "hard-boiled", "set", "inured", "case-hardened", "enured", "hardened"]}, {"answer": "hardheaded", "hint": "synonyms for hardheaded", "clues": ["practical", "mulish", "hard-nosed", "pragmatic", "hardheaded"]}, {"answer": "hardy", "hint": "synonyms for hardy", "clues": ["sturdy", "stalwart", "unfearing", "fearless", "brave", "dauntless", "intrepid", "stout", "audacious", "hardy"]}, {"answer": "harmonic", "hint": "synonyms for harmonic", "clues": ["consonant", "harmonical", "harmonised", "sympathetic"]}, {"answer": "harried", "hint": "synonyms for harried", "clues": ["harassed", "pestered", "annoyed", "vexed", "harried"]}, {"answer": "harrowing", "hint": "synonyms for harrowing", "clues": ["torturesome", "agonising", "excruciating", "torturing", "torturous", "harrowing"]}, {"answer": "harum-scarum", "hint": "synonyms for harum-scarum", "clues": ["slaphappy", "happy-go-lucky", "carefree", "devil-may-care", "freewheeling", "harum-scarum"]}, {"answer": "hasty", "hint": "synonyms for hasty", "clues": ["headlong", "precipitant", "precipitous", "overhasty", "hasty"]}, {"answer": "haughty", "hint": "synonyms for haughty", "clues": ["lordly", "overbearing", "sniffy", "disdainful", "imperious", "prideful", "swaggering", "supercilious", "haughty"]}, {"answer": "hawk-eyed", "hint": "synonyms for hawk-eyed", "clues": ["argus-eyed", "quick-sighted", "lynx-eyed", "sharp-sighted", "sharp-eyed", "keen-sighted", "hawk-eyed"]}, {"answer": "haywire", "hint": "synonyms for haywire", "clues": ["fruity", "loony", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "amiss", "nutty", "buggy", "awry", "cracked", "crackers", "wrong", "dotty", "haywire"]}, {"answer": "hazy", "hint": "synonyms for hazy", "clues": ["bleary", "blurry", "foggy", "misty", "fuzzy", "muzzy", "blurred", "brumous", "hazy"]}, {"answer": "headstrong", "hint": "synonyms for headstrong", "clues": ["willful", "froward", "self-willed", "headstrong"]}, {"answer": "heady", "hint": "synonyms for heady", "clues": ["judicious", "foolhardy", "rash", "intoxicating", "reckless", "wise", "heady"]}, {"answer": "healing", "hint": "synonyms for healing", "clues": ["therapeutic", "curative", "sanative", "remedial", "alterative", "healing"]}, {"answer": "healthier", "hint": "synonyms for healthier", "clues": ["hefty", "good for you", "level-headed", "healthy", "sound", "intelligent", "sizeable", "salubrious", "tidy", "goodish", "goodly", "fitter", "respectable", "healthier"]}, {"answer": "healthy", "hint": "synonyms for healthy", "clues": ["hefty", "good for you", "level-headed", "sound", "intelligent", "sizeable", "salubrious", "tidy", "goodish", "goodly", "respectable", "healthy"]}, {"answer": "hearty", "hint": "synonyms for hearty", "clues": ["square", "solid", "lusty", "substantial", "full-blooded", "red-blooded", "satisfying", "hearty"]}, {"answer": "heavy", "hint": "synonyms for heavy", "clues": ["expectant", "weighed down", "dense", "big", "toilsome", "great", "punishing", "intemperate", "gruelling", "cloggy", "enceinte", "labored", "grave", "sonorous", "threatening", "arduous", "large", "hard", "gravid", "backbreaking", "with child", "laborious", "profound", "lumbering", "weighty", "fleshy", "clayey", "grievous", "sound", "ponderous", "overweight", "lowering", "impenetrable", "sullen", "leaden", "wakeless", "operose", "heavy"]}, {"answer": "heavy-handed", "hint": "synonyms for heavy-handed", "clues": ["ham-fisted", "roughshod", "bungling", "left-handed", "handless", "bumbling", "ham-handed", "butterfingered", "heavy-handed"]}, {"answer": "heavyset", "hint": "synonyms for heavyset", "clues": ["thick", "stocky", "thickset", "compact", "heavyset"]}, {"answer": "heedful", "hint": "synonyms for heedful", "clues": ["careful", "advertent", "paying attention", "attentive", "thoughtful", "heedful"]}, {"answer": "hefty", "hint": "synonyms for hefty", "clues": ["healthy", "muscular", "brawny", "sizeable", "powerful", "sinewy", "tidy", "goodish", "goodly", "respectable", "hefty"]}, {"answer": "helical", "hint": "synonyms for helical", "clues": ["coiling", "volute", "turbinate", "spiraling", "whorled", "helical"]}, {"answer": "hellenic", "hint": "synonyms for hellenic", "clues": ["Graeco-Roman", "Hellenistical", "classical", "Greek", "Hellenic", "Grecian"]}, {"answer": "hellish", "hint": "synonyms for hellish", "clues": ["diabolic", "demonic", "satanic", "fiendish", "unholy", "infernal", "god-awful", "beastly", "hellish"]}, {"answer": "hereditary", "hint": "synonyms for hereditary", "clues": ["ancestral", "patrimonial", "transmissible", "transmitted", "familial", "genetic", "inherited", "hereditary"]}, {"answer": "heroic", "hint": "synonyms for heroic", "clues": ["grand", "epic", "heroical", "desperate", "larger-than-life", "expansive"]}, {"answer": "hidden", "hint": "synonyms for hidden", "clues": ["obscure", "secret", "concealed", "out of sight", "hidden"]}, {"answer": "hideous", "hint": "synonyms for hideous", "clues": ["repulsive", "outrageous", "horrific", "horrid", "hideous"]}, {"answer": "hifalutin", "hint": "synonyms for hifalutin", "clues": ["highfalutin", "hoity-toity", "grandiose", "la-di-da"]}, {"answer": "higgledy-piggledy", "hint": "synonyms for higgledy-piggledy", "clues": ["topsy-turvy", "jumbled", "disorderly", "hugger-mugger", "higgledy-piggledy"]}, {"answer": "high", "hint": "synonyms for high", "clues": ["mellow", "high-pitched", "in high spirits", "gamy", "eminent", "high"]}, {"answer": "high-and-mighty", "hint": "synonyms for high-and-mighty", "clues": ["autocratic", "magisterial", "dominating", "peremptory", "bossy", "high-and-mighty"]}, {"answer": "high-energy", "hint": "synonyms for high-energy", "clues": ["high-power", "high-octane", "high-voltage", "high-energy"]}, {"answer": "high-flown", "hint": "synonyms for high-flown", "clues": ["idealistic", "grand", "rarified", "sublime", "noble-minded", "exalted", "high-minded", "lofty", "elevated", "inflated", "high-sounding", "high-flown"]}, {"answer": "high-minded", "hint": "synonyms for high-minded", "clues": ["idealistic", "grand", "rarified", "high-flown", "sublime", "noble-minded", "exalted", "lofty", "elevated", "high-minded"]}, {"answer": "high-octane", "hint": "synonyms for high-octane", "clues": ["high-energy", "high-power", "high-voltage", "high-octane"]}, {"answer": "high-power", "hint": "synonyms for high-power", "clues": ["high-energy", "high-octane", "high-voltage", "high-powered"]}, {"answer": "high-powered", "hint": "synonyms for high-powered", "clues": ["high-energy", "high-power", "high-octane", "high-voltage"]}, {"answer": "high-priced", "hint": "synonyms for high-priced", "clues": ["dear", "pricy", "costly", "high-priced"]}, {"answer": "high-strung", "hint": "synonyms for high-strung", "clues": ["jumpy", "overstrung", "edgy", "nervy", "restive", "uptight", "jittery", "highly strung", "high-strung"]}, {"answer": "high-voltage", "hint": "synonyms for high-voltage", "clues": ["high-power", "high-energy", "high-potential", "high-octane", "high-voltage"]}, {"answer": "higher", "hint": "synonyms for higher", "clues": ["mellow", "high-pitched", "in high spirits", "high", "gamy", "eminent", "higher"]}, {"answer": "highfalutin", "hint": "synonyms for highfalutin", "clues": ["hoity-toity", "grandiose", "la-di-da", "highfaluting"]}, {"answer": "highfaluting", "hint": "synonyms for highfaluting", "clues": ["hoity-toity", "grandiose", "la-di-da", "highfalutin"]}, {"answer": "highly_strung", "hint": "synonyms for highly strung", "clues": ["jumpy", "overstrung", "edgy", "nervy", "restive", "high-strung", "uptight", "jittery", "highly strung"]}, {"answer": "ho-hum", "hint": "synonyms for ho-hum", "clues": ["boring", "tedious", "slow", "dull", "irksome", "wearisome", "deadening", "tiresome", "ho-hum"]}, {"answer": "hoar", "hint": "synonyms for hoar", "clues": ["gray-haired", "hoary", "gray", "white-haired", "grey", "gray-headed", "grizzly"]}, {"answer": "hoary", "hint": "synonyms for hoary", "clues": ["gray-haired", "rusty", "gray", "hoar", "canescent", "white-haired", "grey", "gray-headed", "grizzly"]}, {"answer": "hoggish", "hint": "synonyms for hoggish", "clues": ["piggy", "porcine", "swinish", "piggish", "hoggish"]}, {"answer": "hoity-toity", "hint": "synonyms for hoity-toity", "clues": ["highfalutin", "grandiose", "la-di-da", "hoity-toity"]}, {"answer": "hokey", "hint": "synonyms for hokey", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "drippy", "soupy", "stilted", "contrived", "maudlin", "artificial", "bathetic", "slushy", "soppy", "hokey"]}, {"answer": "hole-and-corner", "hint": "synonyms for hole-and-corner", "clues": ["hush-hush", "undercover", "underground", "clandestine", "hole-in-corner", "surreptitious", "cloak-and-dagger", "hugger-mugger", "secret"]}, {"answer": "holier-than-thou", "hint": "synonyms for holier-than-thou", "clues": ["sanctimonious", "pietistic", "pharisaic", "self-righteous", "holier-than-thou"]}, {"answer": "homespun", "hint": "synonyms for homespun", "clues": ["folksy", "slubbed", "tweedy", "nubbly", "cracker-barrel", "homespun"]}, {"answer": "honest", "hint": "synonyms for honest", "clues": ["honorable", "dependable", "fair", "good", "reliable", "true", "honest"]}, {"answer": "honeycombed", "hint": "synonyms for honeycombed", "clues": ["pitted", "alveolate", "cavitied", "honeycombed"]}, {"answer": "honeyed", "hint": "synonyms for honeyed", "clues": ["mellisonant", "syrupy", "sweet", "mellifluous", "dulcet", "honied", "honeyed"]}, {"answer": "honorable", "hint": "synonyms for honorable", "clues": ["honest", "respectable", "estimable", "good", "honourable", "ethical"]}, {"answer": "hooked", "hint": "synonyms for hooked", "clues": ["strung-out", "drug-addicted", "hooklike", "dependant", "aquiline", "hooked"]}, {"answer": "horny", "hint": "synonyms for horny", "clues": ["hornlike", "turned on", "corneous", "randy", "aroused", "steamy", "ruttish", "horny"]}, {"answer": "horrendous", "hint": "synonyms for horrendous", "clues": ["dreadful", "dreaded", "direful", "fearsome", "horrific", "dire", "terrible", "awful", "frightening", "dread", "fearful", "horrendous"]}, {"answer": "horrible", "hint": "synonyms for horrible", "clues": ["frightful", "horrifying", "atrocious", "ugly", "horrible"]}, {"answer": "horrific", "hint": "synonyms for horrific", "clues": ["dreadful", "dreaded", "direful", "fearsome", "dire", "hideous", "terrible", "awful", "outrageous", "frightening", "dread", "horrendous", "fearful", "horrid", "horrific"]}, {"answer": "horrifying", "hint": "synonyms for horrifying", "clues": ["frightful", "horrible", "atrocious", "ugly", "horrifying"]}, {"answer": "hot", "hint": "synonyms for hot", "clues": ["raging", "red-hot", "spicy", "blistering", "live", "hot"]}, {"answer": "hot-tempered", "hint": "synonyms for hot-tempered", "clues": ["quick-tempered", "short-tempered", "irascible", "hotheaded", "choleric"]}, {"answer": "hotheaded", "hint": "synonyms for hotheaded", "clues": ["impulsive", "short-tempered", "brainish", "madcap", "choleric", "irascible", "quick-tempered", "impetuous", "tearaway", "hotheaded"]}, {"answer": "howling", "hint": "synonyms for howling", "clues": ["marvelous", "grand", "wonderful", "wondrous", "fantastic", "tremendous", "terrific", "rattling", "howling"]}, {"answer": "huffy", "hint": "synonyms for huffy", "clues": ["touchy", "mad", "sore", "thin-skinned", "feisty", "huffy"]}, {"answer": "hugger-mugger", "hint": "synonyms for hugger-mugger", "clues": ["hush-hush", "higgledy-piggledy", "undercover", "hole-and-corner", "secret", "topsy-turvy", "underground", "disorderly", "surreptitious", "jumbled", "cloak-and-dagger", "clandestine", "hugger-mugger"]}, {"answer": "humanist", "hint": "synonyms for humanist", "clues": ["human-centered", "humanistic", "humanitarian", "humane"]}, {"answer": "humanistic", "hint": "synonyms for humanistic", "clues": ["human-centered", "humanist", "humanitarian", "humane"]}, {"answer": "humble", "hint": "synonyms for humble", "clues": ["base", "baseborn", "modest", "small", "menial", "lowly", "humble"]}, {"answer": "humbled", "hint": "synonyms for humbled", "clues": ["crushed", "low", "humiliated", "broken", "humbled"]}, {"answer": "humdrum", "hint": "synonyms for humdrum", "clues": ["commonplace", "prosaic", "monotonous", "unglamourous", "humdrum"]}, {"answer": "humiliated", "hint": "synonyms for humiliated", "clues": ["crushed", "broken", "embarrassed", "mortified", "low", "humbled", "humiliated"]}, {"answer": "humongous", "hint": "synonyms for humongous", "clues": ["banging", "walloping", "thumping", "whopping", "humongous"]}, {"answer": "humpbacked", "hint": "synonyms for humpbacked", "clues": ["hunchbacked", "crookbacked", "kyphotic", "humped", "gibbous", "humpbacked"]}, {"answer": "humped", "hint": "synonyms for humped", "clues": ["hunchbacked", "crookbacked", "humpbacked", "kyphotic", "gibbous", "humped"]}, {"answer": "hunchbacked", "hint": "synonyms for hunchbacked", "clues": ["crookbacked", "humpbacked", "humped", "kyphotic", "gibbous", "hunchbacked"]}, {"answer": "hunched", "hint": "synonyms for hunched", "clues": ["stooped", "round-backed", "crooked", "round-shouldered", "stooping", "hunched"]}, {"answer": "hunky-dory", "hint": "synonyms for hunky-dory", "clues": ["o.k.", "ok", "okay", "fine", "all right", "hunky-dory"]}, {"answer": "hush-hush", "hint": "synonyms for hush-hush", "clues": ["undercover", "hole-and-corner", "underground", "clandestine", "surreptitious", "cloak-and-dagger", "hugger-mugger", "secret", "hush-hush"]}, {"answer": "husky", "hint": "synonyms for husky", "clues": ["buirdly", "beefy", "strapping", "burly", "gruff", "hoarse", "husky"]}, {"answer": "hypersensitised", "hint": "synonyms for hypersensitised", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "hypersensitive", "hint": "synonyms for hypersensitive", "clues": ["sensitised", "supersensitised", "allergic", "hypersensitized"]}, {"answer": "hypersensitized", "hint": "synonyms for hypersensitized", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "hypnagogic", "hint": "synonyms for hypnagogic", "clues": ["soporiferous", "soporific", "hypnogogic", "somnific", "somniferous"]}, {"answer": "hypnogogic", "hint": "synonyms for hypnogogic", "clues": ["soporiferous", "soporific", "hypnagogic", "somnific", "somniferous"]}, {"answer": "hypnotised", "hint": "synonyms for hypnotised", "clues": ["mesmerized", "fascinated", "transfixed", "hypnotized", "spell-bound"]}, {"answer": "hypnotized", "hint": "synonyms for hypnotized", "clues": ["mesmerized", "fascinated", "transfixed", "spell-bound", "hypnotised"]}, {"answer": "hypothetic", "hint": "synonyms for hypothetic", "clues": ["hypothetical", "suppositional", "supposed", "supposititious", "conjectural", "divinatory"]}, {"answer": "hypothetical", "hint": "synonyms for hypothetical", "clues": ["suppositional", "supposed", "supposititious", "hypothetic", "conjectural", "divinatory"]}, {"answer": "icky", "hint": "synonyms for icky", "clues": ["gooey", "stinky", "rotten", "stinking", "shitty", "crappy", "lousy", "icky"]}, {"answer": "icy", "hint": "synonyms for icy", "clues": ["frosty", "gelid", "polar", "glacial", "arctic", "frigid", "frozen", "wintry", "icy"]}, {"answer": "idealistic", "hint": "synonyms for idealistic", "clues": ["grand", "rarified", "high-flown", "sublime", "noble-minded", "exalted", "high-minded", "lofty", "elevated", "ideal", "idealistic"]}, {"answer": "identical", "hint": "synonyms for identical", "clues": ["superposable", "indistinguishable", "monovular", "selfsame", "very", "identical"]}, {"answer": "idiotic", "hint": "synonyms for idiotic", "clues": ["derisory", "preposterous", "nonsensical", "crackbrained", "imbecilic", "absurd", "cockeyed", "ridiculous", "imbecile", "ludicrous", "laughable", "idiotic"]}, {"answer": "idle", "hint": "synonyms for idle", "clues": ["unfounded", "unwarranted", "light", "dead", "jobless", "wild", "baseless", "unused", "groundless", "out of work", "loose", "idle"]}, {"answer": "igneous", "hint": "synonyms for igneous", "clues": ["fiery", "eruptive", "pyrogenous", "pyrogenic", "igneous"]}, {"answer": "ignominious", "hint": "synonyms for ignominious", "clues": ["opprobrious", "black", "shameful", "inglorious", "disgraceful", "ignominious"]}, {"answer": "ignorant", "hint": "synonyms for ignorant", "clues": ["nescient", "unwitting", "unlettered", "illiterate", "unknowing", "unknowledgeable", "unlearned", "ignorant"]}, {"answer": "ill-bred", "hint": "synonyms for ill-bred", "clues": ["bounderish", "underbred", "yokelish", "lowbred", "rude", "ill-bred"]}, {"answer": "ill-chosen", "hint": "synonyms for ill-chosen", "clues": ["awkward", "clumsy", "inapt", "inept", "cumbersome", "ill-chosen"]}, {"answer": "ill-fated", "hint": "synonyms for ill-fated", "clues": ["ill-starred", "unlucky", "ill-omened", "doomed", "ill-fated"]}, {"answer": "ill-humored", "hint": "synonyms for ill-humored", "clues": ["ill-humoured", "curmudgeonly", "crusty", "gruff"]}, {"answer": "ill-humoured", "hint": "synonyms for ill-humoured", "clues": ["ill-humored", "curmudgeonly", "crusty", "gruff"]}, {"answer": "ill-mannered", "hint": "synonyms for ill-mannered", "clues": ["rude", "bad-mannered", "unmannered", "unmannerly", "ill-mannered"]}, {"answer": "ill-omened", "hint": "synonyms for ill-omened", "clues": ["ill-starred", "unlucky", "ill-fated", "doomed", "ill-omened"]}, {"answer": "ill-scented", "hint": "synonyms for ill-scented", "clues": ["stinking", "foul-smelling", "foetid", "foul", "funky", "noisome", "smelly", "ill-scented"]}, {"answer": "ill-shapen", "hint": "synonyms for ill-shapen", "clues": ["misshapen", "deformed", "distorted", "malformed", "ill-shapen"]}, {"answer": "ill-smelling", "hint": "synonyms for ill-smelling", "clues": ["stinky", "malodorous", "unpleasant-smelling", "ill-smelling"]}, {"answer": "ill-starred", "hint": "synonyms for ill-starred", "clues": ["unlucky", "ill-omened", "ill-fated", "doomed", "ill-starred"]}, {"answer": "ill-tempered", "hint": "synonyms for ill-tempered", "clues": ["crabby", "crabbed", "grumpy", "bad-tempered", "cross", "fussy", "grouchy", "ill-tempered"]}, {"answer": "ill-used", "hint": "synonyms for ill-used", "clues": ["used", "victimised", "put-upon", "exploited", "ill-used"]}, {"answer": "illegitimate", "hint": "synonyms for illegitimate", "clues": ["outlaw", "illicit", "unlawful", "illegitimate"]}, {"answer": "illicit", "hint": "synonyms for illicit", "clues": ["outlaw", "unlawful", "illegitimate", "illicit"]}, {"answer": "illogical", "hint": "synonyms for illogical", "clues": ["confused", "unconnected", "disordered", "garbled", "scattered", "disjointed", "unlogical", "disconnected", "illogical"]}, {"answer": "illustrious", "hint": "synonyms for illustrious", "clues": ["famous", "celebrated", "noted", "far-famed", "renowned", "notable", "famed", "illustrious"]}, {"answer": "imitation", "hint": "synonyms for imitation", "clues": ["fake", "faux", "false", "simulated", "imitation"]}, {"answer": "imitative", "hint": "synonyms for imitative", "clues": ["onomatopoeical", "echoic", "counterfeit", "imitative"]}, {"answer": "immaculate", "hint": "synonyms for immaculate", "clues": ["spic", "speckless", "spic-and-span", "undefiled", "spotless", "faultless", "impeccable", "immaculate"]}, {"answer": "immaterial", "hint": "synonyms for immaterial", "clues": ["extraneous", "impertinent", "orthogonal", "nonmaterial", "indifferent", "incorporeal", "immaterial"]}, {"answer": "immature", "hint": "synonyms for immature", "clues": ["green", "unripened", "unfledged", "young", "unripe", "immature"]}, {"answer": "immeasurable", "hint": "synonyms for immeasurable", "clues": ["incomputable", "unmeasured", "immensurable", "unmeasurable", "inestimable"]}, {"answer": "immediate", "hint": "synonyms for immediate", "clues": ["contiguous", "quick", "straightaway", "prompt", "immediate"]}, {"answer": "imminent", "hint": "synonyms for imminent", "clues": ["close at hand", "impendent", "at hand", "impending", "imminent"]}, {"answer": "impassioned", "hint": "synonyms for impassioned", "clues": ["fervent", "torrid", "fervid", "fiery", "ardent", "perfervid", "impassioned"]}, {"answer": "impassive", "hint": "synonyms for impassive", "clues": ["unexpressive", "poker-faced", "expressionless", "stolid", "deadpan", "impassive"]}, {"answer": "impecunious", "hint": "synonyms for impecunious", "clues": ["in straitened circumstances", "hard up", "pinched", "penniless", "penurious", "impecunious"]}, {"answer": "impendent", "hint": "synonyms for impendent", "clues": ["close at hand", "at hand", "imminent", "impending", "impendent"]}, {"answer": "impending", "hint": "synonyms for impending", "clues": ["close at hand", "impendent", "at hand", "imminent", "impending"]}, {"answer": "imperial", "hint": "synonyms for imperial", "clues": ["majestic", "regal", "royal", "purple", "imperial"]}, {"answer": "imperious", "hint": "synonyms for imperious", "clues": ["haughty", "lordly", "overbearing", "sniffy", "disdainful", "prideful", "swaggering", "supercilious", "imperious"]}, {"answer": "impertinent", "hint": "synonyms for impertinent", "clues": ["fresh", "orthogonal", "irreverent", "immaterial", "sassy", "overbold", "extraneous", "impudent", "saucy", "smart", "pert", "wise", "impertinent"]}, {"answer": "impetuous", "hint": "synonyms for impetuous", "clues": ["impulsive", "hotheaded", "brainish", "madcap", "tearaway", "impetuous"]}, {"answer": "impish", "hint": "synonyms for impish", "clues": ["puckish", "prankish", "mischievous", "arch", "wicked", "implike", "pixilated", "impish"]}, {"answer": "implanted", "hint": "synonyms for implanted", "clues": ["deep-rooted", "planted", "ingrained", "deep-seated"]}, {"answer": "implike", "hint": "synonyms for implike", "clues": ["puckish", "prankish", "impish", "mischievous", "arch", "wicked", "pixilated", "implike"]}, {"answer": "important", "hint": "synonyms for important", "clues": ["crucial", "of import", "authoritative", "significant", "important"]}, {"answer": "imposing", "hint": "synonyms for imposing", "clues": ["distinguished", "grand", "magisterial", "noble", "stately", "baronial", "imposing"]}, {"answer": "impossible", "hint": "synonyms for impossible", "clues": ["inconceivable", "insufferable", "out of the question", "unacceptable", "unimaginable", "impossible"]}, {"answer": "impoverished", "hint": "synonyms for impoverished", "clues": ["poverty-stricken", "necessitous", "wiped out", "needy", "destitute", "broken", "indigent", "impoverished"]}, {"answer": "impractical", "hint": "synonyms for impractical", "clues": ["windy", "Laputan", "visionary", "airy", "impractical"]}, {"answer": "impregnable", "hint": "synonyms for impregnable", "clues": ["secure", "inviolable", "conceptive", "strong", "unattackable", "unassailable", "inexpugnable", "impregnable"]}, {"answer": "improbable", "hint": "synonyms for improbable", "clues": ["marvelous", "tall", "unbelievable", "unlikely", "unconvincing", "improbable"]}, {"answer": "impromptu", "hint": "synonyms for impromptu", "clues": ["extempore", "ad-lib", "off-the-cuff", "extemporary", "unrehearsed", "offhanded", "extemporaneous", "impromptu"]}, {"answer": "impudent", "hint": "synonyms for impudent", "clues": ["flip", "fresh", "sassy", "overbold", "saucy", "impertinent", "smart", "snotty-nosed", "wise", "insolent", "impudent"]}, {"answer": "impulsive", "hint": "synonyms for impulsive", "clues": ["tearaway", "brainish", "madcap", "whimsical", "driving", "impetuous", "hotheaded", "unprompted", "capricious", "impulsive"]}, {"answer": "in_love", "hint": "synonyms for in love", "clues": ["enamored", "infatuated", "soft on", "taken with", "smitten", "potty", "in love"]}, {"answer": "in_one's_birthday_suit", "hint": "synonyms for in one's birthday suit", "clues": ["naked as the day one was born", "naked as the day you were born", "mother-naked", "in your birthday suit", "in one's birthday suit"]}, {"answer": "in_small_stages", "hint": "synonyms for in small stages", "clues": ["bit-by-bit", "stepwise", "piecemeal", "step-by-step", "in small stages"]}, {"answer": "in_straitened_circumstances", "hint": "synonyms for in straitened circumstances", "clues": ["impecunious", "hard up", "pinched", "penniless", "penurious", "in straitened circumstances"]}, {"answer": "in_style", "hint": "synonyms for in style", "clues": ["modish", "latest", "in vogue", "a la mode", "in style"]}, {"answer": "in_the_altogether", "hint": "synonyms for in the altogether", "clues": ["peeled", "stark naked", "raw", "in the raw", "bare-ass", "naked as a jaybird", "in the buff", "in the altogether"]}, {"answer": "in_the_buff", "hint": "synonyms for in the buff", "clues": ["peeled", "in the altogether", "stark naked", "raw", "in the raw", "bare-ass", "naked as a jaybird", "in the buff"]}, {"answer": "in_the_raw", "hint": "synonyms for in the raw", "clues": ["peeled", "in the altogether", "stark naked", "raw", "bare-ass", "naked as a jaybird", "in the buff", "in the raw"]}, {"answer": "in_vogue", "hint": "synonyms for in vogue", "clues": ["modish", "in style", "latest", "a la mode", "in vogue"]}, {"answer": "in_your_birthday_suit", "hint": "synonyms for in your birthday suit", "clues": ["in one's birthday suit", "naked as the day one was born", "naked as the day you were born", "mother-naked", "in your birthday suit"]}, {"answer": "inaccessible", "hint": "synonyms for inaccessible", "clues": ["unobtainable", "unaccessible", "unprocurable", "untouchable"]}, {"answer": "inactive", "hint": "synonyms for inactive", "clues": ["still", "nonoperational", "motionless", "passive", "dormant", "static", "inactive"]}, {"answer": "inane", "hint": "synonyms for inane", "clues": ["mindless", "asinine", "fatuous", "vacuous", "inane"]}, {"answer": "inanimate", "hint": "synonyms for inanimate", "clues": ["breathless", "pulseless", "non-living", "inanimate"]}, {"answer": "inapt", "hint": "synonyms for inapt", "clues": ["ill-chosen", "awkward", "clumsy", "inept", "cumbersome", "inapt"]}, {"answer": "inaugural", "hint": "synonyms for inaugural", "clues": ["initiative", "maiden", "first", "initiatory", "inaugural"]}, {"answer": "inauspicious", "hint": "synonyms for inauspicious", "clues": ["untoward", "ominous", "adverse", "ill", "unfortunate", "inauspicious"]}, {"answer": "inborn", "hint": "synonyms for inborn", "clues": ["connatural", "congenital", "inbred", "innate", "inborn"]}, {"answer": "inbuilt", "hint": "synonyms for inbuilt", "clues": ["inherent", "integral", "constitutional", "built-in", "inbuilt"]}, {"answer": "incarnate", "hint": "synonyms for incarnate", "clues": ["embodied", "corporate", "corporal", "incarnate"]}, {"answer": "incendiary", "hint": "synonyms for incendiary", "clues": ["instigative", "incitive", "seditious", "inflammatory", "rabble-rousing", "incendiary"]}, {"answer": "incessant", "hint": "synonyms for incessant", "clues": ["never-ending", "constant", "perpetual", "ceaseless", "unremitting", "unceasing", "incessant"]}, {"answer": "incidental", "hint": "synonyms for incidental", "clues": ["consequent", "ensuant", "nonessential", "concomitant", "accompanying", "resultant", "incident", "sequent", "attendant"]}, {"answer": "incised", "hint": "synonyms for incised", "clues": ["etched", "inscribed", "graven", "engraved", "incised"]}, {"answer": "incisive", "hint": "synonyms for incisive", "clues": ["knifelike", "acute", "piercing", "penetrative", "keen", "sharp", "penetrating", "discriminating", "incisive"]}, {"answer": "incitive", "hint": "synonyms for incitive", "clues": ["instigative", "seditious", "inflammatory", "rabble-rousing", "incendiary", "incitive"]}, {"answer": "incompatible", "hint": "synonyms for incompatible", "clues": ["unfitting", "out or keeping", "ill-sorted", "antagonistic", "uncongenial", "mismated", "discrepant", "unsuited", "contrastive", "inappropriate", "incompatible"]}, {"answer": "incompetent", "hint": "synonyms for incompetent", "clues": ["unskilled", "bungling", "fumbling", "clumsy", "unequal to", "incapable", "unqualified", "incompetent"]}, {"answer": "incorporate", "hint": "synonyms for incorporate", "clues": ["unified", "integrated", "merged", "incorporated"]}, {"answer": "incorporated", "hint": "synonyms for incorporated", "clues": ["incorporate", "merged", "unified", "integrated"]}, {"answer": "indecent", "hint": "synonyms for indecent", "clues": ["untoward", "indecorous", "unbecoming", "unseemly", "uncomely", "indecent"]}, {"answer": "indecorous", "hint": "synonyms for indecorous", "clues": ["untoward", "unbecoming", "unseemly", "uncomely", "indelicate", "indecent", "indecorous"]}, {"answer": "indefensible", "hint": "synonyms for indefensible", "clues": ["untenable", "unjustifiable", "unwarrantable", "unwarranted", "insupportable", "indefensible"]}, {"answer": "indefinable", "hint": "synonyms for indefinable", "clues": ["unutterable", "ineffable", "untellable", "unspeakable", "indescribable", "undefinable"]}, {"answer": "independent", "hint": "synonyms for independent", "clues": ["self-governing", "main", "sovereign", "autonomous", "independent"]}, {"answer": "indescribable", "hint": "synonyms for indescribable", "clues": ["unutterable", "ineffable", "untellable", "unspeakable", "indefinable", "indescribable"]}, {"answer": "indicative", "hint": "synonyms for indicative", "clues": ["indicatory", "suggestive", "significative", "declarative", "revelatory", "indicative"]}, {"answer": "indicatory", "hint": "synonyms for indicatory", "clues": ["suggestive", "indicative", "significative", "revelatory", "indicatory"]}, {"answer": "indifferent", "hint": "synonyms for indifferent", "clues": ["unbiased", "so-so", "deaf", "inert", "apathetic", "immaterial", "neutral", "indifferent"]}, {"answer": "indigenous", "hint": "synonyms for indigenous", "clues": ["autochthonal", "endemic", "autochthonic", "autochthonous", "indigenous"]}, {"answer": "indigent", "hint": "synonyms for indigent", "clues": ["poverty-stricken", "necessitous", "needy", "impoverished", "destitute", "indigent"]}, {"answer": "indisposed", "hint": "synonyms for indisposed", "clues": ["ailing", "poorly", "seedy", "peaked", "unwell", "loth", "sickly", "averse", "antipathetic", "under the weather", "indisposed"]}, {"answer": "individual", "hint": "synonyms for individual", "clues": ["item-by-item", "private", "case-by-case", "single", "individual"]}, {"answer": "indo-european", "hint": "synonyms for indo-european", "clues": ["Aryan", "Indo-Germanic", "Indo-European", "Indo-Aryan"]}, {"answer": "indolent", "hint": "synonyms for indolent", "clues": ["lazy", "faineant", "slothful", "otiose", "work-shy", "indolent"]}, {"answer": "industrious", "hint": "synonyms for industrious", "clues": ["hardworking", "up-and-coming", "energetic", "gumptious", "untiring", "tireless", "industrious"]}, {"answer": "ineffable", "hint": "synonyms for ineffable", "clues": ["unutterable", "untellable", "unspeakable", "indefinable", "indescribable", "unnameable", "ineffable"]}, {"answer": "ineffective", "hint": "synonyms for ineffective", "clues": ["inefficient", "unable", "uneffective", "ineffectual"]}, {"answer": "ineffectual", "hint": "synonyms for ineffectual", "clues": ["futile", "otiose", "ineffective", "unavailing", "unable", "ineffectual"]}, {"answer": "inept", "hint": "synonyms for inept", "clues": ["tactless", "ill-chosen", "awkward", "feckless", "clumsy", "inapt", "cumbersome", "inept"]}, {"answer": "inert", "hint": "synonyms for inert", "clues": ["soggy", "torpid", "sluggish", "neutral", "indifferent", "inert"]}, {"answer": "inexorable", "hint": "synonyms for inexorable", "clues": ["relentless", "adamant", "intransigent", "grim", "adamantine", "unforgiving", "stern", "unrelenting", "unappeasable", "inexorable"]}, {"answer": "infatuated", "hint": "synonyms for infatuated", "clues": ["enamored", "soft on", "in love", "taken with", "smitten", "potty", "infatuated"]}, {"answer": "infernal", "hint": "synonyms for infernal", "clues": ["diabolic", "blessed", "demonic", "goddamned", "fiendish", "unholy", "blamed", "hellish", "darned", "satanic", "damned", "damn", "blasted", "goddam", "deuced", "infernal"]}, {"answer": "infinite", "hint": "synonyms for infinite", "clues": ["unnumberable", "numberless", "countless", "non-finite", "multitudinous", "uncounted", "unnumbered", "innumerous", "myriad", "infinite"]}, {"answer": "infirm", "hint": "synonyms for infirm", "clues": ["feeble", "weak", "decrepit", "sapless", "rickety", "debile", "infirm"]}, {"answer": "inflammatory", "hint": "synonyms for inflammatory", "clues": ["instigative", "incitive", "seditious", "rabble-rousing", "incendiary", "inflammatory"]}, {"answer": "inflexible", "hint": "synonyms for inflexible", "clues": ["sturdy", "uncompromising", "unbending", "rigid", "inflexible"]}, {"answer": "informative", "hint": "synonyms for informative", "clues": ["enlightening", "illuminating", "informatory", "instructive", "informative"]}, {"answer": "infuriated", "hint": "synonyms for infuriated", "clues": ["maddened", "enraged", "furious", "angered", "infuriated"]}, {"answer": "inglorious", "hint": "synonyms for inglorious", "clues": ["opprobrious", "black", "shameful", "disgraceful", "ignominious", "inglorious"]}, {"answer": "ingrained", "hint": "synonyms for ingrained", "clues": ["deep-rooted", "planted", "deep-seated", "ingrained"]}, {"answer": "inherent", "hint": "synonyms for inherent", "clues": ["constitutional", "inbuilt", "built-in", "integral", "underlying", "implicit in", "inherent"]}, {"answer": "inherited", "hint": "synonyms for inherited", "clues": ["transmissible", "transmitted", "familial", "genetic", "hereditary", "inherited"]}, {"answer": "initiative", "hint": "synonyms for initiative", "clues": ["inaugural", "maiden", "first", "initiatory", "initiative"]}, {"answer": "initiatory", "hint": "synonyms for initiatory", "clues": ["inaugural", "initiative", "maiden", "first", "initiatory"]}, {"answer": "innate", "hint": "synonyms for innate", "clues": ["congenital", "unconditioned", "inborn", "natural", "unlearned", "born", "innate"]}, {"answer": "inner", "hint": "synonyms for inner", "clues": ["internal", "intimate", "inside", "privileged", "interior", "inner"]}, {"answer": "innocent", "hint": "synonyms for innocent", "clues": ["destitute", "devoid", "guiltless", "unacquainted", "sinless", "free", "barren", "clean-handed", "impeccant", "innocuous", "ingenuous", "innocent"]}, {"answer": "innovative", "hint": "synonyms for innovative", "clues": ["advanced", "innovational", "modern", "forward-looking", "groundbreaking", "innovative"]}, {"answer": "innumerable", "hint": "synonyms for innumerable", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "uncounted", "infinite", "unnumbered", "innumerous", "myriad"]}, {"answer": "innumerous", "hint": "synonyms for innumerous", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "uncounted", "infinite", "unnumbered", "myriad", "innumerous"]}, {"answer": "inscribed", "hint": "synonyms for inscribed", "clues": ["etched", "graven", "incised", "engraved", "inscribed"]}, {"answer": "inscrutable", "hint": "synonyms for inscrutable", "clues": ["cryptical", "mysterious", "mystifying", "deep", "inscrutable"]}, {"answer": "insensate", "hint": "synonyms for insensate", "clues": ["cold-blooded", "cold", "insentient", "inhuman", "insensate"]}, {"answer": "insensible", "hint": "synonyms for insensible", "clues": ["indiscernible", "unaffected", "senseless", "undetectable", "insensible"]}, {"answer": "insipid", "hint": "synonyms for insipid", "clues": ["jejune", "flat", "savourless", "bland", "vapid", "flavorless", "insipid"]}, {"answer": "insistent", "hint": "synonyms for insistent", "clues": ["clamant", "exigent", "crying", "instant", "repetitive", "insistent"]}, {"answer": "insolent", "hint": "synonyms for insolent", "clues": ["flip", "barefaced", "bodacious", "brazen-faced", "impudent", "brassy", "brazen", "snotty-nosed", "bald-faced", "audacious", "insolent"]}, {"answer": "instant", "hint": "synonyms for instant", "clues": ["clamant", "inst", "exigent", "crying", "instantaneous", "insistent", "instant"]}, {"answer": "instigative", "hint": "synonyms for instigative", "clues": ["incitive", "seditious", "inflammatory", "rabble-rousing", "incendiary", "instigative"]}, {"answer": "insupportable", "hint": "synonyms for insupportable", "clues": ["unjustifiable", "unwarrantable", "indefensible", "unwarranted", "insupportable"]}, {"answer": "integral", "hint": "synonyms for integral", "clues": ["entire", "constitutional", "inbuilt", "built-in", "intact", "inherent", "integral"]}, {"answer": "integrated", "hint": "synonyms for integrated", "clues": ["incorporate", "structured", "merged", "unified", "integrated"]}, {"answer": "intelligent", "hint": "synonyms for intelligent", "clues": ["reasoning", "level-headed", "healthy", "well-informed", "thinking", "sound", "intelligent"]}, {"answer": "intelligible", "hint": "synonyms for intelligible", "clues": ["apprehensible", "understandable", "graspable", "perceivable", "intelligible"]}, {"answer": "intent", "hint": "synonyms for intent", "clues": ["engrossed", "captive", "wrapped", "absorbed", "intent"]}, {"answer": "interchangeable", "hint": "synonyms for interchangeable", "clues": ["standardised", "similar", "exchangeable", "interchangeable"]}, {"answer": "interconnected", "hint": "synonyms for interconnected", "clues": ["unified", "co-ordinated", "interrelated", "interconnected"]}, {"answer": "interfering", "hint": "synonyms for interfering", "clues": ["officious", "busy", "busybodied", "meddlesome", "meddling", "interfering"]}, {"answer": "interior", "hint": "synonyms for interior", "clues": ["internal", "midland", "home", "upcountry", "inner", "national", "interior"]}, {"answer": "internal", "hint": "synonyms for internal", "clues": ["intimate", "home", "national", "intragroup", "inner", "interior", "internal"]}, {"answer": "intimate", "hint": "synonyms for intimate", "clues": ["internal", "knowledgeable", "informal", "familiar", "inner", "versed", "cozy", "sexual", "intimate"]}, {"answer": "intrepid", "hint": "synonyms for intrepid", "clues": ["dauntless", "unfearing", "fearless", "hardy", "brave", "audacious", "intrepid"]}, {"answer": "intumescent", "hint": "synonyms for intumescent", "clues": ["turgid", "tumid", "tumescent", "puffy"]}, {"answer": "inundated", "hint": "synonyms for inundated", "clues": ["afloat", "overflowing", "awash", "flooded", "inundated"]}, {"answer": "invasive", "hint": "synonyms for invasive", "clues": ["invading", "incursive", "trespassing", "encroaching", "invasive"]}, {"answer": "inviolable", "hint": "synonyms for inviolable", "clues": ["secure", "impregnable", "sacrosanct", "strong", "unattackable", "unassailable", "inviolate", "absolute", "infrangible", "inviolable"]}, {"answer": "involved", "hint": "synonyms for involved", "clues": ["tortuous", "Byzantine", "knotty", "mired", "tangled", "convoluted", "involved"]}, {"answer": "irascible", "hint": "synonyms for irascible", "clues": ["quick-tempered", "short-tempered", "hotheaded", "choleric", "irascible"]}, {"answer": "iridescent", "hint": "synonyms for iridescent", "clues": ["opalescent", "shot", "chatoyant", "opaline", "nacreous", "changeable", "iridescent"]}, {"answer": "irksome", "hint": "synonyms for irksome", "clues": ["boring", "tedious", "slow", "dull", "wearisome", "deadening", "tiresome", "ho-hum", "irksome"]}, {"answer": "irregular", "hint": "synonyms for irregular", "clues": ["atypical", "maverick", "unorthodox", "temporary", "unpredictable", "irregular"]}, {"answer": "irreverent", "hint": "synonyms for irreverent", "clues": ["pert", "godless", "impertinent", "saucy", "irreverent"]}, {"answer": "irritable", "hint": "synonyms for irritable", "clues": ["fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "excitable", "pettish", "peevish", "peckish", "petulant", "irritable"]}, {"answer": "irritated", "hint": "synonyms for irritated", "clues": ["nettled", "steamed", "pissed off", "annoyed", "riled", "pissed", "stung", "miffed", "peeved", "irritated"]}, {"answer": "irritating", "hint": "synonyms for irritating", "clues": ["teasing", "painful", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritative", "pestering", "vexing", "bothersome", "galling", "vexatious", "irritating"]}, {"answer": "isolated", "hint": "synonyms for isolated", "clues": ["set-apart", "stray", "obscure", "separated", "stranded", "marooned", "quarantined", "disjunct", "detached", "apart", "isolated"]}, {"answer": "itsy-bitsy", "hint": "synonyms for itsy-bitsy", "clues": ["teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy", "itsy-bitsy"]}, {"answer": "itty-bitty", "hint": "synonyms for itty-bitty", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "teensy-weensy", "itty-bitty"]}, {"answer": "jagged", "hint": "synonyms for jagged", "clues": ["erose", "toothed", "notched", "scraggy", "jaggy", "jagged"]}, {"answer": "jaggy", "hint": "synonyms for jaggy", "clues": ["erose", "scraggy", "toothed", "notched", "jagged", "jaggy"]}, {"answer": "janus-faced", "hint": "synonyms for janus-faced", "clues": ["Janus-faced", "double-dealing", "double-faced", "double-tongued", "deceitful", "two-faced", "ambidextrous", "duplicitous"]}, {"answer": "jaunty", "hint": "synonyms for jaunty", "clues": ["debonaire", "natty", "chipper", "dapper", "dashing", "snappy", "rakish", "spruce", "spiffy", "raffish", "jaunty"]}, {"answer": "jazzy", "hint": "synonyms for jazzy", "clues": ["flashy", "showy", "gaudy", "sporty", "jazzy"]}, {"answer": "jealous", "hint": "synonyms for jealous", "clues": ["covetous", "envious", "overjealous", "green-eyed", "jealous"]}, {"answer": "jeering", "hint": "synonyms for jeering", "clues": ["mocking", "derisive", "taunting", "gibelike", "jeering"]}, {"answer": "jejune", "hint": "synonyms for jejune", "clues": ["insubstantial", "insipid", "puerile", "juvenile", "adolescent", "jejune"]}, {"answer": "jerky", "hint": "synonyms for jerky", "clues": ["dopey", "goosey", "anserine", "gooselike", "choppy", "foolish", "arrhythmic", "jerking", "jerky"]}, {"answer": "jet", "hint": "synonyms for jet", "clues": ["sooty", "coal-black", "pitchy", "jet-black", "jet"]}, {"answer": "jet-black", "hint": "synonyms for jet-black", "clues": ["pitchy", "sooty", "coal-black", "jet", "jet-black"]}, {"answer": "jeweled", "hint": "synonyms for jeweled", "clues": ["spangly", "sequined", "jewelled", "spangled", "gemmed", "beady"]}, {"answer": "jewelled", "hint": "synonyms for jewelled", "clues": ["spangly", "sequined", "jeweled", "spangled", "gemmed", "beady"]}, {"answer": "jingoistic", "hint": "synonyms for jingoistic", "clues": ["nationalistic", "ultranationalistic", "flag-waving", "superpatriotic", "chauvinistic", "jingoistic"]}, {"answer": "jittery", "hint": "synonyms for jittery", "clues": ["jumpy", "overstrung", "edgy", "nervy", "restive", "high-strung", "uptight", "highly strung", "jittery"]}, {"answer": "jocund", "hint": "synonyms for jocund", "clues": ["jolly", "mirthful", "jovial", "merry", "gay", "jocund"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["mirthful", "jovial", "gay", "merry", "jocund", "jolly"]}, {"answer": "jolting", "hint": "synonyms for jolting", "clues": ["jumpy", "jolty", "bumpy", "rough", "rocky", "jolting"]}, {"answer": "jolty", "hint": "synonyms for jolty", "clues": ["jumpy", "bumpy", "jolting", "rough", "rocky", "jolty"]}, {"answer": "jovial", "hint": "synonyms for jovial", "clues": ["jolly", "mirthful", "gay", "merry", "jocund", "jovial"]}, {"answer": "jubilant", "hint": "synonyms for jubilant", "clues": ["elated", "rejoicing", "joyful", "triumphant", "exultant", "exulting", "gleeful", "prideful", "triumphal", "jubilant"]}, {"answer": "juicy", "hint": "synonyms for juicy", "clues": ["voluptuous", "toothsome", "red-hot", "gamey", "fat", "luscious", "blue", "racy", "risque", "spicy", "naughty", "juicy"]}, {"answer": "jumbled", "hint": "synonyms for jumbled", "clues": ["hugger-mugger", "topsy-turvy", "disorderly", "higgledy-piggledy", "jumbled"]}, {"answer": "jumpy", "hint": "synonyms for jumpy", "clues": ["overstrung", "edgy", "nervy", "jolting", "restive", "high-strung", "uptight", "bumpy", "jolty", "jittery", "highly strung", "rough", "rocky", "jumpy"]}, {"answer": "junior-grade", "hint": "synonyms for junior-grade", "clues": ["lower-ranking", "secondary", "subaltern", "lowly", "petty", "junior-grade"]}, {"answer": "just", "hint": "synonyms for just", "clues": ["upright", "good", "equitable", "fair", "just"]}, {"answer": "jutting", "hint": "synonyms for jutting", "clues": ["projected", "projecting", "protruding", "sticking", "relieved", "sticking out", "jutting"]}, {"answer": "k", "hint": "synonyms for k", "clues": ["one thousand", "m", "thousand", "1000", "k"]}, {"answer": "kayoed", "hint": "synonyms for kayoed", "clues": ["KO'd", "stunned", "knocked out", "out", "kayoed"]}, {"answer": "keen", "hint": "synonyms for keen", "clues": ["knifelike", "acute", "piercing", "dandy", "cutting", "penetrative", "neat", "incisive", "bully", "cracking", "sharp", "bang-up", "penetrating", "exquisite", "great", "stabbing", "slap-up", "nifty", "groovy", "smashing", "lancinate", "corking", "lancinating", "peachy", "not bad", "discriminating", "swell", "keen"]}, {"answer": "keen-sighted", "hint": "synonyms for keen-sighted", "clues": ["farseeing", "lynx-eyed", "sharp-sighted", "eagle-eyed", "argus-eyed", "quick-sighted", "sharp-eyed", "longsighted", "hawk-eyed", "keen-sighted"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["central", "cardinal", "primal", "fundamental", "key"]}, {"answer": "kin", "hint": "synonyms for kin", "clues": ["blood-related", "akin", "consanguine", "cognate"]}, {"answer": "kindly", "hint": "synonyms for kindly", "clues": ["openhearted", "good-hearted", "large-hearted", "benevolent", "sympathetic", "charitable", "kindly"]}, {"answer": "kinky", "hint": "synonyms for kinky", "clues": ["frizzly", "far-out", "perverted", "way-out", "crisp", "offbeat", "quirky", "nappy", "kinky"]}, {"answer": "kitschy", "hint": "synonyms for kitschy", "clues": ["mawkish", "sentimental", "mushy", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "slushy", "soppy", "kitschy"]}, {"answer": "kitty-corner", "hint": "synonyms for kitty-corner", "clues": ["cater-cornered", "catty-corner", "kitty-cornered", "catacorner"]}, {"answer": "kitty-cornered", "hint": "synonyms for kitty-cornered", "clues": ["cater-cornered", "catty-corner", "catacorner", "kitty-corner"]}, {"answer": "knavish", "hint": "synonyms for knavish", "clues": ["guileful", "wily", "dodgy", "tricksy", "foxy", "sly", "slick", "crafty", "cunning", "knavish"]}, {"answer": "knifelike", "hint": "synonyms for knifelike", "clues": ["acute", "piercing", "lancinate", "lancinating", "cutting", "penetrative", "keen", "incisive", "sharp", "penetrating", "discriminating", "stabbing", "knifelike"]}, {"answer": "knightly", "hint": "synonyms for knightly", "clues": ["gallant", "chivalrous", "chivalric", "medieval", "knightly"]}, {"answer": "knobbed", "hint": "synonyms for knobbed", "clues": ["knotted", "gnarly", "knotty", "gnarled", "knobbed"]}, {"answer": "knocked_out", "hint": "synonyms for knocked out", "clues": ["out", "KO'd", "stunned", "kayoed", "knocked out"]}, {"answer": "knotted", "hint": "synonyms for knotted", "clues": ["knotty", "gnarly", "gnarled", "knobbed", "knotted"]}, {"answer": "knotty", "hint": "synonyms for knotty", "clues": ["tortuous", "Byzantine", "snarly", "tangled", "elusive", "convoluted", "baffling", "knotted", "gnarly", "knobbed", "involved", "snarled", "problematic", "tough", "knotty"]}, {"answer": "knowing", "hint": "synonyms for knowing", "clues": ["learned", "intentional", "well-read", "wise to", "knowledgeable", "well-educated", "lettered", "wise", "knowing"]}, {"answer": "knowledgeable", "hint": "synonyms for knowledgeable", "clues": ["intimate", "learned", "well-educated", "lettered", "versed", "knowing", "well-read", "knowledgeable"]}, {"answer": "ko'd", "hint": "synonyms for ko'd", "clues": ["KO'd", "kayoed", "out", "knocked out", "stunned"]}, {"answer": "kookie", "hint": "synonyms for kookie", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "kookie"]}, {"answer": "kooky", "hint": "synonyms for kooky", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "kooky"]}, {"answer": "kyphotic", "hint": "synonyms for kyphotic", "clues": ["hunchbacked", "crookbacked", "humpbacked", "humped", "gibbous", "kyphotic"]}, {"answer": "la-di-da", "hint": "synonyms for la-di-da", "clues": ["highfalutin", "hoity-toity", "grandiose", "la-di-da"]}, {"answer": "laborious", "hint": "synonyms for laborious", "clues": ["punishing", "hard", "backbreaking", "gruelling", "heavy", "toilsome", "arduous", "operose", "laborious"]}, {"answer": "lachrymose", "hint": "synonyms for lachrymose", "clues": ["dolourous", "weeping", "tearful", "lachrymose"]}, {"answer": "lacking", "hint": "synonyms for lacking", "clues": ["wanting", "missing", "deficient", "absent", "lacking"]}, {"answer": "lacy", "hint": "synonyms for lacy", "clues": ["netted", "webbed", "netlike", "lacelike", "weblike", "webby", "lacy"]}, {"answer": "laid-off", "hint": "synonyms for laid-off", "clues": ["fired", "dismissed", "discharged", "pink-slipped", "laid-off"]}, {"answer": "lame", "hint": "synonyms for lame", "clues": ["feeble", "halting", "gimpy", "crippled", "game", "lame"]}, {"answer": "lamentable", "hint": "synonyms for lamentable", "clues": ["deplorable", "pitiful", "distressing", "sad", "sorry", "lamentable"]}, {"answer": "lancinate", "hint": "synonyms for lancinate", "clues": ["keen", "stabbing", "knifelike", "piercing", "lancinating", "cutting", "lancinate"]}, {"answer": "lancinating", "hint": "synonyms for lancinating", "clues": ["keen", "stabbing", "knifelike", "piercing", "lancinate", "cutting", "lancinating"]}, {"answer": "laputan", "hint": "synonyms for laputan", "clues": ["windy", "Laputan", "impractical", "airy", "visionary"]}, {"answer": "large", "hint": "synonyms for large", "clues": ["expectant", "gravid", "orotund", "heavy", "bombastic", "big", "with child", "turgid", "great", "prominent", "magnanimous", "declamatory", "enceinte", "tumid", "large"]}, {"answer": "large-hearted", "hint": "synonyms for large-hearted", "clues": ["openhearted", "good-hearted", "benevolent", "sympathetic", "kindly", "charitable", "large-hearted"]}, {"answer": "larger", "hint": "synonyms for larger", "clues": ["expectant", "gravid", "orotund", "heavy", "bombastic", "bigger", "big", "with child", "great", "tumid", "magnanimous", "prominent", "declamatory", "enceinte", "turgid", "large"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["final", "terminal", "utmost", "last-place", "net", "lowest", "concluding", "last"]}, {"answer": "lasting", "hint": "synonyms for lasting", "clues": ["permanent", "long-lived", "persistent", "long-lasting", "durable", "lasting"]}, {"answer": "late", "hint": "synonyms for late", "clues": ["recent", "belated", "previous", "later", "tardy", "former"]}, {"answer": "late-blooming", "hint": "synonyms for late-blooming", "clues": ["late-flowering", "fall-flowering", "autumn-blooming", "fall-blooming", "autumn-flowering", "late-blooming"]}, {"answer": "late-flowering", "hint": "synonyms for late-flowering", "clues": ["autumn-flowering", "fall-flowering", "autumn-blooming", "fall-blooming", "late-blooming", "late-flowering"]}, {"answer": "late-spring-blooming", "hint": "synonyms for late-spring-blooming", "clues": ["spring-blooming", "early-flowering", "early-blooming", "spring-flowering"]}, {"answer": "later", "hint": "synonyms for later", "clues": ["posterior", "belated", "ulterior", "tardy", "former", "recent", "late", "previous"]}, {"answer": "latest", "hint": "synonyms for latest", "clues": ["belated", "modish", "in style", "tardy", "in vogue", "former", "recent", "late", "previous", "a la mode", "up-to-the-minute", "latest"]}, {"answer": "laughable", "hint": "synonyms for laughable", "clues": ["derisory", "preposterous", "risible", "nonsensical", "funny", "idiotic", "absurd", "comical", "mirthful", "cockeyed", "ridiculous", "amusing", "ludicrous", "comic", "laughable"]}, {"answer": "lavish", "hint": "synonyms for lavish", "clues": ["too-generous", "plushy", "unstinted", "lush", "unsparing", "overgenerous", "lucullan", "munificent", "unstinting", "lavish"]}, {"answer": "lawful", "hint": "synonyms for lawful", "clues": ["rule-governed", "legitimate", "rightful", "licit", "true", "lawful"]}, {"answer": "lawless", "hint": "synonyms for lawless", "clues": ["outlaw", "wide-open", "anarchical", "lawless"]}, {"answer": "lazy", "hint": "synonyms for lazy", "clues": ["slothful", "faineant", "otiose", "indolent", "work-shy", "lazy"]}, {"answer": "leaden", "hint": "synonyms for leaden", "clues": ["dull", "plodding", "heavy", "weighted", "leaden"]}, {"answer": "leading", "hint": "synonyms for leading", "clues": ["star", "starring", "ahead", "in the lead", "stellar", "prima", "preeminent", "leading"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["tipped", "atilt", "canted", "tilted", "leaning"]}, {"answer": "learned", "hint": "synonyms for learned", "clues": ["knowledgeable", "conditioned", "well-educated", "lettered", "knowing", "well-read", "erudite", "learned"]}, {"answer": "leery", "hint": "synonyms for leery", "clues": ["wary", "mistrustful", "suspicious", "untrusting", "leery"]}, {"answer": "left", "hint": "synonyms for left", "clues": ["left-hand", "odd", "left over", "unexpended", "remaining", "left"]}, {"answer": "left-handed", "hint": "synonyms for left-handed", "clues": ["ham-fisted", "morganatic", "levorotatory", "handless", "heavy-handed", "butterfingered", "bungling", "bumbling", "ham-handed", "left-handed"]}, {"answer": "left_over", "hint": "synonyms for left over", "clues": ["odd", "unexpended", "left", "leftover", "remaining"]}, {"answer": "leftover", "hint": "synonyms for leftover", "clues": ["odd", "left over", "unexpended", "left", "remaining"]}, {"answer": "lemonlike", "hint": "synonyms for lemonlike", "clues": ["tangy", "tart", "sourish", "lemony", "lemonlike"]}, {"answer": "lemony", "hint": "synonyms for lemony", "clues": ["tangy", "tart", "sourish", "lemonlike", "lemony"]}, {"answer": "lengthy", "hint": "synonyms for lengthy", "clues": ["drawn-out", "prolonged", "protracted", "extended", "lengthy"]}, {"answer": "lenitive", "hint": "synonyms for lenitive", "clues": ["alleviatory", "alleviative", "mitigatory", "mitigative", "lenitive"]}, {"answer": "lepidote", "hint": "synonyms for lepidote", "clues": ["scurfy", "scaly", "leprose", "scabrous", "lepidote"]}, {"answer": "leprose", "hint": "synonyms for leprose", "clues": ["scabrous", "scaly", "scurfy", "lepidote", "leprose"]}, {"answer": "lettered", "hint": "synonyms for lettered", "clues": ["knowledgeable", "learned", "well-educated", "knowing", "well-read", "lettered"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["plane", "tied", "unwavering", "flat", "even", "level"]}, {"answer": "level-headed", "hint": "synonyms for level-headed", "clues": ["sound", "intelligent", "healthy", "levelheaded"]}, {"answer": "levelheaded", "hint": "synonyms for levelheaded", "clues": ["sound", "level-headed", "intelligent", "healthy"]}, {"answer": "lewd", "hint": "synonyms for lewd", "clues": ["raunchy", "obscene", "lustful", "salacious", "lascivious", "libidinous", "lewd"]}, {"answer": "liable", "hint": "synonyms for liable", "clues": ["nonimmune", "unresistant", "apt", "liable"]}, {"answer": "libellous", "hint": "synonyms for libellous", "clues": ["denigratory", "denigrative", "slanderous", "calumniatory", "defamatory", "libelous", "calumnious", "denigrating"]}, {"answer": "libelous", "hint": "synonyms for libelous", "clues": ["denigratory", "denigrative", "slanderous", "libellous", "calumniatory", "defamatory", "calumnious", "denigrating"]}, {"answer": "liberal", "hint": "synonyms for liberal", "clues": ["tolerant", "openhanded", "bounteous", "bighearted", "big", "large-minded", "handsome", "freehanded", "bountiful", "loose", "giving", "broad", "free", "liberal"]}, {"answer": "libertine", "hint": "synonyms for libertine", "clues": ["degenerate", "degraded", "debauched", "fast", "profligate", "dissolute", "riotous", "dissipated", "libertine"]}, {"answer": "life-threatening", "hint": "synonyms for life-threatening", "clues": ["grievous", "grave", "severe", "serious", "dangerous", "life-threatening"]}, {"answer": "lifelike", "hint": "synonyms for lifelike", "clues": ["natural", "pictorial", "graphic", "vivid", "lifelike"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["swooning", "easy", "unaccented", "light-colored", "weak", "short", "loose", "wanton", "low-cal", "wakeful", "sluttish", "lite", "lightheaded", "tripping", "lightsome", "promiscuous", "clean", "idle", "unclouded", "calorie-free", "faint", "scant", "abstemious", "clear", "light"]}, {"answer": "light-headed", "hint": "synonyms for light-headed", "clues": ["swooning", "light", "airheaded", "giddy", "featherbrained", "dizzy", "faint", "silly", "lightheaded", "empty-headed"]}, {"answer": "light-hearted", "hint": "synonyms for light-hearted", "clues": ["blithe", "lightsome", "blithesome", "lighthearted"]}, {"answer": "lightheaded", "hint": "synonyms for lightheaded", "clues": ["swooning", "light", "airheaded", "giddy", "featherbrained", "dizzy", "faint", "silly", "light-headed", "empty-headed"]}, {"answer": "lighthearted", "hint": "synonyms for lighthearted", "clues": ["blithe", "lightsome", "blithesome", "light-hearted"]}, {"answer": "lightsome", "hint": "synonyms for lightsome", "clues": ["blithe", "blithesome", "light", "lighthearted", "tripping", "lightsome"]}, {"answer": "like", "hint": "synonyms for like", "clues": ["alike", "similar", "same", "comparable", "corresponding"]}, {"answer": "lilliputian", "hint": "synonyms for lilliputian", "clues": ["piffling", "bantam", "niggling", "fiddling", "tiny", "footling", "picayune", "flyspeck", "trivial", "Lilliputian", "midget", "petty", "petite", "little", "diminutive"]}, {"answer": "lily-livered", "hint": "synonyms for lily-livered", "clues": ["yellow-bellied", "yellow", "chicken", "white-livered", "chickenhearted", "lily-livered"]}, {"answer": "limiting", "hint": "synonyms for limiting", "clues": ["constrictive", "restricting", "constraining", "confining", "limiting"]}, {"answer": "limitless", "hint": "synonyms for limitless", "clues": ["measureless", "unbounded", "illimitable", "unlimited", "boundless", "limitless"]}, {"answer": "limpid", "hint": "synonyms for limpid", "clues": ["crystal clear", "perspicuous", "lucid", "crystalline", "liquid", "luculent", "pellucid", "transparent", "limpid"]}, {"answer": "linear", "hint": "synonyms for linear", "clues": ["analog", "running", "elongate", "one-dimensional", "additive", "linear"]}, {"answer": "liquid", "hint": "synonyms for liquid", "clues": ["liquified", "smooth", "swimming", "fluent", "melted", "fluid", "limpid", "liquid"]}, {"answer": "liquified", "hint": "synonyms for liquified", "clues": ["molten", "liquid", "melted", "liquefied"]}, {"answer": "lissom", "hint": "synonyms for lissom", "clues": ["lithesome", "slender", "sylphlike", "supple", "lissome", "lithe", "svelte"]}, {"answer": "lissome", "hint": "synonyms for lissome", "clues": ["svelte", "lithesome", "slender", "sylphlike", "supple", "lithe", "lissom"]}, {"answer": "lithe", "hint": "synonyms for lithe", "clues": ["svelte", "lithesome", "slender", "supple", "lissome", "sylphlike", "lithe"]}, {"answer": "lithesome", "hint": "synonyms for lithesome", "clues": ["svelte", "slender", "sylphlike", "supple", "lissome", "lithe", "lithesome"]}, {"answer": "litigious", "hint": "synonyms for litigious", "clues": ["disputatious", "disputative", "contentious", "combative", "litigious"]}, {"answer": "little", "hint": "synonyms for little", "clues": ["small", "piffling", "niggling", "fiddling", "petty", "slight", "short", "minuscule", "footling", "picayune", "lilliputian", "trivial", "little"]}, {"answer": "littler", "hint": "synonyms for littler", "clues": ["small", "piffling", "niggling", "fiddling", "petty", "slight", "short", "minuscule", "smaller", "footling", "picayune", "lilliputian", "trivial", "little"]}, {"answer": "live", "hint": "synonyms for live", "clues": ["resilient", "lively", "alive", "hot", "bouncy", "unrecorded", "springy"]}, {"answer": "lively", "hint": "synonyms for lively", "clues": ["full of life", "alert", "vital", "bouncy", "snappy", "live", "resilient", "brisk", "racy", "merry", "rattling", "spanking", "springy", "zippy"]}, {"answer": "liverish", "hint": "synonyms for liverish", "clues": ["bilious", "livery", "atrabilious", "dyspeptic", "liverish"]}, {"answer": "livid", "hint": "synonyms for livid", "clues": ["blanched", "white", "black-and-blue", "ashen", "bloodless", "livid"]}, {"answer": "loaded", "hint": "synonyms for loaded", "clues": ["pie-eyed", "tight", "squiffy", "blind drunk", "ladened", "flush", "pissed", "laden", "soused", "sozzled", "cockeyed", "affluent", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "wealthy", "wet", "pixilated", "smashed", "crocked", "moneyed", "plastered", "loaded"]}, {"answer": "loaded_down", "hint": "synonyms for loaded down", "clues": ["heavy-laden", "weighed down", "overburdened", "burdened", "bowed down", "loaded down"]}, {"answer": "loath", "hint": "synonyms for loath", "clues": ["indisposed", "averse", "antipathetic", "reluctant", "loth"]}, {"answer": "loathly", "hint": "synonyms for loathly", "clues": ["repellent", "repelling", "wicked", "yucky", "disgustful", "loathsome", "foul", "skanky", "disgusting", "distasteful", "revolting", "loathly"]}, {"answer": "loathsome", "hint": "synonyms for loathsome", "clues": ["queasy", "repelling", "nauseating", "yucky", "foul", "repellant", "noisome", "revolting", "skanky", "loathly", "offensive", "disgustful", "nauseous", "vile", "sickening", "wicked", "disgusting", "distasteful", "loathsome"]}, {"answer": "loco", "hint": "synonyms for loco", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "loco"]}, {"answer": "lofty", "hint": "synonyms for lofty", "clues": ["idealistic", "grand", "rarified", "high-flown", "sublime", "gallant", "noble-minded", "soaring", "exalted", "towering", "eminent", "high-minded", "proud", "majestic", "elevated", "lofty"]}, {"answer": "loggerheaded", "hint": "synonyms for loggerheaded", "clues": ["blockheaded", "fatheaded", "boneheaded", "thickheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled", "loggerheaded"]}, {"answer": "logical", "hint": "synonyms for logical", "clues": ["lucid", "coherent", "legitimate", "consistent", "ordered", "logical"]}, {"answer": "logy", "hint": "synonyms for logy", "clues": ["stuporous", "dazed", "groggy", "foggy", "logy"]}, {"answer": "lone", "hint": "synonyms for lone", "clues": ["only", "lonely", "alone", "solitary", "lonesome", "sole"]}, {"answer": "lonely", "hint": "synonyms for lonely", "clues": ["lone", "solitary", "unfrequented", "lonesome"]}, {"answer": "lonesome", "hint": "synonyms for lonesome", "clues": ["lone", "only", "solitary", "sole", "lonesome"]}, {"answer": "long", "hint": "synonyms for long", "clues": ["foresightful", "farseeing", "foresighted", "tenacious", "prospicient", "recollective", "retentive", "longsighted", "long"]}, {"answer": "long-winded", "hint": "synonyms for long-winded", "clues": ["tedious", "windy", "verbose", "wordy", "long-winded"]}, {"answer": "longsighted", "hint": "synonyms for longsighted", "clues": ["foresightful", "farseeing", "foresighted", "eagle-eyed", "prospicient", "long", "keen-sighted", "longsighted"]}, {"answer": "loony", "hint": "synonyms for loony", "clues": ["fruity", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "loony"]}, {"answer": "loopy", "hint": "synonyms for loopy", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "loopy"]}, {"answer": "loose", "hint": "synonyms for loose", "clues": ["light", "escaped", "liberal", "lax", "open", "at large", "easy", "on the loose", "idle", "wanton", "slack", "informal", "sluttish", "promiscuous", "unaffixed", "free", "loose"]}, {"answer": "lopsided", "hint": "synonyms for lopsided", "clues": ["skew-whiff", "wonky", "cockeyed", "awry", "askew", "lopsided"]}, {"answer": "loquacious", "hint": "synonyms for loquacious", "clues": ["garrulous", "chatty", "talkative", "talky", "gabby", "loquacious"]}, {"answer": "lordly", "hint": "synonyms for lordly", "clues": ["haughty", "grand", "august", "sniffy", "overbearing", "disdainful", "imperious", "prideful", "swaggering", "supercilious", "lordly"]}, {"answer": "lost", "hint": "synonyms for lost", "clues": ["deep in thought", "disoriented", "preoccupied", "confused", "bewildered", "bemused", "missed", "at sea", "mazed", "mixed-up", "befuddled", "confounded", "baffled", "helpless", "lost"]}, {"answer": "loth", "hint": "synonyms for loth", "clues": ["indisposed", "averse", "antipathetic", "reluctant", "loath"]}, {"answer": "loud", "hint": "synonyms for loud", "clues": ["meretricious", "flash", "tacky", "tatty", "cheap", "tawdry", "gimcrack", "trashy", "garish", "brassy", "forte", "gaudy", "loud"]}, {"answer": "lousy", "hint": "synonyms for lousy", "clues": ["dirty", "icky", "stinky", "rotten", "stinking", "shitty", "crappy", "filthy", "lousy"]}, {"answer": "loutish", "hint": "synonyms for loutish", "clues": ["oafish", "neanderthal", "swinish", "boorish", "loutish"]}, {"answer": "lovesome", "hint": "synonyms for lovesome", "clues": ["fond", "tender", "affectionate", "warm", "lovesome"]}, {"answer": "low", "hint": "synonyms for low", "clues": ["low-down", "down", "small", "depressed", "low-pitched", "scummy", "depleted", "low-spirited", "crushed", "downhearted", "abject", "grim", "humiliated", "blue", "down in the mouth", "humble", "low-toned", "gloomy", "lowly", "scurvy", "downcast", "broken", "modest", "dispirited", "miserable"]}, {"answer": "low-down", "hint": "synonyms for low-down", "clues": ["scurvy", "abject", "funky", "miserable", "low", "scummy", "low-down"]}, {"answer": "low-set", "hint": "synonyms for low-set", "clues": ["lowset", "dumpy", "stumpy", "squatty", "chunky", "squat"]}, {"answer": "low-spirited", "hint": "synonyms for low-spirited", "clues": ["down", "depressed", "gloomy", "downcast", "dispirited", "downhearted", "grim", "blue", "down in the mouth", "low", "low-spirited"]}, {"answer": "lowbred", "hint": "synonyms for lowbred", "clues": ["ill-bred", "bounderish", "underbred", "yokelish", "rude", "lowbred"]}, {"answer": "lower-ranking", "hint": "synonyms for lower-ranking", "clues": ["junior-grade", "secondary", "subaltern", "lowly", "petty", "lower-ranking"]}, {"answer": "lowest", "hint": "synonyms for lowest", "clues": ["low-down", "down", "small", "depressed", "low-pitched", "last", "scummy", "depleted", "low-spirited", "crushed", "downhearted", "abject", "grim", "humiliated", "blue", "last-place", "down in the mouth", "low", "humble", "gloomy", "scurvy", "downcast", "broken", "modest", "dispirited", "miserable", "low-toned", "lowest"]}, {"answer": "lowly", "hint": "synonyms for lowly", "clues": ["base", "baseborn", "small", "junior-grade", "subaltern", "petty", "lower-ranking", "modest", "secondary", "menial", "low", "humble"]}, {"answer": "loyal", "hint": "synonyms for loyal", "clues": ["truehearted", "fast", "patriotic", "firm", "loyal"]}, {"answer": "lucid", "hint": "synonyms for lucid", "clues": ["crystal clear", "perspicuous", "coherent", "limpid", "logical", "crystalline", "luculent", "pellucid", "transparent", "lucid"]}, {"answer": "lucky", "hint": "synonyms for lucky", "clues": ["favourable", "golden", "prosperous", "lucky"]}, {"answer": "luculent", "hint": "synonyms for luculent", "clues": ["crystal clear", "perspicuous", "lucid", "limpid", "pellucid", "luculent"]}, {"answer": "lucullan", "hint": "synonyms for lucullan", "clues": ["plushy", "lush", "lavish", "lucullan"]}, {"answer": "ludicrous", "hint": "synonyms for ludicrous", "clues": ["derisory", "preposterous", "nonsensical", "idiotic", "absurd", "ridiculous", "cockeyed", "farcical", "laughable", "ludicrous"]}, {"answer": "luscious", "hint": "synonyms for luscious", "clues": ["delectable", "voluptuous", "red-hot", "toothsome", "juicy", "delicious", "pleasant-tasting", "scrumptious", "yummy", "luscious"]}, {"answer": "lush", "hint": "synonyms for lush", "clues": ["profuse", "exuberant", "plushy", "succulent", "lucullan", "lavish", "riotous", "luxuriant", "lush"]}, {"answer": "lustful", "hint": "synonyms for lustful", "clues": ["lusty", "prurient", "concupiscent", "lubricious", "lascivious", "salacious", "lewd", "libidinous", "lustful"]}, {"answer": "lustrous", "hint": "synonyms for lustrous", "clues": ["burnished", "sheeny", "glistening", "shiny", "bright", "shining", "glossy", "lustrous"]}, {"answer": "lusty", "hint": "synonyms for lusty", "clues": ["lustful", "full-blooded", "red-blooded", "concupiscent", "hearty", "lusty"]}, {"answer": "luxuriant", "hint": "synonyms for luxuriant", "clues": ["profuse", "voluptuous", "exuberant", "elaborate", "voluptuary", "sybaritic", "lush", "epicurean", "riotous", "luxurious", "luxuriant"]}, {"answer": "luxurious", "hint": "synonyms for luxurious", "clues": ["grand", "deluxe", "voluptuous", "voluptuary", "gilded", "sybaritic", "princely", "epicurean", "opulent", "sumptuous", "luxuriant", "luxurious"]}, {"answer": "lynx-eyed", "hint": "synonyms for lynx-eyed", "clues": ["argus-eyed", "quick-sighted", "sharp-sighted", "sharp-eyed", "keen-sighted", "hawk-eyed", "lynx-eyed"]}, {"answer": "m", "hint": "synonyms for m", "clues": ["k", "thousand", "one thousand", "1000", "m"]}, {"answer": "macabre", "hint": "synonyms for macabre", "clues": ["grisly", "gruesome", "grim", "ghastly", "sick", "macabre"]}, {"answer": "machinelike", "hint": "synonyms for machinelike", "clues": ["automatonlike", "robotlike", "automatic", "robotic", "machinelike"]}, {"answer": "mad", "hint": "synonyms for mad", "clues": ["delirious", "brainsick", "unhinged", "sore", "demented", "disturbed", "unrestrained", "harebrained", "huffy", "frantic", "crazy", "excited", "insane", "sick", "unbalanced", "mad"]}, {"answer": "madcap", "hint": "synonyms for madcap", "clues": ["impulsive", "hotheaded", "brainish", "impetuous", "tearaway", "madcap"]}, {"answer": "maddened", "hint": "synonyms for maddened", "clues": ["infuriated", "enraged", "furious", "angered", "maddened"]}, {"answer": "made-to-order", "hint": "synonyms for made-to-order", "clues": ["bespoken", "tailored", "tailor-made", "custom-built", "made-to-order"]}, {"answer": "magic", "hint": "synonyms for magic", "clues": ["wizardly", "sorcerous", "charming", "magical", "witching", "magic"]}, {"answer": "magical", "hint": "synonyms for magical", "clues": ["magic", "wizardly", "sorcerous", "charming", "witching", "magical"]}, {"answer": "magisterial", "hint": "synonyms for magisterial", "clues": ["autocratic", "grand", "high-and-mighty", "dominating", "imposing", "distinguished", "peremptory", "bossy", "magisterial"]}, {"answer": "maiden", "hint": "synonyms for maiden", "clues": ["inaugural", "initiative", "first", "initiatory", "maiden"]}, {"answer": "main", "hint": "synonyms for main", "clues": ["primary", "master", "principal", "independent", "chief", "main"]}, {"answer": "majestic", "hint": "synonyms for majestic", "clues": ["olympian", "regal", "purple", "gallant", "royal", "proud", "imperial", "lofty", "majestic"]}, {"answer": "male", "hint": "synonyms for male", "clues": ["virile", "manlike", "manly", "manful", "male"]}, {"answer": "malformed", "hint": "synonyms for malformed", "clues": ["misshapen", "deformed", "ill-shapen", "distorted", "malformed"]}, {"answer": "malleable", "hint": "synonyms for malleable", "clues": ["pliant", "tensile", "tractile", "pliable", "ductile", "malleable"]}, {"answer": "malodorous", "hint": "synonyms for malodorous", "clues": ["ill-smelling", "stinky", "malodourous", "unpleasant-smelling"]}, {"answer": "malodourous", "hint": "synonyms for malodourous", "clues": ["stinky", "ill-smelling", "malodorous", "unpleasant-smelling"]}, {"answer": "manageable", "hint": "synonyms for manageable", "clues": ["doable", "accomplishable", "achievable", "realizable", "manageable"]}, {"answer": "manful", "hint": "synonyms for manful", "clues": ["male", "manlike", "virile", "manly", "manful"]}, {"answer": "manifest", "hint": "synonyms for manifest", "clues": ["plain", "evident", "patent", "apparent", "unmistakable", "manifest"]}, {"answer": "manlike", "hint": "synonyms for manlike", "clues": ["male", "anthropoid", "virile", "manly", "manful", "manlike"]}, {"answer": "manly", "hint": "synonyms for manly", "clues": ["male", "manlike", "virile", "manful", "manly"]}, {"answer": "mantic", "hint": "synonyms for mantic", "clues": ["sibylline", "sibyllic", "vatic", "vatical", "divinatory", "mantic"]}, {"answer": "mantled", "hint": "synonyms for mantled", "clues": ["wrapped", "draped", "clothed", "cloaked", "mantled"]}, {"answer": "many-sided", "hint": "synonyms for many-sided", "clues": ["multilateral", "multifarious", "multifaceted", "miscellaneous", "many-sided"]}, {"answer": "marketable", "hint": "synonyms for marketable", "clues": ["merchantable", "sellable", "vendible", "marketable"]}, {"answer": "marshy", "hint": "synonyms for marshy", "clues": ["soggy", "muddy", "mucky", "miry", "quaggy", "sloughy", "swampy", "sloppy", "waterlogged", "squashy", "boggy", "marshy"]}, {"answer": "martial", "hint": "synonyms for martial", "clues": ["warlike", "soldierly", "soldierlike", "warriorlike", "martial"]}, {"answer": "marvellous", "hint": "synonyms for marvellous", "clues": ["marvelous", "grand", "wonderful", "wondrous", "fantastic", "howling", "improbable", "miraculous", "tremendous", "terrific", "tall", "rattling"]}, {"answer": "marvelous", "hint": "synonyms for marvelous", "clues": ["grand", "wonderful", "wondrous", "fantastic", "howling", "improbable", "miraculous", "tremendous", "terrific", "tall", "rattling", "marvellous"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["chief", "primary", "main", "principal", "master"]}, {"answer": "matching", "hint": "synonyms for matching", "clues": ["duplicate", "twin", "co-ordinated", "twinned", "matching"]}, {"answer": "matchless", "hint": "synonyms for matchless", "clues": ["unmatched", "unrivalled", "nonpareil", "one", "one and only", "unmatchable", "peerless", "matchless"]}, {"answer": "materialistic", "hint": "synonyms for materialistic", "clues": ["mercenary", "conservative", "worldly-minded", "bourgeois", "materialistic"]}, {"answer": "maternal", "hint": "synonyms for maternal", "clues": ["enate", "enatic", "paternal", "parental"]}, {"answer": "maudlin", "hint": "synonyms for maudlin", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "drippy", "soupy", "bathetic", "slushy", "soppy", "maudlin"]}, {"answer": "mawkish", "hint": "synonyms for mawkish", "clues": ["kitschy", "mushy", "sentimental", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "slushy", "soppy", "mawkish"]}, {"answer": "mazed", "hint": "synonyms for mazed", "clues": ["bewildered", "confused", "bemused", "at sea", "lost", "mixed-up", "befuddled", "confounded", "baffled", "mazed"]}, {"answer": "meager", "hint": "synonyms for meager", "clues": ["stingy", "meagerly", "scrimpy", "meagre"]}, {"answer": "meagerly", "hint": "synonyms for meagerly", "clues": ["stingy", "meager", "scrimpy", "meagre"]}, {"answer": "meagre", "hint": "synonyms for meagre", "clues": ["stingy", "meagerly", "scrimpy", "meagre"]}, {"answer": "mealy", "hint": "synonyms for mealy", "clues": ["coarse-grained", "granulose", "grainy", "granular", "farinaceous", "gritty", "mealy"]}, {"answer": "mean", "hint": "synonyms for mean", "clues": ["base", "tight", "hateful", "average", "meanspirited", "miserly", "beggarly", "mingy", "bastardly", "mean"]}, {"answer": "measured", "hint": "synonyms for measured", "clues": ["careful", "mensural", "deliberate", "metric", "calculated", "measured"]}, {"answer": "meddlesome", "hint": "synonyms for meddlesome", "clues": ["officious", "busy", "interfering", "busybodied", "meddling", "meddlesome"]}, {"answer": "meddling", "hint": "synonyms for meddling", "clues": ["officious", "busy", "interfering", "busybodied", "meddlesome", "meddling"]}, {"answer": "medieval", "hint": "synonyms for medieval", "clues": ["gothic", "knightly", "mediaeval", "chivalric"]}, {"answer": "mediocre", "hint": "synonyms for mediocre", "clues": ["average", "middling", "second-rate", "fair", "mediocre"]}, {"answer": "meditative", "hint": "synonyms for meditative", "clues": ["broody", "brooding", "ruminative", "musing", "reflective", "contemplative", "pondering", "pensive", "meditative"]}, {"answer": "meek", "hint": "synonyms for meek", "clues": ["tame", "spiritless", "mild", "modest", "meek"]}, {"answer": "mellifluous", "hint": "synonyms for mellifluous", "clues": ["mellisonant", "sweet", "dulcet", "honeyed", "mellifluous"]}, {"answer": "mellisonant", "hint": "synonyms for mellisonant", "clues": ["sweet", "mellifluous", "dulcet", "honeyed", "mellisonant"]}, {"answer": "menacing", "hint": "synonyms for menacing", "clues": ["baleful", "forbidding", "ominous", "minatory", "threatening", "minacious", "sinister", "menacing"]}, {"answer": "mercenary", "hint": "synonyms for mercenary", "clues": ["moneymaking", "materialistic", "free-lance", "worldly-minded", "mercantile", "mercenary"]}, {"answer": "merchantable", "hint": "synonyms for merchantable", "clues": ["sellable", "marketable", "vendible", "merchantable"]}, {"answer": "mercurial", "hint": "synonyms for mercurial", "clues": ["Mercurial", "erratic", "fickle", "quicksilver"]}, {"answer": "meretricious", "hint": "synonyms for meretricious", "clues": ["flash", "tacky", "tatty", "cheap", "tawdry", "gilded", "specious", "gimcrack", "loud", "trashy", "garish", "brassy", "gaudy", "meretricious"]}, {"answer": "merged", "hint": "synonyms for merged", "clues": ["incorporate", "integrated", "unified", "merged"]}, {"answer": "meritless", "hint": "synonyms for meritless", "clues": ["no-count", "good-for-nothing", "good-for-naught", "no-good", "sorry", "meritless"]}, {"answer": "merry", "hint": "synonyms for merry", "clues": ["jolly", "festal", "alert", "lively", "jocund", "snappy", "spanking", "mirthful", "jovial", "brisk", "rattling", "festive", "gay", "zippy", "merry"]}, {"answer": "mesmerised", "hint": "synonyms for mesmerised", "clues": ["mesmerized", "fascinated", "transfixed", "hypnotized", "spell-bound"]}, {"answer": "mesmerized", "hint": "synonyms for mesmerized", "clues": ["fascinated", "transfixed", "hypnotized", "spell-bound", "mesmerised"]}, {"answer": "meted_out", "hint": "synonyms for meted out", "clues": ["parceled out", "apportioned", "doled out", "dealt out", "meted out"]}, {"answer": "mettlesome", "hint": "synonyms for mettlesome", "clues": ["spirited", "gamy", "spunky", "game", "gritty", "mettlesome"]}, {"answer": "miasmic", "hint": "synonyms for miasmic", "clues": ["miasmal", "mephitic", "vaporous", "miasmic"]}, {"answer": "middle", "hint": "synonyms for middle", "clues": ["center", "midway", "mediate", "halfway", "in-between", "middle"]}, {"answer": "midget", "hint": "synonyms for midget", "clues": ["bantam", "petite", "flyspeck", "lilliputian", "tiny", "diminutive", "midget"]}, {"answer": "miffed", "hint": "synonyms for miffed", "clues": ["nettled", "steamed", "pissed off", "annoyed", "riled", "pissed", "stung", "peeved", "irritated", "miffed"]}, {"answer": "mild", "hint": "synonyms for mild", "clues": ["meek", "soft", "modest", "balmy", "mild"]}, {"answer": "militant", "hint": "synonyms for militant", "clues": ["warlike", "belligerent", "hawkish", "war-ridden", "warring", "competitive", "militant"]}, {"answer": "minacious", "hint": "synonyms for minacious", "clues": ["baleful", "forbidding", "ominous", "minatory", "menacing", "threatening", "sinister", "minacious"]}, {"answer": "minatory", "hint": "synonyms for minatory", "clues": ["baleful", "forbidding", "ominous", "menacing", "threatening", "minacious", "sinister", "minatory"]}, {"answer": "mincing", "hint": "synonyms for mincing", "clues": ["twee", "prim", "niminy-piminy", "dainty", "mincing"]}, {"answer": "minded", "hint": "synonyms for minded", "clues": ["disposed", "given", "apt", "tending", "minded"]}, {"answer": "mindless", "hint": "synonyms for mindless", "clues": ["asinine", "fatuous", "unmindful", "inane", "senseless", "vacuous", "forgetful", "reasonless", "mindless"]}, {"answer": "minor", "hint": "synonyms for minor", "clues": ["small-scale", "pocket-size", "small", "underage", "nonaged", "modest", "venial", "minor"]}, {"answer": "minuscule", "hint": "synonyms for minuscule", "clues": ["miniscule", "minuscular", "small", "little"]}, {"answer": "miraculous", "hint": "synonyms for miraculous", "clues": ["marvelous", "providential", "heaven-sent", "miraculous"]}, {"answer": "mirky", "hint": "synonyms for mirky", "clues": ["turbid", "muddy", "murky", "cloudy", "mirky"]}, {"answer": "mirthful", "hint": "synonyms for mirthful", "clues": ["jolly", "risible", "laughable", "funny", "jocund", "comical", "jovial", "amusing", "merry", "comic", "gay", "mirthful"]}, {"answer": "miry", "hint": "synonyms for miry", "clues": ["soggy", "muddy", "marshy", "mucky", "quaggy", "sloughy", "swampy", "sloppy", "waterlogged", "squashy", "boggy", "miry"]}, {"answer": "miscellaneous", "hint": "synonyms for miscellaneous", "clues": ["multifarious", "sundry", "mixed", "assorted", "motley", "many-sided", "multifaceted", "miscellaneous"]}, {"answer": "mischievous", "hint": "synonyms for mischievous", "clues": ["puckish", "prankish", "impish", "arch", "wicked", "implike", "pixilated", "mischievous"]}, {"answer": "miserable", "hint": "synonyms for miserable", "clues": ["low-down", "pitiable", "piteous", "suffering", "scummy", "poor", "abject", "pitiful", "low", "execrable", "pathetic", "measly", "wretched", "paltry", "hapless", "scurvy", "woeful", "deplorable", "misfortunate", "miserable"]}, {"answer": "misfortunate", "hint": "synonyms for misfortunate", "clues": ["pathetic", "pitiable", "wretched", "piteous", "hapless", "poor", "pitiful", "miserable", "misfortunate"]}, {"answer": "misshapen", "hint": "synonyms for misshapen", "clues": ["deformed", "ill-shapen", "distorted", "malformed", "misshapen"]}, {"answer": "mistrustful", "hint": "synonyms for mistrustful", "clues": ["wary", "leery", "suspicious", "untrusting", "mistrustful"]}, {"answer": "mitigative", "hint": "synonyms for mitigative", "clues": ["lenitive", "alleviatory", "alleviative", "mitigatory", "mitigative"]}, {"answer": "mitigatory", "hint": "synonyms for mitigatory", "clues": ["lenitive", "alleviatory", "alleviative", "mitigative", "mitigatory"]}, {"answer": "mixed", "hint": "synonyms for mixed", "clues": ["sundry", "assorted", "motley", "interracial", "miscellaneous", "mixed"]}, {"answer": "mixed-up", "hint": "synonyms for mixed-up", "clues": ["bewildered", "confused", "bemused", "at sea", "lost", "mazed", "befuddled", "confounded", "baffled", "mixed-up"]}, {"answer": "mobile", "hint": "synonyms for mobile", "clues": ["nomadic", "roving", "wandering", "peregrine", "fluid", "mobile"]}, {"answer": "mocking", "hint": "synonyms for mocking", "clues": ["teasing", "jeering", "gibelike", "taunting", "derisive", "quizzical", "mocking"]}, {"answer": "modern", "hint": "synonyms for modern", "clues": ["advanced", "New", "modernistic", "innovative", "mod", "Modern", "forward-looking"]}, {"answer": "modest", "hint": "synonyms for modest", "clues": ["small-scale", "pocket-size", "small", "mild", "lowly", "minor", "meek", "humble", "modest"]}, {"answer": "modish", "hint": "synonyms for modish", "clues": ["in style", "latest", "in vogue", "a la mode", "modish"]}, {"answer": "monastic", "hint": "synonyms for monastic", "clues": ["monastical", "conventual", "cloistered", "cloistral"]}, {"answer": "monastical", "hint": "synonyms for monastical", "clues": ["monastic", "conventual", "cloistered", "cloistral"]}, {"answer": "moneyed", "hint": "synonyms for moneyed", "clues": ["loaded", "affluent", "wealthy", "flush", "monied", "moneyed"]}, {"answer": "moneymaking", "hint": "synonyms for moneymaking", "clues": ["mercenary", "mercantile", "lucrative", "remunerative", "moneymaking"]}, {"answer": "monitory", "hint": "synonyms for monitory", "clues": ["admonitory", "cautionary", "warning", "exemplary"]}, {"answer": "monotonous", "hint": "synonyms for monotonous", "clues": ["monotonic", "humdrum", "flat", "monotone", "monotonous"]}, {"answer": "monstrous", "hint": "synonyms for monstrous", "clues": ["grotesque", "grievous", "atrocious", "flagitious", "monstrous"]}, {"answer": "moody", "hint": "synonyms for moody", "clues": ["dour", "dark", "glowering", "saturnine", "temperamental", "sour", "glum", "morose", "sullen", "moody"]}, {"answer": "morbid", "hint": "synonyms for morbid", "clues": ["diseased", "ghoulish", "pathological", "morbid"]}, {"answer": "mordacious", "hint": "synonyms for mordacious", "clues": ["barbed", "nipping", "biting", "pungent", "mordacious"]}, {"answer": "mordant", "hint": "synonyms for mordant", "clues": ["erosive", "black", "caustic", "vitriolic", "grim", "corrosive", "mordant"]}, {"answer": "morose", "hint": "synonyms for morose", "clues": ["dour", "moody", "glowering", "dark", "saturnine", "sour", "glum", "sullen", "morose"]}, {"answer": "mortifying", "hint": "synonyms for mortifying", "clues": ["demeaning", "humiliating", "humbling", "embarrassing", "mortifying"]}, {"answer": "moss-grown", "hint": "synonyms for moss-grown", "clues": ["fogyish", "stick-in-the-mud", "mossy", "stodgy", "moss-grown"]}, {"answer": "mossy", "hint": "synonyms for mossy", "clues": ["moss-grown", "fogyish", "stick-in-the-mud", "stodgy", "mossy"]}, {"answer": "moth-eaten", "hint": "synonyms for moth-eaten", "clues": ["tatty", "ratty", "dusty", "stale", "shabby", "mothy", "cold", "moth-eaten"]}, {"answer": "mother-naked", "hint": "synonyms for mother-naked", "clues": ["in one's birthday suit", "naked as the day one was born", "naked as the day you were born", "in your birthday suit", "mother-naked"]}, {"answer": "motley", "hint": "synonyms for motley", "clues": ["varicolored", "mixed", "particoloured", "calico", "multi-coloured", "sundry", "multicolor", "assorted", "painted", "piebald", "pied", "miscellaneous", "motley"]}, {"answer": "mourning", "hint": "synonyms for mourning", "clues": ["bereft", "sorrowing", "grieving", "bereaved", "grief-stricken", "mourning"]}, {"answer": "mucilaginous", "hint": "synonyms for mucilaginous", "clues": ["glutinous", "gluey", "pasty", "sticky", "viscous", "gummy", "viscid", "mucilaginous"]}, {"answer": "mucky", "hint": "synonyms for mucky", "clues": ["soggy", "muddy", "marshy", "miry", "quaggy", "sloughy", "swampy", "sloppy", "waterlogged", "squashy", "boggy", "mucky"]}, {"answer": "muddled", "hint": "synonyms for muddled", "clues": ["wooly", "addled", "muzzy", "befuddled", "woolly-headed", "wooly-minded", "muddled"]}, {"answer": "muddy", "hint": "synonyms for muddy", "clues": ["soggy", "muddied", "dirty", "turbid", "marshy", "mucky", "miry", "quaggy", "sloughy", "swampy", "murky", "sloppy", "waterlogged", "cloudy", "squashy", "dingy", "boggy", "muddy"]}, {"answer": "multi-color", "hint": "synonyms for multi-color", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multi-colored", "hint": "synonyms for multi-colored", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multi-colour", "hint": "synonyms for multi-colour", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multi-coloured", "hint": "synonyms for multi-coloured", "clues": ["particoloured", "calico", "multicolor", "motley", "painted", "piebald", "pied", "varicolored", "multi-coloured"]}, {"answer": "multicolor", "hint": "synonyms for multicolor", "clues": ["particoloured", "calico", "multi-coloured", "motley", "painted", "piebald", "pied", "varicolored", "multicolor"]}, {"answer": "multicolored", "hint": "synonyms for multicolored", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multicolour", "hint": "synonyms for multicolour", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multicoloured", "hint": "synonyms for multicoloured", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "multitudinous", "hint": "synonyms for multitudinous", "clues": ["unnumberable", "numberless", "countless", "uncounted", "infinite", "unnumbered", "innumerous", "myriad", "multitudinous"]}, {"answer": "mundane", "hint": "synonyms for mundane", "clues": ["quotidian", "workaday", "unremarkable", "everyday", "routine", "terrestrial", "terrene", "mundane"]}, {"answer": "munificent", "hint": "synonyms for munificent", "clues": ["unstinted", "too-generous", "unsparing", "overgenerous", "lavish", "unstinting", "munificent"]}, {"answer": "murky", "hint": "synonyms for murky", "clues": ["turbid", "muddy", "cloudy", "mirky", "murky"]}, {"answer": "muscular", "hint": "synonyms for muscular", "clues": ["hefty", "powerful", "sinewy", "mesomorphic", "brawny", "muscular"]}, {"answer": "mushy", "hint": "synonyms for mushy", "clues": ["mawkish", "kitschy", "sentimental", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "slushy", "soppy", "mushy"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["broody", "brooding", "ruminative", "reflective", "contemplative", "pondering", "meditative", "pensive", "musing"]}, {"answer": "musty", "hint": "synonyms for musty", "clues": ["moldy", "frowsty", "fusty", "musty"]}, {"answer": "mute", "hint": "synonyms for mute", "clues": ["wordless", "silent", "tongueless", "dumb", "unspoken", "mute"]}, {"answer": "muted", "hint": "synonyms for muted", "clues": ["dull", "hushed", "softened", "subdued", "quiet", "muffled", "muted"]}, {"answer": "muzzy", "hint": "synonyms for muzzy", "clues": ["hazy", "wooly", "bleary", "blurry", "foggy", "woolly-headed", "fuzzy", "addled", "befuddled", "blurred", "wooly-minded", "muddled", "muzzy"]}, {"answer": "myopic", "hint": "synonyms for myopic", "clues": ["short", "nearsighted", "unforesightful", "shortsighted", "myopic"]}, {"answer": "myriad", "hint": "synonyms for myriad", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "uncounted", "infinite", "unnumbered", "innumerous", "myriad"]}, {"answer": "mysterious", "hint": "synonyms for mysterious", "clues": ["cryptic", "mystifying", "orphic", "inscrutable", "mystical", "deep", "occult", "secret", "mysterious"]}, {"answer": "mystic", "hint": "synonyms for mystic", "clues": ["mysterious", "orphic", "mystical", "occult", "secret"]}, {"answer": "mystical", "hint": "synonyms for mystical", "clues": ["mysterious", "mystic", "orphic", "occult", "secret"]}, {"answer": "mystifying", "hint": "synonyms for mystifying", "clues": ["cryptical", "mysterious", "inscrutable", "deep", "mystifying"]}, {"answer": "nacreous", "hint": "synonyms for nacreous", "clues": ["iridescent", "opalescent", "opaline", "nacreous"]}, {"answer": "naive", "hint": "synonyms for naive", "clues": ["naif", "uninstructed", "uninitiated", "primitive", "unenlightened", "naive"]}, {"answer": "naked", "hint": "synonyms for naked", "clues": ["au naturel", "nude", "bare", "raw", "defenseless", "naked"]}, {"answer": "naked_as_a_jaybird", "hint": "synonyms for naked as a jaybird", "clues": ["peeled", "in the altogether", "stark naked", "raw", "in the raw", "bare-ass", "in the buff", "naked as a jaybird"]}, {"answer": "naked_as_the_day_one_was_born", "hint": "synonyms for naked as the day one was born", "clues": ["in one's birthday suit", "naked as the day you were born", "mother-naked", "in your birthday suit", "naked as the day one was born"]}, {"answer": "naked_as_the_day_you_were_born", "hint": "synonyms for naked as the day you were born", "clues": ["in one's birthday suit", "naked as the day one was born", "mother-naked", "in your birthday suit", "naked as the day you were born"]}, {"answer": "napping", "hint": "synonyms for napping", "clues": ["off your guard", "off-guard", "off his guard", "off one's guard", "off her guard", "napping"]}, {"answer": "nappy", "hint": "synonyms for nappy", "clues": ["crisp", "frizzy", "kinky", "nappy"]}, {"answer": "narcotic", "hint": "synonyms for narcotic", "clues": ["soporiferous", "narcotising", "soporific", "narcotic"]}, {"answer": "narrowing", "hint": "synonyms for narrowing", "clues": ["constrictive", "tapering", "constricting", "tapered", "narrowing"]}, {"answer": "nasty", "hint": "synonyms for nasty", "clues": ["foul", "smutty", "tight", "cruddy", "awful", "filthy", "nasty"]}, {"answer": "nationalistic", "hint": "synonyms for nationalistic", "clues": ["nationalist", "jingoistic", "ultranationalistic", "flag-waving", "superpatriotic", "chauvinistic"]}, {"answer": "natty", "hint": "synonyms for natty", "clues": ["jaunty", "dapper", "dashing", "snappy", "rakish", "spruce", "spiffy", "raffish", "natty"]}, {"answer": "natural", "hint": "synonyms for natural", "clues": ["rude", "lifelike", "innate", "instinctive", "raw", "born", "natural"]}, {"answer": "naughty", "hint": "synonyms for naughty", "clues": ["racy", "juicy", "gamey", "blue", "risque", "spicy", "naughty"]}, {"answer": "nauseated", "hint": "synonyms for nauseated", "clues": ["sick", "queasy", "nauseous", "sickish", "nauseated"]}, {"answer": "nauseating", "hint": "synonyms for nauseating", "clues": ["loathsome", "queasy", "vile", "sickening", "offensive", "noisome", "nauseous", "nauseating"]}, {"answer": "nauseous", "hint": "synonyms for nauseous", "clues": ["queasy", "nauseating", "offensive", "sickish", "loathsome", "vile", "sickening", "noisome", "nauseated", "sick", "nauseous"]}, {"answer": "neandertal", "hint": "synonyms for neandertal", "clues": ["oafish", "swinish", "Neandertal", "boorish", "loutish", "Neanderthalian"]}, {"answer": "neanderthal", "hint": "synonyms for neanderthal", "clues": ["oafish", "neandertal", "swinish", "Neanderthalian", "boorish", "loutish"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["skinny", "cheeseparing", "penny-pinching", "nigh", "approximate", "close", "dear", "good", "near"]}, {"answer": "near-blind", "hint": "synonyms for near-blind", "clues": ["visually challenged", "visually impaired", "dim-sighted", "sand-blind", "purblind", "near-blind"]}, {"answer": "neat", "hint": "synonyms for neat", "clues": ["dandy", "full-strength", "keen", "bully", "cracking", "bang-up", "great", "straight", "slap-up", "nifty", "refined", "groovy", "orderly", "smashing", "corking", "tasteful", "peachy", "not bad", "clean", "swell", "neat"]}, {"answer": "nebulous", "hint": "synonyms for nebulous", "clues": ["nebular", "unfixed", "nebulose", "cloudy"]}, {"answer": "necessitous", "hint": "synonyms for necessitous", "clues": ["poverty-stricken", "needy", "impoverished", "destitute", "indigent", "necessitous"]}, {"answer": "neck-deep", "hint": "synonyms for neck-deep", "clues": ["up to his neck", "up to our necks", "up to my neck", "up to their necks", "neck-deep"]}, {"answer": "needy", "hint": "synonyms for needy", "clues": ["poverty-stricken", "necessitous", "impoverished", "destitute", "indigent", "needy"]}, {"answer": "negative", "hint": "synonyms for negative", "clues": ["damaging", "electronegative", "negatively charged", "minus", "disconfirming", "negative"]}, {"answer": "neglectful", "hint": "synonyms for neglectful", "clues": ["delinquent", "remiss", "inattentive", "derelict", "neglectful"]}, {"answer": "negotiable", "hint": "synonyms for negotiable", "clues": ["transferrable", "conveyable", "on the table", "assignable", "negotiable"]}, {"answer": "nervous", "hint": "synonyms for nervous", "clues": ["unquiet", "aflutter", "queasy", "neural", "skittish", "anxious", "spooky", "flighty", "uneasy", "nervous"]}, {"answer": "nervy", "hint": "synonyms for nervy", "clues": ["jumpy", "overstrung", "edgy", "cheeky", "restive", "high-strung", "uptight", "jittery", "brash", "highly strung", "nervy"]}, {"answer": "nescient", "hint": "synonyms for nescient", "clues": ["ignorant", "unbelieving", "unlettered", "unlearned", "nescient"]}, {"answer": "netlike", "hint": "synonyms for netlike", "clues": ["netted", "webbed", "lacy", "weblike", "webby", "netlike"]}, {"answer": "netted", "hint": "synonyms for netted", "clues": ["webbed", "lacy", "netlike", "weblike", "webby", "netted"]}, {"answer": "nettled", "hint": "synonyms for nettled", "clues": ["steamed", "pissed off", "annoyed", "riled", "pissed", "stung", "miffed", "peeved", "irritated", "nettled"]}, {"answer": "nettlesome", "hint": "synonyms for nettlesome", "clues": ["teasing", "irritable", "testy", "pestiferous", "annoying", "pesky", "plaguy", "cranky", "pettish", "irritating", "pestering", "bothersome", "peckish", "fractious", "scratchy", "tetchy", "vexing", "peevish", "galling", "vexatious", "petulant", "nettlesome"]}, {"answer": "neutral", "hint": "synonyms for neutral", "clues": ["achromatic", "inert", "electroneutral", "indifferent", "impersonal", "neutral"]}, {"answer": "never-ending", "hint": "synonyms for never-ending", "clues": ["constant", "perpetual", "ceaseless", "unremitting", "unceasing", "incessant", "never-ending"]}, {"answer": "new", "hint": "synonyms for new", "clues": ["novel", "New", "newfangled", "fresh", "unexampled", "Modern", "young", "raw"]}, {"answer": "next", "hint": "synonyms for next", "clues": ["succeeding", "adjacent", "following", "future", "side by side", "next"]}, {"answer": "nice", "hint": "synonyms for nice", "clues": ["prissy", "decent", "gracious", "overnice", "skillful", "courteous", "dainty", "squeamish", "nice"]}, {"answer": "nifty", "hint": "synonyms for nifty", "clues": ["slap-up", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "nifty"]}, {"answer": "niggling", "hint": "synonyms for niggling", "clues": ["piffling", "fiddling", "petty", "footling", "picayune", "lilliputian", "trivial", "little", "niggling"]}, {"answer": "niminy-piminy", "hint": "synonyms for niminy-piminy", "clues": ["twee", "prim", "dainty", "mincing", "niminy-piminy"]}, {"answer": "nipping", "hint": "synonyms for nipping", "clues": ["frosty", "biting", "pungent", "snappy", "crisp", "mordacious", "nippy", "barbed", "nipping"]}, {"answer": "nippy", "hint": "synonyms for nippy", "clues": ["crisp", "nipping", "frosty", "snappy", "nippy"]}, {"answer": "no-account", "hint": "synonyms for no-account", "clues": ["no-count", "good-for-nothing", "meritless", "good-for-naught", "sorry", "no-good"]}, {"answer": "no-count", "hint": "synonyms for no-count", "clues": ["good-for-nothing", "meritless", "good-for-naught", "no-account", "no-good", "sorry"]}, {"answer": "no-good", "hint": "synonyms for no-good", "clues": ["no-count", "rubber", "good-for-nothing", "meritless", "good-for-naught", "sorry", "no-good"]}, {"answer": "noble-minded", "hint": "synonyms for noble-minded", "clues": ["idealistic", "grand", "rarified", "high-flown", "sublime", "exalted", "high-minded", "lofty", "elevated", "noble-minded"]}, {"answer": "nodding", "hint": "synonyms for nodding", "clues": ["weeping", "cernuous", "pendulous", "drooping", "nodding"]}, {"answer": "noisome", "hint": "synonyms for noisome", "clues": ["queasy", "stinking", "nauseating", "offensive", "foul-smelling", "foetid", "loathsome", "nauseous", "foul", "vile", "funky", "sickening", "ill-scented", "smelly", "noisome"]}, {"answer": "nomadic", "hint": "synonyms for nomadic", "clues": ["peregrine", "roving", "mobile", "wandering", "nomadic"]}, {"answer": "nominal", "hint": "synonyms for nominal", "clues": ["nominative", "token", "tokenish", "titular", "nominal"]}, {"answer": "non-white", "hint": "synonyms for non-white", "clues": ["coloured", "dark-skinned", "dark", "non-white"]}, {"answer": "nonionic", "hint": "synonyms for nonionic", "clues": ["unionized", "nonionised", "nonpolar", "nonionic"]}, {"answer": "nonpareil", "hint": "synonyms for nonpareil", "clues": ["unmatched", "unrivalled", "one", "one and only", "unmatchable", "peerless", "matchless", "nonpareil"]}, {"answer": "nonsensical", "hint": "synonyms for nonsensical", "clues": ["nonsense", "derisory", "preposterous", "idiotic", "absurd", "cockeyed", "ridiculous", "ludicrous", "laughable", "nonsensical"]}, {"answer": "not_bad", "hint": "synonyms for not bad", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "cracking", "bang-up", "swell", "great", "not bad"]}, {"answer": "notable", "hint": "synonyms for notable", "clues": ["famous", "far-famed", "renowned", "illustrious", "celebrated", "noted", "noteworthy", "famed", "notable"]}, {"answer": "notched", "hint": "synonyms for notched", "clues": ["erose", "toothed", "serrate", "jagged", "saw-toothed", "jaggy", "notched"]}, {"answer": "noted", "hint": "synonyms for noted", "clues": ["illustrious", "celebrated", "famous", "far-famed", "renowned", "notable", "famed", "noted"]}, {"answer": "notional", "hint": "synonyms for notional", "clues": ["fanciful", "imaginary", "conceptional", "speculative", "ideational", "notional"]}, {"answer": "nourishing", "hint": "synonyms for nourishing", "clues": ["alimental", "nutritive", "nutritious", "nutrient", "alimentary", "nourishing"]}, {"answer": "nubbly", "hint": "synonyms for nubbly", "clues": ["nubby", "slubbed", "homespun", "tweedy"]}, {"answer": "nubby", "hint": "synonyms for nubby", "clues": ["slubbed", "tweedy", "homespun", "nubbly"]}, {"answer": "numberless", "hint": "synonyms for numberless", "clues": ["unnumberable", "countless", "multitudinous", "uncounted", "infinite", "unnumbered", "innumerous", "myriad", "numberless"]}, {"answer": "nutrient", "hint": "synonyms for nutrient", "clues": ["alimental", "nutritive", "nutritious", "nourishing", "alimentary", "nutrient"]}, {"answer": "nutritious", "hint": "synonyms for nutritious", "clues": ["alimental", "nutritive", "nutrient", "nourishing", "alimentary", "nutritious"]}, {"answer": "nutritive", "hint": "synonyms for nutritive", "clues": ["alimental", "nutritious", "nutrient", "nourishing", "alimentary", "nutritive"]}, {"answer": "nuts", "hint": "synonyms for nuts", "clues": ["fruity", "loony", "haywire", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty", "nuts"]}, {"answer": "nutty", "hint": "synonyms for nutty", "clues": ["fruity", "loony", "haywire", "nuts", "nutlike", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "buggy", "cracked", "crackers", "dotty", "nutty"]}, {"answer": "o.k.", "hint": "synonyms for o.k.", "clues": ["okay", "ok", "hunky-dory", "fine", "all right", "o.k."]}, {"answer": "oafish", "hint": "synonyms for oafish", "clues": ["neanderthal", "swinish", "boorish", "loutish", "oafish"]}, {"answer": "obdurate", "hint": "synonyms for obdurate", "clues": ["flint", "granitic", "unrepentant", "cussed", "stony", "obstinate", "obdurate"]}, {"answer": "obscene", "hint": "synonyms for obscene", "clues": ["repugnant", "detestable", "raunchy", "lewd", "repulsive", "abhorrent", "salacious", "obscene"]}, {"answer": "obscure", "hint": "synonyms for obscure", "clues": ["isolated", "unnoticeable", "apart", "dark", "unsung", "hidden", "unknown", "vague", "obscure"]}, {"answer": "obsequious", "hint": "synonyms for obsequious", "clues": ["toadyish", "fawning", "bootlicking", "sycophantic", "obsequious"]}, {"answer": "obsessed", "hint": "synonyms for obsessed", "clues": ["taken up", "haunted", "possessed", "preoccupied", "obsessed"]}, {"answer": "obstinate", "hint": "synonyms for obstinate", "clues": ["obdurate", "unrepentant", "cussed", "perverse", "wayward", "stubborn", "contrary", "unregenerate", "obstinate"]}, {"answer": "obtuse", "hint": "synonyms for obtuse", "clues": ["dull", "dumb", "dense", "dim", "slow", "purblind", "obtuse"]}, {"answer": "occult", "hint": "synonyms for occult", "clues": ["mysterious", "mystic", "orphic", "secret", "occult"]}, {"answer": "ocular", "hint": "synonyms for ocular", "clues": ["visual", "optic", "optical", "opthalmic", "ocular"]}, {"answer": "odd", "hint": "synonyms for odd", "clues": ["singular", "unmatched", "rummy", "left over", "unexpended", "left", "unpaired", "queer", "funny", "rum", "peculiar", "curious", "remaining", "uneven", "odd"]}, {"answer": "odoriferous", "hint": "synonyms for odoriferous", "clues": ["perfumed", "scented", "sweet-scented", "sweet", "odorous", "sweet-smelling", "odoriferous"]}, {"answer": "odorous", "hint": "synonyms for odorous", "clues": ["perfumed", "scented", "sweet-scented", "sweet", "odoriferous", "sweet-smelling", "odorous"]}, {"answer": "oecumenical", "hint": "synonyms for oecumenical", "clues": ["general", "cosmopolitan", "ecumenical", "world-wide", "universal", "oecumenic"]}, {"answer": "of_the_essence", "hint": "synonyms for of the essence", "clues": ["essential", "crucial", "all important", "of the essence"]}, {"answer": "off-color", "hint": "synonyms for off-color", "clues": ["off-colour", "bawdy", "indelicate", "ribald"]}, {"answer": "off-guard", "hint": "synonyms for off-guard", "clues": ["off your guard", "off his guard", "napping", "off one's guard", "off guard", "off her guard"]}, {"answer": "off-the-cuff", "hint": "synonyms for off-the-cuff", "clues": ["extempore", "ad-lib", "extemporary", "unrehearsed", "offhanded", "extemporaneous", "impromptu", "off-the-cuff"]}, {"answer": "off-the-wall", "hint": "synonyms for off-the-wall", "clues": ["gonzo", "flaky", "freaky", "outlandish", "freakish", "outre", "eccentric", "bizarre", "off-the-wall"]}, {"answer": "off_guard", "hint": "synonyms for off guard", "clues": ["off your guard", "off-guard", "off his guard", "off her guard", "napping", "off one's guard"]}, {"answer": "off_her_guard", "hint": "synonyms for off her guard", "clues": ["off your guard", "off-guard", "off his guard", "napping", "off one's guard", "off her guard"]}, {"answer": "off_his_guard", "hint": "synonyms for off his guard", "clues": ["off your guard", "off-guard", "napping", "off one's guard", "off her guard", "off his guard"]}, {"answer": "off_one's_guard", "hint": "synonyms for off one's guard", "clues": ["off your guard", "off-guard", "off his guard", "napping", "off her guard", "off one's guard"]}, {"answer": "off_your_guard", "hint": "synonyms for off your guard", "clues": ["off-guard", "off his guard", "off her guard", "napping", "off one's guard", "off your guard"]}, {"answer": "offbeat", "hint": "synonyms for offbeat", "clues": ["kinky", "quirky", "far-out", "way-out", "offbeat"]}, {"answer": "offensive", "hint": "synonyms for offensive", "clues": ["queasy", "nauseating", "dysphemistic", "violative", "nauseous", "loathsome", "unsavoury", "vile", "sickening", "noisome", "offensive"]}, {"answer": "offhand", "hint": "synonyms for offhand", "clues": ["extempore", "ad-lib", "off-the-cuff", "extemporary", "offhanded", "extemporaneous", "unrehearsed", "impromptu"]}, {"answer": "offhanded", "hint": "synonyms for offhanded", "clues": ["extempore", "ad-lib", "off-the-cuff", "extemporary", "unrehearsed", "extemporaneous", "offhand", "impromptu"]}, {"answer": "officious", "hint": "synonyms for officious", "clues": ["busy", "interfering", "busybodied", "meddlesome", "meddling", "officious"]}, {"answer": "oily", "hint": "synonyms for oily", "clues": ["sebaceous", "smarmy", "soapy", "oleaginous", "fulsome", "unctuous", "greasy", "buttery", "oily"]}, {"answer": "ok", "hint": "synonyms for ok", "clues": ["o.k.", "okay", "hunky-dory", "fine", "all right", "ok"]}, {"answer": "okay", "hint": "synonyms for okay", "clues": ["o.k.", "ok", "hunky-dory", "fine", "all right", "okay"]}, {"answer": "old", "hint": "synonyms for old", "clues": ["erstwhile", "one-time", "honest-to-god", "Old", "older", "quondam", "former", "sometime", "honest-to-goodness", "previous", "sure-enough"]}, {"answer": "old-fashioned", "hint": "synonyms for old-fashioned", "clues": ["antique", "outmoded", "ex", "demode", "passe", "old-hat", "old-fashioned"]}, {"answer": "old-hat", "hint": "synonyms for old-hat", "clues": ["antique", "hackneyed", "ex", "demode", "passee", "timeworn", "tired", "outmoded", "commonplace", "trite", "stock", "well-worn", "old-fashioned", "banal", "shopworn", "threadbare", "old-hat"]}, {"answer": "older", "hint": "synonyms for older", "clues": ["erstwhile", "senior", "one-time", "old", "honest-to-god", "quondam", "former", "sometime", "honest-to-goodness", "elderly", "aged", "sr.", "previous", "sure-enough", "older"]}, {"answer": "oleaginous", "hint": "synonyms for oleaginous", "clues": ["sebaceous", "smarmy", "soapy", "fulsome", "oily", "unctuous", "greasy", "buttery", "oleaginous"]}, {"answer": "olympian", "hint": "synonyms for olympian", "clues": ["Olympian", "surpassing", "Olympic", "majestic", "exceeding", "prodigious", "exceptional"]}, {"answer": "ominous", "hint": "synonyms for ominous", "clues": ["forbidding", "minatory", "menacing", "ill", "minacious", "sinister", "inauspicious", "threatening", "baleful", "ominous"]}, {"answer": "on_fire", "hint": "synonyms for on fire", "clues": ["ablaze", "afire", "alight", "aflame", "aflare", "on fire"]}, {"answer": "one", "hint": "synonyms for one", "clues": ["unmatched", "ane", "unrivaled", "nonpareil", "unitary", "i", "1", "one and only", "unmatchable", "peerless", "matchless", "one"]}, {"answer": "one-sided", "hint": "synonyms for one-sided", "clues": ["unilateral", "coloured", "nonreversible", "biased", "slanted", "one-sided"]}, {"answer": "one-time", "hint": "synonyms for one-time", "clues": ["erstwhile", "sometime", "old", "onetime", "quondam", "former"]}, {"answer": "one_and_only", "hint": "synonyms for one and only", "clues": ["unmatched", "unrivalled", "nonpareil", "one", "unmatchable", "peerless", "matchless", "one and only"]}, {"answer": "one_thousand", "hint": "synonyms for one thousand", "clues": ["k", "m", "thousand", "1000", "one thousand"]}, {"answer": "onetime", "hint": "synonyms for onetime", "clues": ["erstwhile", "sometime", "one-time", "old", "quondam", "former"]}, {"answer": "only", "hint": "synonyms for only", "clues": ["lone", "sole", "solitary", "lonesome", "only"]}, {"answer": "opalescent", "hint": "synonyms for opalescent", "clues": ["iridescent", "pearlescent", "nacreous", "opaline"]}, {"answer": "opaline", "hint": "synonyms for opaline", "clues": ["iridescent", "opalescent", "nacreous", "opaline"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["undetermined", "heart-to-heart", "exposed", "opened", "candid", "undecided", "overt", "subject", "receptive", "capable", "assailable", "unfastened", "unresolved", "loose", "undefendable", "undefended", "clear", "open"]}, {"answer": "openhanded", "hint": "synonyms for openhanded", "clues": ["liberal", "bounteous", "bighearted", "big", "handsome", "freehanded", "bountiful", "giving", "openhanded"]}, {"answer": "openhearted", "hint": "synonyms for openhearted", "clues": ["good-hearted", "large-hearted", "benevolent", "sympathetic", "kindly", "charitable", "openhearted"]}, {"answer": "operable", "hint": "synonyms for operable", "clues": ["practicable", "operational", "useable", "functional", "operable"]}, {"answer": "operational", "hint": "synonyms for operational", "clues": ["in operation", "useable", "operating", "functional", "operable", "operational"]}, {"answer": "operative", "hint": "synonyms for operative", "clues": ["surgical", "running", "working", "functional", "operative"]}, {"answer": "operose", "hint": "synonyms for operose", "clues": ["punishing", "hard", "backbreaking", "gruelling", "heavy", "laborious", "toilsome", "arduous", "operose"]}, {"answer": "opposite", "hint": "synonyms for opposite", "clues": ["paired", "diametric", "polar", "opposite"]}, {"answer": "opprobrious", "hint": "synonyms for opprobrious", "clues": ["scurrilous", "black", "shameful", "abusive", "inglorious", "disgraceful", "ignominious", "opprobrious"]}, {"answer": "optic", "hint": "synonyms for optic", "clues": ["visual", "optical", "ocular", "opthalmic", "optic"]}, {"answer": "optical", "hint": "synonyms for optical", "clues": ["visual", "optic", "opthalmic", "ocular", "optical"]}, {"answer": "opulent", "hint": "synonyms for opulent", "clues": ["grand", "deluxe", "princely", "gilded", "luxurious", "sumptuous", "opulent"]}, {"answer": "orbicular", "hint": "synonyms for orbicular", "clues": ["globular", "orbiculate", "globose", "ball-shaped", "global", "spherical", "orbicular"]}, {"answer": "ordered", "hint": "synonyms for ordered", "clues": ["logical", "consistent", "arranged", "coherent", "ordered"]}, {"answer": "orgiastic", "hint": "synonyms for orgiastic", "clues": ["bacchanalian", "bacchic", "carousing", "orgiastic"]}, {"answer": "orotund", "hint": "synonyms for orotund", "clues": ["round", "large", "bombastic", "declamatory", "pear-shaped", "tumid", "turgid", "orotund"]}, {"answer": "orphic", "hint": "synonyms for orphic", "clues": ["mysterious", "mystic", "Orphic", "occult", "secret"]}, {"answer": "orthodox", "hint": "synonyms for orthodox", "clues": ["Russian Orthodox", "Orthodox", "Eastern Orthodox", "Jewish-Orthodox", "Greek Orthodox"]}, {"answer": "orthogonal", "hint": "synonyms for orthogonal", "clues": ["immaterial", "extraneous", "rectangular", "impertinent", "orthogonal"]}, {"answer": "otiose", "hint": "synonyms for otiose", "clues": ["lazy", "faineant", "pointless", "ineffectual", "futile", "work-shy", "slothful", "purposeless", "wasted", "unavailing", "senseless", "indolent", "superfluous", "otiose"]}, {"answer": "out", "hint": "synonyms for out", "clues": ["extinct", "forbidden", "proscribed", "knocked out", "prohibited", "taboo", "KO'd", "verboten", "kayoed", "tabu", "stunned", "out"]}, {"answer": "out-and-out", "hint": "synonyms for out-and-out", "clues": ["absolute", "rank", "sheer", "right-down", "downright", "out-and-out"]}, {"answer": "outer", "hint": "synonyms for outer", "clues": ["extinct", "forbidden", "proscribed", "out", "knocked out", "prohibited", "taboo", "KO'd", "verboten", "kayoed", "tabu", "stunned", "outer"]}, {"answer": "outlandish", "hint": "synonyms for outlandish", "clues": ["gonzo", "off-the-wall", "flaky", "freaky", "freakish", "outre", "eccentric", "bizarre", "outlandish"]}, {"answer": "outlaw", "hint": "synonyms for outlaw", "clues": ["outlawed", "unlawful", "lawless", "illegitimate", "illicit"]}, {"answer": "outlawed", "hint": "synonyms for outlawed", "clues": ["outlaw", "illicit", "unlawful", "illegitimate"]}, {"answer": "outmoded", "hint": "synonyms for outmoded", "clues": ["antique", "old-fashioned", "ex", "demode", "passe", "old-hat", "outmoded"]}, {"answer": "outrageous", "hint": "synonyms for outrageous", "clues": ["steep", "usurious", "horrific", "extortionate", "hideous", "unconscionable", "exorbitant", "horrid", "outrageous"]}, {"answer": "outre", "hint": "synonyms for outre", "clues": ["gonzo", "off-the-wall", "flaky", "freaky", "outlandish", "freakish", "eccentric", "bizarre", "outre"]}, {"answer": "outside", "hint": "synonyms for outside", "clues": ["international", "remote", "extraneous", "external", "away", "out-of-door", "outdoor", "outside"]}, {"answer": "outspoken", "hint": "synonyms for outspoken", "clues": ["free-spoken", "vocal", "candid", "point-blank", "straight-from-the-shoulder", "plainspoken", "forthright", "frank", "blunt", "outspoken"]}, {"answer": "outstanding", "hint": "synonyms for outstanding", "clues": ["prominent", "spectacular", "undischarged", "striking", "owing", "salient", "great", "outstanding"]}, {"answer": "oval", "hint": "synonyms for oval", "clues": ["oviform", "oval-shaped", "egg-shaped", "elliptical", "ovate", "prolate", "ovoid", "oval"]}, {"answer": "oval-shaped", "hint": "synonyms for oval-shaped", "clues": ["oviform", "oval", "egg-shaped", "elliptical", "ovate", "prolate", "ovoid", "oval-shaped"]}, {"answer": "ovate", "hint": "synonyms for ovate", "clues": ["oviform", "oval", "oval-shaped", "egg-shaped", "elliptical", "prolate", "ovoid", "ovate"]}, {"answer": "over", "hint": "synonyms for over", "clues": ["terminated", "complete", "ended", "concluded", "all over", "over"]}, {"answer": "overbearing", "hint": "synonyms for overbearing", "clues": ["haughty", "lordly", "sniffy", "disdainful", "authoritarian", "imperious", "prideful", "swaggering", "supercilious", "dictatorial", "overbearing"]}, {"answer": "overblown", "hint": "synonyms for overblown", "clues": ["portentous", "pompous", "pontifical", "grandiloquent", "overblown"]}, {"answer": "overbold", "hint": "synonyms for overbold", "clues": ["impudent", "fresh", "saucy", "impertinent", "smart", "wise", "sassy", "overbold"]}, {"answer": "overflowing", "hint": "synonyms for overflowing", "clues": ["inundated", "afloat", "awash", "flooded", "overflowing"]}, {"answer": "overgenerous", "hint": "synonyms for overgenerous", "clues": ["unstinted", "too-generous", "unsparing", "lavish", "munificent", "unstinting", "overgenerous"]}, {"answer": "overhasty", "hint": "synonyms for overhasty", "clues": ["precipitant", "hasty", "precipitous", "overhasty"]}, {"answer": "overnice", "hint": "synonyms for overnice", "clues": ["nice", "prissy", "dainty", "squeamish", "overnice"]}, {"answer": "overriding", "hint": "synonyms for overriding", "clues": ["preponderant", "predominant", "preponderating", "paramount", "overriding"]}, {"answer": "overstrung", "hint": "synonyms for overstrung", "clues": ["jumpy", "edgy", "nervy", "restive", "high-strung", "uptight", "jittery", "highly strung", "overstrung"]}, {"answer": "overweening", "hint": "synonyms for overweening", "clues": ["excessive", "uppity", "exuberant", "extravagant", "overweening"]}, {"answer": "oviform", "hint": "synonyms for oviform", "clues": ["oval", "oval-shaped", "egg-shaped", "elliptical", "ovate", "prolate", "ovoid", "oviform"]}, {"answer": "ovoid", "hint": "synonyms for ovoid", "clues": ["oviform", "oval", "oval-shaped", "egg-shaped", "elliptical", "ovate", "prolate", "ovoid"]}, {"answer": "pachydermatous", "hint": "synonyms for pachydermatous", "clues": ["pachydermic", "pachydermal", "indurate", "callous", "pachydermous"]}, {"answer": "painful", "hint": "synonyms for painful", "clues": ["dreadful", "afflictive", "sore", "terrible", "awful", "abominable", "atrocious", "irritating", "unspeakable", "painful"]}, {"answer": "painted", "hint": "synonyms for painted", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "piebald", "pied", "varicolored", "painted"]}, {"answer": "palliative", "hint": "synonyms for palliative", "clues": ["lenitive", "alleviatory", "alleviative", "mitigatory", "mitigative"]}, {"answer": "palmy", "hint": "synonyms for palmy", "clues": ["booming", "flourishing", "prospering", "roaring", "prosperous", "thriving", "palmy"]}, {"answer": "paltry", "hint": "synonyms for paltry", "clues": ["measly", "trifling", "negligible", "miserable", "paltry"]}, {"answer": "panic-stricken", "hint": "synonyms for panic-stricken", "clues": ["terrified", "panicked", "frightened", "panic-struck", "panicky", "panic-stricken"]}, {"answer": "panic-struck", "hint": "synonyms for panic-struck", "clues": ["terrified", "panicked", "panic-stricken", "frightened", "panicky", "panic-struck"]}, {"answer": "panicked", "hint": "synonyms for panicked", "clues": ["terrified", "frightened", "panic-stricken", "panic-struck", "panicky", "panicked"]}, {"answer": "panicky", "hint": "synonyms for panicky", "clues": ["terrified", "panicked", "frightened", "panic-stricken", "panic-struck", "panicky"]}, {"answer": "panoptic", "hint": "synonyms for panoptic", "clues": ["across-the-board", "blanket", "encompassing", "wide", "all-inclusive", "broad", "panoptical", "all-embracing", "extensive"]}, {"answer": "papist", "hint": "synonyms for papist", "clues": ["Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist", "papist"]}, {"answer": "papistic", "hint": "synonyms for papistic", "clues": ["papist", "Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist"]}, {"answer": "papistical", "hint": "synonyms for papistical", "clues": ["papist", "Roman", "popish", "Roman Catholic", "romish", "R.C.", "Romanist", "papistical"]}, {"answer": "paramount", "hint": "synonyms for paramount", "clues": ["preponderant", "predominant", "overriding", "preponderating", "paramount"]}, {"answer": "parasitic", "hint": "synonyms for parasitic", "clues": ["parasitical", "bloodsucking", "leechlike", "epenthetic"]}, {"answer": "parceled_out", "hint": "synonyms for parceled out", "clues": ["meted out", "apportioned", "doled out", "dealt out", "parceled out"]}, {"answer": "parched", "hint": "synonyms for parched", "clues": ["scorched", "sunbaked", "baked", "adust", "parched"]}, {"answer": "parthenogenetic", "hint": "synonyms for parthenogenetic", "clues": ["agamogenetic", "agamous", "agamic", "apomictic", "parthenogenetic"]}, {"answer": "particolored", "hint": "synonyms for particolored", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "pied", "varicolored"]}, {"answer": "particoloured", "hint": "synonyms for particoloured", "clues": ["calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "varicoloured", "pied", "particolored"]}, {"answer": "particular", "hint": "synonyms for particular", "clues": ["peculiar", "finical", "special", "picky", "finicky", "fussy", "exceptional", "particular"]}, {"answer": "passe", "hint": "synonyms for passe", "clues": ["antique", "outmoded", "old-fashioned", "ex", "demode", "passee", "old-hat"]}, {"answer": "passee", "hint": "synonyms for passee", "clues": ["antique", "outmoded", "old-fashioned", "ex", "demode", "passe", "old-hat"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["casual", "ephemeral", "cursory", "perfunctory", "fugacious", "transient", "pass", "short-lived", "transitory"]}, {"answer": "pasty", "hint": "synonyms for pasty", "clues": ["mucilaginous", "glutinous", "gluey", "pastelike", "sticky", "viscid", "viscous", "gummy", "pasty"]}, {"answer": "patent", "hint": "synonyms for patent", "clues": ["manifest", "plain", "evident", "apparent", "unmistakable", "patent"]}, {"answer": "paternal", "hint": "synonyms for paternal", "clues": ["agnate", "maternal", "parental", "agnatic"]}, {"answer": "pathetic", "hint": "synonyms for pathetic", "clues": ["pitiable", "wretched", "piteous", "hapless", "poor", "ridiculous", "silly", "pitiful", "miserable", "misfortunate", "pathetic"]}, {"answer": "pathless", "hint": "synonyms for pathless", "clues": ["roadless", "untracked", "trackless", "untrodden", "untrod", "pathless"]}, {"answer": "patrician", "hint": "synonyms for patrician", "clues": ["blue-blooded", "aristocratic", "gentle", "blue", "patrician"]}, {"answer": "paying", "hint": "synonyms for paying", "clues": ["compensable", "gainful", "stipendiary", "salaried", "paid", "remunerative", "paying"]}, {"answer": "peachy", "hint": "synonyms for peachy", "clues": ["slap-up", "nifty", "peachy-coloured", "dandy", "groovy", "smashing", "corking", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "peachy"]}, {"answer": "peaked", "hint": "synonyms for peaked", "clues": ["sickly", "indisposed", "ailing", "poorly", "under the weather", "seedy", "unwell", "peaked"]}, {"answer": "pearlescent", "hint": "synonyms for pearlescent", "clues": ["iridescent", "opalescent", "nacreous", "opaline"]}, {"answer": "peckish", "hint": "synonyms for peckish", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "pettish", "peevish", "petulant", "peckish"]}, {"answer": "peculiar", "hint": "synonyms for peculiar", "clues": ["particular", "singular", "rummy", "queer", "funny", "rum", "odd", "special", "curious", "peculiar"]}, {"answer": "peeled", "hint": "synonyms for peeled", "clues": ["in the altogether", "stark naked", "raw", "in the raw", "bare-ass", "naked as a jaybird", "in the buff", "peeled"]}, {"answer": "peerless", "hint": "synonyms for peerless", "clues": ["unmatched", "unrivalled", "nonpareil", "one", "one and only", "unmatchable", "matchless", "peerless"]}, {"answer": "peeved", "hint": "synonyms for peeved", "clues": ["nettled", "steamed", "pissed off", "annoyed", "riled", "pissed", "stung", "miffed", "irritated", "peeved"]}, {"answer": "peevish", "hint": "synonyms for peevish", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "pettish", "peckish", "petulant", "peevish"]}, {"answer": "pellucid", "hint": "synonyms for pellucid", "clues": ["crystal clear", "perspicuous", "lucid", "limpid", "crystalline", "luculent", "transparent", "pellucid"]}, {"answer": "pendulous", "hint": "synonyms for pendulous", "clues": ["weeping", "cernuous", "nodding", "drooping", "pendulous"]}, {"answer": "penetrating", "hint": "synonyms for penetrating", "clues": ["knifelike", "acute", "piercing", "penetrative", "keen", "incisive", "sharp", "discriminating", "penetrating"]}, {"answer": "penetrative", "hint": "synonyms for penetrative", "clues": ["knifelike", "acute", "piercing", "keen", "incisive", "sharp", "penetrating", "discriminating", "penetrative"]}, {"answer": "penniless", "hint": "synonyms for penniless", "clues": ["impecunious", "in straitened circumstances", "hard up", "pinched", "penurious", "penniless"]}, {"answer": "penny-pinching", "hint": "synonyms for penny-pinching", "clues": ["skinny", "cheeseparing", "near", "close", "penny-pinching"]}, {"answer": "pensive", "hint": "synonyms for pensive", "clues": ["broody", "brooding", "ruminative", "musing", "reflective", "contemplative", "pondering", "meditative", "wistful", "pensive"]}, {"answer": "penurious", "hint": "synonyms for penurious", "clues": ["impecunious", "in straitened circumstances", "parsimonious", "hard up", "pinched", "penniless", "penurious"]}, {"answer": "peppy", "hint": "synonyms for peppy", "clues": ["spirited", "bouncing", "bouncy", "zippy", "peppy"]}, {"answer": "perceivable", "hint": "synonyms for perceivable", "clues": ["intelligible", "apprehensible", "understandable", "graspable", "perceivable"]}, {"answer": "peregrine", "hint": "synonyms for peregrine", "clues": ["nomadic", "roving", "mobile", "wandering", "peregrine"]}, {"answer": "peremptory", "hint": "synonyms for peremptory", "clues": ["autocratic", "magisterial", "high-and-mighty", "dominating", "bossy", "peremptory"]}, {"answer": "perfect", "hint": "synonyms for perfect", "clues": ["consummate", "double-dyed", "gross", "staring", "arrant", "sodding", "unadulterated", "everlasting", "complete", "thoroughgoing", "utter", "pure", "stark", "perfect"]}, {"answer": "perfervid", "hint": "synonyms for perfervid", "clues": ["fervent", "impassioned", "torrid", "fervid", "fiery", "ardent", "perfervid"]}, {"answer": "perfumed", "hint": "synonyms for perfumed", "clues": ["scented", "sweet-scented", "sweet", "odoriferous", "odorous", "sweet-smelling", "perfumed"]}, {"answer": "perfunctory", "hint": "synonyms for perfunctory", "clues": ["casual", "pro forma", "cursory", "passing", "perfunctory"]}, {"answer": "pernicious", "hint": "synonyms for pernicious", "clues": ["baneful", "deadly", "subtle", "pestilent", "insidious", "pernicious"]}, {"answer": "perpetual", "hint": "synonyms for perpetual", "clues": ["eonian", "ceaseless", "unremitting", "incessant", "unending", "everlasting", "never-ending", "constant", "eternal", "ageless", "unceasing", "perpetual"]}, {"answer": "persistent", "hint": "synonyms for persistent", "clues": ["relentless", "unyielding", "dour", "dogged", "lasting", "tenacious", "haunting", "pertinacious", "unrelenting", "persistent"]}, {"answer": "persnickety", "hint": "synonyms for persnickety", "clues": ["bigheaded", "snotty", "snooty", "too big for one's breeches", "pernickety", "snot-nosed", "uppish", "stuck-up"]}, {"answer": "perspicacious", "hint": "synonyms for perspicacious", "clues": ["clear-sighted", "clear-eyed", "sagacious", "sapient", "perspicacious"]}, {"answer": "perspicuous", "hint": "synonyms for perspicuous", "clues": ["crystal clear", "lucid", "luculent", "limpid", "pellucid", "perspicuous"]}, {"answer": "pertinacious", "hint": "synonyms for pertinacious", "clues": ["unyielding", "dour", "dogged", "persistent", "tenacious", "pertinacious"]}, {"answer": "perturbing", "hint": "synonyms for perturbing", "clues": ["troubling", "worrying", "disturbing", "worrisome", "distressful", "distressing", "perturbing"]}, {"answer": "perverse", "hint": "synonyms for perverse", "clues": ["reprobate", "perverted", "wayward", "depraved", "contrary", "obstinate", "perverse"]}, {"answer": "perverted", "hint": "synonyms for perverted", "clues": ["reprobate", "kinky", "misrepresented", "distorted", "perverse", "twisted", "depraved", "perverted"]}, {"answer": "pesky", "hint": "synonyms for pesky", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "plaguy", "irritating", "pestering", "vexing", "bothersome", "galling", "vexatious", "pesky"]}, {"answer": "pestered", "hint": "synonyms for pestered", "clues": ["harried", "harassed", "annoyed", "vexed", "pestered"]}, {"answer": "pestering", "hint": "synonyms for pestering", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritating", "vexing", "bothersome", "galling", "vexatious", "pestering"]}, {"answer": "pestiferous", "hint": "synonyms for pestiferous", "clues": ["teasing", "pestilential", "annoying", "pesky", "plaguy", "irritating", "pestering", "bothersome", "dirty", "corruptive", "perversive", "nettlesome", "vexing", "galling", "vexatious", "pestiferous"]}, {"answer": "pestilent", "hint": "synonyms for pestilent", "clues": ["baneful", "deadly", "pernicious", "pestiferous", "pestilential", "plaguey"]}, {"answer": "pet", "hint": "synonyms for pet", "clues": ["preferred", "best-loved", "favourite", "preferent", "favored", "pet"]}, {"answer": "petite", "hint": "synonyms for petite", "clues": ["bantam", "midget", "flyspeck", "lilliputian", "tiny", "diminutive", "petite"]}, {"answer": "pettish", "hint": "synonyms for pettish", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "peevish", "peckish", "petulant", "pettish"]}, {"answer": "petty", "hint": "synonyms for petty", "clues": ["junior-grade", "piffling", "subaltern", "niggling", "lowly", "fiddling", "small-minded", "lower-ranking", "footling", "secondary", "picayune", "lilliputian", "trivial", "little", "petty"]}, {"answer": "petulant", "hint": "synonyms for petulant", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "pettish", "peevish", "peckish", "petulant"]}, {"answer": "phantasmal", "hint": "synonyms for phantasmal", "clues": ["ghostlike", "spiritual", "apparitional", "ghostly", "spectral", "phantasmal"]}, {"answer": "pharisaic", "hint": "synonyms for pharisaic", "clues": ["sanctimonious", "pietistic", "self-righteous", "pharisaical", "holier-than-thou"]}, {"answer": "pharisaical", "hint": "synonyms for pharisaical", "clues": ["sanctimonious", "pietistic", "pharisaic", "self-righteous", "holier-than-thou"]}, {"answer": "phoney", "hint": "synonyms for phoney", "clues": ["phony", "fake", "bogus", "bastard"]}, {"answer": "phony", "hint": "synonyms for phony", "clues": ["phoney", "fake", "bogus", "bastard"]}, {"answer": "picayune", "hint": "synonyms for picayune", "clues": ["piffling", "niggling", "fiddling", "petty", "footling", "lilliputian", "trivial", "little", "picayune"]}, {"answer": "picky", "hint": "synonyms for picky", "clues": ["finicky", "particular", "finical", "fussy", "picky"]}, {"answer": "pictorial", "hint": "synonyms for pictorial", "clues": ["lifelike", "graphic", "vivid", "pictural", "pictorial"]}, {"answer": "pictured", "hint": "synonyms for pictured", "clues": ["envisioned", "depicted", "visualised", "portrayed", "pictured"]}, {"answer": "piddling", "hint": "synonyms for piddling", "clues": ["piffling", "niggling", "fiddling", "petty", "footling", "picayune", "lilliputian", "trivial", "little"]}, {"answer": "pie-eyed", "hint": "synonyms for pie-eyed", "clues": ["loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "pie-eyed"]}, {"answer": "piebald", "hint": "synonyms for piebald", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "pied", "varicolored", "piebald"]}, {"answer": "piecemeal", "hint": "synonyms for piecemeal", "clues": ["bit-by-bit", "in small stages", "stepwise", "step-by-step", "piecemeal"]}, {"answer": "pied", "hint": "synonyms for pied", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "piebald", "varicolored", "pied"]}, {"answer": "piercing", "hint": "synonyms for piercing", "clues": ["knifelike", "acute", "lancinate", "lancinating", "cutting", "penetrative", "keen", "incisive", "sharp", "penetrating", "discriminating", "stabbing", "piercing"]}, {"answer": "pietistic", "hint": "synonyms for pietistic", "clues": ["sanctimonious", "pharisaic", "self-righteous", "pietistical", "holier-than-thou"]}, {"answer": "pietistical", "hint": "synonyms for pietistical", "clues": ["sanctimonious", "pietistic", "pharisaic", "self-righteous", "holier-than-thou"]}, {"answer": "piffling", "hint": "synonyms for piffling", "clues": ["niggling", "fiddling", "petty", "footling", "picayune", "lilliputian", "trivial", "little", "piffling"]}, {"answer": "piggish", "hint": "synonyms for piggish", "clues": ["piggy", "porcine", "hoggish", "swinish", "piggish"]}, {"answer": "piggy", "hint": "synonyms for piggy", "clues": ["porcine", "hoggish", "swinish", "piggish", "piggy"]}, {"answer": "pillaged", "hint": "synonyms for pillaged", "clues": ["ransacked", "plundered", "ravaged", "despoiled", "raped", "looted", "sacked", "pillaged"]}, {"answer": "pinched", "hint": "synonyms for pinched", "clues": ["adenoidal", "hard up", "haggard", "cadaverous", "in straitened circumstances", "emaciated", "penurious", "wasted", "skeletal", "impecunious", "bony", "nasal", "penniless", "gaunt", "pinched"]}, {"answer": "pink-slipped", "hint": "synonyms for pink-slipped", "clues": ["laid-off", "fired", "dismissed", "discharged", "pink-slipped"]}, {"answer": "pint-size", "hint": "synonyms for pint-size", "clues": ["sawn-off", "runty", "sawed-off", "pint-sized"]}, {"answer": "pint-sized", "hint": "synonyms for pint-sized", "clues": ["sawn-off", "runty", "sawed-off", "pint-size"]}, {"answer": "piquant", "hint": "synonyms for piquant", "clues": ["savoury", "engaging", "salty", "zesty", "spicy", "piquant"]}, {"answer": "pissed", "hint": "synonyms for pissed", "clues": ["pie-eyed", "loaded", "nettled", "squiffy", "tight", "blind drunk", "annoyed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "steamed", "roiled", "peeved", "fuddled", "slopped", "stiff", "irritated", "sloshed", "blotto", "pissed off", "pixilated", "stung", "smashed", "miffed", "crocked", "wet", "plastered", "pissed"]}, {"answer": "pissed_off", "hint": "synonyms for pissed off", "clues": ["nettled", "steamed", "annoyed", "riled", "pissed", "stung", "miffed", "peeved", "irritated", "pissed off"]}, {"answer": "pitchy", "hint": "synonyms for pitchy", "clues": ["resiny", "coal-black", "jet", "resinous", "sooty", "tarry", "jet-black", "pitchy"]}, {"answer": "piteous", "hint": "synonyms for piteous", "clues": ["pathetic", "pitiable", "wretched", "hapless", "poor", "pitiful", "miserable", "misfortunate", "piteous"]}, {"answer": "pitiable", "hint": "synonyms for pitiable", "clues": ["pathetic", "wretched", "piteous", "hapless", "poor", "pitiful", "miserable", "misfortunate", "pitiable"]}, {"answer": "pitiful", "hint": "synonyms for pitiful", "clues": ["pathetic", "pitiable", "wretched", "piteous", "hapless", "sad", "poor", "deplorable", "distressing", "miserable", "sorry", "misfortunate", "lamentable", "pitiful"]}, {"answer": "pitiless", "hint": "synonyms for pitiless", "clues": ["ruthless", "remorseless", "unpitying", "unkind", "pitiless"]}, {"answer": "pitted", "hint": "synonyms for pitted", "clues": ["alveolate", "cavitied", "honeycombed", "pitted"]}, {"answer": "pixilated", "hint": "synonyms for pixilated", "clues": ["pie-eyed", "prankish", "loaded", "impish", "mischievous", "squiffy", "blind drunk", "tight", "pissed", "puckish", "arch", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "implike", "stiff", "sloshed", "blotto", "smashed", "crocked", "wicked", "wet", "plastered", "pixilated"]}, {"answer": "placid", "hint": "synonyms for placid", "clues": ["still", "even-tempered", "smooth", "good-tempered", "equable", "quiet", "unruffled", "tranquil", "placid"]}, {"answer": "plaguey", "hint": "synonyms for plaguey", "clues": ["teasing", "pestiferous", "nettlesome", "pestilential", "annoying", "pesky", "plaguy", "irritating", "pestering", "vexing", "bothersome", "galling", "vexatious"]}, {"answer": "plaguy", "hint": "synonyms for plaguy", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "pesky", "irritating", "pestering", "vexing", "bothersome", "galling", "plaguey", "vexatious"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["unmingled", "sheer", "unornamented", "apparent", "bare", "unembellished", "unvarnished", "unmistakable", "homely", "manifest", "evident", "patent", "unmixed", "unpatterned", "spare", "plain"]}, {"answer": "plainspoken", "hint": "synonyms for plainspoken", "clues": ["outspoken", "free-spoken", "candid", "point-blank", "straight-from-the-shoulder", "forthright", "frank", "blunt", "plainspoken"]}, {"answer": "planetary", "hint": "synonyms for planetary", "clues": ["erratic", "wandering", "global", "terrestrial", "world-wide", "planetal", "world", "planetary"]}, {"answer": "planless", "hint": "synonyms for planless", "clues": ["aimless", "adrift", "directionless", "rudderless", "afloat", "undirected", "planless"]}, {"answer": "planted", "hint": "synonyms for planted", "clues": ["deep-rooted", "ingrained", "implanted", "deep-seated"]}, {"answer": "plastered", "hint": "synonyms for plastered", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "slicked", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "sealed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered"]}, {"answer": "plastic", "hint": "synonyms for plastic", "clues": ["fictile", "pliant", "formative", "shaping", "moldable", "plastic"]}, {"answer": "platyrhine", "hint": "synonyms for platyrhine", "clues": ["broadnosed", "platyrhinian", "platyrrhinic", "platyrhine"]}, {"answer": "platyrrhine", "hint": "synonyms for platyrrhine", "clues": ["platyrhine", "broadnosed", "platyrhinian", "platyrrhinic"]}, {"answer": "platyrrhinian", "hint": "synonyms for platyrrhinian", "clues": ["platyrhine", "broadnosed", "platyrhinian", "platyrrhinic"]}, {"answer": "platyrrhinic", "hint": "synonyms for platyrrhinic", "clues": ["platyrhine", "broadnosed", "platyrhinian", "platyrrhinic"]}, {"answer": "plausive", "hint": "synonyms for plausive", "clues": ["approbatory", "approbative", "affirmative", "approving", "plausive"]}, {"answer": "played_out", "hint": "synonyms for played out", "clues": ["spent", "dog-tired", "worn-out", "exhausted", "fagged", "washed-out", "fatigued", "played out"]}, {"answer": "pleasant-tasting", "hint": "synonyms for pleasant-tasting", "clues": ["delectable", "toothsome", "scrumptious", "luscious", "delicious", "yummy", "pleasant-tasting"]}, {"answer": "plenteous", "hint": "synonyms for plenteous", "clues": ["rich", "plentiful", "copious", "ample", "plenteous"]}, {"answer": "plentiful", "hint": "synonyms for plentiful", "clues": ["rich", "copious", "bountiful", "ample", "plenteous", "plentiful"]}, {"answer": "pliable", "hint": "synonyms for pliable", "clues": ["fictile", "pliant", "tractile", "tensile", "ductile", "bendable", "waxy", "flexible", "elastic", "malleable", "pliable"]}, {"answer": "pliant", "hint": "synonyms for pliant", "clues": ["tensile", "tractile", "pliable", "ductile", "bendable", "waxy", "flexible", "plastic", "malleable", "pliant"]}, {"answer": "plumed", "hint": "synonyms for plumed", "clues": ["plumate", "plumy", "plumose", "crested", "plumed"]}, {"answer": "plumy", "hint": "synonyms for plumy", "clues": ["plumelike", "feathered", "feathery", "plumed", "plumy"]}, {"answer": "plush", "hint": "synonyms for plush", "clues": ["lucullan", "lush", "lavish", "plushy"]}, {"answer": "plushy", "hint": "synonyms for plushy", "clues": ["lush", "plush-like", "lucullan", "lavish", "plushy"]}, {"answer": "pocket-size", "hint": "synonyms for pocket-size", "clues": ["pocket-sized", "small-scale", "modest", "small", "pocketable", "minor"]}, {"answer": "pocket-sized", "hint": "synonyms for pocket-sized", "clues": ["small-scale", "pocket-size", "modest", "small", "pocketable", "minor"]}, {"answer": "podgy", "hint": "synonyms for podgy", "clues": ["roly-poly", "dumpy", "tubby", "pudgy", "podgy"]}, {"answer": "point-blank", "hint": "synonyms for point-blank", "clues": ["outspoken", "free-spoken", "candid", "straight-from-the-shoulder", "plainspoken", "forthright", "frank", "blunt", "point-blank"]}, {"answer": "pointless", "hint": "synonyms for pointless", "clues": ["otiose", "purposeless", "wasted", "senseless", "superfluous", "unpointed", "pointless"]}, {"answer": "poised", "hint": "synonyms for poised", "clues": ["self-contained", "self-possessed", "collected", "equanimous", "self-collected", "poised"]}, {"answer": "poker-faced", "hint": "synonyms for poker-faced", "clues": ["expressionless", "unexpressive", "deadpan", "impassive", "poker-faced"]}, {"answer": "pokey", "hint": "synonyms for pokey", "clues": ["laggard", "one-horse", "jerkwater", "poky", "dilatory"]}, {"answer": "poky", "hint": "synonyms for poky", "clues": ["pokey", "laggard", "one-horse", "jerkwater", "dilatory"]}, {"answer": "polar", "hint": "synonyms for polar", "clues": ["gelid", "opposite", "diametric", "glacial", "arctic", "frigid", "icy", "pivotal", "polar"]}, {"answer": "polished", "hint": "synonyms for polished", "clues": ["dressed", "milled", "refined", "urbane", "svelte", "polished"]}, {"answer": "polite", "hint": "synonyms for polite", "clues": ["cultivated", "civil", "civilized", "genteel", "cultured", "polite"]}, {"answer": "pompous", "hint": "synonyms for pompous", "clues": ["overblown", "ceremonious", "pontifical", "grandiloquent", "portentous", "pompous"]}, {"answer": "pondering", "hint": "synonyms for pondering", "clues": ["broody", "brooding", "ruminative", "musing", "reflective", "contemplative", "meditative", "pensive", "pondering"]}, {"answer": "pontifical", "hint": "synonyms for pontifical", "clues": ["portentous", "grandiloquent", "apostolic", "overblown", "episcopal", "pompous", "papal", "pontifical"]}, {"answer": "poor", "hint": "synonyms for poor", "clues": ["pathetic", "pitiable", "wretched", "piteous", "hapless", "inadequate", "short", "pitiful", "miserable", "misfortunate", "poor"]}, {"answer": "poorly", "hint": "synonyms for poorly", "clues": ["sickly", "indisposed", "ailing", "under the weather", "seedy", "peaked", "unwell", "poorly"]}, {"answer": "popish", "hint": "synonyms for popish", "clues": ["papist", "Roman", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist", "popish"]}, {"answer": "porcine", "hint": "synonyms for porcine", "clues": ["hoggish", "swinish", "piggish", "piggy", "gross", "porcine"]}, {"answer": "portentous", "hint": "synonyms for portentous", "clues": ["overblown", "foreboding", "pompous", "grandiloquent", "prodigious", "pontifical", "fateful", "portentous"]}, {"answer": "positive", "hint": "synonyms for positive", "clues": ["electropositive", "prescribed", "positivistic", "irrefutable", "plus", "positively charged", "overconfident", "cocksure", "convinced", "confident", "incontrovertible", "confirming", "positive"]}, {"answer": "possessed", "hint": "synonyms for possessed", "clues": ["demoniacal", "amuck", "amok", "berserk", "obsessed", "possessed"]}, {"answer": "potent", "hint": "synonyms for potent", "clues": ["powerful", "strong", "stiff", "virile", "potent"]}, {"answer": "potty", "hint": "synonyms for potty", "clues": ["tiddly", "enamored", "infatuated", "soft on", "in love", "taken with", "tipsy", "smitten", "potty"]}, {"answer": "poverty-stricken", "hint": "synonyms for poverty-stricken", "clues": ["necessitous", "needy", "impoverished", "destitute", "indigent", "poverty-stricken"]}, {"answer": "powdered", "hint": "synonyms for powdered", "clues": ["powdery", "pulverized", "small-grained", "fine-grained", "powdered"]}, {"answer": "powdery", "hint": "synonyms for powdery", "clues": ["pulverized", "small-grained", "powdered", "fine-grained", "powdery"]}, {"answer": "powerful", "hint": "synonyms for powerful", "clues": ["hefty", "knock-down", "sinewy", "herculean", "muscular", "brawny", "potent", "powerful"]}, {"answer": "practicable", "hint": "synonyms for practicable", "clues": ["workable", "executable", "feasible", "operable", "viable", "practicable"]}, {"answer": "practical", "hint": "synonyms for practical", "clues": ["hardheaded", "virtual", "hard-nosed", "pragmatic", "practical"]}, {"answer": "practiced", "hint": "synonyms for practiced", "clues": ["skilful", "adept", "good", "practised", "proficient", "expert"]}, {"answer": "pragmatic", "hint": "synonyms for pragmatic", "clues": ["practical", "hardheaded", "matter-of-fact", "pragmatical", "hard-nosed"]}, {"answer": "prankish", "hint": "synonyms for prankish", "clues": ["puckish", "impish", "mischievous", "arch", "wicked", "implike", "pixilated", "prankish"]}, {"answer": "precarious", "hint": "synonyms for precarious", "clues": ["unstable", "shaky", "parlous", "perilous", "touch-and-go", "precarious"]}, {"answer": "precious", "hint": "synonyms for precious", "clues": ["cute", "treasured", "valued", "wanted", "cherished", "precious"]}, {"answer": "precipitant", "hint": "synonyms for precipitant", "clues": ["overhasty", "hasty", "precipitate", "precipitous"]}, {"answer": "precipitate", "hint": "synonyms for precipitate", "clues": ["precipitant", "overhasty", "hasty", "precipitous"]}, {"answer": "precipitous", "hint": "synonyms for precipitous", "clues": ["precipitate", "overhasty", "sharp", "hasty", "abrupt", "precipitous"]}, {"answer": "predatory", "hint": "synonyms for predatory", "clues": ["vulturous", "rapacious", "predacious", "raptorial", "vulturine", "marauding", "ravening", "raiding", "predatory"]}, {"answer": "predominant", "hint": "synonyms for predominant", "clues": ["dominant", "predominate", "prevalent", "preponderant", "rife", "overriding", "prevailing", "preponderating", "paramount"]}, {"answer": "predominate", "hint": "synonyms for predominate", "clues": ["preponderant", "predominant", "overriding", "preponderating", "paramount"]}, {"answer": "preferent", "hint": "synonyms for preferent", "clues": ["preferred", "best-loved", "favourite", "pet", "favored", "preferent"]}, {"answer": "preferred", "hint": "synonyms for preferred", "clues": ["preferable", "best-loved", "favourite", "pet", "favored", "preferent", "preferred"]}, {"answer": "prehensile", "hint": "synonyms for prehensile", "clues": ["grabby", "covetous", "grasping", "avaricious", "greedy", "prehensile"]}, {"answer": "preoccupied", "hint": "synonyms for preoccupied", "clues": ["haunted", "deep in thought", "taken up", "obsessed", "bemused", "lost", "preoccupied"]}, {"answer": "preponderant", "hint": "synonyms for preponderant", "clues": ["predominant", "overriding", "preponderating", "paramount", "preponderant"]}, {"answer": "preponderating", "hint": "synonyms for preponderating", "clues": ["preponderant", "predominant", "overriding", "paramount", "preponderating"]}, {"answer": "preposterous", "hint": "synonyms for preposterous", "clues": ["derisory", "nonsensical", "idiotic", "absurd", "cockeyed", "ridiculous", "ludicrous", "laughable", "preposterous"]}, {"answer": "prescribed", "hint": "synonyms for prescribed", "clues": ["appointed", "positive", "official", "ordained", "decreed", "prescribed"]}, {"answer": "pretended", "hint": "synonyms for pretended", "clues": ["assumed", "sham", "fictive", "put on", "fictitious", "false", "pretended"]}, {"answer": "preternatural", "hint": "synonyms for preternatural", "clues": ["otherworldly", "transcendental", "nonnatural", "uncanny", "preternatural"]}, {"answer": "prevailing", "hint": "synonyms for prevailing", "clues": ["prevalent", "rife", "dominant", "predominant", "prevailing"]}, {"answer": "prevalent", "hint": "synonyms for prevalent", "clues": ["rife", "prevailing", "dominant", "predominant", "prevalent"]}, {"answer": "previous", "hint": "synonyms for previous", "clues": ["late", "premature", "old", "former", "previous"]}, {"answer": "pricey", "hint": "synonyms for pricey", "clues": ["dear", "pricy", "costly", "high-priced"]}, {"answer": "prickly", "hint": "synonyms for prickly", "clues": ["bristly", "spiny", "waspish", "setaceous", "burred", "thorny", "briery", "splenetic", "briary", "bristled", "barbellate", "setose", "burry", "barbed", "prickly"]}, {"answer": "pricy", "hint": "synonyms for pricy", "clues": ["dear", "pricey", "costly", "high-priced"]}, {"answer": "prideful", "hint": "synonyms for prideful", "clues": ["haughty", "rejoicing", "lordly", "overbearing", "sniffy", "disdainful", "jubilant", "triumphant", "exultant", "exulting", "imperious", "supercilious", "triumphal", "swaggering", "prideful"]}, {"answer": "priestly", "hint": "synonyms for priestly", "clues": ["hieratic", "priestlike", "sacerdotal", "priestly"]}, {"answer": "priggish", "hint": "synonyms for priggish", "clues": ["tight-laced", "square-toed", "prudish", "straightlaced", "victorian", "prissy", "puritanical", "prim", "priggish"]}, {"answer": "prim", "hint": "synonyms for prim", "clues": ["twee", "tight-laced", "square-toed", "prudish", "priggish", "straightlaced", "dainty", "victorian", "niminy-piminy", "prissy", "puritanical", "mincing", "prim"]}, {"answer": "prima", "hint": "synonyms for prima", "clues": ["starring", "star", "stellar", "leading", "prima"]}, {"answer": "primal", "hint": "synonyms for primal", "clues": ["key", "primaeval", "primordial", "fundamental", "central", "aboriginal", "cardinal", "primal"]}, {"answer": "primary", "hint": "synonyms for primary", "clues": ["master", "principal", "elemental", "basal", "chief", "main", "elementary", "primary"]}, {"answer": "prime", "hint": "synonyms for prime", "clues": ["meridian", "prize", "select", "choice", "premier", "quality", "prime"]}, {"answer": "primeval", "hint": "synonyms for primeval", "clues": ["primordial", "primal", "aboriginal", "primaeval"]}, {"answer": "primitive", "hint": "synonyms for primitive", "clues": ["crude", "archaic", "naive", "primitive"]}, {"answer": "princely", "hint": "synonyms for princely", "clues": ["grand", "deluxe", "opulent", "gilded", "luxurious", "sumptuous", "princely"]}, {"answer": "principal", "hint": "synonyms for principal", "clues": ["chief", "primary", "main", "master", "principal"]}, {"answer": "prissy", "hint": "synonyms for prissy", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "overnice", "nice", "straightlaced", "dainty", "squeamish", "victorian", "puritanical", "prim", "prissy"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["quality", "prime", "choice", "select", "prize"]}, {"answer": "problematic", "hint": "synonyms for problematic", "clues": ["baffling", "knotty", "debatable", "elusive", "tough", "problematical"]}, {"answer": "problematical", "hint": "synonyms for problematical", "clues": ["knotty", "debatable", "problematic", "elusive", "tough", "baffling"]}, {"answer": "prodigious", "hint": "synonyms for prodigious", "clues": ["exceeding", "olympian", "surpassing", "stupendous", "colossal", "portentous", "exceptional", "prodigious"]}, {"answer": "productive", "hint": "synonyms for productive", "clues": ["fertile", "fat", "rich", "generative", "productive"]}, {"answer": "profane", "hint": "synonyms for profane", "clues": ["unconsecrated", "blue", "sacrilegious", "secular", "unsanctified", "blasphemous", "profane"]}, {"answer": "proficient", "hint": "synonyms for proficient", "clues": ["practiced", "skilful", "technical", "adept", "good", "expert", "proficient"]}, {"answer": "profligate", "hint": "synonyms for profligate", "clues": ["degenerate", "extravagant", "prodigal", "degraded", "spendthrift", "libertine", "debauched", "fast", "dissolute", "riotous", "dissipated", "profligate"]}, {"answer": "profound", "hint": "synonyms for profound", "clues": ["unfathomed", "unsounded", "heavy", "unplumbed", "fundamental", "wakeless", "sound", "profound"]}, {"answer": "profuse", "hint": "synonyms for profuse", "clues": ["lush", "riotous", "exuberant", "luxuriant", "profuse"]}, {"answer": "prohibited", "hint": "synonyms for prohibited", "clues": ["taboo", "forbidden", "verboten", "banned", "proscribed", "tabu", "out", "prohibited"]}, {"answer": "projected", "hint": "synonyms for projected", "clues": ["projecting", "protruding", "sticking", "relieved", "sticking out", "jutting", "projected"]}, {"answer": "projecting", "hint": "synonyms for projecting", "clues": ["projected", "protruding", "sticking", "relieved", "sticking out", "jutting", "projecting"]}, {"answer": "prolate", "hint": "synonyms for prolate", "clues": ["oviform", "oval", "watermelon-shaped", "oval-shaped", "egg-shaped", "elliptical", "ovate", "ovoid", "prolate"]}, {"answer": "prolonged", "hint": "synonyms for prolonged", "clues": ["drawn-out", "protracted", "elongated", "lengthy", "lengthened", "extended", "prolonged"]}, {"answer": "prominent", "hint": "synonyms for prominent", "clues": ["outstanding", "spectacular", "striking", "big", "salient", "large", "prominent"]}, {"answer": "promiscuous", "hint": "synonyms for promiscuous", "clues": ["wanton", "light", "easy", "sluttish", "loose", "promiscuous"]}, {"answer": "pronged", "hint": "synonyms for pronged", "clues": ["forficate", "tined", "forked", "branched", "biramous", "fork-like", "prongy", "bifurcate", "pronged"]}, {"answer": "prongy", "hint": "synonyms for prongy", "clues": ["branched", "biramous", "forficate", "bifurcate", "fork-like", "forked", "pronged", "prongy"]}, {"answer": "prophylactic", "hint": "synonyms for prophylactic", "clues": ["cautionary", "preventative", "contraceptive", "antifertility", "prophylactic"]}, {"answer": "prosaic", "hint": "synonyms for prosaic", "clues": ["prosy", "earthbound", "unglamorous", "pedestrian", "humdrum", "commonplace", "matter-of-fact", "prosaic"]}, {"answer": "proscribed", "hint": "synonyms for proscribed", "clues": ["taboo", "forbidden", "verboten", "tabu", "out", "prohibited", "proscribed"]}, {"answer": "prospering", "hint": "synonyms for prospering", "clues": ["booming", "flourishing", "roaring", "prosperous", "thriving", "palmy", "prospering"]}, {"answer": "prosperous", "hint": "synonyms for prosperous", "clues": ["booming", "well-heeled", "well-off", "easy", "prospering", "favorable", "palmy", "halcyon", "well-fixed", "thriving", "lucky", "well-to-do", "golden", "comfortable", "well-situated", "roaring", "flourishing", "prosperous"]}, {"answer": "prospicient", "hint": "synonyms for prospicient", "clues": ["foresightful", "farseeing", "foresighted", "long", "longsighted", "prospicient"]}, {"answer": "protracted", "hint": "synonyms for protracted", "clues": ["drawn-out", "prolonged", "extended", "lengthy", "protracted"]}, {"answer": "protruding", "hint": "synonyms for protruding", "clues": ["projected", "projecting", "sticking", "relieved", "sticking out", "jutting", "protruding"]}, {"answer": "protuberant", "hint": "synonyms for protuberant", "clues": ["bellied", "bulgy", "bulbous", "bulging", "bellying", "protuberant"]}, {"answer": "prudish", "hint": "synonyms for prudish", "clues": ["tight-laced", "square-toed", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim", "prudish"]}, {"answer": "puckish", "hint": "synonyms for puckish", "clues": ["prankish", "impish", "mischievous", "arch", "wicked", "implike", "pixilated", "puckish"]}, {"answer": "pudgy", "hint": "synonyms for pudgy", "clues": ["roly-poly", "dumpy", "tubby", "podgy", "pudgy"]}, {"answer": "puffy", "hint": "synonyms for puffy", "clues": ["intumescent", "bouffant", "gusty", "tumid", "turgid", "puffy"]}, {"answer": "pulverised", "hint": "synonyms for pulverised", "clues": ["powdery", "pulverized", "small-grained", "powdered", "fine-grained"]}, {"answer": "pulverized", "hint": "synonyms for pulverized", "clues": ["powdery", "pulverised", "small-grained", "powdered", "fine-grained"]}, {"answer": "pungent", "hint": "synonyms for pungent", "clues": ["nipping", "acrid", "mordacious", "biting", "barbed", "pungent"]}, {"answer": "punic", "hint": "synonyms for punic", "clues": ["treacherous", "Punic", "Carthaginian", "perfidious"]}, {"answer": "punishing", "hint": "synonyms for punishing", "clues": ["hard", "backbreaking", "gruelling", "heavy", "laborious", "toilsome", "arduous", "operose", "punishing"]}, {"answer": "punk", "hint": "synonyms for punk", "clues": ["cheesy", "bum", "tinny", "crummy", "cheap", "chintzy", "sleazy", "punk"]}, {"answer": "purblind", "hint": "synonyms for purblind", "clues": ["visually challenged", "sand-blind", "obtuse", "visually impaired", "dim-sighted", "near-blind", "purblind"]}, {"answer": "purchasable", "hint": "synonyms for purchasable", "clues": ["venal", "dishonest", "for sale", "corruptible", "bribable", "purchasable"]}, {"answer": "pure", "hint": "synonyms for pure", "clues": ["consummate", "double-dyed", "vestal", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "unadulterated", "virtuous", "virginal", "complete", "thoroughgoing", "utter", "stark", "saturated", "pure"]}, {"answer": "puritanical", "hint": "synonyms for puritanical", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "straightlaced", "victorian", "prissy", "blue", "prim", "puritanic"]}, {"answer": "purple", "hint": "synonyms for purple", "clues": ["regal", "over-embellished", "royal", "empurpled", "purplish", "imperial", "majestic", "violet", "purple"]}, {"answer": "purposeless", "hint": "synonyms for purposeless", "clues": ["otiose", "wasted", "pointless", "senseless", "superfluous", "purposeless"]}, {"answer": "put-upon", "hint": "synonyms for put-upon", "clues": ["used", "victimised", "ill-used", "exploited", "put-upon"]}, {"answer": "put_on", "hint": "synonyms for put on", "clues": ["assumed", "pretended", "sham", "fictive", "fictitious", "false", "put on"]}, {"answer": "puzzling", "hint": "synonyms for puzzling", "clues": ["perplexing", "enigmatic", "confusing", "puzzling"]}, {"answer": "quaggy", "hint": "synonyms for quaggy", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "sloughy", "swampy", "sloppy", "waterlogged", "squashy", "boggy", "quaggy"]}, {"answer": "qualified", "hint": "synonyms for qualified", "clues": ["certified", "dependent", "restricted", "qualified"]}, {"answer": "quality", "hint": "synonyms for quality", "clues": ["prime", "choice", "select", "prize", "quality"]}, {"answer": "queasy", "hint": "synonyms for queasy", "clues": ["unquiet", "nervous", "nauseating", "offensive", "sickish", "loathsome", "nauseous", "vile", "anxious", "sickening", "noisome", "uneasy", "nauseated", "sick", "queasy"]}, {"answer": "queer", "hint": "synonyms for queer", "clues": ["singular", "rummy", "funny", "rum", "odd", "peculiar", "homophile", "curious", "gay", "queer"]}, {"answer": "quenched", "hint": "synonyms for quenched", "clues": ["slaked", "quelled", "squelched", "satisfied", "quenched"]}, {"answer": "questioning", "hint": "synonyms for questioning", "clues": ["speculative", "doubting", "sceptical", "wondering", "quizzical", "inquisitive", "questioning"]}, {"answer": "quick", "hint": "synonyms for quick", "clues": ["agile", "spry", "speedy", "flying", "straightaway", "fast", "immediate", "warm", "ready", "nimble", "prompt", "quick"]}, {"answer": "quick-sighted", "hint": "synonyms for quick-sighted", "clues": ["argus-eyed", "lynx-eyed", "sharp-sighted", "sharp-eyed", "keen-sighted", "hawk-eyed", "quick-sighted"]}, {"answer": "quick-tempered", "hint": "synonyms for quick-tempered", "clues": ["short-tempered", "irascible", "hotheaded", "choleric", "quick-tempered"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["still", "restrained", "smooth", "hushed", "placid", "subdued", "unruffled", "tranquil", "muted", "quiet"]}, {"answer": "quirky", "hint": "synonyms for quirky", "clues": ["kinky", "offbeat", "far-out", "way-out", "quirky"]}, {"answer": "quondam", "hint": "synonyms for quondam", "clues": ["erstwhile", "sometime", "one-time", "old", "former", "quondam"]}, {"answer": "quotidian", "hint": "synonyms for quotidian", "clues": ["everyday", "workaday", "unremarkable", "mundane", "routine", "quotidian"]}, {"answer": "r.c.", "hint": "synonyms for r.c.", "clues": ["papist", "Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist"]}, {"answer": "rabble-rousing", "hint": "synonyms for rabble-rousing", "clues": ["instigative", "incitive", "seditious", "inflammatory", "incendiary", "rabble-rousing"]}, {"answer": "racy", "hint": "synonyms for racy", "clues": ["juicy", "gamey", "full-bodied", "lively", "rich", "blue", "risque", "spicy", "naughty", "robust", "racy"]}, {"answer": "raddled", "hint": "synonyms for raddled", "clues": ["worn", "haggard", "drawn", "worn-out", "careworn", "raddled"]}, {"answer": "radiant", "hint": "synonyms for radiant", "clues": ["refulgent", "beamy", "beaming", "radiant"]}, {"answer": "radical", "hint": "synonyms for radical", "clues": ["extremist", "ultra", "revolutionary", "basal", "radical"]}, {"answer": "raffish", "hint": "synonyms for raffish", "clues": ["natty", "jaunty", "dapper", "dashing", "snappy", "devil-may-care", "rakish", "spruce", "spiffy", "raffish"]}, {"answer": "raging", "hint": "synonyms for raging", "clues": ["hot", "wild", "tempestuous", "furious", "angry", "raging"]}, {"answer": "rakish", "hint": "synonyms for rakish", "clues": ["natty", "jaunty", "dapper", "dashing", "snappy", "devil-may-care", "spruce", "spiffy", "raffish", "rakish"]}, {"answer": "ramate", "hint": "synonyms for ramate", "clues": ["ramous", "branched", "ramose", "branching", "ramate"]}, {"answer": "rambling", "hint": "synonyms for rambling", "clues": ["excursive", "digressive", "wandering", "sprawling", "winding", "discursive", "straggling", "straggly", "meandering", "rambling"]}, {"answer": "rambunctious", "hint": "synonyms for rambunctious", "clues": ["boisterous", "robustious", "unruly", "rambunctious"]}, {"answer": "ramose", "hint": "synonyms for ramose", "clues": ["ramous", "branched", "ramate", "branching", "ramose"]}, {"answer": "ramous", "hint": "synonyms for ramous", "clues": ["branched", "ramose", "ramate", "branching", "ramous"]}, {"answer": "ramshackle", "hint": "synonyms for ramshackle", "clues": ["tatterdemalion", "dilapidated", "tumble-down", "broken-down", "derelict", "bedraggled", "ramshackle"]}, {"answer": "randy", "hint": "synonyms for randy", "clues": ["horny", "turned on", "aroused", "steamy", "ruttish", "randy"]}, {"answer": "rank", "hint": "synonyms for rank", "clues": ["sheer", "crying", "out-and-out", "right-down", "glaring", "gross", "flagrant", "absolute", "downright", "egregious", "rank"]}, {"answer": "rapacious", "hint": "synonyms for rapacious", "clues": ["vulturous", "ravenous", "voracious", "wolfish", "predatory", "esurient", "raptorial", "vulturine", "edacious", "ravening", "rapacious"]}, {"answer": "raped", "hint": "synonyms for raped", "clues": ["despoiled", "sacked", "pillaged", "ravaged", "raped"]}, {"answer": "rapt", "hint": "synonyms for rapt", "clues": ["rhapsodic", "enraptured", "rapturous", "ecstatic", "rapt"]}, {"answer": "raptorial", "hint": "synonyms for raptorial", "clues": ["vulturous", "vulturine", "rapacious", "ravening", "predatory", "raptorial"]}, {"answer": "rapturous", "hint": "synonyms for rapturous", "clues": ["rhapsodic", "enraptured", "rapt", "ecstatic", "rapturous"]}, {"answer": "rarefied", "hint": "synonyms for rarefied", "clues": ["idealistic", "grand", "rare", "rarified", "high-flown", "sublime", "noble-minded", "exalted", "high-minded", "lofty", "elevated"]}, {"answer": "rarified", "hint": "synonyms for rarified", "clues": ["idealistic", "grand", "rare", "high-flown", "rarefied", "sublime", "noble-minded", "exalted", "high-minded", "lofty", "elevated"]}, {"answer": "rascally", "hint": "synonyms for rascally", "clues": ["roguish", "scoundrelly", "devilish", "blackguardly", "rascally"]}, {"answer": "rasping", "hint": "synonyms for rasping", "clues": ["grating", "gravelly", "raspy", "scratchy", "rough", "rasping"]}, {"answer": "raspy", "hint": "synonyms for raspy", "clues": ["grating", "gravelly", "scratchy", "rough", "rasping", "raspy"]}, {"answer": "rattling", "hint": "synonyms for rattling", "clues": ["marvelous", "grand", "wonderful", "wondrous", "fantastic", "howling", "alert", "lively", "snappy", "tremendous", "terrific", "spanking", "brisk", "merry", "zippy", "rattling"]}, {"answer": "raunchy", "hint": "synonyms for raunchy", "clues": ["grubby", "grungy", "salacious", "grimy", "begrimed", "obscene", "lewd", "dingy", "raunchy"]}, {"answer": "ravaged", "hint": "synonyms for ravaged", "clues": ["despoiled", "raped", "pillaged", "sacked", "ravaged"]}, {"answer": "ravening", "hint": "synonyms for ravening", "clues": ["vulturous", "ravenous", "voracious", "wolfish", "rapacious", "predatory", "esurient", "raptorial", "vulturine", "edacious", "ravening"]}, {"answer": "ravenous", "hint": "synonyms for ravenous", "clues": ["voracious", "wolfish", "rapacious", "starved", "sharp-set", "famished", "esurient", "ravening", "edacious", "ravenous"]}, {"answer": "raw", "hint": "synonyms for raw", "clues": ["crude", "peeled", "in the altogether", "in the raw", "cutting", "bare-ass", "natural", "sensitive", "tender", "sore", "naked", "stark naked", "unsanded", "new", "bleak", "naked as a jaybird", "in the buff", "raw"]}, {"answer": "real", "hint": "synonyms for real", "clues": ["existent", "genuine", "substantial", "literal", "material", "tangible", "veridical", "actual", "real"]}, {"answer": "realizable", "hint": "synonyms for realizable", "clues": ["doable", "accomplishable", "achievable", "manageable", "realizable"]}, {"answer": "reasonable", "hint": "synonyms for reasonable", "clues": ["sensible", "sane", "fairish", "fair", "reasonable"]}, {"answer": "reckless", "hint": "synonyms for reckless", "clues": ["heedless", "rash", "foolhardy", "heady", "reckless"]}, {"answer": "reclusive", "hint": "synonyms for reclusive", "clues": ["secluded", "withdrawn", "recluse", "cloistered", "sequestered"]}, {"answer": "red", "hint": "synonyms for red", "clues": ["violent", "cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "flushed", "ruby-red", "scarlet", "red-faced", "reddened", "reddish", "carmine", "cherry", "red"]}, {"answer": "red-faced", "hint": "synonyms for red-faced", "clues": ["red", "blushing", "reddened", "crimson", "blushful", "flushed", "red-faced"]}, {"answer": "red-hot", "hint": "synonyms for red-hot", "clues": ["voluptuous", "hot", "toothsome", "juicy", "sizzling", "luscious", "blistering", "red-hot"]}, {"answer": "reddened", "hint": "synonyms for reddened", "clues": ["red", "ablaze", "red-faced", "crimson", "inflamed", "flushed", "reddened"]}, {"answer": "reddish", "hint": "synonyms for reddish", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "ruby-red", "scarlet", "carmine", "cherry", "reddish"]}, {"answer": "redemptive", "hint": "synonyms for redemptive", "clues": ["redemptional", "redeeming", "redemptory", "saving", "redemptive"]}, {"answer": "redolent", "hint": "synonyms for redolent", "clues": ["aromatic", "resonant", "remindful", "reminiscent", "evocative", "smelling", "redolent"]}, {"answer": "redundant", "hint": "synonyms for redundant", "clues": ["extra", "pleonastic", "surplus", "tautologic", "superfluous", "supernumerary", "excess", "supererogatory", "spare", "redundant"]}, {"answer": "refined", "hint": "synonyms for refined", "clues": ["elegant", "polished", "tasteful", "neat", "processed", "urbane", "svelte", "graceful", "refined"]}, {"answer": "reflective", "hint": "synonyms for reflective", "clues": ["broody", "brooding", "ruminative", "musing", "contemplative", "pondering", "meditative", "pensive", "reflective"]}, {"answer": "refreshful", "hint": "synonyms for refreshful", "clues": ["refreshing", "bracing", "fresh", "brisk", "tonic", "refreshful"]}, {"answer": "refreshing", "hint": "synonyms for refreshing", "clues": ["novel", "bracing", "fresh", "brisk", "tonic", "refreshful", "refreshing"]}, {"answer": "refulgent", "hint": "synonyms for refulgent", "clues": ["radiant", "beamy", "effulgent", "beaming"]}, {"answer": "regal", "hint": "synonyms for regal", "clues": ["majestic", "royal", "purple", "imperial", "regal"]}, {"answer": "regular", "hint": "synonyms for regular", "clues": ["steady", "veritable", "unconstipated", "even", "regular"]}, {"answer": "rejoicing", "hint": "synonyms for rejoicing", "clues": ["exultant", "exulting", "prideful", "triumphal", "jubilant", "triumphant", "rejoicing"]}, {"answer": "relatiative", "hint": "synonyms for relatiative", "clues": ["retributive", "retaliatory", "vindicatory", "retributory", "relatiative"]}, {"answer": "relentless", "hint": "synonyms for relentless", "clues": ["grim", "inexorable", "unforgiving", "stern", "unrelenting", "persistent", "unappeasable", "relentless"]}, {"answer": "reliable", "hint": "synonyms for reliable", "clues": ["honest", "authentic", "dependable", "true", "reliable"]}, {"answer": "relieved", "hint": "synonyms for relieved", "clues": ["projecting", "sticking out", "alleviated", "projected", "protruding", "sticking", "eased", "jutting", "relieved"]}, {"answer": "remaining", "hint": "synonyms for remaining", "clues": ["odd", "left over", "unexpended", "left", "remaining"]}, {"answer": "remedial", "hint": "synonyms for remedial", "clues": ["healing", "therapeutic", "curative", "sanative", "alterative", "remedial"]}, {"answer": "remindful", "hint": "synonyms for remindful", "clues": ["redolent", "evocative", "resonant", "reminiscent", "remindful"]}, {"answer": "reminiscent", "hint": "synonyms for reminiscent", "clues": ["redolent", "evocative", "resonant", "remindful", "reminiscent"]}, {"answer": "remote", "hint": "synonyms for remote", "clues": ["outback", "removed", "distant", "outside", "remote"]}, {"answer": "remunerative", "hint": "synonyms for remunerative", "clues": ["compensable", "paying", "stipendiary", "salaried", "moneymaking", "lucrative", "remunerative"]}, {"answer": "renewing", "hint": "synonyms for renewing", "clues": ["reviving", "restorative", "revitalising", "renewing"]}, {"answer": "renowned", "hint": "synonyms for renowned", "clues": ["illustrious", "famous", "celebrated", "noted", "far-famed", "notable", "famed", "renowned"]}, {"answer": "repellant", "hint": "synonyms for repellant", "clues": ["repellent", "repelling", "skanky", "loathly", "yucky", "disgustful", "foul", "loathsome", "rebarbative", "wicked", "disgusting", "distasteful", "revolting"]}, {"answer": "repellent", "hint": "synonyms for repellent", "clues": ["repelling", "skanky", "loathly", "resistant", "yucky", "disgustful", "foul", "loathsome", "repellant", "rebarbative", "wicked", "disgusting", "distasteful", "revolting"]}, {"answer": "repelling", "hint": "synonyms for repelling", "clues": ["repellent", "loathly", "wicked", "yucky", "disgustful", "foul", "loathsome", "skanky", "disgusting", "distasteful", "revolting", "repelling"]}, {"answer": "reprehensible", "hint": "synonyms for reprehensible", "clues": ["deplorable", "criminal", "vicious", "condemnable", "reprehensible"]}, {"answer": "repugnant", "hint": "synonyms for repugnant", "clues": ["obscene", "detestable", "abhorrent", "repulsive", "repugnant"]}, {"answer": "repulsive", "hint": "synonyms for repulsive", "clues": ["obscene", "detestable", "repugnant", "abhorrent", "hideous", "repulsive"]}, {"answer": "required", "hint": "synonyms for required", "clues": ["compulsory", "needed", "requisite", "mandatory", "needful", "required"]}, {"answer": "resilient", "hint": "synonyms for resilient", "clues": ["springy", "bouncy", "lively", "resilient"]}, {"answer": "resistant", "hint": "synonyms for resistant", "clues": ["insubordinate", "immune", "resistive", "tolerant", "repellent", "resistant"]}, {"answer": "resonant", "hint": "synonyms for resonant", "clues": ["reverberative", "reminiscent", "resounding", "evocative", "redolent", "resonating", "remindful", "reverberating", "resonant"]}, {"answer": "resonating", "hint": "synonyms for resonating", "clues": ["reverberating", "resounding", "resonant", "reverberative", "resonating"]}, {"answer": "resounding", "hint": "synonyms for resounding", "clues": ["reverberative", "reverberating", "resonant", "resonating", "resounding"]}, {"answer": "respectable", "hint": "synonyms for respectable", "clues": ["hefty", "healthy", "estimable", "good", "sizeable", "honorable", "tidy", "goodish", "respectable"]}, {"answer": "restive", "hint": "synonyms for restive", "clues": ["jumpy", "overstrung", "edgy", "nervy", "high-strung", "uptight", "jittery", "highly strung", "restive"]}, {"answer": "restorative", "hint": "synonyms for restorative", "clues": ["recuperative", "renewing", "revitalising", "reviving", "restorative"]}, {"answer": "restrained", "hint": "synonyms for restrained", "clues": ["guarded", "moderate", "reticent", "quiet", "unemotional", "restrained"]}, {"answer": "restricting", "hint": "synonyms for restricting", "clues": ["constrictive", "limiting", "constraining", "confining", "restricting"]}, {"answer": "resultant", "hint": "synonyms for resultant", "clues": ["incidental", "consequent", "sequent", "ensuant", "concomitant", "attendant", "accompanying", "resultant"]}, {"answer": "retaliatory", "hint": "synonyms for retaliatory", "clues": ["retributive", "relatiative", "vindicatory", "retributory", "retaliatory"]}, {"answer": "reticent", "hint": "synonyms for reticent", "clues": ["untalkative", "restrained", "retiring", "self-effacing", "unemotional", "reticent"]}, {"answer": "retiring", "hint": "synonyms for retiring", "clues": ["unassuming", "reticent", "self-effacing", "past", "preceding", "retiring"]}, {"answer": "retributive", "hint": "synonyms for retributive", "clues": ["retaliatory", "vindicatory", "relatiative", "retributory", "retributive"]}, {"answer": "retributory", "hint": "synonyms for retributory", "clues": ["retributive", "retaliatory", "vindicatory", "relatiative", "retributory"]}, {"answer": "revelatory", "hint": "synonyms for revelatory", "clues": ["apocalyptic", "suggestive", "indicative", "significative", "indicatory", "revelatory"]}, {"answer": "reverberating", "hint": "synonyms for reverberating", "clues": ["reverberative", "resounding", "resonant", "resonating", "reverberating"]}, {"answer": "reverberative", "hint": "synonyms for reverberative", "clues": ["reverberating", "resounding", "resonant", "resonating", "reverberative"]}, {"answer": "revitalising", "hint": "synonyms for revitalising", "clues": ["reviving", "restorative", "renewing", "revitalizing"]}, {"answer": "revitalizing", "hint": "synonyms for revitalizing", "clues": ["reviving", "restorative", "renewing", "revitalising"]}, {"answer": "reviving", "hint": "synonyms for reviving", "clues": ["restorative", "renewing", "revitalising", "reviving"]}, {"answer": "revolting", "hint": "synonyms for revolting", "clues": ["repellent", "repelling", "loathly", "wicked", "yucky", "disgustful", "foul", "loathsome", "skanky", "disgusting", "distasteful", "revolting"]}, {"answer": "rhapsodic", "hint": "synonyms for rhapsodic", "clues": ["enraptured", "rapturous", "rapt", "ecstatic", "rhapsodic"]}, {"answer": "rheumatic", "hint": "synonyms for rheumatic", "clues": ["arthritic", "rheumy", "creaky", "rheumatoid", "rheumatic"]}, {"answer": "rheumatoid", "hint": "synonyms for rheumatoid", "clues": ["rheumatic", "arthritic", "rheumy", "creaky", "rheumatoid"]}, {"answer": "rheumy", "hint": "synonyms for rheumy", "clues": ["rheumatic", "arthritic", "creaky", "rheumatoid", "rheumy"]}, {"answer": "rich", "hint": "synonyms for rich", "clues": ["plentiful", "fertile", "full-bodied", "fat", "productive", "deep", "copious", "racy", "ample", "robust", "plenteous", "rich"]}, {"answer": "rickety", "hint": "synonyms for rickety", "clues": ["wonky", "feeble", "weakly", "decrepit", "debile", "infirm", "shaky", "rachitic", "wobbly", "sapless", "rickety"]}, {"answer": "ridiculous", "hint": "synonyms for ridiculous", "clues": ["pathetic", "derisory", "preposterous", "nonsensical", "idiotic", "absurd", "cockeyed", "silly", "farcical", "ludicrous", "laughable", "ridiculous"]}, {"answer": "rife", "hint": "synonyms for rife", "clues": ["prevalent", "dominant", "predominant", "plethoric", "prevailing", "overabundant", "rife"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["veracious", "proper", "ripe", "good", "correct", "right-hand", "right"]}, {"answer": "right-down", "hint": "synonyms for right-down", "clues": ["absolute", "rank", "sheer", "out-and-out", "downright", "right-down"]}, {"answer": "rigid", "hint": "synonyms for rigid", "clues": ["inflexible", "stiff", "strict", "fixed", "set", "unbending", "rigid"]}, {"answer": "riled", "hint": "synonyms for riled", "clues": ["nettled", "steamed", "pissed off", "annoyed", "pissed", "stung", "miffed", "roiled", "peeved", "irritated"]}, {"answer": "ring-shaped", "hint": "synonyms for ring-shaped", "clues": ["annular", "circinate", "ringed", "doughnut-shaped", "annulate", "ring-shaped"]}, {"answer": "ringed", "hint": "synonyms for ringed", "clues": ["annular", "ring-shaped", "circinate", "doughnut-shaped", "annulate", "ringed"]}, {"answer": "riotous", "hint": "synonyms for riotous", "clues": ["profuse", "troubled", "exuberant", "tumultuous", "degenerate", "degraded", "libertine", "debauched", "lush", "turbulent", "fast", "disruptive", "profligate", "dissolute", "dissipated", "luxuriant", "riotous"]}, {"answer": "ripe", "hint": "synonyms for ripe", "clues": ["right", "good", "advanced", "mature", "ripe"]}, {"answer": "rippled", "hint": "synonyms for rippled", "clues": ["wavelike", "crinkled", "crinkly", "wavy", "ruffled", "rippled"]}, {"answer": "risible", "hint": "synonyms for risible", "clues": ["comical", "mirthful", "amusing", "comic", "funny", "laughable", "risible"]}, {"answer": "risky", "hint": "synonyms for risky", "clues": ["speculative", "bad", "hazardous", "high-risk", "wild", "risky"]}, {"answer": "risque", "hint": "synonyms for risque", "clues": ["racy", "juicy", "gamey", "blue", "spicy", "naughty", "risque"]}, {"answer": "riveting", "hint": "synonyms for riveting", "clues": ["engrossing", "gripping", "absorbing", "fascinating", "riveting"]}, {"answer": "roadless", "hint": "synonyms for roadless", "clues": ["untracked", "pathless", "trackless", "untrodden", "untrod", "roadless"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["booming", "flourishing", "prospering", "prosperous", "thriving", "palmy", "roaring"]}, {"answer": "robed", "hint": "synonyms for robed", "clues": ["garmented", "appareled", "dressed", "attired", "garbed", "habilimented", "robed"]}, {"answer": "robotic", "hint": "synonyms for robotic", "clues": ["automatonlike", "robotlike", "machinelike", "automatic", "robotic"]}, {"answer": "robotlike", "hint": "synonyms for robotlike", "clues": ["automatonlike", "machinelike", "automatic", "robotic", "robotlike"]}, {"answer": "robustious", "hint": "synonyms for robustious", "clues": ["boisterous", "unruly", "rambunctious", "rumbustious"]}, {"answer": "rocky", "hint": "synonyms for rocky", "clues": ["jumpy", "jolting", "bouldered", "jolty", "rough", "bouldery", "bumpy", "stony", "rocky"]}, {"answer": "rod-shaped", "hint": "synonyms for rod-shaped", "clues": ["bacillary", "bacilliform", "rodlike", "rod-shaped"]}, {"answer": "roguish", "hint": "synonyms for roguish", "clues": ["scoundrelly", "rascally", "devilish", "blackguardly", "roguish"]}, {"answer": "roiled", "hint": "synonyms for roiled", "clues": ["nettled", "roily", "roiling", "pissed off", "churning", "annoyed", "riled", "pissed", "stung", "turbulent", "miffed", "steamed", "peeved", "irritated"]}, {"answer": "roiling", "hint": "synonyms for roiling", "clues": ["roily", "turbulent", "churning", "roiled", "roiling"]}, {"answer": "roily", "hint": "synonyms for roily", "clues": ["turbulent", "churning", "roiling", "roiled", "roily"]}, {"answer": "rolled", "hint": "synonyms for rolled", "clues": ["rolling", "furled", "involute", "trilled", "rolled"]}, {"answer": "rollicking", "hint": "synonyms for rollicking", "clues": ["frolicky", "sportive", "coltish", "frolicsome", "rollicking"]}, {"answer": "roly-poly", "hint": "synonyms for roly-poly", "clues": ["pudgy", "dumpy", "tubby", "podgy", "roly-poly"]}, {"answer": "roman", "hint": "synonyms for roman", "clues": ["Romanic", "papist", "Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist"]}, {"answer": "roman_catholic", "hint": "synonyms for roman catholic", "clues": ["papist", "Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist"]}, {"answer": "romanist", "hint": "synonyms for romanist", "clues": ["papist", "Roman", "popish", "papistical", "Roman Catholic", "romish", "R.C.", "Romanist"]}, {"answer": "romantic", "hint": "synonyms for romantic", "clues": ["amatory", "romanticistic", "amorous", "quixotic", "wild-eyed", "romantic"]}, {"answer": "romish", "hint": "synonyms for romish", "clues": ["papist", "Roman", "popish", "papistical", "Roman Catholic", "R.C.", "Romanist", "romish"]}, {"answer": "rosy", "hint": "synonyms for rosy", "clues": ["rose-cheeked", "fortunate", "rose-colored", "blushful", "flushed", "rosy"]}, {"answer": "rotten", "hint": "synonyms for rotten", "clues": ["icky", "stinky", "rotted", "stinking", "shitty", "decayed", "crappy", "lousy", "rotten"]}, {"answer": "rotund", "hint": "synonyms for rotund", "clues": ["orotund", "round", "corpulent", "obese", "pear-shaped", "weighty"]}, {"answer": "rough", "hint": "synonyms for rough", "clues": ["jumpy", "grating", "crude", "rasping", "unsmooth", "approximative", "bumpy", "boisterous", "uncut", "scratchy", "jolting", "pugnacious", "gravelly", "raspy", "jolty", "fierce", "harsh", "rocky", "rough"]}, {"answer": "rough-cut", "hint": "synonyms for rough-cut", "clues": ["roughhewn", "coarse", "vulgar", "common", "uncouth", "rough-cut"]}, {"answer": "roughshod", "hint": "synonyms for roughshod", "clues": ["fell", "brutal", "heavy-handed", "barbarous", "cruel", "vicious", "savage", "roughshod"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["circular", "pear-shaped", "orotund", "round"]}, {"answer": "round-backed", "hint": "synonyms for round-backed", "clues": ["stooped", "hunched", "crooked", "round-shouldered", "stooping", "round-backed"]}, {"answer": "round-eyed", "hint": "synonyms for round-eyed", "clues": ["wide-eyed", "dewy-eyed", "saucer-eyed", "childlike", "simple", "round-eyed"]}, {"answer": "round-shouldered", "hint": "synonyms for round-shouldered", "clues": ["stooped", "round-backed", "hunched", "crooked", "stooping", "round-shouldered"]}, {"answer": "round_the_bend", "hint": "synonyms for round the bend", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "bats", "barmy", "balmy", "loopy", "loco", "batty", "wacky", "kookie", "around the bend", "kooky", "daft", "nutty", "buggy", "cracked", "crackers", "dotty"]}, {"answer": "routine", "hint": "synonyms for routine", "clues": ["everyday", "quotidian", "workaday", "unremarkable", "mundane", "routine"]}, {"answer": "roving", "hint": "synonyms for roving", "clues": ["nomadic", "peregrine", "mobile", "wandering", "roving"]}, {"answer": "royal", "hint": "synonyms for royal", "clues": ["majestic", "regal", "purple", "imperial", "royal"]}, {"answer": "ruby", "hint": "synonyms for ruby", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry", "ruby"]}, {"answer": "ruby-red", "hint": "synonyms for ruby-red", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "scarlet", "reddish", "carmine", "cherry", "ruby-red"]}, {"answer": "rudderless", "hint": "synonyms for rudderless", "clues": ["aimless", "adrift", "directionless", "planless", "afloat", "undirected", "rudderless"]}, {"answer": "ruddy", "hint": "synonyms for ruddy", "clues": ["rubicund", "cherry-red", "crimson", "blood-red", "cerise", "florid", "ruby", "sanguine", "red", "ruby-red", "scarlet", "reddish", "carmine", "cherry", "ruddy"]}, {"answer": "rude", "hint": "synonyms for rude", "clues": ["crude", "ill-bred", "underbred", "lowbred", "yokelish", "uncivil", "raw", "unmannered", "bounderish", "bad-mannered", "ill-mannered", "primitive", "natural", "unmannerly"]}, {"answer": "ruined", "hint": "synonyms for ruined", "clues": ["sunk", "undone", "finished", "done for", "washed-up", "destroyed", "ruined"]}, {"answer": "rum", "hint": "synonyms for rum", "clues": ["odd", "peculiar", "singular", "rummy", "curious", "queer", "funny", "rum"]}, {"answer": "rumbustious", "hint": "synonyms for rumbustious", "clues": ["boisterous", "robustious", "rambunctious", "unruly"]}, {"answer": "ruminative", "hint": "synonyms for ruminative", "clues": ["broody", "brooding", "musing", "reflective", "contemplative", "pondering", "meditative", "pensive", "ruminative"]}, {"answer": "rummy", "hint": "synonyms for rummy", "clues": ["rum", "odd", "peculiar", "singular", "curious", "queer", "funny", "rummy"]}, {"answer": "rumpled", "hint": "synonyms for rumpled", "clues": ["tousled", "dishevelled", "frowzled", "rumpled"]}, {"answer": "run-down", "hint": "synonyms for run-down", "clues": ["flea-bitten", "creaky", "decrepit", "woebegone", "derelict", "run-down"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["linear", "operative", "working", "functional", "running"]}, {"answer": "runty", "hint": "synonyms for runty", "clues": ["pint-size", "puny", "shrimpy", "sawn-off", "sawed-off", "runty"]}, {"answer": "russian_orthodox", "hint": "synonyms for russian orthodox", "clues": ["Russian Orthodox", "Greek Orthodox", "Orthodox", "Eastern Orthodox"]}, {"answer": "rustic", "hint": "synonyms for rustic", "clues": ["countryfied", "bumpkinly", "unsophisticated", "hick", "agrestic", "rustic"]}, {"answer": "rusty", "hint": "synonyms for rusty", "clues": ["rust", "out of practice", "rust-brown", "hoary"]}, {"answer": "ruttish", "hint": "synonyms for ruttish", "clues": ["horny", "turned on", "randy", "aroused", "steamy", "ruttish"]}, {"answer": "sacked", "hint": "synonyms for sacked", "clues": ["despoiled", "raped", "pillaged", "ravaged", "sacked"]}, {"answer": "sad", "hint": "synonyms for sad", "clues": ["deplorable", "pitiful", "distressing", "sorry", "lamentable", "sad"]}, {"answer": "sainted", "hint": "synonyms for sainted", "clues": ["angelic", "saintly", "saintlike", "beatific", "sainted"]}, {"answer": "saintlike", "hint": "synonyms for saintlike", "clues": ["angelic", "saintly", "sainted", "beatific", "saintlike"]}, {"answer": "saintly", "hint": "synonyms for saintly", "clues": ["angelic", "sainted", "saintlike", "beatific", "saintly"]}, {"answer": "salacious", "hint": "synonyms for salacious", "clues": ["obscene", "lustful", "prurient", "raunchy", "lubricious", "lewd", "salacious"]}, {"answer": "salaried", "hint": "synonyms for salaried", "clues": ["remunerated", "compensable", "stipendiary", "paying", "compensated", "salaried"]}, {"answer": "salient", "hint": "synonyms for salient", "clues": ["striking", "outstanding", "prominent", "spectacular", "salient"]}, {"answer": "sanative", "hint": "synonyms for sanative", "clues": ["healing", "therapeutic", "curative", "remedial", "alterative", "sanative"]}, {"answer": "sanctimonious", "hint": "synonyms for sanctimonious", "clues": ["pietistic", "pharisaic", "self-righteous", "holier-than-thou", "sanctimonious"]}, {"answer": "sanctioned", "hint": "synonyms for sanctioned", "clues": ["ratified", "approved", "canonic", "sanctioned"]}, {"answer": "sand-blind", "hint": "synonyms for sand-blind", "clues": ["visually challenged", "visually impaired", "dim-sighted", "near-blind", "purblind", "sand-blind"]}, {"answer": "sanguinary", "hint": "synonyms for sanguinary", "clues": ["sanguineous", "bloody-minded", "gory", "bloodthirsty", "butcherly", "slaughterous", "sanguinary"]}, {"answer": "sanguineous", "hint": "synonyms for sanguineous", "clues": ["slaughterous", "sanguinary", "butcherly", "gory", "sanguineous"]}, {"answer": "sapid", "hint": "synonyms for sapid", "clues": ["flavorful", "flavoursome", "flavourous", "saporous", "sapid"]}, {"answer": "sapless", "hint": "synonyms for sapless", "clues": ["feeble", "weak", "infirm", "decrepit", "rickety", "debile", "sapless"]}, {"answer": "saporous", "hint": "synonyms for saporous", "clues": ["flavorful", "sapid", "flavourous", "flavoursome", "saporous"]}, {"answer": "sappy", "hint": "synonyms for sappy", "clues": ["wacky", "cockamamy", "goofy", "silly", "cockamamie", "zany", "sappy"]}, {"answer": "sassy", "hint": "synonyms for sassy", "clues": ["impudent", "fresh", "saucy", "impertinent", "smart", "wise", "overbold", "sassy"]}, {"answer": "satanic", "hint": "synonyms for satanic", "clues": ["diabolic", "hellish", "Satanic", "demonic", "fiendish", "unholy", "infernal"]}, {"answer": "satiny", "hint": "synonyms for satiny", "clues": ["slick", "silklike", "silky", "sleek", "silken", "satiny"]}, {"answer": "satisfying", "hint": "synonyms for satisfying", "clues": ["square", "solid", "cheering", "comforting", "substantial", "hearty", "satisfying"]}, {"answer": "saturnine", "hint": "synonyms for saturnine", "clues": ["dour", "moody", "glowering", "dark", "sour", "glum", "morose", "sullen", "saturnine"]}, {"answer": "saucy", "hint": "synonyms for saucy", "clues": ["fresh", "irreverent", "sassy", "overbold", "impudent", "impertinent", "smart", "pert", "wise", "saucy"]}, {"answer": "savage", "hint": "synonyms for savage", "clues": ["brutal", "barbaric", "barbarous", "cruel", "wild", "ferine", "uncivilized", "ferocious", "roughshod", "fell", "feral", "fierce", "barbarian", "vicious", "furious", "savage"]}, {"answer": "savorless", "hint": "synonyms for savorless", "clues": ["flavourless", "flat", "bland", "vapid", "insipid", "savorless"]}, {"answer": "savory", "hint": "synonyms for savory", "clues": ["savoury", "mouth-watering", "piquant", "zesty", "spicy"]}, {"answer": "savourless", "hint": "synonyms for savourless", "clues": ["flavourless", "flat", "bland", "vapid", "savorless", "insipid"]}, {"answer": "savoury", "hint": "synonyms for savoury", "clues": ["mouth-watering", "piquant", "zesty", "spicy", "savory"]}, {"answer": "saw-toothed", "hint": "synonyms for saw-toothed", "clues": ["serrate", "notched", "toothed", "saw-toothed"]}, {"answer": "sawed-off", "hint": "synonyms for sawed-off", "clues": ["shortened", "pint-size", "sawn-off", "runty", "sawed-off"]}, {"answer": "sawn-off", "hint": "synonyms for sawn-off", "clues": ["shortened", "pint-size", "runty", "sawed-off", "sawn-off"]}, {"answer": "scabrous", "hint": "synonyms for scabrous", "clues": ["scurfy", "scaly", "leprose", "lepidote", "scabrous"]}, {"answer": "scaly", "hint": "synonyms for scaly", "clues": ["scaled", "leprose", "lepidote", "scurfy", "scaley", "scabrous"]}, {"answer": "scarey", "hint": "synonyms for scarey", "clues": ["chilling", "scary", "shivery", "shuddery"]}, {"answer": "scarlet", "hint": "synonyms for scarlet", "clues": ["cherry-red", "crimson", "blood-red", "ruddy", "cerise", "ruby", "red", "ruby-red", "reddish", "carmine", "cherry", "scarlet"]}, {"answer": "scary", "hint": "synonyms for scary", "clues": ["chilling", "shivery", "shuddery", "scarey"]}, {"answer": "scatterbrained", "hint": "synonyms for scatterbrained", "clues": ["rattlebrained", "scatty", "flighty", "flyaway", "head-in-the-clouds", "rattlepated", "scatterbrained"]}, {"answer": "scattered", "hint": "synonyms for scattered", "clues": ["garbled", "illogical", "disjointed", "confused", "disconnected", "unconnected", "disordered", "scattered"]}, {"answer": "scatty", "hint": "synonyms for scatty", "clues": ["rattlebrained", "scatterbrained", "abstracted", "absentminded", "absent", "rattlepated", "scatty"]}, {"answer": "scented", "hint": "synonyms for scented", "clues": ["perfumed", "sweet-scented", "sweet", "odoriferous", "odorous", "sweet-smelling", "scented"]}, {"answer": "sceptical", "hint": "synonyms for sceptical", "clues": ["questioning", "disbelieving", "doubting", "unbelieving", "skeptical"]}, {"answer": "scheming", "hint": "synonyms for scheming", "clues": ["shrewd", "calculative", "designing", "conniving", "calculating", "scheming"]}, {"answer": "schmaltzy", "hint": "synonyms for schmaltzy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "slushy", "soppy"]}, {"answer": "schmalzy", "hint": "synonyms for schmalzy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "hokey", "drippy", "schmaltzy", "soupy", "maudlin", "bathetic", "slushy", "soppy"]}, {"answer": "scintillant", "hint": "synonyms for scintillant", "clues": ["sparkly", "glittering", "coruscant", "glittery", "fulgid", "glinting", "scintillating", "scintillant"]}, {"answer": "scintillating", "hint": "synonyms for scintillating", "clues": ["sparkly", "glittering", "coruscant", "bubbling", "glittery", "scintillant", "fulgid", "effervescent", "glinting", "frothy", "scintillating"]}, {"answer": "scorched", "hint": "synonyms for scorched", "clues": ["sunbaked", "baked", "parched", "adust", "scorched"]}, {"answer": "scotch", "hint": "synonyms for scotch", "clues": ["Scottish", "frugal", "Scotch", "stinting", "sparing", "Scots", "economical"]}, {"answer": "scraggy", "hint": "synonyms for scraggy", "clues": ["skinny", "weedy", "boney", "jagged", "jaggy", "underweight", "scrawny", "scraggy"]}, {"answer": "scratchy", "hint": "synonyms for scratchy", "clues": ["grating", "irritable", "testy", "cranky", "rasping", "pettish", "uneven", "peckish", "rough", "fractious", "abrasive", "nettlesome", "tetchy", "spotty", "gravelly", "raspy", "peevish", "petulant", "scratchy"]}, {"answer": "scrawny", "hint": "synonyms for scrawny", "clues": ["skinny", "weedy", "boney", "scrubby", "scraggy", "underweight", "stunted", "scrawny"]}, {"answer": "screaky", "hint": "synonyms for screaky", "clues": ["creaky", "squealing", "screechy", "squeaky"]}, {"answer": "screechy", "hint": "synonyms for screechy", "clues": ["screaky", "squeaking", "squeaky", "screechy"]}, {"answer": "scrimpy", "hint": "synonyms for scrimpy", "clues": ["stingy", "meagerly", "meagre", "scrimpy"]}, {"answer": "scrumptious", "hint": "synonyms for scrumptious", "clues": ["delectable", "pleasant-tasting", "toothsome", "luscious", "delicious", "yummy", "scrumptious"]}, {"answer": "sculptured", "hint": "synonyms for sculptured", "clues": ["graven", "sculpted", "modeled", "sculpturesque", "sculptural"]}, {"answer": "scummy", "hint": "synonyms for scummy", "clues": ["low-down", "scurvy", "abject", "miserable", "low", "scummy"]}, {"answer": "scurfy", "hint": "synonyms for scurfy", "clues": ["scabrous", "scaly", "leprose", "lepidote", "scurfy"]}, {"answer": "scurvy", "hint": "synonyms for scurvy", "clues": ["low-down", "abject", "miserable", "low", "scummy", "scurvy"]}, {"answer": "seamy", "hint": "synonyms for seamy", "clues": ["sordid", "squalid", "seedy", "sleazy", "seamy"]}, {"answer": "sear", "hint": "synonyms for sear", "clues": ["shrivelled", "sere", "withered", "dried-up", "sear"]}, {"answer": "seaward", "hint": "synonyms for seaward", "clues": ["onshore", "shoreward", "offshore", "seaward"]}, {"answer": "secluded", "hint": "synonyms for secluded", "clues": ["reclusive", "cloistered", "sequestered", "privy", "secret", "secluded"]}, {"answer": "secondary", "hint": "synonyms for secondary", "clues": ["lower-ranking", "junior-grade", "subaltern", "lowly", "petty", "secondary"]}, {"answer": "secret", "hint": "synonyms for secret", "clues": ["orphic", "mystical", "privy", "confidential", "occult", "hugger-mugger", "hush-hush", "undercover", "secluded", "hole-and-corner", "mysterious", "underground", "private", "cloak-and-dagger", "surreptitious", "unavowed", "hidden", "clandestine", "secret"]}, {"answer": "secretive", "hint": "synonyms for secretive", "clues": ["tightlipped", "closemouthed", "closelipped", "close", "secretive"]}, {"answer": "secular", "hint": "synonyms for secular", "clues": ["temporal", "worldly", "profane", "laic", "lay", "secular"]}, {"answer": "secure", "hint": "synonyms for secure", "clues": ["impregnable", "unafraid", "inviolable", "untroubled", "strong", "good", "unattackable", "unassailable", "safe", "dependable", "secure"]}, {"answer": "sedate", "hint": "synonyms for sedate", "clues": ["sober", "grave", "staid", "solemn", "sedate"]}, {"answer": "sedative", "hint": "synonyms for sedative", "clues": ["ataraxic", "tranquillising", "ataractic", "sedative"]}, {"answer": "seditious", "hint": "synonyms for seditious", "clues": ["insurgent", "instigative", "incitive", "subversive", "inflammatory", "rabble-rousing", "incendiary", "seditious"]}, {"answer": "see-through", "hint": "synonyms for see-through", "clues": ["sheer", "filmy", "vapourous", "gossamer", "gauzy", "gauze-like", "cobwebby", "diaphanous", "transparent", "see-through"]}, {"answer": "seedy", "hint": "synonyms for seedy", "clues": ["sordid", "indisposed", "ailing", "poorly", "squalid", "peaked", "unwell", "sleazy", "scruffy", "sickly", "under the weather", "seamy", "seedy"]}, {"answer": "seemly", "hint": "synonyms for seemly", "clues": ["becoming", "decorous", "decent", "comely", "comme il faut", "seemly"]}, {"answer": "select", "hint": "synonyms for select", "clues": ["blue-ribbon", "prize", "choice", "prime", "quality", "select"]}, {"answer": "self-aggrandising", "hint": "synonyms for self-aggrandising", "clues": ["self-aggrandizing", "bragging", "cock-a-hoop", "boastful", "big", "crowing", "braggart", "braggy"]}, {"answer": "self-aggrandizing", "hint": "synonyms for self-aggrandizing", "clues": ["bragging", "cock-a-hoop", "self-aggrandising", "boastful", "big", "crowing", "braggart", "braggy"]}, {"answer": "self-collected", "hint": "synonyms for self-collected", "clues": ["self-contained", "self-possessed", "collected", "poised", "equanimous", "self-collected"]}, {"answer": "self-conceited", "hint": "synonyms for self-conceited", "clues": ["egotistical", "vain", "swollen", "conceited", "swollen-headed", "self-conceited"]}, {"answer": "self-contained", "hint": "synonyms for self-contained", "clues": ["self-collected", "self-possessed", "collected", "poised", "equanimous", "self-contained"]}, {"answer": "self-contradictory", "hint": "synonyms for self-contradictory", "clues": ["at odds", "conflicting", "paradoxical", "contradictory", "self-contradictory"]}, {"answer": "self-denying", "hint": "synonyms for self-denying", "clues": ["renunciant", "self-sacrificing", "self-giving", "renunciative", "self-abnegating", "self-denying"]}, {"answer": "self-possessed", "hint": "synonyms for self-possessed", "clues": ["self-contained", "self-collected", "collected", "poised", "equanimous", "self-possessed"]}, {"answer": "self-righteous", "hint": "synonyms for self-righteous", "clues": ["sanctimonious", "pietistic", "pharisaic", "holier-than-thou", "self-righteous"]}, {"answer": "self-willed", "hint": "synonyms for self-willed", "clues": ["headstrong", "willful", "froward", "self-willed"]}, {"answer": "sellable", "hint": "synonyms for sellable", "clues": ["merchantable", "vendable", "marketable", "sellable"]}, {"answer": "senior", "hint": "synonyms for senior", "clues": ["fourth-year", "aged", "older", "elderly", "senior"]}, {"answer": "senseless", "hint": "synonyms for senseless", "clues": ["witless", "pointless", "mindless", "wasted", "insensible", "otiose", "purposeless", "soft-witted", "reasonless", "superfluous", "nitwitted", "senseless"]}, {"answer": "sensitised", "hint": "synonyms for sensitised", "clues": ["supersensitised", "hypersensitive", "allergic", "sensitized"]}, {"answer": "sensitive", "hint": "synonyms for sensitive", "clues": ["sensible", "sore", "raw", "tender", "sensitive"]}, {"answer": "sensitized", "hint": "synonyms for sensitized", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "sensory", "hint": "synonyms for sensory", "clues": ["centripetal", "sensorial", "receptive", "sensational", "sensory"]}, {"answer": "sensual", "hint": "synonyms for sensual", "clues": ["carnal", "sultry", "fleshly", "animal", "sensual"]}, {"answer": "sentimental", "hint": "synonyms for sentimental", "clues": ["mawkish", "kitschy", "mushy", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "slushy", "soppy", "sentimental"]}, {"answer": "separated", "hint": "synonyms for separated", "clues": ["set-apart", "spaced", "disjointed", "detached", "dislocated", "isolated", "separated"]}, {"answer": "sequent", "hint": "synonyms for sequent", "clues": ["incidental", "successive", "consequent", "ensuant", "concomitant", "accompanying", "resultant", "consecutive", "serial", "sequential", "attendant", "sequent"]}, {"answer": "sequential", "hint": "synonyms for sequential", "clues": ["sequent", "serial", "consecutive", "successive", "sequential"]}, {"answer": "sequined", "hint": "synonyms for sequined", "clues": ["spangly", "jeweled", "spangled", "gemmed", "beady", "sequined"]}, {"answer": "seraphic", "hint": "synonyms for seraphic", "clues": ["seraphical", "angelic", "sweet", "cherubic"]}, {"answer": "sere", "hint": "synonyms for sere", "clues": ["sear", "shrivelled", "withered", "dried-up", "sere"]}, {"answer": "serial", "hint": "synonyms for serial", "clues": ["consecutive", "successive", "nonparallel", "sequent", "in series", "sequential", "serial"]}, {"answer": "serious", "hint": "synonyms for serious", "clues": ["sober", "grievous", "grave", "unplayful", "severe", "life-threatening", "good", "dangerous", "serious"]}, {"answer": "serrate", "hint": "synonyms for serrate", "clues": ["serrated", "notched", "saw-toothed", "toothed"]}, {"answer": "serrated", "hint": "synonyms for serrated", "clues": ["serrate", "notched", "saw-toothed", "toothed"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["hardened", "fit", "fixed", "laid", "dictated", "primed", "placed", "rigid", "situated", "determined", "located", "set"]}, {"answer": "setaceous", "hint": "synonyms for setaceous", "clues": ["bristly", "spiny", "prickly", "burred", "setose", "briery", "briary", "bristled", "barbellate", "barbed", "burry", "thorny", "setaceous"]}, {"answer": "setose", "hint": "synonyms for setose", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "briery", "briary", "bristled", "barbellate", "barbed", "burry", "thorny", "setose"]}, {"answer": "severe", "hint": "synonyms for severe", "clues": ["hard", "grievous", "life-threatening", "spartan", "knockout", "serious", "terrible", "dangerous", "grave", "austere", "wicked", "stern", "stark", "severe"]}, {"answer": "shadowy", "hint": "synonyms for shadowy", "clues": ["shadowed", "faint", "shady", "umbrageous", "wraithlike", "dim", "wispy", "vague", "shadowy"]}, {"answer": "shady", "hint": "synonyms for shady", "clues": ["fishy", "shadowed", "shadowy", "umbrageous", "suspect", "funny", "louche", "fly-by-night", "suspicious", "shady"]}, {"answer": "shaggy", "hint": "synonyms for shaggy", "clues": ["shagged", "shaggy-coated", "bushy", "shaggy-haired", "shaggy"]}, {"answer": "shaky", "hint": "synonyms for shaky", "clues": ["wonky", "shivering", "trembling", "precarious", "wobbly", "rickety", "shaky"]}, {"answer": "sham", "hint": "synonyms for sham", "clues": ["assumed", "pretended", "fictive", "put on", "fictitious", "false", "sham"]}, {"answer": "shamed", "hint": "synonyms for shamed", "clues": ["hangdog", "discredited", "dishonored", "guilty", "shamefaced", "disgraced", "shamed"]}, {"answer": "shamefaced", "hint": "synonyms for shamefaced", "clues": ["hangdog", "guilty", "sheepish", "shamed", "shamefaced"]}, {"answer": "shameful", "hint": "synonyms for shameful", "clues": ["opprobrious", "black", "shocking", "scandalous", "inglorious", "disgraceful", "ignominious", "shameful"]}, {"answer": "sharp", "hint": "synonyms for sharp", "clues": ["knifelike", "acute", "piercing", "sharp-worded", "abrupt", "astute", "crisp", "needlelike", "penetrative", "keen", "incisive", "shrewd", "tart", "shrill", "penetrating", "discriminating", "precipitous", "sharp"]}, {"answer": "sharp-eyed", "hint": "synonyms for sharp-eyed", "clues": ["argus-eyed", "keen-eyed", "quick-sighted", "lynx-eyed", "sharp-sighted", "keen-sighted", "hawk-eyed", "sharp-eyed"]}, {"answer": "sharp-set", "hint": "synonyms for sharp-set", "clues": ["ravenous", "esurient", "starved", "famished", "sharp-set"]}, {"answer": "sharp-sighted", "hint": "synonyms for sharp-sighted", "clues": ["argus-eyed", "quick-sighted", "lynx-eyed", "sharp-eyed", "keen-sighted", "hawk-eyed", "sharp-sighted"]}, {"answer": "sheeny", "hint": "synonyms for sheeny", "clues": ["lustrous", "shiny", "shining", "glossy", "glistening", "sheeny"]}, {"answer": "sheer", "hint": "synonyms for sheer", "clues": ["out-and-out", "right-down", "bold", "gauzy", "gauze-like", "vaporous", "plain", "cobwebby", "diaphanous", "downright", "transparent", "unmingled", "rank", "filmy", "gossamer", "absolute", "bluff", "unmixed", "see-through", "sheer"]}, {"answer": "shining", "hint": "synonyms for shining", "clues": ["burnished", "sheeny", "glistening", "lustrous", "shiny", "bright", "glossy", "shining"]}, {"answer": "shiny", "hint": "synonyms for shiny", "clues": ["burnished", "sheeny", "glistening", "glazed", "lustrous", "bright", "shining", "glossy", "shiny"]}, {"answer": "shitty", "hint": "synonyms for shitty", "clues": ["icky", "stinky", "rotten", "stinking", "lousy", "crappy", "shitty"]}, {"answer": "shivery", "hint": "synonyms for shivery", "clues": ["chilling", "scary", "shuddery", "shivery"]}, {"answer": "shocking", "hint": "synonyms for shocking", "clues": ["scandalous", "shameful", "disgraceful", "lurid", "shocking"]}, {"answer": "shoddy", "hint": "synonyms for shoddy", "clues": ["cheapjack", "deceptive", "jerry-built", "misleading", "tawdry", "shoddy"]}, {"answer": "shopworn", "hint": "synonyms for shopworn", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "commonplace", "trite", "stock", "shopsoiled", "well-worn", "banal", "threadbare", "shopworn"]}, {"answer": "short", "hint": "synonyms for short", "clues": ["curt", "light", "myopic", "unforesightful", "brusk", "brusque", "unretentive", "poor", "inadequate", "scant", "forgetful", "shortsighted", "little", "short"]}, {"answer": "short-lived", "hint": "synonyms for short-lived", "clues": ["ephemeral", "passing", "fugacious", "transient", "transitory", "short-lived"]}, {"answer": "short-tempered", "hint": "synonyms for short-tempered", "clues": ["quick-tempered", "irascible", "hotheaded", "choleric", "hot-tempered"]}, {"answer": "shortened", "hint": "synonyms for shortened", "clues": ["telescoped", "abbreviated", "cut", "sawn-off", "truncated", "sawed-off", "shortened"]}, {"answer": "shortsighted", "hint": "synonyms for shortsighted", "clues": ["ill-considered", "short", "myopic", "unforesightful", "nearsighted", "improvident", "ill-judged", "shortsighted"]}, {"answer": "showy", "hint": "synonyms for showy", "clues": ["splashy", "sporty", "jazzy", "flashy", "gaudy", "glossy", "flamboyant", "showy"]}, {"answer": "shrewd", "hint": "synonyms for shrewd", "clues": ["calculative", "conniving", "sharp", "scheming", "astute", "calculating", "shrewd"]}, {"answer": "shriveled", "hint": "synonyms for shriveled", "clues": ["sear", "shrivelled", "wizen", "sere", "dried-up", "wizened", "withered", "shrunken"]}, {"answer": "shrivelled", "hint": "synonyms for shrivelled", "clues": ["sear", "wizen", "shriveled", "sere", "shrunken", "dried-up", "withered", "wizened"]}, {"answer": "shrunken", "hint": "synonyms for shrunken", "clues": ["shrivelled", "wizen", "withered", "wizened", "shrunken"]}, {"answer": "shuddery", "hint": "synonyms for shuddery", "clues": ["chilling", "scary", "shivery", "shuddery"]}, {"answer": "sibilant", "hint": "synonyms for sibilant", "clues": ["continuant", "fricative", "strident", "spirant", "sibilant"]}, {"answer": "sibyllic", "hint": "synonyms for sibyllic", "clues": ["mantic", "sibylline", "vatic", "vatical", "divinatory", "sibyllic"]}, {"answer": "sibylline", "hint": "synonyms for sibylline", "clues": ["mantic", "qabalistic", "cryptic", "vatic", "sibyllic", "vatical", "divinatory", "sibylline"]}, {"answer": "sick", "hint": "synonyms for sick", "clues": ["fed up", "queasy", "pale", "gruesome", "ill", "brainsick", "sickish", "demented", "disgusted", "tired of", "crazy", "grim", "wan", "unbalanced", "grisly", "sick of", "unhinged", "macabre", "ghastly", "disturbed", "nauseous", "mad", "nauseated", "pallid", "sick"]}, {"answer": "sick_of", "hint": "synonyms for sick of", "clues": ["fed up", "disgusted", "sick", "tired of", "sick of"]}, {"answer": "sickening", "hint": "synonyms for sickening", "clues": ["loathsome", "queasy", "vile", "nauseating", "offensive", "noisome", "nauseous", "sickening"]}, {"answer": "sickish", "hint": "synonyms for sickish", "clues": ["sick", "queasy", "nauseated", "nauseous", "sickish"]}, {"answer": "sickly", "hint": "synonyms for sickly", "clues": ["indisposed", "ailing", "poorly", "seedy", "peaked", "unwell", "sallow", "under the weather", "sickly"]}, {"answer": "sidelong", "hint": "synonyms for sidelong", "clues": ["askant", "askance", "asquint", "squint-eyed", "lateral", "sidelong"]}, {"answer": "sightly", "hint": "synonyms for sightly", "clues": ["bonny", "fair", "comely", "bonnie", "sightly"]}, {"answer": "significant", "hint": "synonyms for significant", "clues": ["meaning", "pregnant", "important", "substantial", "significant"]}, {"answer": "significative", "hint": "synonyms for significative", "clues": ["suggestive", "indicative", "revelatory", "indicatory", "significative"]}, {"answer": "silent", "hint": "synonyms for silent", "clues": ["understood", "soundless", "still", "unsounded", "dumb", "mute", "mum", "tacit", "silent"]}, {"answer": "silken", "hint": "synonyms for silken", "clues": ["slick", "silklike", "silky", "sleek", "satiny", "silken"]}, {"answer": "silklike", "hint": "synonyms for silklike", "clues": ["slick", "silky", "sleek", "silken", "satiny", "silklike"]}, {"answer": "silky", "hint": "synonyms for silky", "clues": ["slick", "silklike", "sleek", "silken", "satiny", "silky"]}, {"answer": "silly", "hint": "synonyms for silly", "clues": ["pathetic", "wacky", "slaphappy", "punch-drunk", "cockamamie", "airheaded", "giddy", "featherbrained", "dizzy", "cockamamy", "goofy", "ridiculous", "sappy", "lightheaded", "zany", "empty-headed", "silly"]}, {"answer": "silver", "hint": "synonyms for silver", "clues": ["silver-tongued", "facile", "eloquent", "silvern", "argent", "fluent", "silverish", "smooth-spoken"]}, {"answer": "silver-tongued", "hint": "synonyms for silver-tongued", "clues": ["silver", "fluent", "facile", "eloquent", "smooth-spoken", "silver-tongued"]}, {"answer": "similar", "hint": "synonyms for similar", "clues": ["alike", "standardised", "interchangeable", "exchangeable", "similar"]}, {"answer": "simple", "hint": "synonyms for simple", "clues": ["simple-minded", "mere", "bare", "childlike", "unproblematic", "elementary", "uncomplicated", "unsubdivided", "wide-eyed", "round-eyed", "dim-witted", "dewy-eyed", "simple"]}, {"answer": "simulated", "hint": "synonyms for simulated", "clues": ["imitation", "fake", "faux", "false", "simulated"]}, {"answer": "simultaneous", "hint": "synonyms for simultaneous", "clues": ["coinciding", "concurrent", "coincident", "co-occurrent", "cooccurring", "simultaneous"]}, {"answer": "sinewy", "hint": "synonyms for sinewy", "clues": ["hefty", "fibrous", "muscular", "tendinous", "brawny", "powerful", "stringy", "unchewable", "sinewy"]}, {"answer": "sinful", "hint": "synonyms for sinful", "clues": ["extraordinary", "iniquitous", "wicked", "unholy", "ungodly", "over-the-top", "sinful"]}, {"answer": "single", "hint": "synonyms for single", "clues": ["undivided", "exclusive", "unmarried", "individual", "single"]}, {"answer": "singular", "hint": "synonyms for singular", "clues": ["rummy", "queer", "funny", "rum", "odd", "peculiar", "unique", "curious", "remarkable", "singular"]}, {"answer": "sinister", "hint": "synonyms for sinister", "clues": ["forbidding", "ominous", "black", "minatory", "menacing", "dark", "minacious", "threatening", "baleful", "sinister"]}, {"answer": "sissified", "hint": "synonyms for sissified", "clues": ["effeminate", "emasculate", "sissy", "epicene", "cissy", "sissyish", "sissified"]}, {"answer": "sissy", "hint": "synonyms for sissy", "clues": ["effeminate", "sissified", "epicene", "cissy", "emasculate", "sissyish", "sissy"]}, {"answer": "sissyish", "hint": "synonyms for sissyish", "clues": ["effeminate", "sissified", "sissy", "epicene", "cissy", "emasculate", "sissyish"]}, {"answer": "six", "hint": "synonyms for six", "clues": ["6", "half-dozen", "vi", "six"]}, {"answer": "sixpenny", "hint": "synonyms for sixpenny", "clues": ["threepenny", "two-a-penny", "twopenny", "tuppeny", "twopenny-halfpenny", "sixpenny"]}, {"answer": "sizable", "hint": "synonyms for sizable", "clues": ["hefty", "healthy", "sizeable", "tidy", "ample", "goodish", "goodly", "respectable"]}, {"answer": "sizeable", "hint": "synonyms for sizeable", "clues": ["hefty", "healthy", "tidy", "sizable", "ample", "goodish", "goodly", "respectable"]}, {"answer": "skanky", "hint": "synonyms for skanky", "clues": ["repellent", "repelling", "loathly", "yucky", "disgustful", "foul", "loathsome", "wicked", "disgusting", "distasteful", "revolting", "skanky"]}, {"answer": "skeletal", "hint": "synonyms for skeletal", "clues": ["wasted", "haggard", "cadaverous", "bony", "pinched", "gaunt", "emaciated", "skeletal"]}, {"answer": "skeptical", "hint": "synonyms for skeptical", "clues": ["disbelieving", "doubting", "sceptical", "unbelieving", "questioning"]}, {"answer": "skew-whiff", "hint": "synonyms for skew-whiff", "clues": ["wonky", "cockeyed", "awry", "askew", "lopsided", "skew-whiff"]}, {"answer": "skilful", "hint": "synonyms for skilful", "clues": ["practiced", "skillful", "adept", "good", "proficient", "expert"]}, {"answer": "skillful", "hint": "synonyms for skillful", "clues": ["practiced", "skilful", "nice", "adept", "good", "proficient", "expert"]}, {"answer": "skinny", "hint": "synonyms for skinny", "clues": ["tight-fitting", "boney", "cheeseparing", "penny-pinching", "near", "close", "scraggy", "underweight", "scrawny", "weedy", "skinny"]}, {"answer": "skint", "hint": "synonyms for skint", "clues": ["broke", "bust", "stony-broke", "skint"]}, {"answer": "slanderous", "hint": "synonyms for slanderous", "clues": ["denigratory", "denigrative", "libellous", "calumniatory", "defamatory", "calumnious", "denigrating", "slanderous"]}, {"answer": "slanted", "hint": "synonyms for slanted", "clues": ["aslant", "coloured", "sloping", "sloped", "slanting", "biased", "one-sided", "aslope", "diagonal", "slanted"]}, {"answer": "slanting", "hint": "synonyms for slanting", "clues": ["sloping", "aslant", "aslope", "sloped", "diagonal", "slanted", "slanting"]}, {"answer": "slap-up", "hint": "synonyms for slap-up", "clues": ["nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "slap-up"]}, {"answer": "slaphappy", "hint": "synonyms for slaphappy", "clues": ["punch-drunk", "happy-go-lucky", "carefree", "silly", "devil-may-care", "harum-scarum", "freewheeling", "slaphappy"]}, {"answer": "slate-gray", "hint": "synonyms for slate-gray", "clues": ["slatey", "stone-grey", "slaty-grey", "slate-gray"]}, {"answer": "slate-grey", "hint": "synonyms for slate-grey", "clues": ["slatey", "stone-grey", "slate-gray", "slaty-grey"]}, {"answer": "slatey", "hint": "synonyms for slatey", "clues": ["stone-grey", "slate-gray", "slaty", "slaty-grey"]}, {"answer": "slaty", "hint": "synonyms for slaty", "clues": ["slatey", "stone-grey", "slate-gray", "slaty-grey"]}, {"answer": "slaty-gray", "hint": "synonyms for slaty-gray", "clues": ["slatey", "stone-grey", "slate-gray", "slaty-grey"]}, {"answer": "slaty-grey", "hint": "synonyms for slaty-grey", "clues": ["slatey", "stone-grey", "slate-gray", "slaty-grey"]}, {"answer": "slaughterous", "hint": "synonyms for slaughterous", "clues": ["sanguineous", "sanguinary", "butcherly", "gory", "slaughterous"]}, {"answer": "sleazy", "hint": "synonyms for sleazy", "clues": ["bum", "sordid", "tinny", "punk", "cheap", "seedy", "cheesy", "crummy", "squalid", "chintzy", "seamy", "sleazy"]}, {"answer": "sleek", "hint": "synonyms for sleek", "clues": ["satiny", "streamlined", "aerodynamic", "flowing", "slick", "silklike", "silky", "silken", "sleek"]}, {"answer": "sleeveless", "hint": "synonyms for sleeveless", "clues": ["fruitless", "bootless", "futile", "vain", "sleeveless"]}, {"answer": "slender", "hint": "synonyms for slender", "clues": ["supple", "lithe", "slim", "svelte", "thin", "slight", "sylphlike", "lithesome", "lissome", "slender"]}, {"answer": "slick", "hint": "synonyms for slick", "clues": ["guileful", "pat", "tricky", "silky", "sleek", "silken", "knavish", "crafty", "cunning", "wily", "dodgy", "satiny", "foxy", "sly", "silklike", "glib", "slick"]}, {"answer": "slight", "hint": "synonyms for slight", "clues": ["flimsy", "thin", "slender", "tenuous", "slim", "fragile", "svelte", "little", "slight"]}, {"answer": "slighting", "hint": "synonyms for slighting", "clues": ["deprecatory", "deprecative", "belittling", "deprecating", "slighting"]}, {"answer": "slimy", "hint": "synonyms for slimy", "clues": ["vile", "despicable", "worthless", "ugly", "slimed", "wretched", "unworthy", "slimy"]}, {"answer": "sloped", "hint": "synonyms for sloped", "clues": ["aslant", "aslope", "sloping", "slanting", "diagonal", "slanted", "sloped"]}, {"answer": "sloping", "hint": "synonyms for sloping", "clues": ["aslant", "aslope", "sloped", "slanting", "diagonal", "slanted", "sloping"]}, {"answer": "slopped", "hint": "synonyms for slopped", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "slopped"]}, {"answer": "sloppy", "hint": "synonyms for sloppy", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "quaggy", "haphazard", "slapdash", "overemotional", "sloughy", "swampy", "baggy", "waterlogged", "slipshod", "squashy", "loose-fitting", "boggy", "sloppy"]}, {"answer": "sloshed", "hint": "synonyms for sloshed", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "sloshed"]}, {"answer": "slothful", "hint": "synonyms for slothful", "clues": ["lazy", "faineant", "otiose", "indolent", "work-shy", "slothful"]}, {"answer": "sloughy", "hint": "synonyms for sloughy", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "quaggy", "swampy", "sloppy", "waterlogged", "squashy", "boggy", "sloughy"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["boring", "tedious", "dense", "dim", "dull", "obtuse", "irksome", "sluggish", "wearisome", "dumb", "deadening", "tiresome", "ho-hum", "slow"]}, {"answer": "slubbed", "hint": "synonyms for slubbed", "clues": ["nubby", "tweedy", "homespun", "slubbed"]}, {"answer": "sluggish", "hint": "synonyms for sluggish", "clues": ["soggy", "dull", "torpid", "sulky", "inert", "slow", "sluggish"]}, {"answer": "slushy", "hint": "synonyms for slushy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "drippy", "soupy", "maudlin", "bathetic", "soppy", "slushy"]}, {"answer": "sluttish", "hint": "synonyms for sluttish", "clues": ["light", "easy", "blowzy", "wanton", "promiscuous", "loose", "blowsy", "slatternly", "sluttish"]}, {"answer": "sly", "hint": "synonyms for sly", "clues": ["guileful", "wily", "dodgy", "tricksy", "foxy", "slick", "knavish", "crafty", "cunning", "sly"]}, {"answer": "small", "hint": "synonyms for small", "clues": ["small-scale", "pocket-size", "diminished", "lowly", "minor", "minuscule", "modest", "belittled", "humble", "little", "small"]}, {"answer": "small-grained", "hint": "synonyms for small-grained", "clues": ["powdery", "pulverized", "powdered", "fine-grained", "small-grained"]}, {"answer": "small-scale", "hint": "synonyms for small-scale", "clues": ["pocket-sized", "modest", "small", "minor", "small-scale"]}, {"answer": "smaller", "hint": "synonyms for smaller", "clues": ["small-scale", "pocket-size", "small", "diminished", "lowly", "minor", "minuscule", "littler", "modest", "belittled", "humble", "smaller"]}, {"answer": "smarmy", "hint": "synonyms for smarmy", "clues": ["oily", "unctuous", "buttery", "soapy", "oleaginous", "fulsome", "smarmy"]}, {"answer": "smart", "hint": "synonyms for smart", "clues": ["chic", "fresh", "sassy", "overbold", "voguish", "impudent", "impertinent", "bright", "saucy", "wise", "smart"]}, {"answer": "smashed", "hint": "synonyms for smashed", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "crocked", "wet", "plastered", "smashed"]}, {"answer": "smashing", "hint": "synonyms for smashing", "clues": ["slap-up", "nifty", "dandy", "groovy", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "swell", "great", "smashing"]}, {"answer": "smelly", "hint": "synonyms for smelly", "clues": ["stinking", "foul-smelling", "foetid", "foul", "funky", "noisome", "ill-scented", "smelly"]}, {"answer": "smitten", "hint": "synonyms for smitten", "clues": ["enamored", "struck", "soft on", "in love", "stricken", "potty", "infatuated", "taken with", "smitten"]}, {"answer": "smooth", "hint": "synonyms for smooth", "clues": ["still", "politic", "legato", "placid", "bland", "unruffled", "tranquil", "fluent", "liquid", "fluid", "suave", "quiet", "smooth"]}, {"answer": "smooth-spoken", "hint": "synonyms for smooth-spoken", "clues": ["silver", "silver-tongued", "facile", "fluent", "eloquent", "smooth-spoken"]}, {"answer": "smuggled", "hint": "synonyms for smuggled", "clues": ["bootleg", "black", "contraband", "black-market", "smuggled"]}, {"answer": "smutty", "hint": "synonyms for smutty", "clues": ["black", "cruddy", "foul", "nasty", "filthy", "smutty"]}, {"answer": "snappy", "hint": "synonyms for snappy", "clues": ["alert", "natty", "lively", "dashing", "crisp", "nipping", "rakish", "merry", "spiffy", "spruce", "frosty", "raffish", "jaunty", "snappish", "dapper", "nippy", "brisk", "whipping", "rattling", "spanking", "zippy", "snappy"]}, {"answer": "sneak", "hint": "synonyms for sneak", "clues": ["sneaky", "furtive", "stealthy", "surreptitious"]}, {"answer": "sneaky", "hint": "synonyms for sneaky", "clues": ["sneak", "furtive", "underhanded", "stealthy", "surreptitious"]}, {"answer": "sniffy", "hint": "synonyms for sniffy", "clues": ["haughty", "lordly", "overbearing", "disdainful", "imperious", "prideful", "swaggering", "supercilious", "sniffy"]}, {"answer": "snobbish", "hint": "synonyms for snobbish", "clues": ["clannish", "cliquish", "clubby", "snobby", "snobbish"]}, {"answer": "snobby", "hint": "synonyms for snobby", "clues": ["snobbish", "clannish", "cliquish", "clubby", "snobby"]}, {"answer": "snooty", "hint": "synonyms for snooty", "clues": ["bigheaded", "snotty", "persnickety", "too big for one's breeches", "snot-nosed", "uppish", "stuck-up", "snooty"]}, {"answer": "snot-nosed", "hint": "synonyms for snot-nosed", "clues": ["bigheaded", "snotty", "persnickety", "snooty", "too big for one's breeches", "uppish", "stuck-up", "snot-nosed"]}, {"answer": "snotty", "hint": "synonyms for snotty", "clues": ["bigheaded", "persnickety", "snooty", "too big for one's breeches", "snot-nosed", "uppish", "stuck-up", "snotty"]}, {"answer": "snowy", "hint": "synonyms for snowy", "clues": ["snow-clad", "white", "snow-white", "snow-covered", "snowy"]}, {"answer": "snug", "hint": "synonyms for snug", "clues": ["cosy", "close-fitting", "cozy", "close", "snug"]}, {"answer": "soaked", "hint": "synonyms for soaked", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "soaked"]}, {"answer": "soapy", "hint": "synonyms for soapy", "clues": ["oily", "smarmy", "unctuous", "buttery", "saponaceous", "oleaginous", "fulsome", "soapy"]}, {"answer": "sober", "hint": "synonyms for sober", "clues": ["grave", "drab", "sombre", "unplayful", "sedate", "serious", "somber", "solemn"]}, {"answer": "sodding", "hint": "synonyms for sodding", "clues": ["consummate", "double-dyed", "gross", "perfect", "arrant", "staring", "unadulterated", "everlasting", "complete", "thoroughgoing", "utter", "pure", "stark", "sodding"]}, {"answer": "soft", "hint": "synonyms for soft", "clues": ["cushy", "easy", "flabby", "piano", "delicate", "subdued", "lenient", "flaccid", "mild", "diffused", "voiced", "sonant", "indulgent", "balmy", "gentle", "easygoing", "soft"]}, {"answer": "soft_on", "hint": "synonyms for soft on", "clues": ["enamored", "infatuated", "in love", "taken with", "smitten", "potty", "soft on"]}, {"answer": "soggy", "hint": "synonyms for soggy", "clues": ["muddy", "inert", "marshy", "mucky", "miry", "quaggy", "sloughy", "swampy", "torpid", "sloppy", "waterlogged", "doughy", "squashy", "sluggish", "boggy", "soggy"]}, {"answer": "sole", "hint": "synonyms for sole", "clues": ["lone", "only", "exclusive", "lonesome", "solitary", "sole"]}, {"answer": "solemn", "hint": "synonyms for solemn", "clues": ["sober", "grave", "earnest", "sedate", "sincere", "solemn"]}, {"answer": "solid", "hint": "synonyms for solid", "clues": ["square", "self-coloured", "substantial", "satisfying", "strong", "upstanding", "hearty", "unanimous", "firm", "whole", "solid"]}, {"answer": "solitary", "hint": "synonyms for solitary", "clues": ["lone", "nonsocial", "only", "unfrequented", "lonesome", "nongregarious", "sole", "solitary"]}, {"answer": "somber", "hint": "synonyms for somber", "clues": ["sober", "drab", "sombre", "melancholy"]}, {"answer": "sombre", "hint": "synonyms for sombre", "clues": ["sober", "drab", "melancholy", "sombre"]}, {"answer": "sometime", "hint": "synonyms for sometime", "clues": ["erstwhile", "one-time", "old", "quondam", "former", "sometime"]}, {"answer": "somniferous", "hint": "synonyms for somniferous", "clues": ["soporiferous", "soporific", "hypnagogic", "somnific", "somniferous"]}, {"answer": "somnific", "hint": "synonyms for somnific", "clues": ["soporiferous", "soporific", "hypnagogic", "somniferous", "somnific"]}, {"answer": "sonsie", "hint": "synonyms for sonsie", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie"]}, {"answer": "sonsy", "hint": "synonyms for sonsy", "clues": ["curvaceous", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie", "sonsy"]}, {"answer": "sooty", "hint": "synonyms for sooty", "clues": ["pitchy", "coal-black", "jet", "jet-black", "sooty"]}, {"answer": "soporiferous", "hint": "synonyms for soporiferous", "clues": ["soporific", "hypnagogic", "narcotic", "somnific", "somniferous", "soporiferous"]}, {"answer": "soporific", "hint": "synonyms for soporific", "clues": ["soporiferous", "hypnagogic", "narcotic", "somnific", "somniferous", "soporific"]}, {"answer": "soppy", "hint": "synonyms for soppy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "soupy", "maudlin", "bathetic", "sodden", "drippy", "slushy", "soppy"]}, {"answer": "sorcerous", "hint": "synonyms for sorcerous", "clues": ["magic", "wizardly", "charming", "magical", "witching", "sorcerous"]}, {"answer": "sordid", "hint": "synonyms for sordid", "clues": ["dirty", "squalid", "flyblown", "seedy", "sleazy", "seamy", "sordid"]}, {"answer": "sore", "hint": "synonyms for sore", "clues": ["mad", "huffy", "sensitive", "tender", "painful", "afflictive", "raw", "sore"]}, {"answer": "sorrowing", "hint": "synonyms for sorrowing", "clues": ["bereft", "grieving", "bereaved", "mourning", "grief-stricken", "sorrowing"]}, {"answer": "sorry", "hint": "synonyms for sorry", "clues": ["no-count", "drab", "good-for-naught", "grim", "blue", "meritless", "pitiful", "distressing", "regretful", "dingy", "dismal", "dark", "good-for-nothing", "gloomy", "sad", "bad", "deplorable", "dreary", "disconsolate", "no-good", "lamentable", "sorry"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["effectual", "level-headed", "heavy", "healthy", "good", "intelligent", "wakeless", "profound", "legal", "well-grounded", "reasoned", "sound"]}, {"answer": "soupy", "hint": "synonyms for soupy", "clues": ["mawkish", "kitschy", "mushy", "sentimental", "schmalzy", "hokey", "drippy", "maudlin", "bathetic", "slushy", "soppy", "soupy"]}, {"answer": "sour", "hint": "synonyms for sour", "clues": ["rancid", "off", "off-key", "dour", "moody", "glowering", "dark", "saturnine", "false", "glum", "morose", "sullen", "turned", "sour"]}, {"answer": "sourish", "hint": "synonyms for sourish", "clues": ["tangy", "lemony", "tart", "lemonlike", "sourish"]}, {"answer": "soused", "hint": "synonyms for soused", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "soused"]}, {"answer": "sovereign", "hint": "synonyms for sovereign", "clues": ["self-governing", "supreme", "independent", "autonomous", "sovereign"]}, {"answer": "sozzled", "hint": "synonyms for sozzled", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "sozzled"]}, {"answer": "spangled", "hint": "synonyms for spangled", "clues": ["spangly", "sequined", "jeweled", "gemmed", "beady", "spangled"]}, {"answer": "spangly", "hint": "synonyms for spangly", "clues": ["sequined", "jeweled", "spangled", "gemmed", "beady", "spangly"]}, {"answer": "spanking", "hint": "synonyms for spanking", "clues": ["brisk", "merry", "alert", "rattling", "lively", "snappy", "zippy", "spanking"]}, {"answer": "spare", "hint": "synonyms for spare", "clues": ["extra", "surplus", "trim", "scanty", "bare", "unornamented", "unembellished", "redundant", "supererogatory", "supernumerary", "excess", "plain", "superfluous", "free", "spare"]}, {"answer": "sparing", "hint": "synonyms for sparing", "clues": ["frugal", "stinting", "scotch", "economical", "sparing"]}, {"answer": "sparkly", "hint": "synonyms for sparkly", "clues": ["glittering", "coruscant", "bubbling", "glittery", "scintillant", "fulgid", "effervescent", "glinting", "scintillating", "frothy", "sparkly"]}, {"answer": "spartan", "hint": "synonyms for spartan", "clues": ["Spartan", "ascetical", "austere", "severe"]}, {"answer": "special", "hint": "synonyms for special", "clues": ["extra", "particular", "peculiar", "limited", "exceptional", "especial"]}, {"answer": "specked", "hint": "synonyms for specked", "clues": ["stippled", "dotted", "flecked", "speckled"]}, {"answer": "speckled", "hint": "synonyms for speckled", "clues": ["dotted", "flecked", "stippled", "specked"]}, {"answer": "speckless", "hint": "synonyms for speckless", "clues": ["spick-and-span", "spic", "immaculate", "spotless", "speckless"]}, {"answer": "spectacular", "hint": "synonyms for spectacular", "clues": ["outstanding", "prominent", "dramatic", "striking", "salient", "spectacular"]}, {"answer": "spectral", "hint": "synonyms for spectral", "clues": ["ghostlike", "spiritual", "apparitional", "phantasmal", "ghostly", "spectral"]}, {"answer": "speculative", "hint": "synonyms for speculative", "clues": ["notional", "bad", "high-risk", "wondering", "risky", "questioning", "inquisitive", "speculative"]}, {"answer": "spell-bound", "hint": "synonyms for spell-bound", "clues": ["mesmerized", "fascinated", "transfixed", "hypnotized", "spellbound"]}, {"answer": "spellbound", "hint": "synonyms for spellbound", "clues": ["mesmerized", "fascinated", "transfixed", "hypnotized", "spell-bound"]}, {"answer": "spent", "hint": "synonyms for spent", "clues": ["dog-tired", "worn-out", "exhausted", "fagged", "washed-out", "fatigued", "played out", "spent"]}, {"answer": "spheric", "hint": "synonyms for spheric", "clues": ["globular", "orbicular", "globose", "ball-shaped", "global", "spherical"]}, {"answer": "spherical", "hint": "synonyms for spherical", "clues": ["globular", "orbicular", "globose", "ball-shaped", "global", "spheric"]}, {"answer": "spic", "hint": "synonyms for spic", "clues": ["spick-and-span", "speckless", "spick", "immaculate", "spotless"]}, {"answer": "spic-and-span", "hint": "synonyms for spic-and-span", "clues": ["spic", "speckless", "immaculate", "spotless", "spick-and-span", "brand-new"]}, {"answer": "spick", "hint": "synonyms for spick", "clues": ["spick-and-span", "spic", "speckless", "immaculate", "spotless"]}, {"answer": "spick-and-span", "hint": "synonyms for spick-and-span", "clues": ["spic-and-span", "spic", "speckless", "immaculate", "spotless", "brand-new"]}, {"answer": "spicy", "hint": "synonyms for spicy", "clues": ["hot", "juicy", "gamey", "savory", "piquant", "blue", "racy", "zesty", "risque", "naughty", "spicy"]}, {"answer": "spiderlike", "hint": "synonyms for spiderlike", "clues": ["arachnoid", "arachnidian", "spidery", "spiderlike"]}, {"answer": "spiderly", "hint": "synonyms for spiderly", "clues": ["arachnoid", "arachnidian", "spiderlike", "spidery"]}, {"answer": "spidery", "hint": "synonyms for spidery", "clues": ["arachnoid", "arachnidian", "spiderlike", "spiderly"]}, {"answer": "spiffed_up", "hint": "synonyms for spiffed up", "clues": ["dressed", "dressed to the nines", "dressed to kill", "spruced up", "dolled up", "togged up", "dressed-up", "spiffed up"]}, {"answer": "spiffy", "hint": "synonyms for spiffy", "clues": ["natty", "jaunty", "dapper", "dashing", "snappy", "rakish", "spruce", "raffish", "spiffy"]}, {"answer": "spineless", "hint": "synonyms for spineless", "clues": ["gutless", "wishy-washy", "invertebrate", "thornless", "namby-pamby", "spineless"]}, {"answer": "spiny", "hint": "synonyms for spiny", "clues": ["bristly", "setaceous", "prickly", "burred", "thorny", "briery", "briary", "bristled", "barbellate", "burry", "setose", "spinous", "barbed", "spiny"]}, {"answer": "spiral", "hint": "synonyms for spiral", "clues": ["coiling", "helical", "volute", "turbinate", "spiraling", "whorled"]}, {"answer": "spiraling", "hint": "synonyms for spiraling", "clues": ["coiling", "helical", "volute", "turbinate", "spiral", "whorled"]}, {"answer": "spirant", "hint": "synonyms for spirant", "clues": ["sibilant", "continuant", "fricative", "strident", "spirant"]}, {"answer": "spirited", "hint": "synonyms for spirited", "clues": ["enlivened", "mettlesome", "gamey", "bouncy", "gritty", "peppy", "bouncing", "spunky", "zippy", "spirited"]}, {"answer": "spiritual", "hint": "synonyms for spiritual", "clues": ["spectral", "ghostlike", "ghostly", "religious", "apparitional", "phantasmal", "unearthly", "spiritual"]}, {"answer": "splendid", "hint": "synonyms for splendid", "clues": ["first-class", "fantabulous", "brilliant", "magnificent", "excellent", "resplendent", "splendiferous", "glorious", "splendid"]}, {"answer": "splenetic", "hint": "synonyms for splenetic", "clues": ["splenic", "bristly", "lienal", "waspish", "prickly"]}, {"answer": "sporting", "hint": "synonyms for sporting", "clues": ["sportsmanlike", "sporty", "clean", "card-playing", "dissipated", "betting", "sporting"]}, {"answer": "sportive", "hint": "synonyms for sportive", "clues": ["frolicky", "rollicking", "coltish", "frolicsome", "sportive"]}, {"answer": "sporty", "hint": "synonyms for sporty", "clues": ["sportsmanlike", "jazzy", "clean", "gaudy", "flashy", "showy", "sporting", "sporty"]}, {"answer": "spotless", "hint": "synonyms for spotless", "clues": ["spick-and-span", "spic", "speckless", "immaculate", "spotless"]}, {"answer": "spotty", "hint": "synonyms for spotty", "clues": ["patched", "uneven", "spotted", "scratchy", "spotty"]}, {"answer": "spring-blooming", "hint": "synonyms for spring-blooming", "clues": ["early-flowering", "early-blooming", "spring-flowering", "late-spring-blooming"]}, {"answer": "spring-flowering", "hint": "synonyms for spring-flowering", "clues": ["spring-blooming", "early-flowering", "early-blooming", "spring-flowering"]}, {"answer": "springy", "hint": "synonyms for springy", "clues": ["resilient", "bouncy", "lively", "springy"]}, {"answer": "spruce", "hint": "synonyms for spruce", "clues": ["natty", "jaunty", "dapper", "dashing", "snappy", "rakish", "spiffy", "raffish", "spruce"]}, {"answer": "spruced_up", "hint": "synonyms for spruced up", "clues": ["spiffed up", "dressed", "dressed to the nines", "dressed to kill", "dolled up", "togged up", "dressed-up", "spruced up"]}, {"answer": "spumy", "hint": "synonyms for spumy", "clues": ["foaming", "effervescing", "frothy", "bubbling", "bubbly", "foamy", "spumy"]}, {"answer": "spunky", "hint": "synonyms for spunky", "clues": ["plucky", "spirited", "mettlesome", "gamey", "feisty", "gritty", "spunky"]}, {"answer": "spurious", "hint": "synonyms for spurious", "clues": ["unauthentic", "misbegot", "misbegotten", "specious", "bastardly", "spurious"]}, {"answer": "squalid", "hint": "synonyms for squalid", "clues": ["sordid", "flyblown", "seedy", "sleazy", "seamy", "squalid"]}, {"answer": "square", "hint": "synonyms for square", "clues": ["straight", "solid", "straightforward", "substantial", "satisfying", "hearty", "square"]}, {"answer": "square-toed", "hint": "synonyms for square-toed", "clues": ["tight-laced", "squared-toe", "prudish", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim"]}, {"answer": "squashy", "hint": "synonyms for squashy", "clues": ["soggy", "muddy", "marshy", "spongelike", "mucky", "miry", "quaggy", "spongy", "squishy", "sloughy", "pulpy", "swampy", "sloppy", "waterlogged", "boggy"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["low-set", "dumpy", "stumpy", "squatty", "underslung", "chunky", "squat"]}, {"answer": "squatty", "hint": "synonyms for squatty", "clues": ["low-set", "dumpy", "stumpy", "chunky", "squat", "squatty"]}, {"answer": "squeaking", "hint": "synonyms for squeaking", "clues": ["screaky", "screechy", "squeaky", "squealing"]}, {"answer": "squeaky", "hint": "synonyms for squeaky", "clues": ["screaky", "squeaking", "screechy", "squeaky"]}, {"answer": "squealing", "hint": "synonyms for squealing", "clues": ["screaky", "squeaking", "screechy", "squeaky"]}, {"answer": "squeamish", "hint": "synonyms for squeamish", "clues": ["overnice", "nice", "prissy", "dainty", "squeamish"]}, {"answer": "squiffy", "hint": "synonyms for squiffy", "clues": ["pie-eyed", "loaded", "tight", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "squiffy"]}, {"answer": "squint", "hint": "synonyms for squint", "clues": ["askant", "squint-eyed", "askance", "sidelong", "asquint"]}, {"answer": "squint-eyed", "hint": "synonyms for squint-eyed", "clues": ["askant", "askance", "sidelong", "asquint", "squint-eyed"]}, {"answer": "squinty", "hint": "synonyms for squinty", "clues": ["askant", "askance", "sidelong", "asquint", "squint-eyed"]}, {"answer": "stabbing", "hint": "synonyms for stabbing", "clues": ["wounding", "keen", "knifelike", "piercing", "lancinate", "lancinating", "cutting", "stabbing"]}, {"answer": "stacked", "hint": "synonyms for stacked", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "busty", "sonsie", "stacked"]}, {"answer": "stainless", "hint": "synonyms for stainless", "clues": ["untarnished", "unsullied", "unstained", "stainless"]}, {"answer": "stalwart", "hint": "synonyms for stalwart", "clues": ["sturdy", "hardy", "stout", "stouthearted", "stalwart"]}, {"answer": "standardised", "hint": "synonyms for standardised", "clues": ["interchangeable", "similar", "exchangeable", "standardized"]}, {"answer": "standardized", "hint": "synonyms for standardized", "clues": ["standardised", "interchangeable", "similar", "exchangeable"]}, {"answer": "star", "hint": "synonyms for star", "clues": ["starring", "stellar", "leading", "prima", "star"]}, {"answer": "starchlike", "hint": "synonyms for starchlike", "clues": ["farinaceous", "amyloid", "amylaceous", "starchlike"]}, {"answer": "staring", "hint": "synonyms for staring", "clues": ["consummate", "double-dyed", "gross", "perfect", "arrant", "sodding", "unadulterated", "everlasting", "complete", "thoroughgoing", "utter", "pure", "stark", "agaze", "staring"]}, {"answer": "stark", "hint": "synonyms for stark", "clues": ["crude", "consummate", "severe", "double-dyed", "bare", "gross", "sodding", "unadulterated", "complete", "thoroughgoing", "stern", "utter", "blunt", "pure", "barren", "desolate", "perfect", "arrant", "staring", "everlasting", "austere", "bleak", "stark"]}, {"answer": "stark_naked", "hint": "synonyms for stark naked", "clues": ["peeled", "in the altogether", "raw", "in the raw", "bare-ass", "naked as a jaybird", "in the buff", "stark naked"]}, {"answer": "starring", "hint": "synonyms for starring", "clues": ["star", "stellar", "leading", "prima", "starring"]}, {"answer": "starved", "hint": "synonyms for starved", "clues": ["starving", "esurient", "ravenous", "sharp-set", "famished", "starved"]}, {"answer": "stately", "hint": "synonyms for stately", "clues": ["formal", "statuesque", "noble", "imposing", "baronial", "courtly", "stately"]}, {"answer": "static", "hint": "synonyms for static", "clues": ["still", "inactive", "motionless", "unchanging", "electrostatic", "stable", "static"]}, {"answer": "steadfast", "hint": "synonyms for steadfast", "clues": ["unwavering", "steady", "unbendable", "unfaltering", "unswerving", "unshakable", "stiff", "firm", "staunch", "steadfast"]}, {"answer": "steady", "hint": "synonyms for steady", "clues": ["unwavering", "unfluctuating", "unbendable", "steadfast", "regular", "unfaltering", "unshakable", "stiff", "firm", "steady"]}, {"answer": "stealthy", "hint": "synonyms for stealthy", "clues": ["sneaky", "furtive", "surreptitious", "stealthy"]}, {"answer": "steamed", "hint": "synonyms for steamed", "clues": ["nettled", "pissed off", "annoyed", "riled", "pissed", "stung", "miffed", "peeved", "irritated", "steamed"]}, {"answer": "steamy", "hint": "synonyms for steamy", "clues": ["turned on", "sticky", "ruttish", "horny", "steaming", "randy", "muggy", "aroused", "steamy"]}, {"answer": "steep", "hint": "synonyms for steep", "clues": ["outrageous", "usurious", "extortionate", "unconscionable", "exorbitant", "steep"]}, {"answer": "stellar", "hint": "synonyms for stellar", "clues": ["star", "starring", "leading", "prima", "astral", "stellar"]}, {"answer": "step-by-step", "hint": "synonyms for step-by-step", "clues": ["bit-by-bit", "in small stages", "stepwise", "piecemeal", "step-by-step"]}, {"answer": "stepwise", "hint": "synonyms for stepwise", "clues": ["bit-by-bit", "in small stages", "piecemeal", "step-by-step", "stepwise"]}, {"answer": "sterile", "hint": "synonyms for sterile", "clues": ["infertile", "uninventive", "aseptic", "unimaginative", "uninspired", "sterile"]}, {"answer": "stern", "hint": "synonyms for stern", "clues": ["relentless", "severe", "inexorable", "austere", "grim", "strict", "unforgiving", "unrelenting", "stark", "unappeasable", "exacting", "stern"]}, {"answer": "stick-in-the-mud", "hint": "synonyms for stick-in-the-mud", "clues": ["moss-grown", "mossy", "stodgy", "fogyish", "stick-in-the-mud"]}, {"answer": "sticking", "hint": "synonyms for sticking", "clues": ["projected", "projecting", "protruding", "relieved", "sticking out", "jutting", "sticking"]}, {"answer": "sticking_out", "hint": "synonyms for sticking out", "clues": ["projected", "projecting", "protruding", "sticking", "relieved", "jutting", "sticking out"]}, {"answer": "sticky", "hint": "synonyms for sticky", "clues": ["mucilaginous", "glutinous", "gluey", "pasty", "unenviable", "viscid", "steamy", "awkward", "embarrassing", "viscous", "gummy", "muggy", "sticky"]}, {"answer": "stiff", "hint": "synonyms for stiff", "clues": ["pie-eyed", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "besotted", "blotto", "unfaltering", "wet", "firm", "potent", "plastered", "loaded", "unwavering", "tight", "unbendable", "starchy", "steadfast", "cockeyed", "soaked", "buckram", "fuddled", "slopped", "sloshed", "steady", "strong", "pixilated", "rigid", "smashed", "crocked", "unshakable", "stiff"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["motionless", "smooth", "placid", "unruffled", "tranquil", "soundless", "inactive", "silent", "noneffervescent", "quiet", "static", "still"]}, {"answer": "stingy", "hint": "synonyms for stingy", "clues": ["meagerly", "scrimpy", "ungenerous", "meagre", "stingy"]}, {"answer": "stinking", "hint": "synonyms for stinking", "clues": ["foul-smelling", "foetid", "foul", "icky", "stinky", "rotten", "funky", "smelly", "noisome", "shitty", "ill-scented", "crappy", "lousy", "stinking"]}, {"answer": "stinky", "hint": "synonyms for stinky", "clues": ["stinking", "unpleasant-smelling", "ill-smelling", "icky", "rotten", "crappy", "shitty", "malodorous", "lousy", "stinky"]}, {"answer": "stinting", "hint": "synonyms for stinting", "clues": ["frugal", "sparing", "scotch", "economical", "stinting"]}, {"answer": "stipendiary", "hint": "synonyms for stipendiary", "clues": ["remunerated", "compensable", "paying", "salaried", "compensated", "stipendiary"]}, {"answer": "stippled", "hint": "synonyms for stippled", "clues": ["dotted", "flecked", "speckled", "stippled"]}, {"answer": "stirred", "hint": "synonyms for stirred", "clues": ["stirred up", "stimulated", "affected", "touched", "aroused", "moved", "stirred"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "standard", "commonplace", "trite", "well-worn", "banal", "shopworn", "threadbare", "stock"]}, {"answer": "stocky", "hint": "synonyms for stocky", "clues": ["thick", "heavyset", "thickset", "compact", "stocky"]}, {"answer": "stodgy", "hint": "synonyms for stodgy", "clues": ["stuffy", "moss-grown", "fogyish", "stick-in-the-mud", "mossy", "stodgy"]}, {"answer": "stone-broke", "hint": "synonyms for stone-broke", "clues": ["broke", "bust", "stony-broke", "skint"]}, {"answer": "stone-gray", "hint": "synonyms for stone-gray", "clues": ["slatey", "stone-grey", "slate-gray", "slaty-grey"]}, {"answer": "stone-grey", "hint": "synonyms for stone-grey", "clues": ["slatey", "slate-gray", "slaty-grey", "stone-gray"]}, {"answer": "stony", "hint": "synonyms for stony", "clues": ["granitelike", "flinty", "bouldered", "obdurate", "rocklike", "granitic", "bouldery", "rocky", "stony"]}, {"answer": "stony-broke", "hint": "synonyms for stony-broke", "clues": ["broke", "bust", "stone-broke", "skint"]}, {"answer": "stooped", "hint": "synonyms for stooped", "clues": ["round-backed", "hunched", "crooked", "round-shouldered", "stooping", "stooped"]}, {"answer": "stooping", "hint": "synonyms for stooping", "clues": ["stooped", "round-backed", "hunched", "crooked", "round-shouldered", "stooping"]}, {"answer": "storm-tossed", "hint": "synonyms for storm-tossed", "clues": ["tempest-swept", "buffeted", "tempest-tost", "tempest-tossed", "storm-tossed"]}, {"answer": "stout", "hint": "synonyms for stout", "clues": ["sturdy", "stalwart", "portly", "hardy", "stout"]}, {"answer": "straight", "hint": "synonyms for straight", "clues": ["square", "unbowed", "uncoiled", "straightforward", "unbent", "neat", "consecutive", "full-strength", "true", "straight"]}, {"answer": "straight-from-the-shoulder", "hint": "synonyms for straight-from-the-shoulder", "clues": ["outspoken", "free-spoken", "candid", "point-blank", "plainspoken", "forthright", "frank", "blunt", "straight-from-the-shoulder"]}, {"answer": "straight-laced", "hint": "synonyms for straight-laced", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim"]}, {"answer": "straightlaced", "hint": "synonyms for straightlaced", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "strait-laced", "victorian", "prissy", "puritanical", "prim"]}, {"answer": "strained", "hint": "synonyms for strained", "clues": ["labored", "constrained", "forced", "agonistic", "strained"]}, {"answer": "strait-laced", "hint": "synonyms for strait-laced", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim"]}, {"answer": "straitlaced", "hint": "synonyms for straitlaced", "clues": ["tight-laced", "square-toed", "prudish", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim"]}, {"answer": "strapping", "hint": "synonyms for strapping", "clues": ["buirdly", "burly", "beefy", "husky", "strapping"]}, {"answer": "stratified", "hint": "synonyms for stratified", "clues": ["graded", "ranked", "class-conscious", "bedded", "stratified"]}, {"answer": "stricken", "hint": "synonyms for stricken", "clues": ["afflicted", "struck", "smitten", "laid low", "stricken"]}, {"answer": "strict", "hint": "synonyms for strict", "clues": ["rigorous", "rigid", "nonindulgent", "stern", "hard-and-fast", "exacting", "strict"]}, {"answer": "strident", "hint": "synonyms for strident", "clues": ["fricative", "sibilant", "vociferous", "continuant", "spirant", "clamant", "shrill", "blatant", "raucous", "clamorous", "strident"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["outstanding", "spectacular", "prominent", "dramatic", "salient", "striking"]}, {"answer": "stringy", "hint": "synonyms for stringy", "clues": ["ropy", "fibrous", "thready", "sinewy", "wiry", "unchewable", "stringy"]}, {"answer": "strong", "hint": "synonyms for strong", "clues": ["solid", "hard", "secure", "impregnable", "inviolable", "substantial", "unattackable", "unassailable", "warm", "stiff", "firm", "potent", "strong"]}, {"answer": "strung-out", "hint": "synonyms for strung-out", "clues": ["drug-addicted", "hooked", "dependent", "strung-out"]}, {"answer": "stuck-up", "hint": "synonyms for stuck-up", "clues": ["bigheaded", "snotty", "persnickety", "snooty", "too big for one's breeches", "snot-nosed", "uppish", "stuck-up"]}, {"answer": "stuffy", "hint": "synonyms for stuffy", "clues": ["close", "unaired", "stodgy", "airless", "stuffy"]}, {"answer": "stumpy", "hint": "synonyms for stumpy", "clues": ["low-set", "dumpy", "squatty", "chunky", "squat", "stumpy"]}, {"answer": "stung", "hint": "synonyms for stung", "clues": ["nettled", "steamed", "pissed off", "annoyed", "riled", "pissed", "miffed", "peeved", "irritated", "stung"]}, {"answer": "stunned", "hint": "synonyms for stunned", "clues": ["dazed", "stupefied", "out", "knocked out", "astonished", "KO'd", "stupid", "astounded", "kayoed", "amazed", "stunned"]}, {"answer": "stupefied", "hint": "synonyms for stupefied", "clues": ["dumbstricken", "dazed", "dumbfounded", "stupid", "stunned", "thunderstruck", "dumbstruck", "flabbergasted", "stupefied"]}, {"answer": "stupid", "hint": "synonyms for stupid", "clues": ["unintelligent", "dazed", "stunned", "stupefied", "stupid"]}, {"answer": "stuporous", "hint": "synonyms for stuporous", "clues": ["logy", "dazed", "groggy", "foggy", "stuporous"]}, {"answer": "sturdy", "hint": "synonyms for sturdy", "clues": ["inflexible", "stalwart", "uncompromising", "hardy", "stout", "tough", "sturdy"]}, {"answer": "suave", "hint": "synonyms for suave", "clues": ["politic", "smooth", "debonaire", "bland", "suave"]}, {"answer": "subaltern", "hint": "synonyms for subaltern", "clues": ["lower-ranking", "junior-grade", "secondary", "lowly", "petty", "subaltern"]}, {"answer": "subaquatic", "hint": "synonyms for subaquatic", "clues": ["semiaquatic", "submersed", "underwater", "subaqueous", "subaquatic"]}, {"answer": "subaqueous", "hint": "synonyms for subaqueous", "clues": ["submersed", "underwater", "subaquatic", "subaqueous"]}, {"answer": "subdued", "hint": "synonyms for subdued", "clues": ["low-keyed", "hushed", "muted", "dim", "soft", "quiet", "subdued"]}, {"answer": "sublime", "hint": "synonyms for sublime", "clues": ["idealistic", "grand", "rarified", "reverend", "high-flown", "noble-minded", "exalted", "high-minded", "empyrean", "lofty", "elevated", "sublime"]}, {"answer": "submerged", "hint": "synonyms for submerged", "clues": ["subaquatic", "submersed", "underwater", "subaqueous"]}, {"answer": "submersed", "hint": "synonyms for submersed", "clues": ["subaquatic", "submerged", "underwater", "subaqueous"]}, {"answer": "subservient", "hint": "synonyms for subservient", "clues": ["slavish", "instrumental", "implemental", "submissive", "subservient"]}, {"answer": "substantial", "hint": "synonyms for substantial", "clues": ["square", "substantive", "solid", "material", "satisfying", "strong", "hearty", "real", "significant", "substantial"]}, {"answer": "substantiating", "hint": "synonyms for substantiating", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming"]}, {"answer": "substantiative", "hint": "synonyms for substantiative", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiating", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming"]}, {"answer": "substitute", "hint": "synonyms for substitute", "clues": ["alternate", "utility", "ersatz", "substitute"]}, {"answer": "successive", "hint": "synonyms for successive", "clues": ["sequent", "serial", "consecutive", "sequential", "successive"]}, {"answer": "suggestive", "hint": "synonyms for suggestive", "clues": ["indicative", "implicative", "significative", "indicatory", "revelatory", "suggestive"]}, {"answer": "sulfurous", "hint": "synonyms for sulfurous", "clues": ["acrid", "caustic", "sultry", "acerb", "blistering", "virulent", "acerbic", "vitriolic", "sulphurous", "bitter", "stifling", "sulfurous"]}, {"answer": "sulky", "hint": "synonyms for sulky", "clues": ["gloomful", "huffish", "sluggish", "glooming", "gloomy", "sulky"]}, {"answer": "sullen", "hint": "synonyms for sullen", "clues": ["heavy", "dour", "moody", "glowering", "dark", "saturnine", "sour", "glum", "morose", "threatening", "sullen"]}, {"answer": "sulphurous", "hint": "synonyms for sulphurous", "clues": ["acrid", "caustic", "sultry", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "vitriolic", "bitter", "stifling", "sulphurous"]}, {"answer": "sultry", "hint": "synonyms for sultry", "clues": ["sulfurous", "sulphurous", "sensual", "stifling", "sultry"]}, {"answer": "summary", "hint": "synonyms for summary", "clues": ["compendious", "succinct", "compact", "drumhead", "summary"]}, {"answer": "sumptuous", "hint": "synonyms for sumptuous", "clues": ["grand", "deluxe", "princely", "opulent", "gilded", "luxurious", "sumptuous"]}, {"answer": "sunbaked", "hint": "synonyms for sunbaked", "clues": ["scorched", "baked", "parched", "adust", "sunbaked"]}, {"answer": "sundry", "hint": "synonyms for sundry", "clues": ["assorted", "motley", "mixed", "miscellaneous", "sundry"]}, {"answer": "sunk", "hint": "synonyms for sunk", "clues": ["done for", "washed-up", "ruined", "undone", "sunk"]}, {"answer": "super", "hint": "synonyms for super", "clues": ["topnotch", "first-rate", "tops", "tiptop", "ace", "crack", "A-one", "super"]}, {"answer": "superannuated", "hint": "synonyms for superannuated", "clues": ["overaged", "out-of-date", "outdated", "over-the-hill", "superannuated"]}, {"answer": "supercilious", "hint": "synonyms for supercilious", "clues": ["haughty", "snide", "sneering", "lordly", "overbearing", "sniffy", "disdainful", "imperious", "prideful", "swaggering", "supercilious"]}, {"answer": "supererogatory", "hint": "synonyms for supererogatory", "clues": ["extra", "surplus", "supernumerary", "excess", "superfluous", "redundant", "spare", "supererogatory"]}, {"answer": "superfluous", "hint": "synonyms for superfluous", "clues": ["extra", "surplus", "pointless", "redundant", "wasted", "otiose", "purposeless", "supernumerary", "excess", "senseless", "supererogatory", "spare", "superfluous"]}, {"answer": "supernumerary", "hint": "synonyms for supernumerary", "clues": ["extra", "supererogatory", "surplus", "excess", "redundant", "superfluous", "spare", "supernumerary"]}, {"answer": "superpatriotic", "hint": "synonyms for superpatriotic", "clues": ["jingoistic", "ultranationalistic", "nationalistic", "flag-waving", "chauvinistic", "superpatriotic"]}, {"answer": "supersensitised", "hint": "synonyms for supersensitised", "clues": ["sensitised", "hypersensitive", "allergic", "supersensitized"]}, {"answer": "supersensitive", "hint": "synonyms for supersensitive", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "supersensitized", "hint": "synonyms for supersensitized", "clues": ["sensitised", "supersensitised", "hypersensitive", "allergic"]}, {"answer": "supple", "hint": "synonyms for supple", "clues": ["lissom", "limber", "lithe", "svelte", "sylphlike", "lithesome", "slender", "supple"]}, {"answer": "supposed", "hint": "synonyms for supposed", "clues": ["hypothetical", "so-called", "suppositional", "conjectural", "suppositious", "divinatory", "alleged", "supposed"]}, {"answer": "suppositional", "hint": "synonyms for suppositional", "clues": ["hypothetical", "supposed", "supposititious", "conjectural", "divinatory", "suppositional"]}, {"answer": "suppositious", "hint": "synonyms for suppositious", "clues": ["hypothetical", "suppositional", "supposed", "supposititious", "conjectural", "divinatory"]}, {"answer": "supposititious", "hint": "synonyms for supposititious", "clues": ["hypothetical", "suppositional", "supposed", "conjectural", "divinatory", "suppositious"]}, {"answer": "surpassing", "hint": "synonyms for surpassing", "clues": ["transcendent", "olympian", "exceeding", "prodigious", "exceptional", "surpassing"]}, {"answer": "surplus", "hint": "synonyms for surplus", "clues": ["extra", "supererogatory", "supernumerary", "excess", "redundant", "superfluous", "spare", "surplus"]}, {"answer": "surreal", "hint": "synonyms for surreal", "clues": ["phantasmagoric", "surrealistic", "dreamlike", "surreal"]}, {"answer": "surreptitious", "hint": "synonyms for surreptitious", "clues": ["hush-hush", "furtive", "undercover", "hole-and-corner", "underground", "clandestine", "sneak", "stealthy", "cloak-and-dagger", "hugger-mugger", "secret", "surreptitious"]}, {"answer": "suspect", "hint": "synonyms for suspect", "clues": ["suspicious", "fishy", "funny", "shady", "suspect"]}, {"answer": "suspicious", "hint": "synonyms for suspicious", "clues": ["fishy", "wary", "mistrustful", "shady", "suspect", "leery", "funny", "untrusting", "suspicious"]}, {"answer": "svelte", "hint": "synonyms for svelte", "clues": ["polished", "refined", "supple", "lithe", "sylphlike", "slim", "lithesome", "slight", "slender", "urbane", "lissome", "svelte"]}, {"answer": "swaggering", "hint": "synonyms for swaggering", "clues": ["haughty", "swashbuckling", "lordly", "overbearing", "sniffy", "disdainful", "imperious", "prideful", "supercilious", "swaggering"]}, {"answer": "swampy", "hint": "synonyms for swampy", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "quaggy", "sloughy", "sloppy", "waterlogged", "squashy", "boggy", "swampy"]}, {"answer": "sweet", "hint": "synonyms for sweet", "clues": ["fresh", "gratifying", "sweet-smelling", "honeyed", "mellisonant", "scented", "mellifluous", "dulcet", "sweetened", "perfumed", "angelic", "cherubic", "odorous", "sweet-flavored", "sugared", "seraphic", "sweet-scented", "unfermented", "odoriferous", "sweet"]}, {"answer": "sweet-scented", "hint": "synonyms for sweet-scented", "clues": ["perfumed", "scented", "sweet", "odoriferous", "odorous", "sweet-smelling", "sweet-scented"]}, {"answer": "sweet-smelling", "hint": "synonyms for sweet-smelling", "clues": ["perfumed", "scented", "sweet-scented", "sweet", "odoriferous", "odorous", "sweet-smelling"]}, {"answer": "swell", "hint": "synonyms for swell", "clues": ["slap-up", "nifty", "dandy", "groovy", "smashing", "corking", "peachy", "neat", "keen", "bully", "not bad", "cracking", "bang-up", "great", "swell"]}, {"answer": "swinish", "hint": "synonyms for swinish", "clues": ["oafish", "porcine", "hoggish", "piggish", "piggy", "boorish", "loutish", "neanderthal", "swinish"]}, {"answer": "swollen", "hint": "synonyms for swollen", "clues": ["egotistical", "vain", "conceited", "self-conceited", "swollen-headed", "swollen"]}, {"answer": "swollen-headed", "hint": "synonyms for swollen-headed", "clues": ["egotistical", "vain", "swollen", "conceited", "self-conceited", "swollen-headed"]}, {"answer": "swooning", "hint": "synonyms for swooning", "clues": ["lightheaded", "light", "faint", "swooning"]}, {"answer": "sybaritic", "hint": "synonyms for sybaritic", "clues": ["voluptuous", "epicurean", "voluptuary", "luxurious", "luxuriant", "sybaritic"]}, {"answer": "sycophantic", "hint": "synonyms for sycophantic", "clues": ["fawning", "bootlicking", "toadyish", "obsequious", "sycophantic"]}, {"answer": "sylphlike", "hint": "synonyms for sylphlike", "clues": ["svelte", "lithesome", "slender", "supple", "lissome", "lithe", "sylphlike"]}, {"answer": "sympathetic", "hint": "synonyms for sympathetic", "clues": ["openhearted", "likeable", "charitable", "good-hearted", "appealing", "harmonic", "large-hearted", "benevolent", "kindly", "sympathetic"]}, {"answer": "synthetic", "hint": "synonyms for synthetic", "clues": ["semisynthetic", "man-made", "celluloid", "synthetical"]}, {"answer": "syrupy", "hint": "synonyms for syrupy", "clues": ["honeyed", "viscous", "cloying", "treacly", "saccharine", "honied", "syrupy"]}, {"answer": "taboo", "hint": "synonyms for taboo", "clues": ["forbidden", "verboten", "proscribed", "tabu", "out", "prohibited", "taboo"]}, {"answer": "tabu", "hint": "synonyms for tabu", "clues": ["taboo", "forbidden", "verboten", "proscribed", "out", "prohibited", "tabu"]}, {"answer": "tacky", "hint": "synonyms for tacky", "clues": ["meretricious", "flash", "tatty", "cheap", "tawdry", "gimcrack", "loud", "trashy", "garish", "brassy", "gaudy", "tacky"]}, {"answer": "tailor-made", "hint": "synonyms for tailor-made", "clues": ["bespoken", "tailored", "made-to-order", "tailor-made"]}, {"answer": "tailored", "hint": "synonyms for tailored", "clues": ["bespoken", "made-to-order", "trim", "tailor-made", "tailored"]}, {"answer": "taken_with", "hint": "synonyms for taken with", "clues": ["enamored", "infatuated", "soft on", "in love", "smitten", "potty", "taken with"]}, {"answer": "talkative", "hint": "synonyms for talkative", "clues": ["bigmouthed", "blabby", "talky", "blabbermouthed", "gabby", "loquacious", "chatty", "garrulous", "expansive", "talkative"]}, {"answer": "talky", "hint": "synonyms for talky", "clues": ["loquacious", "chatty", "talkative", "garrulous", "gabby", "talky"]}, {"answer": "tall", "hint": "synonyms for tall", "clues": ["marvelous", "grandiloquent", "magniloquent", "improbable", "tall"]}, {"answer": "tangled", "hint": "synonyms for tangled", "clues": ["tortuous", "Byzantine", "knotty", "involved", "convoluted", "tangled"]}, {"answer": "tangy", "hint": "synonyms for tangy", "clues": ["lemony", "tart", "sourish", "lemonlike", "tangy"]}, {"answer": "tapering", "hint": "synonyms for tapering", "clues": ["narrowing", "tapering off", "dwindling", "tapered", "tapering"]}, {"answer": "tart", "hint": "synonyms for tart", "clues": ["lemonlike", "sourish", "lemony", "tangy", "sharp-worded", "sharp", "tart"]}, {"answer": "tatterdemalion", "hint": "synonyms for tatterdemalion", "clues": ["tattered", "dilapidated", "tumble-down", "broken-down", "ramshackle", "derelict", "bedraggled", "tatterdemalion"]}, {"answer": "tatty", "hint": "synonyms for tatty", "clues": ["meretricious", "flash", "tacky", "moth-eaten", "cheap", "tawdry", "gimcrack", "loud", "trashy", "garish", "brassy", "ratty", "shabby", "gaudy", "tatty"]}, {"answer": "taunting", "hint": "synonyms for taunting", "clues": ["mocking", "jeering", "derisive", "gibelike", "taunting"]}, {"answer": "tawdry", "hint": "synonyms for tawdry", "clues": ["cheapjack", "meretricious", "flash", "tacky", "tatty", "cheap", "gimcrack", "loud", "trashy", "garish", "brassy", "shoddy", "gaudy", "tawdry"]}, {"answer": "tearaway", "hint": "synonyms for tearaway", "clues": ["impulsive", "hotheaded", "brainish", "madcap", "impetuous", "tearaway"]}, {"answer": "tearful", "hint": "synonyms for tearful", "clues": ["dolourous", "weeping", "lachrymose", "tearful"]}, {"answer": "tearing", "hint": "synonyms for tearing", "clues": ["trigger-happy", "fierce", "violent", "vehement", "tearing"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["nettlesome", "pestiferous", "annoying", "quizzical", "pesky", "plaguy", "mocking", "irritating", "pestering", "vexing", "bothersome", "galling", "vexatious", "teasing"]}, {"answer": "techy", "hint": "synonyms for techy", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "tetchy", "cranky", "pettish", "peevish", "peckish", "petulant"]}, {"answer": "tedious", "hint": "synonyms for tedious", "clues": ["boring", "wordy", "slow", "verbose", "windy", "dull", "long-winded", "irksome", "wearisome", "deadening", "tiresome", "ho-hum", "tedious"]}, {"answer": "teensy", "hint": "synonyms for teensy", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy"]}, {"answer": "teensy-weensy", "hint": "synonyms for teensy-weensy", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teeny-weeny"]}, {"answer": "teentsy", "hint": "synonyms for teentsy", "clues": ["itsy-bitsy", "teeny", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy", "teentsy"]}, {"answer": "teeny", "hint": "synonyms for teeny", "clues": ["itsy-bitsy", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy", "teeny"]}, {"answer": "teeny-weeny", "hint": "synonyms for teeny-weeny", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["cogent", "telltale", "revealing", "weighty", "impressive", "telling"]}, {"answer": "tempest-swept", "hint": "synonyms for tempest-swept", "clues": ["tempest-tost", "buffeted", "tempest-tossed", "storm-tossed", "tempest-swept"]}, {"answer": "tempest-tossed", "hint": "synonyms for tempest-tossed", "clues": ["tempest-swept", "buffeted", "tempest-tost", "storm-tossed", "tempest-tossed"]}, {"answer": "tempest-tost", "hint": "synonyms for tempest-tost", "clues": ["tempest-swept", "buffeted", "tempest-tossed", "storm-tossed", "tempest-tost"]}, {"answer": "tempestuous", "hint": "synonyms for tempestuous", "clues": ["raging", "angry", "wild", "furious", "stormy", "tempestuous"]}, {"answer": "tempting", "hint": "synonyms for tempting", "clues": ["alluring", "tantalising", "beguiling", "enticing", "tempting"]}, {"answer": "tenacious", "hint": "synonyms for tenacious", "clues": ["unyielding", "dour", "coherent", "dogged", "recollective", "long", "pertinacious", "retentive", "persistent", "tenacious"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["lovesome", "sensitive", "crank", "sore", "raw", "fond", "tippy", "affectionate", "warm", "untoughened", "tender"]}, {"answer": "tending", "hint": "synonyms for tending", "clues": ["disposed", "given", "apt", "minded", "tending"]}, {"answer": "tensile", "hint": "synonyms for tensile", "clues": ["pliant", "tractile", "pliable", "malleable", "ductile", "tensile"]}, {"answer": "tentative", "hint": "synonyms for tentative", "clues": ["provisionary", "doubtful", "probationary", "tentative"]}, {"answer": "tenuous", "hint": "synonyms for tenuous", "clues": ["flimsy", "slight", "fragile", "thin", "tenuous"]}, {"answer": "terminated", "hint": "synonyms for terminated", "clues": ["complete", "concluded", "ended", "over", "all over", "terminated"]}, {"answer": "terrene", "hint": "synonyms for terrene", "clues": ["terrestrial", "tellurian", "mundane", "telluric", "terrene"]}, {"answer": "terrestrial", "hint": "synonyms for terrestrial", "clues": ["planetary", "telluric", "tellurian", "sublunar", "mundane", "terrene", "terrestrial"]}, {"answer": "terrible", "hint": "synonyms for terrible", "clues": ["dreaded", "direful", "fearsome", "severe", "painful", "awful", "frightening", "abominable", "dread", "horrendous", "unspeakable", "fearful", "frightful", "dreadful", "horrific", "dire", "tremendous", "atrocious", "wicked", "terrible"]}, {"answer": "terrific", "hint": "synonyms for terrific", "clues": ["marvelous", "grand", "wonderful", "wondrous", "fantastic", "howling", "terrifying", "tremendous", "rattling", "terrific"]}, {"answer": "terrified", "hint": "synonyms for terrified", "clues": ["panicked", "frightened", "panic-stricken", "panic-struck", "panicky", "terrified"]}, {"answer": "tested", "hint": "synonyms for tested", "clues": ["time-tested", "well-tried", "tried", "tried and true", "tested"]}, {"answer": "testy", "hint": "synonyms for testy", "clues": ["irritable", "fractious", "scratchy", "nettlesome", "tetchy", "cranky", "pettish", "peevish", "peckish", "petulant", "testy"]}, {"answer": "tetchy", "hint": "synonyms for tetchy", "clues": ["irritable", "fractious", "scratchy", "testy", "nettlesome", "cranky", "techy", "pettish", "peevish", "peckish", "petulant"]}, {"answer": "thankless", "hint": "synonyms for thankless", "clues": ["ungrateful", "unappreciated", "unthankful", "ungratifying", "thankless"]}, {"answer": "therapeutic", "hint": "synonyms for therapeutic", "clues": ["healing", "therapeutical", "remedial", "curative", "sanative", "alterative"]}, {"answer": "thick", "hint": "synonyms for thick", "clues": ["wooden-headed", "blockheaded", "buddy-buddy", "dense", "fatheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thickset", "deep", "heavyset", "slurred", "duncish", "compact", "stocky", "chummy", "thick-skulled", "thick"]}, {"answer": "thick-skulled", "hint": "synonyms for thick-skulled", "clues": ["blockheaded", "fatheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled"]}, {"answer": "thickheaded", "hint": "synonyms for thickheaded", "clues": ["blockheaded", "fatheaded", "boneheaded", "loggerheaded", "duncical", "thick", "duncish", "wooden-headed", "thick-skulled", "thickheaded"]}, {"answer": "thickset", "hint": "synonyms for thickset", "clues": ["thick", "heavyset", "stocky", "compact", "thickset"]}, {"answer": "thin", "hint": "synonyms for thin", "clues": ["flimsy", "slight", "sparse", "tenuous", "lean", "fragile", "slender", "thin"]}, {"answer": "thorny", "hint": "synonyms for thorny", "clues": ["bristly", "spiny", "setaceous", "prickly", "burred", "setose", "briery", "briary", "bristled", "barbellate", "barbed", "burry", "thorny"]}, {"answer": "thoroughgoing", "hint": "synonyms for thoroughgoing", "clues": ["consummate", "double-dyed", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "exhaustive", "unadulterated", "complete", "utter", "pure", "stark", "thorough", "thoroughgoing"]}, {"answer": "thoughtful", "hint": "synonyms for thoughtful", "clues": ["attentive", "paying attention", "heedful", "serious-minded", "thoughtful"]}, {"answer": "thousand", "hint": "synonyms for thousand", "clues": ["k", "m", "one thousand", "1000", "thousand"]}, {"answer": "threadbare", "hint": "synonyms for threadbare", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "commonplace", "trite", "stock", "well-worn", "banal", "shopworn", "threadbare"]}, {"answer": "threadlike", "hint": "synonyms for threadlike", "clues": ["filamentlike", "filamentous", "filiform", "thready", "threadlike"]}, {"answer": "thready", "hint": "synonyms for thready", "clues": ["threadlike", "ropy", "filiform", "stringy", "filamentlike", "filamentous", "thready"]}, {"answer": "threatening", "hint": "synonyms for threatening", "clues": ["forbidding", "ominous", "minatory", "menacing", "heavy", "minacious", "sinister", "lowering", "sullen", "baleful", "threatening"]}, {"answer": "three-dimensional", "hint": "synonyms for three-dimensional", "clues": ["3-dimensional", "cubic", "third-dimensional", "three-d"]}, {"answer": "three-fold", "hint": "synonyms for three-fold", "clues": ["treble", "triple", "double", "twofold", "threefold", "dual"]}, {"answer": "threefold", "hint": "synonyms for threefold", "clues": ["treble", "triple", "double", "twofold", "three-fold", "dual"]}, {"answer": "threepenny", "hint": "synonyms for threepenny", "clues": ["sixpenny", "two-a-penny", "twopenny", "tuppeny", "twopenny-halfpenny", "threepenny"]}, {"answer": "thriving", "hint": "synonyms for thriving", "clues": ["booming", "flourishing", "prospering", "roaring", "prosperous", "palmy", "thriving"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["banging", "walloping", "whopping", "humongous", "thumping"]}, {"answer": "thunderstruck", "hint": "synonyms for thunderstruck", "clues": ["dumbstricken", "dumbfounded", "stupefied", "dumbstruck", "flabbergasted", "thunderstruck"]}, {"answer": "thwarted", "hint": "synonyms for thwarted", "clues": ["frustrated", "foiled", "disappointed", "discomfited", "defeated", "thwarted"]}, {"answer": "tidy", "hint": "synonyms for tidy", "clues": ["hefty", "healthy", "sizeable", "kempt", "goodish", "goodly", "respectable", "tidy"]}, {"answer": "tied", "hint": "synonyms for tied", "clues": ["trussed", "fastened", "laced", "level", "even", "tied"]}, {"answer": "tight", "hint": "synonyms for tight", "clues": ["compressed", "pie-eyed", "loaded", "plastered", "squiffy", "blind drunk", "pissed", "rigorous", "mean", "soused", "sozzled", "miserly", "besotted", "cockeyed", "soaked", "fuddled", "slopped", "stiff", "sloshed", "stringent", "blotto", "close", "nasty", "pixilated", "smashed", "crocked", "taut", "wet", "mingy", "tight"]}, {"answer": "tight-laced", "hint": "synonyms for tight-laced", "clues": ["square-toed", "prudish", "priggish", "straightlaced", "victorian", "prissy", "puritanical", "prim", "tight-laced"]}, {"answer": "tightlipped", "hint": "synonyms for tightlipped", "clues": ["closemouthed", "closelipped", "secretive", "close", "tightlipped"]}, {"answer": "tilted", "hint": "synonyms for tilted", "clues": ["tipped", "leaning", "atilt", "canted", "tilted"]}, {"answer": "timeworn", "hint": "synonyms for timeworn", "clues": ["hackneyed", "old-hat", "tired", "commonplace", "trite", "stock", "well-worn", "banal", "shopworn", "threadbare", "timeworn"]}, {"answer": "timid", "hint": "synonyms for timid", "clues": ["fainthearted", "faint", "diffident", "unsure", "shy", "timid"]}, {"answer": "tinny", "hint": "synonyms for tinny", "clues": ["cheesy", "bum", "punk", "crummy", "cheap", "chintzy", "sleazy", "tinny"]}, {"answer": "tiny", "hint": "synonyms for tiny", "clues": ["bantam", "petite", "midget", "flyspeck", "lilliputian", "diminutive", "tiny"]}, {"answer": "tipped", "hint": "synonyms for tipped", "clues": ["leaning", "atilt", "canted", "tilted", "tipped"]}, {"answer": "tiptop", "hint": "synonyms for tiptop", "clues": ["topnotch", "first-rate", "tops", "ace", "crack", "A-one", "super", "tiptop"]}, {"answer": "tired", "hint": "synonyms for tired", "clues": ["hackneyed", "old-hat", "timeworn", "commonplace", "trite", "stock", "well-worn", "banal", "shopworn", "threadbare", "tired"]}, {"answer": "tired_of", "hint": "synonyms for tired of", "clues": ["fed up", "sick of", "disgusted", "sick", "tired of"]}, {"answer": "tireless", "hint": "synonyms for tireless", "clues": ["industrious", "indefatigable", "unwearying", "unflagging", "untiring", "hardworking", "tireless"]}, {"answer": "tiresome", "hint": "synonyms for tiresome", "clues": ["boring", "tedious", "slow", "dull", "irksome", "wearisome", "deadening", "ho-hum", "tiresome"]}, {"answer": "toadyish", "hint": "synonyms for toadyish", "clues": ["fawning", "bootlicking", "sycophantic", "obsequious", "toadyish"]}, {"answer": "togged_up", "hint": "synonyms for togged up", "clues": ["spiffed up", "dressed", "dressed to the nines", "dressed to kill", "spruced up", "dolled up", "dressed-up", "togged up"]}, {"answer": "toilsome", "hint": "synonyms for toilsome", "clues": ["punishing", "hard", "backbreaking", "gruelling", "heavy", "laborious", "arduous", "operose", "toilsome"]}, {"answer": "tolerant", "hint": "synonyms for tolerant", "clues": ["large-minded", "patient of", "kind", "liberal", "resistant", "broad", "tolerant"]}, {"answer": "tonic", "hint": "synonyms for tonic", "clues": ["refreshing", "bracing", "accented", "fresh", "brisk", "tonal", "refreshful", "tonic"]}, {"answer": "too-generous", "hint": "synonyms for too-generous", "clues": ["unstinted", "unsparing", "overgenerous", "lavish", "munificent", "unstinting", "too-generous"]}, {"answer": "too_big_for_one's_breeches", "hint": "synonyms for too big for one's breeches", "clues": ["bigheaded", "snotty", "persnickety", "snooty", "snot-nosed", "uppish", "stuck-up", "too big for one's breeches"]}, {"answer": "toothed", "hint": "synonyms for toothed", "clues": ["erose", "serrate", "jagged", "saw-toothed", "notched", "jaggy", "toothed"]}, {"answer": "toothsome", "hint": "synonyms for toothsome", "clues": ["palatable", "delectable", "voluptuous", "red-hot", "juicy", "luscious", "delicious", "pleasant-tasting", "scrumptious", "yummy", "toothsome"]}, {"answer": "top-notch", "hint": "synonyms for top-notch", "clues": ["topnotch", "first-rate", "tops", "tiptop", "ace", "crack", "A-one", "super"]}, {"answer": "topnotch", "hint": "synonyms for topnotch", "clues": ["tops", "first-rate", "tiptop", "top-notch", "ace", "crack", "A-one", "super"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["topnotch", "first-rate", "tiptop", "ace", "crack", "A-one", "super", "tops"]}, {"answer": "topsy-turvy", "hint": "synonyms for topsy-turvy", "clues": ["hugger-mugger", "jumbled", "disorderly", "higgledy-piggledy", "topsy-turvy"]}, {"answer": "tormented", "hint": "synonyms for tormented", "clues": ["hagridden", "anguished", "tortured", "tormented"]}, {"answer": "torpid", "hint": "synonyms for torpid", "clues": ["soggy", "sluggish", "hibernating", "inert", "dormant", "torpid"]}, {"answer": "torrid", "hint": "synonyms for torrid", "clues": ["fervent", "impassioned", "fervid", "fiery", "ardent", "perfervid", "torrid"]}, {"answer": "tortuous", "hint": "synonyms for tortuous", "clues": ["Byzantine", "tangled", "winding", "convoluted", "twisting", "voluminous", "knotty", "involved", "twisty", "tortuous"]}, {"answer": "torturesome", "hint": "synonyms for torturesome", "clues": ["excruciating", "agonising", "torturing", "harrowing", "torturous", "torturesome"]}, {"answer": "torturing", "hint": "synonyms for torturing", "clues": ["torturesome", "agonising", "excruciating", "harrowing", "torturous", "torturing"]}, {"answer": "torturous", "hint": "synonyms for torturous", "clues": ["torturesome", "agonising", "excruciating", "torturing", "harrowing", "torturous"]}, {"answer": "touched", "hint": "synonyms for touched", "clues": ["stirred", "fey", "affected", "moved", "touched"]}, {"answer": "touchy", "hint": "synonyms for touchy", "clues": ["huffy", "delicate", "ticklish", "thin-skinned", "feisty", "touchy"]}, {"answer": "tough", "hint": "synonyms for tough", "clues": ["sturdy", "hard", "rugged", "elusive", "ruffianly", "baffling", "toughened", "bad", "knotty", "problematic", "tough"]}, {"answer": "toughened", "hint": "synonyms for toughened", "clues": ["tempered", "treated", "tough", "hardened", "toughened"]}, {"answer": "tousled", "hint": "synonyms for tousled", "clues": ["dishevelled", "rumpled", "frowzled", "tousled"]}, {"answer": "trackless", "hint": "synonyms for trackless", "clues": ["roadless", "untracked", "pathless", "untrodden", "untrod", "trackless"]}, {"answer": "tractile", "hint": "synonyms for tractile", "clues": ["pliant", "tensile", "pliable", "malleable", "ductile", "tractile"]}, {"answer": "traitorous", "hint": "synonyms for traitorous", "clues": ["unfaithful", "treasonous", "treasonable", "faithless", "traitorous"]}, {"answer": "tranquil", "hint": "synonyms for tranquil", "clues": ["still", "calm", "smooth", "placid", "unagitated", "quiet", "unruffled", "serene", "tranquil"]}, {"answer": "tranquilising", "hint": "synonyms for tranquilising", "clues": ["ataraxic", "tranquillising", "sedative", "ataractic"]}, {"answer": "tranquilizing", "hint": "synonyms for tranquilizing", "clues": ["ataraxic", "tranquillising", "sedative", "ataractic"]}, {"answer": "tranquillising", "hint": "synonyms for tranquillising", "clues": ["ataraxic", "tranquilising", "sedative", "ataractic"]}, {"answer": "tranquillizing", "hint": "synonyms for tranquillizing", "clues": ["ataraxic", "tranquilising", "sedative", "ataractic"]}, {"answer": "transferable", "hint": "synonyms for transferable", "clues": ["transferrable", "negotiable", "transportable", "movable", "assignable", "conveyable"]}, {"answer": "transferrable", "hint": "synonyms for transferrable", "clues": ["transferable", "negotiable", "transportable", "movable", "assignable", "conveyable"]}, {"answer": "transfixed", "hint": "synonyms for transfixed", "clues": ["mesmerized", "fascinated", "hypnotized", "spell-bound", "transfixed"]}, {"answer": "transient", "hint": "synonyms for transient", "clues": ["transitory", "ephemeral", "passing", "fugacious", "short-lived", "transeunt"]}, {"answer": "transitory", "hint": "synonyms for transitory", "clues": ["ephemeral", "passing", "fugacious", "transient", "short-lived", "transitory"]}, {"answer": "transmissible", "hint": "synonyms for transmissible", "clues": ["ancestral", "familial", "contagious", "genetic", "hereditary", "transmittable", "inherited", "patrimonial", "transmitted", "communicable", "contractable", "catching", "transmissible"]}, {"answer": "transmittable", "hint": "synonyms for transmittable", "clues": ["transmissible", "communicable", "contagious", "contractable", "catching", "transmittable"]}, {"answer": "transmitted", "hint": "synonyms for transmitted", "clues": ["transmissible", "familial", "genetic", "hereditary", "inherited", "transmitted"]}, {"answer": "transparent", "hint": "synonyms for transparent", "clues": ["crystal clear", "lucid", "sheer", "filmy", "vapourous", "limpid", "crystalline", "gossamer", "gauzy", "gauze-like", "cobwebby", "diaphanous", "pellucid", "see-through", "guileless", "transparent"]}, {"answer": "trashy", "hint": "synonyms for trashy", "clues": ["meretricious", "flash", "tacky", "tatty", "cheap", "tawdry", "gimcrack", "loud", "garish", "brassy", "rubbishy", "gaudy", "trashy"]}, {"answer": "treasonable", "hint": "synonyms for treasonable", "clues": ["unfaithful", "treasonous", "traitorous", "faithless", "treasonable"]}, {"answer": "treasonous", "hint": "synonyms for treasonous", "clues": ["unfaithful", "treasonable", "traitorous", "faithless", "treasonous"]}, {"answer": "treble", "hint": "synonyms for treble", "clues": ["triple", "double", "twofold", "ternary", "threefold", "soprano", "dual", "treble"]}, {"answer": "tree-shaped", "hint": "synonyms for tree-shaped", "clues": ["arboreous", "arborescent", "dendroid", "treelike", "arboreal", "arboriform", "arboresque", "dendriform", "tree-shaped"]}, {"answer": "treelike", "hint": "synonyms for treelike", "clues": ["arboreous", "arborescent", "dendroid", "arboreal", "arboriform", "arboresque", "dendriform", "tree-shaped", "treelike"]}, {"answer": "tremendous", "hint": "synonyms for tremendous", "clues": ["marvelous", "grand", "wonderful", "wondrous", "frightful", "fantastic", "howling", "enormous", "terrible", "awful", "terrific", "rattling", "tremendous"]}, {"answer": "trenchant", "hint": "synonyms for trenchant", "clues": ["clear-cut", "distinct", "hard-hitting", "searching", "trenchant"]}, {"answer": "tributary", "hint": "synonyms for tributary", "clues": ["contributing", "contributory", "contributive", "conducive", "tributary"]}, {"answer": "tricksy", "hint": "synonyms for tricksy", "clues": ["guileful", "wily", "dodgy", "foxy", "sly", "tricky", "slick", "knavish", "crafty", "cunning"]}, {"answer": "tricky", "hint": "synonyms for tricky", "clues": ["guileful", "wily", "dodgy", "tricksy", "slippery", "foxy", "sly", "slick", "catchy", "knavish", "crafty", "cunning"]}, {"answer": "tried", "hint": "synonyms for tried", "clues": ["time-tested", "well-tried", "tested", "tried and true", "tried"]}, {"answer": "trigger-happy", "hint": "synonyms for trigger-happy", "clues": ["fierce", "violent", "vehement", "tearing", "trigger-happy"]}, {"answer": "trim", "hint": "synonyms for trim", "clues": ["tailored", "trig", "well-kept", "shipshape", "clean-cut", "spare", "trim"]}, {"answer": "triple", "hint": "synonyms for triple", "clues": ["treble", "three-fold", "ternary", "triplex"]}, {"answer": "tripping", "hint": "synonyms for tripping", "clues": ["lightsome", "light", "swingy", "lilting", "swinging", "tripping"]}, {"answer": "trite", "hint": "synonyms for trite", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "commonplace", "well-worn", "stock", "banal", "shopworn", "threadbare", "trite"]}, {"answer": "triumphal", "hint": "synonyms for triumphal", "clues": ["exultant", "exulting", "rejoicing", "prideful", "jubilant", "triumphant", "triumphal"]}, {"answer": "triumphant", "hint": "synonyms for triumphant", "clues": ["victorious", "exultant", "exulting", "rejoicing", "prideful", "triumphal", "jubilant", "triumphant"]}, {"answer": "trivial", "hint": "synonyms for trivial", "clues": ["piffling", "niggling", "fiddling", "petty", "footling", "superficial", "picayune", "lilliputian", "little", "trivial"]}, {"answer": "troubled", "hint": "synonyms for troubled", "clues": ["tumultuous", "turbulent", "riotous", "disruptive", "troubled"]}, {"answer": "troubling", "hint": "synonyms for troubling", "clues": ["perturbing", "disturbing", "worrying", "worrisome", "distressful", "distressing", "troubling"]}, {"answer": "true", "hint": "synonyms for true", "clues": ["straight", "unfeigned", "lawful", "dead on target", "truthful", "on-key", "honest", "genuine", "dependable", "rightful", "reliable", "true"]}, {"answer": "tubby", "hint": "synonyms for tubby", "clues": ["pudgy", "roly-poly", "dumpy", "podgy", "tubby"]}, {"answer": "tube-shaped", "hint": "synonyms for tube-shaped", "clues": ["cannular", "tubular", "tubelike", "vasiform", "tube-shaped"]}, {"answer": "tubelike", "hint": "synonyms for tubelike", "clues": ["cannular", "tubular", "vasiform", "tube-shaped", "tubelike"]}, {"answer": "tubular", "hint": "synonyms for tubular", "clues": ["cannular", "tubelike", "vasiform", "tube-shaped", "tubular"]}, {"answer": "tufted", "hint": "synonyms for tufted", "clues": ["crested", "caespitose", "topknotted", "tufted"]}, {"answer": "tumble-down", "hint": "synonyms for tumble-down", "clues": ["tatterdemalion", "dilapidated", "broken-down", "ramshackle", "derelict", "bedraggled", "tumble-down"]}, {"answer": "tumescent", "hint": "synonyms for tumescent", "clues": ["intumescent", "tumid", "turgid", "puffy"]}, {"answer": "tumid", "hint": "synonyms for tumid", "clues": ["intumescent", "orotund", "bombastic", "erect", "declamatory", "turgid", "large", "puffy", "tumid"]}, {"answer": "tumultuous", "hint": "synonyms for tumultuous", "clues": ["troubled", "riotous", "turbulent", "disruptive", "tumultuous"]}, {"answer": "tuppeny", "hint": "synonyms for tuppeny", "clues": ["threepenny", "two-a-penny", "twopenny", "sixpenny", "twopenny-halfpenny", "tuppeny"]}, {"answer": "turbid", "hint": "synonyms for turbid", "clues": ["muddy", "murky", "mirky", "cloudy", "turbid"]}, {"answer": "turbinate", "hint": "synonyms for turbinate", "clues": ["coiling", "helical", "volute", "spiraling", "whorled", "turbinate"]}, {"answer": "turbulent", "hint": "synonyms for turbulent", "clues": ["troubled", "tumultuous", "roily", "roiling", "churning", "disruptive", "roiled", "riotous", "turbulent"]}, {"answer": "turgid", "hint": "synonyms for turgid", "clues": ["intumescent", "orotund", "bombastic", "declamatory", "tumid", "large", "puffy", "turgid"]}, {"answer": "turned_on", "hint": "synonyms for turned on", "clues": ["horny", "randy", "aroused", "steamy", "ruttish", "turned on"]}, {"answer": "twee", "hint": "synonyms for twee", "clues": ["prim", "niminy-piminy", "dainty", "mincing", "twee"]}, {"answer": "tweedy", "hint": "synonyms for tweedy", "clues": ["nubby", "slubbed", "homespun", "tweedy"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["tortuous", "winding", "voluminous", "twisty", "twisting"]}, {"answer": "twisty", "hint": "synonyms for twisty", "clues": ["tortuous", "winding", "voluminous", "twisting", "twisty"]}, {"answer": "two-a-penny", "hint": "synonyms for two-a-penny", "clues": ["sixpenny", "threepenny", "twopenny", "tuppeny", "twopenny-halfpenny", "two-a-penny"]}, {"answer": "two-faced", "hint": "synonyms for two-faced", "clues": ["Janus-faced", "double-dealing", "deceitful", "ambidextrous", "double-faced", "double-tongued", "duplicitous", "two-faced"]}, {"answer": "two-fold", "hint": "synonyms for two-fold", "clues": ["treble", "double", "twofold", "threefold", "dual"]}, {"answer": "two-way", "hint": "synonyms for two-way", "clues": ["bipartite", "bipartizan", "two-part", "two-way"]}, {"answer": "twofold", "hint": "synonyms for twofold", "clues": ["treble", "double", "threefold", "two-fold", "dual"]}, {"answer": "twopenny", "hint": "synonyms for twopenny", "clues": ["sixpenny", "threepenny", "two-a-penny", "tuppeny", "twopenny-halfpenny", "twopenny"]}, {"answer": "twopenny-halfpenny", "hint": "synonyms for twopenny-halfpenny", "clues": ["threepenny", "two-a-penny", "twopenny", "tuppeny", "sixpenny", "twopenny-halfpenny"]}, {"answer": "tyrannic", "hint": "synonyms for tyrannic", "clues": ["authoritarian", "autocratic", "despotic", "tyrannical", "dictatorial"]}, {"answer": "tyrannical", "hint": "synonyms for tyrannical", "clues": ["authoritarian", "autocratic", "despotic", "tyrannic", "tyrannous", "dictatorial", "oppressive"]}, {"answer": "ugly", "hint": "synonyms for ugly", "clues": ["frightful", "despicable", "worthless", "wretched", "horrifying", "horrible", "surly", "vile", "atrocious", "unworthy", "slimy", "ugly"]}, {"answer": "ulterior", "hint": "synonyms for ulterior", "clues": ["later", "subterranean", "posterior", "subterraneous", "ulterior"]}, {"answer": "ultranationalistic", "hint": "synonyms for ultranationalistic", "clues": ["jingoistic", "nationalistic", "flag-waving", "superpatriotic", "chauvinistic", "ultranationalistic"]}, {"answer": "umbrageous", "hint": "synonyms for umbrageous", "clues": ["shadowed", "incensed", "shady", "shadowy", "outraged", "indignant", "umbrageous"]}, {"answer": "unacceptable", "hint": "synonyms for unacceptable", "clues": ["unsufferable", "unaccepted", "impossible", "unacceptable"]}, {"answer": "unadulterated", "hint": "synonyms for unadulterated", "clues": ["consummate", "double-dyed", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "complete", "thoroughgoing", "utter", "pure", "stark", "unadulterated"]}, {"answer": "unanimous", "hint": "synonyms for unanimous", "clues": ["consentient", "solid", "whole", "consentaneous", "unanimous"]}, {"answer": "unappareled", "hint": "synonyms for unappareled", "clues": ["unattired", "undressed", "ungarmented", "unclad", "ungarbed", "unappareled"]}, {"answer": "unappeasable", "hint": "synonyms for unappeasable", "clues": ["relentless", "grim", "inexorable", "unforgiving", "stern", "unrelenting", "unappeasable"]}, {"answer": "unappreciated", "hint": "synonyms for unappreciated", "clues": ["unvalued", "ungratifying", "unsung", "thankless", "unappreciated"]}, {"answer": "unassailable", "hint": "synonyms for unassailable", "clues": ["watertight", "secure", "impregnable", "inviolable", "strong", "unattackable", "untouchable", "unshakable", "bulletproof", "unassailable"]}, {"answer": "unattackable", "hint": "synonyms for unattackable", "clues": ["secure", "impregnable", "inviolable", "strong", "unassailable", "unattackable"]}, {"answer": "unattired", "hint": "synonyms for unattired", "clues": ["undressed", "ungarmented", "unclad", "unappareled", "ungarbed", "unattired"]}, {"answer": "unbalanced", "hint": "synonyms for unbalanced", "clues": ["brainsick", "unhinged", "demented", "disturbed", "mad", "crazy", "sick", "imbalanced", "unbalanced"]}, {"answer": "unbarred", "hint": "synonyms for unbarred", "clues": ["unlocked", "unlatched", "unsecured", "unbolted", "unbarred"]}, {"answer": "unbecoming", "hint": "synonyms for unbecoming", "clues": ["untoward", "indecorous", "unseemly", "uncomely", "indecent", "unbecoming"]}, {"answer": "unbelievable", "hint": "synonyms for unbelievable", "clues": ["incredible", "unconvincing", "improbable", "unlikely", "unbelievable"]}, {"answer": "unbelieving", "hint": "synonyms for unbelieving", "clues": ["nescient", "disbelieving", "atheistical", "sceptical", "unbelieving"]}, {"answer": "unbendable", "hint": "synonyms for unbendable", "clues": ["unwavering", "steady", "unfaltering", "steadfast", "unshakable", "stiff", "firm", "unbendable"]}, {"answer": "unbodied", "hint": "synonyms for unbodied", "clues": ["bodiless", "unembodied", "disembodied", "discorporate"]}, {"answer": "unbolted", "hint": "synonyms for unbolted", "clues": ["unlocked", "unlatched", "unsecured", "unbarred", "unbolted"]}, {"answer": "uncanny", "hint": "synonyms for uncanny", "clues": ["preternatural", "eldritch", "weird", "unearthly", "uncanny"]}, {"answer": "uncaring", "hint": "synonyms for uncaring", "clues": ["unthinking", "thoughtless", "detached", "unaffectionate", "uncaring"]}, {"answer": "unceasing", "hint": "synonyms for unceasing", "clues": ["eonian", "perpetual", "ceaseless", "unremitting", "incessant", "unending", "everlasting", "never-ending", "constant", "eternal", "ageless", "unceasing"]}, {"answer": "uncertain", "hint": "synonyms for uncertain", "clues": ["unsettled", "unsealed", "unsure", "incertain", "changeable"]}, {"answer": "uncivilised", "hint": "synonyms for uncivilised", "clues": ["uncivilized", "barbaric", "wild", "barbarian", "savage"]}, {"answer": "uncivilized", "hint": "synonyms for uncivilized", "clues": ["uncivilised", "barbaric", "wild", "barbarian", "savage"]}, {"answer": "unclad", "hint": "synonyms for unclad", "clues": ["unattired", "undressed", "ungarmented", "unappareled", "ungarbed", "unclad"]}, {"answer": "unclear", "hint": "synonyms for unclear", "clues": ["unreadable", "indecipherable", "ill-defined", "unclear"]}, {"answer": "unclouded", "hint": "synonyms for unclouded", "clues": ["cloudless", "light", "clear", "clean", "unclouded"]}, {"answer": "uncomely", "hint": "synonyms for uncomely", "clues": ["untoward", "indecorous", "unbecoming", "unseemly", "indecent", "uncomely"]}, {"answer": "uncomplicated", "hint": "synonyms for uncomplicated", "clues": ["unsophisticated", "simple", "unproblematic", "elementary", "uncomplicated"]}, {"answer": "unconditional", "hint": "synonyms for unconditional", "clues": ["categorical", "flat", "unconditioned", "unconditional"]}, {"answer": "unconnected", "hint": "synonyms for unconnected", "clues": ["garbled", "illogical", "disjointed", "scattered", "confused", "disconnected", "disordered", "unconnected"]}, {"answer": "unconscionable", "hint": "synonyms for unconscionable", "clues": ["steep", "outrageous", "usurious", "extortionate", "conscienceless", "exorbitant", "unconscionable"]}, {"answer": "uncontrollable", "hint": "synonyms for uncontrollable", "clues": ["uncorrectable", "indocile", "unruly", "ungovernable", "irrepressible", "unmanageable", "uncontrollable"]}, {"answer": "unconvincing", "hint": "synonyms for unconvincing", "clues": ["flimsy", "unlikely", "unbelievable", "improbable", "unconvincing"]}, {"answer": "uncounted", "hint": "synonyms for uncounted", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "infinite", "unnumbered", "innumerous", "myriad", "uncounted"]}, {"answer": "uncouth", "hint": "synonyms for uncouth", "clues": ["coarse", "vulgar", "common", "rough-cut", "uncouth"]}, {"answer": "unctuous", "hint": "synonyms for unctuous", "clues": ["oily", "buttery", "smarmy", "soapy", "oleaginous", "fulsome", "unctuous"]}, {"answer": "uncultivated", "hint": "synonyms for uncultivated", "clues": ["artless", "lowbrow", "uncultured", "uncultivated"]}, {"answer": "uncut", "hint": "synonyms for uncut", "clues": ["full-length", "unmown", "untrimmed", "rough", "uncut"]}, {"answer": "undecided", "hint": "synonyms for undecided", "clues": ["undetermined", "on the fence", "open", "unresolved", "undecided"]}, {"answer": "under_the_weather", "hint": "synonyms for under the weather", "clues": ["sickly", "indisposed", "ailing", "poorly", "seedy", "peaked", "unwell", "under the weather"]}, {"answer": "underbred", "hint": "synonyms for underbred", "clues": ["ill-bred", "bounderish", "yokelish", "lowbred", "rude", "underbred"]}, {"answer": "undercover", "hint": "synonyms for undercover", "clues": ["hush-hush", "hole-and-corner", "secret", "underground", "clandestine", "surreptitious", "cloak-and-dagger", "hugger-mugger", "undercover"]}, {"answer": "underground", "hint": "synonyms for underground", "clues": ["hush-hush", "undercover", "hole-and-corner", "clandestine", "belowground", "surreptitious", "cloak-and-dagger", "hugger-mugger", "secret", "underground"]}, {"answer": "underlying", "hint": "synonyms for underlying", "clues": ["inherent", "rudimentary", "implicit in", "fundamental", "underlying"]}, {"answer": "understandable", "hint": "synonyms for understandable", "clues": ["intelligible", "apprehensible", "graspable", "perceivable", "understandable"]}, {"answer": "underwater", "hint": "synonyms for underwater", "clues": ["subaquatic", "submersed", "subaqueous", "underwater"]}, {"answer": "underweight", "hint": "synonyms for underweight", "clues": ["skinny", "weedy", "boney", "scraggy", "scrawny", "underweight"]}, {"answer": "undetermined", "hint": "synonyms for undetermined", "clues": ["undecided", "indeterminate", "open", "unresolved", "undetermined"]}, {"answer": "undirected", "hint": "synonyms for undirected", "clues": ["aimless", "adrift", "directionless", "planless", "rudderless", "afloat", "undirected"]}, {"answer": "undone", "hint": "synonyms for undone", "clues": ["sunk", "ruined", "done for", "unstuck", "washed-up", "undone"]}, {"answer": "undreamed", "hint": "synonyms for undreamed", "clues": ["undreamt of", "unimagined", "undreamt", "undreamed"]}, {"answer": "undreamed_of", "hint": "synonyms for undreamed of", "clues": ["unimagined", "undreamt of", "undreamt", "undreamed"]}, {"answer": "undreamt", "hint": "synonyms for undreamt", "clues": ["undreamt of", "unimagined", "undreamed", "undreamt"]}, {"answer": "undressed", "hint": "synonyms for undressed", "clues": ["unattired", "ungarmented", "unclad", "unappareled", "ungarbed", "undressed"]}, {"answer": "undue", "hint": "synonyms for undue", "clues": ["excessive", "unwarranted", "inordinate", "unjustified", "unreasonable", "undue"]}, {"answer": "unearthly", "hint": "synonyms for unearthly", "clues": ["eldritch", "weird", "spiritual", "uncanny", "unearthly"]}, {"answer": "uneasy", "hint": "synonyms for uneasy", "clues": ["unquiet", "queasy", "awkward", "nervous", "anxious", "restless", "ill at ease", "uneasy"]}, {"answer": "unembellished", "hint": "synonyms for unembellished", "clues": ["unornamented", "bare", "spare", "plain", "unembellished"]}, {"answer": "unembodied", "hint": "synonyms for unembodied", "clues": ["unbodied", "bodiless", "disembodied", "discorporate"]}, {"answer": "unending", "hint": "synonyms for unending", "clues": ["eonian", "everlasting", "ageless", "eternal", "perpetual", "unceasing", "unending"]}, {"answer": "unequaled", "hint": "synonyms for unequaled", "clues": ["alone", "unparalleled", "unequalled", "unique"]}, {"answer": "unequalled", "hint": "synonyms for unequalled", "clues": ["alone", "unparalleled", "unequaled", "unique"]}, {"answer": "uneven", "hint": "synonyms for uneven", "clues": ["scratchy", "odd", "mismatched", "spotty", "uneven"]}, {"answer": "unexpended", "hint": "synonyms for unexpended", "clues": ["odd", "left over", "left", "unspent", "remaining", "unexpended"]}, {"answer": "unexpressed", "hint": "synonyms for unexpressed", "clues": ["unvoiced", "unverbalized", "unuttered", "unstated", "unsaid", "unspoken", "unexpressed"]}, {"answer": "unexpressive", "hint": "synonyms for unexpressive", "clues": ["expressionless", "poker-faced", "deadpan", "impassive", "unexpressive"]}, {"answer": "unfaithful", "hint": "synonyms for unfaithful", "clues": ["treasonous", "treasonable", "traitorous", "faithless", "unfaithful"]}, {"answer": "unfaltering", "hint": "synonyms for unfaltering", "clues": ["unwavering", "steady", "unbendable", "steadfast", "unshakable", "stiff", "firm", "unfaltering"]}, {"answer": "unfearing", "hint": "synonyms for unfearing", "clues": ["dauntless", "intrepid", "fearless", "hardy", "brave", "audacious", "unfearing"]}, {"answer": "unflagging", "hint": "synonyms for unflagging", "clues": ["indefatigable", "unwearying", "unfailing", "tireless", "unflagging"]}, {"answer": "unfledged", "hint": "synonyms for unfledged", "clues": ["fledgeless", "unvaned", "immature", "callow", "fledgling", "unfledged"]}, {"answer": "unforgiving", "hint": "synonyms for unforgiving", "clues": ["relentless", "grim", "inexorable", "unrelenting", "stern", "unappeasable", "unforgiving"]}, {"answer": "unfounded", "hint": "synonyms for unfounded", "clues": ["baseless", "unwarranted", "groundless", "wild", "idle", "unfounded"]}, {"answer": "ungainly", "hint": "synonyms for ungainly", "clues": ["gawky", "unwieldy", "clunky", "awkward", "clumsy", "bunglesome", "ungainly"]}, {"answer": "ungarbed", "hint": "synonyms for ungarbed", "clues": ["unattired", "undressed", "ungarmented", "unclad", "unappareled", "ungarbed"]}, {"answer": "ungarmented", "hint": "synonyms for ungarmented", "clues": ["unattired", "undressed", "unclad", "unappareled", "ungarbed", "ungarmented"]}, {"answer": "unglamorous", "hint": "synonyms for unglamorous", "clues": ["unglamourous", "humdrum", "commonplace", "prosaic"]}, {"answer": "unglamourous", "hint": "synonyms for unglamourous", "clues": ["unglamorous", "humdrum", "commonplace", "prosaic"]}, {"answer": "ungoverned", "hint": "synonyms for ungoverned", "clues": ["undisciplined", "unchecked", "uncurbed", "unbridled", "ungoverned"]}, {"answer": "unhealthful", "hint": "synonyms for unhealthful", "clues": ["unsanitary", "insalubrious", "unhealthy", "unhealthful"]}, {"answer": "unhinged", "hint": "synonyms for unhinged", "clues": ["mad", "crazy", "brainsick", "demented", "disturbed", "sick", "unbalanced", "unhinged"]}, {"answer": "unholy", "hint": "synonyms for unholy", "clues": ["diabolic", "demonic", "satanic", "wicked", "fiendish", "infernal", "hellish", "sinful", "unhallowed", "unholy"]}, {"answer": "unhurt", "hint": "synonyms for unhurt", "clues": ["unharmed", "safe and sound", "whole", "unscathed", "unhurt"]}, {"answer": "unified", "hint": "synonyms for unified", "clues": ["incorporate", "co-ordinated", "merged", "interconnected", "integrated", "unified"]}, {"answer": "unimaginative", "hint": "synonyms for unimaginative", "clues": ["sterile", "uninventive", "stereotyped", "stereotypical", "uninspired", "unimaginative"]}, {"answer": "unimagined", "hint": "synonyms for unimagined", "clues": ["undreamt of", "undreamt", "undreamed", "unimagined"]}, {"answer": "unimpeachable", "hint": "synonyms for unimpeachable", "clues": ["unexceptionable", "inculpable", "blameless", "irreproachable", "unimpeachable"]}, {"answer": "unionised", "hint": "synonyms for unionised", "clues": ["unionized", "nonionic", "organized", "nonionised"]}, {"answer": "unionized", "hint": "synonyms for unionized", "clues": ["organized", "nonionic", "unionised", "nonionised"]}, {"answer": "unique", "hint": "synonyms for unique", "clues": ["unparalleled", "unequaled", "singular", "alone", "unique"]}, {"answer": "universal", "hint": "synonyms for universal", "clues": ["general", "oecumenical", "cosmopolitan", "worldwide", "universal"]}, {"answer": "unjustifiable", "hint": "synonyms for unjustifiable", "clues": ["insupportable", "indefensible", "unwarrantable", "unwarranted", "unjustifiable"]}, {"answer": "unknown", "hint": "synonyms for unknown", "clues": ["unnamed", "obscure", "unsung", "nameless", "strange", "unidentified", "unknown"]}, {"answer": "unlatched", "hint": "synonyms for unlatched", "clues": ["unbolted", "unlocked", "unsecured", "unbarred", "unlatched"]}, {"answer": "unlawful", "hint": "synonyms for unlawful", "clues": ["improper", "wrongful", "outlaw", "illicit", "illegitimate", "unconventional", "unlawful"]}, {"answer": "unlearned", "hint": "synonyms for unlearned", "clues": ["ignorant", "nescient", "unlettered", "unconditioned", "innate", "unlearned"]}, {"answer": "unlettered", "hint": "synonyms for unlettered", "clues": ["ignorant", "nescient", "analphabetic", "unlearned", "unlettered"]}, {"answer": "unlimited", "hint": "synonyms for unlimited", "clues": ["inexhaustible", "outright", "limitless", "straight-out", "unlimited"]}, {"answer": "unlocked", "hint": "synonyms for unlocked", "clues": ["unbolted", "unlatched", "unsecured", "unbarred", "unlocked"]}, {"answer": "unlucky", "hint": "synonyms for unlucky", "clues": ["luckless", "ill-starred", "ill-fated", "ill-omened", "doomed", "unlucky"]}, {"answer": "unmanageable", "hint": "synonyms for unmanageable", "clues": ["unwieldy", "uncorrectable", "difficult", "uncontrollable", "unmanageable"]}, {"answer": "unmanly", "hint": "synonyms for unmanly", "clues": ["unmanlike", "pusillanimous", "poor-spirited", "unmanful", "unmanly"]}, {"answer": "unmannered", "hint": "synonyms for unmannered", "clues": ["rude", "bad-mannered", "unmannerly", "ill-mannered", "unmannered"]}, {"answer": "unmannerly", "hint": "synonyms for unmannerly", "clues": ["rude", "bad-mannered", "unmannered", "ill-mannered", "unmannerly"]}, {"answer": "unmatchable", "hint": "synonyms for unmatchable", "clues": ["unmatched", "unrivalled", "nonpareil", "one", "one and only", "peerless", "matchless", "unmatchable"]}, {"answer": "unmatched", "hint": "synonyms for unmatched", "clues": ["unrivalled", "unpaired", "nonpareil", "odd", "unmated", "one", "one and only", "unmatchable", "peerless", "matchless"]}, {"answer": "unmelodious", "hint": "synonyms for unmelodious", "clues": ["tuneless", "untuneful", "unmusical", "unmelodic", "unmelodious"]}, {"answer": "unmistakable", "hint": "synonyms for unmistakable", "clues": ["manifest", "plain", "evident", "patent", "apparent", "unmistakable"]}, {"answer": "unmixed", "hint": "synonyms for unmixed", "clues": ["uncompounded", "unmingled", "sheer", "plain", "unmixed"]}, {"answer": "unnumberable", "hint": "synonyms for unnumberable", "clues": ["numberless", "countless", "multitudinous", "uncounted", "innumerable", "infinite", "unnumbered", "innumerous", "myriad"]}, {"answer": "unnumbered", "hint": "synonyms for unnumbered", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "uncounted", "infinite", "innumerous", "myriad", "unnumbered"]}, {"answer": "unnumerable", "hint": "synonyms for unnumerable", "clues": ["unnumberable", "numberless", "countless", "multitudinous", "uncounted", "infinite", "unnumbered", "innumerous", "myriad"]}, {"answer": "unornamented", "hint": "synonyms for unornamented", "clues": ["bare", "unembellished", "spare", "plain", "unornamented"]}, {"answer": "unparalleled", "hint": "synonyms for unparalleled", "clues": ["alone", "unequaled", "unique", "unparalleled"]}, {"answer": "unpleasant-smelling", "hint": "synonyms for unpleasant-smelling", "clues": ["stinky", "ill-smelling", "malodorous", "unpleasant-smelling"]}, {"answer": "unquiet", "hint": "synonyms for unquiet", "clues": ["uneasy", "nervous", "queasy", "anxious", "unquiet"]}, {"answer": "unredeemed", "hint": "synonyms for unredeemed", "clues": ["unsaved", "cursed", "doomed", "damned", "unredeemed"]}, {"answer": "unreformable", "hint": "synonyms for unreformable", "clues": ["irreclaimable", "unredeemable", "irredeemable", "unregenerate", "unreformable"]}, {"answer": "unregenerate", "hint": "synonyms for unregenerate", "clues": ["unregenerated", "unreformable", "stubborn", "obstinate"]}, {"answer": "unrehearsed", "hint": "synonyms for unrehearsed", "clues": ["extempore", "ad-lib", "off-the-cuff", "extemporary", "offhanded", "extemporaneous", "impromptu", "unrehearsed"]}, {"answer": "unrelenting", "hint": "synonyms for unrelenting", "clues": ["relentless", "brutal", "inexorable", "grim", "unforgiving", "stern", "persistent", "unappeasable", "unrelenting"]}, {"answer": "unremarkable", "hint": "synonyms for unremarkable", "clues": ["quotidian", "workaday", "mundane", "everyday", "routine", "unremarkable"]}, {"answer": "unremitting", "hint": "synonyms for unremitting", "clues": ["never-ending", "constant", "ceaseless", "perpetual", "unceasing", "incessant", "unremitting"]}, {"answer": "unrepentant", "hint": "synonyms for unrepentant", "clues": ["obdurate", "impenitent", "unremorseful", "cussed", "obstinate", "unrepentant"]}, {"answer": "unresolved", "hint": "synonyms for unresolved", "clues": ["dissonant", "open", "unsolved", "undecided", "undetermined"]}, {"answer": "unrestrained", "hint": "synonyms for unrestrained", "clues": ["mad", "frantic", "excited", "delirious", "unrestrained"]}, {"answer": "unrivaled", "hint": "synonyms for unrivaled", "clues": ["unmatched", "unrivalled", "nonpareil", "one", "one and only", "unmatchable", "peerless", "matchless"]}, {"answer": "unrivalled", "hint": "synonyms for unrivalled", "clues": ["unmatched", "nonpareil", "one", "unrivaled", "one and only", "unmatchable", "peerless", "matchless"]}, {"answer": "unruffled", "hint": "synonyms for unruffled", "clues": ["still", "smooth", "placid", "unperturbed", "tranquil", "unflustered", "quiet", "unflurried", "unruffled"]}, {"answer": "unruly", "hint": "synonyms for unruly", "clues": ["boisterous", "disobedient", "rambunctious", "indocile", "ungovernable", "rumbustious", "uncontrollable", "unruly"]}, {"answer": "unsaid", "hint": "synonyms for unsaid", "clues": ["unvoiced", "unverbalized", "unuttered", "unstated", "unexpressed", "unspoken", "unsaid"]}, {"answer": "unsatisfied", "hint": "synonyms for unsatisfied", "clues": ["restless", "ungratified", "unsated", "unsatiated", "unsatisfied"]}, {"answer": "unsaved", "hint": "synonyms for unsaved", "clues": ["cursed", "doomed", "unredeemed", "damned", "unsaved"]}, {"answer": "unseasoned", "hint": "synonyms for unseasoned", "clues": ["unsalted", "untested", "young", "untried", "unseasoned"]}, {"answer": "unsecured", "hint": "synonyms for unsecured", "clues": ["unlocked", "unlatched", "unbarred", "unguaranteed", "unbolted", "unsecured"]}, {"answer": "unseemly", "hint": "synonyms for unseemly", "clues": ["untoward", "indecorous", "unbecoming", "uncomely", "indecent", "unseemly"]}, {"answer": "unshakable", "hint": "synonyms for unshakable", "clues": ["watertight", "unwavering", "steady", "bulletproof", "unbendable", "steadfast", "unassailable", "unfaltering", "stiff", "firm", "unshakable"]}, {"answer": "unskilled", "hint": "synonyms for unskilled", "clues": ["amateur", "incompetent", "inexpert", "amateurish", "unskilled"]}, {"answer": "unsophisticated", "hint": "synonyms for unsophisticated", "clues": ["unworldly", "uncomplicated", "bumpkinly", "hick", "rustic", "unsophisticated"]}, {"answer": "unsound", "hint": "synonyms for unsound", "clues": ["unstable", "mentally ill", "unfit", "bad", "fallacious", "unsound"]}, {"answer": "unsounded", "hint": "synonyms for unsounded", "clues": ["silent", "profound", "unplumbed", "unfathomed", "unsounded"]}, {"answer": "unsparing", "hint": "synonyms for unsparing", "clues": ["unstinted", "too-generous", "overgenerous", "lavish", "munificent", "unstinting", "unsparing"]}, {"answer": "unspeakable", "hint": "synonyms for unspeakable", "clues": ["dreadful", "unutterable", "painful", "terrible", "indescribable", "awful", "ineffable", "abominable", "atrocious", "untellable", "indefinable", "unnameable", "unspeakable"]}, {"answer": "unspoiled", "hint": "synonyms for unspoiled", "clues": ["uncorrupted", "unspoilt", "good", "undecomposed", "unspoiled"]}, {"answer": "unspoken", "hint": "synonyms for unspoken", "clues": ["wordless", "mute", "tongueless", "unsaid", "unexpressed", "unverbalized", "unvoiced", "unuttered", "unstated", "unspoken"]}, {"answer": "unsporting", "hint": "synonyms for unsporting", "clues": ["dirty", "unsportsmanlike", "foul", "cheating", "unsporting"]}, {"answer": "unsportsmanlike", "hint": "synonyms for unsportsmanlike", "clues": ["dirty", "unsporting", "foul", "cheating", "unsportsmanlike"]}, {"answer": "unstable", "hint": "synonyms for unstable", "clues": ["mentally ill", "unsound", "fluid", "precarious", "unstable"]}, {"answer": "unstained", "hint": "synonyms for unstained", "clues": ["stainless", "unsullied", "untainted", "unspotted", "untarnished", "unsoiled"]}, {"answer": "unstated", "hint": "synonyms for unstated", "clues": ["unvoiced", "unverbalized", "unuttered", "unsaid", "unexpressed", "unspoken", "unstated"]}, {"answer": "unstinted", "hint": "synonyms for unstinted", "clues": ["too-generous", "unsparing", "overgenerous", "lavish", "munificent", "unstinting", "unstinted"]}, {"answer": "unstinting", "hint": "synonyms for unstinting", "clues": ["unstinted", "too-generous", "unsparing", "overgenerous", "lavish", "munificent", "unstinting"]}, {"answer": "unsullied", "hint": "synonyms for unsullied", "clues": ["stainless", "untarnished", "unstained", "unsullied"]}, {"answer": "unsung", "hint": "synonyms for unsung", "clues": ["unvalued", "obscure", "unappreciated", "unknown", "unsung"]}, {"answer": "unsure", "hint": "synonyms for unsure", "clues": ["timid", "diffident", "incertain", "shy", "unsure"]}, {"answer": "unsympathetic", "hint": "synonyms for unsympathetic", "clues": ["unappealing", "unlikable", "closed", "disagreeable", "unkindly", "unsympathetic"]}, {"answer": "untainted", "hint": "synonyms for untainted", "clues": ["stainless", "untarnished", "unsullied", "unstained"]}, {"answer": "untarnished", "hint": "synonyms for untarnished", "clues": ["stainless", "unsullied", "unstained", "untarnished"]}, {"answer": "untellable", "hint": "synonyms for untellable", "clues": ["unutterable", "ineffable", "unspeakable", "indefinable", "indescribable", "untellable"]}, {"answer": "unthinking", "hint": "synonyms for unthinking", "clues": ["lumpen", "unreflective", "uncaring", "unthoughtful", "lumpish", "thoughtless", "unthinking"]}, {"answer": "untied", "hint": "synonyms for untied", "clues": ["unfastened", "unlaced", "unfettered", "unchained", "unshackled", "untied"]}, {"answer": "untimely", "hint": "synonyms for untimely", "clues": ["ill-timed", "unseasonable", "wrong", "premature", "untimely"]}, {"answer": "untouchable", "hint": "synonyms for untouchable", "clues": ["unobtainable", "unprocurable", "unassailable", "inaccessible", "untouchable"]}, {"answer": "untouched", "hint": "synonyms for untouched", "clues": ["untasted", "unswayed", "unaffected", "unmoved", "uninfluenced", "untouched"]}, {"answer": "untoward", "hint": "synonyms for untoward", "clues": ["adverse", "indecorous", "unbecoming", "unseemly", "uncomely", "indecent", "inauspicious", "untoward"]}, {"answer": "untracked", "hint": "synonyms for untracked", "clues": ["roadless", "pathless", "trackless", "untrodden", "untrod", "untracked"]}, {"answer": "untrod", "hint": "synonyms for untrod", "clues": ["roadless", "untracked", "pathless", "trackless", "untrodden", "untrod"]}, {"answer": "untrodden", "hint": "synonyms for untrodden", "clues": ["roadless", "untracked", "pathless", "trackless", "untrod", "untrodden"]}, {"answer": "untrusting", "hint": "synonyms for untrusting", "clues": ["wary", "mistrustful", "leery", "suspicious", "untrusting"]}, {"answer": "unutterable", "hint": "synonyms for unutterable", "clues": ["indescribable", "ineffable", "untellable", "unspeakable", "indefinable", "unpronounceable", "unnameable", "unutterable"]}, {"answer": "unuttered", "hint": "synonyms for unuttered", "clues": ["unvoiced", "unverbalized", "unstated", "unsaid", "unexpressed", "unspoken", "unuttered"]}, {"answer": "unvarying", "hint": "synonyms for unvarying", "clues": ["changeless", "constant", "uniform", "invariant", "unvaried", "unvarying"]}, {"answer": "unverbalised", "hint": "synonyms for unverbalised", "clues": ["unvoiced", "unverbalized", "unuttered", "unstated", "unsaid", "unexpressed", "unspoken"]}, {"answer": "unverbalized", "hint": "synonyms for unverbalized", "clues": ["unvoiced", "unverbalised", "unuttered", "unstated", "unsaid", "unexpressed", "unspoken"]}, {"answer": "unvoiced", "hint": "synonyms for unvoiced", "clues": ["surd", "hard", "unsaid", "unexpressed", "unspoken", "voiceless", "unverbalized", "unuttered", "unstated", "unvoiced"]}, {"answer": "unwarrantable", "hint": "synonyms for unwarrantable", "clues": ["unjustifiable", "insupportable", "indefensible", "unwarranted", "unwarrantable"]}, {"answer": "unwarranted", "hint": "synonyms for unwarranted", "clues": ["unfounded", "wild", "idle", "baseless", "unjustifiable", "indefensible", "unwarrantable", "insupportable", "groundless", "unjustified", "undue", "unwarranted"]}, {"answer": "unwavering", "hint": "synonyms for unwavering", "clues": ["steady", "unfaltering", "level", "unbendable", "steadfast", "unshakable", "stiff", "firm", "unwavering"]}, {"answer": "unwell", "hint": "synonyms for unwell", "clues": ["sickly", "indisposed", "ailing", "poorly", "under the weather", "seedy", "peaked", "unwell"]}, {"answer": "unwieldy", "hint": "synonyms for unwieldy", "clues": ["gawky", "ungainly", "clunky", "clumsy", "unmanageable", "unwieldy"]}, {"answer": "unwitting", "hint": "synonyms for unwitting", "clues": ["ignorant", "unplanned", "unintentional", "unknowing", "unknowledgeable", "unwitting"]}, {"answer": "unworthy", "hint": "synonyms for unworthy", "clues": ["vile", "despicable", "worthless", "ugly", "wretched", "slimy", "undeserving", "unworthy"]}, {"answer": "unyielding", "hint": "synonyms for unyielding", "clues": ["pertinacious", "dour", "dogged", "persistent", "tenacious", "unyielding"]}, {"answer": "up_to_her_neck", "hint": "synonyms for up to her neck", "clues": ["up to his neck", "neck-deep", "up to our necks", "up to my neck", "up to their necks"]}, {"answer": "up_to_his_neck", "hint": "synonyms for up to his neck", "clues": ["neck-deep", "up to our necks", "up to my neck", "up to their necks", "up to his neck"]}, {"answer": "up_to_my_neck", "hint": "synonyms for up to my neck", "clues": ["up to his neck", "neck-deep", "up to our necks", "up to their necks", "up to my neck"]}, {"answer": "up_to_our_necks", "hint": "synonyms for up to our necks", "clues": ["up to his neck", "neck-deep", "up to my neck", "up to their necks", "up to our necks"]}, {"answer": "up_to_their_necks", "hint": "synonyms for up to their necks", "clues": ["up to his neck", "neck-deep", "up to our necks", "up to my neck", "up to their necks"]}, {"answer": "up_to_your_neck", "hint": "synonyms for up to your neck", "clues": ["up to his neck", "neck-deep", "up to our necks", "up to my neck", "up to their necks"]}, {"answer": "uppish", "hint": "synonyms for uppish", "clues": ["bigheaded", "snotty", "persnickety", "snooty", "too big for one's breeches", "snot-nosed", "stuck-up", "uppish"]}, {"answer": "upright", "hint": "synonyms for upright", "clues": ["unsloped", "just", "erect", "good", "vertical", "upright"]}, {"answer": "uproarious", "hint": "synonyms for uproarious", "clues": ["hilarious", "rackety", "screaming", "rip-roaring", "uproarious"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["distressed", "overturned", "confused", "disturbed", "upturned", "disordered", "disquieted", "worried", "broken", "upset"]}, {"answer": "uptight", "hint": "synonyms for uptight", "clues": ["jumpy", "overstrung", "edgy", "nervy", "restive", "high-strung", "jittery", "highly strung", "uptight"]}, {"answer": "upturned", "hint": "synonyms for upturned", "clues": ["retrousse", "tip-tilted", "upset", "overturned", "upturned"]}, {"answer": "usable", "hint": "synonyms for usable", "clues": ["operational", "available", "useable", "functional", "operable"]}, {"answer": "useable", "hint": "synonyms for useable", "clues": ["operational", "available", "usable", "functional", "operable"]}, {"answer": "used", "hint": "synonyms for used", "clues": ["victimised", "put-upon", "ill-used", "secondhand", "exploited", "used"]}, {"answer": "usurious", "hint": "synonyms for usurious", "clues": ["steep", "outrageous", "extortionate", "unconscionable", "exorbitant", "usurious"]}, {"answer": "utmost", "hint": "synonyms for utmost", "clues": ["extreme", "uttermost", "farthest", "last", "farthermost", "utmost"]}, {"answer": "utter", "hint": "synonyms for utter", "clues": ["consummate", "double-dyed", "dead", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "unadulterated", "complete", "thoroughgoing", "pure", "stark", "utter"]}, {"answer": "uttermost", "hint": "synonyms for uttermost", "clues": ["farthermost", "utmost", "furthest", "extreme", "uttermost"]}, {"answer": "vacuous", "hint": "synonyms for vacuous", "clues": ["hollow", "mindless", "asinine", "fatuous", "inane", "empty", "blank", "vacuous"]}, {"answer": "vagabond", "hint": "synonyms for vagabond", "clues": ["aimless", "drifting", "vagrant", "rootless", "floating", "vagabond"]}, {"answer": "vagrant", "hint": "synonyms for vagrant", "clues": ["aimless", "vagabond", "drifting", "floating", "vagrant"]}, {"answer": "vague", "hint": "synonyms for vague", "clues": ["obscure", "undefined", "faint", "shadowy", "dim", "wispy", "vague"]}, {"answer": "vain", "hint": "synonyms for vain", "clues": ["egotistical", "bootless", "fruitless", "self-conceited", "swollen-headed", "futile", "swollen", "conceited", "sleeveless", "vain"]}, {"answer": "validating", "hint": "synonyms for validating", "clues": ["corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming", "validating"]}, {"answer": "validatory", "hint": "synonyms for validatory", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "confirming", "validatory"]}, {"answer": "vapid", "hint": "synonyms for vapid", "clues": ["flat", "savourless", "bland", "insipid", "flavorless", "vapid"]}, {"answer": "vaporific", "hint": "synonyms for vaporific", "clues": ["evaporable", "volatilisable", "vapourous", "vaporish", "vapourific", "vapourisable"]}, {"answer": "vaporizable", "hint": "synonyms for vaporizable", "clues": ["evaporable", "vapourific", "volatilisable", "vapourisable"]}, {"answer": "vaporized", "hint": "synonyms for vaporized", "clues": ["gasified", "volatilised", "vapourised", "vaporized"]}, {"answer": "vaporous", "hint": "synonyms for vaporous", "clues": ["vapourish", "sheer", "filmy", "vapourous", "gossamer", "gauzy", "gauze-like", "vapourific", "cobwebby", "diaphanous", "miasmal", "see-through", "miasmic", "transparent"]}, {"answer": "vapourific", "hint": "synonyms for vapourific", "clues": ["evaporable", "volatilisable", "vapourous", "vaporish", "vaporific", "vapourisable"]}, {"answer": "vapourisable", "hint": "synonyms for vapourisable", "clues": ["evaporable", "vapourific", "volatilisable", "vapourisable"]}, {"answer": "vapourised", "hint": "synonyms for vapourised", "clues": ["gasified", "volatilised", "vaporized", "vapourised"]}, {"answer": "vapourous", "hint": "synonyms for vapourous", "clues": ["miasmal", "vapourish", "sheer", "filmy", "gossamer", "gauzy", "gauze-like", "vaporous", "vapourific", "cobwebby", "diaphanous", "see-through", "miasmic", "transparent"]}, {"answer": "varicolored", "hint": "synonyms for varicolored", "clues": ["particoloured", "calico", "multicolor", "motley", "painted", "variegated", "piebald", "pied", "multi-coloured", "varicolored"]}, {"answer": "varicoloured", "hint": "synonyms for varicoloured", "clues": ["particoloured", "calico", "multi-coloured", "multicolor", "motley", "painted", "variegated", "piebald", "pied", "varicolored"]}, {"answer": "various", "hint": "synonyms for various", "clues": ["versatile", "diverse", "assorted", "several", "respective", "various"]}, {"answer": "vasiform", "hint": "synonyms for vasiform", "clues": ["cannular", "tubular", "tubelike", "tube-shaped", "vasiform"]}, {"answer": "vatic", "hint": "synonyms for vatic", "clues": ["mantic", "sibylline", "sibyllic", "vatical", "divinatory", "vatic"]}, {"answer": "vatical", "hint": "synonyms for vatical", "clues": ["mantic", "sibylline", "sibyllic", "vatic", "divinatory", "vatical"]}, {"answer": "vehement", "hint": "synonyms for vehement", "clues": ["trigger-happy", "fierce", "violent", "tearing", "vehement"]}, {"answer": "venal", "hint": "synonyms for venal", "clues": ["corruptible", "dishonest", "bribable", "purchasable", "venal"]}, {"answer": "vendable", "hint": "synonyms for vendable", "clues": ["merchantable", "sellable", "marketable", "vendible"]}, {"answer": "vendible", "hint": "synonyms for vendible", "clues": ["merchantable", "sellable", "marketable", "vendable"]}, {"answer": "venomous", "hint": "synonyms for venomous", "clues": ["poisonous", "deadly", "vicious", "virulent", "venomous"]}, {"answer": "verbose", "hint": "synonyms for verbose", "clues": ["tedious", "windy", "long-winded", "wordy", "verbose"]}, {"answer": "verboten", "hint": "synonyms for verboten", "clues": ["taboo", "forbidden", "proscribed", "tabu", "out", "prohibited", "verboten"]}, {"answer": "verificatory", "hint": "synonyms for verificatory", "clues": ["validating", "corroboratory", "verifying", "confirmative", "substantiative", "confirmatory", "corroborative", "collateral", "validatory", "confirming", "verificatory"]}, {"answer": "verifying", "hint": "synonyms for verifying", "clues": ["validating", "corroboratory", "confirmative", "substantiative", "confirmatory", "verificatory", "corroborative", "collateral", "validatory", "confirming", "verifying"]}, {"answer": "veritable", "hint": "synonyms for veritable", "clues": ["unquestionable", "regular", "authentic", "bona fide", "veritable"]}, {"answer": "vermiculate", "hint": "synonyms for vermiculate", "clues": ["vermiculated", "worm-eaten", "wormy", "vermicular"]}, {"answer": "vestal", "hint": "synonyms for vestal", "clues": ["virtuous", "pure", "virgin", "vestal"]}, {"answer": "vexatious", "hint": "synonyms for vexatious", "clues": ["teasing", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritating", "pestering", "vexing", "bothersome", "galling", "vexatious"]}, {"answer": "vexed", "hint": "synonyms for vexed", "clues": ["harried", "harassed", "pestered", "annoyed", "vexed"]}, {"answer": "vexing", "hint": "synonyms for vexing", "clues": ["teasing", "exasperating", "infuriating", "maddening", "nettlesome", "pestiferous", "annoying", "pesky", "plaguy", "irritating", "pestering", "bothersome", "galling", "vexatious", "vexing"]}, {"answer": "vi", "hint": "synonyms for vi", "clues": ["6", "half-dozen", "six", "vi"]}, {"answer": "viable", "hint": "synonyms for viable", "clues": ["practicable", "workable", "executable", "feasible", "viable"]}, {"answer": "vicious", "hint": "synonyms for vicious", "clues": ["brutal", "barbarous", "reprehensible", "cruel", "evil", "venomous", "roughshod", "poisonous", "fell", "deplorable", "criminal", "savage", "condemnable", "vicious"]}, {"answer": "victimised", "hint": "synonyms for victimised", "clues": ["used", "put-upon", "victimized", "ill-used", "exploited"]}, {"answer": "victimized", "hint": "synonyms for victimized", "clues": ["used", "victimised", "put-upon", "ill-used", "exploited"]}, {"answer": "victorian", "hint": "synonyms for victorian", "clues": ["tight-laced", "square-toed", "Victorian", "prudish", "priggish", "straightlaced", "prissy", "puritanical", "prim"]}, {"answer": "vile", "hint": "synonyms for vile", "clues": ["queasy", "despicable", "worthless", "ugly", "wretched", "nauseating", "offensive", "nauseous", "loathsome", "sickening", "noisome", "unworthy", "slimy", "vile"]}, {"answer": "vindicated", "hint": "synonyms for vindicated", "clues": ["exculpated", "exonerated", "cleared", "absolved", "clear", "vindicated"]}, {"answer": "vindicatory", "hint": "synonyms for vindicatory", "clues": ["retributive", "retaliatory", "justificatory", "relatiative", "justificative", "retributory", "vindicatory"]}, {"answer": "violent", "hint": "synonyms for violent", "clues": ["trigger-happy", "red", "crimson", "tearing", "fierce", "wild", "vehement", "violent"]}, {"answer": "virgin", "hint": "synonyms for virgin", "clues": ["virtuous", "pure", "vestal", "virginal"]}, {"answer": "virginal", "hint": "synonyms for virginal", "clues": ["virtuous", "pure", "vestal", "virgin"]}, {"answer": "virile", "hint": "synonyms for virile", "clues": ["male", "manlike", "potent", "manly", "manful", "virile"]}, {"answer": "virtuous", "hint": "synonyms for virtuous", "clues": ["pure", "vestal", "virgin", "virtuous"]}, {"answer": "virulent", "hint": "synonyms for virulent", "clues": ["acrid", "deadly", "caustic", "acerb", "blistering", "venomous", "acerbic", "sulfurous", "vitriolic", "sulphurous", "bitter", "virulent"]}, {"answer": "viscid", "hint": "synonyms for viscid", "clues": ["mucilaginous", "glutinous", "gluey", "pasty", "sticky", "viscous", "gummy", "viscid"]}, {"answer": "viscous", "hint": "synonyms for viscous", "clues": ["mucilaginous", "glutinous", "gluey", "syrupy", "pasty", "sticky", "viscid", "gummy", "viscous"]}, {"answer": "visionary", "hint": "synonyms for visionary", "clues": ["windy", "Laputan", "impractical", "airy", "visionary"]}, {"answer": "visually_challenged", "hint": "synonyms for visually challenged", "clues": ["sand-blind", "visually impaired", "dim-sighted", "near-blind", "purblind", "visually challenged"]}, {"answer": "visually_impaired", "hint": "synonyms for visually impaired", "clues": ["visually challenged", "sand-blind", "dim-sighted", "near-blind", "purblind", "visually impaired"]}, {"answer": "vital", "hint": "synonyms for vital", "clues": ["life-sustaining", "critical", "full of life", "lively", "vital"]}, {"answer": "vitiated", "hint": "synonyms for vitiated", "clues": ["weakened", "diminished", "lessened", "corrupted", "debased", "vitiated"]}, {"answer": "vitriolic", "hint": "synonyms for vitriolic", "clues": ["erosive", "acrid", "caustic", "acerb", "blistering", "virulent", "acerbic", "sulfurous", "mordant", "sulphurous", "bitter", "corrosive", "vitriolic"]}, {"answer": "vivid", "hint": "synonyms for vivid", "clues": ["lifelike", "graphic", "bright", "brilliant", "pictorial", "intense", "vivid"]}, {"answer": "vociferous", "hint": "synonyms for vociferous", "clues": ["clamant", "blatant", "strident", "clamorous", "vociferous"]}, {"answer": "voiceless", "hint": "synonyms for voiceless", "clues": ["unvoiced", "aphonic", "surd", "hard", "disfranchised", "breathed", "voteless", "voiceless"]}, {"answer": "volatilisable", "hint": "synonyms for volatilisable", "clues": ["evaporable", "vapourific", "volatilizable", "vapourisable"]}, {"answer": "volatilised", "hint": "synonyms for volatilised", "clues": ["gasified", "vaporized", "vapourised", "volatilized"]}, {"answer": "volatilizable", "hint": "synonyms for volatilizable", "clues": ["evaporable", "vapourific", "volatilisable", "vapourisable"]}, {"answer": "volatilized", "hint": "synonyms for volatilized", "clues": ["gasified", "volatilised", "vaporized", "vapourised"]}, {"answer": "voluminous", "hint": "synonyms for voluminous", "clues": ["tortuous", "twisting", "winding", "twisty", "copious", "voluminous"]}, {"answer": "voluptuary", "hint": "synonyms for voluptuary", "clues": ["sybaritic", "voluptuous", "epicurean", "luxurious", "luxuriant", "voluptuary"]}, {"answer": "voluptuous", "hint": "synonyms for voluptuous", "clues": ["juicy", "voluptuary", "luscious", "bosomy", "buxom", "sybaritic", "stacked", "epicurean", "busty", "curvaceous", "sonsy", "full-bosomed", "red-hot", "toothsome", "well-endowed", "curvy", "luxurious", "sonsie", "luxuriant", "voluptuous"]}, {"answer": "volute", "hint": "synonyms for volute", "clues": ["coiling", "helical", "turbinate", "spiraling", "whorled", "voluted"]}, {"answer": "voluted", "hint": "synonyms for voluted", "clues": ["coiling", "helical", "volute", "turbinate", "spiraling", "whorled"]}, {"answer": "voracious", "hint": "synonyms for voracious", "clues": ["ravenous", "wolfish", "rapacious", "esurient", "edacious", "ravening", "voracious"]}, {"answer": "vulgar", "hint": "synonyms for vulgar", "clues": ["crude", "vernacular", "unwashed", "coarse", "gross", "rough-cut", "common", "earthy", "plebeian", "uncouth", "vulgar"]}, {"answer": "vulturine", "hint": "synonyms for vulturine", "clues": ["vulturous", "raptorial", "rapacious", "ravening", "predatory", "vulturine"]}, {"answer": "vulturous", "hint": "synonyms for vulturous", "clues": ["raptorial", "vulturine", "rapacious", "ravening", "predatory", "vulturous"]}, {"answer": "wacky", "hint": "synonyms for wacky", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "crackers", "bats", "barmy", "balmy", "sappy", "loopy", "loco", "batty", "cockamamie", "kookie", "around the bend", "kooky", "whacky", "daft", "nutty", "cockamamy", "goofy", "silly", "buggy", "cracked", "zany", "dotty"]}, {"answer": "wakeful", "hint": "synonyms for wakeful", "clues": ["argus-eyed", "light", "waking", "open-eyed", "vigilant", "wakeful"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["banging", "whopping", "thumping", "humongous", "walloping"]}, {"answer": "wandering", "hint": "synonyms for wandering", "clues": ["nomadic", "erratic", "peregrine", "winding", "planetary", "rambling", "roving", "mobile", "meandering", "wandering"]}, {"answer": "wanting", "hint": "synonyms for wanting", "clues": ["lacking", "missing", "deficient", "absent", "wanting"]}, {"answer": "wanton", "hint": "synonyms for wanton", "clues": ["motiveless", "light", "easy", "sluttish", "promiscuous", "loose", "unprovoked", "wanton"]}, {"answer": "warm", "hint": "synonyms for warm", "clues": ["lovesome", "fond", "quick", "tender", "affectionate", "strong", "ardent", "warm"]}, {"answer": "warning", "hint": "synonyms for warning", "clues": ["admonitory", "cautionary", "exemplary", "warning"]}, {"answer": "wary", "hint": "synonyms for wary", "clues": ["mistrustful", "leery", "suspicious", "untrusting", "wary"]}, {"answer": "washed-out", "hint": "synonyms for washed-out", "clues": ["washy", "spent", "dog-tired", "worn-out", "exhausted", "fagged", "fatigued", "faded", "played out", "bleached", "washed-out"]}, {"answer": "washed-up", "hint": "synonyms for washed-up", "clues": ["done for", "sunk", "ruined", "undone", "washed-up"]}, {"answer": "washy", "hint": "synonyms for washy", "clues": ["weak", "washed-out", "faded", "watery", "bleached", "washy"]}, {"answer": "wasted", "hint": "synonyms for wasted", "clues": ["gaunt", "pointless", "diminished", "haggard", "cadaverous", "emaciated", "otiose", "purposeless", "skeletal", "senseless", "bony", "pinched", "atrophied", "superfluous", "squandered", "wasted"]}, {"answer": "waterlogged", "hint": "synonyms for waterlogged", "clues": ["soggy", "muddy", "marshy", "mucky", "miry", "quaggy", "sloughy", "swampy", "sloppy", "squashy", "boggy", "waterlogged"]}, {"answer": "wavelike", "hint": "synonyms for wavelike", "clues": ["crinkled", "crinkly", "wavy", "rippled", "wavelike"]}, {"answer": "wavy", "hint": "synonyms for wavy", "clues": ["wavelike", "crinkled", "crinkly", "rippled", "wavy"]}, {"answer": "waxy", "hint": "synonyms for waxy", "clues": ["pliant", "bendable", "impressionable", "pliable", "waxlike", "waxen", "waxy"]}, {"answer": "way-out", "hint": "synonyms for way-out", "clues": ["kinky", "offbeat", "quirky", "far-out", "way-out"]}, {"answer": "weak", "hint": "synonyms for weak", "clues": ["washy", "imperfect", "feeble", "light", "weakly", "decrepit", "unaccented", "watery", "fallible", "rickety", "debile", "infirm", "faint", "sapless", "frail"]}, {"answer": "weakened", "hint": "synonyms for weakened", "clues": ["hurt", "attenuate", "diminished", "lessened", "cut", "thinned", "vitiated", "faded", "weakened"]}, {"answer": "weakly", "hint": "synonyms for weakly", "clues": ["feeble", "weak", "infirm", "decrepit", "sapless", "rickety", "debile"]}, {"answer": "wealthy", "hint": "synonyms for wealthy", "clues": ["moneyed", "loaded", "flush", "affluent", "wealthy"]}, {"answer": "wearisome", "hint": "synonyms for wearisome", "clues": ["boring", "tedious", "slow", "dull", "irksome", "deadening", "tiresome", "ho-hum", "wearisome"]}, {"answer": "webbed", "hint": "synonyms for webbed", "clues": ["netted", "lacy", "netlike", "weblike", "webby", "webbed"]}, {"answer": "webby", "hint": "synonyms for webby", "clues": ["netted", "webbed", "lacy", "netlike", "weblike", "webby"]}, {"answer": "weblike", "hint": "synonyms for weblike", "clues": ["netted", "webbed", "lacy", "netlike", "webby", "weblike"]}, {"answer": "wee", "hint": "synonyms for wee", "clues": ["itsy-bitsy", "teeny", "teentsy", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy", "wee"]}, {"answer": "weedy", "hint": "synonyms for weedy", "clues": ["skinny", "boney", "scraggy", "underweight", "scrawny", "weedy"]}, {"answer": "weensy", "hint": "synonyms for weensy", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "bitty", "bittie", "itty-bitty", "weeny", "teensy-weensy"]}, {"answer": "weeny", "hint": "synonyms for weeny", "clues": ["itsy-bitsy", "teeny", "teentsy", "wee", "weensy", "bitty", "bittie", "itty-bitty", "teensy-weensy"]}, {"answer": "weeping", "hint": "synonyms for weeping", "clues": ["pendulous", "drooping", "cernuous", "tearful", "dolorous", "nodding", "lachrymose", "weeping"]}, {"answer": "weighed_down", "hint": "synonyms for weighed down", "clues": ["loaded down", "overburdened", "heavy", "bowed down", "weighed down"]}, {"answer": "weighty", "hint": "synonyms for weighty", "clues": ["grave", "grievous", "heavy", "cogent", "corpulent", "rotund", "obese", "telling", "weighty"]}, {"answer": "well-educated", "hint": "synonyms for well-educated", "clues": ["knowledgeable", "learned", "lettered", "knowing", "well-read", "well-educated"]}, {"answer": "well-endowed", "hint": "synonyms for well-endowed", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie", "well-endowed"]}, {"answer": "well-favored", "hint": "synonyms for well-favored", "clues": ["well-favoured", "better-looking", "handsome", "good-looking", "fine-looking"]}, {"answer": "well-favoured", "hint": "synonyms for well-favoured", "clues": ["well-favored", "better-looking", "handsome", "good-looking", "fine-looking"]}, {"answer": "well-fixed", "hint": "synonyms for well-fixed", "clues": ["well-heeled", "well-off", "easy", "well-to-do", "well-situated", "prosperous", "comfortable", "well-fixed"]}, {"answer": "well-heeled", "hint": "synonyms for well-heeled", "clues": ["well-off", "easy", "well-to-do", "well-situated", "well-fixed", "prosperous", "comfortable", "well-heeled"]}, {"answer": "well-kept", "hint": "synonyms for well-kept", "clues": ["shipshape", "kept up", "trim", "maintained", "well-kept"]}, {"answer": "well-off", "hint": "synonyms for well-off", "clues": ["well-heeled", "easy", "well-to-do", "well-situated", "well-fixed", "prosperous", "comfortable", "well-off"]}, {"answer": "well-read", "hint": "synonyms for well-read", "clues": ["knowledgeable", "learned", "well-educated", "lettered", "knowing", "well-read"]}, {"answer": "well-situated", "hint": "synonyms for well-situated", "clues": ["well-heeled", "well-off", "easy", "well-to-do", "well-fixed", "prosperous", "comfortable", "well-situated"]}, {"answer": "well-to-do", "hint": "synonyms for well-to-do", "clues": ["well-heeled", "well-off", "easy", "well-situated", "well-fixed", "prosperous", "comfortable", "well-to-do"]}, {"answer": "well-worn", "hint": "synonyms for well-worn", "clues": ["hackneyed", "old-hat", "timeworn", "tired", "commonplace", "trite", "stock", "banal", "shopworn", "threadbare", "well-worn"]}, {"answer": "wet", "hint": "synonyms for wet", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "lactating", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "plastered", "wet"]}, {"answer": "whacky", "hint": "synonyms for whacky", "clues": ["fruity", "loony", "haywire", "nuts", "bonkers", "crackers", "bats", "barmy", "balmy", "sappy", "loopy", "loco", "wacky", "batty", "cockamamie", "kookie", "around the bend", "kooky", "daft", "nutty", "cockamamy", "goofy", "silly", "buggy", "cracked", "zany", "dotty"]}, {"answer": "whiskered", "hint": "synonyms for whiskered", "clues": ["bewhiskered", "barbate", "whiskery", "bearded"]}, {"answer": "whiskery", "hint": "synonyms for whiskery", "clues": ["bewhiskered", "barbate", "bearded", "whiskery"]}, {"answer": "white", "hint": "synonyms for white", "clues": ["blanched", "snowy", "lily-white", "bloodless", "blank", "whitened", "white-hot", "ashen", "clean", "livid", "white"]}, {"answer": "white-haired", "hint": "synonyms for white-haired", "clues": ["gray-haired", "hoary", "gray", "blue-eyed", "fair-haired", "grey", "gray-headed", "grizzly", "white-haired"]}, {"answer": "white-livered", "hint": "synonyms for white-livered", "clues": ["yellow-bellied", "yellow", "chicken", "chickenhearted", "lily-livered", "white-livered"]}, {"answer": "whole", "hint": "synonyms for whole", "clues": ["solid", "hale", "unscathed", "unharmed", "unhurt", "unanimous", "whole"]}, {"answer": "whopping", "hint": "synonyms for whopping", "clues": ["banging", "walloping", "thumping", "humongous", "whopping"]}, {"answer": "whorled", "hint": "synonyms for whorled", "clues": ["helical", "verticillate", "spiral", "voluted", "coiling", "turbinate", "whorled"]}, {"answer": "wicked", "hint": "synonyms for wicked", "clues": ["prankish", "impish", "mischievous", "repelling", "severe", "yucky", "unholy", "foul", "arch", "puckish", "repellant", "implike", "revolting", "loathly", "disgustful", "terrible", "loathsome", "pixilated", "sinful", "skanky", "disgusting", "distasteful", "wicked"]}, {"answer": "wide", "hint": "synonyms for wide", "clues": ["panoptic", "full", "wide of the mark", "spacious", "across-the-board", "blanket", "encompassing", "extensive", "all-inclusive", "wide-eyed", "wide-cut", "all-embracing", "broad", "wide"]}, {"answer": "wide-eyed", "hint": "synonyms for wide-eyed", "clues": ["round-eyed", "dewy-eyed", "childlike", "simple", "wide", "wide-eyed"]}, {"answer": "wiggly", "hint": "synonyms for wiggly", "clues": ["wriggly", "writhing", "sinuate", "wriggling", "sinuous"]}, {"answer": "wild", "hint": "synonyms for wild", "clues": ["violent", "unwarranted", "fantastic", "barbaric", "tempestuous", "godforsaken", "crazy", "groundless", "raving mad", "risky", "untamed", "furious", "unfounded", "waste", "raging", "idle", "baseless", "uncivilized", "hazardous", "angry", "gaga", "barbarian", "savage", "dotty", "wild"]}, {"answer": "wilful", "hint": "synonyms for wilful", "clues": ["headstrong", "froward", "self-willed", "willful"]}, {"answer": "willful", "hint": "synonyms for willful", "clues": ["headstrong", "froward", "self-willed", "wilful"]}, {"answer": "wily", "hint": "synonyms for wily", "clues": ["guileful", "dodgy", "tricksy", "foxy", "sly", "slick", "knavish", "crafty", "cunning", "wily"]}, {"answer": "winding", "hint": "synonyms for winding", "clues": ["tortuous", "twisting", "voluminous", "rambling", "wandering", "twisty", "meandering", "winding"]}, {"answer": "windy", "hint": "synonyms for windy", "clues": ["tedious", "Laputan", "airy", "blowy", "visionary", "breezy", "verbose", "long-winded", "impractical", "wordy", "windy"]}, {"answer": "wintry", "hint": "synonyms for wintry", "clues": ["frosty", "wintery", "frozen", "icy", "glacial", "frigid"]}, {"answer": "wiped_out", "hint": "synonyms for wiped out", "clues": ["impoverished", "exterminated", "broken", "annihilated", "wiped out"]}, {"answer": "wise", "hint": "synonyms for wise", "clues": ["fresh", "heady", "wise to", "sassy", "overbold", "judicious", "impudent", "impertinent", "saucy", "knowing", "smart", "wise"]}, {"answer": "wispy", "hint": "synonyms for wispy", "clues": ["wisplike", "faint", "shadowy", "vague", "dim", "wispy"]}, {"answer": "witching", "hint": "synonyms for witching", "clues": ["magic", "wizardly", "sorcerous", "charming", "magical", "witching"]}, {"answer": "with-it", "hint": "synonyms for with-it", "clues": ["cutting-edge", "street smart", "up-to-date", "streetwise", "with-it"]}, {"answer": "with_child", "hint": "synonyms for with child", "clues": ["expectant", "gravid", "heavy", "big", "enceinte", "great", "large", "with child"]}, {"answer": "withered", "hint": "synonyms for withered", "clues": ["sear", "shrivelled", "wizen", "sere", "dried-up", "wizened", "shrunken", "withered"]}, {"answer": "wizard", "hint": "synonyms for wizard", "clues": ["magic", "wizardly", "sorcerous", "charming", "magical", "witching"]}, {"answer": "wizardly", "hint": "synonyms for wizardly", "clues": ["magic", "sorcerous", "wizard", "charming", "magical", "witching"]}, {"answer": "wizen", "hint": "synonyms for wizen", "clues": ["shrivelled", "shrunken", "withered", "wizened", "wizen"]}, {"answer": "wizened", "hint": "synonyms for wizened", "clues": ["shrivelled", "wizen", "withered", "shrunken", "wizened"]}, {"answer": "woebegone", "hint": "synonyms for woebegone", "clues": ["flea-bitten", "woeful", "creaky", "run-down", "decrepit", "derelict", "woebegone"]}, {"answer": "woeful", "hint": "synonyms for woeful", "clues": ["deplorable", "miserable", "wretched", "woebegone", "execrable", "woeful"]}, {"answer": "wolfish", "hint": "synonyms for wolfish", "clues": ["esurient", "ravenous", "voracious", "ravening", "rapacious", "wolflike", "edacious", "wolfish"]}, {"answer": "wonderful", "hint": "synonyms for wonderful", "clues": ["marvelous", "grand", "wondrous", "fantastic", "howling", "tremendous", "terrific", "rattling", "wonderful"]}, {"answer": "wondrous", "hint": "synonyms for wondrous", "clues": ["marvelous", "grand", "wonderful", "fantastic", "howling", "tremendous", "terrific", "rattling", "wondrous"]}, {"answer": "wonky", "hint": "synonyms for wonky", "clues": ["skew-whiff", "cockeyed", "shaky", "awry", "wobbly", "askew", "lopsided", "rickety", "wonky"]}, {"answer": "wooden-headed", "hint": "synonyms for wooden-headed", "clues": ["blockheaded", "fatheaded", "boneheaded", "loggerheaded", "thickheaded", "duncical", "thick", "duncish", "thick-skulled", "wooden-headed"]}, {"answer": "woolly", "hint": "synonyms for woolly", "clues": ["wooly", "lanate", "wooly-haired", "woolly-headed", "flocculent", "addled", "muzzy", "befuddled", "wooly-minded", "muddled"]}, {"answer": "woolly-headed", "hint": "synonyms for woolly-headed", "clues": ["wooly", "addled", "muzzy", "befuddled", "wooly-minded", "muddled", "woolly-headed"]}, {"answer": "wooly", "hint": "synonyms for wooly", "clues": ["wooly-haired", "woolly-headed", "flocculent", "addled", "muzzy", "woolly", "befuddled", "wooly-minded", "muddled"]}, {"answer": "wooly-minded", "hint": "synonyms for wooly-minded", "clues": ["wooly", "addled", "muzzy", "befuddled", "woolly-headed", "muddled", "wooly-minded"]}, {"answer": "wordy", "hint": "synonyms for wordy", "clues": ["tedious", "windy", "long-winded", "verbose", "wordy"]}, {"answer": "work-shy", "hint": "synonyms for work-shy", "clues": ["lazy", "faineant", "otiose", "indolent", "slothful", "work-shy"]}, {"answer": "workable", "hint": "synonyms for workable", "clues": ["practicable", "executable", "feasible", "viable", "workable"]}, {"answer": "workaday", "hint": "synonyms for workaday", "clues": ["everyday", "quotidian", "unremarkable", "mundane", "routine", "workaday"]}, {"answer": "working", "hint": "synonyms for working", "clues": ["running", "operative", "on the job", "functional", "working"]}, {"answer": "world", "hint": "synonyms for world", "clues": ["global", "planetary", "world-wide", "world"]}, {"answer": "world-wide", "hint": "synonyms for world-wide", "clues": ["general", "cosmopolitan", "global", "ecumenical", "planetary", "universal", "worldwide", "world"]}, {"answer": "worldwide", "hint": "synonyms for worldwide", "clues": ["general", "global", "ecumenical", "world-wide", "planetary", "universal", "cosmopolitan", "world"]}, {"answer": "wormlike", "hint": "synonyms for wormlike", "clues": ["groveling", "wormy", "cringing", "wormlike"]}, {"answer": "wormy", "hint": "synonyms for wormy", "clues": ["groveling", "wormlike", "cringing", "vermiculate", "worm-eaten", "wormy"]}, {"answer": "worn", "hint": "synonyms for worn", "clues": ["haggard", "careworn", "drawn", "raddled", "worn"]}, {"answer": "worn-out", "hint": "synonyms for worn-out", "clues": ["spent", "dog-tired", "exhausted", "raddled", "fagged", "worn out", "washed-out", "fatigued", "played out"]}, {"answer": "worn_out", "hint": "synonyms for worn out", "clues": ["spent", "dog-tired", "worn-out", "exhausted", "fagged", "washed-out", "fatigued", "played out"]}, {"answer": "worried", "hint": "synonyms for worried", "clues": ["distressed", "disturbed", "upset", "apprehensive", "disquieted", "worried"]}, {"answer": "worrisome", "hint": "synonyms for worrisome", "clues": ["unreassuring", "troubling", "perturbing", "disturbing", "worrying", "distressful", "distressing", "worrisome"]}, {"answer": "worrying", "hint": "synonyms for worrying", "clues": ["troubling", "perturbing", "disturbing", "worrisome", "distressful", "distressing", "worrying"]}, {"answer": "worse", "hint": "synonyms for worse", "clues": ["spoilt", "unsound", "speculative", "big", "spoiled", "uncollectible", "forged", "bad", "unfit", "high-risk", "defective", "regretful", "worsened", "risky", "tough", "sorry", "worse"]}, {"answer": "worst", "hint": "synonyms for worst", "clues": ["spoilt", "unsound", "speculative", "big", "spoiled", "uncollectible", "forged", "bad", "unfit", "high-risk", "defective", "regretful", "risky", "tough", "sorry", "worst"]}, {"answer": "worthless", "hint": "synonyms for worthless", "clues": ["vile", "despicable", "ugly", "wretched", "unworthy", "slimy", "worthless"]}, {"answer": "wrapped", "hint": "synonyms for wrapped", "clues": ["mantled", "engrossed", "draped", "captive", "cloaked", "clothed", "intent", "absorbed", "enwrapped"]}, {"answer": "wretched", "hint": "synonyms for wretched", "clues": ["pitiable", "ugly", "worthless", "piteous", "suffering", "poor", "pitiful", "slimy", "execrable", "pathetic", "despicable", "hapless", "vile", "woeful", "deplorable", "miserable", "unworthy", "misfortunate", "wretched"]}, {"answer": "wrong", "hint": "synonyms for wrong", "clues": ["improper", "ill-timed", "faulty", "haywire", "incorrect", "amiss", "untimely", "unseasonable", "awry", "wrong"]}, {"answer": "yeasty", "hint": "synonyms for yeasty", "clues": ["zesty", "yeastlike", "barmy", "zestful", "yeasty"]}, {"answer": "yellow", "hint": "synonyms for yellow", "clues": ["yellowish", "yellow-bellied", "scandalmongering", "chicken", "lily-livered", "yellowed", "icteric", "xanthous", "sensationalistic", "jaundiced", "white-livered", "chickenhearted"]}, {"answer": "yellow-bellied", "hint": "synonyms for yellow-bellied", "clues": ["yellow", "chicken", "white-livered", "chickenhearted", "lily-livered", "yellow-bellied"]}, {"answer": "yokelish", "hint": "synonyms for yokelish", "clues": ["ill-bred", "bounderish", "underbred", "lowbred", "rude", "yokelish"]}, {"answer": "young", "hint": "synonyms for young", "clues": ["untried", "untested", "unseasoned", "youthful", "vernal", "immature", "new", "young"]}, {"answer": "younger", "hint": "synonyms for younger", "clues": ["untested", "new", "vernal", "unseasoned", "youthful", "immature", "jr.", "young", "untried", "younger"]}, {"answer": "yucky", "hint": "synonyms for yucky", "clues": ["repellent", "repelling", "loathly", "wicked", "disgustful", "foul", "loathsome", "skanky", "disgusting", "distasteful", "revolting", "yucky"]}, {"answer": "yummy", "hint": "synonyms for yummy", "clues": ["delectable", "pleasant-tasting", "toothsome", "scrumptious", "luscious", "delicious", "yummy"]}, {"answer": "zany", "hint": "synonyms for zany", "clues": ["wacky", "clownlike", "cockamamie", "buffoonish", "cockamamy", "goofy", "silly", "sappy", "clownish", "zany"]}, {"answer": "zesty", "hint": "synonyms for zesty", "clues": ["savoury", "barmy", "piquant", "zestful", "yeasty", "spicy", "zesty"]}, {"answer": "zippy", "hint": "synonyms for zippy", "clues": ["spirited", "alert", "bouncy", "lively", "snappy", "peppy", "bouncing", "brisk", "merry", "rattling", "spanking", "zippy"]}, {"answer": "closer", "hint": "synonyms for closer", "clues": ["close-fitting", "tight", "secretive", "skinny", "stuffy", "confining", "tightlipped", "cheeseparing", "penny-pinching", "near", "nigh", "close", "unaired", "snug", "closelipped", "airless", "closemouthed", "faithful"]}, {"answer": "closest", "hint": "synonyms for closest", "clues": ["close-fitting", "tight", "secretive", "skinny", "stuffy", "confining", "tightlipped", "cheeseparing", "penny-pinching", "near", "nigh", "close", "unaired", "snug", "closelipped", "airless", "closemouthed", "faithful", "closest"]}, {"answer": "faster", "hint": "synonyms for faster", "clues": ["quick", "degenerate", "flying", "truehearted", "loyal", "degraded", "libertine", "fast", "debauched", "immobile", "profligate", "firm", "dissolute", "riotous", "dissipated", "faster"]}, {"answer": "fastest", "hint": "synonyms for fastest", "clues": ["quick", "degenerate", "flying", "truehearted", "loyal", "degraded", "libertine", "fast", "debauched", "immobile", "profligate", "firm", "dissolute", "riotous", "dissipated", "fastest"]}, {"answer": "longer", "hint": "synonyms for longer", "clues": ["foresightful", "farseeing", "foresighted", "tenacious", "prospicient", "recollective", "long", "retentive", "longsighted", "longer"]}, {"answer": "longest", "hint": "synonyms for longest", "clues": ["foresightful", "farseeing", "foresighted", "tenacious", "prospicient", "recollective", "long", "retentive", "longsighted", "longest"]}, {"answer": "nearer", "hint": "synonyms for nearer", "clues": ["cheeseparing", "penny-pinching", "near", "nigh", "close", "dear", "good", "skinny", "approximate", "nearer"]}, {"answer": "nearest", "hint": "synonyms for nearest", "clues": ["cheeseparing", "penny-pinching", "near", "nigh", "close", "dear", "good", "skinny", "approximate", "nearest"]}, {"answer": "quicker", "hint": "synonyms for quicker", "clues": ["agile", "spry", "speedy", "quick", "flying", "straightaway", "fast", "immediate", "warm", "ready", "nimble", "prompt", "quicker"]}, {"answer": "quickest", "hint": "synonyms for quickest", "clues": ["agile", "spry", "speedy", "quick", "flying", "straightaway", "fast", "immediate", "warm", "ready", "nimble", "prompt", "quickest"]}, {"answer": "slower", "hint": "synonyms for slower", "clues": ["boring", "tedious", "dense", "dim", "slow", "dull", "obtuse", "irksome", "sluggish", "wearisome", "dumb", "deadening", "tiresome", "ho-hum", "slower"]}, {"answer": "slowest", "hint": "synonyms for slowest", "clues": ["boring", "tedious", "dense", "dim", "slow", "dull", "obtuse", "irksome", "sluggish", "wearisome", "dumb", "deadening", "tiresome", "ho-hum", "slowest"]}, {"answer": "abstracter", "hint": "synonyms for abstracter", "clues": ["abstract", "nonobjective", "nonfigurative", "abstractionist"]}, {"answer": "adulterer", "hint": "synonyms for adulterer", "clues": ["grownup", "fully grown", "pornographic", "adult", "big", "grown", "adulterer"]}, {"answer": "balder", "hint": "synonyms for balder", "clues": ["bald-headed", "denuded", "bald-pated", "denudate", "bald", "barefaced", "balder"]}, {"answer": "berserker", "hint": "synonyms for berserker", "clues": ["demoniacal", "amuck", "amok", "berserk", "possessed"]}, {"answer": "broker", "hint": "synonyms for broker", "clues": ["broke", "stony-broke", "skint", "bust"]}, {"answer": "bustier", "hint": "synonyms for bustier", "clues": ["curvaceous", "sonsy", "voluptuous", "full-bosomed", "well-endowed", "bosomy", "buxom", "curvy", "stacked", "busty", "sonsie", "bustier"]}, {"answer": "cleaner", "hint": "synonyms for cleaner", "clues": ["unobjectionable", "light", "fresh", "fair", "sportsmanlike", "sporty", "blank", "uncontaminating", "unclouded", "white", "uninfected", "clean-living", "neat", "clean", "sporting", "clear", "cleaner"]}, {"answer": "commoner", "hint": "synonyms for commoner", "clues": ["vernacular", "usual", "unwashed", "mutual", "coarse", "common", "rough-cut", "plebeian", "vulgar", "uncouth"]}, {"answer": "dearest", "hint": "synonyms for dearest", "clues": ["pricy", "near", "beloved", "costly", "high-priced", "dear", "devout", "good", "heartfelt", "earnest", "darling"]}, {"answer": "dimmer", "hint": "synonyms for dimmer", "clues": ["black", "shadowy", "subdued", "dense", "dim", "wispy", "slow", "dimmed", "dull", "obtuse", "faint", "bleak", "vague", "dumb", "dimmer"]}, {"answer": "diviner", "hint": "synonyms for diviner", "clues": ["inspired", "providential", "godly", "godlike", "elysian", "divine"]}, {"answer": "doubler", "hint": "synonyms for doubler", "clues": ["treble", "double", "bivalent", "twofold", "forked", "threefold", "duple", "dual"]}, {"answer": "drier", "hint": "synonyms for drier", "clues": ["ironical", "teetotal", "dry", "juiceless", "wry", "drier"]}, {"answer": "dryer", "hint": "synonyms for dryer", "clues": ["ironical", "teetotal", "dry", "juiceless", "wry", "dryer"]}, {"answer": "fakeer", "hint": "synonyms for fakeer", "clues": ["imitation", "bogus", "simulated", "phony", "fake", "false", "bastard", "faux", "fakeer"]}, {"answer": "fresher", "hint": "synonyms for fresher", "clues": ["novel", "fresh", "invigorated", "refreshed", "sweet", "unused", "impertinent", "saucy", "smart", "refreshful", "refreshing", "bracing", "new", "sassy", "overbold", "impudent", "unfermented", "brisk", "clean", "tonic", "wise", "fresher"]}, {"answer": "fuller", "hint": "synonyms for fuller", "clues": ["total", "full", "good", "wide", "replete", "wide-cut", "entire", "broad", "fuller"]}, {"answer": "graver", "hint": "synonyms for graver", "clues": ["grievous", "heavy", "life-threatening", "severe", "serious", "dangerous", "sober", "grave", "sedate", "weighty", "solemn"]}, {"answer": "idler", "hint": "synonyms for idler", "clues": ["unfounded", "unwarranted", "light", "dead", "jobless", "wild", "idle", "baseless", "loose", "unused", "out of work", "groundless"]}, {"answer": "lighter", "hint": "synonyms for lighter", "clues": ["swooning", "easy", "unaccented", "light-colored", "weak", "short", "loose", "wanton", "low-cal", "wakeful", "sluttish", "lite", "lightheaded", "tripping", "lightsome", "promiscuous", "light", "clean", "idle", "unclouded", "calorie-free", "faint", "scant", "abstemious", "clear", "lighter"]}, {"answer": "lower", "hint": "synonyms for lower", "clues": ["low-down", "down", "small", "depressed", "low-pitched", "scummy", "depleted", "low-spirited", "crushed", "downhearted", "abject", "grim", "humiliated", "blue", "down in the mouth", "low", "humble", "low-toned", "gloomy", "scurvy", "downcast", "broken", "modest", "dispirited", "miserable", "lower"]}, {"answer": "madder", "hint": "synonyms for madder", "clues": ["delirious", "brainsick", "unhinged", "sore", "demented", "disturbed", "unrestrained", "harebrained", "mad", "huffy", "crazy", "frantic", "excited", "insane", "sick", "unbalanced", "madder"]}, {"answer": "mater", "hint": "synonyms for mater", "clues": ["mat", "matte", "flat", "mater"]}, {"answer": "offerer", "hint": "synonyms for offerer", "clues": ["sour", "turned", "cancelled", "off", "offerer"]}, {"answer": "out-and-outer", "hint": "synonyms for out-and-outer", "clues": ["absolute", "rank", "sheer", "out-and-out", "right-down", "downright"]}, {"answer": "perfecter", "hint": "synonyms for perfecter", "clues": ["consummate", "double-dyed", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "unadulterated", "complete", "thoroughgoing", "utter", "pure", "stark"]}, {"answer": "rasher", "hint": "synonyms for rasher", "clues": ["foolhardy", "heady", "reckless", "rash", "rasher"]}, {"answer": "rounder", "hint": "synonyms for rounder", "clues": ["round", "orotund", "circular", "pear-shaped", "rounder"]}, {"answer": "screwballer", "hint": "synonyms for screwballer", "clues": ["softheaded", "crazy", "half-baked", "screwball"]}, {"answer": "secreter", "hint": "synonyms for secreter", "clues": ["secret", "orphic", "mystical", "privy", "confidential", "occult", "hugger-mugger", "hush-hush", "undercover", "secluded", "hole-and-corner", "mysterious", "underground", "private", "cloak-and-dagger", "surreptitious", "unavowed", "hidden", "clandestine"]}, {"answer": "securer", "hint": "synonyms for securer", "clues": ["secure", "impregnable", "unafraid", "inviolable", "untroubled", "strong", "good", "unattackable", "unassailable", "safe", "dependable"]}, {"answer": "sharper", "hint": "synonyms for sharper", "clues": ["knifelike", "acute", "piercing", "sharp-worded", "abrupt", "astute", "crisp", "shrill", "penetrative", "keen", "incisive", "sharp", "tart", "penetrating", "needlelike", "shrewd", "precipitous", "discriminating", "sharper"]}, {"answer": "sixer", "hint": "synonyms for sixer", "clues": ["6", "vi", "half dozen", "six", "sixer"]}, {"answer": "slicker", "hint": "synonyms for slicker", "clues": ["guileful", "pat", "tricky", "slick", "silky", "sleek", "silken", "knavish", "crafty", "cunning", "wily", "dodgy", "satiny", "foxy", "sly", "silklike", "glib", "slicker"]}, {"answer": "smoother", "hint": "synonyms for smoother", "clues": ["still", "politic", "smooth", "legato", "placid", "bland", "unruffled", "tranquil", "fluent", "liquid", "fluid", "suave", "quiet"]}, {"answer": "sounder", "hint": "synonyms for sounder", "clues": ["effectual", "level-headed", "heavy", "healthy", "sound", "good", "intelligent", "wakeless", "profound", "legal", "well-grounded", "reasoned", "sounder"]}, {"answer": "sparer", "hint": "synonyms for sparer", "clues": ["extra", "surplus", "trim", "scanty", "bare", "unornamented", "unembellished", "redundant", "supererogatory", "supernumerary", "excess", "plain", "superfluous", "spare", "free"]}, {"answer": "squatter", "hint": "synonyms for squatter", "clues": ["low-set", "dumpy", "squatty", "stumpy", "underslung", "chunky", "squat", "squatter"]}, {"answer": "squinter", "hint": "synonyms for squinter", "clues": ["askant", "squint-eyed", "askance", "sidelong", "asquint", "squinter"]}, {"answer": "steeper", "hint": "synonyms for steeper", "clues": ["steep", "outrageous", "usurious", "extortionate", "unconscionable", "exorbitant", "steeper"]}, {"answer": "stranger", "hint": "synonyms for stranger", "clues": ["unusual", "strange", "unknown", "foreign"]}, {"answer": "tangier", "hint": "synonyms for tangier", "clues": ["lemony", "tart", "sourish", "lemonlike", "tangy", "tangier"]}, {"answer": "thinner", "hint": "synonyms for thinner", "clues": ["flimsy", "sparse", "fragile", "thin", "slight", "tenuous", "lean", "slender", "thinner"]}, {"answer": "trimester", "hint": "synonyms for trimester", "clues": ["tailored", "trim", "trig", "well-kept", "shipshape", "clean-cut", "spare", "trimester"]}, {"answer": "trimmer", "hint": "synonyms for trimmer", "clues": ["tailored", "trim", "trig", "well-kept", "shipshape", "clean-cut", "spare", "trimmer"]}, {"answer": "twiner", "hint": "synonyms for twiner", "clues": ["duplicate", "matching", "twin", "twinned", "twiner"]}, {"answer": "utterer", "hint": "synonyms for utterer", "clues": ["consummate", "double-dyed", "dead", "gross", "perfect", "arrant", "sodding", "staring", "everlasting", "unadulterated", "complete", "thoroughgoing", "utter", "pure", "stark", "utterer"]}, {"answer": "warmer", "hint": "synonyms for warmer", "clues": ["lovesome", "quick", "tender", "strong", "ardent", "fond", "affectionate", "warm", "warmer"]}, {"answer": "wetter", "hint": "synonyms for wetter", "clues": ["pie-eyed", "loaded", "tight", "squiffy", "blind drunk", "pissed", "soused", "sozzled", "cockeyed", "besotted", "soaked", "fuddled", "slopped", "lactating", "stiff", "sloshed", "blotto", "pixilated", "smashed", "crocked", "wet", "plastered", "wetter"]}, {"answer": "wilder", "hint": "synonyms for wilder", "clues": ["violent", "unwarranted", "fantastic", "barbaric", "tempestuous", "godforsaken", "crazy", "raving mad", "groundless", "risky", "untamed", "furious", "unfounded", "waste", "raging", "wild", "idle", "baseless", "uncivilized", "hazardous", "angry", "gaga", "barbarian", "savage", "dotty", "wilder"]}, {"answer": "blither", "hint": "synonyms for blither", "clues": ["blithe", "lightsome", "blithesome", "lighthearted"]}, {"answer": "flatter", "hint": "synonyms for flatter", "clues": ["compressed", "monotonous", "plane", "flat", "vapid", "monotonic", "two-dimensional", "monotone", "flavourless", "categoric", "bland", "matt", "level", "prostrate", "matted", "insipid", "savorless", "unconditional", "flatter"]}], "portion": 0}] \ No newline at end of file
+var corpus = [{"name": "suffixes", "groups": [{"answer": "about", "hint": "_ about", "clues": ["gad", "knock", "turn", "walk", "run", "round", "roust", "lay"]}, {"answer": "ache", "hint": "_ ache", "clues": ["head", "belly", "heart", "ear", "back", "stomach", "tooth"]}, {"answer": "all", "hint": "_ all", "clues": ["catch", "carry", "cover", "hold"]}, {"answer": "away", "hint": "_ away", "clues": ["break", "stow", "straight", "get", "cast", "throw", "tear", "take", "cut", "run", "give", "hide", "walk"]}, {"answer": "back", "hint": "_ back", "clues": ["razor", "sling", "throw", "canvas", "paper", "feed", "hump", "full", "kick", "flash", "half", "green", "fat", "buy", "tie", "hard", "hunch", "quarter", "out", "fall", "cut", "roll", "horse", "draw", "hatch", "call", "diamond", "piggy", "pay", "hog", "tail", "set", "moss", "pull", "soft"]}, {"answer": "bag", "hint": "_ bag", "clues": ["school", "bean", "gas", "feed", "money", "hand", "saddle", "carpet", "sand", "flea", "wind", "mail", "post", "rag", "nose"]}, {"answer": "ball", "hint": "_ ball", "clues": ["hard", "butter", "goof", "base", "basket", "racquet", "hand", "eye", "pin", "hair", "moth", "fire", "spit", "fast", "foot", "net", "odd", "volley", "puff", "meat", "paint", "cannon", "high", "screw", "track", "snow", "black", "soft"]}, {"answer": "band", "hint": "_ band", "clues": ["neck", "waist", "arm", "sweat", "head", "hat", "wave", "watch", "wrist"]}, {"answer": "bar", "hint": "_ bar", "clues": ["cross", "sand", "side", "handle", "crow"]}, {"answer": "beam", "hint": "_ beam", "clues": ["horn", "sun", "moon", "cross"]}, {"answer": "beat", "hint": "_ beat", "clues": ["down", "heart", "drum", "dead"]}, {"answer": "bed", "hint": "_ bed", "clues": ["sea", "day", "flat", "sick", "flower", "death", "river", "hot", "seed", "road"]}, {"answer": "bell", "hint": "_ bell", "clues": ["cow", "door", "hare", "bar", "dumb", "blue"]}, {"answer": "berry", "hint": "_ berry", "clues": ["bay", "bar", "dew", "elder", "blue", "straw", "rasp", "black", "goose"]}, {"answer": "bill", "hint": "_ bill", "clues": ["spoon", "hand", "way", "play", "duck"]}, {"answer": "bird", "hint": "_ bird", "clues": ["sea", "blue", "love", "black", "song", "cow", "lady", "jail", "whirly", "cat", "jay", "oven", "water", "lyre", "dicky", "snow", "red", "mocking", "humming", "shore"]}, {"answer": "board", "hint": "_ board", "clues": ["lap", "paste", "floor", "shuffle", "cup", "paper", "score", "spring", "clapper", "finger", "side", "cheese", "bill", "mold", "plaster", "weather", "buck", "sound", "chalk", "tail", "black", "head", "dart", "key", "drain", "switch", "snow", "skate", "chip", "hard", "dash", "sign", "checker", "sea", "card", "bread", "star", "wall", "surf", "clip", "peg", "base", "fiber", "center", "wash", "chess", "mortar"]}, {"answer": "boarding", "hint": "_ boarding", "clues": ["skate", "surf", "snow", "weather"]}, {"answer": "boat", "hint": "_ boat", "clues": ["flat", "ferry", "gun", "show", "speed", "life", "cat", "whale", "motor", "power", "house", "ice", "sail", "row", "tug", "tow", "steam", "long"]}, {"answer": "body", "hint": "_ body", "clues": ["home", "dogs", "some", "busy"]}, {"answer": "bone", "hint": "_ bone", "clues": ["whale", "hip", "back", "breast", "collar", "jaw", "herring", "shin", "ankle", "wish", "cheek", "thigh"]}, {"answer": "book", "hint": "_ book", "clues": ["year", "cook", "prayer", "bank", "text", "pass", "log", "hand", "guide", "check", "word", "hymn", "song", "story", "stud", "school", "case", "scrap", "note", "work", "copy", "match", "play", "pocket", "sketch"]}, {"answer": "box", "hint": "_ box", "clues": ["juke", "band", "tool", "soap", "match", "paint", "horse", "hot", "post", "tinder", "sand", "mail", "hat", "ice", "pill", "chatter", "gear", "snuff", "shoe", "strong", "fire", "salt", "bread"]}, {"answer": "boy", "hint": "_ boy", "clues": ["bell", "school", "page", "home", "news", "cow", "paper", "play", "tall", "low", "high", "bus", "choir", "tom"]}, {"answer": "bread", "hint": "_ bread", "clues": ["corn", "sweet", "short", "ginger", "bee"]}, {"answer": "break", "hint": "_ break", "clues": ["fire", "jail", "day", "heart", "wind", "gaol"]}, {"answer": "breaker", "hint": "_ breaker", "clues": ["strike", "ice", "jaw", "law", "house", "wind", "tie"]}, {"answer": "brow", "hint": "_ brow", "clues": ["middle", "high", "eye", "low"]}, {"answer": "brush", "hint": "_ brush", "clues": ["tooth", "paint", "sage", "nail", "hair", "under"]}, {"answer": "bug", "hint": "_ bug", "clues": ["bed", "fire", "lady", "litter", "mealy", "doodle", "jitter", "shutter"]}, {"answer": "cake", "hint": "_ cake", "clues": ["cheese", "hot", "oat", "hoe", "griddle", "coffee", "johnny", "cup", "pan", "fruit", "short", "fried", "tea", "beef"]}, {"answer": "cap", "hint": "_ cap", "clues": ["sky", "ice", "mad", "hub", "night", "knee", "skull", "toe", "fools", "red", "white"]}, {"answer": "car", "hint": "_ car", "clues": ["tram", "box", "motor", "hand", "side", "flat", "street"]}, {"answer": "care", "hint": "_ care", "clues": ["after", "child", "skin", "hair", "day"]}, {"answer": "cart", "hint": "_ cart", "clues": ["apple", "push", "dust", "hand", "dog"]}, {"answer": "case", "hint": "_ case", "clues": ["crank", "upper", "brief", "seed", "show", "book", "suit", "pillow", "lower", "nut", "stair"]}, {"answer": "cast", "hint": "_ cast", "clues": ["down", "over", "sports", "broad", "news", "rough"]}, {"answer": "cat", "hint": "_ cat", "clues": ["hell", "tom", "bob", "wild", "pole", "pussy", "copy"]}, {"answer": "chair", "hint": "_ chair", "clues": ["high", "push", "arm", "wheel"]}, {"answer": "child", "hint": "_ child", "clues": ["god", "school", "step", "grand", "brain"]}, {"answer": "cloth", "hint": "_ cloth", "clues": ["hair", "table", "back", "oil", "sack", "broad", "dish", "terry", "cheese", "sail", "wash", "loin"]}, {"answer": "coat", "hint": "_ coat", "clues": ["rain", "waist", "red", "under", "turn", "over", "house", "tail", "top", "great"]}, {"answer": "cock", "hint": "_ cock", "clues": ["pet", "hay", "ball", "pea", "game", "wood", "shuttle", "weather", "stop"]}, {"answer": "comb", "hint": "_ comb", "clues": ["honey", "cox", "curry", "cocks"]}, {"answer": "craft", "hint": "_ craft", "clues": ["needle", "wood", "hand", "water", "air", "hover", "witch", "space", "state", "stage"]}, {"answer": "cut", "hint": "_ cut", "clues": ["wood", "under", "hair", "cross", "upper", "short"]}, {"answer": "day", "hint": "_ day", "clues": ["mid", "pay", "week", "noon", "dooms", "work", "wash", "birth"]}, {"answer": "dog", "hint": "_ dog", "clues": ["watch", "sheep", "under", "bull", "hot", "lap"]}, {"answer": "down", "hint": "_ down", "clues": ["melt", "touch", "count", "knock", "crack", "clamp", "rub", "shut", "let", "spell", "slow", "show", "break", "run", "come", "splash", "eider", "sun", "shake", "thistle"]}, {"answer": "drop", "hint": "_ drop", "clues": ["back", "dew", "gum", "snow", "rain", "air", "tear"]}, {"answer": "eye", "hint": "_ eye", "clues": ["wall", "shut", "buck", "pink"]}, {"answer": "face", "hint": "_ face", "clues": ["coal", "pale", "bold", "type"]}, {"answer": "fall", "hint": "_ fall", "clues": ["night", "water", "pit", "short", "snow", "rain", "foot", "wind", "land", "down", "prat"]}, {"answer": "field", "hint": "_ field", "clues": ["hay", "coal", "out", "gold", "corn", "snow", "mid", "back", "oil", "mine", "air", "battle"]}, {"answer": "fight", "hint": "_ fight", "clues": ["cock", "dog", "gun", "fist", "bull", "prize"]}, {"answer": "finder", "hint": "_ finder", "clues": ["range", "view", "fault", "path"]}, {"answer": "fire", "hint": "_ fire", "clues": ["cross", "hell", "spit", "camp", "wild", "back", "gun"]}, {"answer": "fish", "hint": "_ fish", "clues": ["sail", "sun", "spear", "weak", "cat", "dog", "star", "gold", "lung", "sword", "flat", "cuttle", "white", "shell", "jelly", "gar", "angel", "silver", "cod", "blue"]}, {"answer": "flower", "hint": "_ flower", "clues": ["corn", "may", "wall", "sun", "wild", "wind", "passion"]}, {"answer": "fly", "hint": "_ fly", "clues": ["house", "blow", "butter", "fire", "gad", "saw", "green", "may", "damsel", "dragon", "horse"]}, {"answer": "fold", "hint": "_ fold", "clues": ["bill", "sheep", "center", "blind"]}, {"answer": "foot", "hint": "_ foot", "clues": ["crow", "hot", "flat", "club", "tender", "splay", "web"]}, {"answer": "front", "hint": "_ front", "clues": ["ocean", "water", "lake", "beach", "wave", "battle", "shirt", "sea", "store", "shop"]}, {"answer": "girl", "hint": "_ girl", "clues": ["cow", "show", "sales", "school"]}, {"answer": "glass", "hint": "_ glass", "clues": ["hour", "spy", "eye", "fiber", "wine"]}, {"answer": "goer", "hint": "_ goer", "clues": ["church", "play", "theater", "movie"]}, {"answer": "ground", "hint": "_ ground", "clues": ["play", "camp", "fore", "under", "fair", "back", "battle"]}, {"answer": "guard", "hint": "_ guard", "clues": ["coast", "black", "body", "fire", "rear", "safe", "van", "life", "mud"]}, {"answer": "gun", "hint": "_ gun", "clues": ["flash", "shot", "blow", "air", "hand", "pop"]}, {"answer": "hand", "hint": "_ hand", "clues": ["long", "cow", "short", "stage", "deck", "farm", "back"]}, {"answer": "head", "hint": "_ head", "clues": ["skin", "fat", "bull", "block", "well", "sore", "big", "dead", "maiden", "bridge", "logger", "black", "beach", "figure", "air", "mast", "fore", "hot", "egg", "hammer", "over", "copper", "letter", "pit", "hogs", "arrow", "bone", "fountain", "war", "knuckle", "bulk", "spear", "thunder", "red", "white", "pin", "pot", "sleepy", "tow"]}, {"answer": "hill", "hint": "_ hill", "clues": ["dung", "down", "foot", "ant", "mole"]}, {"answer": "hold", "hint": "_ hold", "clues": ["toe", "hand", "foot", "strangle", "strong", "lease", "house", "free"]}, {"answer": "holder", "hint": "_ holder", "clues": ["lease", "land", "house", "pot", "card", "free", "bond", "share", "policy", "job", "stock", "place", "stake", "small", "slave", "office"]}, {"answer": "hole", "hint": "_ hole", "clues": ["worm", "bung", "fox", "arm", "sink", "cubby", "plug", "spy", "button", "pigeon", "knot", "loop", "pin", "pot", "peep", "blow", "key", "chuck", "hell"]}, {"answer": "hook", "hint": "_ hook", "clues": ["fish", "bill", "tenter", "pot"]}, {"answer": "horn", "hint": "_ horn", "clues": ["prong", "fog", "big", "long", "green", "bull", "short", "shoe"]}, {"answer": "horse", "hint": "_ horse", "clues": ["sea", "clothes", "hobby", "cart", "pack", "work", "war", "race", "saw"]}, {"answer": "hound", "hint": "_ hound", "clues": ["wolf", "blood", "fox", "grey"]}, {"answer": "house", "hint": "_ house", "clues": ["bake", "porter", "whore", "summer", "club", "custom", "ware", "bird", "green", "glass", "block", "cook", "flop", "nut", "steak", "play", "boat", "fire", "bath", "slaughter", "jail", "mad", "poor", "light", "chop", "coffee", "meeting", "guard", "gate", "road", "store", "pilot", "ale", "guest", "doll", "court", "packing", "farm", "work", "wheel", "power", "doss", "round", "dog", "boarding", "hot", "school", "smoke"]}, {"answer": "jack", "hint": "_ jack", "clues": ["apple", "cracker", "steeple", "flap", "lumber", "black"]}, {"answer": "keeper", "hint": "_ keeper", "clues": ["bee", "time", "grounds", "book", "game", "store", "inn", "gate", "peace", "door", "house", "shop", "bar", "score", "goal"]}, {"answer": "keeping", "hint": "_ keeping", "clues": ["house", "safe", "book", "bee", "time", "peace"]}, {"answer": "land", "hint": "_ land", "clues": ["mid", "hinter", "waste", "swamp", "heart", "park", "pasture", "moor", "heath", "dream", "high", "fairy", "marsh", "timber", "wood", "table", "wet", "wonder", "fen", "head", "home", "grass", "main", "mother", "farm", "tide", "father", "low", "border", "gang"]}, {"answer": "leg", "hint": "_ leg", "clues": ["black", "dog", "boot", "bow"]}, {"answer": "life", "hint": "_ life", "clues": ["night", "wild", "after", "low"]}, {"answer": "light", "hint": "_ light", "clues": ["torch", "high", "candle", "star", "gas", "flash", "stop", "head", "lime", "day", "sky", "sun", "lamp", "fan", "fire", "street", "tail", "moon", "search", "spot", "side", "flood", "pen"]}, {"answer": "lighter", "hint": "_ lighter", "clues": ["lamp", "fire", "moon", "high"]}, {"answer": "line", "hint": "_ line", "clues": ["hem", "air", "clothes", "dead", "side", "bread", "shore", "under", "base", "guide", "pipe", "neck", "bow", "date", "border", "waist", "tape", "head", "coast", "life", "timber", "story", "sky", "bee", "water", "blood", "touch", "tow"]}, {"answer": "liner", "hint": "_ liner", "clues": ["jet", "hard", "head", "air", "eye"]}, {"answer": "load", "hint": "_ load", "clues": ["car", "boat", "pay", "bus", "work", "over", "train", "ship"]}, {"answer": "lock", "hint": "_ lock", "clues": ["dead", "grid", "match", "pad", "row", "wed", "air", "oar", "flint", "hammer", "head"]}, {"answer": "maid", "hint": "_ maid", "clues": ["brides", "milk", "hand", "chamber", "bar", "nurse", "dairy", "parlor", "house"]}, {"answer": "maker", "hint": "_ maker", "clues": ["cabinet", "wine", "book", "king", "law", "steel", "dress", "holiday", "match", "merry", "peace", "noise", "home", "watch", "rain", "clock", "money", "film", "auto", "trouble", "tool", "shoe"]}, {"answer": "making", "hint": "_ making", "clues": ["cabinet", "love", "rain", "law", "hay", "dress", "merry", "home", "money", "print", "match"]}, {"answer": "man", "hint": "_ man", "clues": ["wood", "horse", "towns", "grounds", "aircraft", "bats", "grooms", "sales", "cow", "brake", "muscle", "cattle", "line", "news", "select", "dales", "crafts", "bogey", "police", "law", "guards", "bands", "strong", "coach", "signal", "country", "house", "backwoods", "militia", "ice", "church", "service", "bush", "cavalry", "snow", "milk", "handy", "midship", "clans", "bonds", "gentle", "ferry", "rifle", "heads", "door", "plow", "yachts", "work", "chair", "sports", "freed", "infantry", "herds", "dust", "marks", "committee", "lands", "spokes", "warehouse", "jury", "watch", "newspaper", "drafts", "cave", "train", "patrol", "fire", "fisher", "water", "clergy", "council", "alder", "hang", "laundry", "mail", "states", "link", "husband", "assembly", "tax", "fresh", "bow", "hunts", "chess", "repair", "noble", "dairy", "sand", "lumber", "garbage", "mad", "anchor", "air", "space", "crew", "middle", "swords", "gun", "pen", "business", "pitch", "plains", "barge", "oars", "post", "oil", "frog", "bell", "press", "camera", "livery", "fields", "trencher", "kins", "stable", "helms", "congress", "boat", "merchant", "foot", "highway", "artillery", "bar", "frontiers", "vestry", "gas", "lay", "show", "steers", "motor", "yard", "nursery", "trades", "weather", "longshore", "journey", "sea", "railway"]}, {"answer": "mark", "hint": "_ mark", "clues": ["bench", "trade", "pock", "birth", "post", "book", "tide", "finger", "water", "land", "ear", "hall"]}, {"answer": "mast", "hint": "_ mast", "clues": ["top", "main", "mizzen", "fore"]}, {"answer": "master", "hint": "_ master", "clues": ["pay", "choir", "station", "task", "quarter", "spy", "toast", "school", "scout", "house", "grand", "web", "post", "band", "head", "ring", "yard"]}, {"answer": "mate", "hint": "_ mate", "clues": ["room", "school", "check", "house", "mess", "class", "ship", "stable", "work", "team", "flat", "play", "help"]}, {"answer": "meter", "hint": "_ meter", "clues": ["taxi", "audio", "volt", "ohm"]}, {"answer": "mill", "hint": "_ mill", "clues": ["grist", "wind", "saw", "tread"]}, {"answer": "mistress", "hint": "_ mistress", "clues": ["head", "task", "post", "school"]}, {"answer": "monger", "hint": "_ monger", "clues": ["scare", "iron", "war", "rumor", "scandal", "fish", "hate"]}, {"answer": "mother", "hint": "_ mother", "clues": ["grand", "step", "house", "god"]}, {"answer": "mouth", "hint": "_ mouth", "clues": ["motor", "loud", "cotton", "goal", "blabber"]}, {"answer": "nail", "hint": "_ nail", "clues": ["hob", "hang", "thumb", "finger", "door", "toe"]}, {"answer": "neck", "hint": "_ neck", "clues": ["leather", "bottle", "rough", "rubber", "red", "turtle", "crook"]}, {"answer": "nut", "hint": "_ nut", "clues": ["beech", "chest", "butter", "coco", "cob", "hazel", "pea", "ground"]}, {"answer": "off", "hint": "_ off", "clues": ["cut", "play", "run", "take", "kick", "blast", "turn", "lift", "stand", "knock", "fall"]}, {"answer": "out", "hint": "_ out", "clues": ["check", "buy", "cut", "put", "wash", "take", "hold", "blow", "fade", "lay", "break", "walk", "work", "turn", "knock", "close", "black", "strike", "fall", "drop", "print", "look", "shoot", "hide", "cook", "shake", "shut", "white", "hand", "hang", "sell", "fold", "dug", "lock", "try"]}, {"answer": "over", "hint": "_ over", "clues": ["change", "lay", "make", "walk", "cross", "push", "stop", "pull", "left", "fly", "pop", "roll", "sleep", "spill", "hand", "hang", "turn", "hold", "take"]}, {"answer": "pad", "hint": "_ pad", "clues": ["key", "launch", "note", "scratch"]}, {"answer": "pan", "hint": "_ pan", "clues": ["bed", "dust", "dish", "sauce", "skid"]}, {"answer": "paper", "hint": "_ paper", "clues": ["note", "wall", "news", "sand", "fly"]}, {"answer": "pence", "hint": "_ pence", "clues": ["eight", "four", "two", "nine", "six", "three"]}, {"answer": "person", "hint": "_ person", "clues": ["anchor", "chair", "lay", "spokes", "business", "sales"]}, {"answer": "phone", "hint": "_ phone", "clues": ["cell", "head", "ear", "speaker"]}, {"answer": "piece", "hint": "_ piece", "clues": ["altar", "show", "mantel", "eye", "cod", "time", "mouth", "hair", "tail", "center", "head", "master", "work", "ear"]}, {"answer": "pin", "hint": "_ pin", "clues": ["ten", "stick", "nine", "hat", "hair", "push", "king", "tie", "head", "clothes"]}, {"answer": "pipe", "hint": "_ pipe", "clues": ["blow", "bag", "hose", "tail", "drain", "wind", "stand", "stove", "horn"]}, {"answer": "pit", "hint": "_ pit", "clues": ["flea", "cock", "arm", "sand"]}, {"answer": "place", "hint": "_ place", "clues": ["birth", "market", "common", "show", "fire", "work"]}, {"answer": "plane", "hint": "_ plane", "clues": ["war", "tail", "air", "sail", "sea"]}, {"answer": "plate", "hint": "_ plate", "clues": ["breast", "name", "book", "face", "copper", "foot", "door", "hot", "tin", "boiler", "number"]}, {"answer": "point", "hint": "_ point", "clues": ["stand", "blue", "check", "pin", "gun", "end", "needle", "ball", "view", "mid"]}, {"answer": "pole", "hint": "_ pole", "clues": ["ridge", "flag", "may", "tad"]}, {"answer": "post", "hint": "_ post", "clues": ["bed", "mile", "gate", "guide", "door", "lamp", "goal", "sign"]}, {"answer": "pot", "hint": "_ pot", "clues": ["crack", "tea", "flower", "fuss", "chamber", "honey", "jack", "sex", "stock", "hot", "coffee"]}, {"answer": "power", "hint": "_ power", "clues": ["brain", "will", "candle", "horse", "fire"]}, {"answer": "print", "hint": "_ print", "clues": ["foot", "finger", "thumb", "blue", "off", "news", "over"]}, {"answer": "rest", "hint": "_ rest", "clues": ["back", "arm", "foot", "head"]}, {"answer": "roll", "hint": "_ roll", "clues": ["jelly", "pay", "bank", "bed"]}, {"answer": "room", "hint": "_ room", "clues": ["work", "store", "green", "bed", "school", "board", "sick", "class", "ball", "bar", "wash", "lunch", "sales", "club", "home", "tap", "bath", "head", "ward", "back", "play", "tea", "news", "house", "stock", "pool", "dark", "guard", "state", "show", "rest", "coat", "cloak", "court", "check", "guest", "strong"]}, {"answer": "saw", "hint": "_ saw", "clues": ["rip", "jig", "chain", "see", "hack", "hand", "buck", "fret", "whip"]}, {"answer": "screen", "hint": "_ screen", "clues": ["wind", "sun", "silk", "smoke", "touch"]}, {"answer": "seed", "hint": "_ seed", "clues": ["rape", "bird", "cotton", "oil", "hay"]}, {"answer": "set", "hint": "_ set", "clues": ["head", "mind", "off", "sun", "hand"]}, {"answer": "shed", "hint": "_ shed", "clues": ["cow", "water", "wood", "blood"]}, {"answer": "sheet", "hint": "_ sheet", "clues": ["work", "ground", "spread", "broad"]}, {"answer": "shell", "hint": "_ shell", "clues": ["sea", "cockle", "tortoise", "egg", "nut", "bomb"]}, {"answer": "shift", "hint": "_ shift", "clues": ["gear", "down", "make", "red"]}, {"answer": "ship", "hint": "_ ship", "clues": ["troop", "showman", "flag", "swordsman", "battle", "light", "space", "chairman", "war", "horseman", "steam", "air"]}, {"answer": "shoe", "hint": "_ shoe", "clues": ["gum", "horse", "snow", "over"]}, {"answer": "shop", "hint": "_ shop", "clues": ["barber", "book", "pawn", "bake", "toy", "work", "sweat", "tea"]}, {"answer": "shot", "hint": "_ shot", "clues": ["hot", "buck", "sling", "mug", "pot", "grape", "ear", "gun", "snap"]}, {"answer": "sickness", "hint": "_ sickness", "clues": ["home", "air", "heart", "sea"]}, {"answer": "side", "hint": "_ side", "clues": ["lake", "curb", "near", "fire", "under", "top", "sea", "dock", "way", "country", "river", "back", "hill", "bed", "road", "down", "ring", "mountain", "off", "water"]}, {"answer": "skin", "hint": "_ skin", "clues": ["sheep", "doe", "oil", "buck", "goat", "coon", "seal", "deer", "onion", "kid", "wine", "lamb", "pig", "calf", "bear", "shark", "mole"]}, {"answer": "slip", "hint": "_ slip", "clues": ["land", "gym", "pay", "cow"]}, {"answer": "smith", "hint": "_ smith", "clues": ["gold", "lock", "tin", "word", "silver", "black", "gun"]}, {"answer": "song", "hint": "_ song", "clues": ["bird", "plain", "sing", "even", "folk"]}, {"answer": "space", "hint": "_ space", "clues": ["back", "crawl", "air", "work"]}, {"answer": "spring", "hint": "_ spring", "clues": ["hand", "well", "hair", "off", "main"]}, {"answer": "stand", "hint": "_ stand", "clues": ["hand", "kick", "head", "cab", "ink", "news", "band", "grand", "wash"]}, {"answer": "step", "hint": "_ step", "clues": ["quick", "lock", "foot", "door", "side"]}, {"answer": "stick", "hint": "_ stick", "clues": ["dip", "joy", "night", "candle", "drum", "gear", "yard", "match", "chop", "slap", "lip", "broom"]}, {"answer": "stock", "hint": "_ stock", "clues": ["feed", "blood", "live", "head", "root", "laughing"]}, {"answer": "stone", "hint": "_ stone", "clues": ["sand", "lime", "blood", "gall", "whet", "hail", "tomb", "mile", "grind", "head", "cap", "gem", "brown", "soap", "moon", "mill", "cobble", "lode", "touch", "grave", "flag", "hearth", "key", "free", "curb", "corner", "silt"]}, {"answer": "storm", "hint": "_ storm", "clues": ["brain", "thunder", "hail", "snow", "sand", "fire", "wind"]}, {"answer": "stream", "hint": "_ stream", "clues": ["air", "blood", "main", "slip", "mid"]}, {"answer": "string", "hint": "_ string", "clues": ["ham", "draw", "shoe", "bow"]}, {"answer": "stroke", "hint": "_ stroke", "clues": ["breast", "heat", "master", "side", "sun", "back", "key"]}, {"answer": "suit", "hint": "_ suit", "clues": ["sweat", "law", "swim", "space", "pant", "snow", "jump"]}, {"answer": "table", "hint": "_ table", "clues": ["time", "work", "turn", "round"]}, {"answer": "tail", "hint": "_ tail", "clues": ["cat", "cock", "horse", "bob", "wag", "fan", "white", "swallow", "dove", "shirt", "pony", "cotton", "pig"]}, {"answer": "tale", "hint": "_ tale", "clues": ["tattle", "fairy", "tell", "folk"]}, {"answer": "time", "hint": "_ time", "clues": ["over", "tea", "lunch", "life", "meal", "play", "night", "bed", "dinner", "spring", "summer", "show", "peace", "mean", "winter", "rag", "half", "supper", "day", "war", "down"]}, {"answer": "top", "hint": "_ top", "clues": ["flat", "hill", "tree", "hard", "house", "tip", "desk", "black", "lap", "table", "roof"]}, {"answer": "trap", "hint": "_ trap", "clues": ["clap", "fire", "mouse", "death", "sun", "rat"]}, {"answer": "walk", "hint": "_ walk", "clues": ["side", "board", "cat", "moon", "cake", "cross"]}, {"answer": "walker", "hint": "_ walker", "clues": ["floor", "sleep", "jay", "street"]}, {"answer": "wall", "hint": "_ wall", "clues": ["sea", "side", "fire", "dry"]}, {"answer": "ware", "hint": "_ ware", "clues": ["dish", "flat", "china", "cook", "iron", "glass", "kitchen", "firm", "table", "free", "hard", "tin", "oven", "dinner", "earthen", "group", "silver", "stone", "share", "enamel", "soft"]}, {"answer": "wash", "hint": "_ wash", "clues": ["white", "back", "mouth", "eye", "hog"]}, {"answer": "water", "hint": "_ water", "clues": ["rain", "break", "salt", "white", "tide", "sea", "back", "fresh", "dish", "fire"]}, {"answer": "way", "hint": "_ way", "clues": ["walk", "hatch", "race", "head", "express", "gate", "road", "slip", "companion", "speed", "air", "spill", "entry", "rail", "passage", "run", "path", "cause", "mid", "drive", "high", "tram", "arch", "lee", "door", "stair", "carriage", "sea", "motor", "taxi", "fly", "tide", "water", "free", "gang", "belt", "hall", "alley", "clear", "park"]}, {"answer": "wear", "hint": "_ wear", "clues": ["swim", "knit", "beach", "sports", "night", "foot", "under", "outer", "sleep"]}, {"answer": "weed", "hint": "_ weed", "clues": ["rag", "duck", "bind", "chick", "sea", "loco", "milk", "tumble"]}, {"answer": "weight", "hint": "_ weight", "clues": ["bantam", "light", "middle", "fly", "feather", "penny", "paper", "hundred", "over", "make", "welter", "heavy"]}, {"answer": "wheel", "hint": "_ wheel", "clues": ["cog", "cart", "free", "pin", "water", "fly"]}, {"answer": "wife", "hint": "_ wife", "clues": ["fish", "ale", "house", "mid"]}, {"answer": "wind", "hint": "_ wind", "clues": ["cross", "head", "whirl", "tail", "wood"]}, {"answer": "woman", "hint": "_ woman", "clues": ["bond", "congress", "spokes", "frontiers", "states", "jury", "oars", "clans", "business", "air", "news", "committee", "kins", "chair", "council", "sales", "country", "sports", "mad", "washer", "newspaper", "yachts", "laundry", "gentle", "noble", "horse", "assembly", "police", "needle"]}, {"answer": "wood", "hint": "_ wood", "clues": ["match", "cotton", "brush", "beech", "box", "pulp", "rose", "dog", "soft", "iron", "hard", "dead", "drift", "sap", "green", "red", "bass", "ply", "worm", "satin", "button", "bent", "fire", "heart", "sandal"]}, {"answer": "word", "hint": "_ word", "clues": ["loan", "swear", "head", "buzz", "cross", "watch", "catch", "pass"]}, {"answer": "work", "hint": "_ work", "clues": ["course", "fancy", "school", "case", "ground", "busy", "lace", "clock", "crewel", "brick", "class", "house", "lattice", "paper", "art", "body", "cabinet", "field", "iron", "team", "stone", "life", "wax", "fire", "earth", "guess", "fret", "pipe", "needle", "breast", "plaster", "wicker", "patch", "spade", "over", "home", "frame", "net", "hand", "brush", "bridge", "metal", "hack", "wood", "piece", "foot", "open"]}, {"answer": "worker", "hint": "_ worker", "clues": ["steel", "case", "field", "metal", "dock", "wood"]}, {"answer": "works", "hint": "_ works", "clues": ["water", "steel", "gas", "iron"]}, {"answer": "worm", "hint": "_ worm", "clues": ["ring", "cut", "earth", "angle", "round", "tape", "hook", "book", "silk", "glow", "blood", "inch", "wood", "flat"]}, {"answer": "worthiness", "hint": "_ worthiness", "clues": ["trust", "air", "credit", "praise", "sea"]}, {"answer": "wright", "hint": "_ wright", "clues": ["play", "ship", "mill", "wain", "wheel"]}, {"answer": "writer", "hint": "_ writer", "clues": ["sports", "teletype", "song", "ghost", "under", "copy", "screen", "speech", "script", "type"]}, {"answer": "yard", "hint": "_ yard", "clues": ["back", "church", "lumber", "grave", "junk", "barn", "court", "door", "dock", "brick", "school", "vine", "stock", "farm", "boat", "steel", "ship"]}], "portion": 0.9}, {"name": "prefixes", "groups": [{"answer": "after", "hint": "after _", "clues": ["birth", "burner", "care", "effect", "glow", "image", "life", "math", "noon", "shock", "taste", "thought"]}, {"answer": "air", "hint": "air _", "clues": ["brush", "bus", "craft", "crew", "drome", "drop", "fare", "field", "flow", "foil", "frame", "gun", "head", "lift", "line", "lock", "mail", "plane", "port", "ship", "sickness", "space", "speed", "stream", "strip", "way", "worthiness"]}, {"answer": "arm", "hint": "arm _", "clues": ["band", "chair", "hole", "pit", "rest"]}, {"answer": "back", "hint": "back _", "clues": ["ache", "bench", "biter", "board", "bone", "chat", "cloth", "door", "drop", "field", "fire", "gammon", "ground", "hand", "hoe", "lash", "log", "pack", "packer", "rest", "room", "seat", "side", "slapper", "slider", "sliding", "space", "spin", "stage", "stairs", "stop", "stroke", "talk", "wash", "water", "woods", "yard"]}, {"answer": "ball", "hint": "ball _", "clues": ["cock", "game", "park", "player", "point", "room"]}, {"answer": "band", "hint": "band _", "clues": ["box", "leader", "master", "stand", "wagon", "width"]}, {"answer": "bar", "hint": "bar _", "clues": ["bell", "berry", "keep", "keeper", "maid", "room", "tender"]}, {"answer": "bath", "hint": "bath _", "clues": ["house", "robe", "room", "tub"]}, {"answer": "battle", "hint": "battle _", "clues": ["field", "front", "ground", "ship"]}, {"answer": "beach", "hint": "beach _", "clues": ["comber", "front", "head", "wear"]}, {"answer": "bed", "hint": "bed _", "clues": ["bug", "chamber", "clothes", "fellow", "pan", "post", "rock", "roll", "room", "side", "sit", "sitter", "sore", "spread", "stead", "time"]}, {"answer": "bee", "hint": "bee _", "clues": ["bread", "hive", "keeper", "keeping", "line"]}, {"answer": "beef", "hint": "beef _", "clues": ["burger", "cake", "eater", "steak"]}, {"answer": "bird", "hint": "bird _", "clues": ["bath", "brain", "cage", "house", "lime", "seed", "song"]}, {"answer": "birth", "hint": "birth _", "clues": ["day", "mark", "place", "rate", "right"]}, {"answer": "black", "hint": "black _", "clues": ["ball", "berry", "bird", "board", "guard", "head", "jack", "leg", "list", "mail", "mailer", "out", "smith", "snake", "thorn", "top", "topping"]}, {"answer": "blood", "hint": "blood _", "clues": ["bath", "hound", "letting", "line", "mobile", "shed", "stain", "stock", "stone", "stream", "sucker", "worm"]}, {"answer": "blow", "hint": "blow _", "clues": ["fly", "gun", "hard", "hole", "lamp", "out", "pipe", "torch"]}, {"answer": "blue", "hint": "blue _", "clues": ["bell", "berry", "bird", "bonnet", "bottle", "fish", "gill", "grass", "jacket", "nose", "point", "print", "stocking"]}, {"answer": "boat", "hint": "boat _", "clues": ["house", "load", "swain", "yard"]}, {"answer": "bob", "hint": "bob _", "clues": ["cat", "sled", "sledding", "sleigh", "tail", "white"]}, {"answer": "body", "hint": "body _", "clues": ["builder", "building", "guard", "work"]}, {"answer": "book", "hint": "book _", "clues": ["binder", "binding", "case", "end", "keeper", "keeping", "maker", "mark", "mobile", "plate", "seller", "shelf", "shop", "stall", "store", "worm"]}, {"answer": "boot", "hint": "boot _", "clues": ["black", "lace", "leg", "legging", "strap"]}, {"answer": "bow", "hint": "bow _", "clues": ["leg", "line", "sprit", "string"]}, {"answer": "brain", "hint": "brain _", "clues": ["child", "power", "storm", "washing", "wave"]}, {"answer": "bread", "hint": "bread _", "clues": ["basket", "board", "box", "crumb", "fruit", "line", "winner"]}, {"answer": "break", "hint": "break _", "clues": ["away", "down", "fast", "out", "through", "water"]}, {"answer": "breast", "hint": "breast _", "clues": ["bone", "plate", "stroke", "work"]}, {"answer": "brick", "hint": "brick _", "clues": ["bat", "layer", "laying", "work", "yard"]}, {"answer": "broad", "hint": "broad _", "clues": ["cast", "caster", "cloth", "loom", "sheet", "side", "sword"]}, {"answer": "buck", "hint": "buck _", "clues": ["board", "eye", "saw", "shot", "skin", "tooth", "wheat"]}, {"answer": "bull", "hint": "bull _", "clues": ["dog", "dozer", "fight", "fighter", "finch", "frog", "head", "horn", "pen", "ring"]}, {"answer": "butter", "hint": "butter _", "clues": ["ball", "cup", "fat", "fingers", "fly", "milk", "nut", "scotch"]}, {"answer": "candle", "hint": "candle _", "clues": ["light", "power", "stick", "wick"]}, {"answer": "car", "hint": "car _", "clues": ["fare", "hop", "jacking", "load", "port"]}, {"answer": "card", "hint": "card _", "clues": ["board", "holder", "sharp", "sharper"]}, {"answer": "cat", "hint": "cat _", "clues": ["bird", "boat", "call", "fish", "gut", "nap", "nip", "tail", "walk"]}, {"answer": "check", "hint": "check _", "clues": ["book", "list", "mate", "out", "point", "room"]}, {"answer": "cheese", "hint": "cheese _", "clues": ["board", "burger", "cake", "cloth"]}, {"answer": "cock", "hint": "cock _", "clues": ["crow", "fight", "pit", "roach", "tail"]}, {"answer": "cook", "hint": "cook _", "clues": ["book", "house", "out", "ware"]}, {"answer": "copy", "hint": "copy _", "clues": ["book", "cat", "right", "writer"]}, {"answer": "corn", "hint": "corn _", "clues": ["bread", "cob", "crake", "field", "flour", "flower", "meal", "stalk", "starch"]}, {"answer": "cotton", "hint": "cotton _", "clues": ["mouth", "seed", "tail", "wood"]}, {"answer": "cow", "hint": "cow _", "clues": ["bell", "bird", "boy", "catcher", "girl", "hand", "herd", "hide", "lick", "poke", "pox", "puncher", "shed", "slip"]}, {"answer": "cross", "hint": "cross _", "clues": ["bar", "beam", "bones", "bow", "breed", "check", "cut", "fire", "hatch", "over", "patch", "road", "talk", "walk", "wind", "word"]}, {"answer": "cut", "hint": "cut _", "clues": ["away", "back", "off", "out", "throat", "worm"]}, {"answer": "day", "hint": "day _", "clues": ["bed", "break", "care", "dream", "dreamer", "light", "time"]}, {"answer": "dead", "hint": "dead _", "clues": ["beat", "bolt", "head", "line", "lock", "wood"]}, {"answer": "death", "hint": "death _", "clues": ["bed", "blow", "trap", "watch"]}, {"answer": "dish", "hint": "dish _", "clues": ["cloth", "pan", "rag", "towel", "ware", "washer", "water"]}, {"answer": "dog", "hint": "dog _", "clues": ["cart", "fight", "fish", "house", "leg", "sled", "trot", "wood"]}, {"answer": "door", "hint": "door _", "clues": ["bell", "jamb", "keeper", "knob", "knocker", "mat", "nail", "plate", "post", "step", "stop", "way", "yard"]}, {"answer": "down", "hint": "down _", "clues": ["beat", "cast", "draft", "fall", "grade", "hill", "pour", "shift", "side", "sizing", "stage", "swing", "time", "town", "turn"]}, {"answer": "ear", "hint": "ear _", "clues": ["ache", "drum", "lobe", "mark", "muff", "phone", "piece", "plug", "ring", "shot", "wax", "wig"]}, {"answer": "egg", "hint": "egg _", "clues": ["beater", "cup", "head", "nog", "plant", "shell"]}, {"answer": "eye", "hint": "eye _", "clues": ["ball", "brow", "glass", "lash", "lid", "liner", "piece", "shadow", "sight", "sore", "strain", "tooth", "wash", "witness"]}, {"answer": "farm", "hint": "farm _", "clues": ["hand", "house", "land", "stead", "yard"]}, {"answer": "feed", "hint": "feed _", "clues": ["back", "bag", "lot", "stock"]}, {"answer": "finger", "hint": "finger _", "clues": ["board", "mark", "nail", "print", "tip"]}, {"answer": "fire", "hint": "fire _", "clues": ["arm", "ball", "bomb", "box", "brand", "break", "brick", "bug", "cracker", "damp", "fighter", "fly", "guard", "house", "light", "place", "plug", "power", "side", "storm", "trap", "wall", "water", "wood", "work"]}, {"answer": "fish", "hint": "fish _", "clues": ["bowl", "hook", "monger", "net", "pond", "wife"]}, {"answer": "flag", "hint": "flag _", "clues": ["pole", "ship", "staff", "stone"]}, {"answer": "flash", "hint": "flash _", "clues": ["back", "bulb", "card", "gun", "light"]}, {"answer": "flat", "hint": "flat _", "clues": ["bed", "boat", "car", "fish", "foot", "iron", "mate", "top", "ware", "worm"]}, {"answer": "fly", "hint": "fly _", "clues": ["catcher", "leaf", "over", "paper", "past", "speck", "swatter", "way", "weight", "wheel"]}, {"answer": "foot", "hint": "foot _", "clues": ["ball", "bridge", "fall", "hill", "hold", "lights", "locker", "note", "path", "plate", "print", "race", "rest", "step", "stool", "wear", "work"]}, {"answer": "fore", "hint": "fore _", "clues": ["ground", "head", "mast", "name", "runner"]}, {"answer": "four", "hint": "four _", "clues": ["pence", "score", "some", "square"]}, {"answer": "fox", "hint": "fox _", "clues": ["glove", "hole", "hound", "hunt", "trot"]}, {"answer": "free", "hint": "free _", "clues": ["hold", "holder", "lance", "loader", "masonry", "stone", "style", "thinker", "thinking", "ware", "way", "wheel"]}, {"answer": "gate", "hint": "gate _", "clues": ["crasher", "house", "keeper", "post", "way"]}, {"answer": "goal", "hint": "goal _", "clues": ["keeper", "mouth", "post", "tender"]}, {"answer": "god", "hint": "god _", "clues": ["child", "daughter", "father", "mother", "parent", "send", "son"]}, {"answer": "gold", "hint": "gold _", "clues": ["brick", "field", "finch", "fish", "mine", "smith"]}, {"answer": "grand", "hint": "grand _", "clues": ["aunt", "child", "dad", "daddy", "daughter", "father", "master", "mother", "nephew", "niece", "parent", "son", "stand", "uncle"]}, {"answer": "green", "hint": "green _", "clues": ["back", "belt", "fly", "gage", "grocer", "horn", "house", "mail", "room", "sward", "wood"]}, {"answer": "ground", "hint": "ground _", "clues": ["breaking", "hog", "nut", "sheet", "work"]}, {"answer": "gun", "hint": "gun _", "clues": ["boat", "fight", "fire", "metal", "point", "powder", "runner", "running", "shot", "slinger", "smith", "wale"]}, {"answer": "hair", "hint": "hair _", "clues": ["ball", "brush", "care", "cloth", "cut", "dresser", "dressing", "grip", "line", "net", "piece", "pin", "splitter", "splitting", "spring", "style", "stylist"]}, {"answer": "half", "hint": "half _", "clues": ["back", "penny", "time", "tone"]}, {"answer": "hand", "hint": "hand _", "clues": ["bag", "ball", "barrow", "basin", "bill", "book", "car", "clasp", "craft", "cuff", "gun", "hold", "kerchief", "maid", "maiden", "out", "over", "rail", "saw", "set", "shake", "shaking", "spring", "stand", "work", "writing"]}, {"answer": "hard", "hint": "hard _", "clues": ["back", "ball", "board", "cover", "liner", "tack", "top", "ware", "wood"]}, {"answer": "hay", "hint": "hay _", "clues": ["cock", "field", "loft", "making", "mow", "rick", "seed", "stack", "wire"]}, {"answer": "head", "hint": "head _", "clues": ["ache", "band", "board", "cheese", "count", "dress", "gear", "hunter", "lamp", "land", "light", "line", "lock", "master", "mastership", "mistress", "phone", "piece", "pin", "quarters", "rest", "room", "scarf", "set", "stall", "stand", "stock", "stone", "waiter", "way", "wind", "word"]}, {"answer": "heart", "hint": "heart _", "clues": ["ache", "beat", "break", "burn", "land", "sickness", "strings", "throb", "wood"]}, {"answer": "high", "hint": "high _", "clues": ["ball", "boy", "brow", "chair", "land", "light", "lighter", "road", "way"]}, {"answer": "home", "hint": "home _", "clues": ["body", "coming", "land", "maker", "making", "owner", "page", "room", "sickness", "spun", "stead", "stretch", "town", "work"]}, {"answer": "honey", "hint": "honey _", "clues": ["bee", "comb", "dew", "moon", "pot", "suckle"]}, {"answer": "horse", "hint": "horse _", "clues": ["back", "box", "flesh", "fly", "hair", "hide", "laugh", "play", "power", "radish", "shoe", "tail", "whip", "whipping"]}, {"answer": "hot", "hint": "hot _", "clues": ["bed", "box", "cake", "dog", "foot", "head", "house", "plate", "pot", "shot"]}, {"answer": "house", "hint": "house _", "clues": ["boat", "breaker", "breaking", "cleaning", "coat", "fly", "hold", "holder", "husband", "keeper", "keeping", "lights", "maid", "master", "mate", "mother", "plant", "room", "top", "warming", "wife", "work"]}, {"answer": "ice", "hint": "ice _", "clues": ["berg", "boat", "box", "breaker", "cap", "pick"]}, {"answer": "iron", "hint": "iron _", "clues": ["clad", "monger", "ware", "wood", "work"]}, {"answer": "jack", "hint": "jack _", "clues": ["ass", "boot", "hammer", "knife", "pot", "rabbit", "straw"]}, {"answer": "key", "hint": "key _", "clues": ["board", "hole", "note", "pad", "stone", "stroke"]}, {"answer": "knock", "hint": "knock _", "clues": ["about", "down", "off", "out"]}, {"answer": "lady", "hint": "lady _", "clues": ["bird", "bug", "finger", "love"]}, {"answer": "lamp", "hint": "lamp _", "clues": ["black", "light", "lighter", "post", "shade"]}, {"answer": "land", "hint": "land _", "clues": ["fall", "fill", "holder", "holding", "lady", "lord", "lubber", "mark", "mass", "owner", "scape", "slide", "slip"]}, {"answer": "lap", "hint": "lap _", "clues": ["board", "dog", "top", "wing"]}, {"answer": "law", "hint": "law _", "clues": ["breaker", "giver", "maker", "making", "suit"]}, {"answer": "lay", "hint": "lay _", "clues": ["about", "off", "out", "over", "person"]}, {"answer": "life", "hint": "life _", "clues": ["blood", "boat", "guard", "line", "saver", "saving", "span", "style", "time", "work"]}, {"answer": "lock", "hint": "lock _", "clues": ["jaw", "out", "smith", "step"]}, {"answer": "long", "hint": "long _", "clues": ["boat", "bow", "hand", "horn", "ways"]}, {"answer": "low", "hint": "low _", "clues": ["boy", "brow", "land", "life"]}, {"answer": "main", "hint": "main _", "clues": ["frame", "land", "mast", "sail", "spring", "stay", "stream"]}, {"answer": "man", "hint": "man _", "clues": ["drill", "hole", "hunt", "kind", "power", "servant", "slaughter", "trap"]}, {"answer": "match", "hint": "match _", "clues": ["book", "box", "lock", "maker", "making", "stick", "wood"]}, {"answer": "mid", "hint": "mid _", "clues": ["air", "day", "field", "land", "night", "point", "rib", "section", "stream", "summer", "term", "way", "week", "wife", "winter"]}, {"answer": "milk", "hint": "milk _", "clues": ["maid", "shake", "sop", "weed"]}, {"answer": "mill", "hint": "mill _", "clues": ["pond", "race", "stone", "wright"]}, {"answer": "money", "hint": "money _", "clues": ["bag", "lender", "maker", "making"]}, {"answer": "moon", "hint": "moon _", "clues": ["beam", "light", "lighter", "shine", "stone", "walk"]}, {"answer": "motor", "hint": "motor _", "clues": ["bike", "boat", "car", "cycle", "cycling", "cyclist", "mouth", "way"]}, {"answer": "neck", "hint": "neck _", "clues": ["band", "lace", "line", "tie"]}, {"answer": "news", "hint": "news _", "clues": ["agent", "boy", "cast", "caster", "dealer", "flash", "letter", "paper", "print", "reader", "reel", "room", "stand"]}, {"answer": "night", "hint": "night _", "clues": ["cap", "clothes", "club", "dress", "fall", "gown", "hawk", "life", "mare", "shade", "shirt", "spot", "stick", "time", "wear"]}, {"answer": "nose", "hint": "nose _", "clues": ["bag", "bleed", "dive", "gay"]}, {"answer": "nut", "hint": "nut _", "clues": ["case", "cracker", "hatch", "house", "shell"]}, {"answer": "off", "hint": "off _", "clues": ["print", "set", "side", "spring", "stage"]}, {"answer": "oil", "hint": "oil _", "clues": ["can", "cloth", "field", "seed", "skin"]}, {"answer": "out", "hint": "out _", "clues": ["back", "field", "fitter", "skirts", "station"]}, {"answer": "over", "hint": "over _", "clues": ["abundance", "achiever", "acting", "age", "all", "bid", "bite", "burden", "cast", "charge", "coat", "confidence", "draft", "drive", "eating", "emphasis", "estimate", "estimation", "exertion", "exposure", "feeding", "flight", "flow", "growth", "hang", "haul", "head", "indulgence", "kill", "lap", "lapping", "lay", "load", "look", "lord", "much", "pass", "payment", "population", "pressure", "print", "production", "rating", "reaction", "ride", "run", "seer", "shoe", "shoot", "sight", "spill", "statement", "supply", "taking", "throw", "time", "tone", "turn", "use", "valuation", "view", "weight", "work"]}, {"answer": "paper", "hint": "paper _", "clues": ["back", "board", "boy", "clip", "hanger", "hanging", "weight", "work"]}, {"answer": "para", "hint": "para _", "clues": ["gliding", "medic", "trooper", "troops"]}, {"answer": "pay", "hint": "pay _", "clues": ["back", "check", "day", "load", "master", "off", "roll", "slip"]}, {"answer": "pea", "hint": "pea _", "clues": ["cock", "fowl", "hen", "nut"]}, {"answer": "peace", "hint": "peace _", "clues": ["keeper", "keeping", "maker", "time"]}, {"answer": "pig", "hint": "pig _", "clues": ["pen", "skin", "sty", "swill", "tail"]}, {"answer": "pin", "hint": "pin _", "clues": ["ball", "cushion", "head", "hole", "point", "prick", "stripe", "wheel"]}, {"answer": "play", "hint": "play _", "clues": ["acting", "back", "bill", "book", "boy", "fellow", "goer", "ground", "house", "mate", "off", "pen", "room", "school", "thing", "time", "wright"]}, {"answer": "post", "hint": "post _", "clues": ["bag", "box", "card", "code", "mark", "master", "mistress"]}, {"answer": "pot", "hint": "pot _", "clues": ["ash", "belly", "boiler", "head", "herb", "holder", "hole", "hook", "luck", "pie", "sherd", "shot"]}, {"answer": "push", "hint": "push _", "clues": ["cart", "chair", "over", "pin"]}, {"answer": "quarter", "hint": "quarter _", "clues": ["back", "deck", "final", "master", "staff"]}, {"answer": "quick", "hint": "quick _", "clues": ["lime", "sand", "silver", "step"]}, {"answer": "race", "hint": "race _", "clues": ["course", "horse", "track", "way"]}, {"answer": "rag", "hint": "rag _", "clues": ["bag", "tag", "time", "weed", "wort"]}, {"answer": "rain", "hint": "rain _", "clues": ["bow", "coat", "drop", "fall", "maker", "making", "storm", "water"]}, {"answer": "red", "hint": "red _", "clues": ["bird", "breast", "cap", "coat", "head", "neck", "shift", "wood"]}, {"answer": "ring", "hint": "ring _", "clues": ["leader", "master", "side", "worm"]}, {"answer": "road", "hint": "road _", "clues": ["bed", "block", "house", "kill", "runner", "side", "way"]}, {"answer": "round", "hint": "round _", "clues": ["about", "house", "table", "worm"]}, {"answer": "run", "hint": "run _", "clues": ["about", "away", "down", "off"]}, {"answer": "sail", "hint": "sail _", "clues": ["boat", "cloth", "fish", "plane"]}, {"answer": "sales", "hint": "sales _", "clues": ["clerk", "girl", "lady", "person", "room"]}, {"answer": "salt", "hint": "salt _", "clues": ["box", "cellar", "peter", "shaker", "water"]}, {"answer": "sand", "hint": "sand _", "clues": ["bag", "bank", "bar", "blast", "blaster", "box", "lot", "paper", "piper", "pit", "stone", "storm"]}, {"answer": "saw", "hint": "saw _", "clues": ["bones", "buck", "dust", "fly", "horse", "mill", "tooth"]}, {"answer": "school", "hint": "school _", "clues": ["bag", "book", "boy", "child", "days", "fellow", "friend", "girl", "house", "master", "mate", "mistress", "room", "teacher", "work", "yard"]}, {"answer": "sea", "hint": "sea _", "clues": ["bed", "bird", "board", "coast", "faring", "food", "front", "gull", "horse", "plane", "port", "scape", "shell", "shore", "sickness", "side", "wall", "water", "way", "weed", "worthiness"]}, {"answer": "share", "hint": "share _", "clues": ["cropper", "holder", "holding", "ware"]}, {"answer": "sheep", "hint": "sheep _", "clues": ["dog", "fold", "herder", "skin"]}, {"answer": "ship", "hint": "ship _", "clues": ["builder", "building", "load", "mate", "owner", "wreck", "wright", "yard"]}, {"answer": "shirt", "hint": "shirt _", "clues": ["front", "sleeve", "tail", "waist"]}, {"answer": "shoe", "hint": "shoe _", "clues": ["box", "horn", "lace", "maker", "shine", "string", "tree"]}, {"answer": "shop", "hint": "shop _", "clues": ["front", "keeper", "lifter", "lifting"]}, {"answer": "short", "hint": "short _", "clues": ["bread", "cake", "coming", "cut", "fall", "hand", "horn", "list", "stop"]}, {"answer": "show", "hint": "show _", "clues": ["boat", "case", "down", "girl", "jumping", "piece", "place", "room", "stopper", "time"]}, {"answer": "side", "hint": "side _", "clues": ["bar", "board", "car", "kick", "light", "line", "saddle", "show", "step", "stroke", "swipe", "track", "walk", "wall", "winder"]}, {"answer": "sky", "hint": "sky _", "clues": ["cap", "diver", "diving", "lark", "light", "line", "rocket", "scraper", "writing"]}, {"answer": "sleep", "hint": "sleep _", "clues": ["over", "walker", "walking", "wear"]}, {"answer": "slip", "hint": "slip _", "clues": ["cover", "knot", "stream", "way"]}, {"answer": "snow", "hint": "snow _", "clues": ["ball", "bank", "bird", "board", "boarder", "drift", "drop", "fall", "field", "flake", "mobile", "plough", "plow", "shoe", "storm", "suit"]}, {"answer": "soft", "hint": "soft _", "clues": ["back", "ball", "ware", "wood"]}, {"answer": "south", "hint": "south _", "clues": ["east", "easter", "paw", "west", "wester"]}, {"answer": "space", "hint": "space _", "clues": ["craft", "flight", "ship", "suit"]}, {"answer": "sports", "hint": "sports _", "clues": ["cast", "caster", "wear", "writer"]}, {"answer": "stand", "hint": "stand _", "clues": ["off", "pipe", "point", "still"]}, {"answer": "star", "hint": "star _", "clues": ["board", "dust", "fish", "gazer", "gazing", "light"]}, {"answer": "steam", "hint": "steam _", "clues": ["boat", "fitter", "roller", "ship"]}, {"answer": "steel", "hint": "steel _", "clues": ["maker", "worker", "works", "yard"]}, {"answer": "stock", "hint": "stock _", "clues": ["broker", "holder", "pile", "piling", "pot", "room", "taking", "yard"]}, {"answer": "stone", "hint": "stone _", "clues": ["mason", "walling", "ware", "work"]}, {"answer": "stop", "hint": "stop _", "clues": ["cock", "gap", "light", "over", "watch"]}, {"answer": "store", "hint": "store _", "clues": ["front", "house", "keeper", "room"]}, {"answer": "sun", "hint": "sun _", "clues": ["bather", "beam", "block", "bonnet", "burn", "burst", "dial", "down", "dress", "fish", "flower", "glasses", "hat", "lamp", "light", "rise", "roof", "screen", "set", "shade", "shine", "spot", "stroke", "tan", "trap"]}, {"answer": "sweat", "hint": "sweat _", "clues": ["band", "pants", "shirt", "shop", "suit"]}, {"answer": "sweet", "hint": "sweet _", "clues": ["bread", "brier", "heart", "meat"]}, {"answer": "table", "hint": "table _", "clues": ["cloth", "land", "spoon", "spoonful", "top", "ware"]}, {"answer": "tail", "hint": "tail _", "clues": ["back", "board", "coat", "gate", "light", "piece", "pipe", "plane", "spin", "wind"]}, {"answer": "take", "hint": "take _", "clues": ["away", "off", "out", "over"]}, {"answer": "tea", "hint": "tea _", "clues": ["cake", "cup", "cupful", "kettle", "pot", "room", "shop", "spoon", "spoonful", "time"]}, {"answer": "tear", "hint": "tear _", "clues": ["away", "drop", "gas", "jerker"]}, {"answer": "thumb", "hint": "thumb _", "clues": ["nail", "print", "screw", "tack"]}, {"answer": "thunder", "hint": "thunder _", "clues": ["bolt", "clap", "cloud", "head", "shower", "storm"]}, {"answer": "tide", "hint": "tide _", "clues": ["land", "mark", "water", "way"]}, {"answer": "time", "hint": "time _", "clues": ["keeper", "keeping", "piece", "server", "table"]}, {"answer": "tin", "hint": "tin _", "clues": ["foil", "plate", "smith", "ware"]}, {"answer": "tooth", "hint": "tooth _", "clues": ["ache", "brush", "paste", "pick"]}, {"answer": "top", "hint": "top _", "clues": ["coat", "knot", "mast", "sail", "side", "soil", "spin"]}, {"answer": "touch", "hint": "touch _", "clues": ["down", "line", "screen", "stone"]}, {"answer": "tow", "hint": "tow _", "clues": ["boat", "head", "line", "path", "rope"]}, {"answer": "turn", "hint": "turn _", "clues": ["about", "around", "buckle", "coat", "key", "off", "out", "over", "pike", "stile", "table"]}, {"answer": "type", "hint": "type _", "clues": ["face", "script", "setter", "writer", "writing"]}, {"answer": "under", "hint": "under _", "clues": ["achiever", "belly", "brush", "carriage", "charge", "class", "clothes", "clothing", "coat", "current", "cut", "dog", "estimate", "estimation", "exposure", "frame", "fur", "garment", "grad", "graduate", "ground", "growth", "lay", "line", "ling", "lip", "pants", "part", "pass", "payment", "production", "rating", "score", "secretary", "shirt", "side", "skirt", "standing", "statement", "study", "taker", "taking", "tone", "tow", "valuation", "wear", "world", "writer"]}, {"answer": "video", "hint": "video _", "clues": ["cassette", "disc", "disk", "tape"]}, {"answer": "walk", "hint": "walk _", "clues": ["about", "away", "out", "over"]}, {"answer": "wall", "hint": "wall _", "clues": ["board", "eye", "flower", "paper"]}, {"answer": "war", "hint": "war _", "clues": ["fare", "head", "horse", "lord", "monger", "path", "plane", "ship", "time"]}, {"answer": "wash", "hint": "wash _", "clues": ["basin", "board", "bowl", "cloth", "day", "out", "rag", "room", "stand", "tub"]}, {"answer": "watch", "hint": "watch _", "clues": ["band", "dog", "maker", "strap", "tower", "word"]}, {"answer": "water", "hint": "water _", "clues": ["bird", "color", "course", "craft", "cress", "fall", "fowl", "front", "line", "mark", "melon", "proof", "shed", "side", "spout", "way", "wheel", "works"]}, {"answer": "wave", "hint": "wave _", "clues": ["band", "form", "front", "guide", "length"]}, {"answer": "weather", "hint": "weather _", "clues": ["board", "cock", "strip", "stripping"]}, {"answer": "wheel", "hint": "wheel _", "clues": ["barrow", "base", "chair", "house", "wright"]}, {"answer": "white", "hint": "white _", "clues": ["bait", "cap", "fish", "head", "out", "tail", "wash", "water"]}, {"answer": "wild", "hint": "wild _", "clues": ["cat", "fire", "flower", "fowl", "life"]}, {"answer": "wind", "hint": "wind _", "clues": ["bag", "break", "breaker", "burn", "cheater", "fall", "flower", "jammer", "mill", "pipe", "screen", "shield", "sock", "storm"]}, {"answer": "wood", "hint": "wood _", "clues": ["carver", "carving", "chuck", "cock", "craft", "cut", "cutter", "land", "louse", "pecker", "pile", "shed", "wind", "work", "worker", "worm"]}, {"answer": "work", "hint": "work _", "clues": ["basket", "bench", "book", "day", "force", "horse", "house", "load", "mate", "out", "piece", "place", "room", "sheet", "shop", "space", "station", "table", "week"]}], "portion": 0.8}, {"name": "verbs", "groups": [{"answer": "abandoned", "hint": "synonyms for abandoned", "clues": ["desert", "vacate", "abandon", "forsake", "empty", "give up", "desolate"]}, {"answer": "abbreviated", "hint": "synonyms for abbreviated", "clues": ["cut", "abbreviate", "foreshorten", "abridge", "contract", "shorten", "reduce"]}, {"answer": "abducting", "hint": "synonyms for abducting", "clues": ["abduct", "snatch", "nobble", "kidnap"]}, {"answer": "abiding", "hint": "synonyms for abiding", "clues": ["stay", "digest", "support", "abide", "stand", "bear", "endure", "tolerate", "suffer", "put up", "stomach", "brook", "stick out", "abiding"]}, {"answer": "abridged", "hint": "synonyms for abridged", "clues": ["cut", "abbreviate", "foreshorten", "abridge", "contract", "shorten", "reduce"]}, {"answer": "absolved", "hint": "synonyms for absolved", "clues": ["free", "shrive", "justify", "absolve"]}, {"answer": "absorbed", "hint": "synonyms for absorbed", "clues": ["absorb", "draw", "take up", "steep", "engage", "engross", "take over", "imbibe", "sop up", "plunge", "ingest", "take in", "soak up", "suck up", "immerse", "assimilate", "suck", "occupy", "engulf"]}, {"answer": "absorbing", "hint": "synonyms for absorbing", "clues": ["absorb", "draw", "take up", "steep", "engage", "engross", "take over", "imbibe", "sop up", "plunge", "ingest", "take in", "soak up", "suck up", "immerse", "assimilate", "suck", "occupy", "engulf"]}, {"answer": "abstract", "hint": "synonyms for abstract", "clues": ["swipe", "nobble", "sneak", "pilfer", "purloin", "cabbage", "filch", "hook", "snarf", "pinch", "lift", "abstract"]}, {"answer": "abstracted", "hint": "synonyms for abstracted", "clues": ["swipe", "abstract", "nobble", "pilfer", "lift", "purloin", "cabbage", "filch", "hook", "snarf", "pinch", "sneak"]}, {"answer": "abused", "hint": "synonyms for abused", "clues": ["clapperclaw", "step", "mistreat", "maltreat", "ill-treat", "ill-use", "pervert", "shout", "abuse", "misuse", "blackguard"]}, {"answer": "accelerated", "hint": "synonyms for accelerated", "clues": ["speed", "accelerate", "speed up", "quicken"]}, {"answer": "accented", "hint": "synonyms for accented", "clues": ["stress", "emphasize", "punctuate", "accentuate", "accent"]}, {"answer": "accepted", "hint": "synonyms for accepted", "clues": ["swallow", "take on", "go for", "accept", "have", "bear", "take", "live with", "take over", "consent", "admit", "assume"]}, {"answer": "accepting", "hint": "synonyms for accepting", "clues": ["swallow", "take on", "go for", "accept", "have", "bear", "take", "live with", "take over", "consent", "admit", "assume"]}, {"answer": "accommodating", "hint": "synonyms for accommodating", "clues": ["fit", "accommodate", "oblige", "lodge", "reconcile", "suit", "adapt", "admit", "hold", "conciliate", "accommodating"]}, {"answer": "accompanied", "hint": "synonyms for accompanied", "clues": ["follow", "company", "play along", "keep company", "go with", "come with", "attach to", "companion", "accompanied"]}, {"answer": "accompanying", "hint": "synonyms for accompanying", "clues": ["follow", "company", "play along", "keep company", "go with", "come with", "attach to", "companion", "accompanying"]}, {"answer": "accomplished", "hint": "synonyms for accomplished", "clues": ["attain", "achieve", "reach", "fulfill", "carry through", "carry out", "action", "execute", "accomplish"]}, {"answer": "according", "hint": "synonyms for according", "clues": ["accord", "allot", "grant", "fit in", "agree", "concord", "harmonize", "consort"]}, {"answer": "accumulated", "hint": "synonyms for accumulated", "clues": ["pile up", "amass", "cumulate", "hoard", "gather", "compile", "conglomerate", "roll up", "collect", "accumulated"]}, {"answer": "accursed", "hint": "synonyms for accursed", "clues": ["execrate", "anathematize", "comminate", "anathemise", "accurse"]}, {"answer": "accusing", "hint": "synonyms for accusing", "clues": ["criminate", "accuse", "charge", "impeach", "accusing"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["sweep through", "breeze through", "pass with flying colors", "nail", "sail through", "ace"]}, {"answer": "aching", "hint": "synonyms for aching", "clues": ["yearn", "yen", "languish", "suffer", "smart", "ache", "hurt", "pine", "aching"]}, {"answer": "acknowledged", "hint": "synonyms for acknowledged", "clues": ["recognise", "acknowledge", "know", "notice", "admit", "receipt"]}, {"answer": "acquainted", "hint": "synonyms for acquainted", "clues": ["acquaint", "familiarize", "present", "introduce"]}, {"answer": "acquired", "hint": "synonyms for acquired", "clues": ["take on", "adopt", "gain", "learn", "take", "grow", "develop", "acquire", "win", "evolve", "produce", "get", "assume"]}, {"answer": "acquitted", "hint": "synonyms for acquitted", "clues": ["conduct", "comport", "exonerate", "acquit", "bear", "discharge", "exculpate", "clear", "behave", "deport", "carry", "assoil", "acquitted"]}, {"answer": "acting", "hint": "synonyms for acting", "clues": ["act", "act as", "playact", "represent", "behave", "dissemble", "do", "work", "play", "move", "pretend", "roleplay"]}, {"answer": "activated", "hint": "synonyms for activated", "clues": ["set off", "spark", "spark off", "trigger", "actuate", "trigger off", "trip", "touch off", "aerate", "activate"]}, {"answer": "activating", "hint": "synonyms for activating", "clues": ["set off", "spark", "spark off", "trigger", "actuate", "trigger off", "trip", "touch off", "aerate", "activate", "activating"]}, {"answer": "actuated", "hint": "synonyms for actuated", "clues": ["set off", "spark", "spark off", "trigger", "prompt", "actuate", "trigger off", "trip", "touch off", "incite", "activate", "motivate", "move", "propel"]}, {"answer": "actuating", "hint": "synonyms for actuating", "clues": ["set off", "spark", "spark off", "trigger", "prompt", "actuate", "trigger off", "trip", "touch off", "incite", "activate", "motivate", "move", "propel", "actuating"]}, {"answer": "adapted", "hint": "synonyms for adapted", "clues": ["conform", "adapt", "accommodate", "adjust", "adapted"]}, {"answer": "addressed", "hint": "synonyms for addressed", "clues": ["accost", "come up to", "address", "turn to", "treat", "call", "deal", "speak", "plow", "direct", "handle", "cover"]}, {"answer": "adjusted", "hint": "synonyms for adjusted", "clues": ["correct", "line up", "conform", "aline", "adjust", "adapt", "align", "set"]}, {"answer": "admonishing", "hint": "synonyms for admonishing", "clues": ["caution", "reprove", "warn", "discourage", "admonish"]}, {"answer": "adopted", "hint": "synonyms for adopted", "clues": ["follow", "take on", "adopt", "dramatize", "take up", "espouse", "take", "take over", "acquire", "sweep up", "embrace", "borrow", "assume", "adopted"]}, {"answer": "adorned", "hint": "synonyms for adorned", "clues": ["grace", "ornament", "adorn", "clothe", "beautify", "decorate", "deck", "embellish", "invest", "adorned"]}, {"answer": "adulterate", "hint": "synonyms for adulterate", "clues": ["load", "debase", "stretch", "dilute", "adulterate"]}, {"answer": "adulterated", "hint": "synonyms for adulterated", "clues": ["load", "stretch", "adulterate", "dilute", "debase"]}, {"answer": "adulterating", "hint": "synonyms for adulterating", "clues": ["load", "stretch", "adulterate", "dilute", "debase", "adulterating"]}, {"answer": "advance", "hint": "synonyms for advance", "clues": ["supercharge", "promote", "come along", "upgrade", "progress", "encourage", "march on", "throw out", "come on", "further", "shape up", "set ahead", "pass on", "move on", "bring forward", "gain", "pull ahead", "get along", "elevate", "raise", "make headway", "win", "go on", "get on", "boost", "gain ground", "kick upstairs", "advance"]}, {"answer": "advanced", "hint": "synonyms for advanced", "clues": ["supercharge", "promote", "come along", "upgrade", "progress", "encourage", "march on", "advance", "throw out", "come on", "further", "shape up", "set ahead", "pass on", "move on", "bring forward", "gain", "pull ahead", "get along", "elevate", "raise", "make headway", "win", "go on", "get on", "boost", "gain ground", "kick upstairs"]}, {"answer": "advancing", "hint": "synonyms for advancing", "clues": ["supercharge", "promote", "come along", "upgrade", "progress", "encourage", "march on", "advance", "throw out", "come on", "further", "shape up", "set ahead", "pass on", "move on", "bring forward", "gain", "pull ahead", "get along", "elevate", "raise", "make headway", "win", "go on", "get on", "boost", "gain ground", "kick upstairs", "advancing"]}, {"answer": "advertised", "hint": "synonyms for advertised", "clues": ["promote", "advertize", "publicise", "push", "advertised"]}, {"answer": "advised", "hint": "synonyms for advised", "clues": ["apprise", "advise", "send word", "rede", "give notice", "suggest", "counsel", "propose", "notify"]}, {"answer": "aerated", "hint": "synonyms for aerated", "clues": ["aerate", "air out", "oxygenate", "activate", "oxygenise", "air"]}, {"answer": "affected", "hint": "synonyms for affected", "clues": ["impact", "bear upon", "impress", "touch on", "sham", "feign", "regard", "dissemble", "touch", "affect", "move", "pretend", "involve", "strike"]}, {"answer": "affecting", "hint": "synonyms for affecting", "clues": ["impact", "bear upon", "impress", "touch on", "sham", "feign", "regard", "dissemble", "touch", "affect", "move", "pretend", "involve", "strike"]}, {"answer": "affiliated", "hint": "synonyms for affiliated", "clues": ["consort", "affiliate", "assort", "associate"]}, {"answer": "affixed", "hint": "synonyms for affixed", "clues": ["stick on", "append", "supplement", "affix", "add on", "affixed"]}, {"answer": "aged", "hint": "synonyms for aged", "clues": ["mature", "get on", "age", "senesce"]}, {"answer": "ageing", "hint": "synonyms for ageing", "clues": ["mature", "get on", "age", "senesce"]}, {"answer": "aggravated", "hint": "synonyms for aggravated", "clues": ["aggravate", "exasperate", "exacerbate", "worsen"]}, {"answer": "aggravating", "hint": "synonyms for aggravating", "clues": ["aggravate", "exasperate", "exacerbate", "worsen", "aggravating"]}, {"answer": "aging", "hint": "synonyms for aging", "clues": ["mature", "get on", "age", "senesce", "aging"]}, {"answer": "agitated", "hint": "synonyms for agitated", "clues": ["press", "agitate", "shake", "shift", "charge", "turn on", "campaign", "push", "stir", "stir up", "charge up", "fight", "shake up", "budge", "vex", "excite", "crusade", "disturb", "raise up", "rouse", "commove", "foment"]}, {"answer": "agitating", "hint": "synonyms for agitating", "clues": ["press", "agitate", "shake", "shift", "charge", "turn on", "campaign", "push", "stir", "stir up", "charge up", "fight", "shake up", "budge", "vex", "excite", "crusade", "disturb", "raise up", "rouse", "commove", "foment", "agitating"]}, {"answer": "agreed", "hint": "synonyms for agreed", "clues": ["fit", "match", "accord", "gibe", "fit in", "agree", "correspond", "check", "concord", "harmonize", "tally", "concur", "jibe", "hold", "consort"]}, {"answer": "aired", "hint": "synonyms for aired", "clues": ["send", "publicise", "beam", "aerate", "broadcast", "air out", "bare", "vent", "transmit", "air", "ventilate", "aired"]}, {"answer": "alarmed", "hint": "synonyms for alarmed", "clues": ["appall", "alarm", "dismay", "horrify", "alert", "alarmed"]}, {"answer": "alarming", "hint": "synonyms for alarming", "clues": ["appall", "alarm", "dismay", "horrify", "alert"]}, {"answer": "alienated", "hint": "synonyms for alienated", "clues": ["estrange", "disaffect", "alien", "alienate"]}, {"answer": "alienating", "hint": "synonyms for alienating", "clues": ["estrange", "disaffect", "alien", "alienate", "alienating"]}, {"answer": "aligned", "hint": "synonyms for aligned", "clues": ["array", "aline", "adjust", "ordinate", "align", "line up", "aligned"]}, {"answer": "aligning", "hint": "synonyms for aligning", "clues": ["array", "aline", "adjust", "ordinate", "align", "line up"]}, {"answer": "alleviated", "hint": "synonyms for alleviated", "clues": ["palliate", "ease", "facilitate", "alleviate", "relieve", "assuage"]}, {"answer": "allotted", "hint": "synonyms for allotted", "clues": ["dispense", "allot", "assign", "deal", "deal out", "portion", "dish out", "distribute", "shell out", "dole out", "administer", "accord", "grant", "lot", "parcel out", "mete out", "allotted"]}, {"answer": "altered", "hint": "synonyms for altered", "clues": ["change", "falsify", "vary", "interpolate", "modify", "spay", "neuter", "alter", "castrate", "altered"]}, {"answer": "alternate", "hint": "synonyms for alternate", "clues": ["tack", "interchange", "flip-flop", "understudy", "take turns", "switch", "flip", "jump", "alternate"]}, {"answer": "alternating", "hint": "synonyms for alternating", "clues": ["understudy", "switch", "alternate", "jump", "interchange", "tack", "flip-flop", "take turns", "flip", "alternating"]}, {"answer": "amalgamate", "hint": "synonyms for amalgamate", "clues": ["unify", "mix", "mingle", "commix", "amalgamate"]}, {"answer": "amalgamated", "hint": "synonyms for amalgamated", "clues": ["unify", "mix", "commix", "amalgamate", "mingle"]}, {"answer": "amazed", "hint": "synonyms for amazed", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "mystify", "vex", "astound", "bewilder", "stick", "astonish"]}, {"answer": "amazing", "hint": "synonyms for amazing", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "mystify", "vex", "astound", "bewilder", "stick", "astonish", "amazing"]}, {"answer": "ameliorating", "hint": "synonyms for ameliorating", "clues": ["amend", "better", "meliorate", "improve", "ameliorating"]}, {"answer": "amended", "hint": "synonyms for amended", "clues": ["remedy", "rectify", "amend", "better", "remediate", "meliorate", "repair", "improve", "amended"]}, {"answer": "analyzed", "hint": "synonyms for analyzed", "clues": ["examine", "take apart", "canvass", "analyse", "dissect", "psychoanalyse", "study", "break down", "analyzed"]}, {"answer": "angled", "hint": "synonyms for angled", "clues": ["slant", "lean", "angle", "tip", "tilt", "fish", "weight"]}, {"answer": "animate", "hint": "synonyms for animate", "clues": ["inspire", "liven up", "reanimate", "renovate", "exalt", "revivify", "invigorate", "liven", "recreate", "revive", "animize", "repair", "enliven", "quicken"]}, {"answer": "animated", "hint": "synonyms for animated", "clues": ["inspire", "liven up", "reanimate", "renovate", "exalt", "revivify", "invigorate", "liven", "recreate", "revive", "animize", "repair", "enliven", "quicken", "animated"]}, {"answer": "animating", "hint": "synonyms for animating", "clues": ["inspire", "liven up", "reanimate", "renovate", "exalt", "revivify", "invigorate", "liven", "recreate", "revive", "animize", "repair", "enliven", "quicken", "animating"]}, {"answer": "annihilated", "hint": "synonyms for annihilated", "clues": ["annihilate", "eradicate", "decimate", "extinguish", "wipe out", "carry off", "eliminate"]}, {"answer": "annihilating", "hint": "synonyms for annihilating", "clues": ["annihilate", "eradicate", "decimate", "extinguish", "wipe out", "carry off", "eliminate", "annihilating"]}, {"answer": "announced", "hint": "synonyms for announced", "clues": ["declare", "harbinger", "herald", "annunciate", "foretell", "denote", "announce"]}, {"answer": "annoyed", "hint": "synonyms for annoyed", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother", "annoyed"]}, {"answer": "annoying", "hint": "synonyms for annoying", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother"]}, {"answer": "answering", "hint": "synonyms for answering", "clues": ["respond", "do", "serve", "suffice", "reply", "answer", "resolve"]}, {"answer": "anticipated", "hint": "synonyms for anticipated", "clues": ["counter", "previse", "call", "look for", "foreknow", "anticipate", "foretell", "look to", "expect", "foresee", "forebode", "predict", "prognosticate", "forestall", "promise"]}, {"answer": "appalled", "hint": "synonyms for appalled", "clues": ["appall", "offend", "shock", "scandalise", "outrage", "alarm", "dismay", "horrify"]}, {"answer": "appalling", "hint": "synonyms for appalling", "clues": ["appall", "offend", "shock", "scandalise", "outrage", "alarm", "dismay", "horrify"]}, {"answer": "appareled", "hint": "synonyms for appareled", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb"]}, {"answer": "appeasing", "hint": "synonyms for appeasing", "clues": ["stay", "gentle", "appease", "gruntle", "mollify", "placate", "pacify", "assuage", "propitiate", "lenify", "quell", "conciliate", "appeasing"]}, {"answer": "applied", "hint": "synonyms for applied", "clues": ["utilize", "use", "go for", "practice", "give", "employ", "lend oneself", "enforce", "hold", "apply", "put on", "implement", "applied"]}, {"answer": "appointed", "hint": "synonyms for appointed", "clues": ["nominate", "name", "appoint", "charge", "constitute"]}, {"answer": "apportioned", "hint": "synonyms for apportioned", "clues": ["divvy up", "portion out", "deal", "share", "apportion", "allocate"]}, {"answer": "appraising", "hint": "synonyms for appraising", "clues": ["value", "assess", "appraise", "valuate", "survey", "measure", "appraising"]}, {"answer": "appreciated", "hint": "synonyms for appreciated", "clues": ["value", "apprise", "treasure", "take account", "revalue", "appreciate", "prize"]}, {"answer": "apprehended", "hint": "synonyms for apprehended", "clues": ["collar", "nail", "nab", "apprehend", "dig", "get the picture", "grok", "compass", "pick up", "arrest", "cop", "grasp", "comprehend", "savvy", "quail at"]}, {"answer": "approaching", "hint": "synonyms for approaching", "clues": ["border on", "draw close", "come near", "approach", "set about", "go about", "draw near", "come on", "go up", "near"]}, {"answer": "appropriate", "hint": "synonyms for appropriate", "clues": ["capture", "conquer", "earmark", "reserve", "set aside", "allow", "seize", "appropriate"]}, {"answer": "approximate", "hint": "synonyms for approximate", "clues": ["estimate", "come close", "judge", "gauge", "guess", "approximate"]}, {"answer": "armed", "hint": "synonyms for armed", "clues": ["gird", "arm", "build up", "fortify", "armed"]}, {"answer": "aroused", "hint": "synonyms for aroused", "clues": ["call down", "wake", "call forth", "arouse", "enkindle", "conjure", "stimulate", "invoke", "fire", "come alive", "perk up", "energise", "turn on", "wind up", "awaken", "stir", "put forward", "sex", "elicit", "raise", "wake up", "brace", "bring up", "excite", "provoke", "conjure up", "evoke"]}, {"answer": "arranged", "hint": "synonyms for arranged", "clues": ["coiffure", "fix up", "arrange", "order", "set up", "do", "format", "dress", "put", "coif", "stage", "set"]}, {"answer": "arrayed", "hint": "synonyms for arrayed", "clues": ["array", "range", "align", "set out", "lay out", "arrayed"]}, {"answer": "arresting", "hint": "synonyms for arresting", "clues": ["collar", "nail", "apprehend", "turn back", "check", "stop", "pick up", "arrest", "halt", "contain", "get", "hold", "catch", "cop", "nab", "hold back"]}, {"answer": "articulate", "hint": "synonyms for articulate", "clues": ["formulate", "enunciate", "phrase", "enounce", "say", "vocalize", "give voice", "pronounce", "sound out", "joint", "word", "articulate"]}, {"answer": "articulated", "hint": "synonyms for articulated", "clues": ["formulate", "articulate", "phrase", "enunciate", "enounce", "say", "vocalize", "give voice", "pronounce", "sound out", "joint", "word"]}, {"answer": "ascending", "hint": "synonyms for ascending", "clues": ["come up", "uprise", "rise", "move up", "ascend", "go up", "climb up"]}, {"answer": "ascertained", "hint": "synonyms for ascertained", "clues": ["control", "ensure", "determine", "learn", "watch", "see to it", "check", "assure", "find out", "see", "ascertain", "find", "insure"]}, {"answer": "asphyxiated", "hint": "synonyms for asphyxiated", "clues": ["smother", "asphyxiate", "stifle", "suffocate", "choke"]}, {"answer": "asphyxiating", "hint": "synonyms for asphyxiating", "clues": ["smother", "asphyxiate", "stifle", "suffocate", "choke", "asphyxiating"]}, {"answer": "aspiring", "hint": "synonyms for aspiring", "clues": ["aspire", "shoot for", "aim", "draw a bead on", "aspiring"]}, {"answer": "asserted", "hint": "synonyms for asserted", "clues": ["aver", "swear", "put forward", "affirm", "asseverate", "assert", "avow", "verify", "swan", "maintain", "insist"]}, {"answer": "asserting", "hint": "synonyms for asserting", "clues": ["aver", "swear", "put forward", "affirm", "asseverate", "assert", "avow", "verify", "swan", "maintain", "insist"]}, {"answer": "assigned", "hint": "synonyms for assigned", "clues": ["depute", "allot", "delegate", "specify", "assign", "ascribe", "set apart", "impute", "portion", "put", "attribute", "arrogate", "designate"]}, {"answer": "assimilating", "hint": "synonyms for assimilating", "clues": ["absorb", "assimilate", "take in", "imbibe", "ingest", "assimilating"]}, {"answer": "assisted", "hint": "synonyms for assisted", "clues": ["attend", "aid", "assist", "wait on", "help", "attend to", "serve"]}, {"answer": "associate", "hint": "synonyms for associate", "clues": ["link", "affiliate", "relate", "assort", "connect", "link up", "consort", "colligate", "tie in", "consociate", "associate"]}, {"answer": "assorted", "hint": "synonyms for assorted", "clues": ["affiliate", "sort", "sort out", "assort", "associate", "class", "classify", "consort", "separate"]}, {"answer": "assumed", "hint": "synonyms for assumed", "clues": ["take on", "take up", "accept", "bear", "assume", "sham", "seize", "take over", "don", "take for granted", "presume", "acquire", "arrogate", "put on", "feign", "adopt", "get into", "wear", "take", "simulate", "usurp", "strike"]}, {"answer": "assuming", "hint": "synonyms for assuming", "clues": ["take on", "take up", "accept", "bear", "assume", "sham", "seize", "take over", "don", "take for granted", "presume", "acquire", "arrogate", "put on", "feign", "adopt", "get into", "wear", "take", "simulate", "usurp", "strike", "assuming"]}, {"answer": "assured", "hint": "synonyms for assured", "clues": ["ensure", "control", "reassure", "see to it", "check", "tell", "secure", "see", "ascertain", "guarantee", "insure", "promise", "assured"]}, {"answer": "assuring", "hint": "synonyms for assuring", "clues": ["ensure", "control", "reassure", "see to it", "check", "tell", "secure", "see", "ascertain", "guarantee", "insure", "promise", "assuring"]}, {"answer": "attached", "hint": "synonyms for attached", "clues": ["bind", "attach", "impound", "seize", "bond", "tie", "confiscate", "sequester"]}, {"answer": "attacking", "hint": "synonyms for attacking", "clues": ["lash out", "round", "aggress", "assault", "snipe", "attack", "set on", "assail"]}, {"answer": "attained", "hint": "synonyms for attained", "clues": ["attain", "hit", "achieve", "chance upon", "come upon", "fall upon", "accomplish", "make", "gain", "arrive at", "reach", "happen upon", "light upon", "discover", "come across", "strike"]}, {"answer": "attempted", "hint": "synonyms for attempted", "clues": ["assay", "attempt", "undertake", "seek", "try", "set about", "essay"]}, {"answer": "attended", "hint": "synonyms for attended", "clues": ["pay heed", "look", "attend", "assist", "wait on", "hang", "give ear", "attend to", "take care", "see", "advert", "serve", "go to"]}, {"answer": "attested", "hint": "synonyms for attested", "clues": ["demonstrate", "attest", "manifest", "evidence", "take the stand", "certify", "testify", "bear witness"]}, {"answer": "attired", "hint": "synonyms for attired", "clues": ["fig up", "deck up", "tog up", "attire", "overdress", "deck out", "dress up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "prink", "trick up", "get up"]}, {"answer": "authorised", "hint": "synonyms for authorised", "clues": ["empower", "authorise", "pass", "clear"]}, {"answer": "authorized", "hint": "synonyms for authorized", "clues": ["empower", "authorise", "pass", "clear", "authorized"]}, {"answer": "avowed", "hint": "synonyms for avowed", "clues": ["aver", "swear", "verify", "avow", "assert", "affirm", "swan", "avouch", "avowed"]}, {"answer": "awaited", "hint": "synonyms for awaited", "clues": ["wait", "expect", "look", "awaited"]}, {"answer": "awake", "hint": "synonyms for awake", "clues": ["wake", "come alive", "awaken", "arouse", "wake up"]}, {"answer": "awakened", "hint": "synonyms for awakened", "clues": ["wake", "arouse", "wake up", "come alive", "awaken"]}, {"answer": "back", "hint": "synonyms for back", "clues": ["endorse", "support", "back up", "punt", "game", "gage", "plump for", "plunk for", "second", "stake", "bet on", "back"]}, {"answer": "backed", "hint": "synonyms for backed", "clues": ["endorse", "support", "back", "back up", "punt", "game", "gage", "plump for", "plunk for", "second", "stake", "bet on", "backed"]}, {"answer": "baffled", "hint": "synonyms for baffled", "clues": ["stupefy", "cross", "spoil", "queer", "bilk", "flummox", "gravel", "regulate", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "frustrate", "scotch", "foil", "vex", "bewilder", "thwart", "stick", "mystify"]}, {"answer": "baffling", "hint": "synonyms for baffling", "clues": ["stupefy", "cross", "spoil", "queer", "bilk", "flummox", "gravel", "regulate", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "frustrate", "scotch", "foil", "vex", "bewilder", "thwart", "stick", "mystify", "baffling"]}, {"answer": "balanced", "hint": "synonyms for balanced", "clues": ["poise", "balance", "equilibrate", "equilibrize"]}, {"answer": "balking", "hint": "synonyms for balking", "clues": ["baulk", "resist", "jib", "balking"]}, {"answer": "banging", "hint": "synonyms for banging", "clues": ["slam", "roll in the hay", "spang", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love"]}, {"answer": "banned", "hint": "synonyms for banned", "clues": ["banish", "censor", "blackball", "shun", "ostracise", "ban", "cast out", "banned"]}, {"answer": "bantering", "hint": "synonyms for bantering", "clues": ["josh", "chaff", "jolly", "banter", "kid"]}, {"answer": "bare", "hint": "synonyms for bare", "clues": ["strip", "denude", "publicise", "air", "bare"]}, {"answer": "bared", "hint": "synonyms for bared", "clues": ["exclude", "barricade", "banish", "bar", "stop", "strip", "block up", "blockade", "publicise", "air", "debar", "block off", "block", "denude", "relegate", "bared"]}, {"answer": "barred", "hint": "synonyms for barred", "clues": ["exclude", "barricade", "block off", "banish", "bar", "block", "stop", "block up", "blockade", "relegate", "debar", "barred"]}, {"answer": "barricaded", "hint": "synonyms for barricaded", "clues": ["barricade", "block off", "bar", "block", "stop", "block up", "blockade"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["ground", "free-base", "establish", "found", "base"]}, {"answer": "based", "hint": "synonyms for based", "clues": ["ground", "free-base", "found", "base", "establish"]}, {"answer": "bated", "hint": "synonyms for bated", "clues": ["flutter", "clobber", "lick", "drub", "thrash", "bat", "cream", "bated"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["flutter", "clobber", "lick", "drub", "thrash", "bat", "cream"]}, {"answer": "battered", "hint": "synonyms for battered", "clues": ["batter", "clobber", "dinge", "knock about", "baste", "buffet"]}, {"answer": "beaming", "hint": "synonyms for beaming", "clues": ["send", "beam", "shine", "broadcast", "transmit", "glow", "radiate", "air"]}, {"answer": "bearing", "hint": "synonyms for bearing", "clues": ["digest", "support", "give birth", "birth", "abide", "comport", "accept", "acquit", "have", "bear", "assume", "gestate", "suffer", "take over", "behave", "deport", "expect", "carry", "stomach", "yield", "conduct", "deliver", "endure", "tolerate", "turn out", "pay", "wear", "put up", "have a bun in the oven", "contain", "hold", "stand", "brook", "stick out"]}, {"answer": "beat", "hint": "synonyms for beat", "clues": ["outwit", "overreach", "work over", "pound", "tick", "flummox", "shell", "amaze", "get", "baffle", "bunk", "dumbfound", "tucker", "ticktock", "vanquish", "thrum", "vex", "bewilder", "thump", "flap", "mystify", "stupefy", "quiver", "scramble", "exhaust", "gravel", "nonplus", "puzzle", "perplex", "beat out", "pose", "outsmart", "tucker out", "circumvent", "beat up", "pulsate", "drum", "wash up", "trounce", "outfox", "crush", "beat"]}, {"answer": "beaten", "hint": "synonyms for beaten", "clues": ["outwit", "overreach", "work over", "pound", "tick", "flummox", "shell", "amaze", "get", "baffle", "bunk", "dumbfound", "tucker", "ticktock", "vanquish", "thrum", "vex", "bewilder", "thump", "flap", "mystify", "stupefy", "quiver", "scramble", "exhaust", "gravel", "nonplus", "puzzle", "perplex", "beat out", "pose", "beat", "outsmart", "tucker out", "circumvent", "beat up", "pulsate", "drum", "wash up", "trounce", "outfox", "crush", "beaten"]}, {"answer": "beatified", "hint": "synonyms for beatified", "clues": ["inebriate", "beatify", "tickle pink", "thrill", "exalt", "exhilarate", "beatified"]}, {"answer": "becoming", "hint": "synonyms for becoming", "clues": ["turn", "suit", "become", "go", "get", "becoming"]}, {"answer": "bedded", "hint": "synonyms for bedded", "clues": ["go to bed", "roll in the hay", "hump", "hit the sack", "have a go at it", "sack out", "bonk", "have sex", "sleep together", "make out", "be intimate", "bed", "have it off", "hit the hay", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "go to sleep", "crawl in", "jazz", "know", "retire", "get laid", "have it away", "kip down", "turn in", "do it", "fuck", "lie with", "make love", "bedded"]}, {"answer": "bedimmed", "hint": "synonyms for bedimmed", "clues": ["bedim", "benight", "obscure", "overcloud", "bedimmed"]}, {"answer": "befogged", "hint": "synonyms for befogged", "clues": ["cloud", "haze over", "fog", "obnubilate", "mist", "obscure", "befog", "becloud", "befogged"]}, {"answer": "befouled", "hint": "synonyms for befouled", "clues": ["maculate", "befoul", "defile", "foul"]}, {"answer": "befuddled", "hint": "synonyms for befuddled", "clues": ["fuddle", "throw", "discombobulate", "confuse", "fox", "bedevil", "confound", "befuddled"]}, {"answer": "beginning", "hint": "synonyms for beginning", "clues": ["begin", "commence", "start", "start out", "get down", "set out", "lead off", "get", "beginning"]}, {"answer": "begotten", "hint": "synonyms for begotten", "clues": ["mother", "sire", "engender", "generate", "bring forth", "get", "beget", "father", "begotten"]}, {"answer": "begrimed", "hint": "synonyms for begrimed", "clues": ["bemire", "soil", "dirty", "begrime", "colly", "grime"]}, {"answer": "beguiled", "hint": "synonyms for beguiled", "clues": ["captivate", "capture", "becharm", "trance", "enchant", "charm", "juggle", "hoodwink", "fascinate", "beguile", "bewitch", "catch", "enamor"]}, {"answer": "beguiling", "hint": "synonyms for beguiling", "clues": ["captivate", "capture", "becharm", "trance", "enchant", "charm", "juggle", "hoodwink", "fascinate", "beguile", "bewitch", "catch", "enamor", "beguiling"]}, {"answer": "belittled", "hint": "synonyms for belittled", "clues": ["denigrate", "pick at", "minimize", "belittle", "disparage", "diminish", "derogate"]}, {"answer": "belittling", "hint": "synonyms for belittling", "clues": ["denigrate", "pick at", "minimize", "belittle", "disparage", "diminish", "derogate", "belittling"]}, {"answer": "bemused", "hint": "synonyms for bemused", "clues": ["throw", "bemuse", "bewilder", "discombobulate"]}, {"answer": "bended", "hint": "synonyms for bended", "clues": ["turn away", "bow", "bend", "deflect", "turn", "twist", "stoop", "flex", "deform", "crouch", "bended"]}, {"answer": "bent", "hint": "synonyms for bent", "clues": ["turn away", "bow", "bend", "deflect", "turn", "twist", "stoop", "flex", "deform", "crouch", "bent"]}, {"answer": "benumbed", "hint": "synonyms for benumbed", "clues": ["benumb", "dull", "blunt", "numb"]}, {"answer": "beseeching", "hint": "synonyms for beseeching", "clues": ["bid", "beseech", "adjure", "entreat", "press", "conjure"]}, {"answer": "besieged", "hint": "synonyms for besieged", "clues": ["beleaguer", "besiege", "hem in", "circumvent", "surround"]}, {"answer": "bespoke", "hint": "synonyms for bespoke", "clues": ["betoken", "bespeak", "request", "quest", "indicate", "point", "signal", "call for", "bespoke"]}, {"answer": "bespoken", "hint": "synonyms for bespoken", "clues": ["betoken", "bespeak", "request", "quest", "indicate", "point", "signal", "call for", "bespoken"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["outdo", "scoop", "outflank", "trump", "best"]}, {"answer": "betrothed", "hint": "synonyms for betrothed", "clues": ["plight", "betroth", "engage", "affiance"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["break", "meliorate", "amend", "improve", "better"]}, {"answer": "bettering", "hint": "synonyms for bettering", "clues": ["break", "amend", "better", "meliorate", "improve"]}, {"answer": "betting", "hint": "synonyms for betting", "clues": ["depend", "wager", "look", "reckon", "calculate", "play", "bet", "count", "betting"]}, {"answer": "bewildered", "hint": "synonyms for bewildered", "clues": ["stupefy", "discombobulate", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "throw", "bemuse", "vex", "bewilder", "stick", "mystify"]}, {"answer": "bewitched", "hint": "synonyms for bewitched", "clues": ["captivate", "spellbind", "capture", "hex", "becharm", "glamour", "trance", "magnetise", "enchant", "charm", "mesmerise", "fascinate", "jinx", "beguile", "bewitch", "witch", "catch", "enamor"]}, {"answer": "bewitching", "hint": "synonyms for bewitching", "clues": ["captivate", "spellbind", "capture", "hex", "becharm", "glamour", "trance", "magnetise", "enchant", "charm", "mesmerise", "fascinate", "jinx", "beguile", "bewitch", "witch", "catch", "enamor"]}, {"answer": "billowing", "hint": "synonyms for billowing", "clues": ["wallow", "balloon", "inflate", "surge", "heave", "billow"]}, {"answer": "binding", "hint": "synonyms for binding", "clues": ["bind", "attach", "constipate", "truss", "tie down", "oblige", "stick to", "bandage", "hold fast", "bond", "tie up", "tie", "hold", "adhere", "stick"]}, {"answer": "biting", "hint": "synonyms for biting", "clues": ["burn", "bite", "sting", "seize with teeth", "prick", "biting"]}, {"answer": "black", "hint": "synonyms for black", "clues": ["blacken", "melanize", "nigrify", "black"]}, {"answer": "blackened", "hint": "synonyms for blackened", "clues": ["nigrify", "char", "black", "sear", "blacken", "melanize", "scorch"]}, {"answer": "blame", "hint": "synonyms for blame", "clues": ["fault", "find fault", "charge", "pick", "blame"]}, {"answer": "blamed", "hint": "synonyms for blamed", "clues": ["fault", "pick", "charge", "find fault", "blame"]}, {"answer": "blanched", "hint": "synonyms for blanched", "clues": ["blench", "blanch", "pale", "parboil"]}, {"answer": "blaring", "hint": "synonyms for blaring", "clues": ["beep", "claxon", "blare", "toot", "honk", "blast", "blaring"]}, {"answer": "blasted", "hint": "synonyms for blasted", "clues": ["nail", "blare", "shoot", "smash", "knock down", "savage", "crucify", "pillory", "blast", "shell", "boom", "blasted"]}, {"answer": "blasting", "hint": "synonyms for blasting", "clues": ["nail", "blare", "shoot", "smash", "knock down", "savage", "crucify", "pillory", "blast", "shell", "boom"]}, {"answer": "bleached", "hint": "synonyms for bleached", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "blemished", "hint": "synonyms for blemished", "clues": ["flaw", "blemish", "deface", "spot", "disfigure"]}, {"answer": "blended", "hint": "synonyms for blended", "clues": ["flux", "blend in", "mix", "go", "immix", "meld", "coalesce", "fuse", "blend", "commingle", "merge", "combine", "intermix", "conflate", "immingle", "intermingle", "blended"]}, {"answer": "blessed", "hint": "synonyms for blessed", "clues": ["sanctify", "bless", "consecrate", "hallow", "sign", "blessed"]}, {"answer": "blest", "hint": "synonyms for blest", "clues": ["sanctify", "bless", "consecrate", "hallow", "sign", "blest"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["nictate", "flash", "wink", "blink", "blink away", "twinkle"]}, {"answer": "blistering", "hint": "synonyms for blistering", "clues": ["blister", "vesicate", "scald", "whip"]}, {"answer": "blockaded", "hint": "synonyms for blockaded", "clues": ["stymy", "barricade", "stymie", "block off", "bar", "block", "stop", "embarrass", "blockade", "hinder", "block up", "obstruct", "seal off"]}, {"answer": "blockading", "hint": "synonyms for blockading", "clues": ["stymy", "barricade", "stymie", "block off", "bar", "block", "stop", "embarrass", "blockade", "hinder", "block up", "obstruct", "seal off", "blockading"]}, {"answer": "blocked", "hint": "synonyms for blocked", "clues": ["stymy", "blank out", "barricade", "immobilize", "bar", "impede", "close up", "stop", "deflect", "block up", "blockade", "kibosh", "jam", "obstruct", "lug", "obturate", "freeze", "choke up", "parry", "block off", "stymie", "draw a blank", "block", "embarrass", "forget", "hinder", "halt", "occlude", "stuff", "blocked"]}, {"answer": "blown", "hint": "synonyms for blown", "clues": ["botch up", "bollix", "bollocks", "bobble", "muff", "boast", "squander", "bluster", "gasconade", "blow", "mess up", "fellate", "blow out", "burn out", "fumble", "louse up", "go down on", "drift", "foul up", "vaunt", "suck", "brag", "botch", "bumble", "muck up", "spoil", "flub", "bollix up", "fluff", "bollocks up", "bungle", "waste", "swash", "shove off", "float", "gas", "be adrift", "mishandle", "screw up", "bodge", "shoot a line", "tout", "ball up", "shove along"]}, {"answer": "blunt", "hint": "synonyms for blunt", "clues": ["deaden", "benumb", "dull", "numb", "blunt"]}, {"answer": "blunted", "hint": "synonyms for blunted", "clues": ["deaden", "benumb", "blunt", "numb", "dull", "blunted"]}, {"answer": "blurred", "hint": "synonyms for blurred", "clues": ["glaze over", "confuse", "dim", "film over", "obnubilate", "blear", "slur", "blur", "smudge", "smutch", "obscure", "smear", "blurred"]}, {"answer": "blushing", "hint": "synonyms for blushing", "clues": ["blush", "crimson", "redden", "flush"]}, {"answer": "blustering", "hint": "synonyms for blustering", "clues": ["brag", "gas", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "swash", "blow", "swagger"]}, {"answer": "boiled", "hint": "synonyms for boiled", "clues": ["seethe", "boil", "moil", "churn", "roil", "boiled"]}, {"answer": "bone", "hint": "synonyms for bone", "clues": ["swot up", "grind away", "bone up", "mug up", "drum", "cram", "swot", "get up", "debone", "bone"]}, {"answer": "boned", "hint": "synonyms for boned", "clues": ["swot up", "grind away", "bone up", "mug up", "drum", "cram", "bone", "swot", "get up", "debone"]}, {"answer": "booming", "hint": "synonyms for booming", "clues": ["boom out", "nail", "thunder", "smash", "thrive", "blast", "flourish", "expand", "boom", "din"]}, {"answer": "bootlicking", "hint": "synonyms for bootlicking", "clues": ["bootlick", "toady", "truckle", "kotow", "fawn", "suck up"]}, {"answer": "bordered", "hint": "synonyms for bordered", "clues": ["march", "abut", "butt", "frame in", "environ", "skirt", "adjoin", "ring", "border", "butt against", "frame", "edge", "bound", "butt on", "surround"]}, {"answer": "born", "hint": "synonyms for born", "clues": ["digest", "support", "give birth", "birth", "abide", "comport", "accept", "acquit", "have", "bear", "assume", "gestate", "suffer", "take over", "behave", "deport", "expect", "carry", "stomach", "yield", "conduct", "deliver", "endure", "tolerate", "turn out", "pay", "wear", "put up", "have a bun in the oven", "contain", "hold", "stand", "brook", "stick out", "born"]}, {"answer": "bosomed", "hint": "synonyms for bosomed", "clues": ["embrace", "squeeze", "hug", "bosom", "bosomed"]}, {"answer": "botched", "hint": "synonyms for botched", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "botched"]}, {"answer": "bothered", "hint": "synonyms for bothered", "clues": ["annoy", "inconvenience oneself", "trouble oneself", "devil", "gravel", "put out", "rile", "get at", "inconvenience", "disoblige", "nettle", "irritate", "incommode", "nark", "vex", "discommode", "trouble", "get to", "chafe", "rag", "bother"]}, {"answer": "bouncing", "hint": "synonyms for bouncing", "clues": ["bounce", "resile", "recoil", "ricochet", "take a hop", "reverberate", "jounce", "bound", "spring", "rebound", "bouncing"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["confine", "attach", "constipate", "border", "stick to", "resile", "recoil", "hold fast", "ricochet", "spring", "throttle", "bind", "truss", "tie down", "oblige", "bandage", "bounce", "limit", "jump", "take a hop", "leap", "bond", "tie up", "reverberate", "trammel", "tie", "hold", "adhere", "rebound", "restrain", "stick", "restrict"]}, {"answer": "bounded", "hint": "synonyms for bounded", "clues": ["confine", "border", "resile", "recoil", "ricochet", "spring", "throttle", "bounce", "limit", "jump", "take a hop", "leap", "reverberate", "trammel", "bound", "rebound", "restrain", "restrict", "bounded"]}, {"answer": "bowed", "hint": "synonyms for bowed", "clues": ["bow down", "bow", "give in", "bend", "submit", "stoop", "defer", "accede", "crouch", "bowed"]}, {"answer": "bowing", "hint": "synonyms for bowing", "clues": ["bow down", "bow", "give in", "bend", "submit", "stoop", "defer", "accede", "crouch"]}, {"answer": "braced", "hint": "synonyms for braced", "clues": ["energise", "stabilize", "arouse", "stimulate", "brace", "poise", "steady", "perk up"]}, {"answer": "bracing", "hint": "synonyms for bracing", "clues": ["energise", "stabilize", "arouse", "stimulate", "brace", "poise", "steady", "perk up", "bracing"]}, {"answer": "brag", "hint": "synonyms for brag", "clues": ["gas", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "swash", "blow", "brag"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["swash", "gas", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "blow", "brag", "bragging"]}, {"answer": "braided", "hint": "synonyms for braided", "clues": ["lace", "plait", "pleach", "braid", "braided"]}, {"answer": "branched", "hint": "synonyms for branched", "clues": ["furcate", "branch", "ramify", "separate", "fork"]}, {"answer": "branching", "hint": "synonyms for branching", "clues": ["furcate", "branch", "ramify", "separate", "fork"]}, {"answer": "branded", "hint": "synonyms for branded", "clues": ["trademark", "post", "denounce", "brandmark", "mark", "stigmatize", "brand", "branded"]}, {"answer": "breathed", "hint": "synonyms for breathed", "clues": ["take a breath", "breathe", "respire", "pass off", "catch one's breath", "emit", "rest", "suspire"]}, {"answer": "breathing", "hint": "synonyms for breathing", "clues": ["take a breath", "breathe", "respire", "pass off", "catch one's breath", "emit", "rest", "suspire", "breathing"]}, {"answer": "breeding", "hint": "synonyms for breeding", "clues": ["breed", "cover", "engender", "spawn", "multiply"]}, {"answer": "bristled", "hint": "synonyms for bristled", "clues": ["abound", "burst", "uprise", "bristle", "stand up"]}, {"answer": "broke", "hint": "synonyms for broke", "clues": ["reveal", "demote", "infract", "go", "break out", "weaken", "discontinue", "pause", "violate", "burst", "give out", "break away", "come apart", "transgress", "break", "divulge", "interrupt", "fall in", "break in", "break-dance", "give way", "founder", "better", "wear", "fail", "erupt", "bump", "discover", "get around", "unwrap", "check", "ruin", "intermit", "split up", "go against", "bring out", "separate", "damp", "split", "breach", "break up", "kick downstairs", "cave in", "recrudesce", "fall apart", "bankrupt", "fracture", "stop", "expose", "break down", "dampen", "collapse", "conk out", "wear out", "smash", "offend", "let on", "give", "let out", "develop", "break off", "disclose", "go bad", "crack", "soften", "snap off", "die", "relegate", "part", "broke"]}, {"answer": "broken", "hint": "synonyms for broken", "clues": ["reveal", "demote", "infract", "go", "break out", "weaken", "discontinue", "pause", "violate", "burst", "give out", "break away", "come apart", "transgress", "break", "divulge", "interrupt", "fall in", "break in", "break-dance", "give way", "founder", "better", "wear", "fail", "erupt", "bump", "discover", "get around", "unwrap", "check", "ruin", "intermit", "split up", "go against", "bring out", "separate", "damp", "split", "breach", "break up", "kick downstairs", "cave in", "recrudesce", "fall apart", "bankrupt", "fracture", "stop", "expose", "break down", "dampen", "collapse", "conk out", "wear out", "smash", "offend", "let on", "give", "let out", "develop", "break off", "disclose", "go bad", "crack", "soften", "snap off", "die", "relegate", "part", "broken"]}, {"answer": "brooding", "hint": "synonyms for brooding", "clues": ["dwell", "loom", "pout", "sulk", "bulk large", "brood", "grizzle", "hatch", "incubate", "stew", "hover", "cover"]}, {"answer": "bruising", "hint": "synonyms for bruising", "clues": ["spite", "offend", "contuse", "wound", "injure", "hurt", "bruise", "bruising"]}, {"answer": "bubbling", "hint": "synonyms for bubbling", "clues": ["belch", "babble", "bubble", "burble", "ripple", "eruct", "gurgle", "burp", "guggle", "bubbling"]}, {"answer": "buffeted", "hint": "synonyms for buffeted", "clues": ["batter", "buff", "knock about", "buffet"]}, {"answer": "bugged", "hint": "synonyms for bugged", "clues": ["bug", "intercept", "pester", "badger", "beleaguer", "tease", "wiretap", "tap", "bugged"]}, {"answer": "built", "hint": "synonyms for built", "clues": ["make", "progress", "build up", "build", "ramp up", "work up", "construct", "establish", "built"]}, {"answer": "bulging", "hint": "synonyms for bulging", "clues": ["start", "pouch", "bulk", "bulge out", "bag", "pop", "come out", "bulge", "protrude", "pop out", "bulging"]}, {"answer": "bully", "hint": "synonyms for bully", "clues": ["strong-arm", "bullyrag", "boss around", "push around", "browbeat", "hector", "swagger", "bully"]}, {"answer": "bullying", "hint": "synonyms for bullying", "clues": ["strong-arm", "bullyrag", "bully", "boss around", "push around", "browbeat", "hector", "swagger"]}, {"answer": "bum", "hint": "synonyms for bum", "clues": ["loll around", "fuck off", "arse about", "lounge around", "frig around", "sponge", "arse around", "cadge", "mooch", "grub", "loaf", "bum about", "loll", "lounge about", "bum around", "waste one's time", "bum"]}, {"answer": "bumbling", "hint": "synonyms for bumbling", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "stammer", "mess up", "stumble", "mishandle", "screw up", "stutter", "bodge", "fumble", "louse up", "foul up", "falter", "ball up", "blow", "botch", "bumbling"]}, {"answer": "bungled", "hint": "synonyms for bungled", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch"]}, {"answer": "bungling", "hint": "synonyms for bungling", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bungling"]}, {"answer": "burbling", "hint": "synonyms for burbling", "clues": ["bubble", "gurgle", "burble", "ripple", "babble", "guggle", "burbling"]}, {"answer": "burdened", "hint": "synonyms for burdened", "clues": ["saddle", "weight down", "burden", "charge", "weight", "burthen"]}, {"answer": "buried", "hint": "synonyms for buried", "clues": ["swallow", "sink", "inter", "immerse", "bury", "forget", "inhume", "entomb", "eat up", "swallow up", "lay to rest", "buried"]}, {"answer": "burned", "hint": "synonyms for burned", "clues": ["burn", "burn down", "bite", "incinerate", "cauterise", "combust", "fire", "sting", "cut", "burn off", "burn up", "glow", "sunburn", "burned"]}, {"answer": "burning", "hint": "synonyms for burning", "clues": ["burn", "burn down", "bite", "incinerate", "cauterise", "combust", "fire", "sting", "cut", "burn off", "burn up", "glow", "sunburn"]}, {"answer": "burnt", "hint": "synonyms for burnt", "clues": ["burn", "burn down", "bite", "incinerate", "cauterise", "combust", "fire", "sting", "cut", "burn off", "burn up", "glow", "sunburn"]}, {"answer": "bushwhacking", "hint": "synonyms for bushwhacking", "clues": ["scupper", "bushwhack", "lie in wait", "ambush", "ambuscade", "waylay", "lurk"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["break", "tear", "wear out", "snap", "raid", "rupture", "fall apart", "wear", "burst"]}, {"answer": "busted", "hint": "synonyms for busted", "clues": ["break", "tear", "wear out", "snap", "raid", "rupture", "fall apart", "wear", "burst", "busted"]}, {"answer": "buzzing", "hint": "synonyms for buzzing", "clues": ["hum", "bombinate", "seethe", "buzz"]}, {"answer": "bypast", "hint": "synonyms for bypast", "clues": ["bypass", "short-circuit", "get around", "go around", "bypast"]}, {"answer": "calculated", "hint": "synonyms for calculated", "clues": ["forecast", "figure", "aim", "depend", "reckon", "estimate", "direct", "bet", "count", "work out", "cypher", "compute", "look", "cipher", "count on", "account", "calculate"]}, {"answer": "calculating", "hint": "synonyms for calculating", "clues": ["forecast", "figure", "aim", "depend", "reckon", "estimate", "direct", "bet", "count", "work out", "cypher", "compute", "look", "cipher", "count on", "account", "calculate", "calculating"]}, {"answer": "calm", "hint": "synonyms for calm", "clues": ["cool off", "tranquillise", "still", "quieten", "cool it", "chill out", "calm down", "settle down", "simmer down", "sedate", "quiet", "becalm", "steady", "lull", "calm"]}, {"answer": "camp", "hint": "synonyms for camp", "clues": ["camp out", "tent", "encamp", "bivouac", "camp down", "camp"]}, {"answer": "cancelled", "hint": "synonyms for cancelled", "clues": ["call off", "set off", "invalidate", "offset", "cancel", "strike down", "scrub", "delete", "scratch", "cancelled"]}, {"answer": "canned", "hint": "synonyms for canned", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "give the axe", "send away", "displace", "put up", "fire", "terminate", "tin", "canned"]}, {"answer": "canted", "hint": "synonyms for canted", "clues": ["slant", "tilt", "cant", "pitch", "cant over", "canted"]}, {"answer": "captivated", "hint": "synonyms for captivated", "clues": ["captivate", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor"]}, {"answer": "captivating", "hint": "synonyms for captivating", "clues": ["captivate", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "captivating"]}, {"answer": "caring", "hint": "synonyms for caring", "clues": ["manage", "deal", "give care", "wish", "like", "worry", "handle", "care", "caring"]}, {"answer": "castrated", "hint": "synonyms for castrated", "clues": ["emasculate", "demasculinise", "bowdlerise", "expurgate", "spay", "neuter", "shorten", "alter", "castrate"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["captivate", "capture", "watch", "overhear", "hitch", "becharm", "take hold of", "trance", "enchant", "arrest", "get", "view", "catch up with", "take in", "overtake", "grab", "charm", "trip up", "fascinate", "pick up", "beguile", "bewitch", "see", "catch", "enamor"]}, {"answer": "celebrated", "hint": "synonyms for celebrated", "clues": ["observe", "keep", "lionise", "fete", "celebrate"]}, {"answer": "center", "hint": "synonyms for center", "clues": ["revolve about", "revolve around", "rivet", "focus", "focus on", "centre", "center on", "concentrate", "pore", "center"]}, {"answer": "centered", "hint": "synonyms for centered", "clues": ["revolve about", "revolve around", "rivet", "focus", "focus on", "center", "centre", "center on", "concentrate", "pore"]}, {"answer": "certified", "hint": "synonyms for certified", "clues": ["endorse", "demonstrate", "attest", "manifest", "evidence", "licence", "certify", "certified"]}, {"answer": "chafed", "hint": "synonyms for chafed", "clues": ["annoy", "fray", "devil", "rub", "gravel", "rile", "get at", "gall", "nettle", "irritate", "scratch", "fret", "nark", "excoriate", "vex", "get to", "chafe", "rag", "bother"]}, {"answer": "chagrined", "hint": "synonyms for chagrined", "clues": ["chagrin", "humble", "abase", "humiliate", "mortify"]}, {"answer": "challenging", "hint": "synonyms for challenging", "clues": ["take exception", "challenge", "dispute", "gainsay", "challenging"]}, {"answer": "chance", "hint": "synonyms for chance", "clues": ["adventure", "encounter", "risk", "hazard", "happen", "bump", "find", "gamble", "take a chance", "run a risk", "chance"]}, {"answer": "changed", "hint": "synonyms for changed", "clues": ["change", "convert", "deepen", "vary", "switch", "interchange", "modify", "transfer", "shift", "commute", "alter"]}, {"answer": "changing", "hint": "synonyms for changing", "clues": ["change", "convert", "deepen", "vary", "switch", "interchange", "modify", "transfer", "shift", "commute", "alter", "changing"]}, {"answer": "chanted", "hint": "synonyms for chanted", "clues": ["intone", "tone", "chant", "cantillate", "chanted"]}, {"answer": "charged", "hint": "synonyms for charged", "clues": ["buck", "burden", "shoot", "lodge", "file", "agitate", "bill", "commit", "charge", "appoint", "institutionalize", "point", "turn on", "blame", "load", "bear down", "accuse", "tear", "shoot down", "send", "charge up", "rouse", "level", "consign", "saddle", "excite", "commove"]}, {"answer": "charmed", "hint": "synonyms for charmed", "clues": ["captivate", "tempt", "capture", "becharm", "trance", "fascinate", "enchant", "influence", "beguile", "bewitch", "charm", "catch", "enamor", "charmed"]}, {"answer": "charming", "hint": "synonyms for charming", "clues": ["captivate", "tempt", "capture", "becharm", "trance", "fascinate", "enchant", "influence", "beguile", "bewitch", "charm", "catch", "enamor"]}, {"answer": "chartered", "hint": "synonyms for chartered", "clues": ["rent", "engage", "hire", "take", "charter", "lease"]}, {"answer": "cheating", "hint": "synonyms for cheating", "clues": ["rip off", "chouse", "betray", "cuckold", "screw", "jockey", "shaft", "wander", "chicane", "cheat", "cheat on", "chisel"]}, {"answer": "checked", "hint": "synonyms for checked", "clues": ["delay", "match", "gibe", "see to it", "turn back", "tick", "check into", "arrest", "mark", "discipline", "break", "fit", "check off", "check over", "hold in", "determine", "check out", "look into", "agree", "checker", "check", "moderate", "chequer", "mark off", "check up on", "see", "jibe", "ascertain", "hold", "find out", "insure", "go over", "hold back", "train", "learn", "watch", "assure", "stop", "tally", "retard", "condition", "control", "ensure", "suss out", "correspond", "chink", "contain", "tick off", "crack", "curb"]}, {"answer": "cheering", "hint": "synonyms for cheering", "clues": ["inspire", "jolly up", "jolly along", "cheer up", "recreate", "chirk up", "embolden", "exhort", "urge on", "pep up", "barrack", "urge", "hearten", "cheer", "root on"]}, {"answer": "cherished", "hint": "synonyms for cherished", "clues": ["hold dear", "treasure", "cherish", "care for"]}, {"answer": "chinked", "hint": "synonyms for chinked", "clues": ["clink", "tinkle", "tink", "check", "chink", "chinked"]}, {"answer": "choked", "hint": "synonyms for choked", "clues": ["decease", "asphyxiate", "go", "suffocate", "choke", "cash in one's chips", "perish", "expire", "throttle", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "die", "foul", "buy the farm", "back up", "snuff it", "strangle", "gag", "croak", "fret", "clog up", "clog", "stifle", "pass away", "choke off", "pass", "congest", "scrag"]}, {"answer": "churning", "hint": "synonyms for churning", "clues": ["moil", "boil", "churn", "roil"]}, {"answer": "circulating", "hint": "synonyms for circulating", "clues": ["circulate", "pass on", "mobilize", "diffuse", "circularize", "pass around", "spread", "go around", "broadcast", "propagate", "disseminate", "disperse", "circle", "distribute", "circulating"]}, {"answer": "civilised", "hint": "synonyms for civilised", "clues": ["civilise", "train", "educate", "school", "cultivate"]}, {"answer": "civilized", "hint": "synonyms for civilized", "clues": ["civilise", "train", "educate", "school", "cultivate", "civilized"]}, {"answer": "clad", "hint": "synonyms for clad", "clues": ["tog", "raiment", "apparel", "enclothe", "robe", "drape", "garment", "adorn", "cloak", "habilitate", "dress", "fit out", "garb", "invest", "clad"]}, {"answer": "classified", "hint": "synonyms for classified", "clues": ["class", "classify", "sort out", "sort", "separate", "assort", "relegate", "classified"]}, {"answer": "clean", "hint": "synonyms for clean", "clues": ["pick", "make clean", "strip", "clean house", "scavenge", "houseclean", "cleanse", "clean"]}, {"answer": "clear", "hint": "synonyms for clear", "clues": ["acquit", "top", "illuminate", "authorize", "clear up", "discharge", "realise", "straighten out", "crystallise", "take in", "sack up", "solve", "brighten", "shed light on", "light up", "sack", "pull in", "elucidate", "unclutter", "enlighten", "gain", "make", "sort out", "exonerate", "exculpate", "assoil", "pass", "net", "bring in", "earn", "clear"]}, {"answer": "cleared", "hint": "synonyms for cleared", "clues": ["acquit", "top", "illuminate", "authorize", "clear", "crystallise", "sack up", "light up", "sack", "pull in", "enlighten", "gain", "sort out", "exculpate", "earn", "discharge", "assoil", "clear up", "realise", "straighten out", "take in", "brighten", "make", "elucidate", "unclutter", "exonerate", "pass", "solve", "shed light on", "net", "bring in", "cleared"]}, {"answer": "cleft", "hint": "synonyms for cleft", "clues": ["cleave", "cohere", "cling", "adhere", "rive", "stick", "split", "cleft"]}, {"answer": "clinking", "hint": "synonyms for clinking", "clues": ["clink", "tinkle", "tink", "chink"]}, {"answer": "clipped", "hint": "synonyms for clipped", "clues": ["cut back", "trim", "curtail", "snip", "snip off", "crop", "cut short", "lop", "dress", "prune", "trot", "clip", "jog", "clipped"]}, {"answer": "cloaked", "hint": "synonyms for cloaked", "clues": ["cloak", "dissemble", "mask", "robe", "drape", "clothe", "cloaked"]}, {"answer": "clogged", "hint": "synonyms for clogged", "clues": ["clot", "constipate", "foul", "overload", "clog up", "back up", "choke", "clog", "choke off", "congest", "clogged"]}, {"answer": "clogging", "hint": "synonyms for clogging", "clues": ["clot", "constipate", "foul", "overload", "clog up", "back up", "choke", "clog", "choke off", "congest", "clogging"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["come together", "shut", "fold", "close up", "conclude", "fill up", "close down", "shut down", "close"]}, {"answer": "closed", "hint": "synonyms for closed", "clues": ["come together", "shut", "fold", "close up", "conclude", "fill up", "close down", "close", "shut down"]}, {"answer": "closing", "hint": "synonyms for closing", "clues": ["come together", "shut", "fold", "close up", "conclude", "fill up", "close down", "close", "shut down", "closing"]}, {"answer": "clothed", "hint": "synonyms for clothed", "clues": ["tog", "raiment", "apparel", "enclothe", "robe", "drape", "garment", "adorn", "cloak", "habilitate", "dress", "fit out", "garb", "invest", "clothed"]}, {"answer": "clotted", "hint": "synonyms for clotted", "clues": ["clabber", "clot", "clog", "curdle", "coagulate", "clotted"]}, {"answer": "clouded", "hint": "synonyms for clouded", "clues": ["sully", "cloud", "haze over", "defile", "befog", "fog", "obnubilate", "taint", "mottle", "corrupt", "overcast", "mist", "dapple", "obscure", "becloud", "clouded"]}, {"answer": "cloven", "hint": "synonyms for cloven", "clues": ["cleave", "cohere", "cling", "adhere", "rive", "stick", "split", "cloven"]}, {"answer": "clustered", "hint": "synonyms for clustered", "clues": ["bundle", "cluster", "clump", "bunch", "bunch up", "flock", "constellate"]}, {"answer": "co-ordinated", "hint": "synonyms for co-ordinated", "clues": ["organise", "ordinate", "align", "co-ordinated"]}, {"answer": "coalesced", "hint": "synonyms for coalesced", "clues": ["fuse", "blend", "mix", "immix", "meld", "commingle", "merge", "combine", "coalesce", "conflate", "flux"]}, {"answer": "coalescing", "hint": "synonyms for coalescing", "clues": ["fuse", "blend", "mix", "immix", "meld", "commingle", "merge", "combine", "coalesce", "conflate", "flux", "coalescing"]}, {"answer": "coaxing", "hint": "synonyms for coaxing", "clues": ["sweet-talk", "coax", "palaver", "inveigle", "blarney", "wheedle", "cajole"]}, {"answer": "cod", "hint": "synonyms for cod", "clues": ["ride", "rally", "gull", "razz", "put one over", "befool", "bait", "take in", "put on", "tantalise", "taunt", "fool", "dupe", "twit", "tease", "put one across", "rag", "slang", "cod"]}, {"answer": "coiled", "hint": "synonyms for coiled", "clues": ["handbuild", "coil", "spiral", "loop", "curl", "gyrate", "coiled"]}, {"answer": "coiling", "hint": "synonyms for coiling", "clues": ["handbuild", "coil", "spiral", "loop", "curl", "gyrate"]}, {"answer": "coinciding", "hint": "synonyms for coinciding", "clues": ["co-occur", "concur", "coincide", "coinciding"]}, {"answer": "collect", "hint": "synonyms for collect", "clues": ["pile up", "pull in", "amass", "pull together", "gather up", "hoard", "garner", "gather", "pick up", "compile", "take in", "accumulate", "roll up", "call for", "collect"]}, {"answer": "collected", "hint": "synonyms for collected", "clues": ["pile up", "pull in", "amass", "pull together", "gather up", "hoard", "garner", "gather", "pick up", "compile", "call for", "take in", "accumulate", "roll up", "collect"]}, {"answer": "color", "hint": "synonyms for color", "clues": ["colour", "discolour", "colour in", "tinge", "gloss", "distort", "colorise", "colourize", "emblazon"]}, {"answer": "colored", "hint": "synonyms for colored", "clues": ["colour", "discolour", "colour in", "tinge", "gloss", "distort", "colorise", "colourize", "emblazon", "colored"]}, {"answer": "colour", "hint": "synonyms for colour", "clues": ["discolour", "colour in", "colorize", "tinge", "gloss", "colourise", "color", "distort", "emblazon"]}, {"answer": "coloured", "hint": "synonyms for coloured", "clues": ["colour", "discolour", "colour in", "colorize", "tinge", "gloss", "colourise", "distort", "emblazon"]}, {"answer": "combed", "hint": "synonyms for combed", "clues": ["comb", "ransack", "comb out", "disentangle", "combed"]}, {"answer": "combined", "hint": "synonyms for combined", "clues": ["blend", "mix", "immix", "meld", "commingle", "merge", "conflate", "compound", "combine", "unite", "coalesce", "aggregate", "fuse", "flux"]}, {"answer": "comforted", "hint": "synonyms for comforted", "clues": ["ease", "solace", "soothe", "console", "comfort"]}, {"answer": "comforting", "hint": "synonyms for comforting", "clues": ["ease", "solace", "soothe", "console", "comfort"]}, {"answer": "coming", "hint": "synonyms for coming", "clues": ["total", "come up", "occur", "amount", "add up", "number", "derive", "make out", "get", "arrive", "follow", "issue forth", "fall", "get along", "descend", "come", "come in", "hail", "do", "fare", "coming"]}, {"answer": "commanding", "hint": "synonyms for commanding", "clues": ["control", "dominate", "overlook", "command", "overtop", "require"]}, {"answer": "commemorating", "hint": "synonyms for commemorating", "clues": ["immortalise", "memorialise", "mark", "commemorate", "record", "remember", "commemorating"]}, {"answer": "committed", "hint": "synonyms for committed", "clues": ["consecrate", "entrust", "confide", "devote", "practice", "perpetrate", "commit", "put", "charge", "institutionalize", "send", "place", "give", "pull", "trust", "invest", "dedicate", "committed"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["bundle", "compress", "pack", "press", "pack together", "wad", "contract", "squeeze", "constrict", "compact"]}, {"answer": "compassionate", "hint": "synonyms for compassionate", "clues": ["condole with", "pity", "feel for", "sympathize with", "compassionate"]}, {"answer": "compensated", "hint": "synonyms for compensated", "clues": ["right", "compensate", "even up", "correct", "recompense", "overcompensate", "even off", "indemnify", "cover", "repair", "make up", "redress", "pay off", "pay", "counterbalance", "even out", "remunerate"]}, {"answer": "complaining", "hint": "synonyms for complaining", "clues": ["kick", "kvetch", "quetch", "sound off", "complain", "plain"]}, {"answer": "complete", "hint": "synonyms for complete", "clues": ["fill in", "finish", "nail", "make out", "fill out", "discharge", "dispatch", "complete"]}, {"answer": "completed", "hint": "synonyms for completed", "clues": ["nail", "fill out", "discharge", "complete", "fill in", "finish", "make out", "dispatch"]}, {"answer": "completing", "hint": "synonyms for completing", "clues": ["nail", "fill out", "discharge", "complete", "fill in", "finish", "make out", "dispatch", "completing"]}, {"answer": "complicated", "hint": "synonyms for complicated", "clues": ["refine", "complicate", "perplex", "elaborate", "rarify"]}, {"answer": "composed", "hint": "synonyms for composed", "clues": ["indite", "compile", "frame", "draw up", "pen", "compose", "write"]}, {"answer": "compound", "hint": "synonyms for compound", "clues": ["combine", "deepen", "intensify", "heighten", "compound"]}, {"answer": "compounded", "hint": "synonyms for compounded", "clues": ["combine", "compound", "deepen", "intensify", "heighten"]}, {"answer": "comprehended", "hint": "synonyms for comprehended", "clues": ["apprehend", "dig", "get the picture", "grok", "perceive", "compass", "embrace", "grasp", "comprehend", "savvy", "cover"]}, {"answer": "compressed", "hint": "synonyms for compressed", "clues": ["compress", "compact", "press", "pack together", "contract", "squeeze", "constrict"]}, {"answer": "concealed", "hint": "synonyms for concealed", "clues": ["conceal", "hide", "hold in", "hold back"]}, {"answer": "concealing", "hint": "synonyms for concealing", "clues": ["conceal", "hide", "hold in", "hold back"]}, {"answer": "concentrated", "hint": "synonyms for concentrated", "clues": ["centralize", "rivet", "digest", "focus", "reduce", "center", "centre", "condense", "contract", "decoct", "concentrate", "boil down", "pore"]}, {"answer": "concerned", "hint": "synonyms for concerned", "clues": ["refer", "touch on", "relate", "have-to doe with", "worry", "pertain", "come to", "touch", "bear on", "occupy", "concern", "interest"]}, {"answer": "concluded", "hint": "synonyms for concluded", "clues": ["reason", "close", "conclude", "reason out", "resolve"]}, {"answer": "concluding", "hint": "synonyms for concluding", "clues": ["reason", "close", "conclude", "reason out", "resolve", "concluding"]}, {"answer": "concurring", "hint": "synonyms for concurring", "clues": ["concord", "concur", "hold", "agree", "coincide", "concurring"]}, {"answer": "condemning", "hint": "synonyms for condemning", "clues": ["decry", "objurgate", "doom", "excoriate", "condemn", "sentence", "reprobate"]}, {"answer": "condescending", "hint": "synonyms for condescending", "clues": ["lower oneself", "patronise", "stoop", "deign", "condescend", "descend"]}, {"answer": "conditioned", "hint": "synonyms for conditioned", "clues": ["train", "qualify", "specify", "discipline", "stipulate", "check", "condition"]}, {"answer": "confiding", "hint": "synonyms for confiding", "clues": ["commit", "trust", "intrust", "confide", "confiding"]}, {"answer": "confined", "hint": "synonyms for confined", "clues": ["confine", "hold in", "limit", "circumscribe", "detain", "hold", "enclose", "trammel", "bound", "restrain", "throttle", "restrict"]}, {"answer": "confining", "hint": "synonyms for confining", "clues": ["confine", "hold in", "limit", "circumscribe", "detain", "hold", "enclose", "trammel", "bound", "restrain", "throttle", "restrict", "confining"]}, {"answer": "confirmed", "hint": "synonyms for confirmed", "clues": ["support", "sustain", "affirm", "confirm", "substantiate", "corroborate", "reassert"]}, {"answer": "confirming", "hint": "synonyms for confirming", "clues": ["support", "sustain", "affirm", "confirm", "substantiate", "corroborate", "reassert"]}, {"answer": "confiscate", "hint": "synonyms for confiscate", "clues": ["impound", "attach", "seize", "sequester", "confiscate"]}, {"answer": "conflicting", "hint": "synonyms for conflicting", "clues": ["conflict", "infringe", "contravene", "run afoul"]}, {"answer": "confounded", "hint": "synonyms for confounded", "clues": ["fuddle", "throw", "discombobulate", "confuse", "fox", "bedevil", "confound"]}, {"answer": "confounding", "hint": "synonyms for confounding", "clues": ["fuddle", "throw", "discombobulate", "confuse", "fox", "bedevil", "confound"]}, {"answer": "confused", "hint": "synonyms for confused", "clues": ["flurry", "fuddle", "throw", "discombobulate", "confuse", "jumble", "fox", "put off", "disconcert", "bedevil", "obnubilate", "mix up", "confound", "blur", "obscure"]}, {"answer": "confusing", "hint": "synonyms for confusing", "clues": ["flurry", "fuddle", "throw", "discombobulate", "confuse", "jumble", "fox", "put off", "disconcert", "bedevil", "obnubilate", "mix up", "confound", "blur", "obscure", "confusing"]}, {"answer": "congested", "hint": "synonyms for congested", "clues": ["clog", "choke off", "foul", "clog up", "back up", "congest", "choke"]}, {"answer": "conglomerate", "hint": "synonyms for conglomerate", "clues": ["pile up", "amass", "cumulate", "gather", "conglomerate"]}, {"answer": "conjoined", "hint": "synonyms for conjoined", "clues": ["join", "get married", "wed", "espouse", "marry", "hook up with", "get hitched with", "conjoin"]}, {"answer": "connected", "hint": "synonyms for connected", "clues": ["link", "join", "plug into", "get in touch", "relate", "connect", "link up", "associate", "touch base", "unite", "tie", "colligate", "tie in"]}, {"answer": "consecrate", "hint": "synonyms for consecrate", "clues": ["ordinate", "sanctify", "devote", "give", "order", "bless", "commit", "hallow", "dedicate", "ordain", "vow", "consecrate"]}, {"answer": "consecrated", "hint": "synonyms for consecrated", "clues": ["ordinate", "consecrate", "sanctify", "devote", "order", "give", "vow", "bless", "commit", "hallow", "ordain", "dedicate"]}, {"answer": "conserved", "hint": "synonyms for conserved", "clues": ["economize", "preserve", "keep up", "conserve", "maintain", "husband"]}, {"answer": "considered", "hint": "synonyms for considered", "clues": ["deal", "deliberate", "reckon", "think", "view", "count", "conceive", "look at", "consider", "believe", "take", "regard", "debate", "study", "see", "weigh", "turn over", "moot"]}, {"answer": "consoling", "hint": "synonyms for consoling", "clues": ["comfort", "solace", "console", "soothe", "consoling"]}, {"answer": "constituted", "hint": "synonyms for constituted", "clues": ["make up", "make", "form", "plant", "institute", "represent", "nominate", "comprise", "name", "appoint", "found", "establish", "be", "constitute"]}, {"answer": "constrained", "hint": "synonyms for constrained", "clues": ["tighten up", "constrain", "tighten", "cumber", "restrain", "stiffen"]}, {"answer": "constraining", "hint": "synonyms for constraining", "clues": ["tighten up", "constrain", "tighten", "cumber", "restrain", "stiffen"]}, {"answer": "constricted", "hint": "synonyms for constricted", "clues": ["narrow", "compress", "compact", "press", "constringe", "contract", "squeeze", "constrict"]}, {"answer": "constricting", "hint": "synonyms for constricting", "clues": ["narrow", "compress", "compact", "press", "constringe", "contract", "squeeze", "constrict"]}, {"answer": "consuming", "hint": "synonyms for consuming", "clues": ["devour", "have", "ware", "exhaust", "squander", "down", "use up", "go through", "consume", "ingest", "take in", "waste", "eat up", "eat", "deplete", "take", "run through", "wipe out", "consuming"]}, {"answer": "contained", "hint": "synonyms for contained", "clues": ["control", "hold in", "turn back", "bear", "curb", "check", "hold", "take", "stop", "arrest", "incorporate", "contain", "comprise", "moderate", "carry", "hold back"]}, {"answer": "continued", "hint": "synonyms for continued", "clues": ["keep", "retain", "keep on", "uphold", "cover", "proceed", "stay", "continue", "carry on", "stay on", "go forward", "remain", "go along", "preserve", "extend", "go on", "bear on", "persist in"]}, {"answer": "continuing", "hint": "synonyms for continuing", "clues": ["keep", "retain", "keep on", "uphold", "cover", "proceed", "stay", "continue", "carry on", "stay on", "go forward", "remain", "go along", "preserve", "extend", "go on", "bear on", "persist in", "continuing"]}, {"answer": "contorted", "hint": "synonyms for contorted", "clues": ["distort", "deform", "wring", "contort"]}, {"answer": "contracted", "hint": "synonyms for contracted", "clues": ["narrow", "abridge", "compact", "press", "shrink", "foreshorten", "undertake", "get", "squeeze", "shorten", "sign on", "abbreviate", "sign up", "compress", "reduce", "take", "sign", "cut", "condense", "contract", "concentrate", "constrict"]}, {"answer": "contributing", "hint": "synonyms for contributing", "clues": ["chip in", "lend", "conduce", "give", "kick in", "bestow", "bring", "put up", "contribute", "add", "lead", "impart", "contributing"]}, {"answer": "contrived", "hint": "synonyms for contrived", "clues": ["invent", "throw", "devise", "formulate", "forge", "cast", "contrive", "project", "plan", "excogitate", "design"]}, {"answer": "controlled", "hint": "synonyms for controlled", "clues": ["command", "see to it", "ascertain", "assure", "verify", "control", "keep in line", "ensure", "hold in", "operate", "master", "manipulate", "check", "moderate", "contain", "see", "curb", "hold", "insure", "controlled"]}, {"answer": "controlling", "hint": "synonyms for controlling", "clues": ["command", "see to it", "ascertain", "assure", "verify", "control", "keep in line", "ensure", "hold in", "operate", "master", "manipulate", "check", "moderate", "contain", "see", "curb", "hold", "insure", "controlling"]}, {"answer": "converted", "hint": "synonyms for converted", "clues": ["convince", "convert", "change", "change over", "commute", "win over"]}, {"answer": "convolute", "hint": "synonyms for convolute", "clues": ["sophisticate", "twist around", "pervert", "twist", "convolve", "convolute"]}, {"answer": "convoluted", "hint": "synonyms for convoluted", "clues": ["convolute", "sophisticate", "twist around", "pervert", "twist", "convolve"]}, {"answer": "cooked", "hint": "synonyms for cooked", "clues": ["make", "falsify", "manipulate", "fudge", "fix", "cook", "ready", "prepare", "misrepresent", "wangle", "fake", "cooked"]}, {"answer": "coordinated", "hint": "synonyms for coordinated", "clues": ["organise", "ordinate", "align", "coordinated"]}, {"answer": "coordinating", "hint": "synonyms for coordinating", "clues": ["organise", "ordinate", "align", "coordinating"]}, {"answer": "correct", "hint": "synonyms for correct", "clues": ["right", "decline", "compensate", "even up", "even off", "adjust", "slump", "discipline", "set", "objurgate", "make up", "rectify", "redress", "sort out", "chastise", "counterbalance", "even out", "chasten", "castigate", "correct"]}, {"answer": "corrected", "hint": "synonyms for corrected", "clues": ["right", "decline", "compensate", "even up", "correct", "even off", "adjust", "slump", "discipline", "set", "objurgate", "make up", "rectify", "redress", "sort out", "chastise", "counterbalance", "even out", "chasten", "castigate"]}, {"answer": "corresponding", "hint": "synonyms for corresponding", "clues": ["equate", "fit", "match", "gibe", "agree", "correspond", "check", "represent", "stand for", "tally", "jibe"]}, {"answer": "corrupt", "hint": "synonyms for corrupt", "clues": ["sully", "cloud", "spoil", "defile", "vitiate", "subvert", "grease one's palms", "debase", "buy", "bribe", "misdirect", "pervert", "taint", "profane", "deprave", "demoralise", "debauch", "corrupt"]}, {"answer": "corrupted", "hint": "synonyms for corrupted", "clues": ["cloud", "spoil", "defile", "subvert", "debase", "misdirect", "demoralise", "profane", "sully", "vitiate", "bribe", "grease one's palms", "buy", "pervert", "taint", "corrupt", "deprave", "debauch"]}, {"answer": "corrupting", "hint": "synonyms for corrupting", "clues": ["cloud", "spoil", "defile", "subvert", "debase", "misdirect", "demoralise", "profane", "sully", "vitiate", "bribe", "grease one's palms", "buy", "pervert", "taint", "corrupt", "deprave", "debauch"]}, {"answer": "counterbalanced", "hint": "synonyms for counterbalanced", "clues": ["make up", "countervail", "compensate", "even up", "correct", "even off", "counteract", "counterbalance", "even out", "neutralize", "oppose"]}, {"answer": "coupled", "hint": "synonyms for coupled", "clues": ["copulate", "couple on", "mate", "pair", "match", "pair off", "couple up", "twin", "couple", "partner off"]}, {"answer": "covered", "hint": "synonyms for covered", "clues": ["get across", "cross", "address", "compensate", "wrap up", "spread over", "report", "deal", "overlay", "overcompensate", "brood", "cut through", "hatch", "shroud", "breed", "plow", "underwrite", "cover", "traverse", "pass over", "get over", "continue", "hide", "treat", "track", "insure", "encompass", "extend", "cut across", "incubate", "embrace", "handle", "comprehend", "cover up", "covered"]}, {"answer": "crabbed", "hint": "synonyms for crabbed", "clues": ["holler", "squawk", "bellyache", "crab", "grouse", "beef", "bitch", "gripe", "crabbed"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["break", "crack up", "break up", "snap", "collapse", "break through", "check", "crack"]}, {"answer": "cracked", "hint": "synonyms for cracked", "clues": ["break", "break up", "snap", "collapse", "check", "crack", "crock up", "break through", "cracked"]}, {"answer": "cracking", "hint": "synonyms for cracking", "clues": ["break", "break up", "snap", "collapse", "check", "crack", "crock up", "break through"]}, {"answer": "cramped", "hint": "synonyms for cramped", "clues": ["halter", "cramp", "hamper", "strangle", "cramped"]}, {"answer": "crashing", "hint": "synonyms for crashing", "clues": ["break up", "go down", "break apart", "barge in", "gate-crash", "doss down", "doss", "ram", "crash", "dash"]}, {"answer": "craved", "hint": "synonyms for craved", "clues": ["lust", "starve", "thirst", "crave", "hunger"]}, {"answer": "cringing", "hint": "synonyms for cringing", "clues": ["cower", "cringe", "squinch", "creep", "quail", "shrink", "recoil", "grovel", "crawl", "fawn", "flinch", "wince", "funk", "cringing"]}, {"answer": "crinkled", "hint": "synonyms for crinkled", "clues": ["crumple", "crease", "wrinkle", "ruckle", "scrunch up", "scrunch", "crisp", "crinkled"]}, {"answer": "crisp", "hint": "synonyms for crisp", "clues": ["crispen", "crease", "wrinkle", "toast", "ruckle", "scrunch up", "scrunch", "crisp"]}, {"answer": "cropped", "hint": "synonyms for cropped", "clues": ["cut back", "clip", "trim", "pasture", "snip", "crop", "lop", "range", "dress", "work", "prune", "graze", "browse", "cultivate", "cropped"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["get across", "spoil", "queer", "hybridize", "bilk", "cut through", "intersect", "cover", "baffle", "traverse", "span", "frustrate", "pass over", "get over", "scotch", "track", "foil", "cut across", "sweep", "thwart", "crossbreed", "interbreed", "cross"]}, {"answer": "crossbred", "hint": "synonyms for crossbred", "clues": ["cross", "hybridise", "crossbreed", "interbreed"]}, {"answer": "crossed", "hint": "synonyms for crossed", "clues": ["get across", "cross", "spoil", "queer", "hybridize", "bilk", "cut through", "intersect", "cover", "baffle", "traverse", "span", "pass over", "frustrate", "get over", "scotch", "track", "foil", "cut across", "sweep", "thwart", "crossbreed", "interbreed", "crossed"]}, {"answer": "crowded", "hint": "synonyms for crowded", "clues": ["herd", "crowd together", "crowd", "push", "crowded"]}, {"answer": "crumpled", "hint": "synonyms for crumpled", "clues": ["crumple", "crease", "wrinkle", "cockle", "pucker", "break down", "collapse", "knit", "tumble", "buckle"]}, {"answer": "crushed", "hint": "synonyms for crushed", "clues": ["beat out", "squelch", "smash", "demolish", "vanquish", "squash", "oppress", "shell", "break down", "trounce", "squeeze", "crush", "jam", "beat", "suppress", "crushed"]}, {"answer": "crushing", "hint": "synonyms for crushing", "clues": ["beat out", "squelch", "smash", "demolish", "vanquish", "squash", "oppress", "shell", "break down", "trounce", "squeeze", "crush", "jam", "beat", "suppress"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["holler", "yell", "weep", "cry out", "call out", "call", "cry", "shout", "squall", "shout out", "scream", "blazon out", "exclaim", "hollo", "outcry"]}, {"answer": "crystalised", "hint": "synonyms for crystalised", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "effloresce", "shed light on"]}, {"answer": "crystalized", "hint": "synonyms for crystalized", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "effloresce", "shed light on"]}, {"answer": "crystallised", "hint": "synonyms for crystallised", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "shed light on"]}, {"answer": "crystallized", "hint": "synonyms for crystallized", "clues": ["illuminate", "clear up", "clear", "straighten out", "crystallise", "elucidate", "enlighten", "sort out", "effloresce", "shed light on"]}, {"answer": "cultivated", "hint": "synonyms for cultivated", "clues": ["domesticate", "civilise", "train", "educate", "tame", "crop", "naturalise", "work", "school", "cultivate"]}, {"answer": "curled", "hint": "synonyms for curled", "clues": ["draw in", "curl", "kink", "wave", "curve", "curl up", "loop", "coil", "curled"]}, {"answer": "curling", "hint": "synonyms for curling", "clues": ["draw in", "curl", "kink", "wave", "curve", "curl up", "loop", "coil"]}, {"answer": "cursed", "hint": "synonyms for cursed", "clues": ["imprecate", "swear", "unchurch", "excommunicate", "curse", "anathemize", "cuss", "maledict", "blaspheme", "beshrew", "bedamn", "damn"]}, {"answer": "curst", "hint": "synonyms for curst", "clues": ["imprecate", "swear", "unchurch", "excommunicate", "curse", "anathemize", "cuss", "maledict", "blaspheme", "beshrew", "bedamn", "damn", "curst"]}, {"answer": "curved", "hint": "synonyms for curved", "clues": ["arc", "slew", "wind", "swerve", "slue", "curl", "kink", "curve", "cut", "trend", "veer", "sheer", "twist", "crook"]}, {"answer": "curving", "hint": "synonyms for curving", "clues": ["arc", "slew", "wind", "swerve", "slue", "curl", "kink", "curve", "cut", "trend", "veer", "sheer", "twist", "crook", "curving"]}, {"answer": "cussed", "hint": "synonyms for cussed", "clues": ["imprecate", "swear", "curse", "blaspheme", "cuss", "cussed"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["disregard", "slew", "slue", "rationalize", "curve", "cut down", "issue", "foreshorten", "make out", "hack", "write out", "shorten", "snub", "burn", "geld", "swerve", "edit", "reduce", "trend", "veer", "switch off", "prune", "ignore", "skip", "abridge", "dilute", "thin out", "trim down", "trim back", "turn off", "tailor", "sheer", "edit out", "cut back", "cut off", "abbreviate", "trim", "bring down", "turn out", "contract", "thin", "cut"]}, {"answer": "cut_off", "hint": "synonyms for cut off", "clues": ["amputate", "interrupt", "break up", "disrupt", "chip", "lop off", "cut", "break off", "chop off", "cut out", "knap", "cut off"]}, {"answer": "cut_up", "hint": "synonyms for cut up", "clues": ["compartmentalise", "mangle", "hack", "carve", "mutilate", "cut up"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["disregard", "slew", "slue", "rationalize", "curve", "cut down", "issue", "foreshorten", "make out", "hack", "write out", "shorten", "snub", "burn", "geld", "swerve", "edit", "reduce", "trend", "veer", "switch off", "prune", "ignore", "skip", "abridge", "dilute", "thin out", "trim down", "trim back", "turn off", "tailor", "sheer", "edit out", "cut back", "cut off", "abbreviate", "trim", "bring down", "turn out", "cut", "contract", "thin", "cutting"]}, {"answer": "dabbled", "hint": "synonyms for dabbled", "clues": ["paddle", "smatter", "splash around", "dabble", "play around"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["imprecate", "maledict", "curse", "anathemise", "beshrew", "bedamn", "damn"]}, {"answer": "damned", "hint": "synonyms for damned", "clues": ["imprecate", "curse", "anathemize", "maledict", "beshrew", "bedamn", "damn", "damned"]}, {"answer": "damning", "hint": "synonyms for damning", "clues": ["imprecate", "curse", "anathemize", "maledict", "beshrew", "bedamn", "damn"]}, {"answer": "damp", "hint": "synonyms for damp", "clues": ["break", "soften", "weaken", "dull", "deaden", "tone down", "dampen", "mute", "muffle", "damp"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["dare", "presume", "make bold", "defy", "daring"]}, {"answer": "dashed", "hint": "synonyms for dashed", "clues": ["frighten away", "scud", "flash", "frighten off", "smash", "shoot", "scoot", "scare", "scare away", "scare off", "pall", "dart", "crash", "dash", "daunt", "dashed"]}, {"answer": "dashing", "hint": "synonyms for dashing", "clues": ["frighten away", "scud", "flash", "frighten off", "smash", "shoot", "scoot", "scare", "scare away", "scare off", "pall", "dart", "crash", "dash", "daunt"]}, {"answer": "dated", "hint": "synonyms for dated", "clues": ["go out", "date stamp", "see", "go steady", "date"]}, {"answer": "daunted", "hint": "synonyms for daunted", "clues": ["frighten away", "frighten off", "scare", "scare away", "scare off", "pall", "dash", "daunt", "daunted"]}, {"answer": "daunting", "hint": "synonyms for daunting", "clues": ["frighten away", "frighten off", "scare", "scare away", "scare off", "pall", "dash", "daunt"]}, {"answer": "deadened", "hint": "synonyms for deadened", "clues": ["deaden", "girdle", "blunt", "dampen", "damp"]}, {"answer": "deadening", "hint": "synonyms for deadening", "clues": ["deaden", "girdle", "blunt", "dampen", "damp"]}, {"answer": "debased", "hint": "synonyms for debased", "clues": ["load", "stretch", "adulterate", "vitiate", "subvert", "dilute", "debase", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch", "alloy"]}, {"answer": "debasing", "hint": "synonyms for debasing", "clues": ["load", "stretch", "adulterate", "vitiate", "subvert", "dilute", "debase", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch", "alloy", "debasing"]}, {"answer": "debauched", "hint": "synonyms for debauched", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch"]}, {"answer": "decayed", "hint": "synonyms for decayed", "clues": ["decay", "dilapidate", "decompose", "disintegrate", "crumble", "decayed"]}, {"answer": "deceased", "hint": "synonyms for deceased", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips"]}, {"answer": "decided", "hint": "synonyms for decided", "clues": ["adjudicate", "decide", "determine", "make up one's mind", "resolve", "settle"]}, {"answer": "deciding", "hint": "synonyms for deciding", "clues": ["adjudicate", "decide", "determine", "make up one's mind", "resolve", "settle", "deciding"]}, {"answer": "deciphered", "hint": "synonyms for deciphered", "clues": ["decode", "decipher", "decrypt", "trace"]}, {"answer": "declared", "hint": "synonyms for declared", "clues": ["declare", "adjudge", "announce", "hold"]}, {"answer": "decorated", "hint": "synonyms for decorated", "clues": ["grace", "ornament", "adorn", "beautify", "decorate", "deck", "embellish", "dress"]}, {"answer": "decreased", "hint": "synonyms for decreased", "clues": ["fall", "diminish", "decrease", "lessen", "minify"]}, {"answer": "decreasing", "hint": "synonyms for decreasing", "clues": ["fall", "diminish", "decrease", "lessen", "minify", "decreasing"]}, {"answer": "dedicated", "hint": "synonyms for dedicated", "clues": ["commit", "consecrate", "devote", "give", "dedicate"]}, {"answer": "deepening", "hint": "synonyms for deepening", "clues": ["change", "compound", "deepen", "intensify", "heighten"]}, {"answer": "defeated", "hint": "synonyms for defeated", "clues": ["kill", "get the better of", "shoot down", "vote down", "vote out", "overcome", "defeat"]}, {"answer": "defending", "hint": "synonyms for defending", "clues": ["support", "fend for", "fight", "defend", "represent", "champion", "guard", "fight back", "hold", "maintain", "fight down", "oppose"]}, {"answer": "defiled", "hint": "synonyms for defiled", "clues": ["sully", "maculate", "cloud", "stain", "defile", "foul", "taint", "corrupt", "tarnish", "befoul"]}, {"answer": "defined", "hint": "synonyms for defined", "clues": ["determine", "specify", "set", "limit", "delineate", "fix", "delimit", "delimitate", "define"]}, {"answer": "deformed", "hint": "synonyms for deformed", "clues": ["change shape", "strain", "wring", "bend", "distort", "turn", "twist", "change form", "contort", "flex", "deform"]}, {"answer": "degraded", "hint": "synonyms for degraded", "clues": ["put down", "take down", "demean", "disgrace", "degrade", "cheapen"]}, {"answer": "degrading", "hint": "synonyms for degrading", "clues": ["put down", "take down", "demean", "disgrace", "degrade", "cheapen", "degrading"]}, {"answer": "dejected", "hint": "synonyms for dejected", "clues": ["cast down", "get down", "demoralise", "deject", "dismay", "dispirit", "depress"]}, {"answer": "delayed", "hint": "synonyms for delayed", "clues": ["retard", "hold up", "delay", "stay", "detain", "check", "delayed"]}, {"answer": "deliberate", "hint": "synonyms for deliberate", "clues": ["debate", "moot", "consider", "turn over", "deliberate"]}, {"answer": "delighted", "hint": "synonyms for delighted", "clues": ["please", "enthrall", "revel", "enrapture", "delight", "enjoy", "enchant", "ravish", "transport"]}, {"answer": "delimited", "hint": "synonyms for delimited", "clues": ["demarcate", "specify", "delineate", "delimit", "delimitate", "subtend", "define"]}, {"answer": "delineate", "hint": "synonyms for delineate", "clues": ["line", "draw", "specify", "outline", "trace", "delimit", "limn", "delimitate", "define", "describe", "delineate"]}, {"answer": "delineated", "hint": "synonyms for delineated", "clues": ["line", "draw", "specify", "outline", "trace", "delineate", "delimit", "limn", "delimitate", "define", "describe"]}, {"answer": "demanding", "hint": "synonyms for demanding", "clues": ["need", "postulate", "ask", "take", "demand", "necessitate", "require", "exact", "involve", "call for"]}, {"answer": "demeaning", "hint": "synonyms for demeaning", "clues": ["put down", "take down", "demean", "disgrace", "degrade"]}, {"answer": "demolished", "hint": "synonyms for demolished", "clues": ["pulverise", "smash", "crush", "demolish", "destroy"]}, {"answer": "demonstrated", "hint": "synonyms for demonstrated", "clues": ["march", "prove", "demonstrate", "manifest", "evidence", "show", "attest", "exhibit", "demo", "certify", "shew", "present", "establish"]}, {"answer": "demoralised", "hint": "synonyms for demoralised", "clues": ["subvert", "debase", "misdirect", "cast down", "get down", "demoralise", "deject", "dismay", "profane", "depress", "vitiate", "pervert", "corrupt", "deprave", "dispirit", "debauch"]}, {"answer": "demoralising", "hint": "synonyms for demoralising", "clues": ["subvert", "debase", "misdirect", "cast down", "get down", "demoralise", "deject", "dismay", "profane", "depress", "vitiate", "pervert", "corrupt", "deprave", "dispirit", "debauch", "demoralising"]}, {"answer": "demoralized", "hint": "synonyms for demoralized", "clues": ["subvert", "debase", "misdirect", "cast down", "get down", "demoralise", "deject", "dismay", "profane", "depress", "vitiate", "pervert", "corrupt", "deprave", "dispirit", "debauch"]}, {"answer": "demoralizing", "hint": "synonyms for demoralizing", "clues": ["subvert", "debase", "misdirect", "cast down", "get down", "demoralise", "deject", "dismay", "profane", "depress", "vitiate", "pervert", "corrupt", "deprave", "dispirit", "debauch", "demoralizing"]}, {"answer": "denigrating", "hint": "synonyms for denigrating", "clues": ["denigrate", "sully", "minimize", "asperse", "derogate", "belittle", "calumniate", "besmirch", "slander", "defame", "smear", "denigrating"]}, {"answer": "denuded", "hint": "synonyms for denuded", "clues": ["denudate", "bare", "strip", "denuded"]}, {"answer": "departed", "hint": "synonyms for departed", "clues": ["set off", "start", "go", "digress", "start out", "diverge", "deviate", "set forth", "straggle", "quit", "go away", "take leave", "pull up stakes", "sidetrack", "vary", "depart", "leave", "take off", "set out", "part"]}, {"answer": "depicted", "hint": "synonyms for depicted", "clues": ["portray", "draw", "picture", "depict", "show", "limn", "describe", "render"]}, {"answer": "depleted", "hint": "synonyms for depleted", "clues": ["eat", "deplete", "exhaust", "run through", "use up", "consume", "wipe out", "eat up"]}, {"answer": "depraved", "hint": "synonyms for depraved", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch"]}, {"answer": "depreciating", "hint": "synonyms for depreciating", "clues": ["depreciate", "devaluate", "undervalue", "vilipend", "depreciating"]}, {"answer": "depressed", "hint": "synonyms for depressed", "clues": ["cast down", "get down", "demoralise", "deject", "dismay", "dispirit", "lower", "press down", "depress"]}, {"answer": "depressing", "hint": "synonyms for depressing", "clues": ["cast down", "get down", "demoralise", "deject", "dismay", "dispirit", "lower", "press down", "depress"]}, {"answer": "deprived", "hint": "synonyms for deprived", "clues": ["impoverish", "strip", "deprive", "divest"]}, {"answer": "deranged", "hint": "synonyms for deranged", "clues": ["derange", "unbalance", "throw out of kilter", "perturb"]}, {"answer": "derived", "hint": "synonyms for derived", "clues": ["deduct", "educe", "gain", "infer", "descend", "come", "derive"]}, {"answer": "descending", "hint": "synonyms for descending", "clues": ["fall", "go down", "condescend", "descend", "come", "derive", "come down", "deign", "settle"]}, {"answer": "described", "hint": "synonyms for described", "clues": ["line", "identify", "draw", "key out", "depict", "report", "key", "trace", "delineate", "discover", "account", "name", "distinguish", "describe"]}, {"answer": "desecrated", "hint": "synonyms for desecrated", "clues": ["violate", "desecrate", "profane", "unhallow", "outrage"]}, {"answer": "deserted", "hint": "synonyms for deserted", "clues": ["abandon", "defect", "forsake", "desert", "desolate"]}, {"answer": "designate", "hint": "synonyms for designate", "clues": ["depute", "delegate", "specify", "destine", "show", "assign", "indicate", "denominate", "point", "doom", "fate", "intend", "designate"]}, {"answer": "designed", "hint": "synonyms for designed", "clues": ["contrive", "project", "plan", "design"]}, {"answer": "designing", "hint": "synonyms for designing", "clues": ["contrive", "project", "plan", "design"]}, {"answer": "desired", "hint": "synonyms for desired", "clues": ["desire", "trust", "want", "hope"]}, {"answer": "desolate", "hint": "synonyms for desolate", "clues": ["lay waste to", "forsake", "devastate", "desert", "ravage", "abandon", "scourge", "depopulate", "waste", "desolate"]}, {"answer": "despised", "hint": "synonyms for despised", "clues": ["scorn", "contemn", "despise", "disdain"]}, {"answer": "despoiled", "hint": "synonyms for despoiled", "clues": ["despoil", "rifle", "spoil", "rape", "foray", "pillage", "plunder", "ransack", "violate", "strip", "loot", "reave"]}, {"answer": "destined", "hint": "synonyms for destined", "clues": ["specify", "destine", "doom", "fate", "intend", "designate"]}, {"answer": "destroyed", "hint": "synonyms for destroyed", "clues": ["put down", "ruin", "destruct", "demolish", "destroy"]}, {"answer": "detected", "hint": "synonyms for detected", "clues": ["notice", "discover", "observe", "find", "detect"]}, {"answer": "determined", "hint": "synonyms for determined", "clues": ["learn", "watch", "regulate", "influence", "fix", "set", "define", "mold", "settle", "square up", "determine", "decide", "specify", "make up one's mind", "limit", "check", "square off", "find out", "shape", "ascertain", "see", "find"]}, {"answer": "determining", "hint": "synonyms for determining", "clues": ["learn", "watch", "regulate", "influence", "fix", "set", "define", "mold", "settle", "square up", "determine", "decide", "specify", "make up one's mind", "limit", "check", "square off", "find out", "shape", "ascertain", "see", "find", "determining"]}, {"answer": "devalued", "hint": "synonyms for devalued", "clues": ["depreciate", "devaluate", "undervalue", "devalued"]}, {"answer": "devastating", "hint": "synonyms for devastating", "clues": ["ravage", "lay waste to", "scourge", "devastate", "waste", "desolate", "devastating"]}, {"answer": "developed", "hint": "synonyms for developed", "clues": ["train", "originate", "recrudesce", "formulate", "rise", "acquire", "modernize", "get", "break", "educate", "germinate", "uprise", "build up", "explicate", "make grow", "grow", "develop", "produce", "spring up", "prepare", "evolve"]}, {"answer": "developing", "hint": "synonyms for developing", "clues": ["train", "originate", "recrudesce", "formulate", "rise", "acquire", "modernize", "get", "break", "educate", "germinate", "uprise", "build up", "explicate", "make grow", "grow", "develop", "produce", "spring up", "prepare", "evolve"]}, {"answer": "deviate", "hint": "synonyms for deviate", "clues": ["depart", "diverge", "divert", "vary", "deviate"]}, {"answer": "devoted", "hint": "synonyms for devoted", "clues": ["commit", "consecrate", "devote", "give", "dedicate", "pay"]}, {"answer": "devouring", "hint": "synonyms for devouring", "clues": ["go through", "devour", "consume", "guttle", "raven", "pig", "down"]}, {"answer": "differentiated", "hint": "synonyms for differentiated", "clues": ["speciate", "differentiate", "tell apart", "severalise", "tell", "secernate", "mark", "distinguish", "specialise", "secern", "separate"]}, {"answer": "diffuse", "hint": "synonyms for diffuse", "clues": ["circulate", "circularize", "pass around", "spread", "permeate", "propagate", "penetrate", "disperse", "spread out", "imbue", "pervade", "fan out", "interpenetrate", "broadcast", "disseminate", "riddle", "distribute", "diffuse"]}, {"answer": "diffused", "hint": "synonyms for diffused", "clues": ["circulate", "circularize", "pass around", "spread", "permeate", "propagate", "penetrate", "disperse", "spread out", "diffuse", "imbue", "pervade", "fan out", "interpenetrate", "broadcast", "disseminate", "riddle", "distribute"]}, {"answer": "diffusing", "hint": "synonyms for diffusing", "clues": ["circulate", "circularize", "pass around", "spread", "permeate", "propagate", "penetrate", "disperse", "spread out", "diffuse", "imbue", "pervade", "fan out", "interpenetrate", "broadcast", "disseminate", "riddle", "distribute", "diffusing"]}, {"answer": "dilute", "hint": "synonyms for dilute", "clues": ["load", "stretch", "adulterate", "thin out", "reduce", "debase", "cut", "thin", "dilute"]}, {"answer": "diluted", "hint": "synonyms for diluted", "clues": ["load", "stretch", "adulterate", "dilute", "thin out", "reduce", "debase", "cut", "thin"]}, {"answer": "dim", "hint": "synonyms for dim", "clues": ["blind", "dip", "blur", "slur", "dim"]}, {"answer": "diminished", "hint": "synonyms for diminished", "clues": ["fall", "diminish", "decrease", "lessen", "belittle"]}, {"answer": "diminishing", "hint": "synonyms for diminishing", "clues": ["fall", "diminish", "decrease", "lessen", "belittle"]}, {"answer": "dimmed", "hint": "synonyms for dimmed", "clues": ["dip", "blur", "dim", "blind", "slur", "dimmed"]}, {"answer": "dipped", "hint": "synonyms for dipped", "clues": ["sink", "dim", "souse", "dip", "plunge", "duck", "dunk", "douse", "dipped"]}, {"answer": "direct", "hint": "synonyms for direct", "clues": ["organise", "orchestrate", "train", "aim", "guide", "channelize", "steer", "address", "head", "maneuver", "point", "target", "send", "conduct", "place", "take aim", "manoeuvre", "take", "mastermind", "engineer", "calculate", "lead", "direct"]}, {"answer": "directed", "hint": "synonyms for directed", "clues": ["organise", "orchestrate", "train", "aim", "guide", "channelize", "steer", "address", "head", "maneuver", "point", "direct", "target", "send", "conduct", "place", "take aim", "manoeuvre", "take", "mastermind", "engineer", "calculate", "lead"]}, {"answer": "directing", "hint": "synonyms for directing", "clues": ["organise", "orchestrate", "train", "aim", "guide", "channelize", "steer", "address", "head", "maneuver", "point", "direct", "target", "send", "conduct", "place", "take aim", "manoeuvre", "take", "mastermind", "engineer", "calculate", "lead"]}, {"answer": "dirty", "hint": "synonyms for dirty", "clues": ["bemire", "soil", "begrime", "colly", "grime", "dirty"]}, {"answer": "disabled", "hint": "synonyms for disabled", "clues": ["disable", "incapacitate", "invalid", "handicap"]}, {"answer": "disabling", "hint": "synonyms for disabling", "clues": ["disable", "incapacitate", "invalid", "handicap", "disabling"]}, {"answer": "disaffected", "hint": "synonyms for disaffected", "clues": ["estrange", "alienate", "disaffect", "alien"]}, {"answer": "discarded", "hint": "synonyms for discarded", "clues": ["dispose", "discard", "toss", "cast aside", "fling", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "toss away", "cast away"]}, {"answer": "discerning", "hint": "synonyms for discerning", "clues": ["recognise", "spot", "tell apart", "pick out", "make out", "discern", "distinguish"]}, {"answer": "discharged", "hint": "synonyms for discharged", "clues": ["drop", "acquit", "exhaust", "discharge", "clear", "fire", "dispatch", "complete", "drop off", "put down", "unload", "free", "exonerate", "release", "go off", "exculpate", "set down", "empty", "muster out", "eject", "expel", "assoil"]}, {"answer": "disciplined", "hint": "synonyms for disciplined", "clues": ["train", "correct", "discipline", "sort out", "check", "condition"]}, {"answer": "disclosed", "hint": "synonyms for disclosed", "clues": ["break", "reveal", "let on", "let out", "discover", "disclose", "expose", "give away", "unwrap", "bring out", "divulge"]}, {"answer": "discombobulated", "hint": "synonyms for discombobulated", "clues": ["throw", "fuddle", "discombobulate", "confuse", "bemuse", "fox", "bedevil", "bewilder", "confound"]}, {"answer": "discomfited", "hint": "synonyms for discomfited", "clues": ["untune", "discompose", "upset", "disconcert", "discomfit"]}, {"answer": "discomposed", "hint": "synonyms for discomposed", "clues": ["untune", "discompose", "upset", "disconcert", "discomfit"]}, {"answer": "disconcerted", "hint": "synonyms for disconcerted", "clues": ["flurry", "confuse", "put off", "disconcert", "discomfit", "untune", "upset", "discompose"]}, {"answer": "disconcerting", "hint": "synonyms for disconcerting", "clues": ["flurry", "confuse", "put off", "disconcert", "discomfit", "untune", "upset", "discompose"]}, {"answer": "discontinued", "hint": "synonyms for discontinued", "clues": ["break", "quit", "give up", "discontinue", "stop", "break off", "lay off", "cease"]}, {"answer": "discouraged", "hint": "synonyms for discouraged", "clues": ["warn", "discourage", "admonish", "deter"]}, {"answer": "discouraging", "hint": "synonyms for discouraging", "clues": ["warn", "discourage", "admonish", "deter", "discouraging"]}, {"answer": "discovered", "hint": "synonyms for discovered", "clues": ["get wind", "get a line", "reveal", "notice", "observe", "chance upon", "come upon", "divulge", "break", "identify", "discover", "find out", "unwrap", "see", "name", "bring out", "strike", "detect", "attain", "learn", "key out", "get word", "key", "give away", "expose", "distinguish", "fall upon", "describe", "hear", "let on", "let out", "pick up", "happen upon", "light upon", "disclose", "come across", "find"]}, {"answer": "discriminating", "hint": "synonyms for discriminating", "clues": ["discriminate", "single out", "know apart", "separate", "discriminating"]}, {"answer": "disentangled", "hint": "synonyms for disentangled", "clues": ["unwind", "comb", "unsnarl", "disentangle", "disinvolve", "disembroil", "straighten out", "extricate", "comb out", "disencumber", "untangle"]}, {"answer": "disgraced", "hint": "synonyms for disgraced", "clues": ["put down", "discredit", "shame", "attaint", "take down", "degrade", "dishonour", "demean", "disgrace"]}, {"answer": "disgusted", "hint": "synonyms for disgusted", "clues": ["disgust", "repel", "sicken", "nauseate", "revolt", "gross out", "churn up"]}, {"answer": "disgusting", "hint": "synonyms for disgusting", "clues": ["disgust", "repel", "sicken", "nauseate", "revolt", "gross out", "churn up"]}, {"answer": "dished", "hint": "synonyms for dished", "clues": ["serve up", "dish up", "dish", "dish out", "serve", "dished"]}, {"answer": "dishonored", "hint": "synonyms for dishonored", "clues": ["rape", "shame", "attaint", "assault", "dishonour", "outrage", "violate", "ravish", "disgrace", "dishonored"]}, {"answer": "disjoint", "hint": "synonyms for disjoint", "clues": ["dissociate", "disunite", "disjoin", "disarticulate", "divorce"]}, {"answer": "disjointed", "hint": "synonyms for disjointed", "clues": ["disunite", "disjoint", "disarticulate", "divorce", "dissociate"]}, {"answer": "dislocated", "hint": "synonyms for dislocated", "clues": ["dislocate", "luxate", "slip", "splay"]}, {"answer": "dismantled", "hint": "synonyms for dismantled", "clues": ["take apart", "break up", "break apart", "take down", "level", "dismantle", "pull down", "raze", "tear down", "strip", "disassemble", "rase"]}, {"answer": "dismayed", "hint": "synonyms for dismayed", "clues": ["appall", "cast down", "get down", "alarm", "horrify", "demoralise", "deject", "dismay", "dispirit", "depress"]}, {"answer": "dismaying", "hint": "synonyms for dismaying", "clues": ["appall", "cast down", "get down", "alarm", "horrify", "demoralise", "deject", "dismay", "dispirit", "depress"]}, {"answer": "dismissed", "hint": "synonyms for dismissed", "clues": ["disregard", "can", "discount", "drop", "force out", "give notice", "push aside", "give the axe", "fire", "terminate", "brush off", "throw out", "dissolve", "sack", "give the sack", "dismiss", "send away", "usher out", "displace", "ignore", "send packing"]}, {"answer": "disobliging", "hint": "synonyms for disobliging", "clues": ["discommode", "trouble", "incommode", "inconvenience", "bother", "disoblige", "put out", "disobliging"]}, {"answer": "disordered", "hint": "synonyms for disordered", "clues": ["cark", "disquiet", "unhinge", "distract", "disarray", "disorder", "perturb", "trouble"]}, {"answer": "dispensed", "hint": "synonyms for dispensed", "clues": ["dispense", "administer", "allot", "mete out", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute"]}, {"answer": "dispersed", "hint": "synonyms for dispersed", "clues": ["circulate", "break up", "circularize", "scatter", "pass around", "spread", "propagate", "disperse", "spread out", "sprinkle", "dot", "diffuse", "dust", "broadcast", "dispel", "disseminate", "dissipate", "distribute"]}, {"answer": "dispirited", "hint": "synonyms for dispirited", "clues": ["cast down", "get down", "demoralise", "deject", "dismay", "dispirit", "depress"]}, {"answer": "dispiriting", "hint": "synonyms for dispiriting", "clues": ["cast down", "get down", "demoralise", "deject", "dismay", "dispirit", "depress"]}, {"answer": "disposed", "hint": "synonyms for disposed", "clues": ["dispose", "discard", "toss", "cast aside", "chuck out", "throw away", "incline", "put away", "qualify", "toss out", "throw out", "cast out", "fling", "toss away", "cast away"]}, {"answer": "disputed", "hint": "synonyms for disputed", "clues": ["challenge", "dispute", "quarrel", "gainsay", "altercate", "scrap", "argufy"]}, {"answer": "disquieted", "hint": "synonyms for disquieted", "clues": ["cark", "trouble", "unhinge", "disquiet", "distract", "disorder", "perturb"]}, {"answer": "disquieting", "hint": "synonyms for disquieting", "clues": ["cark", "trouble", "unhinge", "disquiet", "distract", "disorder", "perturb"]}, {"answer": "disregarded", "hint": "synonyms for disregarded", "clues": ["disregard", "brush aside", "discount", "dismiss", "neglect", "cut", "brush off", "ignore", "snub"]}, {"answer": "disrupted", "hint": "synonyms for disrupted", "clues": ["interrupt", "break up", "disrupt", "cut off"]}, {"answer": "dissected", "hint": "synonyms for dissected", "clues": ["take apart", "break down", "analyze", "dissect"]}, {"answer": "dissenting", "hint": "synonyms for dissenting", "clues": ["disagree", "differ", "dissent", "resist", "take issue", "protest"]}, {"answer": "dissipated", "hint": "synonyms for dissipated", "clues": ["break up", "fool", "fritter", "shoot", "scatter", "frivol away", "fritter away", "fool away", "dispel", "dissipate", "disperse", "spread out"]}, {"answer": "dissolved", "hint": "synonyms for dissolved", "clues": ["fade away", "dethaw", "break up", "unfreeze", "thaw", "dismiss", "disband", "resolve", "melt", "fade out", "unthaw", "dissolve"]}, {"answer": "distinguished", "hint": "synonyms for distinguished", "clues": ["spot", "key out", "key", "differentiate", "severalize", "secernate", "pick out", "make out", "discern", "distinguish", "mark", "secern", "signalise", "describe", "recognise", "identify", "tell apart", "tell", "discover", "name", "separate"]}, {"answer": "distorted", "hint": "synonyms for distorted", "clues": ["colour", "warp", "falsify", "garble", "tinge", "strain", "wring", "distort", "contort", "twine", "twist", "deform"]}, {"answer": "distracted", "hint": "synonyms for distracted", "clues": ["cark", "disquiet", "distract", "unhinge", "disorder", "perturb", "deflect", "trouble"]}, {"answer": "distributed", "hint": "synonyms for distributed", "clues": ["dispense", "circulate", "pass out", "allot", "circularize", "deal", "hand out", "spread", "deal out", "pass around", "propagate", "dish out", "give out", "distribute", "shell out", "dole out", "pass on", "administer", "diffuse", "lot", "broadcast", "disseminate", "parcel out", "mete out", "stagger"]}, {"answer": "disturbed", "hint": "synonyms for disturbed", "clues": ["interrupt", "stir up", "shake up", "agitate", "vex", "trouble", "touch", "disturb", "raise up", "upset", "commove"]}, {"answer": "disturbing", "hint": "synonyms for disturbing", "clues": ["interrupt", "stir up", "shake up", "agitate", "vex", "trouble", "touch", "disturb", "raise up", "upset", "commove"]}, {"answer": "disunited", "hint": "synonyms for disunited", "clues": ["disunite", "disjoint", "divorce", "divide", "dissociate", "separate", "part"]}, {"answer": "diverging", "hint": "synonyms for diverging", "clues": ["vary", "depart", "diverge", "deviate", "diverging"]}, {"answer": "diversified", "hint": "synonyms for diversified", "clues": ["diversify", "broaden", "radiate", "branch out", "diversified"]}, {"answer": "diverted", "hint": "synonyms for diverted", "clues": ["hive off", "amuse", "disport", "deviate", "divert"]}, {"answer": "diverting", "hint": "synonyms for diverting", "clues": ["hive off", "amuse", "disport", "deviate", "divert"]}, {"answer": "divided", "hint": "synonyms for divided", "clues": ["disunite", "divide", "carve up", "dissever", "fraction", "split up", "separate", "part", "split"]}, {"answer": "divorced", "hint": "synonyms for divorced", "clues": ["dissociate", "disunite", "disjoint", "divorce", "split up"]}, {"answer": "doddering", "hint": "synonyms for doddering", "clues": ["waddle", "totter", "paddle", "toddle", "coggle", "dodder"]}, {"answer": "dogged", "hint": "synonyms for dogged", "clues": ["chase", "dog", "tail", "chase after", "track", "go after", "give chase", "tag", "dogged"]}, {"answer": "dogging", "hint": "synonyms for dogging", "clues": ["chase", "dog", "tail", "chase after", "track", "go after", "give chase", "tag", "dogging"]}, {"answer": "domesticated", "hint": "synonyms for domesticated", "clues": ["domesticate", "naturalise", "reclaim", "tame", "domesticise", "cultivate"]}, {"answer": "dominated", "hint": "synonyms for dominated", "clues": ["dominate", "overshadow", "eclipse", "command", "master", "reign", "predominate", "overlook", "rule", "prevail", "overtop"]}, {"answer": "dominating", "hint": "synonyms for dominating", "clues": ["dominate", "overshadow", "eclipse", "command", "master", "reign", "predominate", "overlook", "rule", "prevail", "overtop", "dominating"]}, {"answer": "done", "hint": "synonyms for done", "clues": ["practise", "exercise", "perform", "cause", "behave", "make out", "dress", "coif", "suffice", "coiffe", "set", "make", "act", "get along", "manage", "arrange", "answer", "come", "do", "fare", "serve", "execute", "done"]}, {"answer": "doomed", "hint": "synonyms for doomed", "clues": ["doom", "fate", "destine", "sentence", "designate", "condemn", "doomed"]}, {"answer": "doting", "hint": "synonyms for doting", "clues": ["sprinkle", "dot", "scatter", "dust", "stud", "disperse", "constellate"]}, {"answer": "dotted", "hint": "synonyms for dotted", "clues": ["sprinkle", "dot", "scatter", "dust", "stud", "disperse", "constellate", "dotted"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["double up", "replicate", "duplicate", "double over", "repeat", "double"]}, {"answer": "doubled", "hint": "synonyms for doubled", "clues": ["replicate", "double up", "duplicate", "double over", "repeat", "double"]}, {"answer": "down", "hint": "synonyms for down", "clues": ["kill", "pour down", "devour", "knock down", "pop", "cut down", "polish", "go through", "refine", "consume", "belt down", "shoot down", "fine-tune", "pull down", "toss off", "land", "push down", "drink down", "down"]}, {"answer": "dragging", "hint": "synonyms for dragging", "clues": ["tangle", "drop behind", "hang back", "draw", "puff", "drag", "get behind", "drag on", "sweep up", "haul", "scuff", "trail", "drag out", "hale", "cart", "dredge", "drop back", "sweep", "embroil", "dragging"]}, {"answer": "drained", "hint": "synonyms for drained", "clues": ["run out", "enfeeble", "debilitate", "drain", "drained"]}, {"answer": "draining", "hint": "synonyms for draining", "clues": ["run out", "enfeeble", "debilitate", "drain"]}, {"answer": "draped", "hint": "synonyms for draped", "clues": ["cloak", "robe", "drape", "clothe"]}, {"answer": "drawn", "hint": "synonyms for drawn", "clues": ["attract", "guide", "take up", "reap", "puff", "withdraw", "pull back", "imbibe", "cast", "sop up", "get", "quarter", "soak up", "suck up", "thread", "pull in", "draw in", "eviscerate", "draw off", "pull out", "delineate", "pull", "draw and quarter", "suck", "tie", "string", "absorb", "draw", "depict", "drag", "take in", "take out", "describe", "disembowel", "line", "make", "trace", "run", "get out", "pass", "force"]}, {"answer": "dreamed", "hint": "synonyms for dreamed", "clues": ["dream", "woolgather", "daydream", "stargaze", "dreamed"]}, {"answer": "drenched", "hint": "synonyms for drenched", "clues": ["swamp", "soak", "drench", "sop", "dowse", "souse", "imbrue", "douse"]}, {"answer": "dress", "hint": "synonyms for dress", "clues": ["preen", "garnish", "curry", "garment", "get dressed", "coif", "fit out", "coiffe", "garb", "clip", "set", "dress up", "tog", "raiment", "cut back", "apparel", "trim", "plume", "primp", "line up", "enclothe", "snip", "crop", "groom", "arrange", "lop", "habilitate", "decorate", "do", "prune", "dress out", "dress"]}, {"answer": "dressed", "hint": "synonyms for dressed", "clues": ["preen", "garnish", "curry", "garment", "get dressed", "dress", "coif", "fit out", "coiffe", "garb", "clip", "set", "dress up", "tog", "raiment", "cut back", "apparel", "trim", "plume", "primp", "line up", "enclothe", "snip", "crop", "groom", "arrange", "lop", "habilitate", "decorate", "do", "prune", "dress out", "dressed"]}, {"answer": "drifting", "hint": "synonyms for drifting", "clues": ["stray", "vagabond", "err", "tramp", "rove", "cast", "range", "freewheel", "roll", "ramble", "float", "be adrift", "wander", "drift", "swan", "roam", "blow"]}, {"answer": "drilled", "hint": "synonyms for drilled", "clues": ["practise", "drill", "exercise", "bore", "drilled"]}, {"answer": "driven", "hint": "synonyms for driven", "clues": ["get", "labor", "ride", "force back", "aim", "repel", "tug", "push", "take", "motor", "beat back", "ram", "drive", "repulse", "push back", "force"]}, {"answer": "driving", "hint": "synonyms for driving", "clues": ["get", "labor", "ride", "force back", "aim", "repel", "tug", "push", "take", "motor", "beat back", "ram", "drive", "repulse", "push back", "force", "driving"]}, {"answer": "drooping", "hint": "synonyms for drooping", "clues": ["sag", "wilt", "droop", "flag", "loll"]}, {"answer": "dropping", "hint": "synonyms for dropping", "clues": ["sink", "drop", "overleap", "leave out", "cast off", "drip", "cut down", "strike down", "cast", "deteriorate", "drop down", "omit", "drop off", "unload", "shake off", "dismiss", "shed", "set down", "swing", "dangle", "throw away", "knock off", "miss", "send packing", "discharge", "pretermit", "neglect", "spend", "throw", "devolve", "degenerate", "dribble", "send away", "expend", "fell", "overlook", "throw off", "flatten", "dropping"]}, {"answer": "drudging", "hint": "synonyms for drudging", "clues": ["labor", "grind", "drudge", "dig", "fag", "travail", "toil", "moil", "drudging"]}, {"answer": "drunk", "hint": "synonyms for drunk", "clues": ["fuddle", "wassail", "tope", "pledge", "drink in", "imbibe", "toast", "booze", "drink", "salute", "drunk"]}, {"answer": "dull", "hint": "synonyms for dull", "clues": ["benumb", "tone down", "blunt", "dampen", "numb", "mute", "pall", "damp", "muffle", "dull"]}, {"answer": "dulled", "hint": "synonyms for dulled", "clues": ["benumb", "dull", "tone down", "blunt", "dampen", "numb", "mute", "pall", "damp", "muffle", "dulled"]}, {"answer": "dumbfounded", "hint": "synonyms for dumbfounded", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "dumbfounding", "hint": "synonyms for dumbfounding", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "dun", "hint": "synonyms for dun", "clues": ["bedevil", "torment", "crucify", "rag", "frustrate", "dun"]}, {"answer": "duplicate", "hint": "synonyms for duplicate", "clues": ["parallel", "replicate", "twin", "repeat", "double", "duplicate"]}, {"answer": "dying", "hint": "synonyms for dying", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "break down", "expire", "give out", "die out", "break", "conk out", "croak", "give-up the ghost", "give way", "kick the bucket", "pop off", "drop dead", "exit", "fail", "become flat", "go bad", "conk", "pass away", "die", "pall", "pass", "cash in one's chips", "dying"]}, {"answer": "earned", "hint": "synonyms for earned", "clues": ["make", "gain", "pull in", "clear", "realize", "garner", "take in", "bring in", "earn", "earned"]}, {"answer": "eased", "hint": "synonyms for eased", "clues": ["allay", "ease", "facilitate", "comfort", "alleviate", "still", "relieve"]}, {"answer": "echoing", "hint": "synonyms for echoing", "clues": ["reverberate", "ring", "repeat", "resound", "echo", "recall"]}, {"answer": "edged", "hint": "synonyms for edged", "clues": ["march", "abut", "butt", "adjoin", "butt against", "border", "inch", "butt on", "edge"]}, {"answer": "edited", "hint": "synonyms for edited", "clues": ["cut", "delete", "redact", "edit", "blue-pencil", "edit out", "edited"]}, {"answer": "educated", "hint": "synonyms for educated", "clues": ["civilise", "train", "educate", "develop", "prepare", "school", "cultivate"]}, {"answer": "effervescing", "hint": "synonyms for effervescing", "clues": ["effervesce", "form bubbles", "froth", "foam", "sparkle", "fizz", "effervescing"]}, {"answer": "elaborate", "hint": "synonyms for elaborate", "clues": ["work out", "expatiate", "lucubrate", "complicate", "rarify", "exposit", "dilate", "expound", "refine", "expand", "flesh out", "enlarge", "elaborate"]}, {"answer": "elaborated", "hint": "synonyms for elaborated", "clues": ["work out", "expatiate", "lucubrate", "complicate", "elaborate", "rarify", "dilate", "exposit", "expound", "refine", "expand", "flesh out", "enlarge"]}, {"answer": "elapsed", "hint": "synonyms for elapsed", "clues": ["glide by", "lapse", "slip by", "go by", "go along", "slip away", "pass", "elapsed"]}, {"answer": "elated", "hint": "synonyms for elated", "clues": ["pick up", "uplift", "elate", "intoxicate", "lift up"]}, {"answer": "elating", "hint": "synonyms for elating", "clues": ["pick up", "uplift", "elate", "intoxicate", "lift up", "elating"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["upgrade", "promote", "elevate", "raise", "bring up", "advance", "get up", "kick upstairs", "lift"]}, {"answer": "elicited", "hint": "synonyms for elicited", "clues": ["educe", "draw out", "elicit", "arouse", "enkindle", "raise", "extract", "fire", "provoke", "evoke"]}, {"answer": "embarrassed", "hint": "synonyms for embarrassed", "clues": ["stymy", "stymie", "block", "obstruct", "embarrass", "blockade", "hinder", "abash"]}, {"answer": "embarrassing", "hint": "synonyms for embarrassing", "clues": ["stymy", "stymie", "block", "obstruct", "embarrass", "blockade", "hinder", "abash"]}, {"answer": "embedded", "hint": "synonyms for embedded", "clues": ["plant", "imbed", "embed", "engraft", "implant", "embedded"]}, {"answer": "embezzled", "hint": "synonyms for embezzled", "clues": ["embezzle", "peculate", "malversate", "misappropriate", "defalcate"]}, {"answer": "embodied", "hint": "synonyms for embodied", "clues": ["incarnate", "body forth", "personify", "substantiate", "be", "embody", "embodied"]}, {"answer": "emboldened", "hint": "synonyms for emboldened", "clues": ["recreate", "embolden", "hearten", "cheer"]}, {"answer": "embroiled", "hint": "synonyms for embroiled", "clues": ["tangle", "sweep up", "sweep", "embroil", "drag", "drag in"]}, {"answer": "emerging", "hint": "synonyms for emerging", "clues": ["go forth", "come forth", "come out", "egress", "emerge", "issue", "emerging"]}, {"answer": "emphasised", "hint": "synonyms for emphasised", "clues": ["stress", "emphasize", "punctuate", "accentuate", "underline", "accent", "underscore", "emphasised"]}, {"answer": "emphasized", "hint": "synonyms for emphasized", "clues": ["stress", "emphasize", "punctuate", "accentuate", "underline", "accent", "underscore"]}, {"answer": "employed", "hint": "synonyms for employed", "clues": ["utilize", "use", "employ", "apply", "engage", "hire"]}, {"answer": "empowered", "hint": "synonyms for empowered", "clues": ["indue", "empower", "endue", "endow", "authorise", "gift", "invest"]}, {"answer": "empty", "hint": "synonyms for empty", "clues": ["evacuate", "void", "abandon", "discharge", "empty"]}, {"answer": "enamored", "hint": "synonyms for enamored", "clues": ["captivate", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor"]}, {"answer": "enchanted", "hint": "synonyms for enchanted", "clues": ["captivate", "capture", "hex", "becharm", "glamour", "trance", "enchant", "enrapture", "charm", "transport", "enthrall", "fascinate", "delight", "ravish", "jinx", "beguile", "bewitch", "witch", "catch", "enamor"]}, {"answer": "enchanting", "hint": "synonyms for enchanting", "clues": ["captivate", "capture", "hex", "becharm", "glamour", "trance", "enchant", "enrapture", "charm", "transport", "enthrall", "fascinate", "delight", "ravish", "jinx", "beguile", "bewitch", "witch", "catch", "enamor"]}, {"answer": "enclosed", "hint": "synonyms for enclosed", "clues": ["enfold", "confine", "enwrap", "close in", "put in", "hold in", "inclose", "stick in", "shut in", "wrap", "envelop", "introduce", "insert", "enclosed"]}, {"answer": "encompassing", "hint": "synonyms for encompassing", "clues": ["encompass", "comprehend", "embrace", "cover"]}, {"answer": "encouraged", "hint": "synonyms for encouraged", "clues": ["promote", "encourage", "advance", "further", "boost"]}, {"answer": "encouraging", "hint": "synonyms for encouraging", "clues": ["promote", "encourage", "advance", "further", "boost", "encouraging"]}, {"answer": "encroaching", "hint": "synonyms for encroaching", "clues": ["impinge", "infringe", "entrench", "encroach"]}, {"answer": "encumbered", "hint": "synonyms for encumbered", "clues": ["cumber", "constrain", "restrain", "encumbered"]}, {"answer": "endangered", "hint": "synonyms for endangered", "clues": ["scupper", "jeopardize", "threaten", "queer", "menace", "imperil", "expose", "peril", "endanger"]}, {"answer": "ended", "hint": "synonyms for ended", "clues": ["terminate", "finish", "cease", "end", "stop", "ended"]}, {"answer": "endowed", "hint": "synonyms for endowed", "clues": ["dower", "gift", "indue", "empower", "endue", "endow", "invest", "endowed"]}, {"answer": "enduring", "hint": "synonyms for enduring", "clues": ["digest", "support", "abide", "go", "weather", "bear", "suffer", "survive", "stomach", "persist", "hold up", "live", "hold out", "endure", "tolerate", "live on", "wear", "run", "die hard", "put up", "last", "prevail", "brave out", "brave", "stand", "brook", "stick out", "enduring"]}, {"answer": "energising", "hint": "synonyms for energising", "clues": ["arouse", "stimulate", "brace", "perk up", "excite", "energise", "energising"]}, {"answer": "energizing", "hint": "synonyms for energizing", "clues": ["energise", "arouse", "stimulate", "brace", "excite", "perk up", "energizing"]}, {"answer": "enervated", "hint": "synonyms for enervated", "clues": ["faze", "unnerve", "unsettle", "enervate"]}, {"answer": "enervating", "hint": "synonyms for enervating", "clues": ["faze", "unnerve", "unsettle", "enervate", "enervating"]}, {"answer": "enforced", "hint": "synonyms for enforced", "clues": ["impose", "enforce", "apply", "implement"]}, {"answer": "engaged", "hint": "synonyms for engaged", "clues": ["absorb", "rent", "enlist", "plight", "engage", "engross", "hire", "wage", "prosecute", "employ", "affiance", "pursue", "lock", "betroth", "operate", "take", "charter", "lease", "occupy", "mesh"]}, {"answer": "engaging", "hint": "synonyms for engaging", "clues": ["absorb", "rent", "enlist", "plight", "engage", "engross", "hire", "wage", "prosecute", "employ", "affiance", "pursue", "lock", "betroth", "operate", "take", "charter", "lease", "occupy", "mesh", "engaging"]}, {"answer": "engorged", "hint": "synonyms for engorged", "clues": ["gormandize", "ingurgitate", "binge", "glut", "englut", "engorge", "pig out", "overgorge", "satiate", "overeat", "overindulge", "scarf out", "gorge", "stuff"]}, {"answer": "engraved", "hint": "synonyms for engraved", "clues": ["grave", "etch", "inscribe", "engrave", "scratch"]}, {"answer": "engrossed", "hint": "synonyms for engrossed", "clues": ["absorb", "immerse", "steep", "engage", "engross", "plunge", "occupy", "soak up", "engulf"]}, {"answer": "engrossing", "hint": "synonyms for engrossing", "clues": ["absorb", "immerse", "steep", "engage", "engross", "plunge", "occupy", "soak up", "engulf"]}, {"answer": "enkindled", "hint": "synonyms for enkindled", "clues": ["elicit", "arouse", "enkindle", "raise", "fire", "provoke", "conflagrate", "inflame", "evoke"]}, {"answer": "enlarged", "hint": "synonyms for enlarged", "clues": ["expatiate", "lucubrate", "magnify", "elaborate", "dilate", "blow up", "exposit", "expound", "expand", "flesh out", "enlarge"]}, {"answer": "enlightened", "hint": "synonyms for enlightened", "clues": ["irradiate", "enlighten", "elucidate", "crystalise", "sort out", "illuminate", "edify", "clear up", "clear", "straighten out", "shed light on"]}, {"answer": "enlightening", "hint": "synonyms for enlightening", "clues": ["irradiate", "enlighten", "elucidate", "crystalise", "sort out", "illuminate", "edify", "clear up", "clear", "straighten out", "shed light on"]}, {"answer": "enlivened", "hint": "synonyms for enlivened", "clues": ["inspire", "liven up", "exalt", "invigorate", "liven", "animate", "enliven"]}, {"answer": "enlivening", "hint": "synonyms for enlivening", "clues": ["inspire", "liven up", "exalt", "invigorate", "liven", "animate", "enliven"]}, {"answer": "ennobling", "hint": "synonyms for ennobling", "clues": ["ennoble", "gentle", "entitle", "dignify", "ennobling"]}, {"answer": "enraptured", "hint": "synonyms for enraptured", "clues": ["ravish", "enthrall", "enchant", "transport", "enrapture", "delight"]}, {"answer": "entangled", "hint": "synonyms for entangled", "clues": ["tangle", "mire", "snarl", "mat", "entangled"]}, {"answer": "entertained", "hint": "synonyms for entertained", "clues": ["nurse", "harbor", "think of", "entertain", "toy with", "think about", "hold", "flirt with"]}, {"answer": "entertaining", "hint": "synonyms for entertaining", "clues": ["nurse", "harbor", "think of", "entertain", "toy with", "think about", "hold", "flirt with"]}, {"answer": "enthralled", "hint": "synonyms for enthralled", "clues": ["enthrall", "enchant", "enrapture", "delight", "ravish", "transport"]}, {"answer": "enthralling", "hint": "synonyms for enthralling", "clues": ["enthrall", "enchant", "enrapture", "delight", "ravish", "transport"]}, {"answer": "entitled", "hint": "synonyms for entitled", "clues": ["ennoble", "gentle", "entitle", "title"]}, {"answer": "entranced", "hint": "synonyms for entranced", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "entranced"]}, {"answer": "entrancing", "hint": "synonyms for entrancing", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "entrancing"]}, {"answer": "entrenched", "hint": "synonyms for entrenched", "clues": ["impinge", "intrench", "dig in", "encroach", "entrenched"]}, {"answer": "enveloping", "hint": "synonyms for enveloping", "clues": ["enfold", "enclose", "enwrap", "wrap", "envelop"]}, {"answer": "envisioned", "hint": "synonyms for envisioned", "clues": ["figure", "image", "visualise", "picture", "fancy", "foresee", "envision", "see", "project"]}, {"answer": "enwrapped", "hint": "synonyms for enwrapped", "clues": ["enfold", "enclose", "enwrap", "wrap", "envelop", "enwrapped"]}, {"answer": "equal", "hint": "synonyms for equal", "clues": ["equalize", "equate", "match", "touch", "rival", "be", "equal"]}, {"answer": "equipped", "hint": "synonyms for equipped", "clues": ["equip", "fit", "fit out", "outfit", "equipped"]}, {"answer": "erect", "hint": "synonyms for erect", "clues": ["put up", "set up", "raise", "rear", "erect"]}, {"answer": "eroded", "hint": "synonyms for eroded", "clues": ["gnaw at", "gnaw", "wear away", "fret", "eat at", "eat away", "erode"]}, {"answer": "erring", "hint": "synonyms for erring", "clues": ["drift", "mistake", "stray", "slip", "err"]}, {"answer": "escaped", "hint": "synonyms for escaped", "clues": ["escape", "get off", "break loose", "get by", "hightail it", "lam", "scat", "break away", "bunk", "fly the coop", "turn tail", "get away", "run", "get out", "elude", "run away", "take to the woods", "head for the hills", "scarper", "miss"]}, {"answer": "established", "hint": "synonyms for established", "clues": ["launch", "instal", "institute", "show", "found", "establish", "constitute", "prove", "lay down", "plant", "make", "demonstrate", "ground", "build", "base", "give", "set up", "shew"]}, {"answer": "esteemed", "hint": "synonyms for esteemed", "clues": ["value", "respect", "think of", "take to be", "regard as", "repute", "look upon", "esteem", "prize", "prise"]}, {"answer": "estranged", "hint": "synonyms for estranged", "clues": ["estrange", "disaffect", "alien", "alienate"]}, {"answer": "estranging", "hint": "synonyms for estranging", "clues": ["estrange", "disaffect", "alien", "alienate", "estranging"]}, {"answer": "evaporated", "hint": "synonyms for evaporated", "clues": ["vaporise", "evaporate", "disappear", "melt"]}, {"answer": "evidenced", "hint": "synonyms for evidenced", "clues": ["prove", "demonstrate", "attest", "manifest", "evidence", "show", "tell", "certify", "testify", "bear witness"]}, {"answer": "evoked", "hint": "synonyms for evoked", "clues": ["call down", "call forth", "suggest", "arouse", "enkindle", "conjure", "extract", "invoke", "fire", "paint a picture", "draw out", "kick up", "stir", "educe", "put forward", "elicit", "raise", "bring up", "provoke", "conjure up", "evoke"]}, {"answer": "exacerbating", "hint": "synonyms for exacerbating", "clues": ["aggravate", "exasperate", "exacerbate", "worsen", "exacerbating"]}, {"answer": "exacting", "hint": "synonyms for exacting", "clues": ["claim", "exact", "take", "demand"]}, {"answer": "exaggerated", "hint": "synonyms for exaggerated", "clues": ["magnify", "overdo", "overdraw", "hyperbolise", "overstate", "exaggerate", "amplify"]}, {"answer": "exalted", "hint": "synonyms for exalted", "clues": ["inspire", "proclaim", "tickle pink", "exalt", "extol", "thrill", "invigorate", "inebriate", "beatify", "animate", "glorify", "enliven", "laud", "exhilarate", "exalted"]}, {"answer": "exalting", "hint": "synonyms for exalting", "clues": ["inspire", "proclaim", "tickle pink", "exalt", "extol", "thrill", "invigorate", "inebriate", "beatify", "animate", "glorify", "enliven", "laud", "exhilarate"]}, {"answer": "exasperated", "hint": "synonyms for exasperated", "clues": ["infuriate", "worsen", "aggravate", "exasperate", "exacerbate", "incense"]}, {"answer": "exasperating", "hint": "synonyms for exasperating", "clues": ["infuriate", "worsen", "aggravate", "exasperate", "exacerbate", "incense", "exasperating"]}, {"answer": "exceeding", "hint": "synonyms for exceeding", "clues": ["surpass", "overstep", "transcend", "outdo", "outstrip", "top", "surmount", "exceed", "outmatch", "go past", "outperform", "pass", "outgo"]}, {"answer": "exchanged", "hint": "synonyms for exchanged", "clues": ["change", "convert", "switch", "substitute", "interchange", "switch over", "replace", "commute", "exchanged"]}, {"answer": "excited", "hint": "synonyms for excited", "clues": ["wind up", "stir", "energise", "charge up", "sex", "shake up", "arouse", "stimulate", "agitate", "shake", "excite", "charge", "turn on", "commove"]}, {"answer": "exciting", "hint": "synonyms for exciting", "clues": ["wind up", "stir", "energise", "charge up", "sex", "shake up", "arouse", "stimulate", "agitate", "shake", "excite", "charge", "turn on", "commove", "exciting"]}, {"answer": "excruciating", "hint": "synonyms for excruciating", "clues": ["excruciate", "torment", "torture", "rack", "excruciating"]}, {"answer": "exculpated", "hint": "synonyms for exculpated", "clues": ["exonerate", "acquit", "discharge", "exculpate", "assoil", "clear"]}, {"answer": "excused", "hint": "synonyms for excused", "clues": ["let off", "beg off", "apologize", "explain", "rationalize", "justify", "condone", "exempt", "excuse", "pardon", "relieve"]}, {"answer": "executed", "hint": "synonyms for executed", "clues": ["perform", "run", "fulfill", "carry through", "put to death", "carry out", "do", "action", "execute", "accomplish"]}, {"answer": "exemplifying", "hint": "synonyms for exemplifying", "clues": ["illustrate", "exemplify", "instance", "represent"]}, {"answer": "exempt", "hint": "synonyms for exempt", "clues": ["let off", "free", "excuse", "relieve", "exempt"]}, {"answer": "exhausted", "hint": "synonyms for exhausted", "clues": ["run down", "exhaust", "discharge", "use up", "sap", "consume", "tire", "expel", "eat up", "tucker", "beat", "tucker out", "deplete", "release", "run through", "wash up", "play out", "wipe out", "eject"]}, {"answer": "exhausting", "hint": "synonyms for exhausting", "clues": ["run down", "exhaust", "discharge", "use up", "sap", "consume", "tire", "expel", "eat up", "tucker", "beat", "tucker out", "deplete", "release", "run through", "wash up", "play out", "wipe out", "eject"]}, {"answer": "exhilarated", "hint": "synonyms for exhilarated", "clues": ["inebriate", "beatify", "tickle pink", "thrill", "exalt", "exhilarate"]}, {"answer": "exhilarating", "hint": "synonyms for exhilarating", "clues": ["inebriate", "beatify", "tickle pink", "thrill", "exalt", "exhilarate", "exhilarating"]}, {"answer": "existing", "hint": "synonyms for existing", "clues": ["exist", "live", "survive", "subsist", "be"]}, {"answer": "exonerated", "hint": "synonyms for exonerated", "clues": ["exonerate", "acquit", "discharge", "exculpate", "assoil", "clear"]}, {"answer": "expanded", "hint": "synonyms for expanded", "clues": ["expatiate", "lucubrate", "inflate", "elaborate", "thrive", "dilate", "blow up", "exposit", "flourish", "expound", "extend", "expand", "boom", "flesh out", "spread out", "amplify", "enlarge"]}, {"answer": "expected", "hint": "synonyms for expected", "clues": ["carry", "bear", "ask", "anticipate", "have a bun in the oven", "look", "require", "gestate", "expect", "await"]}, {"answer": "experienced", "hint": "synonyms for experienced", "clues": ["live", "feel", "have", "know", "go through", "experience", "see", "get", "receive"]}, {"answer": "expired", "hint": "synonyms for expired", "clues": ["decease", "run out", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "exhale", "pass away", "die", "pass", "breathe out", "cash in one's chips"]}, {"answer": "exploded", "hint": "synonyms for exploded", "clues": ["set off", "break loose", "burst forth", "irrupt", "detonate", "explode", "blow up", "burst"]}, {"answer": "exploited", "hint": "synonyms for exploited", "clues": ["overwork", "work", "exploit", "tap"]}, {"answer": "exposed", "hint": "synonyms for exposed", "clues": ["scupper", "reveal", "queer", "exhibit", "give away", "expose", "peril", "endanger", "divulge", "break", "debunk", "uncover", "let on", "let out", "discover", "disclose", "unwrap", "display", "bring out"]}, {"answer": "express", "hint": "synonyms for express", "clues": ["give tongue to", "convey", "state", "press out", "show", "extract", "verbalise", "utter", "carry", "evince", "express"]}, {"answer": "expressed", "hint": "synonyms for expressed", "clues": ["give tongue to", "convey", "carry", "state", "press out", "show", "extract", "express", "utter", "verbalise", "evince"]}, {"answer": "expurgated", "hint": "synonyms for expurgated", "clues": ["bowdlerise", "expurgate", "shorten", "castrate"]}, {"answer": "extended", "hint": "synonyms for extended", "clues": ["poke out", "broaden", "go", "widen", "prolong", "protract", "unfold", "strain", "put out", "expand", "cover", "gallop", "carry", "draw out", "reach out", "stretch out", "stretch", "continue", "hold out", "offer", "stretch forth", "run", "extend", "lead", "pass", "exsert"]}, {"answer": "exterminated", "hint": "synonyms for exterminated", "clues": ["eradicate", "kill off", "uproot", "extirpate", "exterminate", "root out"]}, {"answer": "extinguished", "hint": "synonyms for extinguished", "clues": ["stub out", "press out", "get rid of", "crush out", "quench", "annihilate", "eradicate", "decimate", "do away with", "eliminate", "extinguish", "wipe out", "carry off", "snuff out", "blow out"]}, {"answer": "exulting", "hint": "synonyms for exulting", "clues": ["exult", "jubilate", "be on cloud nine", "jump for joy", "exuberate", "walk on air", "rejoice", "triumph"]}, {"answer": "fabricated", "hint": "synonyms for fabricated", "clues": ["invent", "make up", "cook up", "manufacture", "construct", "fabricate"]}, {"answer": "faced", "hint": "synonyms for faced", "clues": ["present", "confront", "face", "front", "face up", "look"]}, {"answer": "faded", "hint": "synonyms for faded", "clues": ["evanesce", "languish", "melt", "blow over", "pass off", "fade", "pass", "wither", "fleet"]}, {"answer": "fagged", "hint": "synonyms for fagged", "clues": ["tire out", "labor", "drudge", "dig", "travail", "fatigue", "wear down", "toil", "moil", "tire", "wear upon", "fag out", "wear out", "grind", "jade", "wear", "fag", "outwear", "fagged"]}, {"answer": "failing", "hint": "synonyms for failing", "clues": ["run out", "go wrong", "bomb", "go", "neglect", "miscarry", "break down", "give out", "betray", "break", "conk out", "give way", "flush it", "fail", "go bad", "flunk", "die"]}, {"answer": "fake", "hint": "synonyms for fake", "clues": ["falsify", "forge", "manipulate", "bullshit", "fudge", "bull", "talk through one's hat", "cook", "misrepresent", "wangle", "counterfeit", "fake"]}, {"answer": "fallen", "hint": "synonyms for fallen", "clues": ["go down", "light", "diminish", "fall down", "shine", "accrue", "return", "come down", "lessen", "settle", "fall", "devolve", "decrease", "precipitate", "flow", "descend", "come", "hang", "pass", "strike", "fallen"]}, {"answer": "falling", "hint": "synonyms for falling", "clues": ["go down", "light", "diminish", "fall down", "shine", "accrue", "return", "come down", "lessen", "settle", "fall", "devolve", "decrease", "precipitate", "flow", "descend", "come", "hang", "pass", "strike"]}, {"answer": "faltering", "hint": "synonyms for faltering", "clues": ["bumble", "falter", "stammer", "stutter", "waver", "stumble"]}, {"answer": "fancied", "hint": "synonyms for fancied", "clues": ["figure", "image", "visualise", "go for", "picture", "fancy", "envision", "see", "project", "take to", "fancied"]}, {"answer": "fancy", "hint": "synonyms for fancy", "clues": ["figure", "image", "visualise", "go for", "picture", "envision", "see", "project", "take to", "fancy"]}, {"answer": "farming", "hint": "synonyms for farming", "clues": ["produce", "raise", "grow", "farm"]}, {"answer": "fascinated", "hint": "synonyms for fascinated", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "enchant", "transfix", "charm", "intrigue", "grip", "fascinate", "beguile", "bewitch", "catch", "enamor"]}, {"answer": "fascinating", "hint": "synonyms for fascinating", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "enchant", "transfix", "charm", "intrigue", "grip", "fascinate", "beguile", "bewitch", "catch", "enamor", "fascinating"]}, {"answer": "fastened", "hint": "synonyms for fastened", "clues": ["fasten", "fix", "tighten", "secure"]}, {"answer": "fat", "hint": "synonyms for fat", "clues": ["fatten out", "plump", "fatten up", "fill out", "flesh out", "plump out", "fatten", "fat"]}, {"answer": "fated", "hint": "synonyms for fated", "clues": ["fatten out", "plump", "fill out", "destine", "fat", "fatten up", "doom", "flesh out", "plump out", "designate", "fatten", "fated"]}, {"answer": "fatigued", "hint": "synonyms for fatigued", "clues": ["tire out", "fatigue", "wear down", "tire", "wear upon", "fag out", "wear out", "jade", "wear", "fag", "outwear", "pall"]}, {"answer": "fattened", "hint": "synonyms for fattened", "clues": ["fatten out", "plump", "fill out", "fat", "fatten up", "flesh out", "plump out", "fatten"]}, {"answer": "fattening", "hint": "synonyms for fattening", "clues": ["fatten out", "plump", "fill out", "fat", "fatten up", "flesh out", "plump out", "fatten"]}, {"answer": "favored", "hint": "synonyms for favored", "clues": ["privilege", "favor", "prefer", "favored"]}, {"answer": "fawning", "hint": "synonyms for fawning", "clues": ["cower", "bootlick", "cringe", "kotow", "suck up", "grovel", "truckle", "toady", "fawn", "creep", "crawl"]}, {"answer": "fazed", "hint": "synonyms for fazed", "clues": ["unsettle", "faze", "unnerve", "enervate"]}, {"answer": "featured", "hint": "synonyms for featured", "clues": ["feature", "have", "boast", "sport"]}, {"answer": "feigned", "hint": "synonyms for feigned", "clues": ["sham", "simulate", "dissemble", "affect", "pretend", "feign", "assume", "feigned"]}, {"answer": "fell", "hint": "synonyms for fell", "clues": ["go down", "drop", "diminish", "light", "shine", "fall down", "accrue", "fly", "cut down", "strike down", "return", "come down", "lessen", "settle", "fall", "devolve", "decrease", "vanish", "precipitate", "flow", "descend", "come", "hang", "pass", "strike", "fell"]}, {"answer": "felted", "hint": "synonyms for felted", "clues": ["felt up", "felt", "mat", "matt-up", "mat up", "matte", "felted"]}, {"answer": "fetching", "hint": "synonyms for fetching", "clues": ["convey", "fetch", "get", "bring in", "bring"]}, {"answer": "fiddling", "hint": "synonyms for fiddling", "clues": ["shrink from", "monkey", "shirk", "diddle", "tamper", "fiddle", "tinker", "toy", "play", "goldbrick", "fiddling"]}, {"answer": "fighting", "hint": "synonyms for fighting", "clues": ["fight", "defend", "press", "campaign", "agitate", "fight down", "crusade", "fight back", "struggle", "contend", "oppose", "push"]}, {"answer": "figured", "hint": "synonyms for figured", "clues": ["forecast", "figure", "reckon", "estimate", "project", "image", "visualise", "work out", "picture", "fancy", "cypher", "compute", "enter", "count on", "cipher", "envision", "see", "calculate"]}, {"answer": "filled", "hint": "synonyms for filled", "clues": ["meet", "satiate", "take", "make full", "replete", "fulfill", "fill", "sate", "occupy", "fill up", "satisfy", "filled"]}, {"answer": "finished", "hint": "synonyms for finished", "clues": ["finish up", "polish off", "fetch up", "land up", "end up", "end", "stop", "terminate", "finish", "cease", "wind up", "eat up", "complete"]}, {"answer": "fired", "hint": "synonyms for fired", "clues": ["fuel", "can", "force out", "arouse", "give notice", "discharge", "enkindle", "give the axe", "fire", "terminate", "open fire", "sack", "burn", "burn down", "give the sack", "dismiss", "elicit", "raise", "go off", "send away", "displace", "provoke", "evoke"]}, {"answer": "fit", "hint": "synonyms for fit", "clues": ["match", "accommodate", "go", "meet", "gibe", "agree", "outfit", "correspond", "check", "equip", "suit", "tally", "jibe", "fit out", "conform to", "fit"]}, {"answer": "fitted", "hint": "synonyms for fitted", "clues": ["fit", "match", "accommodate", "go", "meet", "gibe", "agree", "outfit", "correspond", "check", "equip", "suit", "tally", "jibe", "fit out", "conform to", "fitted"]}, {"answer": "fitting", "hint": "synonyms for fitting", "clues": ["fit", "match", "accommodate", "go", "meet", "gibe", "agree", "outfit", "correspond", "check", "equip", "suit", "tally", "jibe", "fit out", "conform to", "fitting"]}, {"answer": "fixed", "hint": "synonyms for fixed", "clues": ["unsex", "doctor", "fix", "get", "set", "define", "posit", "determine", "touch on", "specify", "limit", "desex", "gear up", "set up", "fasten", "situate", "prepare", "restore", "bushel", "deposit", "sterilise", "mend", "desexualize", "pay back", "ready", "repair", "secure", "make", "pay off", "furbish up", "cook", "fixate", "fixed"]}, {"answer": "fizzing", "hint": "synonyms for fizzing", "clues": ["effervesce", "form bubbles", "froth", "foam", "sparkle", "fizz"]}, {"answer": "flagging", "hint": "synonyms for flagging", "clues": ["sag", "ease up", "slacken off", "droop", "ease off", "flag", "flagging"]}, {"answer": "flaring", "hint": "synonyms for flaring", "clues": ["burst out", "flame", "irrupt", "blaze up", "flare", "burn up", "erupt", "break open", "flare up", "flare out", "flaring"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["show off", "scud", "wink", "twinkle", "blink", "shoot", "scoot", "flaunt", "dart", "dash", "swank", "ostentate", "flash"]}, {"answer": "flecked", "hint": "synonyms for flecked", "clues": ["spot", "fleck", "blot", "blob", "flecked"]}, {"answer": "fleet", "hint": "synonyms for fleet", "clues": ["flutter", "evanesce", "blow over", "pass off", "dart", "flit", "fade", "pass", "fleet"]}, {"answer": "fleeting", "hint": "synonyms for fleeting", "clues": ["flutter", "evanesce", "blow over", "pass off", "dart", "flit", "fade", "pass", "fleet"]}, {"answer": "flickering", "hint": "synonyms for flickering", "clues": ["flutter", "flicker", "quiver", "waver", "flick"]}, {"answer": "flip", "hint": "synonyms for flip", "clues": ["riff", "flip over", "toss", "twitch", "flip out", "alternate", "sky", "interchange", "flip-flop", "thumb", "leaf", "throw", "switch", "flick", "tack", "riffle", "turn over", "pitch", "flip"]}, {"answer": "floating", "hint": "synonyms for floating", "clues": ["drift", "float", "be adrift", "blow", "swim"]}, {"answer": "flooded", "hint": "synonyms for flooded", "clues": ["swamp", "glut", "flood", "deluge", "inundate", "oversupply", "flooded"]}, {"answer": "floored", "hint": "synonyms for floored", "clues": ["ball over", "knock down", "coldcock", "shock", "take aback", "dump", "deck", "floor", "blow out of the water", "floored"]}, {"answer": "flourishing", "hint": "synonyms for flourishing", "clues": ["wave", "thrive", "brandish", "flourish", "fly high", "prosper", "expand", "boom"]}, {"answer": "flowing", "hint": "synonyms for flowing", "clues": ["fall", "feed", "flow", "run", "hang", "flux", "course", "menstruate"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["sluice", "blush", "crimson", "redden", "level", "purge", "scour", "even out", "even", "flush"]}, {"answer": "flushed", "hint": "synonyms for flushed", "clues": ["sluice", "blush", "crimson", "redden", "level", "flush", "purge", "scour", "even out", "even", "flushed"]}, {"answer": "fly", "hint": "synonyms for fly", "clues": ["pilot", "aviate", "take flight", "vanish", "vaporize", "wing", "fell", "flee", "fly"]}, {"answer": "flying", "hint": "synonyms for flying", "clues": ["pilot", "aviate", "vanish", "take flight", "vaporize", "wing", "fell", "fly", "flee"]}, {"answer": "foaming", "hint": "synonyms for foaming", "clues": ["effervesce", "form bubbles", "froth", "foam", "sparkle", "fizz"]}, {"answer": "focused", "hint": "synonyms for focused", "clues": ["rivet", "focus", "focalize", "concenter", "center", "centre", "sharpen", "concentrate", "pore", "focused"]}, {"answer": "focussed", "hint": "synonyms for focussed", "clues": ["rivet", "focus", "focalize", "concenter", "center", "centre", "sharpen", "concentrate", "pore", "focussed"]}, {"answer": "fogged", "hint": "synonyms for fogged", "clues": ["cloud", "haze over", "fog", "obnubilate", "mist", "obscure", "befog", "becloud", "fogged"]}, {"answer": "foiled", "hint": "synonyms for foiled", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "foil", "baffle", "thwart", "frustrate", "foiled"]}, {"answer": "folding", "hint": "synonyms for folding", "clues": ["pen up", "fold", "turn up", "close up", "fold up", "close down", "close", "shut down"]}, {"answer": "following", "hint": "synonyms for following", "clues": ["abide by", "come after", "watch", "keep up", "stick to", "comply", "espouse", "succeed", "postdate", "observe", "travel along", "be", "pursue", "follow", "adopt", "keep an eye on", "fall out", "take after", "play along", "survey", "trace", "come", "watch over", "accompany", "stick with", "surveil", "keep abreast", "conform to"]}, {"answer": "fooling", "hint": "synonyms for fooling", "clues": ["horse around", "shoot", "gull", "fool away", "put one over", "befool", "take in", "put on", "cod", "fool", "fritter", "frivol away", "dupe", "fritter away", "put one across", "fool around", "dissipate", "slang"]}, {"answer": "footed", "hint": "synonyms for footed", "clues": ["pick", "foot", "hoof it", "leg it", "foot up", "hoof", "footed"]}, {"answer": "footless", "hint": "synonyms for footless", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge"]}, {"answer": "footling", "hint": "synonyms for footling", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge", "footling"]}, {"answer": "forbidden", "hint": "synonyms for forbidden", "clues": ["prevent", "forbid", "proscribe", "interdict", "veto", "prohibit", "foreclose", "nix", "disallow", "forestall", "preclude", "forbidden"]}, {"answer": "forbidding", "hint": "synonyms for forbidding", "clues": ["prevent", "forbid", "proscribe", "interdict", "veto", "prohibit", "foreclose", "nix", "disallow", "forestall", "preclude", "forbidding"]}, {"answer": "forced", "hint": "synonyms for forced", "clues": ["hale", "coerce", "draw", "storm", "thrust", "pressure", "pull", "ram", "drive", "squeeze", "wedge", "push", "impel", "force"]}, {"answer": "foreboding", "hint": "synonyms for foreboding", "clues": ["forebode", "predict", "call", "anticipate", "prognosticate", "foretell", "promise", "foreboding"]}, {"answer": "foregoing", "hint": "synonyms for foregoing", "clues": ["predate", "foreswear", "dispense with", "antecede", "waive", "throw overboard", "antedate", "give up", "forfeit", "relinquish", "forego", "precede"]}, {"answer": "foregone", "hint": "synonyms for foregone", "clues": ["predate", "foreswear", "dispense with", "antecede", "waive", "throw overboard", "antedate", "give up", "forfeit", "relinquish", "forego", "precede"]}, {"answer": "foreshadowing", "hint": "synonyms for foreshadowing", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure"]}, {"answer": "forfeit", "hint": "synonyms for forfeit", "clues": ["waive", "throw overboard", "forego", "give up", "forfeit"]}, {"answer": "forfeited", "hint": "synonyms for forfeited", "clues": ["waive", "throw overboard", "forfeit", "forego", "give up"]}, {"answer": "forged", "hint": "synonyms for forged", "clues": ["invent", "form", "mold", "devise", "formulate", "forge", "fashion", "hammer", "spurt", "contrive", "work", "spirt", "counterfeit", "excogitate", "fake", "shape"]}, {"answer": "forgotten", "hint": "synonyms for forgotten", "clues": ["forget", "blank out", "draw a blank", "bury", "leave", "block", "forgotten"]}, {"answer": "forked", "hint": "synonyms for forked", "clues": ["pitchfork", "furcate", "ramify", "branch", "separate", "fork", "forked"]}, {"answer": "formed", "hint": "synonyms for formed", "clues": ["organise", "imprint", "make", "form", "mold", "forge", "take form", "shape", "work", "spring", "take shape", "constitute", "formed"]}, {"answer": "formulated", "hint": "synonyms for formulated", "clues": ["invent", "explicate", "formulate", "devise", "forge", "articulate", "phrase", "develop", "contrive", "give voice", "excogitate", "word"]}, {"answer": "fortified", "hint": "synonyms for fortified", "clues": ["fort", "arm", "build up", "lace", "strengthen", "gird", "spike", "beef up", "fortify", "fortified"]}, {"answer": "foul", "hint": "synonyms for foul", "clues": ["maculate", "befoul", "defile", "contaminate", "clog up", "back up", "choke", "pollute", "clog", "choke off", "congest", "foul"]}, {"answer": "fouled", "hint": "synonyms for fouled", "clues": ["maculate", "befoul", "foul", "defile", "contaminate", "clog up", "back up", "choke", "pollute", "clog", "choke off", "congest", "fouled"]}, {"answer": "found", "hint": "synonyms for found", "clues": ["launch", "encounter", "come up", "feel", "institute", "find oneself", "recover", "happen", "rule", "incur", "notice", "observe", "get hold", "regain", "get", "establish", "receive", "constitute", "ground", "plant", "determine", "witness", "line up", "retrieve", "base", "chance", "bump", "set up", "discover", "obtain", "find out", "see", "ascertain", "find", "detect", "found"]}, {"answer": "framed", "hint": "synonyms for framed", "clues": ["frame in", "redact", "border", "ensnare", "entrap", "couch", "compose", "set up", "frame", "cast", "put", "draw up", "frame up"]}, {"answer": "frayed", "hint": "synonyms for frayed", "clues": ["frazzle", "fray", "fret", "rub", "chafe", "scratch", "frayed"]}, {"answer": "free", "hint": "synonyms for free", "clues": ["unfreeze", "disembarrass", "unloosen", "loose", "discharge", "resign", "justify", "exempt", "relieve", "rid", "unblock", "release", "give up", "disengage", "relinquish", "absolve", "liberate", "dislodge", "free"]}, {"answer": "frequent", "hint": "synonyms for frequent", "clues": ["patronize", "shop", "shop at", "buy at", "sponsor", "haunt", "frequent"]}, {"answer": "fretted", "hint": "synonyms for fretted", "clues": ["gag", "fray", "niggle", "fret", "rub", "fuss", "rankle", "choke", "eat into", "erode", "eat away", "gall", "chafe", "grate", "scratch", "fretted"]}, {"answer": "frothing", "hint": "synonyms for frothing", "clues": ["effervesce", "sparkle", "suds", "form bubbles", "spume", "froth", "foam", "fizz"]}, {"answer": "frozen", "hint": "synonyms for frozen", "clues": ["freeze", "immobilize", "block", "suspend", "freeze down", "stop dead", "freeze out", "frozen"]}, {"answer": "frustrated", "hint": "synonyms for frustrated", "clues": ["cross", "scotch", "spoil", "dun", "queer", "crucify", "bilk", "foil", "bedevil", "baffle", "thwart", "torment", "rag", "frustrate"]}, {"answer": "frustrating", "hint": "synonyms for frustrating", "clues": ["cross", "scotch", "spoil", "dun", "queer", "crucify", "bilk", "foil", "bedevil", "baffle", "thwart", "torment", "rag", "frustrate", "frustrating"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love"]}, {"answer": "fuddled", "hint": "synonyms for fuddled", "clues": ["fuddle", "throw", "discombobulate", "confuse", "fox", "bedevil", "confound", "booze", "drink"]}, {"answer": "fulfilled", "hint": "synonyms for fulfilled", "clues": ["meet", "satisfy", "live up to", "fulfill", "carry through", "carry out", "fill", "action", "execute", "accomplish"]}, {"answer": "fumbling", "hint": "synonyms for fumbling", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "grope", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "blunder", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "fumbling"]}, {"answer": "fumed", "hint": "synonyms for fumed", "clues": ["reek", "smoke", "fumigate", "fume"]}, {"answer": "functioning", "hint": "synonyms for functioning", "clues": ["officiate", "go", "work", "serve", "operate", "function", "run"]}, {"answer": "furnished", "hint": "synonyms for furnished", "clues": ["supply", "furnish", "provide", "render"]}, {"answer": "furrowed", "hint": "synonyms for furrowed", "clues": ["rut", "chase", "crease", "wrinkle", "groove", "chamfer", "furrow"]}, {"answer": "further", "hint": "synonyms for further", "clues": ["promote", "encourage", "advance", "foster", "boost", "further"]}, {"answer": "fused", "hint": "synonyms for fused", "clues": ["fuse", "blend", "mix", "immix", "meld", "commingle", "merge", "combine", "coalesce", "conflate", "flux"]}, {"answer": "galled", "hint": "synonyms for galled", "clues": ["irk", "fret", "gall", "chafe", "galled"]}, {"answer": "galling", "hint": "synonyms for galling", "clues": ["irk", "fret", "gall", "chafe"]}, {"answer": "game", "hint": "synonyms for game", "clues": ["gage", "back", "stake", "punt", "bet on", "game"]}, {"answer": "gaping", "hint": "synonyms for gaping", "clues": ["gap", "breach", "gawk", "yawn", "goggle"]}, {"answer": "garbed", "hint": "synonyms for garbed", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb", "garbed"]}, {"answer": "garbled", "hint": "synonyms for garbled", "clues": ["warp", "distort", "falsify", "garble"]}, {"answer": "garmented", "hint": "synonyms for garmented", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb"]}, {"answer": "gasified", "hint": "synonyms for gasified", "clues": ["vaporise", "aerify", "gasify", "gasified"]}, {"answer": "gathered", "hint": "synonyms for gathered", "clues": ["pile up", "amass", "cumulate", "gain", "meet", "pull together", "assemble", "forgather", "garner", "gather", "get together", "pucker", "conglomerate", "tuck", "collect"]}, {"answer": "generalised", "hint": "synonyms for generalised", "clues": ["popularize", "generalize", "vulgarise", "infer", "extrapolate"]}, {"answer": "generalized", "hint": "synonyms for generalized", "clues": ["popularize", "generalize", "vulgarise", "infer", "extrapolate"]}, {"answer": "gentle", "hint": "synonyms for gentle", "clues": ["ennoble", "appease", "gruntle", "mollify", "placate", "entitle", "pacify", "assuage", "lenify", "conciliate", "gentle"]}, {"answer": "gifted", "hint": "synonyms for gifted", "clues": ["empower", "endue", "endow", "give", "invest", "gift", "present", "indue", "gifted"]}, {"answer": "given", "hint": "synonyms for given", "clues": ["consecrate", "devote", "move over", "commit", "return", "hand", "establish", "impart", "render", "pass on", "break", "chip in", "fall in", "give way", "pay", "founder", "reach", "hold", "open", "cave in", "have", "present", "collapse", "afford", "yield", "throw", "make", "grant", "ease up", "feed", "leave", "pass", "give", "kick in", "generate", "contribute", "gift", "apply", "sacrifice", "turn over", "dedicate"]}, {"answer": "giving", "hint": "synonyms for giving", "clues": ["consecrate", "devote", "move over", "commit", "return", "hand", "establish", "impart", "render", "pass on", "break", "chip in", "fall in", "give way", "pay", "founder", "reach", "hold", "open", "cave in", "have", "present", "collapse", "afford", "yield", "throw", "make", "grant", "ease up", "feed", "leave", "pass", "give", "kick in", "generate", "contribute", "gift", "apply", "sacrifice", "turn over", "dedicate", "giving"]}, {"answer": "glassed", "hint": "synonyms for glassed", "clues": ["glass in", "glass over", "glass", "glaze over", "glaze", "glassed"]}, {"answer": "glazed", "hint": "synonyms for glazed", "clues": ["sugarcoat", "glass over", "glass", "glaze over", "candy", "glaze"]}, {"answer": "gleaming", "hint": "synonyms for gleaming", "clues": ["shine", "glitter", "glint", "gleam", "glimmer", "glisten"]}, {"answer": "glinting", "hint": "synonyms for glinting", "clues": ["peek", "shine", "glitter", "glint", "gleam", "glance", "glisten"]}, {"answer": "glistening", "hint": "synonyms for glistening", "clues": ["shine", "glitter", "glint", "gleam", "glisten"]}, {"answer": "glittering", "hint": "synonyms for glittering", "clues": ["shine", "glitter", "glint", "gleam", "glisten"]}, {"answer": "glorified", "hint": "synonyms for glorified", "clues": ["transfigure", "proclaim", "laud", "glorify", "exalt", "spiritualize", "extol", "glorified"]}, {"answer": "glowering", "hint": "synonyms for glowering", "clues": ["glare", "lour", "frown", "lower", "glowering"]}, {"answer": "glowing", "hint": "synonyms for glowing", "clues": ["burn", "beam", "shine", "glow", "radiate"]}, {"answer": "glutted", "hint": "synonyms for glutted", "clues": ["gormandize", "flood", "ingurgitate", "binge", "oversupply", "glut", "englut", "engorge", "pig out", "overgorge", "satiate", "overeat", "overindulge", "scarf out", "gorge", "stuff", "glutted"]}, {"answer": "gnarled", "hint": "synonyms for gnarled", "clues": ["mutter", "grumble", "gnarl", "croak", "murmur", "gnarled"]}, {"answer": "go", "hint": "synonyms for go", "clues": ["decease", "blend in", "become", "travel", "choke", "perish", "expire", "get", "go away", "give out", "break", "hold up", "fit", "blend", "give-up the ghost", "hold out", "operate", "give way", "kick the bucket", "pop off", "drop dead", "run low", "exit", "fail", "extend", "last", "conk", "die", "move", "get going", "plump", "start", "belong", "buy the farm", "function", "snuff it", "break down", "survive", "run short", "sound", "proceed", "rifle", "conk out", "croak", "live", "depart", "endure", "live on", "run", "lead", "locomote", "go bad", "pass away", "work", "pass", "cash in one's chips", "go"]}, {"answer": "goaded", "hint": "synonyms for goaded", "clues": ["needle", "spur", "goad", "prick", "goaded"]}, {"answer": "going", "hint": "synonyms for going", "clues": ["decease", "blend in", "become", "go", "travel", "choke", "perish", "expire", "get", "go away", "give out", "break", "hold up", "fit", "blend", "give-up the ghost", "hold out", "operate", "give way", "kick the bucket", "pop off", "drop dead", "run low", "exit", "fail", "extend", "last", "conk", "die", "move", "get going", "plump", "start", "belong", "buy the farm", "function", "snuff it", "break down", "survive", "run short", "sound", "proceed", "rifle", "conk out", "croak", "live", "depart", "pass", "endure", "live on", "run", "go bad", "locomote", "pass away", "work", "lead", "cash in one's chips"]}, {"answer": "gone", "hint": "synonyms for gone", "clues": ["decease", "blend in", "become", "go", "travel", "choke", "perish", "expire", "get", "go away", "give out", "break", "hold up", "fit", "blend", "give-up the ghost", "hold out", "operate", "give way", "kick the bucket", "pop off", "drop dead", "run low", "exit", "fail", "extend", "last", "conk", "die", "move", "get going", "plump", "start", "belong", "buy the farm", "function", "snuff it", "break down", "survive", "run short", "sound", "proceed", "rifle", "conk out", "croak", "live", "depart", "pass", "endure", "live on", "run", "go bad", "locomote", "pass away", "work", "lead", "cash in one's chips", "gone"]}, {"answer": "governing", "hint": "synonyms for governing", "clues": ["regularise", "regulate", "rule", "govern", "order"]}, {"answer": "graded", "hint": "synonyms for graded", "clues": ["rate", "place", "score", "rank", "order", "range", "grade", "mark"]}, {"answer": "granted", "hint": "synonyms for granted", "clues": ["grant", "accord", "allot", "cede", "give", "award", "concede", "allow", "deed over", "yield", "granted"]}, {"answer": "grasping", "hint": "synonyms for grasping", "clues": ["grasp", "apprehend", "dig", "get the picture", "grok", "compass", "hold on", "comprehend", "savvy"]}, {"answer": "gratified", "hint": "synonyms for gratified", "clues": ["gratify", "pander", "satisfy", "indulge", "gratified"]}, {"answer": "gratifying", "hint": "synonyms for gratifying", "clues": ["gratify", "pander", "satisfy", "indulge"]}, {"answer": "grating", "hint": "synonyms for grating", "clues": ["grind", "fret", "scrape", "rankle", "grate", "eat into", "grating"]}, {"answer": "grave", "hint": "synonyms for grave", "clues": ["sculpt", "sculpture", "inscribe", "engrave", "scratch", "grave"]}, {"answer": "graven", "hint": "synonyms for graven", "clues": ["grave", "sculpt", "sculpture", "inscribe", "engrave", "scratch"]}, {"answer": "grazed", "hint": "synonyms for grazed", "clues": ["crease", "pasture", "crop", "rake", "range", "graze", "browse"]}, {"answer": "gripping", "hint": "synonyms for gripping", "clues": ["spellbind", "grapple", "grip", "transfix", "fascinate", "gripping"]}, {"answer": "grizzled", "hint": "synonyms for grizzled", "clues": ["whine", "yammer", "yawp", "stew", "grizzle", "brood"]}, {"answer": "groomed", "hint": "synonyms for groomed", "clues": ["train", "neaten", "dress", "prepare", "groom", "curry", "groomed"]}, {"answer": "groveling", "hint": "synonyms for groveling", "clues": ["cower", "cringe", "creep", "fawn", "grovel", "crawl"]}, {"answer": "grovelling", "hint": "synonyms for grovelling", "clues": ["cower", "cringe", "creep", "fawn", "grovel", "crawl", "grovelling"]}, {"answer": "growing", "hint": "synonyms for growing", "clues": ["get", "originate", "uprise", "rise", "grow", "farm", "develop", "turn", "acquire", "mature", "spring up", "produce"]}, {"answer": "grown", "hint": "synonyms for grown", "clues": ["get", "originate", "uprise", "rise", "grow", "farm", "develop", "turn", "acquire", "mature", "spring up", "produce"]}, {"answer": "grumbling", "hint": "synonyms for grumbling", "clues": ["scold", "gnarl", "croak", "rumble", "growl", "grouch", "mutter", "murmur", "grumbling"]}, {"answer": "guarded", "hint": "synonyms for guarded", "clues": ["guard", "ward", "defend", "hold", "guarded"]}, {"answer": "guided", "hint": "synonyms for guided", "clues": ["conduct", "guide", "channelize", "steer", "draw", "pass", "head", "take", "run", "maneuver", "point", "direct", "manoeuvre", "lead", "guide on"]}, {"answer": "guiding", "hint": "synonyms for guiding", "clues": ["conduct", "guide", "channelize", "steer", "draw", "pass", "head", "take", "run", "maneuver", "point", "direct", "manoeuvre", "lead", "guide on", "guiding"]}, {"answer": "gushing", "hint": "synonyms for gushing", "clues": ["rave", "spurt", "spirt", "jet", "gush", "spout"]}, {"answer": "hale", "hint": "synonyms for hale", "clues": ["pressure", "coerce", "cart", "haul", "squeeze", "drag", "force", "hale"]}, {"answer": "hallowed", "hint": "synonyms for hallowed", "clues": ["consecrate", "hallow", "sanctify", "bless"]}, {"answer": "halt", "hint": "synonyms for halt", "clues": ["arrest", "stem", "kibosh", "hold", "stanch", "block", "stop", "halt"]}, {"answer": "halting", "hint": "synonyms for halting", "clues": ["stem", "block", "stop", "arrest", "halt", "kibosh", "hold", "stanch"]}, {"answer": "handed", "hint": "synonyms for handed", "clues": ["pass on", "reach", "hand", "turn over", "pass", "give", "handed"]}, {"answer": "handicapped", "hint": "synonyms for handicapped", "clues": ["disable", "incapacitate", "hinder", "invalid", "hamper", "handicap", "handicapped"]}, {"answer": "handled", "hint": "synonyms for handled", "clues": ["address", "manage", "treat", "deal", "plow", "palm", "do by", "cover", "handle", "care", "wield"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["address", "manage", "treat", "deal", "plow", "palm", "do by", "cover", "handle", "care", "wield"]}, {"answer": "harassed", "hint": "synonyms for harassed", "clues": ["chivvy", "chevy", "harass", "harry", "plague", "provoke", "hassle", "beset", "molest"]}, {"answer": "hardened", "hint": "synonyms for hardened", "clues": ["temper", "inure", "harden", "indurate", "season"]}, {"answer": "harmonised", "hint": "synonyms for harmonised", "clues": ["accord", "fit in", "agree", "reconcile", "concord", "harmonize", "consort", "chord", "harmonised"]}, {"answer": "harmonized", "hint": "synonyms for harmonized", "clues": ["accord", "fit in", "agree", "reconcile", "concord", "harmonize", "consort", "chord"]}, {"answer": "harnessed", "hint": "synonyms for harnessed", "clues": ["draw rein", "rule", "rein", "tackle", "harness", "rein in"]}, {"answer": "harried", "hint": "synonyms for harried", "clues": ["chivvy", "chevy", "harass", "harry", "plague", "ravage", "provoke", "hassle", "beset", "molest", "harried"]}, {"answer": "hatched", "hint": "synonyms for hatched", "clues": ["think of", "concoct", "brood", "hatch", "dream up", "incubate", "cover", "think up", "hatched"]}, {"answer": "haunted", "hint": "synonyms for haunted", "clues": ["obsess", "stalk", "ghost", "frequent", "haunt", "haunted"]}, {"answer": "haunting", "hint": "synonyms for haunting", "clues": ["obsess", "stalk", "ghost", "frequent", "haunt"]}, {"answer": "headed", "hint": "synonyms for headed", "clues": ["head up", "guide", "channelize", "steer", "head", "maneuver", "point", "direct", "manoeuvre", "lead", "headed"]}, {"answer": "healed", "hint": "synonyms for healed", "clues": ["mend", "heal", "bring around", "cure", "healed"]}, {"answer": "healing", "hint": "synonyms for healing", "clues": ["mend", "heal", "bring around", "cure"]}, {"answer": "heard", "hint": "synonyms for heard", "clues": ["get wind", "get a line", "hear", "learn", "get word", "try", "take heed", "listen", "pick up", "discover", "find out", "see"]}, {"answer": "hearing", "hint": "synonyms for hearing", "clues": ["get wind", "get a line", "hear", "learn", "get word", "try", "take heed", "listen", "pick up", "discover", "find out", "see"]}, {"answer": "heartening", "hint": "synonyms for heartening", "clues": ["recreate", "embolden", "hearten", "cheer"]}, {"answer": "heated", "hint": "synonyms for heated", "clues": ["wake", "stir up", "hot up", "fire up", "heat", "inflame", "heat up", "ignite", "heated"]}, {"answer": "hedged", "hint": "synonyms for hedged", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "evade", "fudge", "hedge in", "sidestep", "elude", "duck", "hedge"]}, {"answer": "heightening", "hint": "synonyms for heightening", "clues": ["deepen", "enhance", "rise", "compound", "sharpen", "intensify", "heighten"]}, {"answer": "held", "hint": "synonyms for held", "clues": ["support", "keep", "go for", "retain", "arrest", "sustain", "defy", "nurse", "bind", "hold up", "entertain", "oblige", "withstand", "hold in", "have got", "defend", "adjudge", "agree", "take", "check", "guard", "take for", "admit", "halt", "hold", "maintain", "hold back", "harbor", "confine", "accommodate", "reserve", "have", "bear", "concord", "concur", "carry", "book", "deem", "control", "throw", "declare", "make", "curb", "give", "view as", "keep back", "obtain", "contain", "prevail", "moderate", "take hold", "apply", "held"]}, {"answer": "heralded", "hint": "synonyms for heralded", "clues": ["harbinger", "acclaim", "herald", "annunciate", "foretell", "hail", "announce"]}, {"answer": "hesitating", "hint": "synonyms for hesitating", "clues": ["waffle", "hesitate", "waver", "pause", "hesitating"]}, {"answer": "hex", "hint": "synonyms for hex", "clues": ["jinx", "bewitch", "witch", "glamour", "enchant", "hex"]}, {"answer": "hexed", "hint": "synonyms for hexed", "clues": ["jinx", "hex", "bewitch", "witch", "glamour", "enchant", "hexed"]}, {"answer": "hidden", "hint": "synonyms for hidden", "clues": ["conceal", "hide", "obliterate", "enshroud", "blot out", "hide out", "veil", "cover", "obscure", "hidden"]}, {"answer": "hinder", "hint": "synonyms for hinder", "clues": ["stymy", "stymie", "block", "impede", "handicap", "embarrass", "blockade", "obstruct", "hamper", "hinder"]}, {"answer": "hindering", "hint": "synonyms for hindering", "clues": ["stymy", "stymie", "impede", "block", "handicap", "embarrass", "hinder", "blockade", "obstruct", "hamper"]}, {"answer": "hired", "hint": "synonyms for hired", "clues": ["rent", "engage", "hire", "take", "employ", "charter", "lease"]}, {"answer": "hollow", "hint": "synonyms for hollow", "clues": ["dig", "hollow out", "excavate", "core out", "hollow"]}, {"answer": "honored", "hint": "synonyms for honored", "clues": ["respect", "abide by", "honor", "reward", "observe", "honored"]}, {"answer": "hoofed", "hint": "synonyms for hoofed", "clues": ["foot", "hoof it", "leg it", "hoof", "hoofed"]}, {"answer": "hooked", "hint": "synonyms for hooked", "clues": ["abstract", "fleece", "gazump", "filch", "addict", "hook", "solicit", "thieve", "pinch", "sneak", "lift", "accost", "swipe", "soak", "plume", "nobble", "snitch", "pluck", "rob", "glom", "pilfer", "overcharge", "crochet", "surcharge", "purloin", "cabbage", "knock off", "snarf", "cop", "snare", "hooked"]}, {"answer": "horrified", "hint": "synonyms for horrified", "clues": ["appall", "alarm", "dismay", "horrify", "horrified"]}, {"answer": "horrifying", "hint": "synonyms for horrifying", "clues": ["appall", "alarm", "dismay", "horrify"]}, {"answer": "howling", "hint": "synonyms for howling", "clues": ["howl", "yammer", "yaup", "yowl", "wrawl", "wail", "ululate", "roar", "yawl"]}, {"answer": "hulking", "hint": "synonyms for hulking", "clues": ["loom", "predominate", "hulk", "tower"]}, {"answer": "humble", "hint": "synonyms for humble", "clues": ["chagrin", "abase", "humiliate", "mortify", "humble"]}, {"answer": "humbled", "hint": "synonyms for humbled", "clues": ["chagrin", "humble", "abase", "humiliate", "mortify"]}, {"answer": "humbling", "hint": "synonyms for humbling", "clues": ["chagrin", "humble", "abase", "humiliate", "mortify", "humbling"]}, {"answer": "humiliated", "hint": "synonyms for humiliated", "clues": ["chagrin", "humble", "abase", "humiliate", "mortify"]}, {"answer": "humiliating", "hint": "synonyms for humiliating", "clues": ["chagrin", "humble", "abase", "humiliate", "mortify", "humiliating"]}, {"answer": "humped", "hint": "synonyms for humped", "clues": ["roll in the hay", "hump", "have a go at it", "hunch over", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "hunch forward", "jazz", "know", "hunch", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "humped"]}, {"answer": "hunched", "hint": "synonyms for hunched", "clues": ["hunch over", "hunch forward", "hump", "hunch", "hunched"]}, {"answer": "hunted", "hint": "synonyms for hunted", "clues": ["hound", "hunt", "track down", "hunt down", "trace", "run", "hunted"]}, {"answer": "hurried", "hint": "synonyms for hurried", "clues": ["hasten", "speed", "travel rapidly", "hurry", "look sharp", "festinate", "zip", "rush", "hurried"]}, {"answer": "hurrying", "hint": "synonyms for hurrying", "clues": ["hasten", "speed", "travel rapidly", "hurry", "look sharp", "festinate", "zip", "rush"]}, {"answer": "hurt", "hint": "synonyms for hurt", "clues": ["spite", "anguish", "offend", "pain", "smart", "injure", "wound", "suffer", "ache", "bruise", "hurt"]}, {"answer": "hushed", "hint": "synonyms for hushed", "clues": ["quiet", "hush", "silence", "quiesce", "still", "quieten", "pipe down", "hush up", "shut up", "quiet down", "hushed"]}, {"answer": "identified", "hint": "synonyms for identified", "clues": ["identify", "place", "key out", "key", "discover", "name", "distinguish", "describe", "identified"]}, {"answer": "idle", "hint": "synonyms for idle", "clues": ["slug", "laze", "stagnate", "tick over", "idle"]}, {"answer": "idolised", "hint": "synonyms for idolised", "clues": ["worship", "revere", "idolise", "hero-worship"]}, {"answer": "idolized", "hint": "synonyms for idolized", "clues": ["worship", "revere", "idolise", "hero-worship", "idolized"]}, {"answer": "ignited", "hint": "synonyms for ignited", "clues": ["wake", "light", "stir up", "combust", "catch fire", "take fire", "fire up", "erupt", "heat", "conflagrate", "inflame", "ignite"]}, {"answer": "ignored", "hint": "synonyms for ignored", "clues": ["disregard", "brush aside", "discount", "dismiss", "neglect", "cut", "brush off", "ignore", "snub"]}, {"answer": "ill-treated", "hint": "synonyms for ill-treated", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-treat", "ill-use"]}, {"answer": "ill-used", "hint": "synonyms for ill-used", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-treat", "ill-use"]}, {"answer": "illuminated", "hint": "synonyms for illuminated", "clues": ["light", "illuminate", "clear up", "clear", "straighten out", "crystallise", "light up", "elucidate", "enlighten", "illume", "sort out", "shed light on"]}, {"answer": "illuminating", "hint": "synonyms for illuminating", "clues": ["light", "illuminate", "clear up", "clear", "straighten out", "crystallise", "light up", "elucidate", "enlighten", "illume", "sort out", "shed light on", "illuminating"]}, {"answer": "immunized", "hint": "synonyms for immunized", "clues": ["immunise", "inoculate", "vaccinate", "immunized"]}, {"answer": "impacted", "hint": "synonyms for impacted", "clues": ["impact", "bear upon", "touch", "affect", "touch on"]}, {"answer": "impaired", "hint": "synonyms for impaired", "clues": ["spoil", "impair", "mar", "vitiate", "deflower"]}, {"answer": "impeded", "hint": "synonyms for impeded", "clues": ["impede", "block", "close up", "hinder", "jam", "obstruct", "occlude", "obturate"]}, {"answer": "impeding", "hint": "synonyms for impeding", "clues": ["impede", "block", "close up", "hinder", "jam", "obstruct", "occlude", "obturate", "impeding"]}, {"answer": "implanted", "hint": "synonyms for implanted", "clues": ["plant", "imbed", "embed", "engraft", "implant"]}, {"answer": "implemented", "hint": "synonyms for implemented", "clues": ["follow out", "go through", "enforce", "carry out", "follow up", "follow through", "apply", "put through", "implement"]}, {"answer": "imposed", "hint": "synonyms for imposed", "clues": ["inflict", "levy", "enforce", "visit", "bring down", "impose"]}, {"answer": "imposing", "hint": "synonyms for imposing", "clues": ["inflict", "levy", "enforce", "visit", "bring down", "impose", "imposing"]}, {"answer": "impressed", "hint": "synonyms for impressed", "clues": ["impress", "instill", "imprint", "ingrain", "yarn-dye", "affect", "print", "move", "strike", "shanghai"]}, {"answer": "imprisoned", "hint": "synonyms for imprisoned", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "immure", "jail"]}, {"answer": "improved", "hint": "synonyms for improved", "clues": ["amend", "better", "meliorate", "improve"]}, {"answer": "improving", "hint": "synonyms for improving", "clues": ["amend", "better", "meliorate", "improve", "improving"]}, {"answer": "improvised", "hint": "synonyms for improvised", "clues": ["extemporize", "ad-lib", "improvize", "improvised"]}, {"answer": "incapacitated", "hint": "synonyms for incapacitated", "clues": ["disable", "incapacitate", "invalid", "handicap"]}, {"answer": "incapacitating", "hint": "synonyms for incapacitating", "clues": ["disable", "incapacitate", "invalid", "handicap", "incapacitating"]}, {"answer": "incensed", "hint": "synonyms for incensed", "clues": ["exasperate", "cense", "infuriate", "incense", "thurify"]}, {"answer": "inclined", "hint": "synonyms for inclined", "clues": ["tend", "dispose", "lean", "be given", "run", "incline", "pitch", "slope"]}, {"answer": "incorporated", "hint": "synonyms for incorporated", "clues": ["incorporate", "contain", "comprise", "integrate"]}, {"answer": "incriminating", "hint": "synonyms for incriminating", "clues": ["criminate", "accuse", "inculpate", "imply", "impeach", "incriminating"]}, {"answer": "indisposed", "hint": "synonyms for indisposed", "clues": ["disincline", "unfit", "indispose", "disqualify"]}, {"answer": "induced", "hint": "synonyms for induced", "clues": ["hasten", "make", "induct", "have", "bring on", "stimulate", "cause", "get", "induce", "rush"]}, {"answer": "inebriated", "hint": "synonyms for inebriated", "clues": ["soak", "tickle pink", "hit it up", "souse", "exalt", "exhilarate", "beatify", "thrill", "intoxicate", "inebriate"]}, {"answer": "inflamed", "hint": "synonyms for inflamed", "clues": ["wake", "stir up", "enkindle", "fire up", "heat", "conflagrate", "inflame", "ignite"]}, {"answer": "inflated", "hint": "synonyms for inflated", "clues": ["expand", "balloon", "inflate", "billow", "amplify", "blow up"]}, {"answer": "ingrained", "hint": "synonyms for ingrained", "clues": ["impress", "instill", "grain", "ingrain"]}, {"answer": "inhabited", "hint": "synonyms for inhabited", "clues": ["live", "dwell", "inhabit", "populate"]}, {"answer": "inhibited", "hint": "synonyms for inhibited", "clues": ["bottle up", "inhibit", "stamp down", "subdue", "curb", "conquer", "suppress"]}, {"answer": "inhumed", "hint": "synonyms for inhumed", "clues": ["inhume", "inter", "entomb", "bury", "lay to rest"]}, {"answer": "injured", "hint": "synonyms for injured", "clues": ["spite", "offend", "wound", "injure", "hurt", "bruise"]}, {"answer": "inquiring", "hint": "synonyms for inquiring", "clues": ["investigate", "enquire", "wonder", "ask", "inquiring"]}, {"answer": "inscribed", "hint": "synonyms for inscribed", "clues": ["code", "grave", "enrol", "recruit", "write in code", "autograph", "encipher", "cypher", "enter", "encrypt", "inscribe", "engrave", "scratch"]}, {"answer": "inspired", "hint": "synonyms for inspired", "clues": ["inspire", "breathe in", "revolutionize", "invigorate", "animate", "urge on", "barrack", "urge", "enliven", "prompt", "inhale", "exalt", "exhort", "instigate", "pep up", "cheer", "root on"]}, {"answer": "inspiring", "hint": "synonyms for inspiring", "clues": ["inspire", "breathe in", "revolutionize", "invigorate", "animate", "urge on", "barrack", "urge", "enliven", "prompt", "inhale", "exalt", "exhort", "instigate", "pep up", "cheer", "root on", "inspiring"]}, {"answer": "institutionalised", "hint": "synonyms for institutionalised", "clues": ["send", "commit", "charge", "institutionalize"]}, {"answer": "institutionalized", "hint": "synonyms for institutionalized", "clues": ["send", "commit", "charge", "institutionalize"]}, {"answer": "insured", "hint": "synonyms for insured", "clues": ["control", "ensure", "cover", "see to it", "check", "assure", "secure", "underwrite", "see", "ascertain", "guarantee", "insure"]}, {"answer": "integrated", "hint": "synonyms for integrated", "clues": ["incorporate", "mix", "integrate", "desegregate"]}, {"answer": "intended", "hint": "synonyms for intended", "clues": ["mean", "specify", "destine", "signify", "think", "stand for", "intend", "designate"]}, {"answer": "intensified", "hint": "synonyms for intensified", "clues": ["compound", "step up", "deepen", "intensify", "heighten", "escalate", "intensified"]}, {"answer": "intensifying", "hint": "synonyms for intensifying", "clues": ["compound", "step up", "deepen", "intensify", "heighten", "escalate"]}, {"answer": "interbred", "hint": "synonyms for interbred", "clues": ["cross", "hybridise", "crossbreed", "interbreed"]}, {"answer": "interested", "hint": "synonyms for interested", "clues": ["worry", "matter to", "occupy", "concern", "interest"]}, {"answer": "interesting", "hint": "synonyms for interesting", "clues": ["worry", "matter to", "occupy", "concern", "interest"]}, {"answer": "interfering", "hint": "synonyms for interfering", "clues": ["step in", "interpose", "interfere", "intervene", "interfering"]}, {"answer": "interlaced", "hint": "synonyms for interlaced", "clues": ["entwine", "lock", "lace", "interlock", "interlace", "enlace", "intertwine", "twine"]}, {"answer": "interlacing", "hint": "synonyms for interlacing", "clues": ["entwine", "lock", "lace", "interlock", "interlace", "enlace", "intertwine", "twine", "interlacing"]}, {"answer": "interlocking", "hint": "synonyms for interlocking", "clues": ["lock", "interlock", "interlace", "mesh"]}, {"answer": "intermediate", "hint": "synonyms for intermediate", "clues": ["mediate", "liaise", "arbitrate", "intercede", "intermediate"]}, {"answer": "interpreted", "hint": "synonyms for interpreted", "clues": ["construe", "translate", "read", "understand", "rede", "interpret", "represent", "see", "render"]}, {"answer": "interred", "hint": "synonyms for interred", "clues": ["inhume", "inter", "entomb", "bury", "lay to rest", "interred"]}, {"answer": "interrupted", "hint": "synonyms for interrupted", "clues": ["break", "interrupt", "break up", "disrupt", "disturb", "cut off"]}, {"answer": "intervening", "hint": "synonyms for intervening", "clues": ["step in", "interpose", "interfere", "intervene", "intervening"]}, {"answer": "intoned", "hint": "synonyms for intoned", "clues": ["intone", "tone", "chant", "cantillate"]}, {"answer": "intoxicated", "hint": "synonyms for intoxicated", "clues": ["pick up", "inebriate", "uplift", "soak", "elate", "intoxicate", "lift up"]}, {"answer": "intoxicating", "hint": "synonyms for intoxicating", "clues": ["pick up", "inebriate", "uplift", "soak", "elate", "intoxicate", "lift up", "intoxicating"]}, {"answer": "intriguing", "hint": "synonyms for intriguing", "clues": ["connive", "scheme", "fascinate", "intrigue", "intriguing"]}, {"answer": "intruding", "hint": "synonyms for intruding", "clues": ["pry", "trespass", "irrupt", "horn in", "obtrude", "nose", "intrude", "poke", "intruding"]}, {"answer": "inundated", "hint": "synonyms for inundated", "clues": ["swamp", "submerge", "flood", "deluge", "inundate"]}, {"answer": "invading", "hint": "synonyms for invading", "clues": ["obtrude upon", "intrude on", "infest", "encroach upon", "occupy", "overrun", "invade", "invading"]}, {"answer": "invalidated", "hint": "synonyms for invalidated", "clues": ["invalidate", "avoid", "nullify", "vitiate", "quash", "cancel", "annul"]}, {"answer": "invalidating", "hint": "synonyms for invalidating", "clues": ["invalidate", "avoid", "nullify", "vitiate", "quash", "cancel", "annul", "invalidating"]}, {"answer": "invigorated", "hint": "synonyms for invigorated", "clues": ["inspire", "liven up", "exalt", "invigorate", "liven", "animate", "enliven", "quicken"]}, {"answer": "invigorating", "hint": "synonyms for invigorating", "clues": ["inspire", "liven up", "exalt", "invigorate", "liven", "animate", "enliven", "quicken", "invigorating"]}, {"answer": "inviting", "hint": "synonyms for inviting", "clues": ["invite", "tempt", "ask over", "ask round", "pay for", "bid", "take in", "ask in", "receive", "ask for", "call for", "inviting"]}, {"answer": "involved", "hint": "synonyms for involved", "clues": ["need", "postulate", "ask", "take", "necessitate", "demand", "regard", "require", "affect", "imply", "involve", "call for"]}, {"answer": "irritated", "hint": "synonyms for irritated", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother"]}, {"answer": "irritating", "hint": "synonyms for irritating", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother", "irritating"]}, {"answer": "isolated", "hint": "synonyms for isolated", "clues": ["insulate", "keep apart", "set apart", "isolate", "sequester", "sequestrate"]}, {"answer": "isolating", "hint": "synonyms for isolating", "clues": ["insulate", "keep apart", "set apart", "isolate", "sequester", "sequestrate", "isolating"]}, {"answer": "jade", "hint": "synonyms for jade", "clues": ["tire out", "wear out", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "pall", "wear upon", "fag out", "jade"]}, {"answer": "jaded", "hint": "synonyms for jaded", "clues": ["tire out", "fatigue", "wear down", "tire", "wear upon", "fag out", "wear out", "jade", "wear", "fag", "outwear", "pall"]}, {"answer": "jailed", "hint": "synonyms for jailed", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "immure", "jail", "jailed"]}, {"answer": "jammed", "hint": "synonyms for jammed", "clues": ["chock up", "pack", "impede", "close up", "ram", "wad", "jam", "obstruct", "throng", "obturate", "block", "mob", "pile", "occlude", "crush", "jampack", "jammed"]}, {"answer": "jarring", "hint": "synonyms for jarring", "clues": ["bump around", "jar", "jolt", "clash", "shake up", "collide", "jarring"]}, {"answer": "jawed", "hint": "synonyms for jawed", "clues": ["call down", "chew up", "yack", "jaw", "take to task", "natter", "lecture", "yap away", "chew", "yack away", "call on the carpet", "shoot the breeze", "claver", "confabulate", "masticate", "lambast", "rebuke", "chaffer", "manducate", "rag", "chatter", "rattle on", "reproof", "confab", "chat", "have words", "chide", "scold", "gossip", "chitchat", "chew out", "remonstrate", "reprimand", "chew the fat", "visit", "berate", "dress down", "trounce", "bawl out", "jawed"]}, {"answer": "jeering", "hint": "synonyms for jeering", "clues": ["jeer", "flout", "scoff", "gibe", "barrack"]}, {"answer": "jerking", "hint": "synonyms for jerking", "clues": ["yank", "buck", "twitch", "hitch", "jerk", "flick"]}, {"answer": "jinxed", "hint": "synonyms for jinxed", "clues": ["jinx", "hex", "bewitch", "witch", "glamour", "enchant", "jinxed"]}, {"answer": "joined", "hint": "synonyms for joined", "clues": ["bring together", "link", "join", "fall in", "connect", "link up", "unite", "get together", "conjoin", "joined"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["josh", "chaff", "banter", "kid", "jolly"]}, {"answer": "jumbled", "hint": "synonyms for jumbled", "clues": ["mix up", "throw together", "confuse", "scramble", "jumble", "mingle"]}, {"answer": "justified", "hint": "synonyms for justified", "clues": ["vindicate", "apologize", "free", "absolve", "warrant", "rationalize", "justify", "excuse", "justified"]}, {"answer": "jutting", "hint": "synonyms for jutting", "clues": ["jut", "jut out", "project", "protrude", "stick out", "jutting"]}, {"answer": "keeled", "hint": "synonyms for keeled", "clues": ["careen", "reel", "lurch", "keel", "swag", "stagger", "keeled"]}, {"answer": "kept", "hint": "synonyms for kept", "clues": ["keep", "prevent", "retain", "keep on", "observe", "sustain", "hold on", "celebrate", "stay fresh", "proceed", "continue", "keep back", "go along", "preserve", "save", "go on", "hold", "maintain", "hold back", "kept"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["discover", "identify", "name", "key out", "distinguish", "describe", "key"]}, {"answer": "keyed", "hint": "synonyms for keyed", "clues": ["discover", "identify", "name", "key out", "distinguish", "key", "describe", "keyed"]}, {"answer": "killing", "hint": "synonyms for killing", "clues": ["kill", "shoot down", "pour down", "vote down", "obliterate", "vote out", "down", "pop", "stamp out", "toss off", "defeat", "bolt down", "wipe out", "drink down"]}, {"answer": "kindled", "hint": "synonyms for kindled", "clues": ["elicit", "arouse", "enkindle", "raise", "fire", "provoke", "conflagrate", "inflame", "evoke", "kindled"]}, {"answer": "knitted", "hint": "synonyms for knitted", "clues": ["pucker", "entwine", "crumple", "knit", "cockle", "knitted"]}, {"answer": "knowing", "hint": "synonyms for knowing", "clues": ["roll in the hay", "acknowledge", "have a go at it", "cognise", "sleep together", "make out", "have intercourse", "bang", "love", "get it on", "eff", "jazz", "know", "get laid", "experience", "fuck", "lie with", "make love", "hump", "have sex", "be intimate", "have it off", "bed", "sleep with", "live", "screw", "have it away", "do it", "bonk", "recognize"]}, {"answer": "known", "hint": "synonyms for known", "clues": ["roll in the hay", "acknowledge", "have a go at it", "cognise", "sleep together", "make out", "have intercourse", "bang", "love", "get it on", "eff", "jazz", "know", "get laid", "experience", "fuck", "lie with", "make love", "hump", "have sex", "be intimate", "have it off", "bed", "sleep with", "live", "screw", "have it away", "do it", "bonk", "recognize"]}, {"answer": "labeled", "hint": "synonyms for labeled", "clues": ["label", "judge", "mark", "pronounce", "tag", "labeled"]}, {"answer": "labelled", "hint": "synonyms for labelled", "clues": ["label", "judge", "mark", "pronounce", "tag", "labelled"]}, {"answer": "labored", "hint": "synonyms for labored", "clues": ["labor", "moil", "grind", "drudge", "dig", "tug", "fag", "travail", "toil", "drive", "push", "labored"]}, {"answer": "laboring", "hint": "synonyms for laboring", "clues": ["labor", "moil", "grind", "drudge", "dig", "tug", "fag", "travail", "toil", "drive", "push"]}, {"answer": "laboured", "hint": "synonyms for laboured", "clues": ["labor", "grind", "drudge", "dig", "fag", "tug", "travail", "drive", "toil", "moil", "push", "laboured"]}, {"answer": "labouring", "hint": "synonyms for labouring", "clues": ["labor", "grind", "drudge", "dig", "fag", "tug", "travail", "drive", "toil", "moil", "push", "labouring"]}, {"answer": "laced", "hint": "synonyms for laced", "clues": ["entwine", "lace up", "lace", "interlace", "enlace", "braid", "intertwine", "spike", "twine", "plait", "fortify"]}, {"answer": "lactating", "hint": "synonyms for lactating", "clues": ["nurse", "wet-nurse", "suckle", "breastfeed", "give suck", "suck", "lactate", "lactating"]}, {"answer": "laden", "hint": "synonyms for laden", "clues": ["load", "load up", "ladle", "laden"]}, {"answer": "ladened", "hint": "synonyms for ladened", "clues": ["load", "laden", "load up", "ladle", "ladened"]}, {"answer": "laid", "hint": "synonyms for laid", "clues": ["lay", "place", "put down", "put", "position", "repose", "pose", "set", "laid"]}, {"answer": "lamented", "hint": "synonyms for lamented", "clues": ["lament", "deplore", "keen", "bemoan", "bewail"]}, {"answer": "lamenting", "hint": "synonyms for lamenting", "clues": ["lament", "deplore", "keen", "bemoan", "bewail"]}, {"answer": "landed", "hint": "synonyms for landed", "clues": ["put down", "shoot down", "bring down", "shore", "set down", "bring", "down", "land", "set ashore", "landed"]}, {"answer": "lapsed", "hint": "synonyms for lapsed", "clues": ["lapse", "glide by", "sink", "backslide", "regress", "recidivate", "slip by", "go by", "go along", "fall back", "retrogress", "relapse", "slip away", "pass"]}, {"answer": "lashing", "hint": "synonyms for lashing", "clues": ["slash", "lather", "whip", "strap", "trounce", "flog", "welt", "lashing"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["hold up", "live", "go", "hold out", "endure", "live on", "survive", "last"]}, {"answer": "lasting", "hint": "synonyms for lasting", "clues": ["hold up", "live", "go", "hold out", "endure", "live on", "last", "survive"]}, {"answer": "lay", "hint": "synonyms for lay", "clues": ["lie", "place", "put down", "lie in", "dwell", "lie down", "put", "position", "repose", "pose", "consist", "set", "rest", "lay"]}, {"answer": "leaded", "hint": "synonyms for leaded", "clues": ["guide", "go", "conduce", "top", "head", "direct", "result", "precede", "chair", "leave", "take", "run", "extend", "contribute", "lead", "moderate", "pass", "leaded"]}, {"answer": "leading", "hint": "synonyms for leading", "clues": ["guide", "go", "conduce", "top", "head", "direct", "result", "precede", "chair", "leave", "take", "run", "extend", "contribute", "lead", "moderate", "pass"]}, {"answer": "leafed", "hint": "synonyms for leafed", "clues": ["leaf", "riff", "flip", "riffle", "thumb", "flick", "leafed"]}, {"answer": "lean", "hint": "synonyms for lean", "clues": ["tend", "slant", "list", "angle", "be given", "run", "incline", "tip", "tilt", "lean"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["tend", "slant", "lean", "list", "angle", "be given", "run", "incline", "tip", "tilt"]}, {"answer": "learned", "hint": "synonyms for learned", "clues": ["get wind", "get a line", "read", "learn", "watch", "get word", "ascertain", "instruct", "acquire", "con", "hear", "determine", "take", "check", "pick up", "discover", "find out", "memorise", "see", "study", "teach", "learned"]}, {"answer": "leased", "hint": "synonyms for leased", "clues": ["rent", "let", "engage", "hire", "take", "charter", "lease"]}, {"answer": "leaved", "hint": "synonyms for leaved", "clues": ["leave behind", "entrust", "result", "go away", "allow", "impart", "pass on", "pull up stakes", "depart", "leave", "provide", "bequeath", "give", "exit", "go forth", "leave alone", "get out", "go out", "will", "forget", "allow for", "lead"]}, {"answer": "left", "hint": "synonyms for left", "clues": ["leave behind", "entrust", "result", "go away", "allow", "impart", "pass on", "pull up stakes", "depart", "leave", "provide", "bequeath", "give", "exit", "go forth", "leave alone", "get out", "go out", "will", "forget", "allow for", "lead", "left"]}, {"answer": "legitimate", "hint": "synonyms for legitimate", "clues": ["legalize", "decriminalise", "legitimatise", "legitimize"]}, {"answer": "lessened", "hint": "synonyms for lessened", "clues": ["fall", "diminish", "decrease", "lessen", "minify", "subside"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["take down", "dismantle", "flush", "pull down", "raze", "tear down", "level off", "even out", "point", "even", "charge", "rase", "level"]}, {"answer": "liberated", "hint": "synonyms for liberated", "clues": ["set free", "free", "unloosen", "loose", "release", "emancipate", "liberate"]}, {"answer": "licked", "hint": "synonyms for licked", "clues": ["clobber", "work out", "lick", "drub", "lap", "puzzle out", "thrash", "lap up", "figure out", "bat", "work", "solve", "cream", "licked"]}, {"answer": "lifted", "hint": "synonyms for lifted", "clues": ["countermand", "abstract", "wind", "rear", "filch", "go up", "lift", "sneak", "plagiarise", "face-lift", "uprise", "airlift", "elevate", "raise", "vacate", "cabbage", "get up", "snarf", "hoist", "come up", "revoke", "annul", "arise", "hook", "pinch", "swipe", "rustle", "nobble", "move up", "reverse", "bring up", "overturn", "pilfer", "purloin", "rescind", "repeal", "lifted"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["light up", "fall", "get off", "illume", "unhorse", "illuminate", "fire up", "get down", "alight", "perch", "dismount", "ignite"]}, {"answer": "lighted", "hint": "synonyms for lighted", "clues": ["light up", "fall", "light", "get off", "illume", "unhorse", "illuminate", "fire up", "get down", "perch", "dismount", "ignite", "lighted"]}, {"answer": "limited", "hint": "synonyms for limited", "clues": ["confine", "determine", "specify", "set", "define", "limit", "circumscribe", "fix", "trammel", "bound", "restrain", "throttle", "restrict", "limited"]}, {"answer": "limiting", "hint": "synonyms for limiting", "clues": ["confine", "determine", "specify", "set", "define", "limit", "circumscribe", "fix", "trammel", "bound", "restrain", "throttle", "restrict"]}, {"answer": "lined", "hint": "synonyms for lined", "clues": ["line", "delineate", "run along", "draw", "describe", "trace"]}, {"answer": "linked", "hint": "synonyms for linked", "clues": ["yoke", "link", "join", "relate", "associate", "link up", "connect", "unite", "tie", "colligate", "tie in", "linked"]}, {"answer": "liquefied", "hint": "synonyms for liquefied", "clues": ["liquidise", "liquify", "flux", "liquefied"]}, {"answer": "liquified", "hint": "synonyms for liquified", "clues": ["liquidise", "liquify", "flux", "liquified"]}, {"answer": "listed", "hint": "synonyms for listed", "clues": ["number", "lean", "name", "list", "heel", "listed"]}, {"answer": "lit", "hint": "synonyms for lit", "clues": ["light up", "fall", "light", "get off", "illume", "unhorse", "illuminate", "fire up", "get down", "perch", "dismount", "ignite", "lit"]}, {"answer": "live", "hint": "synonyms for live", "clues": ["hold up", "go", "dwell", "hold out", "endure", "populate", "live on", "know", "exist", "last", "experience", "survive", "be", "inhabit", "subsist", "live"]}, {"answer": "living", "hint": "synonyms for living", "clues": ["hold up", "live", "go", "dwell", "hold out", "endure", "populate", "live on", "know", "exist", "last", "experience", "survive", "be", "inhabit", "subsist", "living"]}, {"answer": "loaded", "hint": "synonyms for loaded", "clues": ["load", "stretch", "adulterate", "dilute", "load up", "debase", "lade", "charge", "loaded"]}, {"answer": "localised", "hint": "synonyms for localised", "clues": ["place", "focalize", "set", "localise"]}, {"answer": "localized", "hint": "synonyms for localized", "clues": ["place", "focalize", "set", "localise", "localized"]}, {"answer": "located", "hint": "synonyms for located", "clues": ["locate", "site", "place", "situate", "turn up", "settle"]}, {"answer": "looking", "hint": "synonyms for looking", "clues": ["appear", "search", "depend", "front", "face", "look", "attend", "reckon", "seem", "expect", "take care", "await", "calculate", "bet", "count"]}, {"answer": "loose", "hint": "synonyms for loose", "clues": ["loosen", "free", "unleash", "release", "relax", "let loose", "liberate", "unloose"]}, {"answer": "loosened", "hint": "synonyms for loosened", "clues": ["loosen", "tease apart", "relax", "untie", "tease", "undo"]}, {"answer": "looted", "hint": "synonyms for looted", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "loot", "reave", "looted"]}, {"answer": "lost", "hint": "synonyms for lost", "clues": ["misplace", "lose", "drop off", "suffer", "turn a loss", "fall back", "recede", "fall behind", "mislay", "miss", "lost"]}, {"answer": "loved", "hint": "synonyms for loved", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "enjoy", "have it away", "do it", "fuck", "lie with", "make love"]}, {"answer": "loving", "hint": "synonyms for loving", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "enjoy", "have it away", "do it", "fuck", "lie with", "make love", "loving"]}, {"answer": "lowered", "hint": "synonyms for lowered", "clues": ["turn down", "take down", "bring down", "lour", "frown", "get down", "lower", "depress", "lowered"]}, {"answer": "lowering", "hint": "synonyms for lowering", "clues": ["turn down", "take down", "bring down", "lour", "frown", "get down", "lower", "depress"]}, {"answer": "maculate", "hint": "synonyms for maculate", "clues": ["sully", "stain", "defile", "foul", "tarnish", "befoul", "maculate"]}, {"answer": "made", "hint": "synonyms for made", "clues": ["make water", "stimulate", "cause", "pee", "clear", "stool", "fix", "get", "ca-ca", "establish", "wee", "constitute", "shit", "progress to", "pull in", "gain", "lay down", "take a crap", "arrive at", "make believe", "puddle", "take a leak", "create", "take", "seduce", "piss", "reach", "produce", "name", "hold", "prepare", "spend a penny", "piddle", "pretend", "earn", "crap", "attain", "form", "draw", "have", "take a shit", "defecate", "realise", "induce", "nominate", "ready", "take in", "urinate", "relieve oneself", "throw", "make up", "make", "wee-wee", "pass water", "score", "build", "pee-pee", "give", "construct", "micturate", "do", "cook", "work", "get to", "bring in", "made"]}, {"answer": "magnetised", "hint": "synonyms for magnetised", "clues": ["spellbind", "mesmerise", "bewitch", "magnetize", "magnetised"]}, {"answer": "magnetized", "hint": "synonyms for magnetized", "clues": ["spellbind", "mesmerise", "magnetize", "bewitch"]}, {"answer": "magnified", "hint": "synonyms for magnified", "clues": ["magnify", "overdraw", "hyperbolise", "overstate", "blow up", "exaggerate", "amplify", "enlarge", "magnified"]}, {"answer": "mailed", "hint": "synonyms for mailed", "clues": ["send", "post", "get off", "mail", "mailed"]}, {"answer": "maintained", "hint": "synonyms for maintained", "clues": ["keep", "keep up", "defend", "asseverate", "assert", "exert", "preserve", "sustain", "observe", "uphold", "conserve", "hold", "maintain", "wield"]}, {"answer": "maledict", "hint": "synonyms for maledict", "clues": ["imprecate", "curse", "anathemise", "beshrew", "bedamn", "damn", "maledict"]}, {"answer": "maltreated", "hint": "synonyms for maltreated", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-treat", "ill-use"]}, {"answer": "mangled", "hint": "synonyms for mangled", "clues": ["mangle", "maul", "cut up", "murder", "mutilate"]}, {"answer": "manifest", "hint": "synonyms for manifest", "clues": ["evidence", "demonstrate", "certify", "attest", "manifest"]}, {"answer": "manufactured", "hint": "synonyms for manufactured", "clues": ["invent", "make up", "cook up", "manufacture", "construct", "fabricate"]}, {"answer": "marked", "hint": "synonyms for marked", "clues": ["cross off", "label", "pit", "strike off", "strike out", "punctuate", "differentiate", "scar", "tick", "notice", "mark", "nock", "distinguish", "brand", "commemorate", "tag", "set", "check off", "note", "denounce", "score", "cross out", "check", "mark off", "tick off", "grade", "pock", "stigmatize", "marked"]}, {"answer": "marred", "hint": "synonyms for marred", "clues": ["spoil", "mar", "impair", "vitiate", "deflower", "mutilate", "marred"]}, {"answer": "married", "hint": "synonyms for married", "clues": ["splice", "wed", "get married", "espouse", "marry", "tie", "hook up with", "get hitched with", "conjoin", "married"]}, {"answer": "masked", "hint": "synonyms for masked", "clues": ["cloak", "dissemble", "disguise", "block out", "mask", "masked"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["control", "get over", "dominate", "subdue", "surmount", "get the hang", "overcome", "master"]}, {"answer": "mastered", "hint": "synonyms for mastered", "clues": ["control", "get over", "dominate", "master", "surmount", "overcome", "subdue", "get the hang"]}, {"answer": "mat", "hint": "synonyms for mat", "clues": ["tangle", "felt up", "felt", "matt-up", "mat up", "snarl", "matte", "mat"]}, {"answer": "matched", "hint": "synonyms for matched", "clues": ["pit", "match", "gibe", "play off", "touch", "rival", "tally", "twin", "oppose", "equalize", "mate", "fit", "pair", "equate", "meet", "cope with", "agree", "correspond", "check", "equal", "jibe", "couple", "matched"]}, {"answer": "matching", "hint": "synonyms for matching", "clues": ["pit", "match", "gibe", "play off", "touch", "rival", "tally", "twin", "oppose", "equalize", "mate", "fit", "pair", "equate", "meet", "cope with", "agree", "correspond", "check", "equal", "jibe", "couple"]}, {"answer": "mated", "hint": "synonyms for mated", "clues": ["copulate", "mate", "pair", "match", "tangle", "felt up", "felt", "matt-up", "mat up", "checkmate", "twin", "snarl", "couple"]}, {"answer": "matte", "hint": "synonyms for matte", "clues": ["mat up", "felt up", "felt", "mat", "matt-up", "matte"]}, {"answer": "matted", "hint": "synonyms for matted", "clues": ["tangle", "felt up", "felt", "mat", "matt-up", "mat up", "snarl", "matte"]}, {"answer": "mature", "hint": "synonyms for mature", "clues": ["ripen", "get on", "suppurate", "age", "maturate", "grow", "senesce"]}, {"answer": "matured", "hint": "synonyms for matured", "clues": ["ripen", "senesce", "grow", "mature", "get on", "age", "suppurate"]}, {"answer": "mean", "hint": "synonyms for mean", "clues": ["think", "think of", "entail", "stand for", "intend", "imply", "signify", "have in mind", "mean"]}, {"answer": "meandering", "hint": "synonyms for meandering", "clues": ["thread", "meander", "wind", "weave", "wander"]}, {"answer": "meaning", "hint": "synonyms for meaning", "clues": ["think of", "mean", "signify", "think", "entail", "stand for", "intend", "imply", "have in mind"]}, {"answer": "measured", "hint": "synonyms for measured", "clues": ["mensurate", "value", "quantify", "valuate", "measure out", "assess", "appraise", "measure"]}, {"answer": "mediate", "hint": "synonyms for mediate", "clues": ["intermediate", "liaise", "arbitrate", "intercede", "mediate"]}, {"answer": "mediated", "hint": "synonyms for mediated", "clues": ["arbitrate", "mediate", "intermediate", "liaise", "intercede"]}, {"answer": "meet", "hint": "synonyms for meet", "clues": ["take on", "encounter", "match", "run across", "gather", "get together", "fulfill", "suffer", "touch", "receive", "satisfy", "fit", "adjoin", "cope with", "contact", "forgather", "converge", "fill", "come across", "see", "run into", "play", "conform to", "assemble", "meet"]}, {"answer": "melted", "hint": "synonyms for melted", "clues": ["dethaw", "unfreeze", "evaporate", "mellow out", "meld", "thaw", "melt", "run", "unthaw", "mellow", "melt down", "fade", "disappear", "dissolve", "melted"]}, {"answer": "melting", "hint": "synonyms for melting", "clues": ["dethaw", "unfreeze", "evaporate", "mellow out", "meld", "thaw", "melt", "run", "unthaw", "mellow", "melt down", "fade", "disappear", "dissolve"]}, {"answer": "menacing", "hint": "synonyms for menacing", "clues": ["imperil", "jeopardise", "threaten", "peril", "menace", "endanger", "menacing"]}, {"answer": "merged", "hint": "synonyms for merged", "clues": ["blend", "mix", "immix", "meld", "merge", "commingle", "conflate", "combine", "unify", "unite", "coalesce", "fuse", "flux"]}, {"answer": "merging", "hint": "synonyms for merging", "clues": ["blend", "mix", "immix", "meld", "merge", "commingle", "conflate", "combine", "unify", "unite", "coalesce", "fuse", "flux", "merging"]}, {"answer": "meshed", "hint": "synonyms for meshed", "clues": ["enmesh", "lock", "ensnarl", "engage", "operate", "interlock", "mesh", "meshed"]}, {"answer": "mesmerised", "hint": "synonyms for mesmerised", "clues": ["spellbind", "mesmerise", "hypnotise", "magnetize", "bewitch"]}, {"answer": "mesmerized", "hint": "synonyms for mesmerized", "clues": ["spellbind", "mesmerise", "hypnotise", "magnetize", "bewitch", "mesmerized"]}, {"answer": "mesmerizing", "hint": "synonyms for mesmerizing", "clues": ["spellbind", "mesmerise", "hypnotise", "magnetize", "bewitch", "mesmerizing"]}, {"answer": "minded", "hint": "synonyms for minded", "clues": ["mind", "take care", "bear in mind", "listen", "heed", "beware", "minded"]}, {"answer": "minimized", "hint": "synonyms for minimized", "clues": ["understate", "denigrate", "minimize", "belittle", "downplay", "derogate"]}, {"answer": "mired", "hint": "synonyms for mired", "clues": ["bog down", "grind to a halt", "muck up", "mire", "get stuck", "entangle", "mud", "muck"]}, {"answer": "misappropriated", "hint": "synonyms for misappropriated", "clues": ["embezzle", "peculate", "malversate", "misappropriate", "defalcate"]}, {"answer": "misguided", "hint": "synonyms for misguided", "clues": ["misadvise", "misguide", "lead astray", "mislead", "misdirect"]}, {"answer": "misleading", "hint": "synonyms for misleading", "clues": ["misinform", "misguide", "lead astray", "mislead", "misdirect"]}, {"answer": "misrepresented", "hint": "synonyms for misrepresented", "clues": ["falsify", "manipulate", "fudge", "cook", "misrepresent", "wangle", "fake", "belie"]}, {"answer": "missed", "hint": "synonyms for missed", "clues": ["escape", "lose", "drop", "overleap", "pretermit", "leave out", "neglect", "lack", "overlook", "omit", "miss", "missed"]}, {"answer": "missing", "hint": "synonyms for missing", "clues": ["escape", "lose", "drop", "overleap", "pretermit", "leave out", "neglect", "lack", "overlook", "omit", "miss"]}, {"answer": "mistaken", "hint": "synonyms for mistaken", "clues": ["mistake", "slip", "misidentify", "err"]}, {"answer": "mistreated", "hint": "synonyms for mistreated", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-treat", "ill-use"]}, {"answer": "misunderstood", "hint": "synonyms for misunderstood", "clues": ["be amiss", "misconceive", "misinterpret", "misapprehend", "misunderstand", "misconstrue", "misunderstood"]}, {"answer": "misused", "hint": "synonyms for misused", "clues": ["abuse", "misapply", "misuse", "pervert"]}, {"answer": "mixed", "hint": "synonyms for mixed", "clues": ["mix", "immix", "meld", "desegregate", "unify", "shuffle", "coalesce", "fuse", "ruffle", "blend", "commix", "commingle", "merge", "integrate", "amalgamate", "mingle", "combine", "mix in", "conflate", "flux", "mixed"]}, {"answer": "model", "hint": "synonyms for model", "clues": ["sit", "posture", "mould", "pattern", "pose", "mock up", "simulate", "model"]}, {"answer": "modeled", "hint": "synonyms for modeled", "clues": ["sit", "mold", "model", "mock up", "simulate", "pattern", "pose", "posture", "modeled"]}, {"answer": "moderate", "hint": "synonyms for moderate", "clues": ["control", "soften", "temper", "hold in", "chair", "tame", "check", "mince", "tone down", "contain", "curb", "hold", "lead", "chasten", "moderate"]}, {"answer": "moderating", "hint": "synonyms for moderating", "clues": ["control", "soften", "temper", "hold in", "chair", "tame", "curb", "check", "mince", "tone down", "contain", "moderate", "hold", "lead", "chasten", "moderating"]}, {"answer": "modernised", "hint": "synonyms for modernised", "clues": ["develop", "modernize", "overhaul", "modernised"]}, {"answer": "modified", "hint": "synonyms for modified", "clues": ["qualify", "change", "alter", "modify", "modified"]}, {"answer": "modulated", "hint": "synonyms for modulated", "clues": ["regulate", "tone", "inflect", "modulate"]}, {"answer": "molded", "hint": "synonyms for molded", "clues": ["determine", "form", "forge", "model", "regulate", "influence", "cast", "mould", "work", "shape", "mildew", "molded"]}, {"answer": "molten", "hint": "synonyms for molten", "clues": ["dethaw", "unfreeze", "evaporate", "mellow out", "meld", "thaw", "melt", "run", "unthaw", "mellow", "melt down", "fade", "disappear", "dissolve", "molten"]}, {"answer": "moot", "hint": "synonyms for moot", "clues": ["debate", "turn over", "consider", "deliberate", "moot"]}, {"answer": "mortified", "hint": "synonyms for mortified", "clues": ["necrose", "abase", "gangrene", "crucify", "mortify", "subdue", "humble", "chagrin", "humiliate", "sphacelate", "mortified"]}, {"answer": "mortifying", "hint": "synonyms for mortifying", "clues": ["necrose", "abase", "gangrene", "crucify", "mortify", "subdue", "humble", "chagrin", "humiliate", "sphacelate"]}, {"answer": "motivated", "hint": "synonyms for motivated", "clues": ["incite", "prompt", "motivate", "actuate", "move", "propel"]}, {"answer": "motivating", "hint": "synonyms for motivating", "clues": ["incite", "prompt", "motivate", "actuate", "move", "propel", "motivating"]}, {"answer": "mottled", "hint": "synonyms for mottled", "clues": ["mottle", "cloud", "blotch", "dapple", "streak"]}, {"answer": "mounted", "hint": "synonyms for mounted", "clues": ["climb up", "ride", "mount up", "mount", "bestride", "rise", "get on", "climb", "put on", "hop on", "wax", "go up", "jump on", "climb on", "mounted"]}, {"answer": "moved", "hint": "synonyms for moved", "clues": ["go", "make a motion", "actuate", "travel", "affect", "motivate", "propel", "proceed", "impress", "act", "prompt", "run", "displace", "incite", "be active", "locomote", "move", "strike"]}, {"answer": "moving", "hint": "synonyms for moving", "clues": ["go", "make a motion", "actuate", "travel", "affect", "motivate", "propel", "proceed", "impress", "act", "prompt", "run", "displace", "incite", "be active", "locomote", "move", "strike", "moving"]}, {"answer": "mown", "hint": "synonyms for mown", "clues": ["cut down", "pout", "mop", "mow"]}, {"answer": "muffled", "hint": "synonyms for muffled", "clues": ["muffle", "dull", "smother", "tone down", "stifle", "dampen", "mute", "damp", "repress", "strangle"]}, {"answer": "multiplied", "hint": "synonyms for multiplied", "clues": ["breed", "reproduce", "procreate", "manifold", "multiply", "multiplied"]}, {"answer": "murdered", "hint": "synonyms for murdered", "clues": ["remove", "bump off", "hit", "polish off", "off", "mutilate", "mangle", "murder", "slay", "dispatch"]}, {"answer": "murmuring", "hint": "synonyms for murmuring", "clues": ["mutter", "grumble", "gnarl", "croak", "murmur"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "think over", "ruminate", "chew over", "excogitate", "musing"]}, {"answer": "mute", "hint": "synonyms for mute", "clues": ["tone down", "dampen", "dull", "damp", "muffle", "mute"]}, {"answer": "muted", "hint": "synonyms for muted", "clues": ["tone down", "dampen", "mute", "dull", "damp", "muffle"]}, {"answer": "mutilated", "hint": "synonyms for mutilated", "clues": ["mangle", "mar", "cut up", "murder", "mutilate"]}, {"answer": "mystified", "hint": "synonyms for mystified", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify", "mystified"]}, {"answer": "mystifying", "hint": "synonyms for mystifying", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "naming", "hint": "synonyms for naming", "clues": ["key out", "list", "key", "nominate", "advert", "appoint", "distinguish", "describe", "constitute", "identify", "make", "mention", "refer", "call", "cite", "bring up", "discover", "name", "diagnose", "naming"]}, {"answer": "narrow", "hint": "synonyms for narrow", "clues": ["narrow down", "pin down", "specify", "constringe", "nail down", "contract", "specialise", "constrict", "peg down", "narrow"]}, {"answer": "narrowed", "hint": "synonyms for narrowed", "clues": ["narrow", "narrow down", "pin down", "specify", "constringe", "nail down", "contract", "specialise", "constrict", "peg down"]}, {"answer": "narrowing", "hint": "synonyms for narrowing", "clues": ["narrow", "narrow down", "pin down", "specify", "constringe", "nail down", "contract", "specialise", "constrict", "peg down"]}, {"answer": "naturalised", "hint": "synonyms for naturalised", "clues": ["domesticate", "tame", "naturalize", "cultivate"]}, {"answer": "naturalized", "hint": "synonyms for naturalized", "clues": ["domesticate", "tame", "naturalize", "cultivate"]}, {"answer": "nauseated", "hint": "synonyms for nauseated", "clues": ["turn one's stomach", "disgust", "sicken", "nauseate", "revolt", "churn up"]}, {"answer": "nauseating", "hint": "synonyms for nauseating", "clues": ["turn one's stomach", "disgust", "sicken", "nauseate", "revolt", "churn up", "nauseating"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["come near", "draw close", "draw near", "come on", "approach", "go up", "near"]}, {"answer": "needed", "hint": "synonyms for needed", "clues": ["want", "need", "postulate", "ask", "take", "necessitate", "demand", "require", "involve", "call for", "needed"]}, {"answer": "neglected", "hint": "synonyms for neglected", "clues": ["disregard", "drop", "overleap", "pretermit", "leave out", "neglect", "overlook", "fail", "omit", "ignore", "miss"]}, {"answer": "nestled", "hint": "synonyms for nestled", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle"]}, {"answer": "net", "hint": "synonyms for net", "clues": ["nett", "sack", "sack up", "web", "clear"]}, {"answer": "netted", "hint": "synonyms for netted", "clues": ["nett", "sack", "sack up", "web", "clear", "netted"]}, {"answer": "nettled", "hint": "synonyms for nettled", "clues": ["urticate", "annoy", "devil", "nark", "gravel", "chafe", "vex", "rile", "get at", "get to", "nettle", "irritate", "rag", "bother"]}, {"answer": "neutered", "hint": "synonyms for neutered", "clues": ["spay", "neuter", "alter", "castrate"]}, {"answer": "neutralised", "hint": "synonyms for neutralised", "clues": ["nullify", "neutralise", "do in", "liquidate", "knock off", "waste", "negate"]}, {"answer": "neutralized", "hint": "synonyms for neutralized", "clues": ["nullify", "countervail", "neutralise", "do in", "liquidate", "counteract", "counterbalance", "knock off", "waste", "negate"]}, {"answer": "niggling", "hint": "synonyms for niggling", "clues": ["niggle", "fret", "fuss", "squabble", "pettifog", "brabble", "quibble", "bicker", "niggling"]}, {"answer": "nipping", "hint": "synonyms for nipping", "clues": ["clip", "twitch", "twinge", "snip", "snip off", "tweet", "squeeze", "pinch", "nipping"]}, {"answer": "nominated", "hint": "synonyms for nominated", "clues": ["put forward", "make", "propose", "put up", "nominate", "name", "appoint", "constitute"]}, {"answer": "nonplused", "hint": "synonyms for nonplused", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "nonplussed", "hint": "synonyms for nonplussed", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify", "nonplussed"]}, {"answer": "nosed", "hint": "synonyms for nosed", "clues": ["nuzzle", "pry", "wind", "horn in", "nose", "intrude", "scent", "poke"]}, {"answer": "noted", "hint": "synonyms for noted", "clues": ["take note", "note", "take down", "mention", "observe", "notice", "remark", "mark"]}, {"answer": "noticed", "hint": "synonyms for noticed", "clues": ["note", "acknowledge", "comment", "notice", "discover", "observe", "remark", "mark", "point out", "find", "detect"]}, {"answer": "nourished", "hint": "synonyms for nourished", "clues": ["nourish", "sustain", "nurture", "aliment", "nutrify"]}, {"answer": "nourishing", "hint": "synonyms for nourishing", "clues": ["nourish", "sustain", "nurture", "aliment", "nutrify"]}, {"answer": "nullified", "hint": "synonyms for nullified", "clues": ["invalidate", "avoid", "nullify", "quash", "neutralise", "annul", "negate", "nullified"]}, {"answer": "numbing", "hint": "synonyms for numbing", "clues": ["benumb", "dull", "blunt", "numb"]}, {"answer": "nursed", "hint": "synonyms for nursed", "clues": ["nurse", "harbor", "suckle", "entertain", "breastfeed", "wet-nurse", "give suck", "suck", "hold", "lactate"]}, {"answer": "obligate", "hint": "synonyms for obligate", "clues": ["bind", "oblige", "hold", "compel"]}, {"answer": "obligated", "hint": "synonyms for obligated", "clues": ["bind", "obligate", "hold", "compel"]}, {"answer": "obliged", "hint": "synonyms for obliged", "clues": ["bind", "obligate", "accommodate", "hold", "compel", "obliged"]}, {"answer": "obliging", "hint": "synonyms for obliging", "clues": ["bind", "obligate", "accommodate", "hold", "compel", "obliging"]}, {"answer": "obliterate", "hint": "synonyms for obliterate", "clues": ["kill", "hide", "veil", "wipe out", "efface", "obscure", "blot out", "obliterate"]}, {"answer": "obliterated", "hint": "synonyms for obliterated", "clues": ["kill", "hide", "obliterate", "blot out", "efface", "veil", "wipe out", "obscure"]}, {"answer": "obscure", "hint": "synonyms for obscure", "clues": ["cloud", "hide", "haze over", "confuse", "obliterate", "fog", "obnubilate", "overcloud", "blot out", "bedim", "blur", "veil", "mist", "befog", "becloud", "obscure"]}, {"answer": "observed", "hint": "synonyms for observed", "clues": ["respect", "abide by", "keep", "honor", "watch", "notice", "observe", "remark", "celebrate", "take note", "follow", "keep an eye on", "note", "mention", "watch over", "discover", "maintain", "find", "detect"]}, {"answer": "observing", "hint": "synonyms for observing", "clues": ["respect", "abide by", "keep", "honor", "watch", "notice", "observe", "remark", "celebrate", "take note", "follow", "keep an eye on", "note", "mention", "watch over", "discover", "maintain", "find", "detect", "observing"]}, {"answer": "obstructed", "hint": "synonyms for obstructed", "clues": ["stymy", "stymie", "block", "close up", "impede", "embarrass", "blockade", "hinder", "jam", "obstruct", "occlude", "obturate"]}, {"answer": "obviating", "hint": "synonyms for obviating", "clues": ["avoid", "stave off", "forfend", "avert", "ward off", "head off", "rid of", "obviate", "deflect", "fend off", "debar", "eliminate", "obviating"]}, {"answer": "occluded", "hint": "synonyms for occluded", "clues": ["jam", "obstruct", "occlude", "block", "close up", "obturate", "impede"]}, {"answer": "occupied", "hint": "synonyms for occupied", "clues": ["invade", "absorb", "take", "engage", "use up", "worry", "engross", "fill", "occupy", "concern", "interest", "busy", "reside", "lodge in", "occupied"]}, {"answer": "off", "hint": "synonyms for off", "clues": ["polish off", "remove", "bump off", "hit", "murder", "slay", "dispatch", "off"]}, {"answer": "offended", "hint": "synonyms for offended", "clues": ["breach", "infract", "shock", "outrage", "violate", "injure", "appal", "scandalize", "transgress", "break", "spite", "offend", "wound", "hurt", "bruise", "go against", "pique"]}, {"answer": "offending", "hint": "synonyms for offending", "clues": ["breach", "infract", "shock", "outrage", "violate", "injure", "appal", "scandalize", "transgress", "break", "spite", "offend", "wound", "hurt", "bruise", "go against", "pique"]}, {"answer": "oiled", "hint": "synonyms for oiled", "clues": ["anele", "embrocate", "inunct", "oil", "anoint", "oiled"]}, {"answer": "oozing", "hint": "synonyms for oozing", "clues": ["seep", "exude", "ooze out", "ooze", "exudate", "transude", "oozing"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["give", "open up", "afford", "unfold", "spread out", "spread", "open"]}, {"answer": "opened", "hint": "synonyms for opened", "clues": ["give", "open up", "afford", "unfold", "open", "spread out", "spread", "opened"]}, {"answer": "opening", "hint": "synonyms for opening", "clues": ["give", "open up", "afford", "unfold", "open", "spread out", "spread"]}, {"answer": "operating", "hint": "synonyms for operating", "clues": ["control", "lock", "go", "operate", "operate on", "function", "run", "engage", "mesh", "maneuver", "work", "manoeuvre", "operating"]}, {"answer": "opposed", "hint": "synonyms for opposed", "clues": ["pit", "match", "fight", "defend", "contradict", "play off", "fight down", "react", "counterbalance", "fight back", "oppose", "controvert"]}, {"answer": "opposing", "hint": "synonyms for opposing", "clues": ["pit", "match", "fight", "defend", "contradict", "play off", "fight down", "react", "counterbalance", "fight back", "oppose", "controvert", "opposing"]}, {"answer": "oppressed", "hint": "synonyms for oppressed", "clues": ["oppress", "crush", "persecute", "suppress"]}, {"answer": "orchestrated", "hint": "synonyms for orchestrated", "clues": ["organise", "orchestrate", "mastermind", "engineer", "direct"]}, {"answer": "ordained", "hint": "synonyms for ordained", "clues": ["ordinate", "consecrate", "enact", "order", "ordain"]}, {"answer": "ordered", "hint": "synonyms for ordered", "clues": ["ordinate", "consecrate", "rank", "regularize", "enjoin", "regulate", "put", "range", "rate", "place", "prescribe", "govern", "arrange", "say", "order", "tell", "set up", "grade", "ordain", "dictate", "ordered"]}, {"answer": "organised", "hint": "synonyms for organised", "clues": ["organise", "orchestrate", "form", "devise", "get up", "direct", "machinate", "coordinate", "unionize", "mastermind", "prepare", "engineer"]}, {"answer": "organized", "hint": "synonyms for organized", "clues": ["organise", "orchestrate", "form", "devise", "machinate", "unionise", "coordinate", "mastermind", "engineer", "direct", "prepare", "get up", "organized"]}, {"answer": "oriented", "hint": "synonyms for oriented", "clues": ["orient", "point", "tailor", "orientate"]}, {"answer": "orienting", "hint": "synonyms for orienting", "clues": ["orient", "point", "tailor", "orientate"]}, {"answer": "oscillating", "hint": "synonyms for oscillating", "clues": ["oscillate", "vibrate", "hover", "vacillate", "oscillating"]}, {"answer": "outfitted", "hint": "synonyms for outfitted", "clues": ["fit out", "equip", "outfit", "fit", "outfitted"]}, {"answer": "outgoing", "hint": "synonyms for outgoing", "clues": ["surpass", "outdo", "outstrip", "surmount", "exceed", "outmatch", "outperform", "outgo"]}, {"answer": "outlined", "hint": "synonyms for outlined", "clues": ["delineate", "limn", "sketch", "adumbrate", "outline", "draft"]}, {"answer": "outraged", "hint": "synonyms for outraged", "clues": ["appall", "rape", "offend", "shock", "assault", "dishonour", "scandalise", "outrage", "violate", "desecrate", "ravish", "profane"]}, {"answer": "overdressed", "hint": "synonyms for overdressed", "clues": ["fig up", "deck up", "tog up", "attire", "overdress", "deck out", "dress up", "overclothe", "trick out", "fig out", "fancy up", "tog out", "gussy up", "prink", "trick up", "get up"]}, {"answer": "overflowing", "hint": "synonyms for overflowing", "clues": ["run over", "well over", "brim over", "overflow", "spill over", "overrun", "bubble over"]}, {"answer": "overloaded", "hint": "synonyms for overloaded", "clues": ["overcharge", "clog", "surcharge", "overload"]}, {"answer": "overlooked", "hint": "synonyms for overlooked", "clues": ["miss", "dominate", "overtop", "drop", "overleap", "command", "pretermit", "leave out", "neglect", "overlook", "look out on", "look across", "omit", "look out over"]}, {"answer": "overlooking", "hint": "synonyms for overlooking", "clues": ["miss", "dominate", "overtop", "drop", "overleap", "command", "pretermit", "leave out", "neglect", "overlook", "look out on", "look across", "omit", "look out over"]}, {"answer": "overpowering", "hint": "synonyms for overpowering", "clues": ["overtake", "overcome", "sweep over", "overpower", "overmaster", "overwhelm", "whelm"]}, {"answer": "overreaching", "hint": "synonyms for overreaching", "clues": ["circumvent", "overreach", "outwit", "outfox", "beat", "outsmart"]}, {"answer": "overriding", "hint": "synonyms for overriding", "clues": ["override", "overthrow", "overrule", "reverse", "overturn", "overriding"]}, {"answer": "overstated", "hint": "synonyms for overstated", "clues": ["amplify", "exaggerate", "hyperbolize", "magnify", "overdraw", "overstate"]}, {"answer": "overturned", "hint": "synonyms for overturned", "clues": ["countermand", "tump over", "revolutionize", "subvert", "revoke", "annul", "tip over", "lift", "bowl over", "turn over", "knock over", "bring down", "reverse", "overturn", "vacate", "rescind", "repeal", "overthrow", "upset", "overrule", "override"]}, {"answer": "overwhelming", "hint": "synonyms for overwhelming", "clues": ["deluge", "overwhelm", "flood out", "overcome", "sweep over", "submerge", "drown", "overpower", "overtake", "whelm", "overmaster"]}, {"answer": "packed", "hint": "synonyms for packed", "clues": ["load down", "bundle", "compact", "pack", "mob", "take", "backpack", "pile", "wad", "jam", "tamp", "carry", "throng", "tamp down", "packed"]}, {"answer": "padded", "hint": "synonyms for padded", "clues": ["plod", "dramatize", "aggrandise", "lard", "trudge", "fill out", "bolster", "blow up", "slog", "tramp", "embellish", "footslog", "pad", "embroider", "padded"]}, {"answer": "paid", "hint": "synonyms for paid", "clues": ["make up", "compensate", "pay up", "pay off", "bear", "devote", "give", "pay", "ante up", "yield", "paid"]}, {"answer": "pained", "hint": "synonyms for pained", "clues": ["trouble", "anguish", "hurt", "ail", "pain", "pained"]}, {"answer": "paired", "hint": "synonyms for paired", "clues": ["copulate", "mate", "pair", "match", "pair off", "geminate", "twin", "couple", "partner off", "paired"]}, {"answer": "palpitating", "hint": "synonyms for palpitating", "clues": ["flutter", "quiver", "palpitate", "quake", "palpitating"]}, {"answer": "pampering", "hint": "synonyms for pampering", "clues": ["baby", "cocker", "pamper", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle"]}, {"answer": "parented", "hint": "synonyms for parented", "clues": ["parent", "nurture", "raise", "rear", "bring up"]}, {"answer": "parted", "hint": "synonyms for parted", "clues": ["break", "set off", "disunite", "break up", "start", "depart", "start out", "divide", "set forth", "set out", "take off", "split up", "separate", "part", "split", "parted"]}, {"answer": "pass", "hint": "synonyms for pass", "clues": ["lapse", "travel by", "decease", "surpass", "guide", "occur", "go", "evanesce", "overstep", "sink", "top", "take place", "slip by", "clear", "authorize", "choke", "make it", "cash in one's chips", "hand", "return", "perish", "expire", "make pass", "pass on", "fall", "transcend", "give-up the ghost", "communicate", "kick the bucket", "pop off", "drop dead", "exit", "go by", "go along", "reach", "extend", "come about", "conk", "die", "glide by", "pass along", "pass by", "draw", "legislate", "buy the farm", "happen", "pass off", "blow over", "go past", "go through", "snuff it", "egest", "spend", "slip away", "excrete", "overtake", "fleet", "hap", "devolve", "overhaul", "fall out", "croak", "give", "run", "exceed", "go on", "fade", "pass away", "lead", "turn over", "go across", "put across", "eliminate", "pass"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["surpass", "guide", "sink", "go", "top", "authorize", "clear", "choke", "hand", "return", "fall", "give-up the ghost", "communicate", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass along", "pass by", "blow over", "snuff it", "go through", "spend", "excrete", "fleet", "croak", "elapse", "run", "exceed", "lead", "go on", "fade", "die", "cash in one's chips", "put across", "eliminate", "travel by", "decease", "evanesce", "occur", "overstep", "take place", "slip by", "make it", "perish", "expire", "make pass", "pass on", "transcend", "go by", "go along", "reach", "extend", "come about", "glide by", "draw", "legislate", "buy the farm", "happen", "pass off", "egest", "go past", "slip away", "overtake", "hap", "devolve", "overhaul", "fall out", "give", "pass away", "pass", "turn over", "go across"]}, {"answer": "patronised", "hint": "synonyms for patronised", "clues": ["support", "patronise", "condescend", "shop at", "buy at", "frequent", "patronage", "keep going", "sponsor", "shop"]}, {"answer": "patronising", "hint": "synonyms for patronising", "clues": ["support", "patronise", "condescend", "shop at", "buy at", "frequent", "patronage", "keep going", "sponsor", "shop", "patronising"]}, {"answer": "patronized", "hint": "synonyms for patronized", "clues": ["support", "patronise", "condescend", "shop at", "buy at", "shop", "frequent", "patronage", "keep going", "sponsor", "patronized"]}, {"answer": "patronizing", "hint": "synonyms for patronizing", "clues": ["support", "patronise", "condescend", "shop at", "buy at", "shop", "frequent", "patronage", "keep going", "sponsor", "patronizing"]}, {"answer": "paying", "hint": "synonyms for paying", "clues": ["make up", "compensate", "pay up", "pay off", "bear", "devote", "give", "pay", "ante up", "yield"]}, {"answer": "pedal", "hint": "synonyms for pedal", "clues": ["bicycle", "bike", "cycle", "wheel", "pedal"]}, {"answer": "peeled", "hint": "synonyms for peeled", "clues": ["flake off", "pare", "skin", "flake", "discase", "strip down", "uncase", "strip", "peel off", "unclothe", "disrobe", "undress", "peel", "peeled"]}, {"answer": "penetrating", "hint": "synonyms for penetrating", "clues": ["get across", "fall into place", "sink in", "permeate", "get through", "penetrate", "perforate", "bottom", "dawn", "diffuse", "imbue", "pervade", "click", "infiltrate", "interpenetrate", "come home", "fathom", "riddle", "penetrating"]}, {"answer": "pent", "hint": "synonyms for pent", "clues": ["indite", "pen", "compose", "write"]}, {"answer": "permeating", "hint": "synonyms for permeating", "clues": ["percolate", "diffuse", "imbue", "sink in", "pervade", "permeate", "interpenetrate", "penetrate", "riddle", "filter", "permeating"]}, {"answer": "perplexed", "hint": "synonyms for perplexed", "clues": ["stupefy", "complicate", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "perplexing", "hint": "synonyms for perplexing", "clues": ["stupefy", "complicate", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "persevering", "hint": "synonyms for persevering", "clues": ["persevere", "hold on", "hang in", "persist", "persevering"]}, {"answer": "persisting", "hint": "synonyms for persisting", "clues": ["stay", "hang in", "endure", "run", "die hard", "remain", "prevail", "persevere", "hold on", "persist"]}, {"answer": "perturbed", "hint": "synonyms for perturbed", "clues": ["cark", "disquiet", "unhinge", "distract", "disorder", "perturb", "trouble", "derange", "throw out of kilter"]}, {"answer": "perturbing", "hint": "synonyms for perturbing", "clues": ["cark", "disquiet", "unhinge", "distract", "disorder", "perturb", "trouble", "derange", "throw out of kilter"]}, {"answer": "perverted", "hint": "synonyms for perverted", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "sophisticate", "misuse", "profane", "corrupt", "deprave", "convolute", "demoralise", "twist around", "abuse", "debauch", "twist"]}, {"answer": "pestered", "hint": "synonyms for pestered", "clues": ["badger", "beleaguer", "tease", "bug", "pester"]}, {"answer": "pestering", "hint": "synonyms for pestering", "clues": ["badger", "beleaguer", "tease", "bug", "pester"]}, {"answer": "petrifying", "hint": "synonyms for petrifying", "clues": ["petrify", "ossify", "lapidify", "rigidify"]}, {"answer": "pictured", "hint": "synonyms for pictured", "clues": ["figure", "image", "visualise", "picture", "fancy", "depict", "show", "envision", "see", "project", "render"]}, {"answer": "piddling", "hint": "synonyms for piddling", "clues": ["piddle away", "make water", "pee", "wanton", "urinate", "trifle", "relieve oneself", "wee", "puddle", "make", "wee-wee", "pass water", "pee-pee", "take a leak", "wanton away", "micturate", "spend a penny", "piddle", "piss", "piddling"]}, {"answer": "piffling", "hint": "synonyms for piffling", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle", "piffling"]}, {"answer": "pillaged", "hint": "synonyms for pillaged", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "pinched", "hint": "synonyms for pinched", "clues": ["abstract", "twitch", "top", "filch", "hook", "squeeze", "pinch", "sneak", "lift", "swipe", "twinge", "nobble", "crimp", "pilfer", "vellicate", "tweet", "purloin", "cabbage", "snarf", "nip", "pinched"]}, {"answer": "pink", "hint": "synonyms for pink", "clues": ["ping", "rap", "knock", "tap", "pink"]}, {"answer": "pissed", "hint": "synonyms for pissed", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "pissed"]}, {"answer": "pitched", "hint": "synonyms for pitched", "clues": ["slant", "vend", "toss", "monger", "gear", "shift", "tilt", "hawk", "peddle", "lurch", "huckster", "deliver", "cant over", "incline", "set up", "cant", "flip", "sky", "pitch", "slope", "pitched"]}, {"answer": "pitted", "hint": "synonyms for pitted", "clues": ["pit", "match", "stone", "play off", "scar", "mark", "pock", "oppose", "pitted"]}, {"answer": "placating", "hint": "synonyms for placating", "clues": ["gentle", "appease", "gruntle", "mollify", "placate", "pacify", "assuage", "lenify", "conciliate", "placating"]}, {"answer": "placed", "hint": "synonyms for placed", "clues": ["post", "aim", "station", "rank", "commit", "put", "range", "point", "come out", "direct", "pose", "set", "target", "localise", "lay", "rate", "site", "identify", "place", "send", "order", "locate", "come in", "grade", "position", "invest"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["kick", "kvetch", "quetch", "sound off", "complain", "plain"]}, {"answer": "planned", "hint": "synonyms for planned", "clues": ["be after", "contrive", "project", "plan", "design", "planned"]}, {"answer": "planted", "hint": "synonyms for planted", "clues": ["plant", "imbed", "institute", "engraft", "found", "embed", "set", "establish", "implant", "constitute", "planted"]}, {"answer": "plastered", "hint": "synonyms for plastered", "clues": ["daub", "beplaster", "stick on", "poultice", "plaster over", "plastered"]}, {"answer": "played", "hint": "synonyms for played", "clues": ["take on", "encounter", "diddle", "act as", "make for", "wager", "bring", "recreate", "wreak", "trifle", "bet", "playact", "roleplay", "spiel", "act", "meet", "flirt", "represent", "run", "dally", "fiddle", "work", "toy", "play", "played"]}, {"answer": "pledged", "hint": "synonyms for pledged", "clues": ["wassail", "plight", "subscribe", "pledge", "toast", "drink", "salute"]}, {"answer": "plodding", "hint": "synonyms for plodding", "clues": ["plod", "tramp", "footslog", "trudge", "pad", "slog", "plodding"]}, {"answer": "plowed", "hint": "synonyms for plowed", "clues": ["address", "treat", "deal", "turn", "plow", "plough", "cover", "handle", "plowed"]}, {"answer": "plucked", "hint": "synonyms for plucked", "clues": ["cull", "hustle", "fleece", "pull off", "plunk", "gazump", "tweak", "hook", "roll", "deplume", "tear", "soak", "plume", "pluck", "rob", "pick", "pull", "overcharge", "displume", "surcharge", "pick off", "plucked"]}, {"answer": "plugged", "hint": "synonyms for plugged", "clues": ["stop up", "plug", "plug away", "secure", "punch", "plugged"]}, {"answer": "plumed", "hint": "synonyms for plumed", "clues": ["preen", "soak", "plume", "primp", "fleece", "pluck", "congratulate", "pride", "rob", "overcharge", "gazump", "surcharge", "dress", "hook"]}, {"answer": "plump", "hint": "synonyms for plump", "clues": ["fatten out", "fatten", "flump", "plunk down", "fill out", "go", "plonk", "plop", "plunk", "fat", "fatten up", "plump down", "flesh out", "plump out", "plummet", "plank", "plump"]}, {"answer": "plumping", "hint": "synonyms for plumping", "clues": ["plump", "fatten out", "fatten", "flump", "plunk down", "fill out", "go", "plonk", "plop", "plunk", "fat", "fatten up", "plump down", "flesh out", "plump out", "plummet", "plank"]}, {"answer": "plundered", "hint": "synonyms for plundered", "clues": ["sack", "despoil", "rifle", "spoil", "foray", "rape", "pillage", "plunder", "ransack", "violate", "strip", "loot", "reave"]}, {"answer": "plundering", "hint": "synonyms for plundering", "clues": ["sack", "despoil", "rifle", "spoil", "foray", "rape", "pillage", "plunder", "ransack", "violate", "strip", "loot", "reave"]}, {"answer": "pocked", "hint": "synonyms for pocked", "clues": ["pit", "scar", "mark", "pock", "pocked"]}, {"answer": "pointed", "hint": "synonyms for pointed", "clues": ["betoken", "guide", "channelize", "steer", "aim", "repoint", "show", "head", "maneuver", "point", "charge", "direct", "taper", "designate", "target", "orient", "place", "luff", "level", "bespeak", "indicate", "sharpen", "manoeuvre", "signal", "pointed"]}, {"answer": "polish", "hint": "synonyms for polish", "clues": ["round", "round off", "shine", "fine-tune", "down", "smooth", "refine", "brush up", "polish up", "polish"]}, {"answer": "polished", "hint": "synonyms for polished", "clues": ["round", "round off", "shine", "fine-tune", "down", "polish", "smooth", "refine", "brush up", "polish up"]}, {"answer": "pondering", "hint": "synonyms for pondering", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "think over", "ruminate", "chew over", "excogitate"]}, {"answer": "pop", "hint": "synonyms for pop", "clues": ["kill", "drink down", "pour down", "start", "bulge out", "crop up", "pop up", "down", "toss off", "bolt down", "come out", "bulge", "protrude", "pop out", "pop"]}, {"answer": "populated", "hint": "synonyms for populated", "clues": ["live", "dwell", "inhabit", "populate"]}, {"answer": "portrayed", "hint": "synonyms for portrayed", "clues": ["portray", "limn", "impersonate", "depict", "present"]}, {"answer": "posed", "hint": "synonyms for posed", "clues": ["stupefy", "model", "flummox", "gravel", "amaze", "nonplus", "put", "puzzle", "impersonate", "get", "pose", "perplex", "set", "posture", "baffle", "dumbfound", "beat", "lay", "sit", "place", "vex", "bewilder", "position", "present", "stick", "mystify"]}, {"answer": "positioning", "hint": "synonyms for positioning", "clues": ["lay", "place", "put", "position", "pose", "set"]}, {"answer": "posted", "hint": "synonyms for posted", "clues": ["send", "post", "place", "station", "put up", "mail", "stake", "carry", "brand", "posted"]}, {"answer": "pouring", "hint": "synonyms for pouring", "clues": ["rain buckets", "swarm", "pullulate", "teem", "pelt", "decant", "stream", "pour out", "pour", "rain cats and dogs"]}, {"answer": "practiced", "hint": "synonyms for practiced", "clues": ["practise", "drill", "exercise", "use", "rehearse", "commit", "do", "apply", "practiced"]}, {"answer": "practised", "hint": "synonyms for practised", "clues": ["practise", "drill", "exercise", "rehearse", "do"]}, {"answer": "preceding", "hint": "synonyms for preceding", "clues": ["predate", "antecede", "antedate", "preface", "lead", "introduce", "premise", "forego", "precede", "come before", "preceding"]}, {"answer": "predominate", "hint": "synonyms for predominate", "clues": ["rule", "dominate", "tower", "prevail", "hulk", "reign", "loom", "predominate"]}, {"answer": "preferred", "hint": "synonyms for preferred", "clues": ["choose", "favor", "opt", "prefer", "preferred"]}, {"answer": "prepared", "hint": "synonyms for prepared", "clues": ["organise", "train", "devise", "fix", "ready", "set", "make", "educate", "groom", "machinate", "gear up", "set up", "develop", "cook", "prepare", "get up"]}, {"answer": "preponderating", "hint": "synonyms for preponderating", "clues": ["outbalance", "preponderate", "overbalance", "outweigh", "preponderating"]}, {"answer": "present", "hint": "synonyms for present", "clues": ["acquaint", "show", "exhibit", "face", "submit", "award", "pose", "portray", "confront", "demonstrate", "lay out", "deliver", "give", "represent", "demo", "gift", "stage", "introduce", "salute"]}, {"answer": "preserved", "hint": "synonyms for preserved", "clues": ["carry on", "continue", "keep up", "keep", "preserve", "uphold", "conserve", "bear on", "maintain", "save"]}, {"answer": "pressed", "hint": "synonyms for pressed", "clues": ["weight-lift", "press out", "compact", "press", "iron out", "conjure", "agitate", "urge on", "bid", "urge", "squeeze", "campaign", "push", "beseech", "iron", "compress", "fight", "adjure", "entreat", "exhort", "crusade", "weigh", "contract", "constrict", "pressed"]}, {"answer": "pressing", "hint": "synonyms for pressing", "clues": ["weight-lift", "press out", "compact", "press", "iron out", "conjure", "agitate", "urge on", "bid", "urge", "squeeze", "campaign", "push", "beseech", "iron", "compress", "fight", "adjure", "entreat", "exhort", "crusade", "weigh", "contract", "constrict"]}, {"answer": "pretend", "hint": "synonyms for pretend", "clues": ["make believe", "make", "act", "hazard", "profess", "guess", "sham", "dissemble", "venture", "affect", "feign", "pretend"]}, {"answer": "pretended", "hint": "synonyms for pretended", "clues": ["make believe", "make", "act", "hazard", "profess", "sham", "guess", "dissemble", "venture", "affect", "pretend", "feign"]}, {"answer": "prevailing", "hint": "synonyms for prevailing", "clues": ["dominate", "reign", "endure", "predominate", "run", "die hard", "rule", "obtain", "prevail", "hold", "persist", "triumph"]}, {"answer": "primed", "hint": "synonyms for primed", "clues": ["ground", "undercoat", "prime", "prim out", "prim up"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["value", "respect", "treasure", "pry", "lever", "jimmy", "appreciate", "esteem", "prise", "prize"]}, {"answer": "probing", "hint": "synonyms for probing", "clues": ["examine", "dig into", "probe", "poke into", "probing"]}, {"answer": "processed", "hint": "synonyms for processed", "clues": ["march", "treat", "litigate", "sue", "work on", "process", "swear out", "work", "serve", "action"]}, {"answer": "proclaimed", "hint": "synonyms for proclaimed", "clues": ["proclaim", "promulgate", "exalt", "glorify", "predicate", "laud", "exclaim", "extol"]}, {"answer": "profane", "hint": "synonyms for profane", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "outrage", "violate", "desecrate", "corrupt", "deprave", "demoralise", "debauch", "profane"]}, {"answer": "profaned", "hint": "synonyms for profaned", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "outrage", "profane", "desecrate", "corrupt", "deprave", "violate", "demoralise", "debauch"]}, {"answer": "professed", "hint": "synonyms for professed", "clues": ["confess", "concede", "profess", "pretend"]}, {"answer": "prohibited", "hint": "synonyms for prohibited", "clues": ["interdict", "veto", "prohibit", "disallow", "nix", "forbid", "proscribe"]}, {"answer": "projected", "hint": "synonyms for projected", "clues": ["figure", "cast", "jut out", "project", "protrude", "externalize", "image", "throw", "visualise", "jut", "picture", "fancy", "send off", "propose", "envision", "contrive", "see", "plan", "design", "stick out"]}, {"answer": "projecting", "hint": "synonyms for projecting", "clues": ["figure", "cast", "jut out", "project", "protrude", "externalize", "image", "throw", "visualise", "jut", "picture", "fancy", "send off", "propose", "envision", "contrive", "see", "plan", "design", "stick out"]}, {"answer": "prolonged", "hint": "synonyms for prolonged", "clues": ["extend", "sustain", "keep up", "prolong", "protract", "draw out"]}, {"answer": "promising", "hint": "synonyms for promising", "clues": ["call", "anticipate", "assure", "foretell", "forebode", "predict", "prognosticate", "promise", "promising"]}, {"answer": "prompt", "hint": "synonyms for prompt", "clues": ["inspire", "actuate", "remind", "incite", "instigate", "motivate", "cue", "move", "propel", "prompt"]}, {"answer": "pronounced", "hint": "synonyms for pronounced", "clues": ["label", "articulate", "enunciate", "say", "enounce", "judge", "pronounce", "sound out"]}, {"answer": "propelling", "hint": "synonyms for propelling", "clues": ["prompt", "actuate", "incite", "motivate", "move", "propel", "impel", "propelling"]}, {"answer": "proscribed", "hint": "synonyms for proscribed", "clues": ["interdict", "veto", "prohibit", "disallow", "nix", "forbid", "proscribe"]}, {"answer": "prospering", "hint": "synonyms for prospering", "clues": ["flourish", "fly high", "prosper", "thrive"]}, {"answer": "protracted", "hint": "synonyms for protracted", "clues": ["prolong", "extend", "draw out", "protract"]}, {"answer": "protruding", "hint": "synonyms for protruding", "clues": ["start", "jut", "pouch", "bulge out", "pop", "bulge", "come out", "jut out", "project", "protrude", "stick out", "pop out", "protruding"]}, {"answer": "proved", "hint": "synonyms for proved", "clues": ["leaven", "show", "rise", "turn up", "test", "testify", "establish", "essay", "examine", "prove", "try out", "demonstrate", "evidence", "try", "turn out", "shew", "bear witness"]}, {"answer": "proven", "hint": "synonyms for proven", "clues": ["leaven", "show", "rise", "turn up", "test", "testify", "establish", "essay", "examine", "prove", "try out", "demonstrate", "evidence", "try", "turn out", "shew", "bear witness"]}, {"answer": "provoked", "hint": "synonyms for provoked", "clues": ["chivvy", "call forth", "arouse", "enkindle", "stimulate", "harass", "fire", "hassle", "kick up", "chevy", "elicit", "raise", "molest", "harry", "provoke", "evoke", "beset", "plague"]}, {"answer": "provoking", "hint": "synonyms for provoking", "clues": ["chivvy", "call forth", "arouse", "enkindle", "stimulate", "harass", "fire", "hassle", "kick up", "chevy", "elicit", "raise", "molest", "harry", "provoke", "evoke", "beset", "plague", "provoking"]}, {"answer": "prying", "hint": "synonyms for prying", "clues": ["pry", "lever", "jimmy", "horn in", "nose", "intrude", "poke", "prize", "prise"]}, {"answer": "publicised", "hint": "synonyms for publicised", "clues": ["advertize", "bare", "publicise", "air"]}, {"answer": "publicized", "hint": "synonyms for publicized", "clues": ["advertize", "bare", "publicise", "air", "publicized"]}, {"answer": "published", "hint": "synonyms for published", "clues": ["publish", "bring out", "print", "release", "issue", "write", "put out"]}, {"answer": "puff", "hint": "synonyms for puff", "clues": ["puff up", "draw", "puff out", "drag", "heave", "chuff", "whiff", "blow up", "pant", "gasp", "puff"]}, {"answer": "puffed", "hint": "synonyms for puffed", "clues": ["puff up", "draw", "puff out", "puff", "drag", "heave", "chuff", "whiff", "blow up", "pant", "gasp", "puffed"]}, {"answer": "pulverised", "hint": "synonyms for pulverised", "clues": ["pulverise", "powder", "powderise", "demolish"]}, {"answer": "pulverized", "hint": "synonyms for pulverized", "clues": ["pulverise", "powder", "powderise", "demolish", "pulverized"]}, {"answer": "purging", "hint": "synonyms for purging", "clues": ["retch", "sanctify", "regurgitate", "purge", "scour", "spew", "puke", "cast", "purify", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "flush", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "purging"]}, {"answer": "purifying", "hint": "synonyms for purifying", "clues": ["distill", "purify", "sublimate", "sanctify", "make pure", "purge"]}, {"answer": "pursued", "hint": "synonyms for pursued", "clues": ["act on", "follow", "follow up on", "quest for", "quest after", "engage", "go after", "prosecute", "pursue"]}, {"answer": "pursuing", "hint": "synonyms for pursuing", "clues": ["act on", "follow", "follow up on", "quest for", "quest after", "engage", "go after", "prosecute", "pursue", "pursuing"]}, {"answer": "put_on", "hint": "synonyms for put on", "clues": ["gull", "slang", "don", "put one over", "befool", "take in", "cod", "gain", "get into", "mount", "fool", "wear", "dupe", "turn in", "put one across", "apply", "assume", "put on"]}, {"answer": "puzzled", "hint": "synonyms for puzzled", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify"]}, {"answer": "puzzling", "hint": "synonyms for puzzling", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "vex", "bewilder", "stick", "mystify", "puzzling"]}, {"answer": "qualified", "hint": "synonyms for qualified", "clues": ["dispose", "characterise", "specify", "measure up", "stipulate", "modify", "qualify", "condition", "restrict", "qualified"]}, {"answer": "quavering", "hint": "synonyms for quavering", "clues": ["warble", "trill", "waver", "quaver"]}, {"answer": "queer", "hint": "synonyms for queer", "clues": ["scupper", "cross", "scotch", "spoil", "bilk", "foil", "expose", "peril", "baffle", "thwart", "endanger", "frustrate", "queer"]}, {"answer": "quelled", "hint": "synonyms for quelled", "clues": ["stay", "appease", "squelch", "quell", "quench", "quelled"]}, {"answer": "quenched", "hint": "synonyms for quenched", "clues": ["squelch", "quench", "assuage", "snuff out", "extinguish", "quell", "allay", "slake", "blow out"]}, {"answer": "questioning", "hint": "synonyms for questioning", "clues": ["interview", "interrogate", "query", "call into question", "wonder", "question", "oppugn"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["hush", "calm", "tranquillise", "quiesce", "still", "quieten", "pipe down", "calm down", "lull", "quiet down", "quiet"]}, {"answer": "quits", "hint": "synonyms for quits", "clues": ["leave office", "fall by the wayside", "drop by the wayside", "discontinue", "chuck up the sponge", "stop", "step down", "throw in the towel", "quit", "resign", "cease", "take leave", "throw in", "renounce", "foreswear", "depart", "give up", "drop out", "lay off", "relinquish"]}, {"answer": "racking", "hint": "synonyms for racking", "clues": ["scud", "single-foot", "excruciate", "wring", "gouge", "extort", "squeeze", "torment", "torture", "rack"]}, {"answer": "radiate", "hint": "synonyms for radiate", "clues": ["shine", "diversify", "beam", "glow", "ray", "radiate"]}, {"answer": "radiating", "hint": "synonyms for radiating", "clues": ["diversify", "beam", "shine", "glow", "radiate", "ray", "radiating"]}, {"answer": "ragged", "hint": "synonyms for ragged", "clues": ["call down", "chew up", "devil", "take to task", "jaw", "bait", "lecture", "torment", "frustrate", "cod", "call on the carpet", "nark", "bedevil", "vex", "lambast", "rebuke", "chafe", "tantalize", "rag", "annoy", "rally", "ride", "reproof", "crucify", "gravel", "razz", "rile", "get at", "nettle", "irritate", "taunt", "have words", "chide", "scold", "dun", "chew out", "remonstrate", "reprimand", "twit", "tease", "berate", "dress down", "trounce", "get to", "bawl out", "bother", "ragged"]}, {"answer": "raging", "hint": "synonyms for raging", "clues": ["call down", "chew up", "storm", "devil", "ramp", "take to task", "jaw", "bait", "lecture", "torment", "frustrate", "cod", "call on the carpet", "nark", "bedevil", "vex", "lambast", "rebuke", "chafe", "tantalize", "rag", "annoy", "rally", "ride", "reproof", "crucify", "gravel", "razz", "rile", "get at", "nettle", "irritate", "taunt", "have words", "chide", "scold", "dun", "chew out", "remonstrate", "reprimand", "twit", "tease", "berate", "dress down", "trounce", "get to", "bawl out", "bother"]}, {"answer": "raised", "hint": "synonyms for raised", "clues": ["call down", "call forth", "leaven", "arouse", "recruit", "rear", "farm", "invoke", "fire", "nurture", "advance", "lift", "levy", "elevate", "raise", "put up", "erect", "set up", "produce", "get up", "kick upstairs", "upraise", "parent", "upgrade", "promote", "enkindle", "conjure", "stir", "prove", "put forward", "enhance", "elicit", "grow", "bring up", "provoke", "resurrect", "conjure up", "evoke", "heighten"]}, {"answer": "raising", "hint": "synonyms for raising", "clues": ["call down", "call forth", "leaven", "arouse", "recruit", "rear", "farm", "invoke", "fire", "nurture", "advance", "lift", "levy", "elevate", "raise", "put up", "erect", "set up", "produce", "get up", "kick upstairs", "upraise", "parent", "upgrade", "promote", "enkindle", "conjure", "stir", "prove", "put forward", "enhance", "elicit", "grow", "bring up", "provoke", "resurrect", "conjure up", "evoke", "heighten", "raising"]}, {"answer": "rallying", "hint": "synonyms for rallying", "clues": ["rally", "come up", "ride", "razz", "mobilise", "bait", "summon", "taunt", "tantalise", "cod", "call up", "drum up", "beat up", "muster", "muster up", "twit", "tease", "rag", "rebound"]}, {"answer": "rambling", "hint": "synonyms for rambling", "clues": ["ramble", "stray", "vagabond", "wander", "roll", "ramble on", "drift", "tramp", "rove", "cast", "range", "swan", "roam", "jog", "rambling"]}, {"answer": "ranging", "hint": "synonyms for ranging", "clues": ["array", "stray", "straddle", "pasture", "rank", "vagabond", "tramp", "rove", "range", "cast", "roll", "graze", "browse", "rate", "ramble", "place", "crop", "lay out", "order", "run", "wander", "drift", "grade", "swan", "set out", "roam", "ranging"]}, {"answer": "rank", "hint": "synonyms for rank", "clues": ["rate", "place", "range", "grade", "order", "outrank", "rank"]}, {"answer": "ranked", "hint": "synonyms for ranked", "clues": ["rate", "place", "range", "grade", "rank", "order", "outrank", "ranked"]}, {"answer": "ranking", "hint": "synonyms for ranking", "clues": ["rate", "place", "range", "grade", "rank", "order", "outrank"]}, {"answer": "ransacked", "hint": "synonyms for ransacked", "clues": ["despoil", "rifle", "foray", "pillage", "comb", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "raped", "hint": "synonyms for raped", "clues": ["despoil", "rape", "spoil", "assault", "dishonour", "plunder", "outrage", "violate", "ravish", "knap", "knock", "tap", "pink"]}, {"answer": "rarefied", "hint": "synonyms for rarefied", "clues": ["subtilize", "sublimate", "attenuate", "rarefy", "rarefied"]}, {"answer": "ravaged", "hint": "synonyms for ravaged", "clues": ["lay waste to", "devastate", "desolate", "harry", "ravage", "scourge", "waste"]}, {"answer": "ravaging", "hint": "synonyms for ravaging", "clues": ["lay waste to", "devastate", "desolate", "harry", "ravage", "scourge", "waste", "ravaging"]}, {"answer": "ravening", "hint": "synonyms for ravening", "clues": ["predate", "prey", "devour", "guttle", "raven", "pig"]}, {"answer": "ravishing", "hint": "synonyms for ravishing", "clues": ["rape", "enthrall", "assault", "dishonour", "outrage", "enrapture", "enchant", "violate", "delight", "ravish", "transport"]}, {"answer": "razed", "hint": "synonyms for razed", "clues": ["raze", "tear down", "take down", "level", "dismantle", "rase", "pull down"]}, {"answer": "ready", "hint": "synonyms for ready", "clues": ["make", "gear up", "set up", "fix", "cook", "prepare", "set", "ready"]}, {"answer": "realised", "hint": "synonyms for realised", "clues": ["actualize", "understand", "clear", "realise", "agnise", "substantiate", "take in", "agnize", "recognise", "make", "gain", "pull in", "see", "bring in", "earn"]}, {"answer": "realized", "hint": "synonyms for realized", "clues": ["understand", "actualize", "clear", "realise", "agnise", "substantiate", "agnize", "take in", "recognise", "make", "gain", "pull in", "see", "bring in", "earn", "realized"]}, {"answer": "reanimated", "hint": "synonyms for reanimated", "clues": ["reanimate", "renovate", "revivify", "recreate", "revive", "repair", "quicken"]}, {"answer": "rear", "hint": "synonyms for rear", "clues": ["parent", "rise", "bring up", "put up", "erect", "set up", "nurture", "rise up", "lift", "rear"]}, {"answer": "rearing", "hint": "synonyms for rearing", "clues": ["parent", "rise", "rear", "bring up", "put up", "erect", "set up", "nurture", "rise up", "lift"]}, {"answer": "reasoned", "hint": "synonyms for reasoned", "clues": ["reason", "argue", "conclude", "reason out"]}, {"answer": "reasoning", "hint": "synonyms for reasoning", "clues": ["reason", "argue", "conclude", "reason out"]}, {"answer": "receding", "hint": "synonyms for receding", "clues": ["lose", "retreat", "drop off", "move back", "retire", "withdraw", "pull back", "fall back", "recede", "draw back", "fall behind", "pull away", "receding"]}, {"answer": "received", "hint": "synonyms for received", "clues": ["invite", "encounter", "meet", "have", "welcome", "incur", "pick up", "obtain", "experience", "get", "take in", "receive", "find"]}, {"answer": "reclaimed", "hint": "synonyms for reclaimed", "clues": ["domesticate", "rectify", "tame", "recover", "repossess", "reclaim", "reform", "regenerate", "domesticise"]}, {"answer": "recognised", "hint": "synonyms for recognised", "clues": ["greet", "spot", "acknowledge", "pick out", "realise", "make out", "agnise", "discern", "distinguish", "agnize", "recognise", "tell apart", "know", "accredit"]}, {"answer": "recognized", "hint": "synonyms for recognized", "clues": ["greet", "spot", "acknowledge", "realise", "agnise", "pick out", "make out", "discern", "distinguish", "agnize", "recognise", "know", "tell apart", "accredit", "recognized"]}, {"answer": "reconciled", "hint": "synonyms for reconciled", "clues": ["make up", "accommodate", "reconcile", "submit", "harmonize", "settle", "resign", "patch up", "conciliate"]}, {"answer": "reconciling", "hint": "synonyms for reconciling", "clues": ["make up", "accommodate", "reconcile", "submit", "harmonize", "settle", "resign", "patch up", "conciliate", "reconciling"]}, {"answer": "reconstructed", "hint": "synonyms for reconstructed", "clues": ["reconstruct", "restore", "redo", "remodel", "retrace", "rebuild"]}, {"answer": "recorded", "hint": "synonyms for recorded", "clues": ["immortalise", "read", "put down", "register", "show", "enter", "tape", "memorialise", "record", "commemorate"]}, {"answer": "recovered", "hint": "synonyms for recovered", "clues": ["retrieve", "recover", "go back", "reclaim", "convalesce", "recoup", "recuperate", "find", "regain"]}, {"answer": "recovering", "hint": "synonyms for recovering", "clues": ["retrieve", "recover", "go back", "reclaim", "convalesce", "recoup", "recuperate", "find", "regain"]}, {"answer": "rectified", "hint": "synonyms for rectified", "clues": ["remedy", "right", "rectify", "amend", "correct", "remediate", "reclaim", "refine", "reform", "regenerate", "repair", "rectified"]}, {"answer": "recurring", "hint": "synonyms for recurring", "clues": ["fall back", "resort", "repeat", "go back", "recur", "recurring"]}, {"answer": "reddened", "hint": "synonyms for reddened", "clues": ["blush", "crimson", "redden", "flush"]}, {"answer": "redeemed", "hint": "synonyms for redeemed", "clues": ["ransom", "redeem", "pay off", "deliver", "save"]}, {"answer": "redeeming", "hint": "synonyms for redeeming", "clues": ["ransom", "redeem", "pay off", "deliver", "save"]}, {"answer": "reduced", "hint": "synonyms for reduced", "clues": ["scale down", "deoxidize", "abridge", "dilute", "quash", "thin out", "slenderize", "trim down", "shrink", "cut down", "trim back", "foreshorten", "come down", "subdue", "shorten", "subjugate", "boil down", "repress", "cut back", "abbreviate", "thin", "slim down", "trim", "tighten", "bring down", "melt off", "lose weight", "reduce", "keep down", "cut", "contract", "slim", "decoct", "concentrate"]}, {"answer": "reeking", "hint": "synonyms for reeking", "clues": ["smell", "smack", "reek", "stink", "fume"]}, {"answer": "refined", "hint": "synonyms for refined", "clues": ["rectify", "complicate", "elaborate", "rarify", "fine-tune", "down", "polish", "refine"]}, {"answer": "reflected", "hint": "synonyms for reflected", "clues": ["muse", "reflect", "meditate", "shine", "ponder", "contemplate", "mull", "speculate", "mull over", "reverberate", "think over", "ruminate", "chew over", "excogitate"]}, {"answer": "reflecting", "hint": "synonyms for reflecting", "clues": ["muse", "reflect", "meditate", "shine", "ponder", "contemplate", "mull", "speculate", "mull over", "reverberate", "think over", "ruminate", "chew over", "excogitate"]}, {"answer": "reformed", "hint": "synonyms for reformed", "clues": ["reclaim", "reform", "see the light", "rectify", "straighten out", "regenerate"]}, {"answer": "refreshed", "hint": "synonyms for refreshed", "clues": ["freshen up", "refreshen", "brush up", "review"]}, {"answer": "refreshing", "hint": "synonyms for refreshing", "clues": ["freshen up", "refreshen", "brush up", "review", "refreshing"]}, {"answer": "regenerate", "hint": "synonyms for regenerate", "clues": ["reclaim", "reform", "rectify", "renew", "restore", "revitalize", "rejuvenate", "regenerate"]}, {"answer": "regenerating", "hint": "synonyms for regenerating", "clues": ["rectify", "regenerate", "rejuvenate", "reclaim", "reform", "renew", "restore", "revitalize", "regenerating"]}, {"answer": "registered", "hint": "synonyms for registered", "clues": ["read", "record", "register", "cross-file", "show", "file"]}, {"answer": "regulated", "hint": "synonyms for regulated", "clues": ["determine", "govern", "regularize", "order", "regulate", "influence", "shape", "baffle", "modulate", "mold"]}, {"answer": "reigning", "hint": "synonyms for reigning", "clues": ["rule", "dominate", "prevail", "reign", "predominate"]}, {"answer": "rejected", "hint": "synonyms for rejected", "clues": ["turn down", "decline", "turn away", "resist", "freeze off", "pass up", "disapprove", "rule out", "reject", "pooh-pooh", "disdain", "spurn", "winnow out", "scorn", "refuse", "eliminate"]}, {"answer": "rejoicing", "hint": "synonyms for rejoicing", "clues": ["joy", "exult", "jubilate", "exuberate", "wallow", "rejoice", "triumph", "rejoicing"]}, {"answer": "related", "hint": "synonyms for related", "clues": ["link", "relate", "connect", "touch", "interrelate", "concern", "tie in", "refer", "touch on", "associate", "link up", "have-to doe with", "pertain", "come to", "colligate", "bear on"]}, {"answer": "relaxed", "hint": "synonyms for relaxed", "clues": ["unstrain", "unwind", "loosen", "decompress", "unbend", "slacken", "unlax", "slack", "relax", "make relaxed", "loosen up", "slow down", "slack up", "relaxed"]}, {"answer": "relaxing", "hint": "synonyms for relaxing", "clues": ["unstrain", "unwind", "loosen", "decompress", "unbend", "slacken", "unlax", "slack", "relax", "make relaxed", "loosen up", "slow down", "slack up"]}, {"answer": "releasing", "hint": "synonyms for releasing", "clues": ["unfreeze", "unloosen", "loose", "exhaust", "discharge", "put out", "issue", "publish", "turn", "resign", "unblock", "free", "release", "give up", "let go", "let go of", "eject", "expel", "relinquish", "bring out", "secrete", "liberate", "releasing"]}, {"answer": "relieved", "hint": "synonyms for relieved", "clues": ["palliate", "ease", "alleviate", "still", "take over", "assuage", "unbosom", "allay", "relieve", "remedy", "salvage", "let off", "free", "lighten", "excuse", "exempt", "salve"]}, {"answer": "relinquished", "hint": "synonyms for relinquished", "clues": ["renounce", "foreswear", "dispense with", "waive", "free", "release", "give up", "let go", "let go of", "quit", "resign", "relinquish", "forego"]}, {"answer": "remaining", "hint": "synonyms for remaining", "clues": ["stay", "continue", "remain", "stay on", "persist", "rest"]}, {"answer": "removed", "hint": "synonyms for removed", "clues": ["take away", "remove", "get rid of", "absent", "bump off", "hit", "polish off", "off", "withdraw", "take", "transfer", "move out", "murder", "slay", "take out", "dispatch"]}, {"answer": "rending", "hint": "synonyms for rending", "clues": ["pull", "rive", "rend", "rip"]}, {"answer": "repeated", "hint": "synonyms for repeated", "clues": ["ingeminate", "replicate", "restate", "recapitulate", "iterate", "take over", "reprise", "retell", "duplicate", "repeat", "double", "echo", "recur"]}, {"answer": "repelling", "hint": "synonyms for repelling", "clues": ["force back", "drive back", "repel", "disgust", "rebuff", "fight off", "beat back", "revolt", "drive", "gross out", "repulse", "push back", "snub", "repelling"]}, {"answer": "reported", "hint": "synonyms for reported", "clues": ["account", "cover", "report", "describe"]}, {"answer": "represented", "hint": "synonyms for represented", "clues": ["map", "stand for", "symbolize", "exemplify", "be", "constitute", "make up", "act", "defend", "lay out", "correspond", "typify", "interpret", "represent", "comprise", "play", "stage"]}, {"answer": "repressed", "hint": "synonyms for repressed", "clues": ["quash", "reduce", "keep down", "smother", "suppress", "stifle", "subdue", "subjugate", "repress", "strangle", "muffle"]}, {"answer": "repressing", "hint": "synonyms for repressing", "clues": ["quash", "reduce", "keep down", "smother", "suppress", "stifle", "subdue", "subjugate", "repress", "strangle", "muffle"]}, {"answer": "reprobate", "hint": "synonyms for reprobate", "clues": ["condemn", "objurgate", "excoriate", "decry", "reprobate"]}, {"answer": "requested", "hint": "synonyms for requested", "clues": ["bespeak", "request", "quest", "call for"]}, {"answer": "required", "hint": "synonyms for required", "clues": ["want", "need", "postulate", "command", "ask", "take", "necessitate", "demand", "require", "expect", "involve", "call for"]}, {"answer": "reserved", "hint": "synonyms for reserved", "clues": ["book", "appropriate", "earmark", "reserve", "set aside", "allow", "hold"]}, {"answer": "resolved", "hint": "synonyms for resolved", "clues": ["adjudicate", "decide", "break up", "purpose", "answer", "resolve", "solve", "conclude", "dissolve", "settle"]}, {"answer": "resounding", "hint": "synonyms for resounding", "clues": ["make noise", "reverberate", "ring", "resound", "echo", "noise"]}, {"answer": "respected", "hint": "synonyms for respected", "clues": ["value", "respect", "abide by", "honor", "observe", "esteem", "prize", "prise"]}, {"answer": "rested", "hint": "synonyms for rested", "clues": ["lie", "stay", "breathe", "pillow", "remain", "roost", "catch one's breath", "repose", "perch", "take a breather", "reside", "rest", "rested"]}, {"answer": "restrained", "hint": "synonyms for restrained", "clues": ["confine", "constrain", "keep", "restrict", "cumber", "limit", "hold", "keep back", "intimidate", "trammel", "bound", "restrain", "throttle", "hold back"]}, {"answer": "restricted", "hint": "synonyms for restricted", "clues": ["cut back", "confine", "restrict", "limit", "qualify", "trammel", "curb", "bound", "restrain", "throttle", "curtail"]}, {"answer": "restricting", "hint": "synonyms for restricting", "clues": ["cut back", "confine", "restrict", "limit", "qualify", "trammel", "curb", "bound", "restrain", "throttle", "curtail"]}, {"answer": "retained", "hint": "synonyms for retained", "clues": ["keep back", "continue", "keep", "retain", "keep on", "hold", "hold back"]}, {"answer": "retarded", "hint": "synonyms for retarded", "clues": ["decelerate", "delay", "slow up", "check", "slow down", "slow", "retard"]}, {"answer": "retired", "hint": "synonyms for retired", "clues": ["go to bed", "retreat", "hit the sack", "adjourn", "strike out", "sack out", "withdraw", "put out", "pull back", "bed", "hit the hay", "pull away", "go to sleep", "crawl in", "move back", "retire", "kip down", "turn in", "recede", "draw back"]}, {"answer": "retiring", "hint": "synonyms for retiring", "clues": ["go to bed", "retreat", "hit the sack", "adjourn", "strike out", "sack out", "withdraw", "put out", "pull back", "bed", "hit the hay", "pull away", "go to sleep", "crawl in", "move back", "retire", "kip down", "turn in", "recede", "draw back", "retiring"]}, {"answer": "retracted", "hint": "synonyms for retracted", "clues": ["draw in", "forswear", "abjure", "resile", "pull back", "recant", "shrink back", "draw back", "retract"]}, {"answer": "retrograde", "hint": "synonyms for retrograde", "clues": ["hash over", "retreat", "retrogress", "regress", "rehash", "retrograde"]}, {"answer": "returning", "hint": "synonyms for returning", "clues": ["refund", "turn back", "repay", "riposte", "return", "reelect", "take back", "yield", "render", "fall", "devolve", "revert", "retrovert", "regress", "deliver", "pass", "give", "come back", "retort", "generate", "hark back", "bring back", "rejoin", "recall", "give back"]}, {"answer": "revealing", "hint": "synonyms for revealing", "clues": ["break", "uncover", "reveal", "unveil", "let on", "let out", "discover", "disclose", "expose", "give away", "unwrap", "bring out", "divulge"]}, {"answer": "reverberating", "hint": "synonyms for reverberating", "clues": ["reflect", "bound", "ring", "resound", "bounce", "resile", "recoil", "take a hop", "reverberate", "ricochet", "spring", "echo", "reverberating"]}, {"answer": "revered", "hint": "synonyms for revered", "clues": ["worship", "revere", "reverence", "venerate", "fear", "idolise", "hero-worship"]}, {"answer": "reverse", "hint": "synonyms for reverse", "clues": ["countermand", "invert", "turn back", "revoke", "annul", "overturn", "lift", "turn", "vacate", "change by reversal", "rescind", "repeal", "overthrow", "overrule", "override", "reverse"]}, {"answer": "reversed", "hint": "synonyms for reversed", "clues": ["countermand", "invert", "turn back", "revoke", "annul", "reverse", "overturn", "lift", "turn", "vacate", "change by reversal", "rescind", "repeal", "overthrow", "overrule", "override"]}, {"answer": "reverting", "hint": "synonyms for reverting", "clues": ["retrovert", "return", "revert", "turn back", "regress"]}, {"answer": "revived", "hint": "synonyms for revived", "clues": ["reanimate", "renovate", "revivify", "recreate", "come to", "resurrect", "revive", "resuscitate", "repair", "quicken"]}, {"answer": "reviving", "hint": "synonyms for reviving", "clues": ["reanimate", "renovate", "revivify", "recreate", "come to", "resurrect", "revive", "resuscitate", "repair", "quicken", "reviving"]}, {"answer": "revolting", "hint": "synonyms for revolting", "clues": ["disgust", "repel", "sicken", "nauseate", "revolt", "gross out", "churn up"]}, {"answer": "revolved", "hint": "synonyms for revolved", "clues": ["revolve", "orbit", "roll", "rotate", "orb", "go around"]}, {"answer": "rewarding", "hint": "synonyms for rewarding", "clues": ["reinforce", "repay", "pay back", "honor", "reward"]}, {"answer": "ribbed", "hint": "synonyms for ribbed", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "ribbed"]}, {"answer": "riddled", "hint": "synonyms for riddled", "clues": ["screen", "diffuse", "imbue", "pervade", "permeate", "interpenetrate", "penetrate", "riddle"]}, {"answer": "rifled", "hint": "synonyms for rifled", "clues": ["despoil", "rifle", "foray", "go", "pillage", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "rigged", "hint": "synonyms for rigged", "clues": ["set up", "set", "manipulate", "rig", "rigged"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["redress", "compensate", "rectify", "correct", "right"]}, {"answer": "riled", "hint": "synonyms for riled", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "roil", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother"]}, {"answer": "ringed", "hint": "synonyms for ringed", "clues": ["call up", "environ", "peal", "surround", "ring", "resound", "call", "border", "band", "reverberate", "knell", "telephone", "skirt", "phone", "echo", "ringed"]}, {"answer": "ripping", "hint": "synonyms for ripping", "clues": ["pull", "rip", "rive", "rend", "ripping"]}, {"answer": "rippled", "hint": "synonyms for rippled", "clues": ["burble", "ruffle", "cockle", "babble", "bubble", "undulate", "ripple", "riffle", "gurgle", "guggle"]}, {"answer": "risen", "hint": "synonyms for risen", "clues": ["rebel", "come up", "originate", "rise", "rear", "wax", "go up", "rise up", "lift", "climb up", "prove", "uprise", "mount", "move up", "climb", "stand up", "turn out", "grow", "jump", "develop", "ascend", "spring up", "resurrect", "get up", "heighten", "surface"]}, {"answer": "rising", "hint": "synonyms for rising", "clues": ["rebel", "come up", "originate", "rise", "rear", "wax", "go up", "rise up", "lift", "climb up", "prove", "uprise", "mount", "move up", "climb", "stand up", "turn out", "grow", "jump", "develop", "ascend", "spring up", "resurrect", "get up", "heighten", "surface", "rising"]}, {"answer": "riveting", "hint": "synonyms for riveting", "clues": ["rivet", "focus", "concentrate", "center", "pore", "centre"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["howl", "thunder", "yaup", "bellow", "ululate", "yawl", "roar", "wail"]}, {"answer": "roast", "hint": "synonyms for roast", "clues": ["poke fun", "rib", "guy", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "roast"]}, {"answer": "roasted", "hint": "synonyms for roasted", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "roasted"]}, {"answer": "robed", "hint": "synonyms for robed", "clues": ["soak", "plume", "robe", "fleece", "pluck", "drape", "clothe", "cloak", "overcharge", "gazump", "surcharge", "hook", "vest"]}, {"answer": "roiled", "hint": "synonyms for roiled", "clues": ["rile", "boil", "moil", "churn", "roil", "roiled"]}, {"answer": "roiling", "hint": "synonyms for roiling", "clues": ["rile", "boil", "moil", "churn", "roil"]}, {"answer": "rolled", "hint": "synonyms for rolled", "clues": ["wind", "stray", "hustle", "roll out", "vagabond", "roll up", "tramp", "rove", "cast", "range", "undulate", "roll", "twine", "ramble", "revolve", "wave", "pluck", "wander", "wheel", "drift", "swan", "wrap", "roam", "turn over", "flap", "seethe", "rolled"]}, {"answer": "rollicking", "hint": "synonyms for rollicking", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp"]}, {"answer": "rolling", "hint": "synonyms for rolling", "clues": ["wind", "stray", "hustle", "roll out", "vagabond", "roll up", "tramp", "rove", "cast", "range", "undulate", "roll", "twine", "ramble", "revolve", "wave", "pluck", "wander", "wheel", "drift", "swan", "wrap", "roam", "turn over", "flap", "seethe"]}, {"answer": "romance", "hint": "synonyms for romance", "clues": ["flirt", "court", "dally", "coquet", "woo", "butterfly", "mash", "solicit", "chat up", "philander", "romance"]}, {"answer": "rooted", "hint": "synonyms for rooted", "clues": ["rout", "steady down", "root", "take root", "settle down", "rootle", "settle", "rooted"]}, {"answer": "rose", "hint": "synonyms for rose", "clues": ["rebel", "come up", "originate", "rise", "rear", "wax", "go up", "rise up", "lift", "climb up", "prove", "uprise", "mount", "move up", "climb", "stand up", "turn out", "grow", "jump", "develop", "ascend", "spring up", "resurrect", "get up", "heighten", "surface", "rose"]}, {"answer": "rotated", "hint": "synonyms for rotated", "clues": ["revolve", "circumvolve", "rotate", "spread out", "turn out", "splay", "go around"]}, {"answer": "rotted", "hint": "synonyms for rotted", "clues": ["molder", "waste", "decompose", "rot", "rotted"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["labialize", "lash out", "round down", "round off", "fill out", "assault", "snipe", "attack", "polish", "round out", "brush up", "flesh out", "polish up", "assail", "round"]}, {"answer": "rounded", "hint": "synonyms for rounded", "clues": ["labialize", "lash out", "round down", "round", "round off", "fill out", "assault", "snipe", "attack", "polish", "round out", "brush up", "flesh out", "polish up", "assail", "rounded"]}, {"answer": "rousing", "hint": "synonyms for rousing", "clues": ["bestir", "rout out", "charge up", "drive out", "force out", "wake", "awaken", "arouse", "agitate", "wake up", "excite", "charge", "turn on", "commove", "rousing"]}, {"answer": "roving", "hint": "synonyms for roving", "clues": ["ramble", "stray", "swan", "vagabond", "wander", "drift", "tramp", "rove", "cast", "range", "roll", "roam", "roving"]}, {"answer": "ruffled", "hint": "synonyms for ruffled", "clues": ["prance", "cock", "mix", "strut", "fluff", "rumple", "pleat", "undulate", "ripple", "ruffle", "mess up", "tittup", "cockle", "sashay", "ruffle up", "flick", "shuffle", "riffle", "swagger"]}, {"answer": "ruined", "hint": "synonyms for ruined", "clues": ["break", "ruin", "smash", "deflower", "bankrupt", "destroy", "ruined"]}, {"answer": "ruled", "hint": "synonyms for ruled", "clues": ["dominate", "govern", "reign", "predominate", "rule", "prevail", "harness", "find", "decree"]}, {"answer": "ruling", "hint": "synonyms for ruling", "clues": ["dominate", "govern", "reign", "predominate", "rule", "prevail", "harness", "find", "decree", "ruling"]}, {"answer": "rumpled", "hint": "synonyms for rumpled", "clues": ["crumple", "crease", "wrinkle", "ruffle", "ruffle up", "cockle", "pucker", "knit", "mess up"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["lean", "guide", "go", "hightail it", "run for", "range", "consort", "break away", "bunk", "campaign", "black market", "persist", "hunt", "track down", "race", "flow", "operate", "turn tail", "melt", "die hard", "incline", "unravel", "extend", "run away", "play", "take to the woods", "course", "move", "ladder", "escape", "draw", "hunt down", "function", "bleed", "lam", "scat", "melt down", "carry", "tend", "feed", "scarper", "fly the coop", "endure", "pass", "be given", "run", "prevail", "work", "lead", "head for the hills", "execute", "running"]}, {"answer": "rush", "hint": "synonyms for rush", "clues": ["hasten", "speed", "bucket along", "race", "stimulate", "hurry", "induce", "step on it", "pelt along", "look sharp", "festinate", "rush along", "hotfoot", "hie", "cannonball along", "rush"]}, {"answer": "rushed", "hint": "synonyms for rushed", "clues": ["bucket along", "stimulate", "hurry", "hotfoot", "step on it", "belt along", "festinate", "rush along", "hie", "hasten", "speed", "race", "look sharp", "induce", "rush", "cannonball along", "rushed"]}, {"answer": "sacked", "hint": "synonyms for sacked", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "plunder", "give the axe", "send away", "clear", "displace", "fire", "terminate", "sack up", "net", "sacked"]}, {"answer": "sagging", "hint": "synonyms for sagging", "clues": ["sag", "droop", "sag down", "flag", "sagging"]}, {"answer": "said", "hint": "synonyms for said", "clues": ["aver", "read", "state", "allege", "articulate", "suppose", "enunciate", "say", "order", "enounce", "tell", "enjoin", "pronounce", "sound out", "said"]}, {"answer": "sainted", "hint": "synonyms for sainted", "clues": ["canonise", "saint", "enshrine", "sainted"]}, {"answer": "salving", "hint": "synonyms for salving", "clues": ["salvage", "salve", "relieve", "salving"]}, {"answer": "sanctified", "hint": "synonyms for sanctified", "clues": ["sanctify", "purify", "consecrate", "hallow", "purge", "bless", "sanctified"]}, {"answer": "satiate", "hint": "synonyms for satiate", "clues": ["gormandize", "ingurgitate", "binge", "replete", "glut", "sate", "englut", "engorge", "pig out", "overgorge", "overeat", "overindulge", "scarf out", "gorge", "fill", "stuff", "satiate"]}, {"answer": "satiated", "hint": "synonyms for satiated", "clues": ["gormandize", "ingurgitate", "binge", "replete", "glut", "sate", "englut", "engorge", "pig out", "overgorge", "satiate", "overeat", "overindulge", "scarf out", "gorge", "fill", "stuff"]}, {"answer": "satisfied", "hint": "synonyms for satisfied", "clues": ["gratify", "meet", "live up to", "fulfill", "fill", "satisfy", "satisfied"]}, {"answer": "satisfying", "hint": "synonyms for satisfying", "clues": ["gratify", "meet", "live up to", "fulfill", "fill", "satisfy"]}, {"answer": "saved", "hint": "synonyms for saved", "clues": ["economize", "keep", "redeem", "pull through", "bring through", "carry through", "make unnecessary", "save up", "relieve", "salvage", "keep open", "deliver", "write", "hold open", "preserve", "salve", "lay aside", "spare", "saved"]}, {"answer": "saving", "hint": "synonyms for saving", "clues": ["economize", "keep", "redeem", "pull through", "bring through", "carry through", "make unnecessary", "save up", "relieve", "salvage", "keep open", "deliver", "write", "hold open", "preserve", "salve", "lay aside", "spare", "saving"]}, {"answer": "scared", "hint": "synonyms for scared", "clues": ["frighten away", "pit", "frighten off", "scare", "scare away", "scare off", "fright", "pall", "dash", "mark", "pock", "daunt"]}, {"answer": "scarred", "hint": "synonyms for scarred", "clues": ["pit", "scar", "mark", "pock", "scarred"]}, {"answer": "scattered", "hint": "synonyms for scattered", "clues": ["sprinkle", "dot", "break up", "scatter", "dust", "spread", "dispel", "dissipate", "disperse", "spread out"]}, {"answer": "scented", "hint": "synonyms for scented", "clues": ["nose", "perfume", "scent", "wind", "odourise", "odorize", "scented"]}, {"answer": "scintillating", "hint": "synonyms for scintillating", "clues": ["coruscate", "twinkle", "scintillate", "sparkle", "scintillating"]}, {"answer": "scorched", "hint": "synonyms for scorched", "clues": ["char", "singe", "sear", "blacken", "scorch"]}, {"answer": "scorching", "hint": "synonyms for scorching", "clues": ["char", "singe", "sear", "blacken", "scorch"]}, {"answer": "scorned", "hint": "synonyms for scorned", "clues": ["turn down", "despise", "contemn", "freeze off", "pooh-pooh", "disdain", "reject", "spurn", "scorn", "scorned"]}, {"answer": "scotch", "hint": "synonyms for scotch", "clues": ["cross", "spoil", "queer", "bilk", "foil", "baffle", "thwart", "frustrate", "scotch"]}, {"answer": "scoured", "hint": "synonyms for scoured", "clues": ["scrub", "abrade", "flush", "purge", "scour", "scoured"]}, {"answer": "scrambled", "hint": "synonyms for scrambled", "clues": ["skin", "scramble", "jumble", "shin", "throw together", "sputter", "clamber", "struggle", "beat", "shinny"]}, {"answer": "screaming", "hint": "synonyms for screaming", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "shout out", "scream", "hollo"]}, {"answer": "scrub", "hint": "synonyms for scrub", "clues": ["call off", "scrub up", "cancel", "scour", "scratch", "scrub"]}, {"answer": "scrubbed", "hint": "synonyms for scrubbed", "clues": ["call off", "scrub", "scrub up", "cancel", "scour", "scratch", "scrubbed"]}, {"answer": "scurrying", "hint": "synonyms for scurrying", "clues": ["scurry", "skitter", "scuttle", "scamper"]}, {"answer": "sear", "hint": "synonyms for sear", "clues": ["char", "parch", "singe", "blacken", "scorch", "sear"]}, {"answer": "searching", "hint": "synonyms for searching", "clues": ["search", "seek", "explore", "look for", "look"]}, {"answer": "seared", "hint": "synonyms for seared", "clues": ["char", "parch", "singe", "sear", "blacken", "scorch", "seared"]}, {"answer": "searing", "hint": "synonyms for searing", "clues": ["char", "parch", "singe", "sear", "blacken", "scorch"]}, {"answer": "seasoned", "hint": "synonyms for seasoned", "clues": ["temper", "mollify", "flavour", "harden", "season"]}, {"answer": "seated", "hint": "synonyms for seated", "clues": ["sit", "induct", "seat", "invest", "sit down", "seated"]}, {"answer": "secluded", "hint": "synonyms for secluded", "clues": ["seclude", "withdraw", "sequester", "sequestrate"]}, {"answer": "secure", "hint": "synonyms for secure", "clues": ["ensure", "procure", "assure", "fasten", "fix", "stop up", "plug", "guarantee", "batten", "insure", "batten down", "secure"]}, {"answer": "seeing", "hint": "synonyms for seeing", "clues": ["get wind", "get a line", "understand", "see to it", "escort", "reckon", "view", "project", "examine", "image", "determine", "visualize", "witness", "fancy", "consider", "interpret", "check", "go steady", "discover", "experience", "envision", "find out", "see", "ascertain", "run into", "take care", "insure", "figure", "construe", "encounter", "learn", "watch", "run across", "get word", "assure", "attend", "date", "realise", "go through", "take in", "control", "ensure", "hear", "picture", "meet", "look", "regard", "pick up", "go out", "come across", "visit", "catch", "find"]}, {"answer": "seething", "hint": "synonyms for seething", "clues": ["hum", "boil", "roll", "seethe", "buzz", "seething"]}, {"answer": "selected", "hint": "synonyms for selected", "clues": ["pick out", "choose", "select", "take"]}, {"answer": "sensed", "hint": "synonyms for sensed", "clues": ["smell", "sense", "feel", "smell out"]}, {"answer": "sensitising", "hint": "synonyms for sensitising", "clues": ["sensify", "sensibilise", "sensitise", "sensitising"]}, {"answer": "sensitized", "hint": "synonyms for sensitized", "clues": ["sensify", "sensibilise", "sensitise", "sensitized"]}, {"answer": "sensitizing", "hint": "synonyms for sensitizing", "clues": ["sensify", "sensibilise", "sensitise", "sensitizing"]}, {"answer": "sent", "hint": "synonyms for sent", "clues": ["post", "get off", "beam", "station", "commit", "charge", "direct", "institutionalize", "transport", "air", "send", "place", "send off", "broadcast", "ship", "mail", "transmit", "send out", "sent"]}, {"answer": "separate", "hint": "synonyms for separate", "clues": ["furcate", "break up", "fall apart", "single out", "divide", "differentiate", "assort", "fork", "classify", "severalize", "secernate", "carve up", "distinguish", "come apart", "secern", "dissever", "break", "disunite", "ramify", "sort", "sort out", "tell apart", "tell", "class", "discriminate", "branch", "split up", "part", "split", "separate"]}, {"answer": "separated", "hint": "synonyms for separated", "clues": ["furcate", "break up", "fall apart", "single out", "divide", "differentiate", "assort", "fork", "classify", "severalize", "secernate", "carve up", "distinguish", "come apart", "secern", "dissever", "break", "disunite", "ramify", "sort", "sort out", "tell apart", "tell", "class", "discriminate", "branch", "split up", "separate", "part", "split"]}, {"answer": "sequestered", "hint": "synonyms for sequestered", "clues": ["keep apart", "impound", "attach", "set apart", "withdraw", "seize", "sequestrate", "seclude", "confiscate", "isolate", "sequester"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["go down", "correct", "typeset", "go under", "countersink", "sic", "fix", "put", "adjust", "mark", "ready", "dress", "pose", "coif", "define", "coiffe", "localise", "lay", "determine", "place", "plant", "fructify", "specify", "arrange", "limit", "jell", "lay out", "rig", "gear up", "set up", "congeal", "do", "position", "prepare", "set"]}, {"answer": "settled", "hint": "synonyms for settled", "clues": ["adjudicate", "go down", "sink", "get back", "go under", "nail down", "settle down", "patch up", "subside", "conciliate", "settle", "make up", "square up", "decide", "determine", "fall", "steady down", "resolve", "locate", "square off", "reconcile", "root", "ensconce", "finalise", "descend", "take root"]}, {"answer": "severed", "hint": "synonyms for severed", "clues": ["discerp", "break up", "lop", "sever", "severed"]}, {"answer": "sewed", "hint": "synonyms for sewed", "clues": ["tailor-make", "tailor", "sew", "stitch", "run up", "sew together", "sewed"]}, {"answer": "sewn", "hint": "synonyms for sewn", "clues": ["tailor-make", "tailor", "sew", "stitch", "run up", "sew together"]}, {"answer": "sexed", "hint": "synonyms for sexed", "clues": ["excite", "sex", "arouse", "turn on", "wind up", "sexed"]}, {"answer": "shaded", "hint": "synonyms for shaded", "clues": ["shade", "fill in", "shade off", "shadow"]}, {"answer": "shadowed", "hint": "synonyms for shadowed", "clues": ["shade", "shadow", "shade off", "dwarf", "overshadow"]}, {"answer": "shaken", "hint": "synonyms for shaken", "clues": ["stir", "shake off", "escape from", "sway", "shake up", "stimulate", "judder", "didder", "agitate", "shake", "excite", "throw off", "rock"]}, {"answer": "sham", "hint": "synonyms for sham", "clues": ["dissemble", "pretend", "affect", "assume", "feign", "simulate", "sham"]}, {"answer": "shamed", "hint": "synonyms for shamed", "clues": ["shame", "attaint", "dishonour", "simulate", "feign", "dissemble", "affect", "disgrace", "pretend", "assume"]}, {"answer": "shaped", "hint": "synonyms for shaped", "clues": ["determine", "form", "forge", "regulate", "influence", "shape", "work", "mould"]}, {"answer": "shaping", "hint": "synonyms for shaping", "clues": ["determine", "form", "forge", "regulate", "influence", "shape", "work", "mould", "shaping"]}, {"answer": "shared", "hint": "synonyms for shared", "clues": ["partake in", "share", "partake", "deal", "apportion", "divvy up", "portion out"]}, {"answer": "sharing", "hint": "synonyms for sharing", "clues": ["partake in", "share", "partake", "deal", "apportion", "divvy up", "portion out", "sharing"]}, {"answer": "sharpened", "hint": "synonyms for sharpened", "clues": ["sharpen", "focus", "focalize", "taper", "point", "heighten"]}, {"answer": "shaved", "hint": "synonyms for shaved", "clues": ["trim", "knock off", "plane", "shave"]}, {"answer": "shaven", "hint": "synonyms for shaven", "clues": ["trim", "knock off", "plane", "shave"]}, {"answer": "shed", "hint": "synonyms for shed", "clues": ["throw", "exuviate", "shake off", "drop", "molt", "cast off", "throw away", "throw off", "cast", "disgorge", "slough", "spill", "pour forth", "shed"]}, {"answer": "sheer", "hint": "synonyms for sheer", "clues": ["cut", "slew", "veer", "swerve", "slue", "trend", "curve", "sheer"]}, {"answer": "shelled", "hint": "synonyms for shelled", "clues": ["husk", "blast", "vanquish", "shell", "trounce", "beat out", "crush", "beat", "shelled"]}, {"answer": "shifting", "hint": "synonyms for shifting", "clues": ["stir", "reposition", "careen", "change", "switch", "lurch", "agitate", "transfer", "change over", "shift", "budge", "wobble", "tilt", "pitch", "dislodge"]}, {"answer": "shining", "hint": "synonyms for shining", "clues": ["reflect", "beam", "shine", "scramble", "polish", "smooth", "sputter", "radiate", "struggle", "glisten", "fall", "skin", "clamber", "glitter", "glint", "glow", "gleam", "shinny", "strike", "shining"]}, {"answer": "shivering", "hint": "synonyms for shivering", "clues": ["shiver", "thrill", "shudder", "throb"]}, {"answer": "shocked", "hint": "synonyms for shocked", "clues": ["ball over", "appall", "offend", "shock", "take aback", "scandalise", "outrage", "traumatise", "floor", "blow out of the water", "shocked"]}, {"answer": "shocking", "hint": "synonyms for shocking", "clues": ["ball over", "appall", "offend", "shock", "take aback", "scandalise", "outrage", "traumatise", "floor", "blow out of the water"]}, {"answer": "shortened", "hint": "synonyms for shortened", "clues": ["abbreviate", "abridge", "bowdlerise", "expurgate", "reduce", "cut", "foreshorten", "contract", "shorten", "castrate"]}, {"answer": "shot", "hint": "synonyms for shot", "clues": ["sprout", "dissipate", "buck", "snap", "bourgeon", "hit", "shoot", "inject", "photograph", "film", "blast", "pullulate", "fool away", "charge", "pip", "tear", "scud", "flash", "shoot down", "fool", "scoot", "fritter", "germinate", "frivol away", "take", "fritter away", "spud", "dart", "dash", "burgeon forth"]}, {"answer": "shouted", "hint": "synonyms for shouted", "clues": ["clapperclaw", "holler", "yell", "cry out", "call out", "call", "cry", "shout", "squall", "scream", "abuse", "hollo", "blackguard", "exclaim", "shout out", "outcry", "shouted"]}, {"answer": "shrieked", "hint": "synonyms for shrieked", "clues": ["pipe up", "shrill", "shriek", "pipe"]}, {"answer": "shriveled", "hint": "synonyms for shriveled", "clues": ["shrivel", "shrivel up", "wither", "shrink"]}, {"answer": "shrivelled", "hint": "synonyms for shrivelled", "clues": ["shrivel", "shrivel up", "wither", "shrink", "shrivelled"]}, {"answer": "shrunken", "hint": "synonyms for shrunken", "clues": ["shrivel", "cringe", "squinch", "wince", "reduce", "quail", "shrink", "recoil", "contract", "shrivel up", "wither", "flinch", "funk", "shrunken"]}, {"answer": "shuddering", "hint": "synonyms for shuddering", "clues": ["shiver", "thrill", "shudder", "throb"]}, {"answer": "shut", "hint": "synonyms for shut", "clues": ["exclude", "shut out", "keep out", "close", "shut"]}, {"answer": "shut_up", "hint": "synonyms for shut up", "clues": ["be quiet", "belt up", "hush", "lock", "dummy up", "lock in", "silence", "clam up", "lock up", "close up", "shut away", "keep mum", "lock away", "still", "quieten", "put away", "button up", "hush up", "shut up"]}, {"answer": "sick", "hint": "synonyms for sick", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "sick"]}, {"answer": "sickening", "hint": "synonyms for sickening", "clues": ["disgust", "turn one's stomach", "nauseate", "sicken", "revolt", "come down", "churn up"]}, {"answer": "sign", "hint": "synonyms for sign", "clues": ["sign on", "sign up", "signalise", "subscribe", "bless", "ratify", "contract", "signal", "sign"]}, {"answer": "signal", "hint": "synonyms for signal", "clues": ["indicate", "betoken", "point", "signalise", "bespeak", "sign", "signal"]}, {"answer": "signed", "hint": "synonyms for signed", "clues": ["sign on", "sign up", "signalise", "subscribe", "sign", "bless", "ratify", "contract", "signal", "signed"]}, {"answer": "silenced", "hint": "synonyms for silenced", "clues": ["hush", "silence", "hush up", "still", "shut up", "quieten"]}, {"answer": "simulated", "hint": "synonyms for simulated", "clues": ["imitate", "assume", "sham", "model", "feign", "simulate", "copy"]}, {"answer": "singing", "hint": "synonyms for singing", "clues": ["singe", "sear", "peach", "babble", "blab", "let the cat out of the bag", "talk", "whistle", "spill the beans", "tattle", "blab out", "scorch", "babble out", "singing"]}, {"answer": "sinning", "hint": "synonyms for sinning", "clues": ["sin", "goof", "trespass", "boob", "drop the ball", "blunder", "transgress", "sinning"]}, {"answer": "sitting", "hint": "synonyms for sitting", "clues": ["baby-sit", "sit", "ride", "seat", "model", "sit down", "pose", "sit around", "posture", "sitting"]}, {"answer": "situated", "hint": "synonyms for situated", "clues": ["fix", "situate", "deposit", "locate", "posit"]}, {"answer": "skim", "hint": "synonyms for skim", "clues": ["run down", "skitter", "skip", "glance over", "scan", "skim over", "cream off", "rake", "cream", "skim off", "plane", "skim"]}, {"answer": "skimmed", "hint": "synonyms for skimmed", "clues": ["run down", "skitter", "skip", "glance over", "scan", "skim", "skim over", "cream off", "rake", "cream", "skim off", "plane", "skimmed"]}, {"answer": "skinned", "hint": "synonyms for skinned", "clues": ["pare", "skin", "scramble", "shin", "sputter", "clamber", "struggle", "bark", "scrape", "shinny", "peel", "skinned"]}, {"answer": "skirting", "hint": "synonyms for skirting", "clues": ["parry", "circumvent", "skirt", "environ", "dodge", "ring", "border", "put off", "evade", "fudge", "sidestep", "elude", "duck", "surround", "hedge"]}, {"answer": "slack", "hint": "synonyms for slack", "clues": ["abate", "die away", "slacken", "slow up", "relax", "slow down", "let up", "slow", "slack off", "slake", "slack up", "slack"]}, {"answer": "slain", "hint": "synonyms for slain", "clues": ["remove", "bump off", "hit", "polish off", "off", "murder", "slay", "dispatch", "slain"]}, {"answer": "slaked", "hint": "synonyms for slaked", "clues": ["abate", "allay", "slack", "slake", "assuage", "quench"]}, {"answer": "slanted", "hint": "synonyms for slanted", "clues": ["slant", "lean", "cant", "angle", "cant over", "tip", "tilt", "pitch", "weight", "slanted"]}, {"answer": "slanting", "hint": "synonyms for slanting", "clues": ["slant", "lean", "cant", "angle", "cant over", "tip", "tilt", "pitch", "weight"]}, {"answer": "slashed", "hint": "synonyms for slashed", "clues": ["thrash about", "toss", "thresh", "slash", "lather", "jactitate", "thrash", "cut down", "convulse", "whip", "strap", "trounce", "flog", "gash", "welt", "slashed"]}, {"answer": "slashing", "hint": "synonyms for slashing", "clues": ["thrash about", "toss", "thresh", "slash", "lather", "jactitate", "thrash", "cut down", "convulse", "whip", "strap", "trounce", "flog", "gash", "welt"]}, {"answer": "sleeping", "hint": "synonyms for sleeping", "clues": ["kip", "catch some Z's", "sleep", "slumber", "log Z's"]}, {"answer": "slicked", "hint": "synonyms for slicked", "clues": ["sleek", "slick", "sleek down", "slick down", "slicked"]}, {"answer": "sliding", "hint": "synonyms for sliding", "clues": ["slew", "slide", "slither", "slue", "slip", "skid", "sliding"]}, {"answer": "slim", "hint": "synonyms for slim", "clues": ["thin", "slim down", "melt off", "lose weight", "reduce", "slenderize", "slim"]}, {"answer": "slimed", "hint": "synonyms for slimed", "clues": ["slim down", "melt off", "lose weight", "reduce", "slenderize", "slime", "thin"]}, {"answer": "slipping", "hint": "synonyms for slipping", "clues": ["mistake", "slew", "drop off", "dislocate", "fall away", "slue", "luxate", "skid", "err", "slip one's mind", "drop away", "slide", "slip", "steal", "splay", "sneak", "slipping"]}, {"answer": "sloped", "hint": "synonyms for sloped", "clues": ["squelch", "swill", "splosh", "slop", "splash", "incline", "splatter", "squish", "spill", "pitch", "sloped"]}, {"answer": "sloping", "hint": "synonyms for sloping", "clues": ["squelch", "swill", "splosh", "slop", "splash", "incline", "splatter", "squish", "spill", "pitch"]}, {"answer": "slopped", "hint": "synonyms for slopped", "clues": ["squelch", "swill", "splosh", "slop", "splash", "splatter", "squish", "spill", "slopped"]}, {"answer": "sloshed", "hint": "synonyms for sloshed", "clues": ["squelch", "splosh", "splash", "slush", "slop", "slosh around", "squish", "sloshed"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["decelerate", "slow up", "slacken", "slack", "slow down", "retard", "slow"]}, {"answer": "smashed", "hint": "synonyms for smashed", "clues": ["break", "nail", "smash up", "smash", "demolish", "bankrupt", "blast", "bang up", "boom", "ruin", "dash", "crush", "smashed"]}, {"answer": "smashing", "hint": "synonyms for smashing", "clues": ["break", "nail", "smash up", "smash", "demolish", "bankrupt", "blast", "bang up", "boom", "ruin", "dash", "crush"]}, {"answer": "smelling", "hint": "synonyms for smelling", "clues": ["smell", "smack", "sense", "smell out", "reek"]}, {"answer": "smooth", "hint": "synonyms for smooth", "clues": ["polish", "smooth out", "shine", "smoothen"]}, {"answer": "smoothed", "hint": "synonyms for smoothed", "clues": ["smooth", "polish", "smooth out", "shine"]}, {"answer": "smoothened", "hint": "synonyms for smoothened", "clues": ["smooth", "polish", "shine", "smoothened"]}, {"answer": "smothered", "hint": "synonyms for smothered", "clues": ["asphyxiate", "suffocate", "put out", "smother", "stifle", "surround", "repress", "strangle", "muffle"]}, {"answer": "smothering", "hint": "synonyms for smothering", "clues": ["asphyxiate", "suffocate", "put out", "smother", "stifle", "surround", "repress", "strangle", "muffle"]}, {"answer": "snarled", "hint": "synonyms for snarled", "clues": ["snarl up", "embrangle", "tangle", "snap", "snarl", "mat", "snarled"]}, {"answer": "sneak", "hint": "synonyms for sneak", "clues": ["pussyfoot", "swipe", "abstract", "nobble", "pilfer", "snarf", "purloin", "cabbage", "filch", "hook", "slip", "mouse", "pinch", "creep", "lift", "sneak"]}, {"answer": "sneaking", "hint": "synonyms for sneaking", "clues": ["pussyfoot", "abstract", "snarf", "filch", "hook", "pinch", "sneak", "lift", "swipe", "nobble", "pilfer", "purloin", "cabbage", "slip", "mouse", "creep"]}, {"answer": "snub", "hint": "synonyms for snub", "clues": ["cut", "disregard", "repel", "rebuff", "ignore", "snub"]}, {"answer": "snuffling", "hint": "synonyms for snuffling", "clues": ["snuffle", "blub", "blubber", "snivel", "snuff", "snuffling"]}, {"answer": "snuggled", "hint": "synonyms for snuggled", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle"]}, {"answer": "soaked", "hint": "synonyms for soaked", "clues": ["hock", "hit it up", "fleece", "gazump", "hook", "pawn", "intoxicate", "inebriate", "soak", "plume", "sop", "drench", "imbue", "dowse", "souse", "pluck", "rob", "overcharge", "surcharge", "douse", "soaked"]}, {"answer": "soaring", "hint": "synonyms for soaring", "clues": ["sailplane", "hang glide", "soar", "zoom", "soar upwards", "soar up", "surge"]}, {"answer": "softened", "hint": "synonyms for softened", "clues": ["break", "cushion", "buffer", "weaken", "relent", "moderate", "mince", "dampen", "soften", "damp", "yield"]}, {"answer": "softening", "hint": "synonyms for softening", "clues": ["break", "cushion", "buffer", "weaken", "relent", "moderate", "mince", "dampen", "soften", "damp", "yield"]}, {"answer": "soiled", "hint": "synonyms for soiled", "clues": ["bemire", "soil", "dirty", "begrime", "colly", "grime", "soiled"]}, {"answer": "sold", "hint": "synonyms for sold", "clues": ["betray", "sell", "trade", "deal", "sold"]}, {"answer": "solved", "hint": "synonyms for solved", "clues": ["work out", "lick", "puzzle out", "resolve", "clear", "figure out", "work", "solve"]}, {"answer": "soothing", "hint": "synonyms for soothing", "clues": ["solace", "soothe", "console", "comfort", "soothing"]}, {"answer": "sophisticated", "hint": "synonyms for sophisticated", "clues": ["doctor up", "doctor", "convolute", "twist around", "pervert", "twist", "sophisticate"]}, {"answer": "sorted", "hint": "synonyms for sorted", "clues": ["screen", "sort", "sort out", "screen out", "assort", "class", "classify", "sieve", "separate", "sorted"]}, {"answer": "sought", "hint": "synonyms for sought", "clues": ["seek", "try", "look for", "search", "assay", "attempt", "essay", "sought"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["voice", "vocalise", "go", "fathom", "sound"]}, {"answer": "sounding", "hint": "synonyms for sounding", "clues": ["voice", "vocalise", "go", "fathom", "sound"]}, {"answer": "sour", "hint": "synonyms for sour", "clues": ["turn", "ferment", "work", "acetify", "acidify", "acidulate", "sour"]}, {"answer": "soured", "hint": "synonyms for soured", "clues": ["sour", "acidulate", "acidify", "turn", "ferment", "work", "acetify", "soured"]}, {"answer": "soused", "hint": "synonyms for soused", "clues": ["soak", "sop", "drench", "hit it up", "souse", "dowse", "dip", "plunge", "dunk", "douse", "inebriate"]}, {"answer": "sown", "hint": "synonyms for sown", "clues": ["inseminate", "seed", "sow", "sow in"]}, {"answer": "spare", "hint": "synonyms for spare", "clues": ["give up", "dispense with", "part with", "save", "spare"]}, {"answer": "sparing", "hint": "synonyms for sparing", "clues": ["spar", "dispense with", "give up", "part with", "save"]}, {"answer": "sparkling", "hint": "synonyms for sparkling", "clues": ["effervesce", "coruscate", "spark", "scintillate", "sparkle", "form bubbles", "froth", "foam", "fizz", "sparkling"]}, {"answer": "spattered", "hint": "synonyms for spattered", "clues": ["sprinkle", "spatter", "splosh", "splash", "spit", "swash", "pitter-patter"]}, {"answer": "spayed", "hint": "synonyms for spayed", "clues": ["spay", "neuter", "alter", "castrate", "spayed"]}, {"answer": "speaking", "hint": "synonyms for speaking", "clues": ["mouth", "speak", "utter", "address", "verbalise", "talk"]}, {"answer": "specialised", "hint": "synonyms for specialised", "clues": ["narrow", "narrow down", "particularize", "specify", "speciate", "differentiate", "specialise"]}, {"answer": "specialized", "hint": "synonyms for specialized", "clues": ["narrow", "narrow down", "particularize", "specify", "speciate", "differentiate", "specialise"]}, {"answer": "specified", "hint": "synonyms for specified", "clues": ["narrow", "pin down", "set apart", "assign", "stipulate", "nail down", "qualify", "fix", "delimit", "specialise", "define", "set", "designate", "condition", "narrow down", "determine", "particularize", "specify", "destine", "limit", "delineate", "delimitate", "intend", "peg down", "specified"]}, {"answer": "spellbinding", "hint": "synonyms for spellbinding", "clues": ["spellbind", "mesmerise", "grip", "magnetize", "fascinate", "bewitch", "transfix", "entrance"]}, {"answer": "spellbound", "hint": "synonyms for spellbound", "clues": ["spellbind", "mesmerise", "grip", "magnetize", "fascinate", "bewitch", "transfix", "entrance", "spellbound"]}, {"answer": "spent", "hint": "synonyms for spent", "clues": ["drop", "spend", "pass", "expend", "spent"]}, {"answer": "spiked", "hint": "synonyms for spiked", "clues": ["lace", "transfix", "spike", "empale", "fortify", "spike out", "impale"]}, {"answer": "spiraling", "hint": "synonyms for spiraling", "clues": ["coil", "spiral", "corkscrew", "gyrate"]}, {"answer": "splashed", "hint": "synonyms for splashed", "clues": ["sprinkle", "spatter", "squelch", "splosh", "splash", "slop", "slush", "squish", "swash"]}, {"answer": "splattered", "hint": "synonyms for splattered", "clues": ["spatter", "splosh", "slop", "splash", "swash", "spill", "splattered"]}, {"answer": "splay", "hint": "synonyms for splay", "clues": ["dislocate", "luxate", "rotate", "slip", "spread out", "turn out", "splay"]}, {"answer": "split", "hint": "synonyms for split", "clues": ["break", "break up", "cleave", "divide", "break open", "carve up", "burst", "split up", "separate", "part", "dissever", "rive", "split"]}, {"answer": "splitting", "hint": "synonyms for splitting", "clues": ["break", "break up", "cleave", "divide", "break open", "carve up", "dissever", "burst", "split up", "separate", "part", "split", "rive", "splitting"]}, {"answer": "spoiled", "hint": "synonyms for spoiled", "clues": ["botch up", "bollix", "pamper", "bollocks", "queer", "bobble", "muff", "plunder", "bilk", "indulge", "violate", "impair", "baffle", "mess up", "mollycoddle", "frustrate", "baby", "cocker", "scotch", "deflower", "fumble", "louse up", "coddle", "foul up", "thwart", "botch", "bumble", "despoil", "muck up", "spoil", "cross", "rape", "flub", "bollix up", "fluff", "bollocks up", "bungle", "itch", "mar", "vitiate", "mishandle", "screw up", "featherbed", "bodge", "foil", "go bad", "corrupt", "cosset", "ball up", "blow", "spoiled"]}, {"answer": "spoilt", "hint": "synonyms for spoilt", "clues": ["botch up", "bollix", "pamper", "bollocks", "queer", "bobble", "muff", "plunder", "bilk", "indulge", "violate", "impair", "baffle", "mess up", "mollycoddle", "frustrate", "baby", "cocker", "scotch", "deflower", "fumble", "louse up", "coddle", "foul up", "thwart", "botch", "bumble", "despoil", "muck up", "spoil", "cross", "rape", "flub", "bollix up", "fluff", "bollocks up", "bungle", "itch", "mar", "vitiate", "mishandle", "screw up", "featherbed", "bodge", "foil", "go bad", "corrupt", "cosset", "ball up", "blow"]}, {"answer": "spoken", "hint": "synonyms for spoken", "clues": ["mouth", "speak", "utter", "address", "verbalise", "talk", "spoken"]}, {"answer": "sporting", "hint": "synonyms for sporting", "clues": ["frisk", "gambol", "feature", "cavort", "frolic", "boast", "sport", "lark", "run around", "rollick", "skylark", "lark about", "disport", "romp"]}, {"answer": "spotted", "hint": "synonyms for spotted", "clues": ["recognise", "blemish", "spot", "fleck", "blob", "tell apart", "blot", "pick out", "make out", "descry", "discern", "distinguish", "espy", "spotted"]}, {"answer": "spouting", "hint": "synonyms for spouting", "clues": ["rave", "rant", "rabbit on", "spout", "spurt", "spirt", "jabber", "gush", "mouth off"]}, {"answer": "spread", "hint": "synonyms for spread", "clues": ["circulate", "circularize", "scatter", "pass around", "propagate", "disperse", "spread out", "overspread", "diffuse", "fan out", "go around", "broadcast", "disseminate", "unfold", "open", "distribute", "spread"]}, {"answer": "sprouted", "hint": "synonyms for sprouted", "clues": ["sprout", "bourgeon", "shoot", "germinate", "pullulate", "spud", "stock", "burgeon forth"]}, {"answer": "spruce", "hint": "synonyms for spruce", "clues": ["smarten up", "tittivate", "slick up", "spruce up", "spiff up", "spruce"]}, {"answer": "spurned", "hint": "synonyms for spurned", "clues": ["turn down", "pooh-pooh", "disdain", "reject", "spurn", "scorn", "freeze off", "spurned"]}, {"answer": "spurting", "hint": "synonyms for spurting", "clues": ["spurt", "spirt", "forge", "gush", "spout"]}, {"answer": "squalling", "hint": "synonyms for squalling", "clues": ["holler", "waul", "yell", "call", "cry", "shout", "squall", "scream", "wawl", "hollo", "shout out"]}, {"answer": "squandered", "hint": "synonyms for squandered", "clues": ["ware", "consume", "waste", "blow", "squander"]}, {"answer": "squashed", "hint": "synonyms for squashed", "clues": ["squelch", "mash", "squeeze", "crush", "squash"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["crouch", "hunker down", "scrunch up", "scrunch", "hunker", "squat"]}, {"answer": "squeaking", "hint": "synonyms for squeaking", "clues": ["whine", "screech", "squeak", "skreak", "creak"]}, {"answer": "squealing", "hint": "synonyms for squealing", "clues": ["fink", "confess", "squeal", "oink"]}, {"answer": "squelched", "hint": "synonyms for squelched", "clues": ["squelch", "splosh", "slop", "splash", "quench", "squash", "crush", "mash", "quell", "squish", "squeeze"]}, {"answer": "squinched", "hint": "synonyms for squinched", "clues": ["squinch", "cringe", "quail", "shrink", "recoil", "squint", "flinch", "wince", "funk"]}, {"answer": "squirting", "hint": "synonyms for squirting", "clues": ["squirt", "squeeze out", "force out", "eject"]}, {"answer": "stabbing", "hint": "synonyms for stabbing", "clues": ["jab", "dig", "prod", "poke", "knife", "stab", "stabbing"]}, {"answer": "stabilising", "hint": "synonyms for stabilising", "clues": ["stabilise", "steady", "brace", "stabilising"]}, {"answer": "stabilized", "hint": "synonyms for stabilized", "clues": ["stabilise", "steady", "brace", "stabilized"]}, {"answer": "stabilizing", "hint": "synonyms for stabilizing", "clues": ["stabilise", "steady", "brace", "stabilizing"]}, {"answer": "staged", "hint": "synonyms for staged", "clues": ["betray", "shit", "tell on", "snoop", "denounce", "arrange", "snitch", "represent", "sleuth", "rat", "give away", "stag", "grass", "shop", "spy", "staged"]}, {"answer": "staggering", "hint": "synonyms for staggering", "clues": ["careen", "reel", "lurch", "swag", "flounder", "keel", "distribute", "stagger"]}, {"answer": "stained", "hint": "synonyms for stained", "clues": ["maculate", "stain", "sully", "defile", "tarnish", "stained"]}, {"answer": "standing", "hint": "synonyms for standing", "clues": ["digest", "support", "abide", "bear", "endure", "stand up", "tolerate", "place upright", "suffer", "resist", "put up", "remain firm", "fend", "stand", "stomach", "brook", "stick out"]}, {"answer": "starting", "hint": "synonyms for starting", "clues": ["set off", "start", "originate", "go", "take up", "start out", "bulge out", "get down", "pop", "lead off", "set forth", "get", "come out", "protrude", "pop out", "startle", "embark on", "begin", "commence", "initiate", "depart", "set about", "jump", "start up", "take off", "bulge", "get going", "part"]}, {"answer": "startled", "hint": "synonyms for startled", "clues": ["startle", "galvanize", "start", "jump"]}, {"answer": "startling", "hint": "synonyms for startling", "clues": ["startle", "galvanize", "start", "jump", "startling"]}, {"answer": "starved", "hint": "synonyms for starved", "clues": ["lust", "starve", "thirst", "crave", "hunger", "famish"]}, {"answer": "starving", "hint": "synonyms for starving", "clues": ["lust", "starve", "thirst", "crave", "hunger", "famish", "starving"]}, {"answer": "stated", "hint": "synonyms for stated", "clues": ["tell", "submit", "express", "put forward", "state", "say", "posit"]}, {"answer": "steadied", "hint": "synonyms for steadied", "clues": ["stabilise", "becalm", "calm", "steady", "brace", "steadied"]}, {"answer": "steady", "hint": "synonyms for steady", "clues": ["stabilise", "becalm", "calm", "brace", "steady"]}, {"answer": "steadying", "hint": "synonyms for steadying", "clues": ["stabilise", "becalm", "calm", "steady", "brace"]}, {"answer": "steep", "hint": "synonyms for steep", "clues": ["absorb", "infuse", "immerse", "plunge", "engulf", "soak up", "engross", "steep"]}, {"answer": "stemmed", "hint": "synonyms for stemmed", "clues": ["stem", "halt", "stanch", "stemmed"]}, {"answer": "sterilised", "hint": "synonyms for sterilised", "clues": ["unsex", "sterilise", "desexualise", "desex", "fix"]}, {"answer": "sterilized", "hint": "synonyms for sterilized", "clues": ["unsex", "sterilise", "desexualise", "desex", "fix", "sterilized"]}, {"answer": "stewed", "hint": "synonyms for stewed", "clues": ["grudge", "stew", "grizzle", "brood", "stewed"]}, {"answer": "sticking", "hint": "synonyms for sticking", "clues": ["stupefy", "stick to", "stay put", "lodge", "flummox", "gravel", "hold fast", "amaze", "nonplus", "puzzle", "get", "stick around", "perplex", "baffle", "wedge", "dumbfound", "pose", "beat", "bind", "stay", "cleave", "cohere", "cling", "vex", "sting", "stick by", "bond", "bewilder", "adhere", "deposit", "stand by", "stick", "mystify"]}, {"answer": "stifled", "hint": "synonyms for stifled", "clues": ["muffle", "asphyxiate", "suffocate", "choke", "smother", "stifle", "dampen", "repress", "strangle"]}, {"answer": "stifling", "hint": "synonyms for stifling", "clues": ["muffle", "asphyxiate", "suffocate", "choke", "smother", "stifle", "dampen", "repress", "strangle", "stifling"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["ease", "quiet", "hush", "calm", "tranquillise", "silence", "shut up", "quieten", "calm down", "allay", "hush up", "lull", "relieve", "still"]}, {"answer": "stimulated", "hint": "synonyms for stimulated", "clues": ["arouse", "stimulate", "have", "cause", "shake", "get", "energise", "perk up", "stir", "hasten", "make", "shake up", "rush", "brace", "excite", "provoke", "induce"]}, {"answer": "stimulating", "hint": "synonyms for stimulating", "clues": ["arouse", "stimulate", "have", "cause", "shake", "get", "energise", "perk up", "stir", "hasten", "make", "shake up", "rush", "brace", "excite", "provoke", "induce", "stimulating"]}, {"answer": "stinging", "hint": "synonyms for stinging", "clues": ["burn", "bite", "sting", "twinge", "stick", "prick"]}, {"answer": "stinting", "hint": "synonyms for stinting", "clues": ["scant", "stint", "scrimp", "skimp"]}, {"answer": "stirred", "hint": "synonyms for stirred", "clues": ["call down", "call forth", "arouse", "stimulate", "conjure", "agitate", "shake", "invoke", "shift", "touch", "stir", "put forward", "shake up", "raise", "bring up", "budge", "excite", "conjure up", "evoke", "stirred"]}, {"answer": "stirring", "hint": "synonyms for stirring", "clues": ["call down", "call forth", "arouse", "stimulate", "conjure", "agitate", "shake", "invoke", "shift", "touch", "stir", "put forward", "shake up", "raise", "bring up", "budge", "excite", "conjure up", "evoke", "stirring"]}, {"answer": "stitched", "hint": "synonyms for stitched", "clues": ["run up", "sew together", "sew", "stitch"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["sprout", "stock up", "stockpile", "carry", "buy in", "stock"]}, {"answer": "stocked", "hint": "synonyms for stocked", "clues": ["sprout", "stock up", "stockpile", "carry", "stock", "buy in", "stocked"]}, {"answer": "stockinged", "hint": "synonyms for stockinged", "clues": ["sprout", "stock up", "stockpile", "carry", "stock", "buy in", "stockinged"]}, {"answer": "stooped", "hint": "synonyms for stooped", "clues": ["lower oneself", "stoop", "condescend", "bow", "bend", "crouch", "stooped"]}, {"answer": "stooping", "hint": "synonyms for stooping", "clues": ["lower oneself", "stoop", "condescend", "bow", "bend", "crouch"]}, {"answer": "stopped", "hint": "synonyms for stopped", "clues": ["barricade", "turn back", "bar", "intercept", "discontinue", "stop", "arrest", "terminate", "block up", "blockade", "kibosh", "quit", "hold on", "cease", "stop over", "break", "block off", "give up", "block", "check", "end", "break off", "halt", "contain", "finish", "lay off", "hold back", "stopped"]}, {"answer": "straggling", "hint": "synonyms for straggling", "clues": ["sprawl", "sidetrack", "digress", "straggle", "depart", "straggling"]}, {"answer": "strained", "hint": "synonyms for strained", "clues": ["filtrate", "stress", "tense", "filter out", "try", "strain", "deform", "distort", "reach", "separate out", "extend", "sieve", "strive", "puree", "tense up", "filter", "sift"]}, {"answer": "straining", "hint": "synonyms for straining", "clues": ["filtrate", "stress", "tense", "filter out", "try", "strain", "deform", "distort", "reach", "separate out", "extend", "sieve", "strive", "puree", "tense up", "filter", "sift"]}, {"answer": "stranded", "hint": "synonyms for stranded", "clues": ["ground", "maroon", "strand", "run aground"]}, {"answer": "strangled", "hint": "synonyms for strangled", "clues": ["gag", "muffle", "halter", "suffocate", "choke", "cramp", "smother", "stifle", "hamper", "strangulate", "repress", "throttle", "strangle"]}, {"answer": "strapping", "hint": "synonyms for strapping", "clues": ["slash", "lather", "whip", "strap", "trounce", "flog", "welt", "strapping"]}, {"answer": "stray", "hint": "synonyms for stray", "clues": ["ramble", "digress", "swan", "divagate", "vagabond", "err", "wander", "drift", "tramp", "rove", "cast", "range", "roll", "roam", "stray"]}, {"answer": "straying", "hint": "synonyms for straying", "clues": ["ramble", "digress", "stray", "swan", "divagate", "vagabond", "err", "wander", "drift", "tramp", "rove", "cast", "range", "roll", "roam"]}, {"answer": "streaming", "hint": "synonyms for streaming", "clues": ["well out", "rain buckets", "swarm", "pullulate", "teem", "pelt", "stream", "pour", "rain cats and dogs"]}, {"answer": "strengthened", "hint": "synonyms for strengthened", "clues": ["tone", "beef up", "fortify", "tone up", "strengthen"]}, {"answer": "stressed", "hint": "synonyms for stressed", "clues": ["stress", "emphasize", "try", "punctuate", "strain", "accentuate", "accent"]}, {"answer": "stretch", "hint": "synonyms for stretch", "clues": ["load", "stretch along", "adulterate", "dilute", "debase", "extend", "elongate", "unfold", "stretch out", "stretch"]}, {"answer": "stretched", "hint": "synonyms for stretched", "clues": ["stretch", "load", "stretch along", "adulterate", "dilute", "debase", "extend", "elongate", "unfold", "stretch out"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["attain", "take up", "hit", "shine", "mint", "collide with", "assume", "walk out", "chance upon", "affect", "come upon", "fall upon", "expunge", "scratch", "impress", "fall", "coin", "excise", "take", "happen upon", "light upon", "discover", "come to", "strickle", "come across", "run into", "move", "impinge on", "striking"]}, {"answer": "striped", "hint": "synonyms for striped", "clues": ["despoil", "discase", "strip down", "leach", "stripe", "pillage", "dismantle", "plunder", "divest", "uncase", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress"]}, {"answer": "stripped", "hint": "synonyms for stripped", "clues": ["despoil", "discase", "strip down", "leach", "pillage", "dismantle", "plunder", "divest", "uncase", "strip", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress", "stripped"]}, {"answer": "strong-arm", "hint": "synonyms for strong-arm", "clues": ["push around", "browbeat", "hector", "bullyrag", "bully", "boss around", "strong-arm"]}, {"answer": "struck", "hint": "synonyms for struck", "clues": ["attain", "take up", "hit", "shine", "mint", "collide with", "assume", "walk out", "chance upon", "affect", "come upon", "fall upon", "expunge", "scratch", "impress", "fall", "coin", "excise", "take", "happen upon", "light upon", "discover", "come to", "strickle", "come across", "run into", "move", "impinge on", "struck"]}, {"answer": "struggling", "hint": "synonyms for struggling", "clues": ["skin", "fight", "scramble", "shin", "sputter", "clamber", "struggle", "contend", "shinny", "struggling"]}, {"answer": "strung", "hint": "synonyms for strung", "clues": ["thread", "draw", "string along", "string", "string up", "strung"]}, {"answer": "stuck", "hint": "synonyms for stuck", "clues": ["stupefy", "stick to", "stay put", "lodge", "flummox", "gravel", "hold fast", "amaze", "nonplus", "puzzle", "get", "stick around", "perplex", "baffle", "wedge", "dumbfound", "pose", "beat", "bind", "stay", "cleave", "cohere", "cling", "vex", "sting", "stick by", "bond", "bewilder", "adhere", "deposit", "stand by", "stick", "mystify", "stuck"]}, {"answer": "studied", "hint": "synonyms for studied", "clues": ["examine", "read", "learn", "meditate", "canvass", "analyse", "consider", "contemplate", "take", "study", "hit the books", "studied"]}, {"answer": "stuffed", "hint": "synonyms for stuffed", "clues": ["gormandize", "ingurgitate", "binge", "farce", "glut", "squeeze", "lug", "thrust", "shove", "englut", "engorge", "choke up", "pig out", "overgorge", "satiate", "overeat", "block", "overindulge", "scarf out", "gorge", "stuff", "stuffed"]}, {"answer": "stung", "hint": "synonyms for stung", "clues": ["burn", "bite", "sting", "twinge", "stick", "prick", "stung"]}, {"answer": "stunned", "hint": "synonyms for stunned", "clues": ["stupefy", "daze", "stun", "sandbag", "bedaze", "stunned"]}, {"answer": "stunning", "hint": "synonyms for stunning", "clues": ["stupefy", "daze", "stun", "sandbag", "bedaze", "stunning"]}, {"answer": "stupefied", "hint": "synonyms for stupefied", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "besot", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "stun", "vex", "bewilder", "stick", "mystify", "stupefied"]}, {"answer": "stupefying", "hint": "synonyms for stupefying", "clues": ["stupefy", "flummox", "gravel", "amaze", "nonplus", "puzzle", "besot", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "stun", "vex", "bewilder", "stick", "mystify"]}, {"answer": "subdued", "hint": "synonyms for subdued", "clues": ["quash", "crucify", "inhibit", "overcome", "stamp down", "subdue", "tame", "conquer", "subjugate", "repress", "suppress", "get over", "subordinate", "master", "reduce", "surmount", "keep down", "mortify", "curb", "chasten"]}, {"answer": "subjugated", "hint": "synonyms for subjugated", "clues": ["repress", "subdue", "subject", "quash", "reduce", "subjugate", "keep down"]}, {"answer": "sublimate", "hint": "synonyms for sublimate", "clues": ["distill", "subtilize", "purify", "sublime", "make pure", "rarefy"]}, {"answer": "sublimated", "hint": "synonyms for sublimated", "clues": ["sublimate", "rarefy", "distill", "subtilize", "purify", "make pure"]}, {"answer": "submerged", "hint": "synonyms for submerged", "clues": ["submerge", "drown", "deluge", "inundate", "overwhelm"]}, {"answer": "subscribed", "hint": "synonyms for subscribed", "clues": ["support", "subscribe to", "pledge", "sign", "take", "subscribed"]}, {"answer": "substantiating", "hint": "synonyms for substantiating", "clues": ["incarnate", "support", "actualise", "confirm", "realize", "sustain", "body forth", "affirm", "substantiate", "corroborate", "embody", "substantiating"]}, {"answer": "substitute", "hint": "synonyms for substitute", "clues": ["deputize", "interchange", "replace", "fill in", "stand in", "step in", "exchange", "sub", "substitute"]}, {"answer": "succeeding", "hint": "synonyms for succeeding", "clues": ["deliver the goods", "bring home the bacon", "win", "follow", "come after", "come through", "succeed"]}, {"answer": "suckled", "hint": "synonyms for suckled", "clues": ["nurse", "suckle", "breastfeed", "wet-nurse", "give suck", "suck", "lactate"]}, {"answer": "suffering", "hint": "synonyms for suffering", "clues": ["digest", "support", "lose", "abide", "have", "bear", "suffer", "sustain", "ache", "get", "stomach", "meet", "endure", "tolerate", "put up", "hurt", "stand", "brook", "stick out"]}, {"answer": "suffocating", "hint": "synonyms for suffocating", "clues": ["gag", "asphyxiate", "suffocate", "choke", "smother", "stifle", "strangle", "suffocating"]}, {"answer": "suited", "hint": "synonyms for suited", "clues": ["suit", "fit", "accommodate", "befit", "become", "beseem", "suited"]}, {"answer": "sunk", "hint": "synonyms for sunk", "clues": ["lapse", "slide down", "sink", "drop", "go down", "subside", "bury", "go under", "dip", "drop down", "fall off", "slump", "pass", "settle", "sunk"]}, {"answer": "sunken", "hint": "synonyms for sunken", "clues": ["lapse", "slide down", "sink", "drop", "go down", "subside", "bury", "go under", "dip", "drop down", "fall off", "slump", "pass", "settle", "sunken"]}, {"answer": "supercharged", "hint": "synonyms for supercharged", "clues": ["supercharge", "advance", "pressurise", "boost"]}, {"answer": "supervised", "hint": "synonyms for supervised", "clues": ["superintend", "supervise", "manage", "oversee", "monitor"]}, {"answer": "supported", "hint": "synonyms for supported", "clues": ["support", "digest", "fend for", "abide", "back up", "bear", "indorse", "suffer", "brook", "sustain", "keep going", "plump for", "affirm", "substantiate", "underpin", "corroborate", "stomach", "hold up", "back", "patronise", "confirm", "defend", "subscribe", "endure", "tolerate", "patronage", "put up", "plunk for", "hold", "stand", "bear out", "stick out"]}, {"answer": "supporting", "hint": "synonyms for supporting", "clues": ["support", "digest", "fend for", "abide", "back up", "bear", "indorse", "suffer", "brook", "sustain", "keep going", "plump for", "affirm", "substantiate", "underpin", "corroborate", "stomach", "hold up", "back", "patronise", "confirm", "defend", "subscribe", "endure", "tolerate", "patronage", "put up", "plunk for", "hold", "stand", "bear out", "stick out"]}, {"answer": "supposed", "hint": "synonyms for supposed", "clues": ["suppose", "say", "guess", "conjecture", "reckon", "speculate", "think", "theorise", "hypothesise", "hypothecate", "presuppose", "imagine", "opine"]}, {"answer": "suppressed", "hint": "synonyms for suppressed", "clues": ["bottle up", "inhibit", "stamp down", "oppress", "subdue", "curb", "conquer", "crush", "repress", "suppress"]}, {"answer": "surface", "hint": "synonyms for surface", "clues": ["show up", "come up", "rise", "coat", "turn up", "come out", "come on", "rise up", "surface"]}, {"answer": "surging", "hint": "synonyms for surging", "clues": ["heave", "tide", "soar", "zoom", "soar upwards", "soar up", "scend", "surge", "billow", "surging"]}, {"answer": "surmounted", "hint": "synonyms for surmounted", "clues": ["get over", "surpass", "master", "outdo", "surmount", "outstrip", "overcome", "exceed", "outmatch", "outperform", "subdue", "scale", "outgo"]}, {"answer": "surpassing", "hint": "synonyms for surpassing", "clues": ["travel by", "surpass", "pass by", "transcend", "outdo", "outstrip", "surmount", "stand out", "exceed", "outmatch", "go by", "excel", "outperform", "go past", "pass", "outgo"]}, {"answer": "surrounded", "hint": "synonyms for surrounded", "clues": ["besiege", "hem in", "environ", "circumvent", "wall", "ring", "border", "fence", "smother", "beleaguer", "palisade", "skirt", "fence in", "surround"]}, {"answer": "surrounding", "hint": "synonyms for surrounding", "clues": ["besiege", "hem in", "environ", "circumvent", "wall", "ring", "border", "fence", "smother", "beleaguer", "palisade", "skirt", "fence in", "surround"]}, {"answer": "surviving", "hint": "synonyms for surviving", "clues": ["hold up", "live", "go", "hold out", "come through", "pull through", "outlast", "endure", "live on", "exist", "make it", "outlive", "last", "survive", "pull round", "subsist", "surviving"]}, {"answer": "suspended", "hint": "synonyms for suspended", "clues": ["freeze", "set aside", "debar", "suspend"]}, {"answer": "sustained", "hint": "synonyms for sustained", "clues": ["support", "keep", "keep up", "prolong", "have", "suffer", "nourish", "sustain", "nurture", "get", "affirm", "substantiate", "corroborate", "hold up", "confirm", "hold", "maintain"]}, {"answer": "swagger", "hint": "synonyms for swagger", "clues": ["prance", "cock", "tittup", "sashay", "bully", "strut", "bluster", "browbeat", "swash", "ruffle", "swagger"]}, {"answer": "swaggering", "hint": "synonyms for swaggering", "clues": ["prance", "cock", "tittup", "sashay", "bully", "strut", "bluster", "browbeat", "swash", "ruffle", "swagger"]}, {"answer": "swank", "hint": "synonyms for swank", "clues": ["show off", "flaunt", "flash", "ostentate", "swank"]}, {"answer": "sweeping", "hint": "synonyms for sweeping", "clues": ["cross", "tangle", "sail", "drag", "drag in", "swing", "swing out", "broom", "brush", "sweep", "sweep up", "embroil", "traverse", "span"]}, {"answer": "swell", "hint": "synonyms for swell", "clues": ["puff up", "swell up", "tumesce", "well", "tumefy"]}, {"answer": "swelled", "hint": "synonyms for swelled", "clues": ["puff up", "tumesce", "swell", "tumefy", "well up", "swelled"]}, {"answer": "swept", "hint": "synonyms for swept", "clues": ["cross", "tangle", "sail", "drag", "drag in", "swing", "swing out", "broom", "brush", "sweep", "sweep up", "embroil", "traverse", "span", "swept"]}, {"answer": "swinging", "hint": "synonyms for swinging", "clues": ["singe", "drop", "sway", "swing", "dangle", "sweep", "get around", "swing out", "swing over"]}, {"answer": "swollen", "hint": "synonyms for swollen", "clues": ["puff up", "tumesce", "swell", "tumefy", "well up", "swollen"]}, {"answer": "swooning", "hint": "synonyms for swooning", "clues": ["pass out", "conk", "faint", "swoon"]}, {"answer": "sworn", "hint": "synonyms for sworn", "clues": ["aver", "imprecate", "swear", "rely", "curse", "affirm", "swan", "depone", "avow", "cuss", "assert", "depose", "bank", "trust", "verify", "blaspheme", "sworn"]}, {"answer": "tagged", "hint": "synonyms for tagged", "clues": ["chase", "label", "dog", "tail", "chase after", "track", "go after", "mark", "give chase", "tag", "tagged"]}, {"answer": "tailed", "hint": "synonyms for tailed", "clues": ["chase", "dog", "bob", "tail", "dock", "chase after", "track", "go after", "give chase", "tag", "tailed"]}, {"answer": "tailored", "hint": "synonyms for tailored", "clues": ["cut", "orient", "tailor-make", "sew", "tailor"]}, {"answer": "tainted", "hint": "synonyms for tainted", "clues": ["sully", "corrupt", "cloud", "infect", "defile", "taint", "tainted"]}, {"answer": "taken", "hint": "synonyms for taken", "clues": ["claim", "guide", "take up", "shoot", "pack", "deal", "film", "withdraw", "get hold of", "submit", "pick out", "rent", "acquire", "hire", "consume", "direct", "ingest", "subscribe to", "get", "call for", "conduct", "look at", "take away", "take aim", "need", "consider", "take", "necessitate", "demand", "study", "admit", "charter", "lease", "hold", "assume", "strike", "take on", "read", "choose", "select", "remove", "postulate", "accept", "learn", "have", "train", "aim", "engage", "use up", "bring", "require", "exact", "carry", "convey", "adopt", "make", "ask", "fill", "contain", "contract", "drive", "occupy", "lead", "involve"]}, {"answer": "taking", "hint": "synonyms for taking", "clues": ["claim", "guide", "take up", "shoot", "pack", "deal", "film", "withdraw", "get hold of", "submit", "pick out", "rent", "acquire", "hire", "consume", "direct", "ingest", "subscribe to", "get", "call for", "conduct", "look at", "take away", "take aim", "need", "consider", "take", "necessitate", "demand", "study", "admit", "charter", "lease", "hold", "assume", "strike", "take on", "read", "choose", "select", "remove", "postulate", "accept", "learn", "have", "train", "aim", "engage", "use up", "bring", "require", "exact", "carry", "convey", "adopt", "make", "ask", "fill", "contain", "contract", "drive", "occupy", "lead", "involve", "taking"]}, {"answer": "tame", "hint": "synonyms for tame", "clues": ["domesticate", "naturalise", "reclaim", "tone down", "subdue", "moderate", "chasten", "domesticise", "cultivate", "tame"]}, {"answer": "tamed", "hint": "synonyms for tamed", "clues": ["domesticate", "naturalise", "moderate", "reclaim", "tone down", "subdue", "tame", "chasten", "domesticise", "cultivate"]}, {"answer": "tangled", "hint": "synonyms for tangled", "clues": ["tangle", "knot", "ravel", "drag", "drag in", "mat", "sweep up", "sweep", "snarl", "embroil", "tousle", "dishevel"]}, {"answer": "tantalising", "hint": "synonyms for tantalising", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag", "tantalising"]}, {"answer": "tantalizing", "hint": "synonyms for tantalizing", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag", "tantalizing"]}, {"answer": "taped", "hint": "synonyms for taped", "clues": ["knock", "bug", "videotape", "intercept", "tape", "tapdance", "tip", "record", "wiretap", "rap", "exploit", "pink", "solicit", "beg"]}, {"answer": "tapped", "hint": "synonyms for tapped", "clues": ["knock", "bug", "intercept", "tapdance", "tip", "wiretap", "solicit", "rap", "exploit", "tap", "pink", "beg", "tapped"]}, {"answer": "tarry", "hint": "synonyms for tarry", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "footle", "mill about", "hang around", "lounge", "tarry"]}, {"answer": "tattling", "hint": "synonyms for tattling", "clues": ["prattle", "palaver", "chatter", "peach", "babble", "tittle-tattle", "talk", "sing", "spill the beans", "blab out", "twaddle", "prate", "clack", "gabble", "blab", "let the cat out of the bag", "blabber", "tattle", "gibber", "maunder", "babble out", "piffle", "tattling"]}, {"answer": "taunting", "hint": "synonyms for taunting", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag"]}, {"answer": "tearing", "hint": "synonyms for tearing", "clues": ["tear", "deplumate", "snap", "shoot down", "buck", "shoot", "rupture", "pluck", "pull", "displume", "charge", "bust"]}, {"answer": "teased", "hint": "synonyms for teased", "clues": ["rally", "ride", "loosen", "tease apart", "razz", "pester", "badger", "fluff", "bait", "tantalise", "taunt", "cod", "card", "bug", "twit", "beleaguer", "tease", "rag"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["rally", "ride", "loosen", "tease apart", "razz", "pester", "badger", "fluff", "bait", "tantalise", "taunt", "cod", "card", "bug", "twit", "beleaguer", "tease", "rag", "teasing"]}, {"answer": "teeming", "hint": "synonyms for teeming", "clues": ["swarm", "pullulate", "teem", "stream", "pour"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["recount", "differentiate", "assure", "enjoin", "severalize", "secernate", "recite", "distinguish", "secern", "state", "narrate", "evidence", "say", "order", "tell apart", "tell", "separate"]}, {"answer": "tempered", "hint": "synonyms for tempered", "clues": ["anneal", "temper", "mollify", "harden", "normalize", "season", "moderate", "chasten"]}, {"answer": "tempering", "hint": "synonyms for tempering", "clues": ["anneal", "temper", "mollify", "harden", "normalize", "season", "moderate", "chasten"]}, {"answer": "tempting", "hint": "synonyms for tempting", "clues": ["invite", "tempt", "charm", "influence", "lure", "allure", "entice"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["tenderise", "offer", "bid", "tender"]}, {"answer": "tending", "hint": "synonyms for tending", "clues": ["incline", "tend", "lean", "be given", "run"]}, {"answer": "terminated", "hint": "synonyms for terminated", "clues": ["can", "force out", "give notice", "give the axe", "stop", "fire", "terminate", "cease", "sack", "give the sack", "dismiss", "send away", "end", "displace", "finish"]}, {"answer": "tested", "hint": "synonyms for tested", "clues": ["examine", "prove", "try out", "screen", "try", "test", "quiz", "essay", "tested"]}, {"answer": "thawed", "hint": "synonyms for thawed", "clues": ["dethaw", "unfreeze", "unthaw", "thaw", "dissolve", "melt", "thawed"]}, {"answer": "thieving", "hint": "synonyms for thieving", "clues": ["glom", "cop", "hook", "knock off", "snitch", "thieve", "thieving"]}, {"answer": "thin", "hint": "synonyms for thin", "clues": ["slim down", "dilute", "melt off", "thin out", "reduce", "lose weight", "slenderize", "cut", "slim", "thin"]}, {"answer": "thinking", "hint": "synonyms for thinking", "clues": ["mean", "cogitate", "guess", "reckon", "think", "call back", "recollect", "cerebrate", "remember", "call up", "retrieve", "suppose", "consider", "believe", "conceive", "imagine", "intend", "recall", "opine"]}, {"answer": "thinned", "hint": "synonyms for thinned", "clues": ["slim down", "dilute", "melt off", "thin out", "reduce", "lose weight", "slenderize", "cut", "slim", "thin", "thinned"]}, {"answer": "threaded", "hint": "synonyms for threaded", "clues": ["thread", "meander", "wind", "draw", "weave", "string", "wander"]}, {"answer": "threatened", "hint": "synonyms for threatened", "clues": ["imperil", "jeopardise", "threaten", "peril", "menace", "endanger"]}, {"answer": "threatening", "hint": "synonyms for threatening", "clues": ["imperil", "jeopardise", "threaten", "peril", "menace", "endanger"]}, {"answer": "thrilled", "hint": "synonyms for thrilled", "clues": ["vibrate", "tickle pink", "shudder", "throb", "exalt", "inebriate", "beatify", "tickle", "shiver", "thrill", "exhilarate"]}, {"answer": "thrilling", "hint": "synonyms for thrilling", "clues": ["vibrate", "tickle pink", "shudder", "throb", "exalt", "inebriate", "beatify", "tickle", "shiver", "thrill", "exhilarate"]}, {"answer": "thriving", "hint": "synonyms for thriving", "clues": ["thrive", "flourish", "fly high", "prosper", "expand", "boom", "thriving"]}, {"answer": "throbbing", "hint": "synonyms for throbbing", "clues": ["pulse", "shudder", "shiver", "thrill", "pulsate", "throb", "throbbing"]}, {"answer": "thronged", "hint": "synonyms for thronged", "clues": ["pile", "jam", "pack", "throng", "mob"]}, {"answer": "thrown", "hint": "synonyms for thrown", "clues": ["discombobulate", "drop", "have", "fox", "cast off", "befuddle", "cast", "project", "thrust", "throw", "make", "shake off", "shed", "confuse", "switch", "bemuse", "give", "throw away", "bedevil", "throw off", "bewilder", "confound", "contrive", "hold", "flip", "hurl"]}, {"answer": "thudding", "hint": "synonyms for thudding", "clues": ["thump", "thud", "crump", "scrunch", "thudding"]}, {"answer": "thumbed", "hint": "synonyms for thumbed", "clues": ["leaf", "riff", "hitchhike", "hitch", "flick", "flip", "riffle", "finger", "thumb", "thumbed"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["thump", "thud", "beat", "poke", "pound"]}, {"answer": "thwarted", "hint": "synonyms for thwarted", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "foil", "baffle", "thwart", "frustrate"]}, {"answer": "thwarting", "hint": "synonyms for thwarting", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "foil", "baffle", "thwart", "frustrate"]}, {"answer": "tickling", "hint": "synonyms for tickling", "clues": ["vellicate", "titillate", "tickle", "vibrate", "thrill", "tickling"]}, {"answer": "tidy", "hint": "synonyms for tidy", "clues": ["neaten", "straighten out", "straighten", "clean up", "square away", "tidy up", "tidy"]}, {"answer": "tied", "hint": "synonyms for tied", "clues": ["bind", "link", "attach", "draw", "splice", "wed", "connect", "link up", "marry", "bond", "tie"]}, {"answer": "tilted", "hint": "synonyms for tilted", "clues": ["slant", "lean", "cant", "careen", "angle", "cant over", "wobble", "shift", "tip", "tilt", "pitch", "tilted"]}, {"answer": "tinkling", "hint": "synonyms for tinkling", "clues": ["tinkle", "clink", "chink", "tink", "tinkling"]}, {"answer": "tipped", "hint": "synonyms for tipped", "clues": ["slant", "lean", "topple", "angle", "tippytoe", "tip off", "fee", "tilt", "tip", "tumble", "tap", "bung", "tipped"]}, {"answer": "tired", "hint": "synonyms for tired", "clues": ["tire out", "run down", "bore", "exhaust", "fatigue", "wear down", "sap", "tire", "wear upon", "fag out", "wear out", "jade", "wear", "fag", "outwear", "play out", "pall"]}, {"answer": "tiring", "hint": "synonyms for tiring", "clues": ["tire out", "run down", "bore", "exhaust", "fatigue", "wear down", "sap", "tire", "wear upon", "fag out", "wear out", "jade", "wear", "fag", "outwear", "play out", "pall", "tiring"]}, {"answer": "toasted", "hint": "synonyms for toasted", "clues": ["wassail", "pledge", "toast", "crisp", "crispen", "drink", "salute", "toasted"]}, {"answer": "togged", "hint": "synonyms for togged", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb", "togged"]}, {"answer": "toiling", "hint": "synonyms for toiling", "clues": ["labor", "grind", "drudge", "dig", "fag", "travail", "toil", "moil"]}, {"answer": "toned", "hint": "synonyms for toned", "clues": ["intone", "tone", "inflect", "modulate", "tone up", "strengthen", "chant"]}, {"answer": "top", "hint": "synonyms for top", "clues": ["overstep", "transcend", "pass", "top out", "clear", "exceed", "go past", "crown", "top off", "lead", "pinch", "top"]}, {"answer": "topped", "hint": "synonyms for topped", "clues": ["overstep", "transcend", "top", "top out", "clear", "exceed", "go past", "lead", "crown", "top off", "pass", "pinch", "topped"]}, {"answer": "topping", "hint": "synonyms for topping", "clues": ["overstep", "transcend", "top", "top out", "clear", "exceed", "go past", "lead", "crown", "top off", "pass", "pinch", "topping"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["overstep", "transcend", "top", "top out", "clear", "exceed", "go past", "lead", "crown", "top off", "pass", "pinch"]}, {"answer": "tormented", "hint": "synonyms for tormented", "clues": ["dun", "crucify", "bedevil", "excruciate", "torment", "torture", "rack", "rag", "frustrate"]}, {"answer": "torn", "hint": "synonyms for torn", "clues": ["tear", "deplumate", "snap", "shoot down", "buck", "shoot", "rupture", "pluck", "pull", "displume", "charge", "bust", "torn"]}, {"answer": "tortured", "hint": "synonyms for tortured", "clues": ["excruciate", "torment", "torture", "rack"]}, {"answer": "torturing", "hint": "synonyms for torturing", "clues": ["excruciate", "torment", "torture", "rack", "torturing"]}, {"answer": "total", "hint": "synonyms for total", "clues": ["tot up", "add together", "summate", "tot", "amount", "add up", "come", "number", "add", "sum", "sum up", "tally", "total"]}, {"answer": "totaled", "hint": "synonyms for totaled", "clues": ["total", "add together", "summate", "amount", "add up", "number", "add", "sum", "sum up", "tally", "tot up", "tot", "come", "totaled"]}, {"answer": "tottering", "hint": "synonyms for tottering", "clues": ["totter", "toddle", "coggle", "seesaw", "teeter", "paddle", "waddle", "dodder"]}, {"answer": "touched", "hint": "synonyms for touched", "clues": ["match", "tinge", "relate", "touch", "tint", "rival", "affect", "allude", "extend to", "advert", "concern", "impact", "stir", "bear upon", "adjoin", "refer", "touch on", "meet", "contact", "partake", "have-to doe with", "reach", "pertain", "come to", "equal", "disturb", "touched"]}, {"answer": "touching", "hint": "synonyms for touching", "clues": ["match", "tinge", "relate", "touch", "tint", "rival", "affect", "allude", "extend to", "advert", "concern", "impact", "stir", "bear upon", "adjoin", "refer", "touch on", "meet", "contact", "partake", "have-to doe with", "reach", "pertain", "come to", "equal", "disturb"]}, {"answer": "towering", "hint": "synonyms for towering", "clues": ["loom", "predominate", "hulk", "tower"]}, {"answer": "tracked", "hint": "synonyms for tracked", "clues": ["get across", "chase", "get over", "cross", "dog", "tail", "chase after", "track", "cut through", "go after", "cut across", "traverse", "give chase", "cover", "tag", "pass over", "tracked"]}, {"answer": "trained", "hint": "synonyms for trained", "clues": ["civilise", "train", "aim", "direct", "school", "discipline", "trail", "condition", "educate", "take aim", "groom", "check", "take", "develop", "prepare", "coach", "cultivate", "trained"]}, {"answer": "tranquilizing", "hint": "synonyms for tranquilizing", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull", "sedate", "tranquilizing"]}, {"answer": "tranquillising", "hint": "synonyms for tranquillising", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull", "sedate", "tranquillising"]}, {"answer": "tranquillizing", "hint": "synonyms for tranquillizing", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull", "sedate", "tranquillizing"]}, {"answer": "transfixed", "hint": "synonyms for transfixed", "clues": ["spellbind", "grip", "fascinate", "impale", "transfix", "spike", "empale"]}, {"answer": "transformed", "hint": "synonyms for transformed", "clues": ["transubstantiate", "transmute", "translate", "metamorphose", "transform"]}, {"answer": "transmitted", "hint": "synonyms for transmitted", "clues": ["convey", "send", "conduct", "channel", "beam", "channelize", "communicate", "transfer", "broadcast", "transmit", "carry", "transport", "air", "impart", "transmitted"]}, {"answer": "transposed", "hint": "synonyms for transposed", "clues": ["transpose", "transplant", "interchange", "transfer", "counterchange", "commute", "permute"]}, {"answer": "trapped", "hint": "synonyms for trapped", "clues": ["pin down", "immobilize", "ensnare", "entrap", "trammel", "pin", "snare", "trap", "trapped"]}, {"answer": "traveled", "hint": "synonyms for traveled", "clues": ["go", "journey", "travel", "trip", "jaunt", "locomote", "move around", "move"]}, {"answer": "travelled", "hint": "synonyms for travelled", "clues": ["go", "journey", "travel", "trip", "jaunt", "locomote", "move around", "move", "travelled"]}, {"answer": "treasured", "hint": "synonyms for treasured", "clues": ["value", "treasure", "cherish", "care for", "hold dear", "appreciate", "prize"]}, {"answer": "treated", "hint": "synonyms for treated", "clues": ["address", "care for", "treat", "deal", "regale", "process", "plow", "do by", "cover", "handle", "treated"]}, {"answer": "trespassing", "hint": "synonyms for trespassing", "clues": ["intrude", "overstep", "sin", "take advantage", "trespass", "transgress"]}, {"answer": "tried", "hint": "synonyms for tried", "clues": ["adjudicate", "stress", "seek", "strain", "test", "sample", "try on", "render", "examine", "prove", "essay", "hear", "try out", "try", "assay", "judge", "attempt", "taste", "tried"]}, {"answer": "trifling", "hint": "synonyms for trifling", "clues": ["piddle away", "frivol", "dally", "wanton away", "wanton", "play", "piddle", "trifle", "trifling"]}, {"answer": "trim", "hint": "synonyms for trim", "clues": ["cut back", "pare", "bring down", "snip", "crop", "reduce", "garnish", "trim down", "shave", "cut", "cut down", "trim back", "lop", "dress", "prune", "clip", "trim"]}, {"answer": "trimmed", "hint": "synonyms for trimmed", "clues": ["garnish", "trim down", "shave", "cut down", "trim back", "dress", "clip", "cut back", "pare", "trim", "bring down", "snip", "crop", "reduce", "cut", "lop", "prune", "trimmed"]}, {"answer": "tripping", "hint": "synonyms for tripping", "clues": ["set off", "spark", "spark off", "trip up", "trigger", "actuate", "travel", "trigger off", "trip", "touch off", "jaunt", "trip out", "activate", "turn on", "stumble", "tripping"]}, {"answer": "troubled", "hint": "synonyms for troubled", "clues": ["inconvenience oneself", "trouble oneself", "unhinge", "pain", "put out", "inconvenience", "cark", "incommode", "disquiet", "distract", "disorder", "perturb", "discommode", "trouble", "disturb", "ail", "upset", "disoblige", "bother"]}, {"answer": "troubling", "hint": "synonyms for troubling", "clues": ["inconvenience oneself", "trouble oneself", "unhinge", "pain", "put out", "inconvenience", "cark", "incommode", "disquiet", "distract", "disorder", "perturb", "discommode", "trouble", "disturb", "ail", "upset", "disoblige", "bother", "troubling"]}, {"answer": "trussed", "hint": "synonyms for trussed", "clues": ["bind", "tie up", "truss", "tie down", "trussed"]}, {"answer": "trusted", "hint": "synonyms for trusted", "clues": ["desire", "swear", "intrust", "rely", "confide", "believe", "hope", "bank", "commit", "trust", "trusted"]}, {"answer": "trusting", "hint": "synonyms for trusting", "clues": ["desire", "swear", "intrust", "rely", "confide", "believe", "hope", "bank", "commit", "trust"]}, {"answer": "trying", "hint": "synonyms for trying", "clues": ["adjudicate", "stress", "seek", "strain", "test", "sample", "try on", "render", "examine", "prove", "essay", "hear", "try out", "try", "assay", "judge", "attempt", "taste"]}, {"answer": "tucked", "hint": "synonyms for tucked", "clues": ["pucker", "tuck", "insert", "gather", "tucked"]}, {"answer": "turned", "hint": "synonyms for turned", "clues": ["rick", "sour", "become", "bend", "turn", "plow", "change by reversal", "plough", "ferment", "flex", "wrench", "twist", "sprain", "deform", "call on", "release", "reverse", "grow", "change state", "work", "move around", "turn over", "turned"]}, {"answer": "twin", "hint": "synonyms for twin", "clues": ["parallel", "mate", "pair", "match", "duplicate", "couple", "twin"]}, {"answer": "twinkling", "hint": "synonyms for twinkling", "clues": ["flash", "wink", "twinkle", "blink", "scintillate", "twinkling"]}, {"answer": "twinned", "hint": "synonyms for twinned", "clues": ["mate", "couple", "match", "parallel", "twin", "duplicate", "pair", "twinned"]}, {"answer": "twinning", "hint": "synonyms for twinning", "clues": ["mate", "couple", "match", "parallel", "twin", "duplicate", "pair", "twinning"]}, {"answer": "twisted", "hint": "synonyms for twisted", "clues": ["rick", "wind", "squirm", "wriggle", "sophisticate", "bend", "curve", "writhe", "turn", "worm", "twist around", "flex", "twine", "distort", "wrench", "twist", "sprain", "wrestle", "pervert", "convolute", "deform", "twisted"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["rick", "wind", "squirm", "wriggle", "sophisticate", "bend", "curve", "writhe", "turn", "worm", "twist around", "flex", "twine", "distort", "wrench", "twist", "sprain", "wrestle", "pervert", "convolute", "deform"]}, {"answer": "unbending", "hint": "synonyms for unbending", "clues": ["unwind", "decompress", "unbend", "relax", "loosen up", "straighten", "slow down"]}, {"answer": "unbent", "hint": "synonyms for unbent", "clues": ["unwind", "decompress", "unbend", "relax", "loosen up", "straighten", "slow down", "unbent"]}, {"answer": "unclad", "hint": "synonyms for unclad", "clues": ["discase", "strip down", "uncase", "strip", "unclothe", "disrobe", "undress", "peel", "unclad"]}, {"answer": "unclothed", "hint": "synonyms for unclothed", "clues": ["discase", "strip down", "uncase", "strip", "unclothe", "disrobe", "undress", "peel"]}, {"answer": "uncovered", "hint": "synonyms for uncovered", "clues": ["uncover", "reveal", "unveil", "expose", "bring out"]}, {"answer": "understanding", "hint": "synonyms for understanding", "clues": ["sympathise", "translate", "read", "understand", "interpret", "infer", "realize", "empathise", "see"]}, {"answer": "understood", "hint": "synonyms for understood", "clues": ["sympathise", "translate", "read", "understand", "interpret", "infer", "realize", "empathise", "see", "understood"]}, {"answer": "undone", "hint": "synonyms for undone", "clues": ["untie", "unwrap", "unmake", "loosen", "undo", "undone"]}, {"answer": "undressed", "hint": "synonyms for undressed", "clues": ["discase", "unclothe", "divest", "uncase", "strip", "disinvest", "strip down", "disrobe", "undress", "peel"]}, {"answer": "undulate", "hint": "synonyms for undulate", "clues": ["wave", "ruffle", "roll", "ripple", "riffle", "cockle", "flap", "undulate"]}, {"answer": "unfrozen", "hint": "synonyms for unfrozen", "clues": ["unblock", "dethaw", "unfreeze", "thaw", "free", "release", "melt", "unthaw", "dissolve", "unfrozen"]}, {"answer": "unhinged", "hint": "synonyms for unhinged", "clues": ["cark", "trouble", "unhinge", "disquiet", "distract", "disorder", "perturb"]}, {"answer": "unified", "hint": "synonyms for unified", "clues": ["mix", "commix", "merge", "amalgamate", "mingle", "unify", "unite", "unified"]}, {"answer": "unifying", "hint": "synonyms for unifying", "clues": ["mix", "commix", "merge", "amalgamate", "mingle", "unify", "unite"]}, {"answer": "united", "hint": "synonyms for united", "clues": ["link", "join", "merge", "connect", "combine", "unify", "link up", "unite"]}, {"answer": "unloaded", "hint": "synonyms for unloaded", "clues": ["drop off", "drop", "put down", "unload", "unlade", "discharge", "set down", "offload"]}, {"answer": "unnerved", "hint": "synonyms for unnerved", "clues": ["unsettle", "faze", "unnerve", "enervate"]}, {"answer": "unnerving", "hint": "synonyms for unnerving", "clues": ["unsettle", "faze", "unnerve", "enervate", "unnerving"]}, {"answer": "unsaid", "hint": "synonyms for unsaid", "clues": ["swallow", "take back", "withdraw", "unsay", "unsaid"]}, {"answer": "unsettled", "hint": "synonyms for unsettled", "clues": ["unsettle", "faze", "unnerve", "enervate"]}, {"answer": "unsexed", "hint": "synonyms for unsexed", "clues": ["unsex", "desexualise", "sterilise", "desex", "fix", "unsexed"]}, {"answer": "unstrained", "hint": "synonyms for unstrained", "clues": ["unstrain", "unwind", "loosen up", "make relaxed", "unlax", "relax"]}, {"answer": "untangled", "hint": "synonyms for untangled", "clues": ["unscramble", "disentangle", "unknot", "unravel", "unpick", "extricate", "disencumber", "untangle"]}, {"answer": "unthawed", "hint": "synonyms for unthawed", "clues": ["dethaw", "unfreeze", "unthaw", "thaw", "dissolve", "melt"]}, {"answer": "untied", "hint": "synonyms for untied", "clues": ["undo", "untie", "loosen", "unbrace", "unlace"]}, {"answer": "unveiled", "hint": "synonyms for unveiled", "clues": ["uncover", "unveil", "reveal", "bring out"]}, {"answer": "unwrapped", "hint": "synonyms for unwrapped", "clues": ["break", "reveal", "let on", "let out", "discover", "disclose", "unwrap", "expose", "give away", "bring out", "undo", "divulge", "unwrapped"]}, {"answer": "uplifted", "hint": "synonyms for uplifted", "clues": ["pick up", "uplift", "elate", "intoxicate", "lift up"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["bowl over", "tump over", "knock over", "disconcert", "discomfit", "untune", "overturn", "trouble", "tip over", "disturb", "swage", "turn over", "discompose", "upset"]}, {"answer": "upsetting", "hint": "synonyms for upsetting", "clues": ["bowl over", "tump over", "knock over", "disconcert", "discomfit", "untune", "overturn", "trouble", "tip over", "disturb", "swage", "upset", "turn over", "discompose", "upsetting"]}, {"answer": "used", "hint": "synonyms for used", "clues": ["utilize", "use", "practice", "habituate", "expend", "employ", "apply"]}, {"answer": "utilised", "hint": "synonyms for utilised", "clues": ["utilize", "use", "employ", "apply", "utilised"]}, {"answer": "utilized", "hint": "synonyms for utilized", "clues": ["utilize", "use", "employ", "apply"]}, {"answer": "utter", "hint": "synonyms for utter", "clues": ["give tongue to", "mouth", "let out", "talk", "let loose", "express", "speak", "emit", "verbalise", "utter"]}, {"answer": "uttered", "hint": "synonyms for uttered", "clues": ["give tongue to", "mouth", "let out", "talk", "let loose", "express", "speak", "utter", "emit", "verbalise", "uttered"]}, {"answer": "vacillating", "hint": "synonyms for vacillating", "clues": ["oscillate", "fluctuate", "vibrate", "waver", "hover", "vacillate", "vacillating"]}, {"answer": "vagabond", "hint": "synonyms for vagabond", "clues": ["ramble", "stray", "swan", "wander", "drift", "tramp", "rove", "cast", "range", "roll", "roam", "vagabond"]}, {"answer": "validating", "hint": "synonyms for validating", "clues": ["corroborate", "formalize", "validate", "validating"]}, {"answer": "valued", "hint": "synonyms for valued", "clues": ["value", "respect", "treasure", "rate", "valuate", "appreciate", "assess", "appraise", "esteem", "prize", "measure", "prise"]}, {"answer": "vanished", "hint": "synonyms for vanished", "clues": ["fell", "vanish", "go away", "vaporize", "disappear", "fly"]}, {"answer": "vaporized", "hint": "synonyms for vaporized", "clues": ["vaporise", "aerify", "vanish", "fly", "gasify", "evaporate", "zap", "vaporized"]}, {"answer": "varied", "hint": "synonyms for varied", "clues": ["change", "vary", "depart", "diverge", "deviate", "variegate", "motley", "alter", "varied"]}, {"answer": "varying", "hint": "synonyms for varying", "clues": ["change", "vary", "depart", "diverge", "deviate", "variegate", "motley", "alter"]}, {"answer": "veiled", "hint": "synonyms for veiled", "clues": ["hide", "veil", "obliterate", "obscure", "blot out", "veiled"]}, {"answer": "venerating", "hint": "synonyms for venerating", "clues": ["revere", "venerate", "fear", "reverence", "venerating"]}, {"answer": "vented", "hint": "synonyms for vented", "clues": ["air out", "vent", "air", "ventilate", "give vent", "vented"]}, {"answer": "ventilated", "hint": "synonyms for ventilated", "clues": ["air out", "vent", "air", "ventilate", "give vent"]}, {"answer": "verbalised", "hint": "synonyms for verbalised", "clues": ["mouth", "give tongue to", "talk", "speak", "express", "utter", "verbalise"]}, {"answer": "verbalized", "hint": "synonyms for verbalized", "clues": ["mouth", "give tongue to", "talk", "speak", "express", "utter", "verbalise", "verbalized"]}, {"answer": "verified", "hint": "synonyms for verified", "clues": ["control", "aver", "swear", "affirm", "avow", "assert", "verify", "swan", "verified"]}, {"answer": "verifying", "hint": "synonyms for verifying", "clues": ["control", "aver", "swear", "affirm", "avow", "assert", "verify", "swan"]}, {"answer": "vested", "hint": "synonyms for vested", "clues": ["enthrone", "robe", "invest", "vest", "vested"]}, {"answer": "vexed", "hint": "synonyms for vexed", "clues": ["stupefy", "annoy", "devil", "agitate", "gravel", "flummox", "worry", "rile", "amaze", "get at", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "nettle", "beat", "irritate", "raise up", "stir up", "mystify", "shake up", "nark", "stick", "vex", "bewilder", "disturb", "get to", "chafe", "commove", "rag", "bother", "vexed"]}, {"answer": "vexing", "hint": "synonyms for vexing", "clues": ["stupefy", "annoy", "devil", "agitate", "gravel", "flummox", "worry", "rile", "amaze", "get at", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "nettle", "beat", "irritate", "raise up", "stir up", "mystify", "shake up", "nark", "stick", "vex", "bewilder", "disturb", "get to", "chafe", "commove", "rag", "bother"]}, {"answer": "victimized", "hint": "synonyms for victimized", "clues": ["victimize", "diddle", "swindle", "rook", "con", "goldbrick", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "nobble", "short-change", "gip", "scam"]}, {"answer": "violated", "hint": "synonyms for violated", "clues": ["despoil", "breach", "rape", "spoil", "infract", "assault", "dishonour", "plunder", "outrage", "violate", "desecrate", "profane", "transgress", "break", "offend", "ravish", "go against"]}, {"answer": "visualised", "hint": "synonyms for visualised", "clues": ["figure", "image", "visualise", "picture", "fancy", "envision", "see", "project"]}, {"answer": "visualized", "hint": "synonyms for visualized", "clues": ["figure", "image", "visualise", "picture", "fancy", "envision", "see", "project", "visualized"]}, {"answer": "vitiated", "hint": "synonyms for vitiated", "clues": ["invalidate", "spoil", "mar", "vitiate", "subvert", "deflower", "debase", "misdirect", "pervert", "profane", "void", "corrupt", "deprave", "impair", "demoralise", "debauch"]}, {"answer": "void", "hint": "synonyms for void", "clues": ["invalidate", "avoid", "nullify", "evacuate", "vitiate", "quash", "empty", "annul"]}, {"answer": "wailing", "hint": "synonyms for wailing", "clues": ["whimper", "howl", "yaup", "wail", "ululate", "mewl", "roar", "yawl", "pule"]}, {"answer": "waiting", "hint": "synonyms for waiting", "clues": ["hold off", "expect", "await", "waitress", "look", "hold back", "waiting"]}, {"answer": "waking", "hint": "synonyms for waking", "clues": ["wake", "stir up", "awaken", "arouse", "fire up", "wake up", "come alive", "heat", "inflame", "ignite", "waking"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["wallop", "whack", "wham", "whop"]}, {"answer": "wandering", "hint": "synonyms for wandering", "clues": ["cuckold", "digress", "stray", "wind", "weave", "divagate", "vagabond", "cheat", "tramp", "cheat on", "rove", "cast", "range", "roll", "meander", "betray", "ramble", "thread", "wander", "drift", "swan", "roam"]}, {"answer": "wanted", "hint": "synonyms for wanted", "clues": ["desire", "want", "need", "require", "wanted"]}, {"answer": "wanting", "hint": "synonyms for wanting", "clues": ["desire", "want", "need", "require"]}, {"answer": "wanton", "hint": "synonyms for wanton", "clues": ["piddle away", "wanton away", "luxuriate", "piddle", "trifle", "trifle away", "wanton"]}, {"answer": "warped", "hint": "synonyms for warped", "clues": ["warp", "falsify", "garble", "heave", "distort", "buckle", "warped"]}, {"answer": "washed", "hint": "synonyms for washed", "clues": ["lave", "launder", "wash out", "lap", "rinse", "wash off", "dampen", "wash", "wash away", "moisten", "washed"]}, {"answer": "waste", "hint": "synonyms for waste", "clues": ["ware", "desolate", "squander", "do in", "macerate", "consume", "scourge", "emaciate", "run off", "lay waste to", "neutralise", "devastate", "languish", "liquidate", "pine away", "ravage", "knock off", "rot", "blow", "waste"]}, {"answer": "wasted", "hint": "synonyms for wasted", "clues": ["ware", "desolate", "squander", "do in", "macerate", "consume", "scourge", "waste", "emaciate", "run off", "lay waste to", "neutralise", "devastate", "languish", "liquidate", "pine away", "ravage", "knock off", "rot", "blow"]}, {"answer": "wavering", "hint": "synonyms for wavering", "clues": ["flutter", "fluctuate", "quiver", "weave", "waver", "vacillate", "quaver", "waffle", "hesitate", "falter", "flicker"]}, {"answer": "waxed", "hint": "synonyms for waxed", "clues": ["full", "wax", "rise", "climb", "mount", "waxed"]}, {"answer": "waxing", "hint": "synonyms for waxing", "clues": ["full", "wax", "rise", "climb", "mount"]}, {"answer": "weakened", "hint": "synonyms for weakened", "clues": ["break", "de-escalate", "countermine", "weaken", "subvert", "sabotage", "step down", "undermine", "counteract", "dampen", "soften", "damp"]}, {"answer": "weakening", "hint": "synonyms for weakening", "clues": ["break", "de-escalate", "countermine", "weaken", "subvert", "sabotage", "step down", "undermine", "counteract", "dampen", "soften", "damp"]}, {"answer": "wearied", "hint": "synonyms for wearied", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "pall", "wear upon", "fag out", "wearied"]}, {"answer": "wearing", "hint": "synonyms for wearing", "clues": ["tire out", "fall apart", "bear", "have on", "wear down", "fatigue", "don", "tire", "wear upon", "bust", "put on", "fag out", "break", "wear out", "jade", "hold out", "wear thin", "get into", "wear", "endure", "fag", "outwear", "wear off", "assume"]}, {"answer": "weary", "hint": "synonyms for weary", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "pall", "wear upon", "fag out"]}, {"answer": "wearying", "hint": "synonyms for wearying", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "pall", "wear upon", "fag out", "wearying"]}, {"answer": "weathered", "hint": "synonyms for weathered", "clues": ["brave out", "weather", "brave", "endure"]}, {"answer": "wed", "hint": "synonyms for wed", "clues": ["splice", "get married", "espouse", "marry", "tie", "hook up with", "get hitched with", "conjoin", "wed"]}, {"answer": "wedded", "hint": "synonyms for wedded", "clues": ["splice", "wed", "get married", "espouse", "marry", "tie", "hook up with", "get hitched with", "conjoin", "wedded"]}, {"answer": "wedged", "hint": "synonyms for wedged", "clues": ["squeeze", "wedge", "deposit", "lodge", "stick", "force"]}, {"answer": "wee", "hint": "synonyms for wee", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee"]}, {"answer": "weighted", "hint": "synonyms for weighted", "clues": ["slant", "weight down", "burden", "angle", "weight", "burthen"]}, {"answer": "whacked", "hint": "synonyms for whacked", "clues": ["wallop", "whack", "whop", "wham", "whacked"]}, {"answer": "whacking", "hint": "synonyms for whacking", "clues": ["wallop", "whack", "whop", "wham"]}, {"answer": "wheeled", "hint": "synonyms for wheeled", "clues": ["wheel around", "wheel", "bicycle", "bike", "cycle", "roll", "pedal", "wheeled"]}, {"answer": "whipping", "hint": "synonyms for whipping", "clues": ["worst", "scald", "whisk", "slash", "mop up", "lather", "blister", "rack up", "whip", "strap", "trounce", "flog", "pip", "welt", "whipping"]}, {"answer": "whirring", "hint": "synonyms for whirring", "clues": ["whirr", "purr", "birr", "whiz"]}, {"answer": "whitewashed", "hint": "synonyms for whitewashed", "clues": ["gloss over", "whitewash", "hush up", "sleek over"]}, {"answer": "whopping", "hint": "synonyms for whopping", "clues": ["wallop", "wham", "bop", "bash", "whop", "bonk", "whack", "whap", "sock", "whopping"]}, {"answer": "winded", "hint": "synonyms for winded", "clues": ["wreathe", "thread", "wind", "hoist", "weave", "wander", "curve", "nose", "scent", "roll", "wrap", "twine", "twist", "wind up", "meander", "lift", "winded"]}, {"answer": "winding", "hint": "synonyms for winding", "clues": ["wreathe", "thread", "wind", "hoist", "weave", "wander", "curve", "nose", "scent", "roll", "wrap", "twine", "twist", "wind up", "meander", "lift"]}, {"answer": "winking", "hint": "synonyms for winking", "clues": ["nictate", "flash", "wink", "twinkle", "blink", "blink away"]}, {"answer": "winning", "hint": "synonyms for winning", "clues": ["deliver the goods", "bring home the bacon", "gain", "pull ahead", "come through", "make headway", "succeed", "get ahead", "win", "acquire", "advance", "gain ground", "winning"]}, {"answer": "wired", "hint": "synonyms for wired", "clues": ["telegraph", "electrify", "cable", "wire"]}, {"answer": "witching", "hint": "synonyms for witching", "clues": ["jinx", "hex", "bewitch", "witch", "glamour", "enchant"]}, {"answer": "withdrawn", "hint": "synonyms for withdrawn", "clues": ["retreat", "draw", "remove", "adjourn", "withdraw", "pull back", "call back", "take back", "pull away", "sequester", "take out", "swallow", "crawfish", "take away", "draw off", "crawfish out", "move back", "retire", "pull in one's horns", "back out", "sequestrate", "back away", "take", "seclude", "unsay", "disengage", "recede", "draw back", "call in", "bow out", "recall"]}, {"answer": "withered", "hint": "synonyms for withered", "clues": ["shrivel", "fade", "shrivel up", "wither", "shrink"]}, {"answer": "withering", "hint": "synonyms for withering", "clues": ["shrivel", "fade", "shrivel up", "wither", "shrink"]}, {"answer": "wobbling", "hint": "synonyms for wobbling", "clues": ["shimmy", "shift", "careen", "wobble", "coggle", "tilt", "wobbling"]}, {"answer": "won", "hint": "synonyms for won", "clues": ["deliver the goods", "bring home the bacon", "gain", "pull ahead", "come through", "make headway", "succeed", "get ahead", "win", "acquire", "advance", "gain ground", "won"]}, {"answer": "wondering", "hint": "synonyms for wondering", "clues": ["marvel", "enquire", "question", "wonder"]}, {"answer": "woolgathering", "hint": "synonyms for woolgathering", "clues": ["daydream", "dream", "stargaze", "woolgather"]}, {"answer": "working", "hint": "synonyms for working", "clues": ["exercise", "sour", "form", "go", "make for", "forge", "function", "bring", "turn", "influence", "figure out", "wreak", "act upon", "mould", "ferment", "put to work", "solve", "work out", "act", "make", "knead", "lick", "operate", "crop", "puzzle out", "run", "work on", "process", "shape", "work", "do work", "exploit", "play", "cultivate"]}, {"answer": "worn", "hint": "synonyms for worn", "clues": ["tire out", "fall apart", "bear", "have on", "wear down", "fatigue", "don", "tire", "wear upon", "bust", "put on", "fag out", "break", "wear out", "jade", "hold out", "wear thin", "get into", "wear", "endure", "fag", "outwear", "wear off", "assume", "worn"]}, {"answer": "worried", "hint": "synonyms for worried", "clues": ["worry", "vex", "occupy", "care", "interest", "concern", "worried"]}, {"answer": "worrying", "hint": "synonyms for worrying", "clues": ["worry", "vex", "occupy", "care", "interest", "concern"]}, {"answer": "worsened", "hint": "synonyms for worsened", "clues": ["aggravate", "decline", "exasperate", "exacerbate", "worsen"]}, {"answer": "worsening", "hint": "synonyms for worsening", "clues": ["aggravate", "decline", "exasperate", "exacerbate", "worsen"]}, {"answer": "worshipped", "hint": "synonyms for worshipped", "clues": ["worship", "revere", "idolise", "hero-worship", "worshipped"]}, {"answer": "worst", "hint": "synonyms for worst", "clues": ["whip", "rack up", "mop up", "pip", "worst"]}, {"answer": "wound", "hint": "synonyms for wound", "clues": ["wreathe", "wind", "weave", "curve", "injure", "nose", "scent", "roll", "twine", "twist", "wind up", "meander", "lift", "spite", "thread", "offend", "wander", "hurt", "bruise", "wrap", "hoist", "wound"]}, {"answer": "wounded", "hint": "synonyms for wounded", "clues": ["spite", "offend", "wound", "injure", "hurt", "bruise", "wounded"]}, {"answer": "wounding", "hint": "synonyms for wounding", "clues": ["spite", "offend", "wound", "injure", "hurt", "bruise"]}, {"answer": "woven", "hint": "synonyms for woven", "clues": ["thread", "meander", "wind", "weave", "waver", "wander", "interweave", "tissue", "woven"]}, {"answer": "wrapped", "hint": "synonyms for wrapped", "clues": ["enfold", "enwrap", "wrap up", "wind", "enclose", "roll", "wrap", "envelop", "twine", "wrapped"]}, {"answer": "wrenching", "hint": "synonyms for wrenching", "clues": ["rick", "wring", "turn", "wrench", "twist", "sprain"]}, {"answer": "wriggling", "hint": "synonyms for wriggling", "clues": ["writhe", "worm", "twist", "squirm", "wriggle", "wrestle", "wriggling"]}, {"answer": "wrinkled", "hint": "synonyms for wrinkled", "clues": ["furrow", "crumple", "crease", "wrinkle", "ruckle", "scrunch up", "scrunch", "purse", "crisp"]}, {"answer": "writhed", "hint": "synonyms for writhed", "clues": ["writhe", "worm", "twist", "squirm", "wriggle", "wrestle"]}, {"answer": "writhing", "hint": "synonyms for writhing", "clues": ["writhe", "worm", "twist", "squirm", "wriggle", "wrestle", "writhing"]}, {"answer": "written", "hint": "synonyms for written", "clues": ["drop a line", "pen", "compose", "write", "indite", "publish", "spell", "save", "written"]}, {"answer": "wrought", "hint": "synonyms for wrought", "clues": ["exercise", "sour", "form", "go", "make for", "forge", "function", "bring", "turn", "influence", "figure out", "wreak", "act upon", "mould", "ferment", "put to work", "solve", "work out", "act", "make", "knead", "lick", "operate", "crop", "puzzle out", "run", "work on", "process", "shape", "work", "do work", "exploit", "play", "cultivate", "wrought"]}, {"answer": "yelled", "hint": "synonyms for yelled", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "shout out", "scream", "hollo", "yelled"]}, {"answer": "yielding", "hint": "synonyms for yielding", "clues": ["succumb", "relent", "bear", "give in", "knuckle under", "move over", "return", "afford", "yield", "render", "grant", "ease up", "give way", "give", "cede", "pay", "generate", "concede", "soften"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["slam", "roll in the hay", "spang", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "bang"]}, {"answer": "boiling", "hint": "synonyms for boiling", "clues": ["seethe", "boil", "moil", "churn", "roil"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["bolt out", "run out", "abscond", "make off", "gobble", "go off", "decamp", "beetle off", "run off", "absquatulate", "bolt"]}, {"answer": "close_up", "hint": "synonyms for close up", "clues": ["be quiet", "belt up", "dummy up", "shut up", "occlude", "fold", "block", "impede", "clam up", "keep mum", "jam", "obstruct", "button up", "close down", "close", "obturate", "shut down", "close up"]}, {"answer": "con", "hint": "synonyms for con", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "learn", "swindle", "short-change", "memorise", "gip", "scam", "goldbrick", "con"]}, {"answer": "disregarding", "hint": "synonyms for disregarding", "clues": ["disregard", "brush aside", "discount", "dismiss", "neglect", "cut", "brush off", "ignore", "snub"]}, {"answer": "hotfoot", "hint": "synonyms for hotfoot", "clues": ["hasten", "speed", "bucket along", "race", "step on it", "pelt along", "rush along", "rush", "hie", "cannonball along", "hotfoot"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["dispense", "administer", "allot", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "mete out"]}, {"answer": "multiply", "hint": "synonyms for multiply", "clues": ["breed", "procreate", "manifold", "reproduce", "multiply"]}, {"answer": "needs", "hint": "synonyms for needs", "clues": ["want", "need", "postulate", "ask", "take", "necessitate", "demand", "require", "involve", "call for"]}, {"answer": "part", "hint": "synonyms for part", "clues": ["break", "set off", "disunite", "break up", "start", "depart", "start out", "divide", "set forth", "set out", "take off", "split up", "separate", "split", "part"]}, {"answer": "piping", "hint": "synonyms for piping", "clues": ["worst", "shoot", "hit", "shrill", "mop up", "shriek", "rack up", "whip", "pipe", "pipe up", "piping"]}, {"answer": "pitter-patter", "hint": "synonyms for pitter-patter", "clues": ["patter", "sprinkle", "spit", "pitter-patter"]}, {"answer": "plop", "hint": "synonyms for plop", "clues": ["plump", "plunk", "flump", "plunk down", "plump down", "plonk", "plank", "plop"]}, {"answer": "plunk", "hint": "synonyms for plunk", "clues": ["plump", "clunk", "flump", "plunk down", "plonk", "plop", "clump", "pluck", "dive", "pick", "clop", "plunge", "plump down", "plank", "plunk"]}, {"answer": "raving", "hint": "synonyms for raving", "clues": ["rave", "jabber", "rant", "rabbit on", "gush", "mouth off", "spout", "raving"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["smell", "peck", "thwack", "reek", "taste", "smack"]}, {"answer": "smash", "hint": "synonyms for smash", "clues": ["break", "nail", "smash up", "demolish", "bankrupt", "blast", "bang up", "boom", "ruin", "dash", "crush", "smash"]}, {"answer": "soaking", "hint": "synonyms for soaking", "clues": ["hock", "hit it up", "fleece", "gazump", "hook", "pawn", "intoxicate", "inebriate", "soak", "plume", "sop", "drench", "imbue", "dowse", "souse", "pluck", "rob", "overcharge", "surcharge", "douse"]}, {"answer": "sopping", "hint": "synonyms for sopping", "clues": ["soak", "sop", "drench", "dowse", "souse", "soak through", "douse", "sopping"]}, {"answer": "abandon", "hint": "synonyms for abandon", "clues": ["desert", "vacate", "forsake", "empty", "give up", "desolate", "abandon"]}, {"answer": "abies", "hint": "synonyms for abies", "clues": ["atone", "expiate", "aby", "abies"]}, {"answer": "abode", "hint": "synonyms for abode", "clues": ["stay", "digest", "support", "abide", "stand", "bear", "endure", "tolerate", "suffer", "put up", "stomach", "brook", "stick out", "abode"]}, {"answer": "abuse", "hint": "synonyms for abuse", "clues": ["clapperclaw", "step", "mistreat", "maltreat", "ill-treat", "ill-use", "pervert", "shout", "misuse", "blackguard", "abuse"]}, {"answer": "abyss", "hint": "synonyms for abyss", "clues": ["atone", "expiate", "aby", "abyss"]}, {"answer": "accent", "hint": "synonyms for accent", "clues": ["stress", "accentuate", "emphasize", "punctuate", "accent"]}, {"answer": "accenting", "hint": "synonyms for accenting", "clues": ["stress", "emphasize", "punctuate", "accentuate", "accent"]}, {"answer": "acclaim", "hint": "synonyms for acclaim", "clues": ["herald", "hail", "spat", "clap", "applaud", "acclaim"]}, {"answer": "accord", "hint": "synonyms for accord", "clues": ["concord", "harmonize", "grant", "allot", "consort", "fit in", "agree", "accord"]}, {"answer": "account", "hint": "synonyms for account", "clues": ["calculate", "report", "describe", "answer for", "account"]}, {"answer": "accounting", "hint": "synonyms for accounting", "clues": ["account", "calculate", "report", "describe", "answer for"]}, {"answer": "accused", "hint": "synonyms for accused", "clues": ["criminate", "accuse", "charge", "impeach"]}, {"answer": "ache", "hint": "synonyms for ache", "clues": ["smart", "hurt", "yearn", "pine", "yen", "languish", "suffer", "ache"]}, {"answer": "acquiring", "hint": "synonyms for acquiring", "clues": ["take on", "adopt", "gain", "learn", "take", "grow", "develop", "acquire", "win", "evolve", "produce", "get", "assume", "acquiring"]}, {"answer": "act", "hint": "synonyms for act", "clues": ["act as", "playact", "represent", "behave", "dissemble", "do", "work", "play", "move", "pretend", "roleplay", "act"]}, {"answer": "action", "hint": "synonyms for action", "clues": ["litigate", "sue", "process", "fulfill", "carry through", "carry out", "execute", "accomplish", "action"]}, {"answer": "acts", "hint": "synonyms for acts", "clues": ["act", "act as", "playact", "represent", "behave", "dissemble", "do", "work", "play", "move", "pretend", "roleplay"]}, {"answer": "add", "hint": "synonyms for add", "clues": ["total", "lend", "add together", "summate", "add up", "bring", "supply", "sum up", "sum", "tally", "append", "impart", "tot up", "tot", "bestow", "contribute", "add"]}, {"answer": "address", "hint": "synonyms for address", "clues": ["accost", "come up to", "turn to", "treat", "call", "deal", "speak", "plow", "direct", "handle", "cover", "address"]}, {"answer": "adventure", "hint": "synonyms for adventure", "clues": ["jeopardize", "risk", "hazard", "chance", "venture", "gamble", "stake", "take a chance", "run a risk"]}, {"answer": "adventuress", "hint": "synonyms for adventuress", "clues": ["adventure", "jeopardize", "risk", "hazard", "chance", "gamble", "stake", "take a chance", "run a risk"]}, {"answer": "advert", "hint": "synonyms for advert", "clues": ["mention", "refer", "cite", "pay heed", "attend", "bring up", "give ear", "hang", "touch", "allude", "name", "advert"]}, {"answer": "advertising", "hint": "synonyms for advertising", "clues": ["promote", "advertize", "publicise", "push", "advertising"]}, {"answer": "advertizing", "hint": "synonyms for advertizing", "clues": ["promote", "advertize", "publicise", "push", "advertizing"]}, {"answer": "affect", "hint": "synonyms for affect", "clues": ["impact", "bear upon", "impress", "touch on", "sham", "feign", "regard", "dissemble", "touch", "move", "pretend", "involve", "strike", "affect"]}, {"answer": "affirmed", "hint": "synonyms for affirmed", "clues": ["aver", "support", "swear", "confirm", "verify", "swan", "avow", "assert", "sustain", "affirm", "substantiate", "corroborate"]}, {"answer": "affix", "hint": "synonyms for affix", "clues": ["supplement", "stick on", "append", "add on", "affix"]}, {"answer": "age", "hint": "synonyms for age", "clues": ["senesce", "maturate", "get on", "age"]}, {"answer": "aim", "hint": "synonyms for aim", "clues": ["get", "purport", "aspire", "train", "place", "take aim", "purpose", "take", "drive", "draw a bead on", "point", "direct", "calculate", "shoot for", "target", "aim"]}, {"answer": "air", "hint": "synonyms for air", "clues": ["send", "publicise", "beam", "aerate", "broadcast", "air out", "bare", "vent", "transmit", "ventilate", "air"]}, {"answer": "airing", "hint": "synonyms for airing", "clues": ["send", "publicise", "beam", "aerate", "broadcast", "air out", "bare", "vent", "transmit", "air", "ventilate"]}, {"answer": "airs", "hint": "synonyms for airs", "clues": ["send", "publicise", "beam", "aerate", "broadcast", "air out", "bare", "vent", "transmit", "air", "ventilate"]}, {"answer": "alarm", "hint": "synonyms for alarm", "clues": ["appall", "dismay", "horrify", "alert", "alarm"]}, {"answer": "altering", "hint": "synonyms for altering", "clues": ["change", "falsify", "vary", "interpolate", "modify", "spay", "neuter", "alter", "castrate"]}, {"answer": "am", "hint": "synonyms for am", "clues": ["make up", "follow", "live", "personify", "cost", "represent", "exist", "equal", "comprise", "embody", "be", "constitute", "am"]}, {"answer": "ambuscade", "hint": "synonyms for ambuscade", "clues": ["scupper", "bushwhack", "lie in wait", "ambush", "waylay", "lurk", "ambuscade"]}, {"answer": "ambush", "hint": "synonyms for ambush", "clues": ["scupper", "bushwhack", "lie in wait", "still-hunt", "ambuscade", "waylay", "lurk", "ambush"]}, {"answer": "amends", "hint": "synonyms for amends", "clues": ["remedy", "rectify", "amend", "better", "remediate", "meliorate", "repair", "improve"]}, {"answer": "amount", "hint": "synonyms for amount", "clues": ["come", "number", "total", "add up", "amount"]}, {"answer": "angle", "hint": "synonyms for angle", "clues": ["slant", "lean", "tip", "tilt", "fish", "weight", "angle"]}, {"answer": "angling", "hint": "synonyms for angling", "clues": ["slant", "lean", "angle", "tip", "tilt", "fish", "weight", "angling"]}, {"answer": "annotating", "hint": "synonyms for annotating", "clues": ["gloss", "comment", "footnote", "annotate", "annotating"]}, {"answer": "anointing", "hint": "synonyms for anointing", "clues": ["anele", "embrocate", "inunct", "oil", "anoint"]}, {"answer": "answer", "hint": "synonyms for answer", "clues": ["respond", "do", "serve", "suffice", "reply", "resolve", "answer"]}, {"answer": "apparel", "hint": "synonyms for apparel", "clues": ["tog", "raiment", "enclothe", "garment", "habilitate", "dress", "fit out", "garb", "apparel"]}, {"answer": "appearing", "hint": "synonyms for appearing", "clues": ["seem", "appear", "come out", "come along", "look"]}, {"answer": "apportioning", "hint": "synonyms for apportioning", "clues": ["divvy up", "portion out", "deal", "share", "apportion", "allocate"]}, {"answer": "approach", "hint": "synonyms for approach", "clues": ["border on", "draw close", "come near", "set about", "go about", "draw near", "come on", "go up", "near", "approach"]}, {"answer": "are", "hint": "synonyms for are", "clues": ["make up", "follow", "live", "personify", "cost", "represent", "exist", "equal", "comprise", "embody", "be", "constitute", "are"]}, {"answer": "arguing", "hint": "synonyms for arguing", "clues": ["reason", "debate", "indicate", "argue", "contend", "fence", "arguing"]}, {"answer": "arming", "hint": "synonyms for arming", "clues": ["gird", "arm", "build up", "fortify"]}, {"answer": "arms", "hint": "synonyms for arms", "clues": ["gird", "arm", "build up", "fortify"]}, {"answer": "arranging", "hint": "synonyms for arranging", "clues": ["coiffure", "fix up", "arrange", "order", "set up", "do", "format", "dress", "put", "coif", "stage", "set", "arranging"]}, {"answer": "array", "hint": "synonyms for array", "clues": ["align", "set out", "lay out", "range", "array"]}, {"answer": "arrest", "hint": "synonyms for arrest", "clues": ["nail", "collar", "apprehend", "turn back", "check", "stop", "pick up", "halt", "contain", "get", "hold", "catch", "cop", "nab", "hold back", "arrest"]}, {"answer": "asking", "hint": "synonyms for asking", "clues": ["enquire", "need", "postulate", "ask", "take", "necessitate", "demand", "expect", "involve", "call for"]}, {"answer": "assault", "hint": "synonyms for assault", "clues": ["lash out", "rape", "round", "dishonor", "snipe", "outrage", "attack", "violate", "ravish", "set on", "assail", "assault"]}, {"answer": "assay", "hint": "synonyms for assay", "clues": ["attempt", "try", "seek", "essay", "assay"]}, {"answer": "assembling", "hint": "synonyms for assembling", "clues": ["meet", "piece", "forgather", "gather", "set up", "tack", "tack together", "put together", "get together", "assemble", "assembling"]}, {"answer": "assigning", "hint": "synonyms for assigning", "clues": ["depute", "allot", "delegate", "specify", "assign", "ascribe", "set apart", "impute", "portion", "put", "attribute", "arrogate", "designate"]}, {"answer": "assist", "hint": "synonyms for assist", "clues": ["aid", "wait on", "help", "attend to", "serve", "attend", "assist"]}, {"answer": "ate", "hint": "synonyms for ate", "clues": ["eat", "rust", "feed", "deplete", "exhaust", "run through", "use up", "corrode", "consume", "wipe out", "eat up", "eat on", "ate"]}, {"answer": "attack", "hint": "synonyms for attack", "clues": ["lash out", "round", "aggress", "assault", "snipe", "set on", "assail", "attack"]}, {"answer": "attempt", "hint": "synonyms for attempt", "clues": ["assay", "undertake", "seek", "try", "set about", "essay", "attempt"]}, {"answer": "attending", "hint": "synonyms for attending", "clues": ["pay heed", "look", "attend", "assist", "wait on", "hang", "give ear", "attend to", "take care", "see", "advert", "serve", "go to"]}, {"answer": "attire", "hint": "synonyms for attire", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "attire"]}, {"answer": "augur", "hint": "synonyms for augur", "clues": ["forecast", "betoken", "auspicate", "presage", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure", "augur"]}, {"answer": "averting", "hint": "synonyms for averting", "clues": ["avoid", "stave off", "turn away", "forfend", "avert", "ward off", "head off", "deflect", "fend off", "obviate", "debar"]}, {"answer": "awakening", "hint": "synonyms for awakening", "clues": ["wake", "arouse", "wake up", "come alive", "awaken"]}, {"answer": "babble", "hint": "synonyms for babble", "clues": ["blather", "peach", "blab", "let the cat out of the bag", "talk", "bubble", "sing", "spill the beans", "tattle", "blab out", "smatter", "babble out", "burble", "ripple", "gurgle", "guggle", "babble"]}, {"answer": "babbling", "hint": "synonyms for babbling", "clues": ["blather", "peach", "babble", "talk", "bubble", "sing", "spill the beans", "blab out", "smatter", "burble", "ripple", "blab", "let the cat out of the bag", "tattle", "babble out", "gurgle", "guggle", "babbling"]}, {"answer": "baby", "hint": "synonyms for baby", "clues": ["pamper", "cocker", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle", "baby"]}, {"answer": "backing", "hint": "synonyms for backing", "clues": ["endorse", "support", "back", "back up", "punt", "game", "gage", "plump for", "plunk for", "second", "stake", "bet on"]}, {"answer": "bade", "hint": "synonyms for bade", "clues": ["invite", "adjure", "entreat", "offer", "press", "conjure", "call", "wish", "bid", "beseech", "tender", "bade"]}, {"answer": "badger", "hint": "synonyms for badger", "clues": ["beleaguer", "tease", "bug", "pester", "badger"]}, {"answer": "badgering", "hint": "synonyms for badgering", "clues": ["badger", "beleaguer", "tease", "bug", "pester"]}, {"answer": "baffle", "hint": "synonyms for baffle", "clues": ["stupefy", "cross", "spoil", "queer", "bilk", "flummox", "gravel", "regulate", "amaze", "nonplus", "puzzle", "perplex", "get", "dumbfound", "pose", "beat", "frustrate", "scotch", "foil", "vex", "bewilder", "thwart", "stick", "mystify", "baffle"]}, {"answer": "bait", "hint": "synonyms for bait", "clues": ["cod", "ride", "rally", "taunt", "razz", "twit", "tease", "tantalize", "rag", "bait"]}, {"answer": "baiting", "hint": "synonyms for baiting", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag"]}, {"answer": "balance", "hint": "synonyms for balance", "clues": ["equilibrate", "poise", "equilibrize", "balance"]}, {"answer": "balancing", "hint": "synonyms for balancing", "clues": ["poise", "balance", "equilibrate", "equilibrize", "balancing"]}, {"answer": "ban", "hint": "synonyms for ban", "clues": ["banish", "censor", "blackball", "shun", "ostracise", "cast out", "ban"]}, {"answer": "bank", "hint": "synonyms for bank", "clues": ["trust", "swear", "deposit", "rely", "bank"]}, {"answer": "banking", "hint": "synonyms for banking", "clues": ["trust", "swear", "rely", "deposit", "bank"]}, {"answer": "banks", "hint": "synonyms for banks", "clues": ["trust", "swear", "rely", "deposit", "bank"]}, {"answer": "banning", "hint": "synonyms for banning", "clues": ["banish", "censor", "blackball", "shun", "ostracise", "ban", "cast out", "banning"]}, {"answer": "banter", "hint": "synonyms for banter", "clues": ["josh", "chaff", "jolly", "kid", "banter"]}, {"answer": "bar", "hint": "synonyms for bar", "clues": ["exclude", "barricade", "block off", "banish", "block", "stop", "blockade", "block up", "relegate", "debar", "bar"]}, {"answer": "barf", "hint": "synonyms for barf", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "chuck", "barf"]}, {"answer": "baring", "hint": "synonyms for baring", "clues": ["exclude", "barricade", "banish", "bar", "stop", "strip", "block up", "blockade", "publicise", "air", "debar", "block off", "block", "denude", "relegate"]}, {"answer": "barrack", "hint": "synonyms for barrack", "clues": ["inspire", "jeer", "flout", "scoff", "gibe", "exhort", "urge on", "pep up", "urge", "cheer", "root on", "barrack"]}, {"answer": "barracking", "hint": "synonyms for barracking", "clues": ["inspire", "jeer", "flout", "scoff", "gibe", "exhort", "urge on", "pep up", "barrack", "urge", "cheer", "root on"]}, {"answer": "barricade", "hint": "synonyms for barricade", "clues": ["block up", "blockade", "block off", "barricado", "bar", "block", "stop"]}, {"answer": "barring", "hint": "synonyms for barring", "clues": ["exclude", "barricade", "block off", "banish", "bar", "block", "stop", "block up", "blockade", "relegate", "debar", "barring"]}, {"answer": "bars", "hint": "synonyms for bars", "clues": ["exclude", "barricade", "block off", "banish", "bar", "block", "stop", "block up", "blockade", "relegate", "debar"]}, {"answer": "bash", "hint": "synonyms for bash", "clues": ["bop", "sock", "whop", "whap", "bonk", "bash"]}, {"answer": "basting", "hint": "synonyms for basting", "clues": ["tack", "clobber", "batter", "baste", "basting"]}, {"answer": "bat", "hint": "synonyms for bat", "clues": ["flutter", "clobber", "lick", "drub", "cream", "thrash", "bat"]}, {"answer": "batter", "hint": "synonyms for batter", "clues": ["clobber", "dinge", "knock about", "baste", "buffet", "batter"]}, {"answer": "battering", "hint": "synonyms for battering", "clues": ["batter", "clobber", "dinge", "knock about", "baste", "buffet"]}, {"answer": "batting", "hint": "synonyms for batting", "clues": ["flutter", "clobber", "lick", "drub", "thrash", "bat", "cream", "batting"]}, {"answer": "be", "hint": "synonyms for be", "clues": ["make up", "follow", "live", "personify", "represent", "exist", "equal", "comprise", "embody", "cost", "constitute", "be"]}, {"answer": "beam", "hint": "synonyms for beam", "clues": ["send", "shine", "broadcast", "transmit", "glow", "radiate", "air", "beam"]}, {"answer": "bear", "hint": "synonyms for bear", "clues": ["digest", "support", "give birth", "birth", "abide", "comport", "accept", "acquit", "have", "assume", "gestate", "suffer", "take over", "behave", "deport", "expect", "carry", "stomach", "yield", "conduct", "deliver", "endure", "tolerate", "turn out", "pay", "wear", "put up", "have a bun in the oven", "contain", "hold", "stand", "brook", "stick out", "bear"]}, {"answer": "beating", "hint": "synonyms for beating", "clues": ["outwit", "overreach", "work over", "pound", "tick", "flummox", "shell", "amaze", "get", "baffle", "bunk", "dumbfound", "tucker", "ticktock", "vanquish", "thrum", "vex", "bewilder", "thump", "flap", "mystify", "stupefy", "quiver", "scramble", "exhaust", "gravel", "nonplus", "puzzle", "perplex", "beat out", "pose", "beat", "outsmart", "tucker out", "circumvent", "beat up", "pulsate", "drum", "wash up", "trounce", "outfox", "crush"]}, {"answer": "beats", "hint": "synonyms for beats", "clues": ["outwit", "overreach", "work over", "pound", "tick", "flummox", "shell", "amaze", "get", "baffle", "bunk", "dumbfound", "tucker", "ticktock", "vanquish", "thrum", "vex", "bewilder", "thump", "flap", "mystify", "stupefy", "quiver", "scramble", "exhaust", "gravel", "nonplus", "puzzle", "perplex", "beat out", "pose", "beat", "outsmart", "tucker out", "circumvent", "beat up", "pulsate", "drum", "wash up", "trounce", "outfox", "crush"]}, {"answer": "bed", "hint": "synonyms for bed", "clues": ["go to bed", "roll in the hay", "hump", "hit the sack", "have a go at it", "sack out", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "hit the hay", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "go to sleep", "crawl in", "jazz", "know", "retire", "get laid", "have it away", "kip down", "turn in", "do it", "fuck", "lie with", "make love", "bed"]}, {"answer": "bedding", "hint": "synonyms for bedding", "clues": ["go to bed", "roll in the hay", "hump", "hit the sack", "have a go at it", "sack out", "bonk", "have sex", "sleep together", "make out", "be intimate", "bed", "have it off", "hit the hay", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "go to sleep", "crawl in", "jazz", "know", "retire", "get laid", "have it away", "kip down", "turn in", "do it", "fuck", "lie with", "make love", "bedding"]}, {"answer": "beef", "hint": "synonyms for beef", "clues": ["grouse", "holler", "squawk", "gripe", "bitch", "bellyache", "crab", "beef"]}, {"answer": "beep", "hint": "synonyms for beep", "clues": ["toot", "honk", "claxon", "blare", "beep"]}, {"answer": "befooling", "hint": "synonyms for befooling", "clues": ["cod", "fool", "dupe", "gull", "put one over", "befool", "put one across", "take in", "slang", "put on"]}, {"answer": "begging", "hint": "synonyms for begging", "clues": ["solicit", "tap", "implore", "pray", "beg", "begging"]}, {"answer": "begin", "hint": "synonyms for begin", "clues": ["commence", "start", "start out", "set about", "get down", "lead off", "get", "begin"]}, {"answer": "being", "hint": "synonyms for being", "clues": ["make up", "follow", "live", "personify", "cost", "represent", "exist", "equal", "comprise", "embody", "be", "constitute"]}, {"answer": "belch", "hint": "synonyms for belch", "clues": ["erupt", "bubble", "eruct", "burp", "extravasate", "belch"]}, {"answer": "belching", "hint": "synonyms for belching", "clues": ["erupt", "bubble", "belch", "burp", "eruct", "extravasate"]}, {"answer": "beleaguering", "hint": "synonyms for beleaguering", "clues": ["besiege", "hem in", "circumvent", "bug", "pester", "badger", "beleaguer", "tease", "surround"]}, {"answer": "believing", "hint": "synonyms for believing", "clues": ["think", "trust", "conceive", "consider", "believe", "believing"]}, {"answer": "bellyache", "hint": "synonyms for bellyache", "clues": ["grouse", "holler", "squawk", "beef", "gripe", "bitch", "crab", "bellyache"]}, {"answer": "bend", "hint": "synonyms for bend", "clues": ["turn away", "bow", "deform", "deflect", "turn", "stoop", "flex", "twist", "crouch", "bend"]}, {"answer": "bending", "hint": "synonyms for bending", "clues": ["turn away", "bow", "bend", "deflect", "turn", "twist", "stoop", "flex", "deform", "crouch"]}, {"answer": "bends", "hint": "synonyms for bends", "clues": ["turn away", "bow", "bend", "deflect", "turn", "twist", "stoop", "flex", "deform", "crouch"]}, {"answer": "berating", "hint": "synonyms for berating", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "berating"]}, {"answer": "besieging", "hint": "synonyms for besieging", "clues": ["beleaguer", "besiege", "hem in", "circumvent", "surround", "besieging"]}, {"answer": "bet", "hint": "synonyms for bet", "clues": ["depend", "count", "calculate", "play", "wager", "look", "reckon", "bet"]}, {"answer": "bicker", "hint": "synonyms for bicker", "clues": ["pettifog", "niggle", "quibble", "brabble", "squabble", "bicker"]}, {"answer": "bickering", "hint": "synonyms for bickering", "clues": ["pettifog", "niggle", "quibble", "brabble", "squabble", "bicker"]}, {"answer": "bicycle", "hint": "synonyms for bicycle", "clues": ["bike", "cycle", "pedal", "wheel", "bicycle"]}, {"answer": "bicycling", "hint": "synonyms for bicycling", "clues": ["bicycle", "bike", "cycle", "pedal", "wheel", "bicycling"]}, {"answer": "bid", "hint": "synonyms for bid", "clues": ["invite", "adjure", "entreat", "offer", "press", "conjure", "call", "wish", "beseech", "tender", "bid"]}, {"answer": "bidding", "hint": "synonyms for bidding", "clues": ["invite", "adjure", "entreat", "offer", "press", "conjure", "call", "wish", "bid", "beseech", "tender", "bidding"]}, {"answer": "bike", "hint": "synonyms for bike", "clues": ["bicycle", "cycle", "pedal", "wheel", "bike"]}, {"answer": "billow", "hint": "synonyms for billow", "clues": ["wallow", "balloon", "inflate", "surge", "heave", "billow"]}, {"answer": "bind", "hint": "synonyms for bind", "clues": ["attach", "constipate", "truss", "tie down", "oblige", "stick to", "bandage", "hold fast", "bond", "tie up", "tie", "hold", "adhere", "stick", "bind"]}, {"answer": "binge", "hint": "synonyms for binge", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "binge"]}, {"answer": "birling", "hint": "synonyms for birling", "clues": ["twirl", "spin", "birle", "whirl", "birling"]}, {"answer": "birr", "hint": "synonyms for birr", "clues": ["whirr", "purr", "whiz", "birr"]}, {"answer": "birth", "hint": "synonyms for birth", "clues": ["bear", "deliver", "give birth", "have", "birth"]}, {"answer": "birthing", "hint": "synonyms for birthing", "clues": ["give birth", "birth", "bear", "have", "deliver"]}, {"answer": "bit", "hint": "synonyms for bit", "clues": ["burn", "bite", "sting", "seize with teeth", "prick"]}, {"answer": "bitch", "hint": "synonyms for bitch", "clues": ["grouse", "holler", "squawk", "beef", "gripe", "bellyache", "backbite", "crab", "bitch"]}, {"answer": "bite", "hint": "synonyms for bite", "clues": ["burn", "sting", "seize with teeth", "prick", "bite"]}, {"answer": "bivouac", "hint": "synonyms for bivouac", "clues": ["tent", "encamp", "camp", "camp out", "bivouac"]}, {"answer": "bivouacking", "hint": "synonyms for bivouacking", "clues": ["camp out", "camp", "tent", "encamp", "bivouac", "bivouacking"]}, {"answer": "blabber", "hint": "synonyms for blabber", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "gabble", "blab", "tittle-tattle", "tattle", "twaddle", "gibber", "maunder", "piffle", "blabber"]}, {"answer": "blackball", "hint": "synonyms for blackball", "clues": ["veto", "negative", "banish", "shun", "ostracize", "ban", "cast out", "blackball"]}, {"answer": "blackening", "hint": "synonyms for blackening", "clues": ["nigrify", "char", "black", "sear", "blacken", "melanize", "scorch"]}, {"answer": "blackguard", "hint": "synonyms for blackguard", "clues": ["clapperclaw", "poke fun", "rib", "shout", "guy", "roast", "make fun", "jest at", "abuse", "ridicule", "laugh at", "blackguard"]}, {"answer": "blacking", "hint": "synonyms for blacking", "clues": ["nigrify", "melanize", "black", "blacken"]}, {"answer": "blare", "hint": "synonyms for blare", "clues": ["beep", "claxon", "toot", "honk", "blast", "blare"]}, {"answer": "blarney", "hint": "synonyms for blarney", "clues": ["sweet-talk", "coax", "palaver", "inveigle", "wheedle", "cajole", "blarney"]}, {"answer": "blast", "hint": "synonyms for blast", "clues": ["nail", "smash", "shoot", "blare", "knock down", "savage", "crucify", "pillory", "shell", "boom", "blast"]}, {"answer": "bleach", "hint": "synonyms for bleach", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "bleeding", "hint": "synonyms for bleeding", "clues": ["bleed", "run", "hemorrhage", "phlebotomise", "leech", "shed blood"]}, {"answer": "blemish", "hint": "synonyms for blemish", "clues": ["flaw", "spot", "deface", "disfigure", "blemish"]}, {"answer": "blend", "hint": "synonyms for blend", "clues": ["flux", "blend in", "mix", "go", "immix", "meld", "commingle", "merge", "conflate", "combine", "coalesce", "intermix", "fuse", "immingle", "intermingle", "blend"]}, {"answer": "blending", "hint": "synonyms for blending", "clues": ["flux", "blend in", "mix", "go", "immix", "meld", "coalesce", "fuse", "blend", "commingle", "merge", "combine", "intermix", "conflate", "immingle", "intermingle"]}, {"answer": "blessing", "hint": "synonyms for blessing", "clues": ["sanctify", "bless", "consecrate", "hallow", "sign"]}, {"answer": "blink", "hint": "synonyms for blink", "clues": ["nictate", "flash", "wink", "blink away", "twinkle", "blink"]}, {"answer": "blinks", "hint": "synonyms for blinks", "clues": ["nictate", "flash", "wink", "blink", "blink away", "twinkle"]}, {"answer": "block", "hint": "synonyms for block", "clues": ["stymy", "blank out", "barricade", "immobilize", "bar", "impede", "close up", "stop", "deflect", "blockade", "block up", "kibosh", "jam", "obstruct", "lug", "obturate", "freeze", "choke up", "parry", "block off", "stymie", "draw a blank", "embarrass", "forget", "hinder", "halt", "occlude", "stuff", "block"]}, {"answer": "blockade", "hint": "synonyms for blockade", "clues": ["stymy", "barricade", "stymie", "block off", "bar", "block", "stop", "embarrass", "hinder", "block up", "obstruct", "seal off", "blockade"]}, {"answer": "blocking", "hint": "synonyms for blocking", "clues": ["stymy", "blank out", "barricade", "immobilize", "bar", "impede", "close up", "stop", "deflect", "block up", "blockade", "kibosh", "jam", "obstruct", "lug", "obturate", "freeze", "choke up", "parry", "block off", "stymie", "draw a blank", "block", "embarrass", "forget", "hinder", "halt", "occlude", "stuff"]}, {"answer": "blossom", "hint": "synonyms for blossom", "clues": ["blossom forth", "flower", "blossom out", "bloom", "unfold", "blossom"]}, {"answer": "blossoming", "hint": "synonyms for blossoming", "clues": ["blossom forth", "flower", "blossom out", "bloom", "unfold", "blossom"]}, {"answer": "blow", "hint": "synonyms for blow", "clues": ["botch up", "bollix", "bollocks", "bobble", "muff", "boast", "squander", "bluster", "gasconade", "mess up", "fellate", "blow out", "burn out", "fumble", "louse up", "go down on", "drift", "foul up", "vaunt", "suck", "brag", "botch", "bumble", "muck up", "spoil", "flub", "bollix up", "fluff", "bollocks up", "bungle", "waste", "swash", "shove off", "float", "gas", "be adrift", "mishandle", "screw up", "bodge", "shoot a line", "tout", "ball up", "shove along", "blow"]}, {"answer": "blowing", "hint": "synonyms for blowing", "clues": ["botch up", "bollix", "bollocks", "bobble", "muff", "boast", "squander", "bluster", "gasconade", "blow", "mess up", "fellate", "blow out", "burn out", "fumble", "louse up", "go down on", "drift", "foul up", "vaunt", "suck", "brag", "botch", "bumble", "muck up", "spoil", "flub", "bollix up", "fluff", "bollocks up", "bungle", "waste", "swash", "shove off", "float", "gas", "be adrift", "mishandle", "screw up", "bodge", "shoot a line", "tout", "ball up", "shove along"]}, {"answer": "blubber", "hint": "synonyms for blubber", "clues": ["blub", "snuffle", "blubber out", "snivel", "blubber"]}, {"answer": "blunder", "hint": "synonyms for blunder", "clues": ["ejaculate", "blunder out", "sin", "goof", "blurt", "blurt out", "boob", "drop the ball", "fumble", "blunder"]}, {"answer": "blur", "hint": "synonyms for blur", "clues": ["glaze over", "confuse", "dim", "film over", "obnubilate", "blear", "slur", "smudge", "smutch", "obscure", "smear", "blur"]}, {"answer": "bluster", "hint": "synonyms for bluster", "clues": ["swash", "gas", "boast", "shoot a line", "gasconade", "vaunt", "tout", "blow", "brag", "swagger", "bluster"]}, {"answer": "boast", "hint": "synonyms for boast", "clues": ["swash", "feature", "gas", "sport", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "blow", "brag", "boast"]}, {"answer": "boasting", "hint": "synonyms for boasting", "clues": ["swash", "feature", "gas", "boast", "sport", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "blow", "brag"]}, {"answer": "bob", "hint": "synonyms for bob", "clues": ["tail", "bobsled", "dock", "curtsy", "bob"]}, {"answer": "bobble", "hint": "synonyms for bobble", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bobble"]}, {"answer": "boding", "hint": "synonyms for boding", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure", "boding"]}, {"answer": "boil", "hint": "synonyms for boil", "clues": ["seethe", "moil", "roil", "churn", "boil"]}, {"answer": "bomb", "hint": "synonyms for bomb", "clues": ["flunk", "flush it", "bombard", "fail", "bomb"]}, {"answer": "bombing", "hint": "synonyms for bombing", "clues": ["flunk", "bomb", "flush it", "bombard", "fail"]}, {"answer": "bond", "hint": "synonyms for bond", "clues": ["bring together", "bind", "attach", "stick to", "draw together", "hold fast", "tie", "adhere", "stick", "bond"]}, {"answer": "bonding", "hint": "synonyms for bonding", "clues": ["bring together", "bind", "attach", "stick to", "draw together", "hold fast", "bond", "tie", "adhere", "stick"]}, {"answer": "bones", "hint": "synonyms for bones", "clues": ["swot up", "grind away", "bone up", "mug up", "drum", "cram", "bone", "swot", "get up", "debone"]}, {"answer": "boob", "hint": "synonyms for boob", "clues": ["goof", "drop the ball", "sin", "blunder", "boob"]}, {"answer": "boom", "hint": "synonyms for boom", "clues": ["boom out", "nail", "thunder", "smash", "thrive", "blast", "flourish", "expand", "din", "boom"]}, {"answer": "boost", "hint": "synonyms for boost", "clues": ["supercharge", "promote", "hike", "encourage", "advance", "further", "hike up", "boost"]}, {"answer": "bop", "hint": "synonyms for bop", "clues": ["bebop", "whap", "bash", "sock", "whop", "bonk", "bop"]}, {"answer": "border", "hint": "synonyms for border", "clues": ["march", "abut", "butt", "frame in", "environ", "skirt", "surround", "ring", "adjoin", "butt against", "frame", "bound", "butt on", "edge", "border"]}, {"answer": "bore", "hint": "synonyms for bore", "clues": ["support", "give birth", "birth", "acquit", "take over", "behave", "deport", "expect", "tire", "conduct", "deliver", "tolerate", "pay", "wear", "have a bun in the oven", "put up", "hold", "brook", "assume", "stick out", "drill", "digest", "abide", "comport", "accept", "bear", "have", "gestate", "suffer", "carry", "stomach", "yield", "endure", "turn out", "contain", "stand", "bore"]}, {"answer": "borrowing", "hint": "synonyms for borrowing", "clues": ["adopt", "take up", "borrow", "take over"]}, {"answer": "botch", "hint": "synonyms for botch", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch"]}, {"answer": "bother", "hint": "synonyms for bother", "clues": ["annoy", "inconvenience oneself", "trouble oneself", "devil", "gravel", "put out", "rile", "get at", "inconvenience", "disoblige", "nettle", "irritate", "incommode", "nark", "vex", "discommode", "trouble", "get to", "chafe", "rag", "bother"]}, {"answer": "bounce", "hint": "synonyms for bounce", "clues": ["recoil", "resile", "ricochet", "take a hop", "reverberate", "jounce", "bound", "spring", "rebound", "bounce"]}, {"answer": "bounds", "hint": "synonyms for bounds", "clues": ["confine", "border", "resile", "recoil", "ricochet", "spring", "throttle", "bounce", "limit", "jump", "take a hop", "leap", "reverberate", "trammel", "bound", "rebound", "restrain", "restrict"]}, {"answer": "bow", "hint": "synonyms for bow", "clues": ["submit", "bow down", "stoop", "defer", "accede", "bend", "give in", "crouch", "bow"]}, {"answer": "brace", "hint": "synonyms for brace", "clues": ["energise", "stabilize", "arouse", "stimulate", "poise", "steady", "perk up", "brace"]}, {"answer": "braces", "hint": "synonyms for braces", "clues": ["energise", "stabilize", "arouse", "stimulate", "brace", "poise", "steady", "perk up"]}, {"answer": "braiding", "hint": "synonyms for braiding", "clues": ["lace", "plait", "pleach", "braid"]}, {"answer": "branch", "hint": "synonyms for branch", "clues": ["furcate", "ramify", "separate", "fork", "branch"]}, {"answer": "brand", "hint": "synonyms for brand", "clues": ["trademark", "brandmark", "post", "mark", "denounce", "stigmatize", "brand"]}, {"answer": "branding", "hint": "synonyms for branding", "clues": ["trademark", "post", "denounce", "brandmark", "mark", "stigmatize", "brand"]}, {"answer": "bray", "hint": "synonyms for bray", "clues": ["comminute", "grind", "mash", "hee-haw", "crunch", "bray"]}, {"answer": "breach", "hint": "synonyms for breach", "clues": ["break", "violate", "infract", "offend", "go against", "gap", "transgress", "breach"]}, {"answer": "break", "hint": "synonyms for break", "clues": ["reveal", "demote", "infract", "go", "break out", "weaken", "discontinue", "pause", "violate", "burst", "give out", "break away", "come apart", "transgress", "divulge", "interrupt", "fall in", "break in", "break-dance", "give way", "founder", "better", "wear", "fail", "erupt", "bump", "discover", "get around", "unwrap", "check", "ruin", "intermit", "split up", "go against", "bring out", "separate", "damp", "split", "breach", "break up", "kick downstairs", "cave in", "recrudesce", "fall apart", "bankrupt", "fracture", "stop", "expose", "break down", "dampen", "collapse", "conk out", "wear out", "smash", "offend", "let on", "give", "let out", "develop", "break off", "disclose", "go bad", "crack", "soften", "snap off", "die", "relegate", "part", "break"]}, {"answer": "breaking", "hint": "synonyms for breaking", "clues": ["reveal", "demote", "infract", "go", "break out", "weaken", "discontinue", "pause", "violate", "burst", "give out", "break away", "come apart", "transgress", "break", "divulge", "interrupt", "fall in", "break in", "break-dance", "give way", "founder", "better", "wear", "fail", "erupt", "bump", "discover", "get around", "unwrap", "check", "ruin", "intermit", "split up", "go against", "bring out", "separate", "damp", "split", "breach", "break up", "kick downstairs", "cave in", "recrudesce", "fall apart", "bankrupt", "fracture", "stop", "expose", "break down", "dampen", "collapse", "conk out", "wear out", "smash", "offend", "let on", "give", "let out", "develop", "break off", "disclose", "go bad", "crack", "soften", "snap off", "die", "relegate", "part"]}, {"answer": "breed", "hint": "synonyms for breed", "clues": ["engender", "spawn", "multiply", "cover", "breed"]}, {"answer": "bringing", "hint": "synonyms for bringing", "clues": ["lend", "institute", "make for", "bring", "add", "wreak", "get", "impart", "convey", "fetch", "take", "bestow", "contribute", "work", "land", "play", "bring in"]}, {"answer": "bristle", "hint": "synonyms for bristle", "clues": ["stand up", "abound", "burst", "uprise", "bristle"]}, {"answer": "broadcast", "hint": "synonyms for broadcast", "clues": ["circulate", "send", "beam", "diffuse", "circularize", "pass around", "spread", "propagate", "disseminate", "transmit", "disperse", "air", "distribute", "broadcast"]}, {"answer": "broadcasting", "hint": "synonyms for broadcasting", "clues": ["circulate", "beam", "circularize", "pass around", "spread", "propagate", "disperse", "air", "send", "diffuse", "broadcast", "disseminate", "transmit", "distribute"]}, {"answer": "broadening", "hint": "synonyms for broadening", "clues": ["extend", "diversify", "broaden", "widen", "branch out"]}, {"answer": "brood", "hint": "synonyms for brood", "clues": ["stew", "dwell", "loom", "pout", "sulk", "bulk large", "hatch", "incubate", "grizzle", "hover", "cover", "brood"]}, {"answer": "brook", "hint": "synonyms for brook", "clues": ["digest", "support", "abide", "bear", "endure", "tolerate", "suffer", "put up", "stand", "stomach", "stick out", "brook"]}, {"answer": "brooks", "hint": "synonyms for brooks", "clues": ["digest", "support", "abide", "bear", "endure", "tolerate", "suffer", "put up", "stand", "stomach", "brook", "stick out"]}, {"answer": "browse", "hint": "synonyms for browse", "clues": ["surf", "range", "pasture", "crop", "graze", "shop", "browse"]}, {"answer": "browsing", "hint": "synonyms for browsing", "clues": ["graze", "pasture", "crop", "range", "surf", "browse", "shop", "browsing"]}, {"answer": "bruise", "hint": "synonyms for bruise", "clues": ["injure", "spite", "hurt", "offend", "contuse", "wound", "bruise"]}, {"answer": "bubble", "hint": "synonyms for bubble", "clues": ["gurgle", "burble", "ripple", "belch", "babble", "burp", "eruct", "guggle", "bubble"]}, {"answer": "buck", "hint": "synonyms for buck", "clues": ["tear", "hitch", "shoot down", "charge", "shoot", "go against", "jerk", "buck"]}, {"answer": "buckle", "hint": "synonyms for buckle", "clues": ["clasp", "crumple", "heave", "warp", "buckle"]}, {"answer": "buffeting", "hint": "synonyms for buffeting", "clues": ["batter", "buff", "knock about", "buffet"]}, {"answer": "bug", "hint": "synonyms for bug", "clues": ["badger", "beleaguer", "tease", "wiretap", "tap", "intercept", "pester", "bug"]}, {"answer": "build", "hint": "synonyms for build", "clues": ["make", "progress", "build up", "ramp up", "work up", "construct", "establish", "build"]}, {"answer": "building", "hint": "synonyms for building", "clues": ["make", "progress", "build up", "build", "ramp up", "work up", "construct", "establish"]}, {"answer": "bulge", "hint": "synonyms for bulge", "clues": ["start", "pouch", "bulk", "bulge out", "bag", "pop", "come out", "protrude", "pop out", "bulge"]}, {"answer": "bull", "hint": "synonyms for bull", "clues": ["bull through", "talk through one's hat", "bullshit", "fake", "bull"]}, {"answer": "bump", "hint": "synonyms for bump", "clues": ["break", "encounter", "demote", "happen", "chance", "knock", "kick downstairs", "relegate", "find", "dislodge", "bump"]}, {"answer": "bunch", "hint": "synonyms for bunch", "clues": ["bundle", "cluster", "bunch together", "bunch up", "clump", "bunch"]}, {"answer": "bunco", "hint": "synonyms for bunco", "clues": ["rook", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "bunco"]}, {"answer": "bundle", "hint": "synonyms for bundle", "clues": ["cluster", "bundle up", "pack", "compact", "clump", "bunch", "practice bundling", "wad", "bunch up", "roll up", "bundle"]}, {"answer": "bundling", "hint": "synonyms for bundling", "clues": ["bundle", "bundle up", "cluster", "pack", "compact", "clump", "bunch", "practice bundling", "wad", "bunch up", "roll up", "bundling"]}, {"answer": "bungle", "hint": "synonyms for bungle", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bungle"]}, {"answer": "bunk", "hint": "synonyms for bunk", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "head for the hills", "lam", "run away", "scat", "break away", "take to the woods", "beat", "scarper", "bunk"]}, {"answer": "burden", "hint": "synonyms for burden", "clues": ["saddle", "weight down", "charge", "weight", "burthen", "burden"]}, {"answer": "burn", "hint": "synonyms for burn", "clues": ["burn down", "bite", "incinerate", "cauterise", "combust", "fire", "sting", "cut", "burn up", "burn off", "glow", "sunburn", "burn"]}, {"answer": "burns", "hint": "synonyms for burns", "clues": ["burn", "burn down", "bite", "incinerate", "cauterise", "combust", "fire", "sting", "cut", "burn off", "burn up", "glow", "sunburn"]}, {"answer": "burping", "hint": "synonyms for burping", "clues": ["bubble", "belch", "burp", "eruct"]}, {"answer": "burst", "hint": "synonyms for burst", "clues": ["break", "explode", "break open", "erupt", "abound", "collapse", "bristle", "bust", "split"]}, {"answer": "burying", "hint": "synonyms for burying", "clues": ["swallow", "sink", "inter", "immerse", "bury", "forget", "inhume", "entomb", "eat up", "swallow up", "lay to rest"]}, {"answer": "bushel", "hint": "synonyms for bushel", "clues": ["doctor", "fix", "restore", "mend", "touch on", "repair", "furbish up", "bushel"]}, {"answer": "buss", "hint": "synonyms for buss", "clues": ["bus", "kiss", "snog", "osculate"]}, {"answer": "butt", "hint": "synonyms for butt", "clues": ["march", "abut", "adjoin", "butt against", "border", "butt on", "edge", "bunt", "butt"]}, {"answer": "butterfly", "hint": "synonyms for butterfly", "clues": ["flirt", "romance", "dally", "coquet", "mash", "chat up", "philander", "butterfly"]}, {"answer": "buy", "hint": "synonyms for buy", "clues": ["grease one's palms", "corrupt", "bribe", "purchase", "buy"]}, {"answer": "buying", "hint": "synonyms for buying", "clues": ["corrupt", "bribe", "grease one's palms", "buy", "purchase"]}, {"answer": "buzz", "hint": "synonyms for buzz", "clues": ["bombinate", "hum", "seethe", "buzz"]}, {"answer": "cabal", "hint": "synonyms for cabal", "clues": ["complot", "machinate", "conjure", "conspire", "cabal"]}, {"answer": "cabbage", "hint": "synonyms for cabbage", "clues": ["swipe", "abstract", "nobble", "sneak", "pilfer", "purloin", "filch", "hook", "snarf", "pinch", "lift", "cabbage"]}, {"answer": "cache", "hint": "synonyms for cache", "clues": ["hive up", "lay away", "hoard", "stash", "squirrel away", "cache"]}, {"answer": "call", "hint": "synonyms for call", "clues": ["call off", "yell", "address", "cry", "squall", "anticipate", "scream", "bid", "predict", "telephone", "phone", "hollo", "prognosticate", "call up", "holler", "ring", "shout", "foretell", "forebode", "visit", "name", "send for", "call in", "shout out", "promise", "call"]}, {"answer": "call_up", "hint": "synonyms for call up", "clues": ["rally", "bring forward", "mobilize", "ring", "retrieve", "call", "recall", "think", "call back", "recollect", "telephone", "phone", "remember", "call up"]}, {"answer": "calling", "hint": "synonyms for calling", "clues": ["call off", "yell", "address", "cry", "squall", "anticipate", "scream", "bid", "predict", "telephone", "phone", "hollo", "prognosticate", "call up", "holler", "ring", "call", "shout", "foretell", "forebode", "visit", "name", "send for", "call in", "shout out", "promise"]}, {"answer": "calming", "hint": "synonyms for calming", "clues": ["cool off", "calm", "tranquillise", "still", "quieten", "cool it", "chill out", "calm down", "settle down", "simmer down", "sedate", "quiet", "becalm", "steady", "lull"]}, {"answer": "campaign", "hint": "synonyms for campaign", "clues": ["crusade", "fight", "take the field", "press", "push", "agitate", "run", "campaign"]}, {"answer": "campaigning", "hint": "synonyms for campaigning", "clues": ["fight", "press", "agitate", "run", "crusade", "take the field", "campaign", "push"]}, {"answer": "camping", "hint": "synonyms for camping", "clues": ["camp out", "camp", "tent", "encamp", "bivouac", "camp down"]}, {"answer": "can", "hint": "synonyms for can", "clues": ["sack", "give the sack", "force out", "dismiss", "give notice", "give the axe", "send away", "displace", "put up", "fire", "terminate", "tin", "can"]}, {"answer": "cancel", "hint": "synonyms for cancel", "clues": ["call off", "set off", "scrub", "strike down", "offset", "delete", "invalidate", "scratch", "cancel"]}, {"answer": "caning", "hint": "synonyms for caning", "clues": ["can", "lambaste", "force out", "give notice", "give the axe", "fire", "terminate", "tin", "sack", "give the sack", "dismiss", "send away", "displace", "put up", "flog"]}, {"answer": "cant", "hint": "synonyms for cant", "clues": ["tilt", "slant", "pitch", "cant over", "cant"]}, {"answer": "canvas", "hint": "synonyms for canvas", "clues": ["examine", "study", "analyze", "canvass", "poll"]}, {"answer": "canvass", "hint": "synonyms for canvass", "clues": ["examine", "canvas", "analyse", "study", "poll"]}, {"answer": "canvassing", "hint": "synonyms for canvassing", "clues": ["examine", "canvass", "analyse", "study", "poll"]}, {"answer": "capture", "hint": "synonyms for capture", "clues": ["captivate", "appropriate", "becharm", "trance", "fascinate", "enchant", "conquer", "seize", "beguile", "bewitch", "get", "charm", "catch", "enamor", "capture"]}, {"answer": "care", "hint": "synonyms for care", "clues": ["give care", "wish", "like", "worry", "manage", "handle", "deal", "care"]}, {"answer": "careen", "hint": "synonyms for careen", "clues": ["shift", "wobble", "reel", "lurch", "tilt", "keel", "swag", "stagger", "careen"]}, {"answer": "carry", "hint": "synonyms for carry", "clues": ["post", "comport", "sway", "pack", "acquit", "bear", "gestate", "behave", "express", "deport", "expect", "transport", "stock", "impart", "convey", "conduct", "channel", "persuade", "dribble", "take", "run", "have a bun in the oven", "extend", "stockpile", "contain", "transmit", "hold", "carry"]}, {"answer": "carting", "hint": "synonyms for carting", "clues": ["hale", "cart", "haul", "drag"]}, {"answer": "cast", "hint": "synonyms for cast", "clues": ["drop", "stray", "retch", "regurgitate", "cast off", "rove", "range", "project", "be sick", "ramble", "hurtle", "shake off", "shed", "sick", "regorge", "throw up", "throw away", "drift", "contrive", "roam", "spue", "hurl", "chuck", "draw", "vagabond", "purge", "spew", "tramp", "puke", "put", "mould", "cat", "roll", "vomit up", "disgorge", "honk", "throw", "upchuck", "redact", "couch", "vomit", "wander", "throw off", "frame", "swan", "barf"]}, {"answer": "casting", "hint": "synonyms for casting", "clues": ["drop", "stray", "retch", "regurgitate", "cast off", "rove", "cast", "range", "project", "be sick", "ramble", "hurtle", "shake off", "shed", "sick", "regorge", "throw up", "throw away", "drift", "contrive", "roam", "spue", "hurl", "chuck", "draw", "vagabond", "purge", "spew", "tramp", "puke", "put", "mould", "roll", "vomit up", "disgorge", "honk", "throw", "upchuck", "redact", "couch", "vomit", "wander", "throw off", "frame", "swan", "barf"]}, {"answer": "castrate", "hint": "synonyms for castrate", "clues": ["emasculate", "demasculinise", "bowdlerise", "expurgate", "spay", "neuter", "shorten", "alter", "castrate"]}, {"answer": "cat", "hint": "synonyms for cat", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck"]}, {"answer": "catch", "hint": "synonyms for catch", "clues": ["captivate", "capture", "watch", "overhear", "hitch", "becharm", "take hold of", "trance", "enchant", "arrest", "get", "view", "take in", "catch up with", "overtake", "grab", "charm", "trip up", "fascinate", "pick up", "beguile", "bewitch", "see", "enamor", "catch"]}, {"answer": "catering", "hint": "synonyms for catering", "clues": ["supply", "ply", "cater", "provide"]}, {"answer": "cause", "hint": "synonyms for cause", "clues": ["make", "do", "get", "induce", "have", "stimulate", "cause"]}, {"answer": "causing", "hint": "synonyms for causing", "clues": ["make", "have", "stimulate", "cause", "do", "get", "induce", "causing"]}, {"answer": "cave_in", "hint": "synonyms for cave in", "clues": ["break", "fall in", "collapse", "give way", "founder", "give", "cave in"]}, {"answer": "cease", "hint": "synonyms for cease", "clues": ["quit", "give up", "discontinue", "end", "stop", "terminate", "finish", "lay off", "cease"]}, {"answer": "ceding", "hint": "synonyms for ceding", "clues": ["grant", "cede", "deliver", "give up", "concede", "surrender", "yield", "ceding"]}, {"answer": "centering", "hint": "synonyms for centering", "clues": ["revolve about", "revolve around", "rivet", "focus", "focus on", "center", "centre", "center on", "concentrate", "pore"]}, {"answer": "centre", "hint": "synonyms for centre", "clues": ["rivet", "focus", "concentrate", "center", "pore", "centre"]}, {"answer": "chafe", "hint": "synonyms for chafe", "clues": ["annoy", "fray", "devil", "rub", "gravel", "rile", "get at", "gall", "nettle", "irritate", "scratch", "fret", "nark", "excoriate", "vex", "get to", "rag", "bother", "chafe"]}, {"answer": "chaff", "hint": "synonyms for chaff", "clues": ["josh", "kid", "banter", "jolly", "chaff"]}, {"answer": "chafing", "hint": "synonyms for chafing", "clues": ["annoy", "fray", "devil", "rub", "gravel", "rile", "get at", "gall", "nettle", "irritate", "scratch", "fret", "nark", "excoriate", "vex", "get to", "chafe", "rag", "bother", "chafing"]}, {"answer": "chagrin", "hint": "synonyms for chagrin", "clues": ["humble", "abase", "humiliate", "mortify", "chagrin"]}, {"answer": "change", "hint": "synonyms for change", "clues": ["convert", "deepen", "vary", "switch", "interchange", "modify", "transfer", "shift", "commute", "alter", "exchange"]}, {"answer": "channel", "hint": "synonyms for channel", "clues": ["convey", "canalise", "conduct", "channelize", "transfer", "transmit", "carry", "transport", "impart", "channel"]}, {"answer": "channels", "hint": "synonyms for channels", "clues": ["convey", "canalise", "conduct", "channel", "channelize", "transfer", "transmit", "carry", "transport", "impart"]}, {"answer": "chant", "hint": "synonyms for chant", "clues": ["intone", "tone", "cantillate", "chant"]}, {"answer": "chanting", "hint": "synonyms for chanting", "clues": ["intone", "tone", "chant", "cantillate"]}, {"answer": "char", "hint": "synonyms for char", "clues": ["blacken", "scorch", "coal", "sear", "char"]}, {"answer": "charge", "hint": "synonyms for charge", "clues": ["buck", "burden", "shoot", "lodge", "file", "agitate", "bill", "commit", "point", "appoint", "institutionalize", "turn on", "blame", "load", "bear down", "accuse", "tear", "shoot down", "send", "charge up", "rouse", "level", "consign", "saddle", "excite", "commove", "charge"]}, {"answer": "charm", "hint": "synonyms for charm", "clues": ["captivate", "tempt", "capture", "becharm", "trance", "fascinate", "enchant", "influence", "beguile", "bewitch", "catch", "enamor", "charm"]}, {"answer": "charter", "hint": "synonyms for charter", "clues": ["rent", "engage", "hire", "take", "lease", "charter"]}, {"answer": "chase", "hint": "synonyms for chase", "clues": ["dog", "tail", "chase after", "track", "go after", "chamfer", "give chase", "furrow", "tag", "chase"]}, {"answer": "chased", "hint": "synonyms for chased", "clues": ["chase", "dog", "tail", "chase after", "track", "go after", "chamfer", "give chase", "furrow", "tag"]}, {"answer": "chasteness", "hint": "synonyms for chasteness", "clues": ["temper", "tame", "correct", "chastise", "subdue", "moderate", "chasten", "castigate", "objurgate", "chasteness"]}, {"answer": "chastening", "hint": "synonyms for chastening", "clues": ["temper", "tame", "correct", "chastise", "subdue", "moderate", "chasten", "castigate", "objurgate"]}, {"answer": "chat", "hint": "synonyms for chat", "clues": ["gossip", "chitchat", "chatter", "shoot the breeze", "claver", "confabulate", "chew the fat", "jaw", "natter", "confab", "visit", "chaffer", "chat"]}, {"answer": "chatter", "hint": "synonyms for chatter", "clues": ["prattle", "palaver", "tittle-tattle", "jaw", "natter", "confab", "prate", "chat", "twaddle", "gossip", "chitchat", "shoot the breeze", "clack", "gabble", "click", "claver", "confabulate", "blab", "chew the fat", "blabber", "tattle", "visit", "gibber", "maunder", "chaffer", "piffle", "chatter"]}, {"answer": "chattering", "hint": "synonyms for chattering", "clues": ["prattle", "palaver", "chatter", "tittle-tattle", "jaw", "natter", "confab", "prate", "chat", "twaddle", "gossip", "chitchat", "shoot the breeze", "clack", "gabble", "click", "claver", "confabulate", "blab", "chew the fat", "blabber", "tattle", "visit", "gibber", "maunder", "chaffer", "piffle"]}, {"answer": "cheat", "hint": "synonyms for cheat", "clues": ["rip off", "chouse", "betray", "cuckold", "screw", "jockey", "shaft", "wander", "chicane", "cheat on", "chisel", "cheat"]}, {"answer": "check", "hint": "synonyms for check", "clues": ["delay", "match", "gibe", "see to it", "turn back", "tick", "check into", "arrest", "mark", "discipline", "break", "fit", "check off", "check over", "hold in", "determine", "look into", "check out", "agree", "checker", "moderate", "chequer", "mark off", "check up on", "see", "jibe", "ascertain", "hold", "find out", "insure", "go over", "hold back", "train", "learn", "watch", "assure", "stop", "tally", "retard", "condition", "control", "ensure", "suss out", "correspond", "chink", "contain", "tick off", "crack", "curb", "check"]}, {"answer": "cheer", "hint": "synonyms for cheer", "clues": ["inspire", "jolly up", "jolly along", "cheer up", "recreate", "chirk up", "embolden", "exhort", "urge on", "pep up", "barrack", "urge", "hearten", "root on", "cheer"]}, {"answer": "chewing", "hint": "synonyms for chewing", "clues": ["manducate", "jaw", "chew", "masticate"]}, {"answer": "chicane", "hint": "synonyms for chicane", "clues": ["cheat", "chouse", "carp", "screw", "cavil", "jockey", "shaft", "chicane"]}, {"answer": "chiding", "hint": "synonyms for chiding", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "chiding"]}, {"answer": "chink", "hint": "synonyms for chink", "clues": ["tinkle", "clink", "check", "tink", "chink"]}, {"answer": "chip", "hint": "synonyms for chip", "clues": ["come off", "break off", "knap", "break away", "nick", "chip off", "cut off", "chip"]}, {"answer": "chipping", "hint": "synonyms for chipping", "clues": ["chip", "nick", "chip off", "come off", "break off", "knap", "break away", "cut off", "chipping"]}, {"answer": "chips", "hint": "synonyms for chips", "clues": ["chip", "nick", "chip off", "come off", "break off", "knap", "break away", "cut off"]}, {"answer": "chirp", "hint": "synonyms for chirp", "clues": ["peep", "cheep", "tweedle", "chirrup", "chirp"]}, {"answer": "chit-chat", "hint": "synonyms for chit-chat", "clues": ["gossip", "chitchat", "chatter", "shoot the breeze", "claver", "confabulate", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer"]}, {"answer": "chitchat", "hint": "synonyms for chitchat", "clues": ["gossip", "chatter", "shoot the breeze", "chit-chat", "claver", "confabulate", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer"]}, {"answer": "choke", "hint": "synonyms for choke", "clues": ["decease", "asphyxiate", "foul", "go", "suffocate", "buy the farm", "back up", "snuff it", "cash in one's chips", "perish", "expire", "throttle", "strangle", "gag", "croak", "give-up the ghost", "fret", "clog up", "kick the bucket", "pop off", "drop dead", "exit", "conk", "clog", "stifle", "pass away", "die", "choke off", "pass", "congest", "scrag", "choke"]}, {"answer": "choking", "hint": "synonyms for choking", "clues": ["decease", "asphyxiate", "go", "suffocate", "choke", "cash in one's chips", "perish", "expire", "throttle", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "die", "foul", "buy the farm", "back up", "snuff it", "strangle", "gag", "croak", "fret", "clog up", "clog", "stifle", "pass away", "choke off", "pass", "congest", "scrag", "choking"]}, {"answer": "chosen", "hint": "synonyms for chosen", "clues": ["pick out", "choose", "select", "opt", "prefer", "take", "chosen"]}, {"answer": "chuck", "hint": "synonyms for chuck", "clues": ["retch", "toss", "regurgitate", "purge", "spew", "puke", "cast", "pat", "vomit up", "ditch", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck"]}, {"answer": "cipher", "hint": "synonyms for cipher", "clues": ["code", "figure", "work out", "write in code", "encipher", "cypher", "reckon", "compute", "calculate", "encrypt", "inscribe"]}, {"answer": "cite", "hint": "synonyms for cite", "clues": ["reference", "refer", "mention", "quote", "summons", "bring up", "name", "advert", "adduce", "abduce", "cite"]}, {"answer": "clack", "hint": "synonyms for clack", "clues": ["prattle", "palaver", "chatter", "tittle-tattle", "twaddle", "prate", "cluck", "gabble", "click", "blab", "blabber", "tattle", "gibber", "maunder", "piffle", "clack"]}, {"answer": "claim", "hint": "synonyms for claim", "clues": ["exact", "arrogate", "lay claim", "take", "claim"]}, {"answer": "clamber", "hint": "synonyms for clamber", "clues": ["shin", "skin", "sputter", "scramble", "struggle", "shinny", "clamber"]}, {"answer": "clapping", "hint": "synonyms for clapping", "clues": ["acclaim", "spat", "clap", "applaud", "clapping"]}, {"answer": "class", "hint": "synonyms for class", "clues": ["classify", "sort out", "sort", "separate", "assort", "class"]}, {"answer": "claxon", "hint": "synonyms for claxon", "clues": ["beep", "toot", "blare", "honk", "claxon"]}, {"answer": "cleaning", "hint": "synonyms for cleaning", "clues": ["make clean", "clean house", "clean", "houseclean", "pick", "strip", "scavenge", "cleanse"]}, {"answer": "clearing", "hint": "synonyms for clearing", "clues": ["acquit", "top", "illuminate", "authorize", "clear", "crystallise", "sack up", "light up", "sack", "pull in", "enlighten", "gain", "sort out", "exculpate", "earn", "discharge", "assoil", "clear up", "realise", "straighten out", "take in", "brighten", "make", "elucidate", "unclutter", "exonerate", "pass", "solve", "shed light on", "net", "bring in"]}, {"answer": "click", "hint": "synonyms for click", "clues": ["dawn", "cluck", "get across", "snap", "chatter", "clack", "fall into place", "sink in", "tick", "flick", "get through", "come home", "penetrate", "click"]}, {"answer": "climb", "hint": "synonyms for climb", "clues": ["wax", "mount", "rise", "go up", "climb up", "climb"]}, {"answer": "climbing", "hint": "synonyms for climbing", "clues": ["mount", "rise", "climb", "wax", "go up", "climb up"]}, {"answer": "cling", "hint": "synonyms for cling", "clues": ["hang", "cleave", "cohere", "adhere", "stick", "cling"]}, {"answer": "clip", "hint": "synonyms for clip", "clues": ["cut back", "trim", "curtail", "snip", "snip off", "crop", "cut short", "lop", "dress", "prune", "trot", "jog", "clip"]}, {"answer": "clipping", "hint": "synonyms for clipping", "clues": ["cut back", "trim", "curtail", "snip", "snip off", "crop", "cut short", "lop", "dress", "prune", "trot", "clip", "jog", "clipping"]}, {"answer": "cloak", "hint": "synonyms for cloak", "clues": ["dissemble", "mask", "robe", "drape", "clothe", "cloak"]}, {"answer": "clobber", "hint": "synonyms for clobber", "clues": ["lick", "bat", "batter", "baste", "drub", "cream", "thrash", "clobber"]}, {"answer": "clog", "hint": "synonyms for clog", "clues": ["clot", "constipate", "foul", "overload", "clog up", "back up", "choke", "choke off", "congest", "clog"]}, {"answer": "clopping", "hint": "synonyms for clopping", "clues": ["plunk", "clop", "clump", "clunk", "clopping"]}, {"answer": "clot", "hint": "synonyms for clot", "clues": ["clabber", "clog", "curdle", "coagulate", "clot"]}, {"answer": "clothes", "hint": "synonyms for clothes", "clues": ["tog", "raiment", "apparel", "enclothe", "robe", "drape", "garment", "adorn", "cloak", "habilitate", "dress", "fit out", "garb", "invest", "clothes"]}, {"answer": "clothing", "hint": "synonyms for clothing", "clues": ["tog", "raiment", "apparel", "enclothe", "robe", "drape", "garment", "adorn", "cloak", "habilitate", "dress", "fit out", "garb", "invest", "clothing"]}, {"answer": "clotting", "hint": "synonyms for clotting", "clues": ["clabber", "clot", "clog", "curdle", "coagulate", "clotting"]}, {"answer": "cloud", "hint": "synonyms for cloud", "clues": ["sully", "haze over", "defile", "befog", "fog", "obnubilate", "taint", "mottle", "corrupt", "overcast", "mist", "dapple", "obscure", "becloud", "cloud"]}, {"answer": "clouding", "hint": "synonyms for clouding", "clues": ["sully", "cloud", "haze over", "defile", "befog", "fog", "obnubilate", "taint", "mottle", "corrupt", "overcast", "mist", "dapple", "obscure", "becloud"]}, {"answer": "clove", "hint": "synonyms for clove", "clues": ["cleave", "cohere", "cling", "adhere", "rive", "stick", "split", "clove"]}, {"answer": "clump", "hint": "synonyms for clump", "clues": ["bundle", "clunk", "cluster", "bunch", "plunk", "clop", "bunch up", "flock", "constellate", "clump"]}, {"answer": "clumping", "hint": "synonyms for clumping", "clues": ["bundle", "clunk", "cluster", "clump", "bunch", "plunk", "clop", "bunch up", "flock", "constellate"]}, {"answer": "clunking", "hint": "synonyms for clunking", "clues": ["plunk", "clop", "clump", "clunk"]}, {"answer": "cluster", "hint": "synonyms for cluster", "clues": ["bunch", "bundle", "bunch up", "flock", "constellate", "clump", "cluster"]}, {"answer": "clustering", "hint": "synonyms for clustering", "clues": ["bundle", "cluster", "clump", "bunch", "bunch up", "flock", "constellate"]}, {"answer": "clutch", "hint": "synonyms for clutch", "clues": ["hold tight", "cling to", "prehend", "hold close", "seize", "get hold of", "clutch"]}, {"answer": "clutches", "hint": "synonyms for clutches", "clues": ["hold tight", "clutch", "hold close", "seize", "get hold of", "cling to", "prehend"]}, {"answer": "co-ordinate", "hint": "synonyms for co-ordinate", "clues": ["organise", "ordinate", "align", "co-ordinate"]}, {"answer": "coax", "hint": "synonyms for coax", "clues": ["sweet-talk", "palaver", "inveigle", "blarney", "wheedle", "cajole", "coax"]}, {"answer": "cock", "hint": "synonyms for cock", "clues": ["prance", "ruffle", "tittup", "sashay", "strut", "swagger", "cock"]}, {"answer": "cocker", "hint": "synonyms for cocker", "clues": ["baby", "pamper", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle", "cocker"]}, {"answer": "cockle", "hint": "synonyms for cockle", "clues": ["crumple", "ruffle", "pucker", "knit", "undulate", "ripple", "riffle", "cockle"]}, {"answer": "code", "hint": "synonyms for code", "clues": ["cipher", "inscribe", "write in code", "encrypt", "cypher", "code"]}, {"answer": "coding", "hint": "synonyms for coding", "clues": ["code", "rally", "ride", "encipher", "gull", "razz", "put one over", "befool", "bait", "take in", "put on", "encrypt", "inscribe", "taunt", "tantalise", "fool", "write in code", "dupe", "cypher", "twit", "tease", "put one across", "rag", "slang", "coding"]}, {"answer": "coif", "hint": "synonyms for coif", "clues": ["do", "dress", "coiffe", "arrange", "set", "coif"]}, {"answer": "coiffure", "hint": "synonyms for coiffure", "clues": ["do", "dress", "coif", "coiffe", "arrange", "set"]}, {"answer": "coil", "hint": "synonyms for coil", "clues": ["handbuild", "loop", "spiral", "curl", "gyrate", "coil"]}, {"answer": "collapse", "hint": "synonyms for collapse", "clues": ["break", "crumple", "break up", "fall in", "cave in", "give way", "founder", "give", "crack", "break down", "burst", "crock up", "tumble", "collapse"]}, {"answer": "collar", "hint": "synonyms for collar", "clues": ["pick up", "arrest", "nail", "apprehend", "cop", "nab", "collar"]}, {"answer": "collecting", "hint": "synonyms for collecting", "clues": ["pile up", "pull in", "amass", "pull together", "gather up", "hoard", "garner", "gather", "pick up", "compile", "call for", "take in", "accumulate", "roll up", "collect"]}, {"answer": "coloring", "hint": "synonyms for coloring", "clues": ["colour", "discolour", "colour in", "tinge", "gloss", "distort", "colorise", "colourize", "emblazon", "coloring"]}, {"answer": "colors", "hint": "synonyms for colors", "clues": ["colour", "discolour", "colour in", "tinge", "gloss", "distort", "colorise", "colourize", "emblazon"]}, {"answer": "colouring", "hint": "synonyms for colouring", "clues": ["colour", "discolour", "colour in", "colorize", "tinge", "gloss", "colourise", "distort", "emblazon"]}, {"answer": "colours", "hint": "synonyms for colours", "clues": ["colour", "discolour", "colour in", "colorize", "tinge", "gloss", "colourise", "distort", "emblazon"]}, {"answer": "combine", "hint": "synonyms for combine", "clues": ["blend", "mix", "immix", "meld", "commingle", "merge", "conflate", "compound", "unite", "coalesce", "aggregate", "fuse", "flux", "combine"]}, {"answer": "combing", "hint": "synonyms for combing", "clues": ["comb", "ransack", "comb out", "disentangle"]}, {"answer": "combining", "hint": "synonyms for combining", "clues": ["blend", "mix", "immix", "meld", "commingle", "merge", "conflate", "compound", "combine", "unite", "coalesce", "aggregate", "fuse", "flux", "combining"]}, {"answer": "come", "hint": "synonyms for come", "clues": ["total", "come up", "occur", "amount", "add up", "number", "derive", "make out", "get", "arrive", "follow", "issue forth", "fall", "get along", "descend", "come in", "hail", "do", "fare", "come"]}, {"answer": "comfort", "hint": "synonyms for comfort", "clues": ["solace", "ease", "soothe", "console", "comfort"]}, {"answer": "comforts", "hint": "synonyms for comforts", "clues": ["ease", "solace", "soothe", "console", "comfort"]}, {"answer": "command", "hint": "synonyms for command", "clues": ["control", "dominate", "require", "overtop", "overlook", "command"]}, {"answer": "comment", "hint": "synonyms for comment", "clues": ["annotate", "notice", "remark", "point out", "gloss", "comment"]}, {"answer": "communicating", "hint": "synonyms for communicating", "clues": ["pass on", "convey", "pass along", "communicate", "put across", "commune", "transmit", "pass", "intercommunicate", "communicating"]}, {"answer": "commute", "hint": "synonyms for commute", "clues": ["transpose", "convert", "permute", "change", "commute"]}, {"answer": "commuting", "hint": "synonyms for commuting", "clues": ["transpose", "convert", "change", "commute", "permute", "commuting"]}, {"answer": "compass", "hint": "synonyms for compass", "clues": ["apprehend", "dig", "get the picture", "grok", "circumnavigate", "grasp", "comprehend", "savvy", "compass"]}, {"answer": "compiling", "hint": "synonyms for compiling", "clues": ["pile up", "amass", "compose", "hoard", "compile", "accumulate", "roll up", "collect", "compiling"]}, {"answer": "composing", "hint": "synonyms for composing", "clues": ["indite", "compile", "frame", "draw up", "pen", "compose", "write", "composing"]}, {"answer": "compounding", "hint": "synonyms for compounding", "clues": ["combine", "compound", "deepen", "intensify", "heighten"]}, {"answer": "compress", "hint": "synonyms for compress", "clues": ["squeeze", "contract", "compact", "press", "constrict", "pack together", "compress"]}, {"answer": "compressing", "hint": "synonyms for compressing", "clues": ["compress", "compact", "press", "pack together", "contract", "squeeze", "constrict"]}, {"answer": "computing", "hint": "synonyms for computing", "clues": ["cipher", "figure", "work out", "reckon", "calculate", "cypher", "compute", "computing"]}, {"answer": "conceding", "hint": "synonyms for conceding", "clues": ["grant", "profess", "cede", "confess", "concede", "yield", "conceding"]}, {"answer": "concentrate", "hint": "synonyms for concentrate", "clues": ["centralize", "rivet", "digest", "focus", "reduce", "center", "centre", "condense", "contract", "decoct", "boil down", "pore", "concentrate"]}, {"answer": "concern", "hint": "synonyms for concern", "clues": ["refer", "touch on", "relate", "have-to doe with", "worry", "pertain", "come to", "touch", "bear on", "occupy", "interest", "concern"]}, {"answer": "concord", "hint": "synonyms for concord", "clues": ["accord", "fit in", "agree", "harmonize", "consort", "concur", "hold", "concord"]}, {"answer": "condensing", "hint": "synonyms for condensing", "clues": ["digest", "distill", "condense", "contract", "concentrate", "condensing"]}, {"answer": "condition", "hint": "synonyms for condition", "clues": ["train", "qualify", "specify", "discipline", "check", "stipulate", "condition"]}, {"answer": "conditioning", "hint": "synonyms for conditioning", "clues": ["train", "qualify", "specify", "discipline", "stipulate", "check", "condition"]}, {"answer": "conditions", "hint": "synonyms for conditions", "clues": ["train", "qualify", "specify", "discipline", "stipulate", "check", "condition"]}, {"answer": "conduct", "hint": "synonyms for conduct", "clues": ["convey", "carry on", "guide", "comport", "channel", "transmit", "acquit", "bear", "deal", "take", "behave", "deport", "direct", "carry", "lead", "impart", "conduct"]}, {"answer": "conducting", "hint": "synonyms for conducting", "clues": ["guide", "comport", "acquit", "bear", "deal", "behave", "deport", "direct", "carry", "impart", "convey", "conduct", "carry on", "channel", "take", "transmit", "lead"]}, {"answer": "confab", "hint": "synonyms for confab", "clues": ["gossip", "chitchat", "consult", "chatter", "shoot the breeze", "confer", "claver", "confabulate", "chew the fat", "jaw", "natter", "visit", "chat", "chaffer", "confab"]}, {"answer": "confines", "hint": "synonyms for confines", "clues": ["confine", "hold in", "limit", "circumscribe", "detain", "hold", "enclose", "trammel", "bound", "restrain", "throttle", "restrict"]}, {"answer": "conjecture", "hint": "synonyms for conjecture", "clues": ["hypothesise", "hypothecate", "theorize", "suppose", "speculate", "conjecture"]}, {"answer": "conjuring", "hint": "synonyms for conjuring", "clues": ["call down", "cabal", "call forth", "press", "arouse", "conjure", "invoke", "bid", "beseech", "stir", "put forward", "adjure", "entreat", "raise", "machinate", "bring up", "conspire", "conjure up", "complot", "evoke", "conjuring"]}, {"answer": "conk", "hint": "synonyms for conk", "clues": ["decease", "pass out", "go", "buy the farm", "swoon", "choke", "snuff it", "perish", "expire", "stall", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "faint", "pass away", "die", "pass", "cash in one's chips", "conk"]}, {"answer": "conquering", "hint": "synonyms for conquering", "clues": ["appropriate", "capture", "inhibit", "seize", "stamp down", "subdue", "curb", "conquer", "suppress"]}, {"answer": "conserve", "hint": "synonyms for conserve", "clues": ["economize", "preserve", "keep up", "maintain", "husband", "conserve"]}, {"answer": "conserves", "hint": "synonyms for conserves", "clues": ["economize", "preserve", "keep up", "conserve", "maintain", "husband"]}, {"answer": "consort", "hint": "synonyms for consort", "clues": ["accord", "affiliate", "fit in", "agree", "assort", "run", "associate", "concord", "harmonize", "consort"]}, {"answer": "construct", "hint": "synonyms for construct", "clues": ["reconstruct", "make", "fabricate", "build", "manufacture", "retrace"]}, {"answer": "contact", "hint": "synonyms for contact", "clues": ["reach", "get through", "touch", "adjoin", "meet", "get hold of", "contact"]}, {"answer": "contract", "hint": "synonyms for contract", "clues": ["narrow", "abridge", "compact", "press", "shrink", "foreshorten", "undertake", "get", "squeeze", "shorten", "sign on", "abbreviate", "sign up", "compress", "reduce", "take", "sign", "cut", "condense", "concentrate", "constrict", "contract"]}, {"answer": "contracting", "hint": "synonyms for contracting", "clues": ["narrow", "abridge", "compact", "press", "shrink", "foreshorten", "undertake", "get", "squeeze", "shorten", "sign on", "abbreviate", "sign up", "compress", "reduce", "take", "sign", "cut", "condense", "contract", "concentrate", "constrict"]}, {"answer": "control", "hint": "synonyms for control", "clues": ["ensure", "keep in line", "hold in", "command", "verify", "operate", "see to it", "ascertain", "manipulate", "check", "assure", "moderate", "master", "contain", "see", "curb", "hold", "insure", "control"]}, {"answer": "convert", "hint": "synonyms for convert", "clues": ["change over", "convince", "change", "commute", "win over", "convert"]}, {"answer": "conveying", "hint": "synonyms for conveying", "clues": ["get", "convey", "conduct", "channel", "fetch", "communicate", "take", "bring", "express", "transmit", "carry", "impart"]}, {"answer": "cook", "hint": "synonyms for cook", "clues": ["make", "falsify", "manipulate", "fudge", "fix", "wangle", "ready", "prepare", "misrepresent", "fake", "cook"]}, {"answer": "cooking", "hint": "synonyms for cooking", "clues": ["make", "falsify", "manipulate", "fudge", "fix", "cook", "ready", "prepare", "misrepresent", "wangle", "fake"]}, {"answer": "cooling", "hint": "synonyms for cooling", "clues": ["cool down", "cool off", "cool", "chill"]}, {"answer": "cop", "hint": "synonyms for cop", "clues": ["nail", "collar", "apprehend", "snitch", "pick up", "glom", "arrest", "hook", "knock off", "thieve", "nab", "cop"]}, {"answer": "cope", "hint": "synonyms for cope", "clues": ["make do", "make out", "get by", "manage", "grapple", "contend", "deal", "cope"]}, {"answer": "coping", "hint": "synonyms for coping", "clues": ["get by", "apprehend", "deal", "arrest", "make out", "grapple", "hook", "contend", "thieve", "make do", "collar", "nail", "manage", "snitch", "pick up", "glom", "cope", "knock off", "nab", "coping"]}, {"answer": "copy", "hint": "synonyms for copy", "clues": ["simulate", "replicate", "re-create", "imitate", "copy"]}, {"answer": "copying", "hint": "synonyms for copying", "clues": ["simulate", "replicate", "re-create", "imitate", "copy"]}, {"answer": "coquette", "hint": "synonyms for coquette", "clues": ["flirt", "romance", "dally", "coquet", "philander", "mash", "chat up", "butterfly"]}, {"answer": "couch", "hint": "synonyms for couch", "clues": ["frame", "cast", "redact", "put", "couch"]}, {"answer": "count", "hint": "synonyms for count", "clues": ["depend", "consider", "look", "reckon", "number", "enumerate", "weigh", "calculate", "matter", "bet", "count"]}, {"answer": "counterbalance", "hint": "synonyms for counterbalance", "clues": ["make up", "countervail", "compensate", "even up", "correct", "even off", "counteract", "even out", "neutralize", "oppose", "counterbalance"]}, {"answer": "countermand", "hint": "synonyms for countermand", "clues": ["revoke", "annul", "reverse", "overturn", "vacate", "rescind", "repeal", "lift", "countermand"]}, {"answer": "countermine", "hint": "synonyms for countermine", "clues": ["undermine", "counteract", "weaken", "subvert", "sabotage", "countermine"]}, {"answer": "countess", "hint": "synonyms for countess", "clues": ["depend", "consider", "look", "reckon", "number", "enumerate", "weigh", "calculate", "matter", "bet", "count", "countess"]}, {"answer": "counting", "hint": "synonyms for counting", "clues": ["depend", "consider", "look", "reckon", "number", "enumerate", "weigh", "calculate", "matter", "bet", "count"]}, {"answer": "couple", "hint": "synonyms for couple", "clues": ["copulate", "couple on", "mate", "match", "pair off", "couple up", "twin", "pair", "partner off", "couple"]}, {"answer": "coupling", "hint": "synonyms for coupling", "clues": ["copulate", "couple on", "mate", "pair", "match", "pair off", "couple up", "twin", "couple", "partner off", "coupling"]}, {"answer": "coursing", "hint": "synonyms for coursing", "clues": ["feed", "flow", "course", "run", "coursing"]}, {"answer": "courting", "hint": "synonyms for courting", "clues": ["woo", "solicit", "romance", "court"]}, {"answer": "cover", "hint": "synonyms for cover", "clues": ["get across", "cross", "address", "compensate", "wrap up", "spread over", "report", "deal", "overlay", "overcompensate", "brood", "cut through", "hatch", "shroud", "breed", "plow", "underwrite", "traverse", "pass over", "get over", "continue", "hide", "treat", "track", "insure", "encompass", "extend", "cut across", "incubate", "embrace", "handle", "comprehend", "cover up", "cover"]}, {"answer": "covering", "hint": "synonyms for covering", "clues": ["get across", "cross", "address", "compensate", "wrap up", "spread over", "report", "deal", "overlay", "overcompensate", "brood", "cut through", "hatch", "shroud", "breed", "plow", "underwrite", "cover", "traverse", "pass over", "get over", "continue", "hide", "treat", "track", "insure", "encompass", "extend", "cut across", "incubate", "embrace", "handle", "comprehend", "cover up"]}, {"answer": "crab", "hint": "synonyms for crab", "clues": ["grouse", "holler", "squawk", "beef", "bitch", "bellyache", "gripe", "crab"]}, {"answer": "crabs", "hint": "synonyms for crabs", "clues": ["holler", "squawk", "bellyache", "crab", "grouse", "beef", "bitch", "gripe"]}, {"answer": "crackling", "hint": "synonyms for crackling", "clues": ["crackle", "scranch", "crunch", "crepitate", "crackling"]}, {"answer": "cracklings", "hint": "synonyms for cracklings", "clues": ["crackle", "scranch", "crunch", "crepitate", "cracklings"]}, {"answer": "crap", "hint": "synonyms for crap", "clues": ["shit", "make", "take a crap", "ca-ca", "take a shit", "defecate", "stool", "crap"]}, {"answer": "crape", "hint": "synonyms for crape", "clues": ["frizz", "kink up", "frizzle", "kink", "crimp", "crepe", "crape"]}, {"answer": "craps", "hint": "synonyms for craps", "clues": ["shit", "make", "take a crap", "take a shit", "defecate", "stool", "ca-ca", "crap"]}, {"answer": "crash", "hint": "synonyms for crash", "clues": ["break up", "go down", "break apart", "barge in", "gate-crash", "doss down", "doss", "ram", "dash", "crash"]}, {"answer": "craving", "hint": "synonyms for craving", "clues": ["lust", "starve", "thirst", "crave", "hunger", "craving"]}, {"answer": "crawfish", "hint": "synonyms for crawfish", "clues": ["pull back", "withdraw", "retreat", "crawfish out", "back out", "pull in one's horns", "back away", "crawfish"]}, {"answer": "crawl", "hint": "synonyms for crawl", "clues": ["cower", "cringe", "grovel", "fawn", "creep", "crawl"]}, {"answer": "crawling", "hint": "synonyms for crawling", "clues": ["cower", "cringe", "grovel", "fawn", "creep", "crawl"]}, {"answer": "creak", "hint": "synonyms for creak", "clues": ["whine", "screech", "squeak", "skreak", "screak"]}, {"answer": "creaking", "hint": "synonyms for creaking", "clues": ["whine", "screech", "squeak", "skreak", "creak"]}, {"answer": "cream", "hint": "synonyms for cream", "clues": ["clobber", "cream off", "lick", "bat", "drub", "skim off", "thrash", "skim", "cream"]}, {"answer": "crease", "hint": "synonyms for crease", "clues": ["graze", "crumple", "wrinkle", "ruckle", "scrunch up", "scrunch", "rake", "crisp", "furrow", "crease"]}, {"answer": "creep", "hint": "synonyms for creep", "clues": ["cower", "pussyfoot", "cringe", "grovel", "mouse", "fawn", "crawl", "sneak", "creep"]}, {"answer": "creeping", "hint": "synonyms for creeping", "clues": ["cower", "pussyfoot", "cringe", "grovel", "mouse", "fawn", "creep", "crawl", "sneak"]}, {"answer": "creeps", "hint": "synonyms for creeps", "clues": ["cower", "pussyfoot", "cringe", "grovel", "mouse", "fawn", "creep", "crawl", "sneak"]}, {"answer": "crimp", "hint": "synonyms for crimp", "clues": ["frizz", "kink up", "crape", "frizzle", "kink", "pinch", "crimp"]}, {"answer": "crinkle", "hint": "synonyms for crinkle", "clues": ["crumple", "crease", "wrinkle", "ruckle", "scrunch up", "scrunch", "crisp"]}, {"answer": "croak", "hint": "synonyms for croak", "clues": ["decease", "cronk", "go", "buy the farm", "choke", "snuff it", "mutter", "perish", "expire", "murmur", "gnarl", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "grumble", "pass away", "die", "pass", "cash in one's chips", "croak"]}, {"answer": "croaking", "hint": "synonyms for croaking", "clues": ["decease", "cronk", "go", "buy the farm", "choke", "snuff it", "mutter", "perish", "expire", "murmur", "gnarl", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "grumble", "pass away", "die", "pass", "cash in one's chips"]}, {"answer": "crop", "hint": "synonyms for crop", "clues": ["cut back", "clip", "trim", "pasture", "snip", "lop", "range", "dress", "work", "prune", "graze", "browse", "cultivate", "crop"]}, {"answer": "crossbreed", "hint": "synonyms for crossbreed", "clues": ["cross", "interbreed", "hybridize", "crossbreed"]}, {"answer": "crossbreeding", "hint": "synonyms for crossbreeding", "clues": ["cross", "hybridise", "crossbreed", "interbreed"]}, {"answer": "crossing", "hint": "synonyms for crossing", "clues": ["get across", "cross", "spoil", "queer", "hybridize", "bilk", "cut through", "intersect", "cover", "baffle", "traverse", "span", "pass over", "frustrate", "get over", "scotch", "track", "foil", "cut across", "sweep", "thwart", "crossbreed", "interbreed"]}, {"answer": "crouch", "hint": "synonyms for crouch", "clues": ["squat", "bow", "hunker down", "scrunch up", "scrunch", "bend", "hunker", "stoop", "crouch"]}, {"answer": "crowding", "hint": "synonyms for crowding", "clues": ["herd", "crowd together", "crowd", "push"]}, {"answer": "crunch", "hint": "synonyms for crunch", "clues": ["crackle", "bray", "grind", "craunch", "comminute", "mash", "munch"]}, {"answer": "crusade", "hint": "synonyms for crusade", "clues": ["fight", "press", "campaign", "push", "agitate", "crusade"]}, {"answer": "crush", "hint": "synonyms for crush", "clues": ["beat out", "squelch", "smash", "demolish", "vanquish", "squash", "oppress", "shell", "break down", "trounce", "squeeze", "jam", "beat", "suppress", "crush"]}, {"answer": "cry", "hint": "synonyms for cry", "clues": ["holler", "yell", "weep", "cry out", "call out", "call", "shout", "squall", "shout out", "scream", "blazon out", "exclaim", "hollo", "outcry", "cry"]}, {"answer": "crystallizing", "hint": "synonyms for crystallizing", "clues": ["illuminate", "clear up", "clear", "straighten out", "crystallise", "elucidate", "enlighten", "sort out", "effloresce", "shed light on", "crystallizing"]}, {"answer": "cuckold", "hint": "synonyms for cuckold", "clues": ["betray", "cheat on", "cheat", "wander", "cuckold"]}, {"answer": "cuddle", "hint": "synonyms for cuddle", "clues": ["nuzzle", "nest", "draw close", "nestle", "snuggle", "cuddle"]}, {"answer": "cuddling", "hint": "synonyms for cuddling", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle", "cuddling"]}, {"answer": "curb", "hint": "synonyms for curb", "clues": ["control", "cut back", "hold in", "restrict", "curtail", "check", "inhibit", "conquer", "stamp down", "contain", "subdue", "moderate", "hold", "suppress", "curb"]}, {"answer": "curbing", "hint": "synonyms for curbing", "clues": ["control", "cut back", "hold in", "restrict", "curtail", "curb", "check", "inhibit", "conquer", "stamp down", "contain", "subdue", "moderate", "hold", "suppress"]}, {"answer": "curl", "hint": "synonyms for curl", "clues": ["curl up", "loop", "draw in", "coil", "kink", "wave", "curve", "curl"]}, {"answer": "curse", "hint": "synonyms for curse", "clues": ["imprecate", "swear", "unchurch", "excommunicate", "anathemize", "cuss", "maledict", "blaspheme", "beshrew", "bedamn", "damn", "curse"]}, {"answer": "curve", "hint": "synonyms for curve", "clues": ["arc", "slew", "wind", "swerve", "slue", "curl", "kink", "trend", "cut", "veer", "sheer", "twist", "crook", "curve"]}, {"answer": "cuss", "hint": "synonyms for cuss", "clues": ["blaspheme", "imprecate", "swear", "curse", "cuss"]}, {"answer": "cycle", "hint": "synonyms for cycle", "clues": ["bicycle", "bike", "motorcycle", "motorbike", "pedal", "wheel", "cycle"]}, {"answer": "cycling", "hint": "synonyms for cycling", "clues": ["motorcycle", "motorbike", "wheel", "bicycle", "bike", "cycle", "pedal", "cycling"]}, {"answer": "cypher", "hint": "synonyms for cypher", "clues": ["code", "figure", "work out", "write in code", "encipher", "reckon", "compute", "calculate", "encrypt", "inscribe", "cypher"]}, {"answer": "dampening", "hint": "synonyms for dampening", "clues": ["break", "muffle", "soften", "weaken", "dull", "deaden", "tone down", "stifle", "dampen", "mute", "wash", "damp", "moisten"]}, {"answer": "dart", "hint": "synonyms for dart", "clues": ["flutter", "scud", "flash", "shoot", "scoot", "flit", "dash", "fleet", "dart"]}, {"answer": "darts", "hint": "synonyms for darts", "clues": ["flutter", "scud", "flash", "scoot", "shoot", "dart", "flit", "dash", "fleet"]}, {"answer": "dash", "hint": "synonyms for dash", "clues": ["frighten away", "scud", "flash", "frighten off", "smash", "scoot", "shoot", "scare", "scare away", "scare off", "dart", "crash", "pall", "daunt", "dash"]}, {"answer": "date", "hint": "synonyms for date", "clues": ["go out", "see", "go steady", "date stamp", "date"]}, {"answer": "dating", "hint": "synonyms for dating", "clues": ["go out", "date stamp", "see", "go steady", "date", "dating"]}, {"answer": "dawdling", "hint": "synonyms for dawdling", "clues": ["linger", "dawdle", "lag", "fall back", "fall behind", "dally", "dawdling"]}, {"answer": "dawn", "hint": "synonyms for dawn", "clues": ["get across", "get through", "come home", "penetrate", "fall into place", "sink in", "click", "dawn"]}, {"answer": "dawning", "hint": "synonyms for dawning", "clues": ["dawn", "get across", "fall into place", "sink in", "click", "get through", "come home", "penetrate"]}, {"answer": "daydream", "hint": "synonyms for daydream", "clues": ["moon", "dream", "stargaze", "woolgather", "daydream"]}, {"answer": "daydreaming", "hint": "synonyms for daydreaming", "clues": ["dream", "woolgather", "daydream", "stargaze", "moon"]}, {"answer": "daze", "hint": "synonyms for daze", "clues": ["bedaze", "stun", "dazzle", "daze"]}, {"answer": "deal", "hint": "synonyms for deal", "clues": ["dispense", "address", "allot", "get by", "share", "apportion", "deal out", "plow", "make out", "dish out", "grapple", "cover", "trade", "divvy up", "contend", "distribute", "care", "portion out", "shell out", "dole out", "sell", "make do", "administer", "look at", "conduct", "treat", "manage", "carry on", "lot", "consider", "take", "cope", "parcel out", "handle", "mete out", "deal"]}, {"answer": "dealing", "hint": "synonyms for dealing", "clues": ["dispense", "address", "allot", "get by", "deal", "share", "apportion", "deal out", "plow", "make out", "dish out", "grapple", "cover", "trade", "divvy up", "contend", "distribute", "care", "portion out", "shell out", "dole out", "sell", "make do", "administer", "look at", "conduct", "treat", "manage", "carry on", "lot", "consider", "take", "cope", "parcel out", "handle", "mete out"]}, {"answer": "dealings", "hint": "synonyms for dealings", "clues": ["dispense", "address", "allot", "get by", "deal", "share", "apportion", "deal out", "plow", "make out", "dish out", "grapple", "cover", "trade", "divvy up", "contend", "distribute", "care", "portion out", "shell out", "dole out", "sell", "make do", "administer", "look at", "conduct", "treat", "manage", "carry on", "lot", "consider", "take", "cope", "parcel out", "handle", "mete out", "dealings"]}, {"answer": "debate", "hint": "synonyms for debate", "clues": ["deliberate", "moot", "argue", "contend", "consider", "turn over", "fence", "debate"]}, {"answer": "debauch", "hint": "synonyms for debauch", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch"]}, {"answer": "decay", "hint": "synonyms for decay", "clues": ["dilapidate", "decompose", "disintegrate", "crumble", "decay"]}, {"answer": "decease", "hint": "synonyms for decease", "clues": ["go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "decease"]}, {"answer": "deck", "hint": "synonyms for deck", "clues": ["grace", "knock down", "coldcock", "bedeck", "adorn", "bedight", "dump", "beautify", "decorate", "embellish", "floor", "deck"]}, {"answer": "decline", "hint": "synonyms for decline", "clues": ["turn down", "go down", "correct", "worsen", "pass up", "wane", "reject", "slump", "refuse", "decline"]}, {"answer": "decompressing", "hint": "synonyms for decompressing", "clues": ["unwind", "decompress", "unbend", "relax", "depressurise", "loosen up", "slow down", "uncompress"]}, {"answer": "decrease", "hint": "synonyms for decrease", "clues": ["fall", "diminish", "minify", "lessen", "decrease"]}, {"answer": "defeat", "hint": "synonyms for defeat", "clues": ["kill", "get the better of", "shoot down", "vote down", "vote out", "overcome", "defeat"]}, {"answer": "defile", "hint": "synonyms for defile", "clues": ["sully", "maculate", "cloud", "stain", "foul", "taint", "corrupt", "tarnish", "befoul", "defile"]}, {"answer": "defining", "hint": "synonyms for defining", "clues": ["determine", "specify", "set", "limit", "delineate", "fix", "delimit", "delimitate", "define", "defining"]}, {"answer": "delay", "hint": "synonyms for delay", "clues": ["retard", "hold up", "stay", "detain", "check", "delay"]}, {"answer": "delegating", "hint": "synonyms for delegating", "clues": ["depute", "delegate", "assign", "designate", "delegating"]}, {"answer": "delight", "hint": "synonyms for delight", "clues": ["please", "enthrall", "revel", "enrapture", "enchant", "enjoy", "ravish", "transport", "delight"]}, {"answer": "deluge", "hint": "synonyms for deluge", "clues": ["swamp", "submerge", "flood", "inundate", "flood out", "overwhelm", "deluge"]}, {"answer": "demand", "hint": "synonyms for demand", "clues": ["need", "postulate", "ask", "take", "necessitate", "require", "exact", "involve", "call for", "demand"]}, {"answer": "demo", "hint": "synonyms for demo", "clues": ["show", "present", "demonstrate", "exhibit", "demo"]}, {"answer": "demolishing", "hint": "synonyms for demolishing", "clues": ["pulverise", "smash", "crush", "demolish", "destroy"]}, {"answer": "depicting", "hint": "synonyms for depicting", "clues": ["portray", "draw", "picture", "depict", "show", "limn", "describe", "render"]}, {"answer": "deposit", "hint": "synonyms for deposit", "clues": ["fix", "situate", "lodge", "wedge", "stick", "bank", "posit", "deposit"]}, {"answer": "deriving", "hint": "synonyms for deriving", "clues": ["deduct", "educe", "gain", "infer", "descend", "come", "derive", "deriving"]}, {"answer": "desert", "hint": "synonyms for desert", "clues": ["defect", "desolate", "abandon", "forsake", "desert"]}, {"answer": "deserts", "hint": "synonyms for deserts", "clues": ["abandon", "defect", "forsake", "desert", "desolate"]}, {"answer": "despising", "hint": "synonyms for despising", "clues": ["scorn", "contemn", "despise", "disdain", "despising"]}, {"answer": "detecting", "hint": "synonyms for detecting", "clues": ["notice", "discover", "observe", "find", "detect"]}, {"answer": "devil", "hint": "synonyms for devil", "clues": ["annoy", "nettle", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother", "devil"]}, {"answer": "devise", "hint": "synonyms for devise", "clues": ["invent", "organise", "formulate", "forge", "machinate", "contrive", "prepare", "get up", "excogitate", "devise"]}, {"answer": "devising", "hint": "synonyms for devising", "clues": ["invent", "organise", "devise", "formulate", "forge", "machinate", "contrive", "prepare", "get up", "excogitate", "devising"]}, {"answer": "die", "hint": "synonyms for die", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "break down", "expire", "give out", "die out", "break", "conk out", "croak", "give-up the ghost", "give way", "kick the bucket", "pop off", "drop dead", "exit", "fail", "become flat", "go bad", "conk", "pass away", "pall", "pass", "cash in one's chips", "die"]}, {"answer": "dig", "hint": "synonyms for dig", "clues": ["dig up", "labor", "jab", "hollow", "drudge", "apprehend", "cut into", "travail", "toil", "moil", "poke", "grasp", "delve", "stab", "excavate", "grind", "get the picture", "grok", "fag", "compass", "prod", "comprehend", "turn over", "savvy", "dig out", "dig"]}, {"answer": "digest", "hint": "synonyms for digest", "clues": ["support", "abide", "bear", "endure", "tolerate", "suffer", "put up", "condense", "stand", "concentrate", "stomach", "brook", "stick out", "digest"]}, {"answer": "digging", "hint": "synonyms for digging", "clues": ["dig up", "labor", "jab", "hollow", "drudge", "apprehend", "cut into", "dig", "travail", "toil", "moil", "poke", "grasp", "delve", "stab", "excavate", "grind", "get the picture", "grok", "fag", "compass", "prod", "comprehend", "turn over", "savvy", "dig out", "digging"]}, {"answer": "digs", "hint": "synonyms for digs", "clues": ["dig up", "labor", "jab", "hollow", "drudge", "apprehend", "cut into", "dig", "travail", "toil", "moil", "poke", "grasp", "delve", "stab", "excavate", "grind", "get the picture", "grok", "fag", "compass", "prod", "comprehend", "turn over", "savvy", "dig out"]}, {"answer": "dip", "hint": "synonyms for dip", "clues": ["sink", "dim", "souse", "plunge", "duck", "dunk", "douse", "dip"]}, {"answer": "dirtying", "hint": "synonyms for dirtying", "clues": ["bemire", "soil", "dirty", "begrime", "colly", "grime"]}, {"answer": "disappearing", "hint": "synonyms for disappearing", "clues": ["evaporate", "vanish", "go away", "disappear", "melt"]}, {"answer": "discard", "hint": "synonyms for discard", "clues": ["dispose", "toss", "cast aside", "fling", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "toss away", "cast away", "discard"]}, {"answer": "discharge", "hint": "synonyms for discharge", "clues": ["drop", "acquit", "exhaust", "clear", "fire", "dispatch", "complete", "unload", "drop off", "put down", "free", "exonerate", "release", "go off", "exculpate", "set down", "empty", "muster out", "eject", "expel", "assoil", "discharge"]}, {"answer": "discipline", "hint": "synonyms for discipline", "clues": ["train", "correct", "sort out", "check", "condition", "discipline"]}, {"answer": "discount", "hint": "synonyms for discount", "clues": ["disregard", "brush off", "dismiss", "ignore", "push aside", "discount"]}, {"answer": "discourse", "hint": "synonyms for discourse", "clues": ["dissertate", "hold forth", "talk about", "discuss", "converse", "discourse"]}, {"answer": "disdain", "hint": "synonyms for disdain", "clues": ["turn down", "despise", "contemn", "freeze off", "pooh-pooh", "reject", "spurn", "scorn", "disdain"]}, {"answer": "disgrace", "hint": "synonyms for disgrace", "clues": ["put down", "discredit", "shame", "attaint", "take down", "degrade", "dishonour", "demean", "disgrace"]}, {"answer": "disgust", "hint": "synonyms for disgust", "clues": ["revolt", "nauseate", "repel", "gross out", "sicken", "churn up", "disgust"]}, {"answer": "dish", "hint": "synonyms for dish", "clues": ["serve", "dish up", "dish out", "serve up", "dish"]}, {"answer": "dishonor", "hint": "synonyms for dishonor", "clues": ["rape", "shame", "attaint", "assault", "dishonour", "outrage", "violate", "ravish", "disgrace"]}, {"answer": "dishonour", "hint": "synonyms for dishonour", "clues": ["rape", "shame", "attaint", "assault", "outrage", "violate", "ravish", "disgrace", "dishonor"]}, {"answer": "dismantling", "hint": "synonyms for dismantling", "clues": ["take apart", "break up", "break apart", "take down", "level", "dismantle", "pull down", "raze", "tear down", "strip", "disassemble", "rase", "dismantling"]}, {"answer": "dismay", "hint": "synonyms for dismay", "clues": ["appall", "get down", "cast down", "alarm", "demoralise", "deject", "dispirit", "horrify", "depress", "dismay"]}, {"answer": "dismount", "hint": "synonyms for dismount", "clues": ["light", "unhorse", "get off", "get down", "dismount"]}, {"answer": "disorder", "hint": "synonyms for disorder", "clues": ["cark", "trouble", "unhinge", "disquiet", "distract", "disarray", "perturb", "disorder"]}, {"answer": "disowning", "hint": "synonyms for disowning", "clues": ["renounce", "disinherit", "repudiate", "disown"]}, {"answer": "dispatch", "hint": "synonyms for dispatch", "clues": ["remove", "bump off", "send off", "polish off", "hit", "off", "discharge", "despatch", "murder", "slay", "complete"]}, {"answer": "dispute", "hint": "synonyms for dispute", "clues": ["altercate", "scrap", "challenge", "quarrel", "argufy", "gainsay", "dispute"]}, {"answer": "disquiet", "hint": "synonyms for disquiet", "clues": ["cark", "trouble", "unhinge", "distract", "disorder", "perturb", "disquiet"]}, {"answer": "disregard", "hint": "synonyms for disregard", "clues": ["brush aside", "discount", "dismiss", "neglect", "cut", "brush off", "ignore", "snub", "disregard"]}, {"answer": "dissembling", "hint": "synonyms for dissembling", "clues": ["act", "sham", "dissemble", "cloak", "affect", "mask", "pretend", "feign", "dissembling"]}, {"answer": "dissent", "hint": "synonyms for dissent", "clues": ["differ", "disagree", "resist", "take issue", "protest", "dissent"]}, {"answer": "dissolve", "hint": "synonyms for dissolve", "clues": ["fade away", "dethaw", "break up", "unfreeze", "thaw", "dismiss", "disband", "resolve", "melt", "fade out", "unthaw", "dissolve"]}, {"answer": "dissolving", "hint": "synonyms for dissolving", "clues": ["fade away", "dethaw", "break up", "unfreeze", "thaw", "dismiss", "disband", "resolve", "melt", "fade out", "unthaw", "dissolve", "dissolving"]}, {"answer": "divide", "hint": "synonyms for divide", "clues": ["disunite", "carve up", "dissever", "fraction", "split up", "separate", "part", "split", "divide"]}, {"answer": "divorce", "hint": "synonyms for divorce", "clues": ["dissociate", "disunite", "disjoint", "split up", "divorce"]}, {"answer": "do", "hint": "synonyms for do", "clues": ["practise", "exercise", "perform", "cause", "behave", "make out", "dress", "coif", "suffice", "coiffe", "set", "make", "act", "get along", "manage", "arrange", "answer", "come", "fare", "serve", "execute", "do"]}, {"answer": "doctor", "hint": "synonyms for doctor", "clues": ["mend", "touch on", "sophisticate", "furbish up", "doctor up", "fix", "restore", "bushel", "repair", "doctor"]}, {"answer": "dodder", "hint": "synonyms for dodder", "clues": ["waddle", "totter", "paddle", "toddle", "coggle", "dodder"]}, {"answer": "dodge", "hint": "synonyms for dodge", "clues": ["parry", "circumvent", "skirt", "put off", "evade", "fudge", "sidestep", "elude", "duck", "hedge", "dodge"]}, {"answer": "dodging", "hint": "synonyms for dodging", "clues": ["parry", "circumvent", "dodge", "put off", "evade", "fudge", "sidestep", "duck", "elude", "skirt", "hedge", "dodging"]}, {"answer": "dog", "hint": "synonyms for dog", "clues": ["chase", "tail", "chase after", "track", "go after", "give chase", "tag", "dog"]}, {"answer": "doings", "hint": "synonyms for doings", "clues": ["practise", "exercise", "perform", "cause", "behave", "make out", "dress", "coif", "suffice", "coiffe", "set", "make", "act", "get along", "manage", "arrange", "answer", "come", "do", "fare", "serve", "execute", "doings"]}, {"answer": "don", "hint": "synonyms for don", "clues": ["get into", "put on", "wear", "assume", "don"]}, {"answer": "doom", "hint": "synonyms for doom", "clues": ["fate", "destine", "sentence", "designate", "condemn", "doom"]}, {"answer": "dos", "hint": "synonyms for dos", "clues": ["practise", "exercise", "perform", "cause", "behave", "make out", "dress", "coif", "suffice", "coiffe", "set", "make", "act", "get along", "manage", "arrange", "answer", "come", "do", "fare", "serve", "execute"]}, {"answer": "dot", "hint": "synonyms for dot", "clues": ["sprinkle", "stud", "disperse", "constellate", "dust", "scatter", "dot"]}, {"answer": "doubles", "hint": "synonyms for doubles", "clues": ["replicate", "double up", "duplicate", "double over", "repeat", "double"]}, {"answer": "doubling", "hint": "synonyms for doubling", "clues": ["replicate", "double up", "duplicate", "double over", "repeat", "double", "doubling"]}, {"answer": "dousing", "hint": "synonyms for dousing", "clues": ["soak", "sop", "drench", "dowse", "souse", "put out", "dip", "plunge", "duck", "dunk", "douse", "dousing"]}, {"answer": "downing", "hint": "synonyms for downing", "clues": ["kill", "pour down", "devour", "knock down", "down", "pop", "cut down", "polish", "go through", "refine", "consume", "belt down", "shoot down", "fine-tune", "pull down", "toss off", "land", "push down", "drink down"]}, {"answer": "dowse", "hint": "synonyms for dowse", "clues": ["soak", "sop", "drench", "souse", "douse", "dowse"]}, {"answer": "dowsing", "hint": "synonyms for dowsing", "clues": ["soak", "sop", "drench", "dowse", "souse", "douse", "dowsing"]}, {"answer": "draft", "hint": "synonyms for draft", "clues": ["muster in", "draught", "blueprint", "outline", "enlist", "draft"]}, {"answer": "drafting", "hint": "synonyms for drafting", "clues": ["muster in", "draught", "blueprint", "outline", "enlist", "draft"]}, {"answer": "drag", "hint": "synonyms for drag", "clues": ["tangle", "drop behind", "hang back", "draw", "puff", "get behind", "drag on", "sweep up", "haul", "scuff", "trail", "drag out", "hale", "cart", "dredge", "drop back", "sweep", "embroil", "drag"]}, {"answer": "draw", "hint": "synonyms for draw", "clues": ["attract", "guide", "take up", "reap", "puff", "withdraw", "pull back", "imbibe", "cast", "sop up", "get", "quarter", "soak up", "suck up", "thread", "pull in", "draw in", "eviscerate", "draw off", "pull out", "delineate", "pull", "draw and quarter", "suck", "tie", "string", "absorb", "depict", "drag", "take in", "take out", "describe", "disembowel", "line", "make", "trace", "run", "get out", "pass", "force", "draw"]}, {"answer": "drawing", "hint": "synonyms for drawing", "clues": ["attract", "guide", "take up", "reap", "puff", "withdraw", "pull back", "imbibe", "cast", "sop up", "get", "quarter", "soak up", "suck up", "thread", "pull in", "draw in", "eviscerate", "draw off", "pull out", "delineate", "pull", "draw and quarter", "suck", "tie", "string", "absorb", "draw", "depict", "drag", "take in", "take out", "describe", "disembowel", "line", "make", "trace", "run", "get out", "pass", "force"]}, {"answer": "dreaming", "hint": "synonyms for dreaming", "clues": ["dream", "woolgather", "daydream", "stargaze"]}, {"answer": "drenching", "hint": "synonyms for drenching", "clues": ["swamp", "soak", "drench", "sop", "dowse", "souse", "imbrue", "douse"]}, {"answer": "dressing", "hint": "synonyms for dressing", "clues": ["preen", "garnish", "curry", "garment", "get dressed", "dress", "coif", "fit out", "coiffe", "garb", "clip", "set", "dress up", "tog", "raiment", "cut back", "apparel", "trim", "plume", "primp", "line up", "enclothe", "snip", "crop", "groom", "arrange", "lop", "habilitate", "decorate", "do", "prune", "dress out"]}, {"answer": "drew", "hint": "synonyms for drew", "clues": ["attract", "guide", "take up", "reap", "puff", "withdraw", "pull back", "imbibe", "cast", "sop up", "get", "quarter", "soak up", "suck up", "thread", "pull in", "draw in", "eviscerate", "draw off", "pull out", "delineate", "pull", "draw and quarter", "suck", "tie", "string", "absorb", "draw", "depict", "drag", "take in", "take out", "describe", "disembowel", "line", "make", "trace", "run", "get out", "pass", "force", "drew"]}, {"answer": "dribble", "hint": "synonyms for dribble", "clues": ["drop", "drool", "slobber", "drip", "slaver", "trickle", "carry", "filter", "drivel", "dribble"]}, {"answer": "dribbling", "hint": "synonyms for dribbling", "clues": ["drop", "drool", "slobber", "dribble", "drip", "slaver", "trickle", "carry", "filter", "drivel", "dribbling"]}, {"answer": "drift", "hint": "synonyms for drift", "clues": ["stray", "vagabond", "err", "tramp", "rove", "cast", "range", "freewheel", "roll", "ramble", "float", "be adrift", "wander", "swan", "roam", "blow", "drift"]}, {"answer": "drill", "hint": "synonyms for drill", "clues": ["bore", "practice", "exercise", "drill"]}, {"answer": "drilling", "hint": "synonyms for drilling", "clues": ["practise", "drill", "exercise", "bore"]}, {"answer": "drink", "hint": "synonyms for drink", "clues": ["fuddle", "wassail", "tope", "pledge", "drink in", "imbibe", "toast", "booze", "salute", "drink"]}, {"answer": "drinking", "hint": "synonyms for drinking", "clues": ["fuddle", "wassail", "tope", "pledge", "drink in", "imbibe", "toast", "booze", "drink", "salute"]}, {"answer": "drive", "hint": "synonyms for drive", "clues": ["labor", "ride", "force back", "aim", "repel", "tug", "push", "take", "motor", "beat back", "ram", "get", "repulse", "push back", "force", "drive"]}, {"answer": "drivel", "hint": "synonyms for drivel", "clues": ["drool", "slobber", "dribble", "slaver", "drivel"]}, {"answer": "drool", "hint": "synonyms for drool", "clues": ["salivate", "drivel", "slobber", "dribble", "slaver", "drool"]}, {"answer": "droop", "hint": "synonyms for droop", "clues": ["sag", "wilt", "flag", "loll", "droop"]}, {"answer": "drop", "hint": "synonyms for drop", "clues": ["sink", "overleap", "leave out", "cast off", "drip", "cut down", "strike down", "cast", "deteriorate", "drop down", "omit", "unload", "drop off", "shake off", "dismiss", "shed", "set down", "swing", "dangle", "throw away", "knock off", "miss", "send packing", "discharge", "pretermit", "neglect", "spend", "throw", "devolve", "degenerate", "dribble", "send away", "expend", "fell", "overlook", "throw off", "flatten", "drop"]}, {"answer": "drove", "hint": "synonyms for drove", "clues": ["get", "labor", "ride", "force back", "aim", "repel", "tug", "push", "take", "motor", "beat back", "ram", "drive", "repulse", "push back", "force", "drove"]}, {"answer": "drubbing", "hint": "synonyms for drubbing", "clues": ["clobber", "lick", "bat", "drub", "cream", "thrash", "drubbing"]}, {"answer": "drudge", "hint": "synonyms for drudge", "clues": ["labor", "grind", "dig", "fag", "travail", "toil", "moil", "drudge"]}, {"answer": "drum", "hint": "synonyms for drum", "clues": ["swot up", "grind away", "bone up", "mug up", "thrum", "cram", "bone", "swot", "get up", "beat", "drum"]}, {"answer": "drumming", "hint": "synonyms for drumming", "clues": ["swot up", "grind away", "bone up", "mug up", "drum", "thrum", "cram", "bone", "swot", "get up", "beat", "drumming"]}, {"answer": "duck", "hint": "synonyms for duck", "clues": ["parry", "circumvent", "dodge", "put off", "evade", "fudge", "sidestep", "dip", "elude", "skirt", "douse", "hedge", "duck"]}, {"answer": "ducking", "hint": "synonyms for ducking", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "evade", "fudge", "sidestep", "dip", "elude", "duck", "douse", "hedge"]}, {"answer": "dug", "hint": "synonyms for dug", "clues": ["dig up", "labor", "jab", "hollow", "drudge", "apprehend", "cut into", "dig", "travail", "toil", "moil", "poke", "grasp", "delve", "stab", "excavate", "grind", "get the picture", "grok", "fag", "compass", "prod", "comprehend", "turn over", "savvy", "dig out", "dug"]}, {"answer": "dulles", "hint": "synonyms for dulles", "clues": ["benumb", "dull", "tone down", "blunt", "dampen", "numb", "mute", "pall", "damp", "muffle"]}, {"answer": "dump", "hint": "synonyms for dump", "clues": ["coldcock", "deck", "knock down", "plunge", "ditch", "floor", "underprice", "dump"]}, {"answer": "dumping", "hint": "synonyms for dumping", "clues": ["knock down", "coldcock", "dump", "underprice", "deck", "plunge", "ditch", "floor"]}, {"answer": "dumps", "hint": "synonyms for dumps", "clues": ["knock down", "coldcock", "dump", "underprice", "deck", "plunge", "ditch", "floor"]}, {"answer": "dunk", "hint": "synonyms for dunk", "clues": ["dip", "plunge", "souse", "douse", "dunk"]}, {"answer": "dupe", "hint": "synonyms for dupe", "clues": ["cod", "fool", "gull", "slang", "befool", "put one across", "take in", "put one over", "put on", "dupe"]}, {"answer": "dust", "hint": "synonyms for dust", "clues": ["disperse", "dot", "sprinkle", "scatter", "dust"]}, {"answer": "dwelling", "hint": "synonyms for dwelling", "clues": ["lie", "lie in", "dwell", "populate", "brood", "inhabit", "harp", "consist"]}, {"answer": "earmark", "hint": "synonyms for earmark", "clues": ["reserve", "appropriate", "set aside", "allow", "earmark"]}, {"answer": "earnings", "hint": "synonyms for earnings", "clues": ["make", "gain", "pull in", "clear", "realize", "garner", "take in", "bring in", "earn", "earnings"]}, {"answer": "ease", "hint": "synonyms for ease", "clues": ["allay", "facilitate", "alleviate", "comfort", "still", "relieve", "ease"]}, {"answer": "easing", "hint": "synonyms for easing", "clues": ["allay", "ease", "facilitate", "comfort", "alleviate", "still", "relieve", "easing"]}, {"answer": "eating", "hint": "synonyms for eating", "clues": ["eat", "rust", "feed", "deplete", "exhaust", "run through", "use up", "corrode", "consume", "wipe out", "eat up", "eat on"]}, {"answer": "eats", "hint": "synonyms for eats", "clues": ["eat", "rust", "feed", "deplete", "exhaust", "run through", "use up", "corrode", "consume", "wipe out", "eat up", "eat on"]}, {"answer": "ebb", "hint": "synonyms for ebb", "clues": ["ebb away", "ebb down", "ebb out", "ebb off", "ebb"]}, {"answer": "ebbing", "hint": "synonyms for ebbing", "clues": ["ebb out", "ebb away", "ebb down", "ebb", "ebb off"]}, {"answer": "echo", "hint": "synonyms for echo", "clues": ["ring", "reverberate", "resound", "repeat", "recall", "echo"]}, {"answer": "eddy", "hint": "synonyms for eddy", "clues": ["whirlpool", "swirl", "purl", "whirl", "eddy"]}, {"answer": "edge", "hint": "synonyms for edge", "clues": ["march", "abut", "butt", "adjoin", "butt against", "border", "inch", "butt on", "edge"]}, {"answer": "edging", "hint": "synonyms for edging", "clues": ["march", "abut", "butt", "adjoin", "butt against", "border", "inch", "butt on", "edge", "edging"]}, {"answer": "editing", "hint": "synonyms for editing", "clues": ["cut", "delete", "redact", "edit", "blue-pencil", "edit out"]}, {"answer": "egress", "hint": "synonyms for egress", "clues": ["go forth", "come forth", "come out", "emerge", "issue", "egress"]}, {"answer": "ejaculate", "hint": "synonyms for ejaculate", "clues": ["blurt out", "blurt", "blunder out", "blunder", "ejaculate"]}, {"answer": "eluding", "hint": "synonyms for eluding", "clues": ["escape", "parry", "circumvent", "dodge", "bilk", "evade", "put off", "fudge", "sidestep", "duck", "elude", "skirt", "hedge", "eluding"]}, {"answer": "embrace", "hint": "synonyms for embrace", "clues": ["adopt", "hug", "bosom", "espouse", "encompass", "sweep up", "cover", "squeeze", "comprehend", "embrace"]}, {"answer": "embracing", "hint": "synonyms for embracing", "clues": ["adopt", "hug", "bosom", "espouse", "encompass", "sweep up", "embrace", "cover", "squeeze", "comprehend", "embracing"]}, {"answer": "embroideress", "hint": "synonyms for embroideress", "clues": ["dramatize", "aggrandise", "lard", "blow up", "broider", "embellish", "pad", "embroideress"]}, {"answer": "emphasizing", "hint": "synonyms for emphasizing", "clues": ["stress", "emphasize", "punctuate", "accentuate", "underline", "accent", "underscore", "emphasizing"]}, {"answer": "employ", "hint": "synonyms for employ", "clues": ["use", "utilize", "apply", "engage", "hire", "employ"]}, {"answer": "emptying", "hint": "synonyms for emptying", "clues": ["void", "vacate", "abandon", "empty", "discharge"]}, {"answer": "enclosing", "hint": "synonyms for enclosing", "clues": ["enfold", "confine", "enwrap", "close in", "put in", "hold in", "inclose", "stick in", "shut in", "wrap", "envelop", "introduce", "insert", "enclosing"]}, {"answer": "encounter", "hint": "synonyms for encounter", "clues": ["take on", "run across", "meet", "happen", "chance", "bump", "come across", "see", "run into", "play", "receive", "find", "encounter"]}, {"answer": "end", "hint": "synonyms for end", "clues": ["terminate", "finish", "cease", "stop", "end"]}, {"answer": "ending", "hint": "synonyms for ending", "clues": ["terminate", "finish", "cease", "end", "stop"]}, {"answer": "enfolding", "hint": "synonyms for enfolding", "clues": ["enfold", "enclose", "enwrap", "wrap", "envelop"]}, {"answer": "engineer", "hint": "synonyms for engineer", "clues": ["organise", "orchestrate", "mastermind", "direct", "engineer"]}, {"answer": "engineering", "hint": "synonyms for engineering", "clues": ["organise", "orchestrate", "mastermind", "engineer", "direct"]}, {"answer": "engraving", "hint": "synonyms for engraving", "clues": ["grave", "etch", "inscribe", "engrave", "scratch", "engraving"]}, {"answer": "enjoining", "hint": "synonyms for enjoining", "clues": ["enjoin", "tell", "say", "order"]}, {"answer": "enlisting", "hint": "synonyms for enlisting", "clues": ["muster in", "enlist", "engage", "draft"]}, {"answer": "entail", "hint": "synonyms for entail", "clues": ["imply", "fee-tail", "mean", "implicate", "entail"]}, {"answer": "entering", "hint": "synonyms for entering", "clues": ["figure", "embark", "recruit", "introduce", "participate", "record", "inscribe", "put down", "get into", "enrol", "go into", "infix", "come in", "enter", "move into", "go in", "accede", "insert"]}, {"answer": "entrance", "hint": "synonyms for entrance", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor"]}, {"answer": "environs", "hint": "synonyms for environs", "clues": ["environ", "skirt", "ring", "border", "surround"]}, {"answer": "envisioning", "hint": "synonyms for envisioning", "clues": ["figure", "image", "visualise", "picture", "fancy", "foresee", "envision", "see", "project"]}, {"answer": "equating", "hint": "synonyms for equating", "clues": ["equalize", "equate", "match", "liken", "correspond", "equal", "compare", "equating"]}, {"answer": "equipping", "hint": "synonyms for equipping", "clues": ["equip", "fit", "fit out", "outfit", "equipping"]}, {"answer": "erecting", "hint": "synonyms for erecting", "clues": ["put up", "erect", "set up", "raise", "rear"]}, {"answer": "eroding", "hint": "synonyms for eroding", "clues": ["gnaw at", "gnaw", "wear away", "fret", "eat at", "eat away", "erode", "eroding"]}, {"answer": "escape", "hint": "synonyms for escape", "clues": ["get off", "break loose", "get by", "hightail it", "lam", "scat", "break away", "bunk", "fly the coop", "turn tail", "get away", "run", "get out", "elude", "run away", "take to the woods", "head for the hills", "scarper", "miss", "escape"]}, {"answer": "essay", "hint": "synonyms for essay", "clues": ["examine", "prove", "seek", "try out", "try", "test", "assay", "attempt", "essay"]}, {"answer": "esteem", "hint": "synonyms for esteem", "clues": ["value", "respect", "think of", "take to be", "regard as", "look upon", "repute", "prize", "prise", "esteem"]}, {"answer": "estimate", "hint": "synonyms for estimate", "clues": ["forecast", "figure", "approximate", "guess", "reckon", "count on", "judge", "gauge", "calculate", "estimate"]}, {"answer": "evening", "hint": "synonyms for evening", "clues": ["even out", "even", "level", "flush"]}, {"answer": "evidence", "hint": "synonyms for evidence", "clues": ["prove", "demonstrate", "manifest", "attest", "show", "tell", "certify", "testify", "bear witness", "evidence"]}, {"answer": "exchange", "hint": "synonyms for exchange", "clues": ["change", "convert", "switch", "substitute", "interchange", "switch over", "replace", "commute"]}, {"answer": "exclaiming", "hint": "synonyms for exclaiming", "clues": ["cry out", "call out", "proclaim", "promulgate", "cry", "shout", "exclaim", "outcry"]}, {"answer": "excreting", "hint": "synonyms for excreting", "clues": ["egest", "pass", "excrete", "eliminate", "excreting"]}, {"answer": "excuse", "hint": "synonyms for excuse", "clues": ["let off", "beg off", "apologize", "explain", "rationalize", "justify", "condone", "exempt", "pardon", "relieve", "excuse"]}, {"answer": "executing", "hint": "synonyms for executing", "clues": ["perform", "run", "fulfill", "carry through", "put to death", "carry out", "do", "action", "execute", "accomplish", "executing"]}, {"answer": "exercise", "hint": "synonyms for exercise", "clues": ["practise", "drill", "work out", "exert", "do", "work", "exercise"]}, {"answer": "exercising", "hint": "synonyms for exercising", "clues": ["practise", "drill", "exercise", "work out", "exert", "do", "work", "exercising"]}, {"answer": "exhaust", "hint": "synonyms for exhaust", "clues": ["run down", "discharge", "use up", "sap", "consume", "tire", "eat up", "tucker", "beat", "tucker out", "deplete", "release", "run through", "wash up", "play out", "wipe out", "expel", "eject", "exhaust"]}, {"answer": "exhibit", "hint": "synonyms for exhibit", "clues": ["march", "parade", "expose", "demonstrate", "display", "show", "present", "demo", "exhibit"]}, {"answer": "exit", "hint": "synonyms for exit", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "leave", "kick the bucket", "pop off", "drop dead", "get out", "go out", "conk", "pass away", "die", "pass", "cash in one's chips", "exit"]}, {"answer": "expelling", "hint": "synonyms for expelling", "clues": ["rout", "drum out", "rout out", "boot out", "exhaust", "kick out", "discharge", "release", "eject", "expel", "throw out", "oust", "expelling"]}, {"answer": "expending", "hint": "synonyms for expending", "clues": ["use", "drop", "spend", "expend"]}, {"answer": "experience", "hint": "synonyms for experience", "clues": ["live", "feel", "have", "know", "go through", "see", "get", "receive", "experience"]}, {"answer": "expose", "hint": "synonyms for expose", "clues": ["break", "scupper", "uncover", "reveal", "queer", "let on", "exhibit", "let out", "discover", "disclose", "give away", "unwrap", "peril", "debunk", "display", "bring out", "endanger", "divulge", "expose"]}, {"answer": "expounding", "hint": "synonyms for expounding", "clues": ["expatiate", "lucubrate", "elaborate", "dilate", "exposit", "expound", "set forth", "expand", "flesh out", "enlarge"]}, {"answer": "expunging", "hint": "synonyms for expunging", "clues": ["strike", "excise", "expunge", "scratch", "expunging"]}, {"answer": "extinguishing", "hint": "synonyms for extinguishing", "clues": ["stub out", "press out", "get rid of", "crush out", "quench", "annihilate", "eradicate", "decimate", "do away with", "eliminate", "extinguish", "wipe out", "carry off", "snuff out", "blow out"]}, {"answer": "extract", "hint": "synonyms for extract", "clues": ["educe", "distil", "press out", "elicit", "pull up", "pull out", "pull", "express", "excerpt", "evoke", "draw out", "take out", "extract"]}, {"answer": "exudate", "hint": "synonyms for exudate", "clues": ["ooze", "exude", "transude", "ooze out", "exudate"]}, {"answer": "face", "hint": "synonyms for face", "clues": ["confront", "present", "front", "face up", "look", "face"]}, {"answer": "facing", "hint": "synonyms for facing", "clues": ["present", "confront", "face", "front", "face up", "look", "facing"]}, {"answer": "fade", "hint": "synonyms for fade", "clues": ["blow over", "pass off", "evanesce", "languish", "pass", "wither", "melt", "fleet", "fade"]}, {"answer": "fading", "hint": "synonyms for fading", "clues": ["evanesce", "languish", "melt", "blow over", "pass off", "fade", "pass", "wither", "fleet", "fading"]}, {"answer": "fag", "hint": "synonyms for fag", "clues": ["tire out", "labor", "drudge", "dig", "travail", "fatigue", "wear down", "toil", "moil", "tire", "wear upon", "fag out", "wear out", "grind", "jade", "wear", "outwear", "fag"]}, {"answer": "fall", "hint": "synonyms for fall", "clues": ["go down", "light", "diminish", "fall down", "shine", "accrue", "return", "come down", "lessen", "settle", "devolve", "decrease", "precipitate", "flow", "descend", "come", "hang", "pass", "strike", "fall"]}, {"answer": "falls", "hint": "synonyms for falls", "clues": ["go down", "light", "diminish", "fall down", "shine", "accrue", "return", "come down", "lessen", "settle", "fall", "devolve", "decrease", "precipitate", "flow", "descend", "come", "hang", "pass", "strike"]}, {"answer": "falsifying", "hint": "synonyms for falsifying", "clues": ["fake", "warp", "falsify", "garble", "interpolate", "manipulate", "fudge", "cook", "misrepresent", "wangle", "distort", "alter"]}, {"answer": "falter", "hint": "synonyms for falter", "clues": ["bumble", "stammer", "stutter", "waver", "stumble", "falter"]}, {"answer": "fare", "hint": "synonyms for fare", "clues": ["come", "do", "make out", "get along", "fare"]}, {"answer": "fastening", "hint": "synonyms for fastening", "clues": ["fasten", "fix", "tighten", "secure"]}, {"answer": "father", "hint": "synonyms for father", "clues": ["generate", "bring forth", "mother", "get", "sire", "engender", "beget", "father"]}, {"answer": "fatigue", "hint": "synonyms for fatigue", "clues": ["tire out", "wear out", "jade", "wear", "fag", "wear down", "outwear", "tire", "pall", "wear upon", "fag out", "fatigue"]}, {"answer": "fatigues", "hint": "synonyms for fatigues", "clues": ["tire out", "fatigue", "wear down", "tire", "wear upon", "fag out", "wear out", "jade", "wear", "fag", "outwear", "pall"]}, {"answer": "fawn", "hint": "synonyms for fawn", "clues": ["cower", "bootlick", "cringe", "kotow", "suck up", "grovel", "truckle", "toady", "creep", "crawl", "fawn"]}, {"answer": "fear", "hint": "synonyms for fear", "clues": ["dread", "revere", "venerate", "reverence", "fear"]}, {"answer": "feasting", "hint": "synonyms for feasting", "clues": ["banquet", "feast", "feed", "junket"]}, {"answer": "featherbed", "hint": "synonyms for featherbed", "clues": ["baby", "cocker", "pamper", "spoil", "indulge", "coddle", "cosset", "mollycoddle", "featherbed"]}, {"answer": "featherbedding", "hint": "synonyms for featherbedding", "clues": ["baby", "cocker", "pamper", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle", "featherbedding"]}, {"answer": "fed", "hint": "synonyms for fed", "clues": ["eat", "feast", "feed", "fertilize", "flow", "feed in", "give", "run", "prey", "course"]}, {"answer": "feed", "hint": "synonyms for feed", "clues": ["eat", "feast", "fertilize", "flow", "feed in", "give", "run", "fee", "prey", "tip", "course", "bung"]}, {"answer": "feeding", "hint": "synonyms for feeding", "clues": ["eat", "feast", "feed", "fertilize", "flow", "feed in", "give", "run", "prey", "course"]}, {"answer": "feel", "hint": "synonyms for feel", "clues": ["palpate", "experience", "sense", "finger", "find", "feel"]}, {"answer": "feeling", "hint": "synonyms for feeling", "clues": ["palpate", "experience", "sense", "feel", "finger", "find"]}, {"answer": "feelings", "hint": "synonyms for feelings", "clues": ["palpate", "experience", "sense", "feel", "finger", "find", "feelings"]}, {"answer": "feigning", "hint": "synonyms for feigning", "clues": ["sham", "simulate", "dissemble", "affect", "pretend", "feign", "assume"]}, {"answer": "felt", "hint": "synonyms for felt", "clues": ["felt up", "feel", "mat", "matt-up", "mat up", "experience", "sense", "palpate", "matte", "finger", "find", "felt"]}, {"answer": "fence", "hint": "synonyms for fence", "clues": ["debate", "palisade", "wall", "argue", "fence in", "contend", "surround", "fence"]}, {"answer": "fencing", "hint": "synonyms for fencing", "clues": ["wall", "argue", "fence", "debate", "palisade", "fence in", "contend", "surround", "fencing"]}, {"answer": "fermenting", "hint": "synonyms for fermenting", "clues": ["turn", "sour", "ferment", "work"]}, {"answer": "fetch", "hint": "synonyms for fetch", "clues": ["convey", "get", "bring in", "bring", "fetch"]}, {"answer": "fiddle", "hint": "synonyms for fiddle", "clues": ["shrink from", "monkey", "shirk", "diddle", "tamper", "tinker", "toy", "play", "goldbrick", "fiddle"]}, {"answer": "fight", "hint": "synonyms for fight", "clues": ["defend", "press", "campaign", "agitate", "fight down", "crusade", "fight back", "struggle", "contend", "oppose", "push", "fight"]}, {"answer": "figure", "hint": "synonyms for figure", "clues": ["forecast", "reckon", "estimate", "project", "image", "visualise", "work out", "picture", "fancy", "cypher", "compute", "enter", "count on", "cipher", "envision", "see", "calculate", "figure"]}, {"answer": "figuring", "hint": "synonyms for figuring", "clues": ["forecast", "figure", "reckon", "estimate", "project", "image", "visualise", "work out", "picture", "fancy", "cypher", "compute", "enter", "count on", "cipher", "envision", "see", "calculate", "figuring"]}, {"answer": "file", "hint": "synonyms for file", "clues": ["file away", "lodge", "charge", "register", "file"]}, {"answer": "filing", "hint": "synonyms for filing", "clues": ["file away", "charge", "register", "lodge", "file", "filing"]}, {"answer": "fill", "hint": "synonyms for fill", "clues": ["meet", "satiate", "take", "make full", "replete", "fulfill", "sate", "occupy", "fill up", "satisfy", "fill"]}, {"answer": "filling", "hint": "synonyms for filling", "clues": ["meet", "satiate", "take", "make full", "replete", "fulfill", "fill", "sate", "occupy", "fill up", "satisfy"]}, {"answer": "filter", "hint": "synonyms for filter", "clues": ["filtrate", "percolate", "filter out", "sink in", "strain", "dribble", "permeate", "separate out", "trickle", "filter"]}, {"answer": "filtrate", "hint": "synonyms for filtrate", "clues": ["separate out", "strain", "filter", "filter out", "filtrate"]}, {"answer": "find", "hint": "synonyms for find", "clues": ["encounter", "come up", "feel", "detect", "recover", "find oneself", "happen", "rule", "incur", "observe", "notice", "get hold", "get", "receive", "determine", "witness", "line up", "retrieve", "chance", "bump", "discover", "obtain", "find out", "see", "ascertain", "regain", "find"]}, {"answer": "finding", "hint": "synonyms for finding", "clues": ["encounter", "come up", "feel", "detect", "recover", "find oneself", "happen", "rule", "incur", "notice", "observe", "get hold", "get", "receive", "determine", "witness", "line up", "retrieve", "bump", "chance", "discover", "obtain", "find out", "see", "ascertain", "find", "regain"]}, {"answer": "findings", "hint": "synonyms for findings", "clues": ["encounter", "come up", "feel", "detect", "recover", "find oneself", "happen", "rule", "incur", "notice", "observe", "get hold", "get", "receive", "determine", "witness", "line up", "retrieve", "bump", "chance", "discover", "obtain", "find out", "see", "ascertain", "find", "regain", "findings"]}, {"answer": "finish", "hint": "synonyms for finish", "clues": ["finish up", "polish off", "fetch up", "end up", "land up", "end", "stop", "terminate", "cease", "wind up", "eat up", "complete", "finish"]}, {"answer": "finishing", "hint": "synonyms for finishing", "clues": ["finish up", "polish off", "fetch up", "land up", "end up", "end", "stop", "terminate", "finish", "cease", "wind up", "eat up", "complete"]}, {"answer": "fink", "hint": "synonyms for fink", "clues": ["blackleg", "scab", "confess", "squeal", "rat", "fink"]}, {"answer": "fire", "hint": "synonyms for fire", "clues": ["fuel", "can", "force out", "arouse", "give notice", "discharge", "enkindle", "give the axe", "terminate", "open fire", "sack", "burn", "burn down", "give the sack", "dismiss", "elicit", "raise", "go off", "send away", "displace", "provoke", "evoke", "fire"]}, {"answer": "firing", "hint": "synonyms for firing", "clues": ["fuel", "can", "force out", "arouse", "give notice", "discharge", "enkindle", "give the axe", "fire", "terminate", "open fire", "sack", "burn", "burn down", "give the sack", "dismiss", "elicit", "raise", "go off", "send away", "displace", "provoke", "evoke", "firing"]}, {"answer": "fix", "hint": "synonyms for fix", "clues": ["unsex", "sterilise", "mend", "desexualize", "pay back", "doctor", "ready", "get", "set", "define", "repair", "secure", "posit", "determine", "make", "touch on", "specify", "pay off", "limit", "desex", "furbish up", "gear up", "set up", "fasten", "cook", "prepare", "restore", "situate", "deposit", "bushel", "fixate", "fix"]}, {"answer": "fixing", "hint": "synonyms for fixing", "clues": ["unsex", "doctor", "fix", "get", "set", "define", "posit", "determine", "touch on", "specify", "limit", "desex", "gear up", "set up", "fasten", "situate", "prepare", "restore", "bushel", "deposit", "sterilise", "mend", "desexualize", "pay back", "ready", "repair", "secure", "make", "pay off", "furbish up", "cook", "fixate"]}, {"answer": "fixings", "hint": "synonyms for fixings", "clues": ["unsex", "doctor", "fix", "get", "set", "define", "posit", "determine", "touch on", "specify", "limit", "desex", "gear up", "set up", "fasten", "situate", "prepare", "restore", "bushel", "deposit", "sterilise", "mend", "desexualize", "pay back", "ready", "repair", "secure", "make", "pay off", "furbish up", "cook", "fixate", "fixings"]}, {"answer": "fizz", "hint": "synonyms for fizz", "clues": ["effervesce", "form bubbles", "froth", "foam", "sparkle", "fizz"]}, {"answer": "flag", "hint": "synonyms for flag", "clues": ["sag", "ease up", "slacken off", "droop", "ease off", "flag"]}, {"answer": "flap", "hint": "synonyms for flap", "clues": ["pother", "wave", "roll", "beat", "dither", "undulate", "flap"]}, {"answer": "flapping", "hint": "synonyms for flapping", "clues": ["pother", "roll", "beat", "wave", "dither", "flap", "undulate", "flapping"]}, {"answer": "flaps", "hint": "synonyms for flaps", "clues": ["pother", "roll", "beat", "wave", "dither", "flap", "undulate"]}, {"answer": "flare", "hint": "synonyms for flare", "clues": ["burst out", "flame", "irrupt", "blaze up", "break open", "burn up", "erupt", "flare up", "flare out", "flare"]}, {"answer": "flashing", "hint": "synonyms for flashing", "clues": ["show off", "flash", "wink", "twinkle", "blink", "scud", "scoot", "shoot", "flaunt", "dart", "dash", "swank", "ostentate"]}, {"answer": "flaunt", "hint": "synonyms for flaunt", "clues": ["swank", "show off", "flash", "ostentate", "flaunt"]}, {"answer": "fleece", "hint": "synonyms for fleece", "clues": ["soak", "plume", "pluck", "shear", "rob", "overcharge", "gazump", "surcharge", "hook", "fleece"]}, {"answer": "flex", "hint": "synonyms for flex", "clues": ["deform", "turn", "twist", "bend", "flex"]}, {"answer": "flick", "hint": "synonyms for flick", "clues": ["leaf", "riff", "snap", "ruffle", "click", "flicker", "flip", "riffle", "jerk", "thumb", "flick"]}, {"answer": "flicker", "hint": "synonyms for flicker", "clues": ["flutter", "quiver", "waver", "flick", "flicker"]}, {"answer": "flies", "hint": "synonyms for flies", "clues": ["pilot", "aviate", "vanish", "take flight", "vaporize", "wing", "fell", "fly", "flee", "flies"]}, {"answer": "flinch", "hint": "synonyms for flinch", "clues": ["cringe", "squinch", "funk", "wince", "quail", "shrink", "recoil", "flinch"]}, {"answer": "fling", "hint": "synonyms for fling", "clues": ["dispose", "discard", "splurge", "toss", "cast aside", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "toss away", "cast away", "fling"]}, {"answer": "flip-flop", "hint": "synonyms for flip-flop", "clues": ["tack", "switch", "flip", "alternate", "interchange", "flip-flop"]}, {"answer": "flirt", "hint": "synonyms for flirt", "clues": ["romance", "dally", "coquet", "philander", "toy", "play", "mash", "chat up", "butterfly", "flirt"]}, {"answer": "flirting", "hint": "synonyms for flirting", "clues": ["flirt", "romance", "dally", "coquet", "philander", "toy", "play", "mash", "chat up", "butterfly"]}, {"answer": "float", "hint": "synonyms for float", "clues": ["be adrift", "drift", "blow", "swim", "float"]}, {"answer": "flogging", "hint": "synonyms for flogging", "clues": ["lambaste", "slash", "lather", "whip", "cane", "strap", "trounce", "flog", "welt", "flogging"]}, {"answer": "flood", "hint": "synonyms for flood", "clues": ["swamp", "glut", "deluge", "inundate", "oversupply", "flood"]}, {"answer": "flooding", "hint": "synonyms for flooding", "clues": ["swamp", "glut", "flood", "deluge", "inundate", "oversupply"]}, {"answer": "floor", "hint": "synonyms for floor", "clues": ["ball over", "knock down", "coldcock", "shock", "take aback", "dump", "deck", "blow out of the water", "floor"]}, {"answer": "flooring", "hint": "synonyms for flooring", "clues": ["ball over", "knock down", "coldcock", "shock", "take aback", "dump", "deck", "floor", "blow out of the water"]}, {"answer": "flourish", "hint": "synonyms for flourish", "clues": ["fly high", "prosper", "expand", "boom", "wave", "thrive", "brandish", "flourish"]}, {"answer": "flow", "hint": "synonyms for flow", "clues": ["hang", "fall", "feed", "flux", "course", "run", "menstruate", "flow"]}, {"answer": "flub", "hint": "synonyms for flub", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "flub"]}, {"answer": "fluff", "hint": "synonyms for fluff", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "bollocks up", "bungle", "mess up", "ruffle", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "tease", "ball up", "blow", "botch", "fluff"]}, {"answer": "flutter", "hint": "synonyms for flutter", "clues": ["quiver", "palpitate", "flitter", "waver", "dart", "flit", "flicker", "bat", "fleet"]}, {"answer": "fluttering", "hint": "synonyms for fluttering", "clues": ["flutter", "quiver", "palpitate", "waver", "dart", "flit", "flicker", "bat", "fleet"]}, {"answer": "flux", "hint": "synonyms for flux", "clues": ["blend", "mix", "immix", "meld", "flow", "commingle", "merge", "conflate", "combine", "liquify", "coalesce", "fuse", "flux"]}, {"answer": "foam", "hint": "synonyms for foam", "clues": ["effervesce", "form bubbles", "froth", "sparkle", "fizz", "foam"]}, {"answer": "fob", "hint": "synonyms for fob", "clues": ["play a joke on", "flim-flam", "pull a fast one on", "play a trick on", "trick", "fox", "play tricks", "fob"]}, {"answer": "focus", "hint": "synonyms for focus", "clues": ["rivet", "focalize", "concenter", "center", "centre", "sharpen", "concentrate", "pore", "focus"]}, {"answer": "focusing", "hint": "synonyms for focusing", "clues": ["rivet", "focus", "focalize", "concenter", "center", "centre", "sharpen", "concentrate", "pore"]}, {"answer": "focussing", "hint": "synonyms for focussing", "clues": ["rivet", "focus", "focalize", "concenter", "center", "centre", "sharpen", "concentrate", "pore", "focussing"]}, {"answer": "fog", "hint": "synonyms for fog", "clues": ["cloud", "haze over", "mist", "befog", "obscure", "obnubilate", "becloud", "fog"]}, {"answer": "foil", "hint": "synonyms for foil", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "baffle", "thwart", "frustrate", "foil"]}, {"answer": "foiling", "hint": "synonyms for foiling", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "foil", "baffle", "thwart", "frustrate"]}, {"answer": "fold", "hint": "synonyms for fold", "clues": ["close up", "pen up", "fold up", "close", "close down", "turn up", "shut down", "fold"]}, {"answer": "fool", "hint": "synonyms for fool", "clues": ["cod", "arse around", "take in", "fritter", "shoot", "frivol away", "dupe", "gull", "fritter away", "fool away", "put one over", "befool", "put one across", "fool around", "dissipate", "slang", "put on", "fool"]}, {"answer": "foot", "hint": "synonyms for foot", "clues": ["pick", "hoof it", "leg it", "foot up", "hoof", "foot"]}, {"answer": "footing", "hint": "synonyms for footing", "clues": ["pick", "foot", "hoof it", "leg it", "foot up", "hoof"]}, {"answer": "foray", "hint": "synonyms for foray", "clues": ["despoil", "rifle", "pillage", "ransack", "plunder", "strip", "loot", "reave", "foray"]}, {"answer": "force", "hint": "synonyms for force", "clues": ["hale", "coerce", "draw", "storm", "pressure", "pull", "ram", "drive", "squeeze", "wedge", "push", "impel", "thrust", "force"]}, {"answer": "force_out", "hint": "synonyms for force out", "clues": ["can", "give notice", "evict", "give the axe", "depose", "fire", "terminate", "squirt", "gouge", "sack", "rout out", "give the sack", "drive out", "dismiss", "send away", "displace", "squeeze out", "eject", "crowd out", "rouse", "force out"]}, {"answer": "forecast", "hint": "synonyms for forecast", "clues": ["figure", "betoken", "auspicate", "presage", "reckon", "omen", "estimate", "predict", "prognosticate", "bode", "augur", "foretell", "count on", "foreshadow", "portend", "calculate", "prefigure", "forecast"]}, {"answer": "forecasting", "hint": "synonyms for forecasting", "clues": ["forecast", "figure", "betoken", "auspicate", "presage", "reckon", "omen", "estimate", "predict", "prognosticate", "bode", "augur", "foretell", "count on", "foreshadow", "portend", "calculate", "prefigure"]}, {"answer": "foregrounding", "hint": "synonyms for foregrounding", "clues": ["play up", "spotlight", "foreground", "highlight"]}, {"answer": "forestalling", "hint": "synonyms for forestalling", "clues": ["counter", "prevent", "forbid", "anticipate", "foresee", "foreclose", "forestall", "preclude"]}, {"answer": "foretelling", "hint": "synonyms for foretelling", "clues": ["harbinger", "forecast", "betoken", "auspicate", "presage", "anticipate", "omen", "predict", "announce", "prognosticate", "bode", "herald", "call", "augur", "prefigure", "annunciate", "foretell", "foreshadow", "forebode", "portend", "promise"]}, {"answer": "forge", "hint": "synonyms for forge", "clues": ["invent", "form", "mold", "devise", "formulate", "fashion", "work", "hammer", "spurt", "contrive", "spirt", "counterfeit", "shape", "excogitate", "fake", "forge"]}, {"answer": "forging", "hint": "synonyms for forging", "clues": ["invent", "form", "mold", "devise", "formulate", "forge", "fashion", "hammer", "spurt", "contrive", "work", "spirt", "counterfeit", "excogitate", "fake", "shape", "forging"]}, {"answer": "forgoing", "hint": "synonyms for forgoing", "clues": ["predate", "foreswear", "dispense with", "waive", "antecede", "throw overboard", "antedate", "give up", "forfeit", "relinquish", "forego", "precede", "forgoing"]}, {"answer": "fork", "hint": "synonyms for fork", "clues": ["pitchfork", "furcate", "branch", "ramify", "separate", "fork"]}, {"answer": "forking", "hint": "synonyms for forking", "clues": ["pitchfork", "furcate", "ramify", "branch", "separate", "fork"]}, {"answer": "form", "hint": "synonyms for form", "clues": ["organise", "imprint", "make", "mold", "forge", "take form", "shape", "work", "spring", "take shape", "constitute", "form"]}, {"answer": "formatting", "hint": "synonyms for formatting", "clues": ["initialize", "format", "arrange", "formatting"]}, {"answer": "forsaking", "hint": "synonyms for forsaking", "clues": ["desert", "desolate", "abandon", "forsake", "forsaking"]}, {"answer": "forswearing", "hint": "synonyms for forswearing", "clues": ["recant", "forswear", "retract", "abjure", "resile"]}, {"answer": "founder", "hint": "synonyms for founder", "clues": ["break", "fall in", "cave in", "fall flat", "give way", "give", "flop", "fall through", "collapse", "founder"]}, {"answer": "foundering", "hint": "synonyms for foundering", "clues": ["break", "fall in", "cave in", "founder", "fall flat", "give", "give way", "flop", "fall through", "collapse"]}, {"answer": "founding", "hint": "synonyms for founding", "clues": ["launch", "ground", "plant", "institute", "base", "set up", "found", "establish", "constitute"]}, {"answer": "fox", "hint": "synonyms for fox", "clues": ["fuddle", "play a joke on", "throw", "discombobulate", "confuse", "pull a fast one on", "trick", "fob", "bedevil", "flim-flam", "confound", "play a trick on", "play tricks", "fox"]}, {"answer": "frame", "hint": "synonyms for frame", "clues": ["frame in", "redact", "border", "ensnare", "entrap", "couch", "compose", "set up", "cast", "put", "draw up", "frame up", "frame"]}, {"answer": "framing", "hint": "synonyms for framing", "clues": ["frame in", "redact", "border", "ensnare", "entrap", "couch", "compose", "set up", "frame", "cast", "put", "draw up", "frame up", "framing"]}, {"answer": "fray", "hint": "synonyms for fray", "clues": ["frazzle", "fret", "rub", "chafe", "scratch", "fray"]}, {"answer": "freeing", "hint": "synonyms for freeing", "clues": ["unfreeze", "disembarrass", "relinquish", "unloosen", "loose", "discharge", "resign", "justify", "relieve", "rid", "unblock", "free", "release", "give up", "disengage", "exempt", "absolve", "liberate", "dislodge"]}, {"answer": "freeze", "hint": "synonyms for freeze", "clues": ["freeze down", "stop dead", "immobilize", "block", "freeze out", "suspend", "freeze"]}, {"answer": "freezing", "hint": "synonyms for freezing", "clues": ["freeze", "immobilize", "block", "suspend", "freeze down", "stop dead", "freeze out", "freezing"]}, {"answer": "fret", "hint": "synonyms for fret", "clues": ["gag", "fray", "niggle", "rub", "fuss", "rankle", "choke", "eat into", "erode", "eat away", "gall", "chafe", "grate", "scratch", "fret"]}, {"answer": "frisk", "hint": "synonyms for frisk", "clues": ["gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp", "frisk"]}, {"answer": "frisking", "hint": "synonyms for frisking", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp"]}, {"answer": "fritter", "hint": "synonyms for fritter", "clues": ["fool away", "fool", "shoot", "dissipate", "frivol away", "fritter away", "fritter"]}, {"answer": "frizz", "hint": "synonyms for frizz", "clues": ["kink up", "crape", "frizzle", "kink", "crimp", "frizz"]}, {"answer": "frolic", "hint": "synonyms for frolic", "clues": ["frisk", "gambol", "cavort", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp", "frolic"]}, {"answer": "froth", "hint": "synonyms for froth", "clues": ["effervesce", "suds", "form bubbles", "spume", "foam", "sparkle", "fizz", "froth"]}, {"answer": "fuck", "hint": "synonyms for fuck", "clues": ["roll in the hay", "hump", "have a go at it", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "bonk", "lie with", "make love", "fuck"]}, {"answer": "fuddle", "hint": "synonyms for fuddle", "clues": ["throw", "discombobulate", "confuse", "fox", "befuddle", "bedevil", "confound", "booze", "drink"]}, {"answer": "fudge", "hint": "synonyms for fudge", "clues": ["dodge", "put off", "evade", "wangle", "skirt", "fake", "parry", "circumvent", "falsify", "manipulate", "sidestep", "cook", "misrepresent", "elude", "duck", "hedge", "fudge"]}, {"answer": "fumble", "hint": "synonyms for fumble", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "grope", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "blunder", "louse up", "foul up", "ball up", "blow", "botch", "fumble"]}, {"answer": "fumes", "hint": "synonyms for fumes", "clues": ["reek", "smoke", "fumigate", "fume"]}, {"answer": "function", "hint": "synonyms for function", "clues": ["officiate", "go", "work", "serve", "operate", "run", "function"]}, {"answer": "funk", "hint": "synonyms for funk", "clues": ["cringe", "squinch", "flinch", "wince", "quail", "shrink", "recoil", "funk"]}, {"answer": "furnishing", "hint": "synonyms for furnishing", "clues": ["supply", "furnish", "provide", "render"]}, {"answer": "furrow", "hint": "synonyms for furrow", "clues": ["rut", "chase", "crease", "wrinkle", "groove", "chamfer", "furrow"]}, {"answer": "fuse", "hint": "synonyms for fuse", "clues": ["blend", "mix", "immix", "meld", "commingle", "merge", "combine", "coalesce", "conflate", "flux", "fuse"]}, {"answer": "fuss", "hint": "synonyms for fuss", "clues": ["mother", "overprotect", "niggle", "fret", "fuss"]}, {"answer": "gabble", "hint": "synonyms for gabble", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle", "gabble"]}, {"answer": "gag", "hint": "synonyms for gag", "clues": ["choke", "muzzle", "retch", "fret", "suffocate", "heave", "quip", "strangle", "gag"]}, {"answer": "gage", "hint": "synonyms for gage", "clues": ["game", "back", "stake", "punt", "bet on", "gage"]}, {"answer": "gain", "hint": "synonyms for gain", "clues": ["attain", "hit", "clear", "gather", "derive", "realise", "acquire", "advance", "take in", "put on", "make", "pull in", "arrive at", "pull ahead", "make headway", "benefit", "reach", "get ahead", "win", "profit", "gain ground", "bring in", "earn", "gain"]}, {"answer": "gamble", "hint": "synonyms for gamble", "clues": ["adventure", "run a risk", "risk", "hazard", "take a chance", "chance", "gamble"]}, {"answer": "gambling", "hint": "synonyms for gambling", "clues": ["adventure", "risk", "hazard", "chance", "gamble", "take a chance", "run a risk", "gambling"]}, {"answer": "gambol", "hint": "synonyms for gambol", "clues": ["frisk", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp", "gambol"]}, {"answer": "gaming", "hint": "synonyms for gaming", "clues": ["game", "gage", "back", "stake", "punt", "bet on", "gaming"]}, {"answer": "gaol", "hint": "synonyms for gaol", "clues": ["incarcerate", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "immure", "jail", "gaol"]}, {"answer": "gape", "hint": "synonyms for gape", "clues": ["gawp", "gawk", "yawn", "goggle", "gape"]}, {"answer": "garb", "hint": "synonyms for garb", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb"]}, {"answer": "garment", "hint": "synonyms for garment", "clues": ["tog", "raiment", "apparel", "enclothe", "habilitate", "dress", "fit out", "garb", "garment"]}, {"answer": "garner", "hint": "synonyms for garner", "clues": ["gather", "pull together", "collect", "earn", "garner"]}, {"answer": "gas", "hint": "synonyms for gas", "clues": ["swash", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "blow", "brag", "gas"]}, {"answer": "gasconade", "hint": "synonyms for gasconade", "clues": ["swash", "gas", "boast", "bluster", "shoot a line", "vaunt", "tout", "blow", "brag", "gasconade"]}, {"answer": "gassing", "hint": "synonyms for gassing", "clues": ["brag", "gas", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "swash", "blow", "gassing"]}, {"answer": "gather", "hint": "synonyms for gather", "clues": ["pile up", "amass", "cumulate", "gain", "meet", "pull together", "forgather", "collect", "garner", "get together", "pucker", "conglomerate", "tuck", "assemble", "gather"]}, {"answer": "gathering", "hint": "synonyms for gathering", "clues": ["pile up", "amass", "cumulate", "gain", "meet", "pull together", "assemble", "forgather", "garner", "gather", "get together", "pucker", "conglomerate", "tuck", "collect"]}, {"answer": "gauge", "hint": "synonyms for gauge", "clues": ["estimate", "judge", "guess", "approximate", "gauge"]}, {"answer": "get", "hint": "synonyms for get", "clues": ["become", "go", "let", "stimulate", "sire", "cause", "flummox", "get down", "incur", "arrest", "amaze", "acquire", "fix", "sustain", "baffle", "dumbfound", "receive", "get under one's skin", "arrive", "commence", "bugger off", "take", "vex", "set out", "experience", "bewilder", "bring forth", "produce", "stick", "mystify", "stupefy", "fuck off", "capture", "aim", "draw", "start", "mother", "start out", "have", "gravel", "bring", "suffer", "pay back", "induce", "nonplus", "puzzle", "scram", "perplex", "beget", "pose", "beat", "convey", "make", "begin", "fetch", "pay off", "engender", "grow", "come", "develop", "obtain", "generate", "contract", "drive", "catch", "buzz off", "find", "father", "get"]}, {"answer": "get_together", "hint": "synonyms for get together", "clues": ["assemble", "cooperate", "join", "fall in", "join forces", "meet", "collaborate", "gather", "get together"]}, {"answer": "getting", "hint": "synonyms for getting", "clues": ["become", "go", "let", "stimulate", "sire", "cause", "flummox", "get down", "incur", "arrest", "amaze", "acquire", "fix", "sustain", "get", "baffle", "dumbfound", "receive", "get under one's skin", "arrive", "commence", "bugger off", "take", "vex", "set out", "experience", "bewilder", "bring forth", "produce", "stick", "mystify", "stupefy", "fuck off", "capture", "aim", "draw", "start", "mother", "start out", "have", "gravel", "bring", "suffer", "pay back", "induce", "nonplus", "puzzle", "scram", "perplex", "beget", "pose", "beat", "convey", "make", "begin", "fetch", "pay off", "engender", "grow", "come", "develop", "obtain", "generate", "contract", "drive", "catch", "buzz off", "find", "father", "getting"]}, {"answer": "gibber", "hint": "synonyms for gibber", "clues": ["prattle", "palaver", "chatter", "clack", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "maunder", "prate", "piffle", "gibber"]}, {"answer": "gibe", "hint": "synonyms for gibe", "clues": ["jeer", "flout", "scoff", "fit", "match", "agree", "correspond", "check", "tally", "barrack", "jibe", "gibe"]}, {"answer": "gift", "hint": "synonyms for gift", "clues": ["empower", "endue", "endow", "present", "invest", "give", "indue", "gift"]}, {"answer": "give", "hint": "synonyms for give", "clues": ["consecrate", "devote", "move over", "commit", "return", "hand", "establish", "impart", "render", "pass on", "break", "chip in", "fall in", "give way", "pay", "founder", "reach", "hold", "open", "cave in", "have", "present", "collapse", "afford", "yield", "throw", "make", "grant", "ease up", "feed", "leave", "pass", "kick in", "generate", "contribute", "gift", "apply", "sacrifice", "turn over", "dedicate", "give"]}, {"answer": "glamour", "hint": "synonyms for glamour", "clues": ["jinx", "hex", "bewitch", "witch", "enchant", "glamour"]}, {"answer": "glass", "hint": "synonyms for glass", "clues": ["glass in", "glass over", "glaze over", "glaze", "glass"]}, {"answer": "glasses", "hint": "synonyms for glasses", "clues": ["glass in", "glass over", "glass", "glaze over", "glaze"]}, {"answer": "glaze", "hint": "synonyms for glaze", "clues": ["sugarcoat", "glass over", "glass", "glaze over", "candy", "glaze"]}, {"answer": "gleam", "hint": "synonyms for gleam", "clues": ["shine", "glitter", "glint", "glimmer", "glisten", "gleam"]}, {"answer": "glint", "hint": "synonyms for glint", "clues": ["peek", "glitter", "shine", "gleam", "glance", "glisten", "glint"]}, {"answer": "glisten", "hint": "synonyms for glisten", "clues": ["glint", "gleam", "shine", "glitter", "glisten"]}, {"answer": "glitter", "hint": "synonyms for glitter", "clues": ["glint", "gleam", "shine", "glisten", "glitter"]}, {"answer": "gloss", "hint": "synonyms for gloss", "clues": ["colour", "comment", "annotate", "gloss"]}, {"answer": "glow", "hint": "synonyms for glow", "clues": ["burn", "beam", "shine", "radiate", "glow"]}, {"answer": "glower", "hint": "synonyms for glower", "clues": ["glare", "lower", "frown", "lour"]}, {"answer": "glut", "hint": "synonyms for glut", "clues": ["gormandize", "pig out", "flood", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "oversupply", "gorge", "englut", "stuff", "engorge", "glut"]}, {"answer": "gnarl", "hint": "synonyms for gnarl", "clues": ["mutter", "grumble", "croak", "murmur", "gnarl"]}, {"answer": "goading", "hint": "synonyms for goading", "clues": ["needle", "spur", "goad", "prick"]}, {"answer": "goggles", "hint": "synonyms for goggles", "clues": ["gawp", "gape", "goggle", "gawk"]}, {"answer": "goldbrick", "hint": "synonyms for goldbrick", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "shrink from", "shirk", "swindle", "short-change", "fiddle", "gip", "scam", "con", "goldbrick"]}, {"answer": "goldbricking", "hint": "synonyms for goldbricking", "clues": ["victimize", "diddle", "swindle", "rook", "con", "goldbrick", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "shrink from", "nobble", "shirk", "short-change", "fiddle", "gip", "scam"]}, {"answer": "goof", "hint": "synonyms for goof", "clues": ["boob", "sin", "blunder", "drop the ball", "goof"]}, {"answer": "gorge", "hint": "synonyms for gorge", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "englut", "stuff", "engorge", "gorge"]}, {"answer": "gossip", "hint": "synonyms for gossip", "clues": ["chitchat", "chatter", "shoot the breeze", "claver", "confabulate", "dish the dirt", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer", "gossip"]}, {"answer": "gossiping", "hint": "synonyms for gossiping", "clues": ["chatter", "dish the dirt", "jaw", "natter", "confab", "chat", "gossip", "chitchat", "shoot the breeze", "claver", "confabulate", "chew the fat", "visit", "chaffer"]}, {"answer": "gouge", "hint": "synonyms for gouge", "clues": ["rout", "extort", "force out", "squeeze", "rack", "wring", "gouge"]}, {"answer": "governed", "hint": "synonyms for governed", "clues": ["regularise", "regulate", "rule", "govern", "order"]}, {"answer": "governess", "hint": "synonyms for governess", "clues": ["regularise", "regulate", "rule", "govern", "order", "governess"]}, {"answer": "grab", "hint": "synonyms for grab", "clues": ["catch", "snap up", "take hold of", "seize", "snaffle", "grab"]}, {"answer": "grace", "hint": "synonyms for grace", "clues": ["ornament", "adorn", "beautify", "decorate", "deck", "embellish", "grace"]}, {"answer": "grade", "hint": "synonyms for grade", "clues": ["rate", "place", "range", "mark", "score", "rank", "order", "grade"]}, {"answer": "grading", "hint": "synonyms for grading", "clues": ["rate", "place", "score", "rank", "order", "range", "grade", "mark", "grading"]}, {"answer": "grant", "hint": "synonyms for grant", "clues": ["accord", "allot", "yield", "cede", "give", "award", "concede", "deed over", "allow", "grant"]}, {"answer": "grapple", "hint": "synonyms for grapple", "clues": ["make do", "cope", "make out", "get by", "manage", "grip", "contend", "deal", "grapple"]}, {"answer": "grappling", "hint": "synonyms for grappling", "clues": ["make do", "get by", "manage", "grip", "deal", "cope", "make out", "grapple", "contend", "grappling"]}, {"answer": "grasp", "hint": "synonyms for grasp", "clues": ["apprehend", "dig", "get the picture", "grok", "compass", "hold on", "comprehend", "savvy", "grasp"]}, {"answer": "grass", "hint": "synonyms for grass", "clues": ["betray", "shit", "tell on", "denounce", "snitch", "give away", "stag", "rat", "shop", "grass over", "grass"]}, {"answer": "grate", "hint": "synonyms for grate", "clues": ["grind", "fret", "scrape", "rankle", "eat into", "grate"]}, {"answer": "gravel", "hint": "synonyms for gravel", "clues": ["stupefy", "annoy", "devil", "flummox", "rile", "amaze", "get at", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "nettle", "beat", "irritate", "nark", "stick", "vex", "bewilder", "get to", "chafe", "mystify", "rag", "bother", "gravel"]}, {"answer": "graves", "hint": "synonyms for graves", "clues": ["grave", "sculpt", "sculpture", "inscribe", "engrave", "scratch"]}, {"answer": "graze", "hint": "synonyms for graze", "clues": ["rake", "range", "crease", "pasture", "crop", "browse", "graze"]}, {"answer": "grazing", "hint": "synonyms for grazing", "clues": ["crease", "pasture", "crop", "rake", "range", "graze", "browse", "grazing"]}, {"answer": "grime", "hint": "synonyms for grime", "clues": ["bemire", "soil", "dirty", "begrime", "colly", "grime"]}, {"answer": "grind", "hint": "synonyms for grind", "clues": ["labor", "bray", "craunch", "drudge", "dig", "fag", "comminute", "travail", "toil", "moil", "mash", "grate", "grind"]}, {"answer": "grinding", "hint": "synonyms for grinding", "clues": ["labor", "bray", "grind", "craunch", "drudge", "dig", "fag", "comminute", "travail", "toil", "moil", "mash", "grate"]}, {"answer": "grip", "hint": "synonyms for grip", "clues": ["transfix", "spellbind", "fascinate", "grapple", "grip"]}, {"answer": "gripe", "hint": "synonyms for gripe", "clues": ["grouse", "holler", "squawk", "beef", "bitch", "bellyache", "crab", "gripe"]}, {"answer": "gripes", "hint": "synonyms for gripes", "clues": ["holler", "spellbind", "squawk", "grip", "bellyache", "fascinate", "crab", "grouse", "beef", "grapple", "transfix", "bitch"]}, {"answer": "griping", "hint": "synonyms for griping", "clues": ["holler", "spellbind", "squawk", "grip", "bellyache", "fascinate", "crab", "grouse", "beef", "grapple", "transfix", "bitch"]}, {"answer": "grizzle", "hint": "synonyms for grizzle", "clues": ["whine", "yammer", "yawp", "stew", "brood", "grizzle"]}, {"answer": "groom", "hint": "synonyms for groom", "clues": ["train", "neaten", "dress", "prepare", "curry", "groom"]}, {"answer": "grooming", "hint": "synonyms for grooming", "clues": ["train", "neaten", "dress", "prepare", "groom", "curry"]}, {"answer": "ground", "hint": "synonyms for ground", "clues": ["labor", "bray", "craunch", "drudge", "dig", "travail", "run aground", "toil", "undercoat", "found", "moil", "establish", "grate", "prime", "grind", "anchor", "base", "fag", "comminute", "strand", "mash", "ground"]}, {"answer": "grounding", "hint": "synonyms for grounding", "clues": ["ground", "prime", "anchor", "base", "run aground", "strand", "undercoat", "found", "establish"]}, {"answer": "grounds", "hint": "synonyms for grounds", "clues": ["ground", "prime", "anchor", "base", "run aground", "strand", "undercoat", "found", "establish"]}, {"answer": "grouse", "hint": "synonyms for grouse", "clues": ["holler", "squawk", "beef", "gripe", "bitch", "bellyache", "crab", "grouse"]}, {"answer": "grub", "hint": "synonyms for grub", "clues": ["mooch", "sponge", "bum", "cadge", "grub"]}, {"answer": "grumble", "hint": "synonyms for grumble", "clues": ["scold", "gnarl", "croak", "rumble", "growl", "grouch", "mutter", "murmur"]}, {"answer": "guarantee", "hint": "synonyms for guarantee", "clues": ["ensure", "insure", "undertake", "vouch", "warrant", "assure", "secure", "guarantee"]}, {"answer": "guess", "hint": "synonyms for guess", "clues": ["approximate", "hazard", "suppose", "infer", "reckon", "think", "venture", "estimate", "judge", "imagine", "gauge", "pretend", "opine", "guess"]}, {"answer": "guessing", "hint": "synonyms for guessing", "clues": ["approximate", "hazard", "suppose", "guess", "infer", "reckon", "think", "venture", "estimate", "judge", "imagine", "gauge", "pretend", "opine"]}, {"answer": "guide", "hint": "synonyms for guide", "clues": ["conduct", "channelize", "steer", "draw", "pass", "head", "take", "run", "maneuver", "point", "direct", "manoeuvre", "lead", "guide on", "guide"]}, {"answer": "gull", "hint": "synonyms for gull", "clues": ["cod", "fool", "dupe", "put one over", "befool", "put one across", "take in", "slang", "put on", "gull"]}, {"answer": "gurgle", "hint": "synonyms for gurgle", "clues": ["bubble", "burble", "ripple", "babble", "guggle", "gurgle"]}, {"answer": "gush", "hint": "synonyms for gush", "clues": ["rave", "spurt", "spirt", "jet", "spout", "gush"]}, {"answer": "guy", "hint": "synonyms for guy", "clues": ["poke fun", "rib", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "guy"]}, {"answer": "gyp", "hint": "synonyms for gyp", "clues": ["rook", "bunco", "defraud", "mulct", "victimize", "hornswoggle", "diddle", "nobble", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "gyp"]}, {"answer": "gyps", "hint": "synonyms for gyps", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "swindle", "short-change", "gip", "scam", "con", "goldbrick"]}, {"answer": "hack", "hint": "synonyms for hack", "clues": ["cut", "whoop", "cut up", "chop", "hack on", "hack"]}, {"answer": "haggling", "hint": "synonyms for haggling", "clues": ["chaffer", "haggle", "huckster", "higgle", "haggling"]}, {"answer": "hamming", "hint": "synonyms for hamming", "clues": ["overplay", "overact", "ham", "ham it up", "hamming"]}, {"answer": "hamper", "hint": "synonyms for hamper", "clues": ["handicap", "hinder", "halter", "cramp", "strangle", "hamper"]}, {"answer": "hand", "hint": "synonyms for hand", "clues": ["pass on", "reach", "turn over", "pass", "give", "hand"]}, {"answer": "handicap", "hint": "synonyms for handicap", "clues": ["disable", "incapacitate", "hinder", "invalid", "hamper", "handicap"]}, {"answer": "handle", "hint": "synonyms for handle", "clues": ["address", "manage", "treat", "deal", "plow", "palm", "do by", "cover", "care", "wield", "handle"]}, {"answer": "handling", "hint": "synonyms for handling", "clues": ["address", "manage", "treat", "deal", "plow", "palm", "do by", "cover", "handle", "care", "wield", "handling"]}, {"answer": "hands", "hint": "synonyms for hands", "clues": ["pass on", "reach", "hand", "turn over", "pass", "give"]}, {"answer": "hang", "hint": "synonyms for hang", "clues": ["fall", "cling", "flow", "pay heed", "string up", "attend", "give ear", "hang up", "advert", "hang"]}, {"answer": "hanging", "hint": "synonyms for hanging", "clues": ["fall", "cling", "flow", "pay heed", "string up", "attend", "hang", "give ear", "hang up", "advert"]}, {"answer": "hap", "hint": "synonyms for hap", "clues": ["occur", "fall out", "take place", "happen", "come about", "pass off", "go on", "pass", "hap"]}, {"answer": "happening", "hint": "synonyms for happening", "clues": ["hap", "materialize", "encounter", "occur", "fall out", "take place", "happen", "bechance", "come about", "pass off", "bump", "go on", "befall", "pass", "find"]}, {"answer": "harbinger", "hint": "synonyms for harbinger", "clues": ["herald", "foretell", "announce", "annunciate", "harbinger"]}, {"answer": "harbor", "hint": "synonyms for harbor", "clues": ["nurse", "entertain", "shield", "harbour", "hold"]}, {"answer": "harbour", "hint": "synonyms for harbour", "clues": ["nurse", "harbor", "shield", "entertain", "hold"]}, {"answer": "hardening", "hint": "synonyms for hardening", "clues": ["temper", "inure", "harden", "indurate", "season"]}, {"answer": "harness", "hint": "synonyms for harness", "clues": ["draw rein", "rule", "rein", "tackle", "rein in", "harness"]}, {"answer": "hassle", "hint": "synonyms for hassle", "clues": ["chivvy", "chevy", "harass", "harry", "plague", "provoke", "beset", "molest", "hassle"]}, {"answer": "hatch", "hint": "synonyms for hatch", "clues": ["dream up", "think of", "incubate", "concoct", "cover", "brood", "think up", "hatch"]}, {"answer": "hatching", "hint": "synonyms for hatching", "clues": ["think of", "concoct", "brood", "hatch", "dream up", "incubate", "cover", "think up"]}, {"answer": "hauling", "hint": "synonyms for hauling", "clues": ["hale", "cart", "haul", "drag"]}, {"answer": "haunt", "hint": "synonyms for haunt", "clues": ["ghost", "obsess", "frequent", "stalk", "haunt"]}, {"answer": "have", "hint": "synonyms for have", "clues": ["feature", "give birth", "birth", "let", "accept", "stimulate", "bear", "cause", "suffer", "sustain", "consume", "get", "take in", "ingest", "own", "possess", "receive", "throw", "make", "have got", "deliver", "give", "take", "experience", "hold", "induce", "have"]}, {"answer": "hawk", "hint": "synonyms for hawk", "clues": ["peddle", "vend", "monger", "huckster", "pitch", "clear the throat", "hawk"]}, {"answer": "hawking", "hint": "synonyms for hawking", "clues": ["peddle", "pitch", "vend", "monger", "huckster", "hawk", "clear the throat"]}, {"answer": "hazard", "hint": "synonyms for hazard", "clues": ["adventure", "jeopardize", "risk", "guess", "chance", "stake", "gamble", "take a chance", "pretend", "run a risk", "hazard"]}, {"answer": "head", "hint": "synonyms for head", "clues": ["head up", "guide", "channelize", "steer", "maneuver", "point", "direct", "manoeuvre", "lead", "head"]}, {"answer": "heading", "hint": "synonyms for heading", "clues": ["head up", "guide", "channelize", "steer", "head", "maneuver", "point", "direct", "manoeuvre", "lead"]}, {"answer": "heat", "hint": "synonyms for heat", "clues": ["wake", "stir up", "hot up", "inflame", "heat up", "fire up", "ignite", "heat"]}, {"answer": "heating", "hint": "synonyms for heating", "clues": ["wake", "stir up", "hot up", "fire up", "heat", "inflame", "heat up", "ignite"]}, {"answer": "heave", "hint": "synonyms for heave", "clues": ["gag", "heave up", "warp", "retch", "puff", "billow", "heft", "pant", "heft up", "buckle", "surge", "gasp", "heave"]}, {"answer": "heaves", "hint": "synonyms for heaves", "clues": ["gag", "heave up", "warp", "retch", "puff", "heave", "gasp", "heft", "pant", "heft up", "buckle", "surge", "billow"]}, {"answer": "heaving", "hint": "synonyms for heaving", "clues": ["gag", "heave up", "warp", "retch", "puff", "heave", "gasp", "heft", "pant", "heft up", "buckle", "surge", "billow", "heaving"]}, {"answer": "hector", "hint": "synonyms for hector", "clues": ["push around", "browbeat", "strong-arm", "bullyrag", "bully", "boss around", "hector"]}, {"answer": "hedge", "hint": "synonyms for hedge", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "evade", "fudge", "hedge in", "sidestep", "elude", "duck", "hedge"]}, {"answer": "hedging", "hint": "synonyms for hedging", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "evade", "fudge", "hedge in", "sidestep", "elude", "duck", "hedge", "hedging"]}, {"answer": "help", "hint": "synonyms for help", "clues": ["aid", "help oneself", "assist", "facilitate", "serve", "avail", "help"]}, {"answer": "helping", "hint": "synonyms for helping", "clues": ["aid", "assist", "help oneself", "help", "facilitate", "serve", "avail"]}, {"answer": "herald", "hint": "synonyms for herald", "clues": ["harbinger", "annunciate", "acclaim", "hail", "announce", "foretell", "herald"]}, {"answer": "hide", "hint": "synonyms for hide", "clues": ["conceal", "obliterate", "enshroud", "blot out", "hide out", "veil", "cover", "obscure", "hide"]}, {"answer": "hiding", "hint": "synonyms for hiding", "clues": ["conceal", "hide", "obliterate", "enshroud", "blot out", "hide out", "veil", "cover", "obscure", "hiding"]}, {"answer": "highlighting", "hint": "synonyms for highlighting", "clues": ["foreground", "play up", "spotlight", "highlight"]}, {"answer": "hire", "hint": "synonyms for hire", "clues": ["rent", "engage", "take", "employ", "charter", "lease", "hire"]}, {"answer": "hiss", "hint": "synonyms for hiss", "clues": ["boo", "sibilate", "sizz", "whoosh", "siss", "hiss"]}, {"answer": "hissing", "hint": "synonyms for hissing", "clues": ["sizz", "whoosh", "siss", "hiss", "boo", "sibilate"]}, {"answer": "hit", "hint": "synonyms for hit", "clues": ["attain", "remove", "bump off", "shoot", "polish off", "off", "collide with", "tally", "murder", "stumble", "pip", "dispatch", "make", "gain", "arrive at", "score", "reach", "rack up", "come to", "run into", "slay", "strike", "impinge on", "hit"]}, {"answer": "hitch", "hint": "synonyms for hitch", "clues": ["buck", "gimp", "hobble", "hitchhike", "catch", "limp", "jerk", "thumb", "hitch"]}, {"answer": "hitchings", "hint": "synonyms for hitchings", "clues": ["buck", "hitchhike", "hitch", "gimp", "hobble", "catch", "limp", "jerk", "thumb", "hitchings"]}, {"answer": "hitting", "hint": "synonyms for hitting", "clues": ["attain", "remove", "bump off", "hit", "shoot", "polish off", "off", "collide with", "tally", "murder", "stumble", "pip", "dispatch", "make", "gain", "arrive at", "score", "reach", "rack up", "come to", "run into", "slay", "strike", "impinge on", "hitting"]}, {"answer": "hoard", "hint": "synonyms for hoard", "clues": ["pile up", "amass", "cache", "roll up", "squirrel away", "compile", "hive up", "lay away", "accumulate", "stash", "collect", "hoard"]}, {"answer": "hoarding", "hint": "synonyms for hoarding", "clues": ["pile up", "amass", "cache", "roll up", "hoard", "squirrel away", "compile", "hive up", "lay away", "accumulate", "stash", "collect"]}, {"answer": "hobble", "hint": "synonyms for hobble", "clues": ["hitch", "limp", "hopple", "gimp", "hobble"]}, {"answer": "hold", "hint": "synonyms for hold", "clues": ["support", "keep", "go for", "restrain", "arrest", "sustain", "defy", "nurse", "bind", "hold up", "entertain", "oblige", "withstand", "hold in", "have got", "defend", "adjudge", "agree", "take", "check", "guard", "halt", "admit", "maintain", "hold back", "harbor", "confine", "accommodate", "reserve", "have", "bear", "concord", "concur", "carry", "book", "deem", "control", "throw", "declare", "make", "curb", "give", "view as", "keep back", "obtain", "contain", "prevail", "moderate", "take hold", "apply", "take for", "hold"]}, {"answer": "holding", "hint": "synonyms for holding", "clues": ["support", "keep", "go for", "retain", "arrest", "sustain", "defy", "nurse", "bind", "hold up", "entertain", "oblige", "withstand", "hold in", "have got", "defend", "adjudge", "agree", "take", "check", "guard", "take for", "admit", "halt", "hold", "maintain", "hold back", "harbor", "confine", "accommodate", "reserve", "have", "bear", "concord", "concur", "carry", "book", "deem", "control", "throw", "declare", "make", "curb", "give", "view as", "keep back", "obtain", "contain", "prevail", "moderate", "take hold", "apply"]}, {"answer": "holler", "hint": "synonyms for holler", "clues": ["yell", "squawk", "call", "cry", "shout", "squall", "bellyache", "scream", "holler out", "crab", "grouse", "beef", "hollo", "bitch", "shout out", "gripe", "holler"]}, {"answer": "hollering", "hint": "synonyms for hollering", "clues": ["holler", "yell", "squawk", "call", "cry", "shout", "squall", "bellyache", "scream", "holler out", "crab", "grouse", "beef", "hollo", "bitch", "shout out", "gripe"]}, {"answer": "hollo", "hint": "synonyms for hollo", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "scream", "shout out", "hollo"]}, {"answer": "honk", "hint": "synonyms for honk", "clues": ["cronk", "retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "be sick", "beep", "upchuck", "blare", "sick", "regorge", "vomit", "throw up", "claxon", "toot", "spue", "barf", "chuck", "honk"]}, {"answer": "honor", "hint": "synonyms for honor", "clues": ["respect", "abide by", "observe", "honour", "reward"]}, {"answer": "honoring", "hint": "synonyms for honoring", "clues": ["respect", "abide by", "honor", "reward", "observe"]}, {"answer": "honour", "hint": "synonyms for honour", "clues": ["respect", "abide by", "observe", "honor", "reward"]}, {"answer": "honours", "hint": "synonyms for honours", "clues": ["respect", "abide by", "honor", "reward", "observe", "honours"]}, {"answer": "hoofing", "hint": "synonyms for hoofing", "clues": ["foot", "hoof it", "leg it", "hoof"]}, {"answer": "hook", "hint": "synonyms for hook", "clues": ["abstract", "fleece", "gazump", "filch", "addict", "solicit", "thieve", "pinch", "sneak", "lift", "accost", "swipe", "soak", "plume", "nobble", "snitch", "pluck", "rob", "glom", "pilfer", "overcharge", "crochet", "surcharge", "purloin", "cabbage", "knock off", "snarf", "cop", "snare", "hook"]}, {"answer": "hooking", "hint": "synonyms for hooking", "clues": ["abstract", "fleece", "gazump", "filch", "addict", "hook", "solicit", "thieve", "pinch", "sneak", "lift", "accost", "swipe", "soak", "plume", "nobble", "snitch", "pluck", "rob", "glom", "pilfer", "overcharge", "crochet", "surcharge", "purloin", "cabbage", "knock off", "snarf", "cop", "snare"]}, {"answer": "hooks", "hint": "synonyms for hooks", "clues": ["abstract", "fleece", "gazump", "filch", "addict", "hook", "solicit", "thieve", "pinch", "sneak", "lift", "accost", "swipe", "soak", "plume", "nobble", "snitch", "pluck", "rob", "glom", "pilfer", "overcharge", "crochet", "surcharge", "purloin", "cabbage", "knock off", "snarf", "cop", "snare"]}, {"answer": "howl", "hint": "synonyms for howl", "clues": ["yammer", "yaup", "yowl", "wail", "ululate", "roar", "wrawl", "yawl", "howl"]}, {"answer": "huckster", "hint": "synonyms for huckster", "clues": ["peddle", "pitch", "vend", "higgle", "chaffer", "monger", "haggle", "hawk", "huckster"]}, {"answer": "hugging", "hint": "synonyms for hugging", "clues": ["embrace", "squeeze", "hug", "bosom", "hugging"]}, {"answer": "humming", "hint": "synonyms for humming", "clues": ["hum", "thrum", "seethe", "buzz", "humming"]}, {"answer": "hump", "hint": "synonyms for hump", "clues": ["roll in the hay", "have a go at it", "hunch over", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "hunch forward", "jazz", "know", "hunch", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "hump"]}, {"answer": "hunger", "hint": "synonyms for hunger", "clues": ["lust", "starve", "thirst", "crave", "famish", "hunger"]}, {"answer": "hunt", "hint": "synonyms for hunt", "clues": ["hound", "track down", "hunt down", "trace", "run", "hunt"]}, {"answer": "hunting", "hint": "synonyms for hunting", "clues": ["hound", "hunt", "track down", "hunt down", "trace", "run"]}, {"answer": "hurl", "hint": "synonyms for hurl", "clues": ["throw", "hurtle", "cast", "lunge", "thrust", "hurl"]}, {"answer": "hurling", "hint": "synonyms for hurling", "clues": ["throw", "hurtle", "cast", "lunge", "thrust", "hurl"]}, {"answer": "hurry", "hint": "synonyms for hurry", "clues": ["hasten", "speed", "look sharp", "festinate", "zip", "travel rapidly", "rush", "hurry"]}, {"answer": "hurting", "hint": "synonyms for hurting", "clues": ["spite", "anguish", "offend", "pain", "smart", "injure", "wound", "suffer", "ache", "hurt", "bruise"]}, {"answer": "hush", "hint": "synonyms for hush", "clues": ["quiet", "silence", "quiesce", "still", "quieten", "pipe down", "hush up", "shut up", "quiet down", "hush"]}, {"answer": "hushing", "hint": "synonyms for hushing", "clues": ["quiet", "hush", "silence", "quiesce", "still", "quieten", "pipe down", "hush up", "shut up", "quiet down"]}, {"answer": "hustle", "hint": "synonyms for hustle", "clues": ["roll", "bustle about", "pluck", "bustle", "hustle"]}, {"answer": "hybridizing", "hint": "synonyms for hybridizing", "clues": ["cross", "hybridise", "crossbreed", "interbreed", "hybridizing"]}, {"answer": "idling", "hint": "synonyms for idling", "clues": ["slug", "stagnate", "tick over", "idle", "laze", "idling"]}, {"answer": "image", "hint": "synonyms for image", "clues": ["figure", "visualise", "picture", "fancy", "envision", "see", "project", "image"]}, {"answer": "imaging", "hint": "synonyms for imaging", "clues": ["image", "figure", "visualise", "picture", "fancy", "envision", "see", "project", "imaging"]}, {"answer": "imbibing", "hint": "synonyms for imbibing", "clues": ["absorb", "draw", "take up", "imbibe", "assimilate", "sop up", "suck", "take in", "drink", "soak up", "suck up", "imbibing"]}, {"answer": "immobilizing", "hint": "synonyms for immobilizing", "clues": ["freeze", "immobilize", "pin", "block", "trap", "immobilizing"]}, {"answer": "impact", "hint": "synonyms for impact", "clues": ["bear upon", "touch", "affect", "touch on", "impact"]}, {"answer": "imparting", "hint": "synonyms for imparting", "clues": ["pass on", "convey", "conduct", "lend", "channel", "leave", "give", "bring", "bestow", "contribute", "add", "transmit", "carry", "impart"]}, {"answer": "impinging", "hint": "synonyms for impinging", "clues": ["impinge", "infringe", "entrench", "encroach", "impinging"]}, {"answer": "implant", "hint": "synonyms for implant", "clues": ["plant", "imbed", "embed", "engraft", "implant"]}, {"answer": "implement", "hint": "synonyms for implement", "clues": ["follow out", "go through", "enforce", "carry out", "follow up", "follow through", "apply", "put through", "implement"]}, {"answer": "impounding", "hint": "synonyms for impounding", "clues": ["impound", "attach", "sequester", "confiscate", "pound", "seize"]}, {"answer": "impress", "hint": "synonyms for impress", "clues": ["imprint", "instill", "ingrain", "yarn-dye", "affect", "print", "move", "strike", "shanghai", "impress"]}, {"answer": "incense", "hint": "synonyms for incense", "clues": ["infuriate", "thurify", "exasperate", "cense", "incense"]}, {"answer": "incline", "hint": "synonyms for incline", "clues": ["tend", "dispose", "lean", "pitch", "be given", "run", "slope", "incline"]}, {"answer": "inclining", "hint": "synonyms for inclining", "clues": ["tend", "dispose", "lean", "be given", "run", "incline", "pitch", "slope", "inclining"]}, {"answer": "inconvenience", "hint": "synonyms for inconvenience", "clues": ["discommode", "trouble", "incommode", "bother", "disoblige", "put out", "inconvenience"]}, {"answer": "incurring", "hint": "synonyms for incurring", "clues": ["incur", "obtain", "get", "receive", "find", "incurring"]}, {"answer": "inducing", "hint": "synonyms for inducing", "clues": ["hasten", "make", "induct", "have", "bring on", "stimulate", "cause", "get", "induce", "rush", "inducing"]}, {"answer": "indulging", "hint": "synonyms for indulging", "clues": ["baby", "cocker", "pamper", "gratify", "luxuriate", "spoil", "featherbed", "indulge", "coddle", "pander", "cosset", "mollycoddle", "indulging"]}, {"answer": "inebriate", "hint": "synonyms for inebriate", "clues": ["soak", "tickle pink", "hit it up", "souse", "exalt", "beatify", "thrill", "intoxicate", "exhilarate", "inebriate"]}, {"answer": "inflaming", "hint": "synonyms for inflaming", "clues": ["wake", "stir up", "enkindle", "fire up", "heat", "conflagrate", "inflame", "ignite", "inflaming"]}, {"answer": "influence", "hint": "synonyms for influence", "clues": ["regulate", "tempt", "determine", "charm", "act upon", "work", "shape", "mold", "influence"]}, {"answer": "ingraining", "hint": "synonyms for ingraining", "clues": ["impress", "instill", "grain", "ingrain"]}, {"answer": "initiate", "hint": "synonyms for initiate", "clues": ["broach", "start", "originate", "induct", "pioneer", "lead up", "initiate"]}, {"answer": "inoculating", "hint": "synonyms for inoculating", "clues": ["inoculate", "immunise", "vaccinate", "inoculating"]}, {"answer": "insert", "hint": "synonyms for insert", "clues": ["put in", "inclose", "sneak in", "stick in", "infix", "enter", "slip in", "tuck", "introduce", "insert"]}, {"answer": "insisting", "hint": "synonyms for insisting", "clues": ["importune", "insist", "assert", "take a firm stand"]}, {"answer": "installing", "hint": "synonyms for installing", "clues": ["put in", "instal", "set up", "establish", "installing"]}, {"answer": "instilling", "hint": "synonyms for instilling", "clues": ["impress", "instill", "infuse", "ingrain", "impregnate", "inculcate", "tincture", "transfuse"]}, {"answer": "institute", "hint": "synonyms for institute", "clues": ["bring", "plant", "found", "establish", "constitute", "institute"]}, {"answer": "integrating", "hint": "synonyms for integrating", "clues": ["incorporate", "mix", "integrate", "desegregate", "integrating"]}, {"answer": "interbreeding", "hint": "synonyms for interbreeding", "clues": ["cross", "hybridise", "crossbreed", "interbreed"]}, {"answer": "intercept", "hint": "synonyms for intercept", "clues": ["tap", "bug", "wiretap", "stop", "intercept"]}, {"answer": "interchange", "hint": "synonyms for interchange", "clues": ["transpose", "change", "switch", "substitute", "alternate", "replace", "counterchange", "tack", "flip-flop", "flip", "interchange"]}, {"answer": "interdict", "hint": "synonyms for interdict", "clues": ["veto", "prohibit", "disallow", "nix", "forbid", "proscribe", "interdict"]}, {"answer": "interest", "hint": "synonyms for interest", "clues": ["worry", "occupy", "concern", "matter to", "interest"]}, {"answer": "interpreting", "hint": "synonyms for interpreting", "clues": ["construe", "translate", "read", "understand", "rede", "interpret", "represent", "see", "render"]}, {"answer": "interrupt", "hint": "synonyms for interrupt", "clues": ["break", "break up", "disrupt", "disturb", "cut off", "interrupt"]}, {"answer": "investigating", "hint": "synonyms for investigating", "clues": ["investigate", "enquire", "look into", "investigating"]}, {"answer": "investing", "hint": "synonyms for investing", "clues": ["place", "indue", "empower", "endue", "endow", "enthrone", "induct", "seat", "adorn", "clothe", "commit", "put", "gift", "invest", "vest"]}, {"answer": "invite", "hint": "synonyms for invite", "clues": ["tempt", "ask over", "ask round", "pay for", "bid", "take in", "ask in", "receive", "ask for", "call for", "invite"]}, {"answer": "issue", "hint": "synonyms for issue", "clues": ["release", "write out", "emerge", "come forth", "put out", "supply", "publish", "go forth", "cut", "make out", "come out", "bring out", "egress", "issue"]}, {"answer": "issuing", "hint": "synonyms for issuing", "clues": ["release", "write out", "emerge", "come forth", "issue", "supply", "publish", "put out", "go forth", "cut", "make out", "come out", "bring out", "egress", "issuing"]}, {"answer": "itching", "hint": "synonyms for itching", "clues": ["spoil", "itch", "rub", "scratch"]}, {"answer": "jab", "hint": "synonyms for jab", "clues": ["prod", "dig", "poke", "stab", "jab"]}, {"answer": "jabber", "hint": "synonyms for jabber", "clues": ["rave", "rant", "rabbit on", "mouth off", "spout", "jabber"]}, {"answer": "jabbering", "hint": "synonyms for jabbering", "clues": ["rave", "jabber", "rant", "rabbit on", "mouth off", "spout"]}, {"answer": "jabbing", "hint": "synonyms for jabbing", "clues": ["prod", "jab", "dig", "poke", "stab", "jabbing"]}, {"answer": "jail", "hint": "synonyms for jail", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "immure", "jail"]}, {"answer": "jam", "hint": "synonyms for jam", "clues": ["chock up", "pack", "block", "mob", "close up", "cram", "impede", "obstruct", "pile", "wad", "throng", "crush", "occlude", "jampack", "obturate", "jam"]}, {"answer": "james", "hint": "synonyms for james", "clues": ["chock up", "pack", "impede", "close up", "ram", "wad", "jam", "obstruct", "throng", "obturate", "block", "mob", "pile", "occlude", "crush", "jampack"]}, {"answer": "jamming", "hint": "synonyms for jamming", "clues": ["chock up", "pack", "impede", "close up", "ram", "wad", "jam", "obstruct", "throng", "obturate", "block", "mob", "pile", "occlude", "crush", "jampack", "jamming"]}, {"answer": "jar", "hint": "synonyms for jar", "clues": ["bump around", "jolt", "clash", "shake up", "collide", "jar"]}, {"answer": "jaw", "hint": "synonyms for jaw", "clues": ["call down", "chew up", "yack", "take to task", "natter", "lecture", "yap away", "chew", "yack away", "call on the carpet", "shoot the breeze", "claver", "confabulate", "masticate", "lambast", "rebuke", "chaffer", "manducate", "rag", "chatter", "rattle on", "reproof", "confab", "chat", "have words", "chide", "scold", "gossip", "chitchat", "chew out", "remonstrate", "reprimand", "chew the fat", "visit", "berate", "dress down", "trounce", "bawl out", "jaw"]}, {"answer": "jazz", "hint": "synonyms for jazz", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "jazz"]}, {"answer": "jeer", "hint": "synonyms for jeer", "clues": ["flout", "scoff", "barrack", "gibe", "jeer"]}, {"answer": "jerk", "hint": "synonyms for jerk", "clues": ["yank", "buck", "twitch", "hitch", "flick", "jerk"]}, {"answer": "jib", "hint": "synonyms for jib", "clues": ["baulk", "gybe", "jibe", "resist", "change course"]}, {"answer": "jibe", "hint": "synonyms for jibe", "clues": ["fit", "match", "gybe", "gibe", "agree", "correspond", "check", "jib", "tally", "change course"]}, {"answer": "jimmies", "hint": "synonyms for jimmies", "clues": ["pry", "lever", "jimmy", "prize", "prise", "jimmies"]}, {"answer": "jimmy", "hint": "synonyms for jimmy", "clues": ["prise", "prize", "pry", "lever", "jimmy"]}, {"answer": "jinx", "hint": "synonyms for jinx", "clues": ["hex", "bewitch", "witch", "glamour", "enchant", "jinx"]}, {"answer": "jockey", "hint": "synonyms for jockey", "clues": ["cheat", "chouse", "screw", "shaft", "chicane", "jockey"]}, {"answer": "jog", "hint": "synonyms for jog", "clues": ["ramble on", "ramble", "square up", "even up", "trot", "clip", "jog"]}, {"answer": "jogging", "hint": "synonyms for jogging", "clues": ["ramble on", "ramble", "square up", "even up", "trot", "clip", "jog", "jogging"]}, {"answer": "join", "hint": "synonyms for join", "clues": ["bring together", "link", "fall in", "connect", "link up", "unite", "get together", "conjoin", "join"]}, {"answer": "joining", "hint": "synonyms for joining", "clues": ["bring together", "link", "join", "fall in", "connect", "link up", "unite", "get together", "conjoin"]}, {"answer": "judge", "hint": "synonyms for judge", "clues": ["adjudicate", "label", "approximate", "try", "pass judgment", "guess", "evaluate", "estimate", "pronounce", "gauge", "judge"]}, {"answer": "judges", "hint": "synonyms for judges", "clues": ["adjudicate", "gauge", "label", "approximate", "try", "guess", "evaluate", "estimate", "judge", "pronounce", "pass judgment"]}, {"answer": "judging", "hint": "synonyms for judging", "clues": ["adjudicate", "gauge", "label", "approximate", "try", "guess", "evaluate", "estimate", "judge", "pronounce", "pass judgment", "judging"]}, {"answer": "jug", "hint": "synonyms for jug", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "immure", "jail", "jug"]}, {"answer": "jumble", "hint": "synonyms for jumble", "clues": ["mix up", "throw together", "confuse", "scramble", "mingle", "jumble"]}, {"answer": "jump", "hint": "synonyms for jump", "clues": ["skip", "start", "leap out", "jump out", "rise", "alternate", "derail", "jumpstart", "jump off", "spring", "parachute", "climb up", "skip over", "pass over", "startle", "chute", "stand out", "leap", "bound", "stick out", "jump"]}, {"answer": "jumping", "hint": "synonyms for jumping", "clues": ["skip", "start", "leap out", "jump out", "rise", "alternate", "derail", "jumpstart", "jump off", "spring", "parachute", "climb up", "skip over", "pass over", "startle", "chute", "stand out", "jump", "leap", "bound", "stick out"]}, {"answer": "junketing", "hint": "synonyms for junketing", "clues": ["banquet", "feast", "junket", "junketeer"]}, {"answer": "jut", "hint": "synonyms for jut", "clues": ["jut out", "project", "protrude", "stick out", "jut"]}, {"answer": "keel", "hint": "synonyms for keel", "clues": ["careen", "reel", "lurch", "swag", "stagger", "keel"]}, {"answer": "keep", "hint": "synonyms for keep", "clues": ["prevent", "retain", "keep on", "observe", "sustain", "hold on", "celebrate", "stay fresh", "proceed", "continue", "keep back", "go along", "preserve", "save", "go on", "hold", "maintain", "hold back", "keep"]}, {"answer": "keeping", "hint": "synonyms for keeping", "clues": ["keep", "prevent", "retain", "keep on", "observe", "sustain", "hold on", "celebrate", "stay fresh", "proceed", "continue", "keep back", "go along", "preserve", "save", "go on", "hold", "maintain", "hold back"]}, {"answer": "kick", "hint": "synonyms for kick", "clues": ["kvetch", "quetch", "give up", "complain", "recoil", "kick back", "sound off", "plain", "kick"]}, {"answer": "kicking", "hint": "synonyms for kicking", "clues": ["kick", "kvetch", "quetch", "give up", "complain", "recoil", "kick back", "sound off", "plain"]}, {"answer": "kid", "hint": "synonyms for kid", "clues": ["josh", "chaff", "banter", "jolly", "pull the leg of", "kid"]}, {"answer": "kidnapping", "hint": "synonyms for kidnapping", "clues": ["nobble", "abduct", "snatch", "kidnap", "kidnapping"]}, {"answer": "kill", "hint": "synonyms for kill", "clues": ["shoot down", "pour down", "vote down", "obliterate", "vote out", "down", "pop", "stamp out", "toss off", "defeat", "bolt down", "wipe out", "drink down", "kill"]}, {"answer": "kindling", "hint": "synonyms for kindling", "clues": ["elicit", "arouse", "enkindle", "raise", "fire", "provoke", "conflagrate", "inflame", "evoke", "kindling"]}, {"answer": "kink", "hint": "synonyms for kink", "clues": ["frizz", "kink up", "curl", "frizzle", "crape", "crimp", "curve", "kink"]}, {"answer": "kip", "hint": "synonyms for kip", "clues": ["slumber", "catch some Z's", "sleep", "log Z's", "kip"]}, {"answer": "kissing", "hint": "synonyms for kissing", "clues": ["buss", "kiss", "snog", "osculate"]}, {"answer": "knit", "hint": "synonyms for knit", "clues": ["pucker", "entwine", "rumple", "cockle", "knit"]}, {"answer": "knitting", "hint": "synonyms for knitting", "clues": ["pucker", "entwine", "crumple", "knit", "cockle", "knitting"]}, {"answer": "knock", "hint": "synonyms for knock", "clues": ["criticize", "ping", "strike hard", "pick apart", "bump", "rap", "tap", "pink", "knock"]}, {"answer": "knocking", "hint": "synonyms for knocking", "clues": ["criticize", "ping", "strike hard", "pick apart", "bump", "rap", "knock", "tap", "pink"]}, {"answer": "know", "hint": "synonyms for know", "clues": ["roll in the hay", "hump", "acknowledge", "have a go at it", "bonk", "cognise", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "love", "sleep with", "live", "get it on", "eff", "screw", "lie with", "jazz", "get laid", "have it away", "experience", "do it", "fuck", "recognize", "make love", "know"]}, {"answer": "kotow", "hint": "synonyms for kotow", "clues": ["bootlick", "truckle", "toady", "kowtow", "fawn", "suck up"]}, {"answer": "kowtow", "hint": "synonyms for kowtow", "clues": ["bootlick", "kotow", "genuflect", "fawn", "truckle", "toady", "scrape", "suck up"]}, {"answer": "kvetch", "hint": "synonyms for kvetch", "clues": ["kick", "quetch", "sound off", "complain", "plain", "kvetch"]}, {"answer": "label", "hint": "synonyms for label", "clues": ["pronounce", "judge", "tag", "mark", "label"]}, {"answer": "labor", "hint": "synonyms for labor", "clues": ["moil", "grind", "drudge", "dig", "tug", "fag", "travail", "toil", "labour", "drive", "push"]}, {"answer": "labour", "hint": "synonyms for labour", "clues": ["labor", "grind", "drudge", "dig", "fag", "tug", "travail", "drive", "toil", "moil", "push"]}, {"answer": "lace", "hint": "synonyms for lace", "clues": ["entwine", "lace up", "interlace", "braid", "enlace", "intertwine", "spike", "twine", "plait", "fortify", "lace"]}, {"answer": "lacing", "hint": "synonyms for lacing", "clues": ["entwine", "lace up", "lace", "interlace", "enlace", "braid", "intertwine", "spike", "twine", "plait", "fortify", "lacing"]}, {"answer": "lactate", "hint": "synonyms for lactate", "clues": ["nurse", "wet-nurse", "suckle", "breastfeed", "give suck", "suck", "lactate"]}, {"answer": "lading", "hint": "synonyms for lading", "clues": ["load", "laden", "load up", "ladle", "lading"]}, {"answer": "lag", "hint": "synonyms for lag", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "fall back", "dawdle", "jug", "immure", "jail", "fall behind", "lag"]}, {"answer": "lagging", "hint": "synonyms for lagging", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "fall back", "dawdle", "jug", "immure", "jail", "fall behind", "lagging"]}, {"answer": "lam", "hint": "synonyms for lam", "clues": ["escape", "hightail it", "flail", "fly the coop", "thresh", "turn tail", "run", "thrash", "scat", "run away", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "lam"]}, {"answer": "lament", "hint": "synonyms for lament", "clues": ["bewail", "deplore", "bemoan", "keen", "lament"]}, {"answer": "land", "hint": "synonyms for land", "clues": ["down", "set ashore", "put down", "shoot down", "bring down", "shore", "set down", "bring", "land"]}, {"answer": "landing", "hint": "synonyms for landing", "clues": ["put down", "shoot down", "bring down", "shore", "set down", "bring", "down", "land", "set ashore"]}, {"answer": "lap", "hint": "synonyms for lap", "clues": ["swoosh", "lave", "lap up", "lick", "swish", "wash", "lap"]}, {"answer": "lapping", "hint": "synonyms for lapping", "clues": ["lave", "lick", "lap", "swoosh", "lap up", "swish", "wash", "lapping"]}, {"answer": "lapse", "hint": "synonyms for lapse", "clues": ["glide by", "sink", "elapse", "backslide", "regress", "recidivate", "slip by", "go by", "go along", "fall back", "retrogress", "slip away", "pass"]}, {"answer": "lapsing", "hint": "synonyms for lapsing", "clues": ["lapse", "glide by", "sink", "backslide", "regress", "recidivate", "slip by", "go by", "go along", "fall back", "retrogress", "relapse", "slip away", "pass", "lapsing"]}, {"answer": "lard", "hint": "synonyms for lard", "clues": ["dramatize", "aggrandise", "blow up", "embellish", "pad", "embroider", "lard"]}, {"answer": "lark", "hint": "synonyms for lark", "clues": ["frisk", "gambol", "cavort", "frolic", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp", "lark"]}, {"answer": "lash", "hint": "synonyms for lash", "clues": ["whip", "trounce", "strap", "flog", "slash", "lather", "welt"]}, {"answer": "lashings", "hint": "synonyms for lashings", "clues": ["slash", "lather", "whip", "strap", "trounce", "flog", "welt", "lashings"]}, {"answer": "lather", "hint": "synonyms for lather", "clues": ["soap", "whip", "lash", "trounce", "strap", "flog", "welt", "lather"]}, {"answer": "launch", "hint": "synonyms for launch", "clues": ["set up", "found", "set in motion", "plunge", "establish", "launch"]}, {"answer": "launching", "hint": "synonyms for launching", "clues": ["launch", "set up", "found", "set in motion", "plunge", "establish"]}, {"answer": "laying", "hint": "synonyms for laying", "clues": ["lay", "place", "put down", "put", "position", "repose", "pose", "set"]}, {"answer": "lead", "hint": "synonyms for lead", "clues": ["conduct", "guide", "go", "chair", "leave", "top", "head", "take", "run", "moderate", "extend", "contribute", "direct", "result", "pass", "precede", "lead"]}, {"answer": "leaf", "hint": "synonyms for leaf", "clues": ["riff", "flip", "riffle", "thumb", "flick", "leaf"]}, {"answer": "leafing", "hint": "synonyms for leafing", "clues": ["leaf", "riff", "flip", "riffle", "thumb", "flick"]}, {"answer": "leap", "hint": "synonyms for leap", "clues": ["jump off", "bound", "spring", "jump", "leap"]}, {"answer": "leaping", "hint": "synonyms for leaping", "clues": ["leap", "jump off", "bound", "spring", "jump"]}, {"answer": "learning", "hint": "synonyms for learning", "clues": ["get wind", "get a line", "read", "learn", "watch", "get word", "ascertain", "instruct", "acquire", "con", "hear", "determine", "take", "check", "pick up", "discover", "find out", "memorise", "see", "study", "teach"]}, {"answer": "lease", "hint": "synonyms for lease", "clues": ["rent", "let", "engage", "hire", "take", "charter", "lease"]}, {"answer": "leave", "hint": "synonyms for leave", "clues": ["leave behind", "entrust", "result", "go away", "allow", "impart", "pass on", "pull up stakes", "depart", "provide", "bequeath", "give", "exit", "go forth", "leave alone", "get out", "go out", "will", "forget", "allow for", "lead", "leave"]}, {"answer": "leaving", "hint": "synonyms for leaving", "clues": ["leave behind", "entrust", "result", "go away", "allow", "impart", "pass on", "pull up stakes", "depart", "leave", "provide", "bequeath", "give", "exit", "go forth", "leave alone", "get out", "go out", "will", "forget", "allow for", "lead", "leaving"]}, {"answer": "lecture", "hint": "synonyms for lecture", "clues": ["call down", "chew up", "lambaste", "reproof", "talk", "take to task", "jaw", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "lecture"]}, {"answer": "lecturing", "hint": "synonyms for lecturing", "clues": ["call down", "chew up", "lambaste", "reproof", "talk", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "lecturing"]}, {"answer": "led", "hint": "synonyms for led", "clues": ["guide", "go", "conduce", "top", "head", "direct", "result", "precede", "chair", "leave", "take", "run", "extend", "contribute", "lead", "moderate", "pass"]}, {"answer": "lending", "hint": "synonyms for lending", "clues": ["contribute", "bestow", "lend", "add", "loan", "impart", "bring"]}, {"answer": "lent", "hint": "synonyms for lent", "clues": ["contribute", "bestow", "lend", "add", "loan", "impart", "bring", "lent"]}, {"answer": "lessening", "hint": "synonyms for lessening", "clues": ["fall", "diminish", "decrease", "lessen", "minify", "subside"]}, {"answer": "let", "hint": "synonyms for let", "clues": ["rent", "permit", "countenance", "get", "lease", "have", "allow", "let"]}, {"answer": "letting", "hint": "synonyms for letting", "clues": ["rent", "countenance", "let", "have", "permit", "get", "lease", "allow", "letting"]}, {"answer": "leveling", "hint": "synonyms for leveling", "clues": ["take down", "level", "dismantle", "flush", "pull down", "raze", "tear down", "level off", "even out", "point", "even", "charge", "rase"]}, {"answer": "lever", "hint": "synonyms for lever", "clues": ["jimmy", "prize", "pry", "prise", "lever"]}, {"answer": "lick", "hint": "synonyms for lick", "clues": ["clobber", "work out", "drub", "lap", "puzzle out", "thrash", "lap up", "figure out", "bat", "work", "solve", "cream", "lick"]}, {"answer": "licking", "hint": "synonyms for licking", "clues": ["clobber", "work out", "lick", "drub", "lap", "puzzle out", "thrash", "lap up", "figure out", "bat", "work", "solve", "cream"]}, {"answer": "lie", "hint": "synonyms for lie", "clues": ["lie down", "lie in", "dwell", "consist", "rest", "lie"]}, {"answer": "lied", "hint": "synonyms for lied", "clues": ["lie down", "lie", "lie in", "dwell", "consist", "rest"]}, {"answer": "lift", "hint": "synonyms for lift", "clues": ["countermand", "come up", "abstract", "wind", "rise", "revoke", "annul", "rear", "filch", "hook", "go up", "pinch", "sneak", "plagiarise", "swipe", "rustle", "face-lift", "uprise", "get up", "nobble", "elevate", "move up", "reverse", "bring up", "overturn", "pilfer", "vacate", "rescind", "purloin", "cabbage", "repeal", "snarf", "hoist", "airlift", "lift"]}, {"answer": "lightening", "hint": "synonyms for lightening", "clues": ["relieve", "lighten", "brighten", "lighten up", "buoy up"]}, {"answer": "lighting", "hint": "synonyms for lighting", "clues": ["light up", "fall", "light", "get off", "illume", "unhorse", "illuminate", "fire up", "get down", "perch", "dismount", "ignite"]}, {"answer": "limit", "hint": "synonyms for limit", "clues": ["confine", "determine", "specify", "set", "define", "circumscribe", "fix", "trammel", "bound", "restrain", "throttle", "restrict", "limit"]}, {"answer": "limning", "hint": "synonyms for limning", "clues": ["delineate", "portray", "limn", "outline", "depict"]}, {"answer": "limping", "hint": "synonyms for limping", "clues": ["gimp", "hobble", "hitch", "limp"]}, {"answer": "line", "hint": "synonyms for line", "clues": ["delineate", "run along", "draw", "describe", "trace", "line"]}, {"answer": "lingering", "hint": "synonyms for lingering", "clues": ["mess about", "lallygag", "loaf", "loiter", "lurk", "linger", "footle", "tarry", "dawdle", "mill around", "mill about", "hang around", "hover", "lounge"]}, {"answer": "lining", "hint": "synonyms for lining", "clues": ["line", "delineate", "run along", "draw", "describe", "trace", "lining"]}, {"answer": "link", "hint": "synonyms for link", "clues": ["yoke", "join", "relate", "associate", "link up", "connect", "unite", "tie", "colligate", "tie in", "link"]}, {"answer": "links", "hint": "synonyms for links", "clues": ["yoke", "link", "join", "relate", "associate", "link up", "connect", "unite", "tie", "colligate", "tie in"]}, {"answer": "list", "hint": "synonyms for list", "clues": ["number", "heel", "lean", "name", "list"]}, {"answer": "listening", "hint": "synonyms for listening", "clues": ["mind", "hear", "take heed", "listen", "heed"]}, {"answer": "listing", "hint": "synonyms for listing", "clues": ["number", "lean", "name", "list", "heel"]}, {"answer": "liveness", "hint": "synonyms for liveness", "clues": ["liven up", "liven", "animate", "enliven", "invigorate", "liveness"]}, {"answer": "load", "hint": "synonyms for load", "clues": ["stretch", "adulterate", "dilute", "load up", "debase", "lade", "charge", "load"]}, {"answer": "loading", "hint": "synonyms for loading", "clues": ["load", "stretch", "adulterate", "dilute", "load up", "debase", "lade", "charge"]}, {"answer": "loads", "hint": "synonyms for loads", "clues": ["load", "stretch", "adulterate", "dilute", "load up", "debase", "lade", "charge"]}, {"answer": "loaf", "hint": "synonyms for loaf", "clues": ["loll around", "fuck off", "arse about", "lounge around", "lallygag", "frig around", "tarry", "mill around", "mill about", "lounge", "arse around", "bum", "mess about", "loiter", "bum about", "lurk", "linger", "loll", "lounge about", "footle", "bum around", "waste one's time", "hang around", "loaf"]}, {"answer": "loafing", "hint": "synonyms for loafing", "clues": ["loll around", "fuck off", "arse about", "lounge around", "lallygag", "frig around", "tarry", "mill around", "mill about", "lounge", "arse around", "bum", "mess about", "loiter", "loaf", "bum about", "lurk", "linger", "loll", "lounge about", "footle", "bum around", "waste one's time", "hang around"]}, {"answer": "loathing", "hint": "synonyms for loathing", "clues": ["execrate", "abhor", "abominate", "loathe", "loathing"]}, {"answer": "locating", "hint": "synonyms for locating", "clues": ["locate", "site", "place", "situate", "turn up", "settle", "locating"]}, {"answer": "lock", "hint": "synonyms for lock", "clues": ["lock in", "operate", "interlock", "interlace", "engage", "shut away", "lock up", "lock away", "put away", "mesh", "shut up", "lock"]}, {"answer": "locking", "hint": "synonyms for locking", "clues": ["lock", "lock in", "operate", "interlock", "interlace", "engage", "lock up", "shut away", "lock away", "put away", "mesh", "shut up"]}, {"answer": "lodge", "hint": "synonyms for lodge", "clues": ["accommodate", "charge", "wedge", "deposit", "file", "stick", "lodge"]}, {"answer": "lodging", "hint": "synonyms for lodging", "clues": ["file", "charge", "accommodate", "wedge", "deposit", "lodge", "stick", "lodging"]}, {"answer": "lodgings", "hint": "synonyms for lodgings", "clues": ["file", "charge", "accommodate", "wedge", "deposit", "lodge", "stick", "lodgings"]}, {"answer": "look", "hint": "synonyms for look", "clues": ["appear", "search", "depend", "front", "face", "reckon", "attend", "seem", "expect", "take care", "await", "calculate", "bet", "count", "look"]}, {"answer": "loom", "hint": "synonyms for loom", "clues": ["tower", "hover", "hulk", "brood", "predominate", "bulk large", "loom"]}, {"answer": "looping", "hint": "synonyms for looping", "clues": ["intertwine", "loop", "coil", "curl"]}, {"answer": "looseness", "hint": "synonyms for looseness", "clues": ["loosen", "tease apart", "relax", "untie", "tease", "undo", "looseness"]}, {"answer": "loosening", "hint": "synonyms for loosening", "clues": ["loosen", "tease apart", "relax", "untie", "tease", "undo"]}, {"answer": "loot", "hint": "synonyms for loot", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "reave", "loot"]}, {"answer": "looting", "hint": "synonyms for looting", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "losings", "hint": "synonyms for losings", "clues": ["misplace", "lose", "drop off", "suffer", "turn a loss", "fall back", "recede", "fall behind", "mislay", "miss", "losings"]}, {"answer": "lot", "hint": "synonyms for lot", "clues": ["dispense", "administer", "allot", "mete out", "shell out", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "lot"]}, {"answer": "lounge", "hint": "synonyms for lounge", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge"]}, {"answer": "love", "hint": "synonyms for love", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "get it on", "eff", "screw", "jazz", "know", "get laid", "enjoy", "have it away", "do it", "fuck", "lie with", "make love", "love"]}, {"answer": "lower", "hint": "synonyms for lower", "clues": ["turn down", "take down", "bring down", "lour", "frown", "get down", "glower", "depress"]}, {"answer": "lug", "hint": "synonyms for lug", "clues": ["choke up", "block", "tote", "tug", "stuff", "lug"]}, {"answer": "luging", "hint": "synonyms for luging", "clues": ["choke up", "toboggan", "tug", "block", "luge", "tote", "stuff", "luging"]}, {"answer": "lull", "hint": "synonyms for lull", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull"]}, {"answer": "lurch", "hint": "synonyms for lurch", "clues": ["careen", "reel", "skunk", "swag", "shift", "prowl", "keel", "pitch", "stagger", "lurch"]}, {"answer": "lust", "hint": "synonyms for lust", "clues": ["crave", "hunger", "starve", "thirst", "lust"]}, {"answer": "lying", "hint": "synonyms for lying", "clues": ["lie down", "lie", "lie in", "dwell", "consist", "rest", "lying"]}, {"answer": "mailing", "hint": "synonyms for mailing", "clues": ["send", "post", "get off", "mail"]}, {"answer": "make", "hint": "synonyms for make", "clues": ["make water", "stimulate", "cause", "pee", "clear", "stool", "fix", "get", "ca-ca", "establish", "wee", "constitute", "shit", "progress to", "pull in", "gain", "lay down", "take a crap", "arrive at", "make believe", "puddle", "take a leak", "create", "take", "seduce", "piss", "reach", "produce", "name", "hold", "prepare", "spend a penny", "piddle", "pretend", "earn", "crap", "attain", "form", "draw", "have", "take a shit", "defecate", "realise", "induce", "nominate", "ready", "take in", "urinate", "relieve oneself", "throw", "make up", "wee-wee", "pee-pee", "score", "build", "pass water", "give", "construct", "micturate", "do", "cook", "work", "get to", "bring in", "make"]}, {"answer": "making", "hint": "synonyms for making", "clues": ["make water", "stimulate", "cause", "pee", "clear", "stool", "fix", "get", "ca-ca", "establish", "wee", "constitute", "shit", "progress to", "pull in", "gain", "lay down", "take a crap", "arrive at", "make believe", "puddle", "take a leak", "create", "take", "seduce", "piss", "reach", "produce", "name", "hold", "prepare", "spend a penny", "piddle", "pretend", "earn", "crap", "attain", "form", "draw", "have", "take a shit", "defecate", "realise", "induce", "nominate", "ready", "take in", "urinate", "relieve oneself", "throw", "make up", "make", "wee-wee", "pass water", "score", "build", "pee-pee", "give", "construct", "micturate", "do", "cook", "work", "get to", "bring in", "making"]}, {"answer": "maneuver", "hint": "synonyms for maneuver", "clues": ["guide", "channelize", "steer", "operate", "head", "point", "direct", "manoeuvre", "maneuver"]}, {"answer": "mangle", "hint": "synonyms for mangle", "clues": ["maul", "cut up", "murder", "mutilate", "mangle"]}, {"answer": "manoeuvre", "hint": "synonyms for manoeuvre", "clues": ["guide", "channelize", "steer", "operate", "head", "maneuver", "point", "direct", "manoeuvre"]}, {"answer": "manufacture", "hint": "synonyms for manufacture", "clues": ["construct", "invent", "fabricate", "make up", "cook up", "manufacture"]}, {"answer": "manufacturing", "hint": "synonyms for manufacturing", "clues": ["invent", "make up", "cook up", "manufacture", "construct", "fabricate", "manufacturing"]}, {"answer": "mar", "hint": "synonyms for mar", "clues": ["spoil", "impair", "vitiate", "deflower", "mutilate", "mar"]}, {"answer": "march", "hint": "synonyms for march", "clues": ["abut", "butt", "demonstrate", "adjoin", "butt against", "border", "exhibit", "process", "butt on", "parade", "edge", "march"]}, {"answer": "marches", "hint": "synonyms for marches", "clues": ["march", "abut", "butt", "demonstrate", "adjoin", "butt against", "border", "exhibit", "process", "butt on", "parade", "edge"]}, {"answer": "marching", "hint": "synonyms for marching", "clues": ["march", "abut", "butt", "demonstrate", "adjoin", "butt against", "border", "exhibit", "process", "butt on", "parade", "edge"]}, {"answer": "mark", "hint": "synonyms for mark", "clues": ["cross off", "label", "pit", "strike off", "strike out", "punctuate", "differentiate", "scar", "tick", "notice", "nock", "distinguish", "brand", "set", "commemorate", "tag", "check off", "note", "denounce", "score", "cross out", "check", "tick off", "mark off", "grade", "pock", "stigmatize", "mark"]}, {"answer": "marking", "hint": "synonyms for marking", "clues": ["cross off", "label", "pit", "strike off", "strike out", "punctuate", "differentiate", "scar", "tick", "notice", "mark", "nock", "distinguish", "brand", "commemorate", "tag", "set", "check off", "note", "denounce", "score", "cross out", "check", "mark off", "tick off", "grade", "pock", "stigmatize"]}, {"answer": "marks", "hint": "synonyms for marks", "clues": ["cross off", "label", "pit", "strike off", "strike out", "punctuate", "differentiate", "scar", "tick", "notice", "mark", "nock", "distinguish", "brand", "commemorate", "tag", "set", "check off", "note", "denounce", "score", "cross out", "check", "mark off", "tick off", "grade", "pock", "stigmatize"]}, {"answer": "mars", "hint": "synonyms for mars", "clues": ["spoil", "mar", "impair", "vitiate", "deflower", "mutilate"]}, {"answer": "mash", "hint": "synonyms for mash", "clues": ["bray", "crunch", "grind", "squelch", "flirt", "romance", "comminute", "dally", "squash", "coquet", "butterfly", "squeeze", "crush", "chat up", "philander", "mash"]}, {"answer": "mask", "hint": "synonyms for mask", "clues": ["cloak", "block out", "disguise", "dissemble", "mask"]}, {"answer": "masking", "hint": "synonyms for masking", "clues": ["cloak", "dissemble", "disguise", "block out", "mask"]}, {"answer": "mastering", "hint": "synonyms for mastering", "clues": ["control", "get over", "dominate", "master", "surmount", "overcome", "subdue", "get the hang"]}, {"answer": "mastermind", "hint": "synonyms for mastermind", "clues": ["organise", "orchestrate", "engineer", "direct", "mastermind"]}, {"answer": "masters", "hint": "synonyms for masters", "clues": ["control", "get over", "dominate", "master", "surmount", "overcome", "subdue", "get the hang"]}, {"answer": "match", "hint": "synonyms for match", "clues": ["pit", "gibe", "play off", "touch", "rival", "tally", "twin", "oppose", "equalize", "mate", "fit", "couple", "equate", "meet", "cope with", "agree", "correspond", "check", "equal", "jibe", "pair", "match"]}, {"answer": "mate", "hint": "synonyms for mate", "clues": ["copulate", "pair", "match", "twin", "checkmate", "couple", "mate"]}, {"answer": "mates", "hint": "synonyms for mates", "clues": ["copulate", "mate", "pair", "match", "tangle", "felt up", "felt", "matt-up", "mat up", "checkmate", "twin", "snarl", "couple"]}, {"answer": "mating", "hint": "synonyms for mating", "clues": ["copulate", "mate", "pair", "match", "tangle", "felt up", "felt", "matt-up", "mat up", "checkmate", "twin", "snarl", "couple", "mating"]}, {"answer": "matting", "hint": "synonyms for matting", "clues": ["tangle", "felt up", "felt", "mat", "matt-up", "mat up", "snarl", "matte", "matting"]}, {"answer": "meander", "hint": "synonyms for meander", "clues": ["weave", "thread", "wander", "wind", "meander"]}, {"answer": "means", "hint": "synonyms for means", "clues": ["think of", "mean", "signify", "think", "entail", "stand for", "intend", "imply", "have in mind"]}, {"answer": "measure", "hint": "synonyms for measure", "clues": ["mensurate", "value", "quantify", "valuate", "measure out", "assess", "appraise", "measure"]}, {"answer": "measuring", "hint": "synonyms for measuring", "clues": ["mensurate", "value", "quantify", "valuate", "measure out", "assess", "appraise", "measure", "measuring"]}, {"answer": "meeting", "hint": "synonyms for meeting", "clues": ["take on", "encounter", "match", "run across", "gather", "get together", "fulfill", "suffer", "touch", "receive", "satisfy", "fit", "adjoin", "meet", "cope with", "contact", "forgather", "converge", "fill", "come across", "see", "run into", "play", "conform to", "assemble"]}, {"answer": "meld", "hint": "synonyms for meld", "clues": ["blend", "mix", "immix", "commingle", "merge", "conflate", "melt", "combine", "coalesce", "fuse", "flux", "meld"]}, {"answer": "melt", "hint": "synonyms for melt", "clues": ["dethaw", "unfreeze", "evaporate", "mellow out", "meld", "thaw", "run", "unthaw", "mellow", "melt down", "fade", "disappear", "dissolve", "melt"]}, {"answer": "menace", "hint": "synonyms for menace", "clues": ["imperil", "jeopardise", "threaten", "peril", "endanger", "menace"]}, {"answer": "mend", "hint": "synonyms for mend", "clues": ["doctor", "fix", "restore", "touch on", "heal", "bushel", "repair", "furbish up", "mend"]}, {"answer": "mending", "hint": "synonyms for mending", "clues": ["mend", "touch on", "heal", "furbish up", "doctor", "fix", "restore", "bushel", "repair"]}, {"answer": "mention", "hint": "synonyms for mention", "clues": ["note", "refer", "cite", "bring up", "observe", "remark", "name", "advert", "mention"]}, {"answer": "mesh", "hint": "synonyms for mesh", "clues": ["enmesh", "lock", "ensnarl", "operate", "interlock", "engage", "mesh"]}, {"answer": "meshing", "hint": "synonyms for meshing", "clues": ["enmesh", "lock", "ensnarl", "engage", "operate", "interlock", "mesh"]}, {"answer": "mind", "hint": "synonyms for mind", "clues": ["take care", "bear in mind", "listen", "heed", "beware", "mind"]}, {"answer": "mingling", "hint": "synonyms for mingling", "clues": ["unify", "mix", "commix", "jumble", "amalgamate", "mingle", "mingling"]}, {"answer": "mire", "hint": "synonyms for mire", "clues": ["mud", "bog down", "grind to a halt", "muck up", "muck", "get stuck", "entangle", "mire"]}, {"answer": "misconduct", "hint": "synonyms for misconduct", "clues": ["misdemean", "misbehave", "mishandle", "mismanage", "misconduct"]}, {"answer": "miss", "hint": "synonyms for miss", "clues": ["escape", "lose", "drop", "overleap", "pretermit", "leave out", "neglect", "lack", "overlook", "omit", "miss"]}, {"answer": "mist", "hint": "synonyms for mist", "clues": ["cloud", "haze over", "befog", "fog", "obnubilate", "obscure", "mist over", "becloud", "mist"]}, {"answer": "mistaking", "hint": "synonyms for mistaking", "clues": ["mistake", "slip", "misidentify", "err", "mistaking"]}, {"answer": "misunderstanding", "hint": "synonyms for misunderstanding", "clues": ["be amiss", "misconceive", "misinterpret", "misapprehend", "misunderstand", "misconstrue"]}, {"answer": "mix", "hint": "synonyms for mix", "clues": ["immix", "meld", "desegregate", "unify", "shuffle", "coalesce", "fuse", "ruffle", "blend", "commix", "commingle", "merge", "integrate", "amalgamate", "mingle", "combine", "mix in", "conflate", "flux", "mix"]}, {"answer": "mixing", "hint": "synonyms for mixing", "clues": ["mix", "immix", "meld", "desegregate", "unify", "shuffle", "coalesce", "fuse", "ruffle", "blend", "commix", "commingle", "merge", "integrate", "amalgamate", "mingle", "combine", "mix in", "conflate", "flux"]}, {"answer": "mob", "hint": "synonyms for mob", "clues": ["pack", "throng", "pile", "jam", "mob"]}, {"answer": "modeling", "hint": "synonyms for modeling", "clues": ["sit", "mold", "model", "mock up", "simulate", "pattern", "pose", "posture"]}, {"answer": "modelling", "hint": "synonyms for modelling", "clues": ["sit", "mold", "model", "mock up", "simulate", "pattern", "pose", "posture", "modelling"]}, {"answer": "moistening", "hint": "synonyms for moistening", "clues": ["dampen", "drizzle", "wash", "moisten"]}, {"answer": "mold", "hint": "synonyms for mold", "clues": ["determine", "form", "forge", "model", "regulate", "influence", "cast", "mould", "work", "shape", "mildew"]}, {"answer": "molding", "hint": "synonyms for molding", "clues": ["determine", "form", "forge", "model", "regulate", "influence", "cast", "mould", "work", "shape", "mildew", "molding"]}, {"answer": "mollycoddle", "hint": "synonyms for mollycoddle", "clues": ["baby", "cocker", "pamper", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle"]}, {"answer": "molt", "hint": "synonyms for molt", "clues": ["shed", "slough", "exuviate", "moult"]}, {"answer": "molting", "hint": "synonyms for molting", "clues": ["exuviate", "shed", "molt", "slough"]}, {"answer": "monger", "hint": "synonyms for monger", "clues": ["peddle", "pitch", "vend", "huckster", "hawk", "monger"]}, {"answer": "monkey", "hint": "synonyms for monkey", "clues": ["muck around", "tamper", "mess around", "potter", "putter", "muck about", "fiddle", "monkey around", "tinker", "monkey"]}, {"answer": "mooch", "hint": "synonyms for mooch", "clues": ["grub", "sponge", "bum", "cadge", "mooch"]}, {"answer": "mooring", "hint": "synonyms for mooring", "clues": ["tie up", "wharf", "moor", "berth"]}, {"answer": "mop", "hint": "synonyms for mop", "clues": ["wipe up", "pout", "mop up", "mow", "mop"]}, {"answer": "mop_up", "hint": "synonyms for mop up", "clues": ["worst", "wrap up", "finish up", "polish off", "clear up", "wipe up", "finish off", "rack up", "whip", "get through", "mop", "pip", "mop up"]}, {"answer": "moped", "hint": "synonyms for moped", "clues": ["pout", "mop up", "mope", "mow", "wipe up", "mope around", "moon around", "moon about"]}, {"answer": "mopes", "hint": "synonyms for mopes", "clues": ["pout", "mop up", "mope", "mow", "wipe up", "mope around", "moon around", "moon about"]}, {"answer": "mopping", "hint": "synonyms for mopping", "clues": ["wipe up", "pout", "mop up", "mop", "mow", "mopping"]}, {"answer": "moralizing", "hint": "synonyms for moralizing", "clues": ["preachify", "sermonize", "moralise", "moralizing"]}, {"answer": "mother", "hint": "synonyms for mother", "clues": ["get", "sire", "fuss", "engender", "generate", "bring forth", "overprotect", "beget", "father", "mother"]}, {"answer": "mottle", "hint": "synonyms for mottle", "clues": ["cloud", "blotch", "streak", "dapple", "mottle"]}, {"answer": "mottling", "hint": "synonyms for mottling", "clues": ["mottle", "cloud", "blotch", "dapple", "streak", "mottling"]}, {"answer": "mould", "hint": "synonyms for mould", "clues": ["form", "forge", "model", "cast", "shape", "work", "mold"]}, {"answer": "moulding", "hint": "synonyms for moulding", "clues": ["form", "forge", "model", "cast", "mould", "work", "shape"]}, {"answer": "moult", "hint": "synonyms for moult", "clues": ["molt", "slough", "exuviate", "shed"]}, {"answer": "moulting", "hint": "synonyms for moulting", "clues": ["exuviate", "shed", "molt", "slough", "moulting"]}, {"answer": "mount", "hint": "synonyms for mount", "clues": ["climb up", "ride", "mount up", "bestride", "get on", "rise", "put on", "climb", "hop on", "wax", "go up", "jump on", "climb on", "mount"]}, {"answer": "mounting", "hint": "synonyms for mounting", "clues": ["climb up", "ride", "mount up", "mount", "bestride", "rise", "get on", "climb", "put on", "hop on", "wax", "go up", "jump on", "climb on"]}, {"answer": "mouth", "hint": "synonyms for mouth", "clues": ["speak", "utter", "verbalise", "talk", "mouth"]}, {"answer": "move", "hint": "synonyms for move", "clues": ["impress", "act", "prompt", "go", "make a motion", "actuate", "travel", "run", "displace", "incite", "be active", "locomote", "strike", "affect", "motivate", "propel", "proceed", "move"]}, {"answer": "muck", "hint": "synonyms for muck", "clues": ["mud", "muck up", "manure", "mire", "muck"]}, {"answer": "muff", "hint": "synonyms for muff", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "muff"]}, {"answer": "muffle", "hint": "synonyms for muffle", "clues": ["dull", "smother", "tone down", "stifle", "dampen", "mute", "damp", "repress", "strangle", "muffle"]}, {"answer": "mulct", "hint": "synonyms for mulct", "clues": ["rook", "bunco", "defraud", "victimize", "gyp", "hornswoggle", "diddle", "nobble", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "mulct"]}, {"answer": "mull", "hint": "synonyms for mull", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "speculate", "mull over", "think over", "ruminate", "chew over", "excogitate", "mull"]}, {"answer": "mumble", "hint": "synonyms for mumble", "clues": ["mutter", "mussitate", "maunder", "gum", "mumble"]}, {"answer": "mumbling", "hint": "synonyms for mumbling", "clues": ["mutter", "maunder", "gum", "mumble", "mussitate", "mumbling"]}, {"answer": "murder", "hint": "synonyms for murder", "clues": ["remove", "bump off", "polish off", "hit", "off", "mutilate", "mangle", "slay", "dispatch", "murder"]}, {"answer": "murderess", "hint": "synonyms for murderess", "clues": ["remove", "bump off", "hit", "polish off", "off", "mutilate", "mangle", "murder", "slay", "dispatch", "murderess"]}, {"answer": "murmur", "hint": "synonyms for murmur", "clues": ["mutter", "grumble", "gnarl", "croak", "murmur"]}, {"answer": "muse", "hint": "synonyms for muse", "clues": ["reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "think over", "ruminate", "chew over", "excogitate", "muse"]}, {"answer": "muster", "hint": "synonyms for muster", "clues": ["muster up", "rally", "come up", "summon", "muster"]}, {"answer": "mutter", "hint": "synonyms for mutter", "clues": ["grumble", "gnarl", "croak", "maunder", "mumble", "mussitate", "murmur", "mutter"]}, {"answer": "muttering", "hint": "synonyms for muttering", "clues": ["gnarl", "croak", "mussitate", "mutter", "grumble", "maunder", "mumble", "murmur"]}, {"answer": "nail", "hint": "synonyms for nail", "clues": ["sweep through", "collar", "apprehend", "smash", "ace", "sail through", "blast", "complete", "pick up", "arrest", "nail down", "pass with flying colors", "breeze through", "boom", "cop", "nab", "pinpoint", "peg", "nail"]}, {"answer": "name", "hint": "synonyms for name", "clues": ["make", "identify", "mention", "refer", "call", "cite", "key out", "key", "list", "diagnose", "bring up", "discover", "nominate", "advert", "appoint", "distinguish", "describe", "constitute", "name"]}, {"answer": "names", "hint": "synonyms for names", "clues": ["key out", "list", "key", "nominate", "advert", "appoint", "distinguish", "describe", "constitute", "identify", "make", "mention", "refer", "call", "cite", "bring up", "discover", "name", "diagnose"]}, {"answer": "nark", "hint": "synonyms for nark", "clues": ["annoy", "nettle", "devil", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother", "nark"]}, {"answer": "need", "hint": "synonyms for need", "clues": ["want", "postulate", "ask", "take", "necessitate", "demand", "require", "involve", "call for", "need"]}, {"answer": "neglect", "hint": "synonyms for neglect", "clues": ["disregard", "drop", "overleap", "pretermit", "leave out", "fail", "overlook", "omit", "ignore", "miss", "neglect"]}, {"answer": "nest", "hint": "synonyms for nest", "clues": ["cuddle", "nuzzle", "draw close", "nestle", "snuggle", "nest"]}, {"answer": "nestle", "hint": "synonyms for nestle", "clues": ["cuddle", "nuzzle", "nest", "draw close", "snuggle", "nestle"]}, {"answer": "nestling", "hint": "synonyms for nestling", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle", "nestling"]}, {"answer": "netting", "hint": "synonyms for netting", "clues": ["nett", "sack", "sack up", "web", "clear"]}, {"answer": "nettle", "hint": "synonyms for nettle", "clues": ["urticate", "annoy", "devil", "nark", "gravel", "vex", "rile", "get at", "get to", "chafe", "irritate", "rag", "bother", "nettle"]}, {"answer": "neutering", "hint": "synonyms for neutering", "clues": ["spay", "neuter", "alter", "castrate"]}, {"answer": "nip", "hint": "synonyms for nip", "clues": ["clip", "twitch", "twinge", "snip off", "snip", "tweet", "squeeze", "pinch"]}, {"answer": "nix", "hint": "synonyms for nix", "clues": ["interdict", "veto", "prohibit", "disallow", "forbid", "proscribe", "nix"]}, {"answer": "nose", "hint": "synonyms for nose", "clues": ["intrude", "pry", "scent", "wind", "nuzzle", "poke", "horn in", "nose"]}, {"answer": "note", "hint": "synonyms for note", "clues": ["take note", "observe", "notice", "remark", "mark", "mention", "take down", "note"]}, {"answer": "notice", "hint": "synonyms for notice", "clues": ["note", "acknowledge", "comment", "discover", "observe", "remark", "mark", "point out", "find", "detect", "notice"]}, {"answer": "nuke", "hint": "synonyms for nuke", "clues": ["atomize", "micro-cook", "microwave", "atom-bomb", "zap", "nuke"]}, {"answer": "number", "hint": "synonyms for number", "clues": ["total", "list", "amount", "add up", "keep down", "come", "enumerate", "count", "number"]}, {"answer": "numbering", "hint": "synonyms for numbering", "clues": ["total", "list", "amount", "add up", "keep down", "come", "number", "enumerate", "count"]}, {"answer": "numbers", "hint": "synonyms for numbers", "clues": ["total", "list", "amount", "add up", "keep down", "come", "number", "enumerate", "count"]}, {"answer": "nurse", "hint": "synonyms for nurse", "clues": ["harbor", "suckle", "entertain", "breastfeed", "wet-nurse", "give suck", "suck", "hold", "lactate", "nurse"]}, {"answer": "nursing", "hint": "synonyms for nursing", "clues": ["nurse", "harbor", "suckle", "entertain", "breastfeed", "wet-nurse", "give suck", "suck", "hold", "lactate", "nursing"]}, {"answer": "nurture", "hint": "synonyms for nurture", "clues": ["parent", "nourish", "sustain", "foster", "raise", "rear", "bring up", "nurture"]}, {"answer": "offer", "hint": "synonyms for offer", "clues": ["proffer", "pop the question", "provide", "propose", "offer up", "extend", "put up", "bid", "declare oneself", "volunteer", "tender", "offer"]}, {"answer": "offering", "hint": "synonyms for offering", "clues": ["proffer", "pop the question", "offer", "provide", "propose", "offer up", "extend", "put up", "bid", "declare oneself", "volunteer", "tender"]}, {"answer": "offing", "hint": "synonyms for offing", "clues": ["remove", "bump off", "hit", "polish off", "off", "murder", "slay", "dispatch"]}, {"answer": "oil", "hint": "synonyms for oil", "clues": ["anele", "inunct", "anoint", "embrocate", "oil"]}, {"answer": "omen", "hint": "synonyms for omen", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure", "omen"]}, {"answer": "ooze", "hint": "synonyms for ooze", "clues": ["seep", "exude", "ooze out", "exudate", "transude", "ooze"]}, {"answer": "order", "hint": "synonyms for order", "clues": ["ordinate", "consecrate", "rank", "regularize", "enjoin", "regulate", "put", "range", "rate", "place", "prescribe", "govern", "arrange", "say", "tell", "set up", "grade", "ordain", "dictate", "order"]}, {"answer": "ordering", "hint": "synonyms for ordering", "clues": ["ordinate", "consecrate", "rank", "regularize", "enjoin", "regulate", "put", "range", "rate", "place", "prescribe", "govern", "arrange", "say", "order", "tell", "set up", "grade", "ordain", "dictate"]}, {"answer": "ordinate", "hint": "synonyms for ordinate", "clues": ["align", "consecrate", "order", "ordain", "coordinate"]}, {"answer": "ornament", "hint": "synonyms for ornament", "clues": ["beautify", "grace", "decorate", "embellish", "adorn", "ornament"]}, {"answer": "ousting", "hint": "synonyms for ousting", "clues": ["drum out", "boot out", "expel", "kick out", "throw out", "oust"]}, {"answer": "outcry", "hint": "synonyms for outcry", "clues": ["cry out", "call out", "exclaim", "outshout", "cry", "shout", "outcry"]}, {"answer": "outfitting", "hint": "synonyms for outfitting", "clues": ["fit out", "equip", "outfit", "fit", "outfitting"]}, {"answer": "outgo", "hint": "synonyms for outgo", "clues": ["exceed", "outmatch", "surpass", "outperform", "outdo", "outstrip", "surmount", "outgo"]}, {"answer": "outline", "hint": "synonyms for outline", "clues": ["delineate", "limn", "sketch", "adumbrate", "draft", "outline"]}, {"answer": "outrage", "hint": "synonyms for outrage", "clues": ["appall", "rape", "offend", "shock", "assault", "dishonour", "scandalise", "violate", "desecrate", "ravish", "profane", "outrage"]}, {"answer": "overacting", "hint": "synonyms for overacting", "clues": ["overplay", "overact", "ham", "ham it up"]}, {"answer": "overcharge", "hint": "synonyms for overcharge", "clues": ["soak", "plume", "overload", "fleece", "pluck", "rob", "gazump", "surcharge", "hook", "overcharge"]}, {"answer": "overeating", "hint": "synonyms for overeating", "clues": ["gormandize", "ingurgitate", "binge", "glut", "englut", "engorge", "pig out", "overgorge", "satiate", "overeat", "overindulge", "scarf out", "gorge", "stuff"]}, {"answer": "overflow", "hint": "synonyms for overflow", "clues": ["run over", "well over", "brim over", "spill over", "overrun", "bubble over", "overflow"]}, {"answer": "overhaul", "hint": "synonyms for overhaul", "clues": ["modernize", "pass", "overtake", "overhaul"]}, {"answer": "overlook", "hint": "synonyms for overlook", "clues": ["miss", "dominate", "overtop", "drop", "overleap", "command", "pretermit", "leave out", "neglect", "look out on", "look across", "omit", "look out over", "overlook"]}, {"answer": "override", "hint": "synonyms for override", "clues": ["overthrow", "overrule", "reverse", "overturn", "override"]}, {"answer": "overrun", "hint": "synonyms for overrun", "clues": ["run over", "well over", "brim over", "overflow", "infest", "invade", "overrun"]}, {"answer": "overtaking", "hint": "synonyms for overtaking", "clues": ["overhaul", "catch up with", "overcome", "sweep over", "overpower", "catch", "pass", "overtake", "overwhelm", "whelm", "overtaking"]}, {"answer": "overthrow", "hint": "synonyms for overthrow", "clues": ["override", "bring down", "subvert", "overrule", "reverse", "overturn", "overthrow"]}, {"answer": "overturn", "hint": "synonyms for overturn", "clues": ["countermand", "tump over", "revolutionize", "subvert", "revoke", "annul", "tip over", "lift", "bowl over", "turn over", "knock over", "bring down", "reverse", "vacate", "rescind", "repeal", "overthrow", "upset", "overrule", "override", "overturn"]}, {"answer": "pack", "hint": "synonyms for pack", "clues": ["load down", "bundle", "compact", "mob", "take", "backpack", "pile", "wad", "jam", "tamp", "carry", "throng", "tamp down", "pack"]}, {"answer": "packing", "hint": "synonyms for packing", "clues": ["load down", "bundle", "compact", "pack", "mob", "take", "backpack", "pile", "wad", "jam", "tamp", "carry", "throng", "tamp down"]}, {"answer": "pad", "hint": "synonyms for pad", "clues": ["plod", "dramatize", "aggrandise", "lard", "trudge", "fill out", "bolster", "blow up", "slog", "tramp", "embellish", "footslog", "embroider", "pad"]}, {"answer": "padding", "hint": "synonyms for padding", "clues": ["plod", "dramatize", "aggrandise", "lard", "trudge", "fill out", "bolster", "blow up", "slog", "tramp", "embellish", "footslog", "pad", "embroider", "padding"]}, {"answer": "paddle", "hint": "synonyms for paddle", "clues": ["totter", "toddle", "larrup", "coggle", "dabble", "spank", "waddle", "splash around", "dodder", "paddle"]}, {"answer": "pain", "hint": "synonyms for pain", "clues": ["anguish", "trouble", "hurt", "ail", "pain"]}, {"answer": "pains", "hint": "synonyms for pains", "clues": ["trouble", "anguish", "hurt", "ail", "pain"]}, {"answer": "pair", "hint": "synonyms for pair", "clues": ["copulate", "mate", "couple", "match", "pair off", "twin", "geminate", "partner off", "pair"]}, {"answer": "pairing", "hint": "synonyms for pairing", "clues": ["copulate", "mate", "pair", "match", "pair off", "geminate", "twin", "couple", "partner off"]}, {"answer": "palaver", "hint": "synonyms for palaver", "clues": ["prattle", "chatter", "inveigle", "blarney", "tittle-tattle", "twaddle", "prate", "cajole", "coax", "clack", "gabble", "blab", "blabber", "tattle", "sweet-talk", "gibber", "maunder", "wheedle", "piffle", "palaver"]}, {"answer": "paling", "hint": "synonyms for paling", "clues": ["pal", "blench", "blanch", "pal up", "chum up"]}, {"answer": "palisade", "hint": "synonyms for palisade", "clues": ["fence in", "surround", "fence", "wall", "palisade"]}, {"answer": "pall", "hint": "synonyms for pall", "clues": ["frighten away", "cloy", "frighten off", "scare", "scare away", "jade", "dull", "scare off", "become flat", "fatigue", "weary", "tire", "dash", "die", "daunt", "pall"]}, {"answer": "paltering", "hint": "synonyms for paltering", "clues": ["beat around the bush", "tergiversate", "prevaricate", "equivocate", "palter"]}, {"answer": "pan", "hint": "synonyms for pan", "clues": ["tear apart", "pan off", "trash", "pan out", "pan"]}, {"answer": "pander", "hint": "synonyms for pander", "clues": ["pimp", "procure", "gratify", "indulge", "pander"]}, {"answer": "panting", "hint": "synonyms for panting", "clues": ["pant", "puff", "heave", "gasp"]}, {"answer": "pants", "hint": "synonyms for pants", "clues": ["pant", "puff", "heave", "gasp"]}, {"answer": "parade", "hint": "synonyms for parade", "clues": ["march", "troop", "exhibit", "promenade", "parade"]}, {"answer": "parent", "hint": "synonyms for parent", "clues": ["raise", "nurture", "rear", "bring up", "parent"]}, {"answer": "paring", "hint": "synonyms for paring", "clues": ["pare down", "pare", "skin", "trim", "whittle", "peel", "paring"]}, {"answer": "parry", "hint": "synonyms for parry", "clues": ["circumvent", "dodge", "block", "put off", "evade", "fudge", "deflect", "sidestep", "duck", "elude", "skirt", "hedge", "parry"]}, {"answer": "parting", "hint": "synonyms for parting", "clues": ["break", "set off", "disunite", "break up", "start", "depart", "start out", "divide", "set forth", "set out", "take off", "split up", "separate", "part", "split"]}, {"answer": "parts", "hint": "synonyms for parts", "clues": ["break", "set off", "disunite", "break up", "start", "depart", "start out", "divide", "set forth", "set out", "take off", "split up", "separate", "part", "split"]}, {"answer": "pasture", "hint": "synonyms for pasture", "clues": ["range", "crop", "graze", "browse", "pasture"]}, {"answer": "patronage", "hint": "synonyms for patronage", "clues": ["support", "keep going", "patronize", "patronage"]}, {"answer": "patter", "hint": "synonyms for patter", "clues": ["spit", "sprinkle", "spatter", "pitter-patter"]}, {"answer": "pay", "hint": "synonyms for pay", "clues": ["make up", "compensate", "pay up", "pay off", "bear", "devote", "give", "ante up", "yield", "pay"]}, {"answer": "peach", "hint": "synonyms for peach", "clues": ["babble", "blab", "let the cat out of the bag", "talk", "sing", "spill the beans", "tattle", "blab out", "babble out", "peach"]}, {"answer": "peck", "hint": "synonyms for peck", "clues": ["pick", "pick up", "pick at", "smack", "beak", "hen-peck", "nag", "peck"]}, {"answer": "peddling", "hint": "synonyms for peddling", "clues": ["peddle", "pitch", "vend", "monger", "huckster", "hawk", "peddling"]}, {"answer": "pee", "hint": "synonyms for pee", "clues": ["puddle", "make", "make water", "wee-wee", "pee-pee", "pass water", "take a leak", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "pee"]}, {"answer": "peeing", "hint": "synonyms for peeing", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee"]}, {"answer": "peel", "hint": "synonyms for peel", "clues": ["flake off", "pare", "skin", "flake", "discase", "strip down", "uncase", "strip", "peel off", "unclothe", "disrobe", "undress", "peel"]}, {"answer": "peeling", "hint": "synonyms for peeling", "clues": ["flake off", "pare", "skin", "flake", "discase", "strip down", "uncase", "strip", "peel off", "unclothe", "disrobe", "undress", "peel"]}, {"answer": "pelt", "hint": "synonyms for pelt", "clues": ["pepper", "rain buckets", "stream", "pour", "rain cats and dogs", "bombard", "pelt"]}, {"answer": "pelting", "hint": "synonyms for pelting", "clues": ["rain buckets", "bombard", "pepper", "pelt", "stream", "pour", "rain cats and dogs"]}, {"answer": "penning", "hint": "synonyms for penning", "clues": ["indite", "pen", "compose", "write", "penning"]}, {"answer": "perch", "hint": "synonyms for perch", "clues": ["alight", "roost", "rest", "perch"]}, {"answer": "percolate", "hint": "synonyms for percolate", "clues": ["leach", "gain vigor", "sink in", "permeate", "perk", "pick up", "perk up", "filter", "percolate"]}, {"answer": "peril", "hint": "synonyms for peril", "clues": ["scupper", "jeopardize", "threaten", "queer", "menace", "imperil", "expose", "endanger", "peril"]}, {"answer": "perk", "hint": "synonyms for perk", "clues": ["pick up", "perk up", "percolate", "gain vigor", "perk"]}, {"answer": "permit", "hint": "synonyms for permit", "clues": ["countenance", "let", "tolerate", "allow", "permit"]}, {"answer": "pervert", "hint": "synonyms for pervert", "clues": ["vitiate", "subvert", "debase", "misdirect", "sophisticate", "misuse", "profane", "corrupt", "deprave", "convolute", "demoralise", "twist around", "abuse", "debauch", "twist", "pervert"]}, {"answer": "phone", "hint": "synonyms for phone", "clues": ["call", "ring", "telephone", "call up", "phone"]}, {"answer": "phrase", "hint": "synonyms for phrase", "clues": ["articulate", "formulate", "word", "give voice", "phrase"]}, {"answer": "phrasing", "hint": "synonyms for phrasing", "clues": ["formulate", "give voice", "articulate", "phrase", "word", "phrasing"]}, {"answer": "pick", "hint": "synonyms for pick", "clues": ["nibble", "cull", "foot", "break up", "piece", "pluck", "clean", "peck", "plunk", "beak", "find fault", "blame", "pick"]}, {"answer": "picking", "hint": "synonyms for picking", "clues": ["nibble", "cull", "foot", "break up", "piece", "pluck", "clean", "peck", "pick", "plunk", "beak", "find fault", "blame"]}, {"answer": "pickings", "hint": "synonyms for pickings", "clues": ["nibble", "cull", "foot", "break up", "piece", "pluck", "clean", "peck", "pick", "plunk", "beak", "find fault", "blame", "pickings"]}, {"answer": "picture", "hint": "synonyms for picture", "clues": ["figure", "image", "visualise", "fancy", "depict", "show", "envision", "see", "project", "render", "picture"]}, {"answer": "picturing", "hint": "synonyms for picturing", "clues": ["figure", "image", "visualise", "picture", "fancy", "depict", "show", "envision", "see", "project", "render", "picturing"]}, {"answer": "piddle", "hint": "synonyms for piddle", "clues": ["piddle away", "make water", "pee", "wanton", "urinate", "trifle", "relieve oneself", "wee", "puddle", "make", "wee-wee", "pass water", "pee-pee", "take a leak", "wanton away", "micturate", "spend a penny", "piss", "piddle"]}, {"answer": "piece", "hint": "synonyms for piece", "clues": ["nibble", "patch", "pick", "set up", "tack", "tack together", "put together", "assemble", "piece"]}, {"answer": "piffle", "hint": "synonyms for piffle", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle"]}, {"answer": "pig", "hint": "synonyms for pig", "clues": ["devour", "guttle", "pig it", "farrow", "raven", "pig"]}, {"answer": "pile", "hint": "synonyms for pile", "clues": ["jam", "pack", "throng", "heap", "mob", "stack", "pile"]}, {"answer": "piles", "hint": "synonyms for piles", "clues": ["pack", "heap", "mob", "stack", "pile", "jam", "throng"]}, {"answer": "piling", "hint": "synonyms for piling", "clues": ["pack", "heap", "mob", "stack", "pile", "jam", "throng", "piling"]}, {"answer": "pillage", "hint": "synonyms for pillage", "clues": ["despoil", "rifle", "foray", "ransack", "plunder", "strip", "loot", "reave", "pillage"]}, {"answer": "pillaging", "hint": "synonyms for pillaging", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "loot", "reave", "pillaging"]}, {"answer": "pillory", "hint": "synonyms for pillory", "clues": ["gibbet", "savage", "crucify", "blast", "pillory"]}, {"answer": "pinch", "hint": "synonyms for pinch", "clues": ["abstract", "twitch", "top", "filch", "hook", "squeeze", "sneak", "lift", "swipe", "twinge", "nobble", "crimp", "pilfer", "vellicate", "tweet", "purloin", "cabbage", "snarf", "nip", "pinch"]}, {"answer": "pine", "hint": "synonyms for pine", "clues": ["languish", "yen", "ache", "yearn", "pine"]}, {"answer": "pining", "hint": "synonyms for pining", "clues": ["immobilize", "yearn", "yen", "languish", "ache", "pin", "trap"]}, {"answer": "pinning", "hint": "synonyms for pinning", "clues": ["immobilize", "pin", "trap", "pinning"]}, {"answer": "pip", "hint": "synonyms for pip", "clues": ["shoot", "worst", "rack up", "whip", "hit", "mop up", "pip"]}, {"answer": "piss", "hint": "synonyms for piss", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "relieve oneself", "wee", "piss"]}, {"answer": "pissing", "hint": "synonyms for pissing", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee"]}, {"answer": "pit", "hint": "synonyms for pit", "clues": ["match", "stone", "mark", "pock", "oppose", "play off", "scar", "pit"]}, {"answer": "pitch", "hint": "synonyms for pitch", "clues": ["slant", "vend", "toss", "monger", "gear", "shift", "tilt", "hawk", "peddle", "lurch", "huckster", "deliver", "cant over", "incline", "set up", "cant", "flip", "sky", "slope", "pitch"]}, {"answer": "pitching", "hint": "synonyms for pitching", "clues": ["slant", "vend", "toss", "monger", "gear", "shift", "tilt", "hawk", "peddle", "lurch", "huckster", "deliver", "cant over", "incline", "set up", "cant", "flip", "sky", "pitch", "slope"]}, {"answer": "pitting", "hint": "synonyms for pitting", "clues": ["pit", "match", "stone", "play off", "scar", "mark", "pock", "oppose", "pitting"]}, {"answer": "pity", "hint": "synonyms for pity", "clues": ["condole with", "sympathize with", "compassionate", "feel for", "pity"]}, {"answer": "place", "hint": "synonyms for place", "clues": ["post", "aim", "station", "rank", "commit", "put", "range", "point", "direct", "come out", "pose", "set", "target", "localise", "lay", "rate", "site", "identify", "send", "order", "locate", "come in", "grade", "position", "invest", "place"]}, {"answer": "plague", "hint": "synonyms for plague", "clues": ["chivvy", "chevy", "harass", "harry", "provoke", "hassle", "blight", "beset", "molest", "plague"]}, {"answer": "plan", "hint": "synonyms for plan", "clues": ["be after", "contrive", "project", "design", "plan"]}, {"answer": "plank", "hint": "synonyms for plank", "clues": ["plump", "plank over", "flump", "plunk down", "plonk", "plop", "plunk", "plump down", "plank"]}, {"answer": "planking", "hint": "synonyms for planking", "clues": ["plump", "plank over", "flump", "plunk down", "plonk", "plop", "plunk", "plump down", "plank"]}, {"answer": "planning", "hint": "synonyms for planning", "clues": ["be after", "contrive", "project", "plan", "design", "planning"]}, {"answer": "plant", "hint": "synonyms for plant", "clues": ["imbed", "institute", "engraft", "found", "embed", "set", "establish", "implant", "constitute", "plant"]}, {"answer": "planting", "hint": "synonyms for planting", "clues": ["plant", "imbed", "institute", "engraft", "found", "embed", "set", "establish", "implant", "constitute"]}, {"answer": "plash", "hint": "synonyms for plash", "clues": ["splatter", "swash", "splosh", "splash", "pleach"]}, {"answer": "plaster", "hint": "synonyms for plaster", "clues": ["beplaster", "stick on", "daub", "poultice", "plaster over"]}, {"answer": "plastering", "hint": "synonyms for plastering", "clues": ["daub", "beplaster", "stick on", "poultice", "plaster over", "plastering"]}, {"answer": "play", "hint": "synonyms for play", "clues": ["take on", "encounter", "diddle", "act as", "make for", "wager", "bring", "recreate", "wreak", "trifle", "bet", "playact", "roleplay", "spiel", "act", "meet", "flirt", "run", "represent", "dally", "fiddle", "work", "toy", "play"]}, {"answer": "playacting", "hint": "synonyms for playacting", "clues": ["playact", "play", "act", "roleplay"]}, {"answer": "playing", "hint": "synonyms for playing", "clues": ["take on", "encounter", "diddle", "act as", "make for", "wager", "bring", "recreate", "wreak", "trifle", "bet", "playact", "roleplay", "spiel", "act", "meet", "flirt", "represent", "run", "dally", "fiddle", "work", "toy", "play"]}, {"answer": "pledge", "hint": "synonyms for pledge", "clues": ["wassail", "toast", "plight", "subscribe", "drink", "salute", "pledge"]}, {"answer": "plight", "hint": "synonyms for plight", "clues": ["pledge", "betroth", "engage", "affiance", "plight"]}, {"answer": "plod", "hint": "synonyms for plod", "clues": ["tramp", "footslog", "trudge", "pad", "slog", "plod"]}, {"answer": "plonk", "hint": "synonyms for plonk", "clues": ["plump", "plunk", "flump", "plunk down", "plump down", "plop", "plank", "plonk"]}, {"answer": "plow", "hint": "synonyms for plow", "clues": ["turn", "address", "plough", "treat", "cover", "handle", "deal", "plow"]}, {"answer": "plowing", "hint": "synonyms for plowing", "clues": ["address", "treat", "deal", "turn", "plow", "plough", "cover", "handle"]}, {"answer": "pluck", "hint": "synonyms for pluck", "clues": ["cull", "hustle", "fleece", "pull off", "plunk", "gazump", "tweak", "hook", "roll", "deplume", "tear", "soak", "plume", "rob", "pick", "pull", "overcharge", "displume", "surcharge", "pick off", "pluck"]}, {"answer": "plug", "hint": "synonyms for plug", "clues": ["plug away", "punch", "secure", "stop up", "plug"]}, {"answer": "plume", "hint": "synonyms for plume", "clues": ["preen", "soak", "primp", "fleece", "pluck", "congratulate", "pride", "rob", "overcharge", "gazump", "surcharge", "dress", "hook", "plume"]}, {"answer": "plunder", "hint": "synonyms for plunder", "clues": ["sack", "despoil", "rifle", "spoil", "foray", "rape", "pillage", "ransack", "violate", "strip", "loot", "reave", "plunder"]}, {"answer": "plunge", "hint": "synonyms for plunge", "clues": ["launch", "absorb", "immerse", "steep", "souse", "engross", "dump", "dive", "plunk", "dip", "soak up", "dunk", "douse", "engulf", "plunge"]}, {"answer": "ply", "hint": "synonyms for ply", "clues": ["supply", "cater", "provide", "run", "ply"]}, {"answer": "point", "hint": "synonyms for point", "clues": ["betoken", "guide", "channelize", "steer", "aim", "repoint", "show", "head", "maneuver", "charge", "direct", "taper", "designate", "target", "orient", "place", "luff", "level", "bespeak", "indicate", "sharpen", "manoeuvre", "signal", "point"]}, {"answer": "poke", "hint": "synonyms for poke", "clues": ["jab", "pry", "dig", "horn in", "pound", "prod", "nose", "intrude", "thump", "stab", "poke"]}, {"answer": "poking", "hint": "synonyms for poking", "clues": ["jab", "pry", "dig", "horn in", "pound", "prod", "nose", "thump", "intrude", "poke", "stab", "poking"]}, {"answer": "polishing", "hint": "synonyms for polishing", "clues": ["round", "round off", "shine", "fine-tune", "down", "polish", "smooth", "refine", "brush up", "polish up"]}, {"answer": "popping", "hint": "synonyms for popping", "clues": ["kill", "drink down", "pour down", "start", "bulge out", "crop up", "pop up", "pop", "down", "toss off", "bolt down", "come out", "bulge", "protrude", "pop out", "popping"]}, {"answer": "pore", "hint": "synonyms for pore", "clues": ["rivet", "focus", "concentrate", "center", "centre", "pore"]}, {"answer": "portraying", "hint": "synonyms for portraying", "clues": ["portray", "limn", "impersonate", "depict", "present"]}, {"answer": "pose", "hint": "synonyms for pose", "clues": ["stupefy", "model", "flummox", "gravel", "amaze", "nonplus", "put", "puzzle", "impersonate", "get", "perplex", "baffle", "set", "posture", "dumbfound", "beat", "lay", "sit", "place", "vex", "bewilder", "position", "present", "stick", "mystify", "pose"]}, {"answer": "posing", "hint": "synonyms for posing", "clues": ["stupefy", "model", "flummox", "gravel", "amaze", "nonplus", "put", "puzzle", "impersonate", "get", "pose", "perplex", "set", "posture", "baffle", "dumbfound", "beat", "lay", "sit", "place", "vex", "bewilder", "position", "present", "stick", "mystify", "posing"]}, {"answer": "posit", "hint": "synonyms for posit", "clues": ["submit", "fix", "put forward", "situate", "state", "postulate", "deposit", "posit"]}, {"answer": "position", "hint": "synonyms for position", "clues": ["lay", "place", "put", "pose", "set", "position"]}, {"answer": "post", "hint": "synonyms for post", "clues": ["send", "put up", "place", "mail", "stake", "station", "carry", "brand", "post"]}, {"answer": "posting", "hint": "synonyms for posting", "clues": ["send", "post", "place", "station", "put up", "mail", "stake", "carry", "brand"]}, {"answer": "postulate", "hint": "synonyms for postulate", "clues": ["need", "ask", "take", "necessitate", "demand", "require", "contend", "involve", "posit", "call for", "postulate"]}, {"answer": "posturing", "hint": "synonyms for posturing", "clues": ["sit", "pose", "posture", "model", "posturing"]}, {"answer": "potter", "hint": "synonyms for potter", "clues": ["muck around", "putter around", "monkey", "mess around", "putter", "muck about", "monkey around", "tinker", "potter"]}, {"answer": "pound", "hint": "synonyms for pound", "clues": ["impound", "ram down", "lumber", "pound off", "ram", "thump", "beat", "poke", "pound up", "pound"]}, {"answer": "pounding", "hint": "synonyms for pounding", "clues": ["impound", "ram down", "lumber", "pound", "pound off", "ram", "thump", "beat", "poke", "pound up"]}, {"answer": "pout", "hint": "synonyms for pout", "clues": ["mop", "sulk", "brood", "mow", "pout"]}, {"answer": "practice", "hint": "synonyms for practice", "clues": ["practise", "drill", "exercise", "do", "use", "rehearse", "commit", "apply"]}, {"answer": "prance", "hint": "synonyms for prance", "clues": ["cock", "ruffle", "tittup", "sashay", "strut", "swagger", "prance"]}, {"answer": "prate", "hint": "synonyms for prate", "clues": ["prattle", "palaver", "chatter", "clack", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle", "prate"]}, {"answer": "prattle", "hint": "synonyms for prattle", "clues": ["palaver", "chatter", "clack", "prate", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle", "prattle"]}, {"answer": "premise", "hint": "synonyms for premise", "clues": ["preface", "introduce", "precede", "premiss"]}, {"answer": "premises", "hint": "synonyms for premises", "clues": ["premiss", "preface", "introduce", "precede"]}, {"answer": "presage", "hint": "synonyms for presage", "clues": ["forecast", "betoken", "auspicate", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure", "presage"]}, {"answer": "preserve", "hint": "synonyms for preserve", "clues": ["carry on", "continue", "keep up", "keep", "uphold", "conserve", "bear on", "maintain", "save", "preserve"]}, {"answer": "preserves", "hint": "synonyms for preserves", "clues": ["carry on", "continue", "keep up", "keep", "preserve", "uphold", "conserve", "bear on", "maintain", "save"]}, {"answer": "press", "hint": "synonyms for press", "clues": ["weight-lift", "press out", "compact", "iron out", "conjure", "agitate", "urge on", "bid", "urge", "squeeze", "campaign", "push", "beseech", "iron", "compress", "fight", "adjure", "entreat", "exhort", "crusade", "weigh", "contract", "constrict", "press"]}, {"answer": "pressure", "hint": "synonyms for pressure", "clues": ["hale", "coerce", "blackmail", "squeeze", "blackjack", "force", "pressure"]}, {"answer": "pretending", "hint": "synonyms for pretending", "clues": ["make believe", "make", "act", "hazard", "profess", "sham", "guess", "dissemble", "venture", "affect", "pretend", "feign"]}, {"answer": "prick", "hint": "synonyms for prick", "clues": ["sting", "bite", "goad", "prick up", "twinge", "prickle", "cock up", "prick"]}, {"answer": "pricking", "hint": "synonyms for pricking", "clues": ["bite", "prick up", "twinge", "prickle", "prick", "sting", "goad", "cock up"]}, {"answer": "priming", "hint": "synonyms for priming", "clues": ["ground", "undercoat", "prime", "prim out", "prim up", "priming"]}, {"answer": "primping", "hint": "synonyms for primping", "clues": ["preen", "dress", "plume", "primp"]}, {"answer": "proceeding", "hint": "synonyms for proceeding", "clues": ["carry on", "continue", "keep", "go", "go forward", "go along", "go on", "move", "proceed"]}, {"answer": "proceedings", "hint": "synonyms for proceedings", "clues": ["carry on", "continue", "keep", "go", "go forward", "go along", "go on", "move", "proceed", "proceedings"]}, {"answer": "proceeds", "hint": "synonyms for proceeds", "clues": ["carry on", "continue", "keep", "go", "go forward", "go along", "go on", "move", "proceed"]}, {"answer": "process", "hint": "synonyms for process", "clues": ["march", "litigate", "treat", "sue", "work on", "swear out", "work", "serve", "action", "process"]}, {"answer": "processing", "hint": "synonyms for processing", "clues": ["march", "treat", "litigate", "sue", "work on", "process", "swear out", "work", "serve", "action"]}, {"answer": "procuress", "hint": "synonyms for procuress", "clues": ["pander", "procure", "secure", "pimp"]}, {"answer": "prod", "hint": "synonyms for prod", "clues": ["jab", "egg on", "poke at", "dig", "incite", "poke", "nudge", "stab", "prod"]}, {"answer": "prodding", "hint": "synonyms for prodding", "clues": ["jab", "egg on", "poke at", "dig", "prod", "incite", "poke", "nudge", "stab", "prodding"]}, {"answer": "produce", "hint": "synonyms for produce", "clues": ["make", "raise", "bring on", "create", "grow", "farm", "develop", "acquire", "bring forth", "get", "bring about", "give rise", "produce"]}, {"answer": "professing", "hint": "synonyms for professing", "clues": ["confess", "concede", "profess", "pretend"]}, {"answer": "profits", "hint": "synonyms for profits", "clues": ["gain", "profit", "turn a profit", "benefit"]}, {"answer": "progress", "hint": "synonyms for progress", "clues": ["pass on", "move on", "get along", "build up", "build", "work up", "march on", "advance", "get on", "go on", "come on", "shape up", "come along", "progress"]}, {"answer": "project", "hint": "synonyms for project", "clues": ["figure", "cast", "jut out", "protrude", "externalize", "image", "throw", "visualise", "jut", "picture", "fancy", "send off", "propose", "envision", "contrive", "see", "plan", "design", "stick out", "project"]}, {"answer": "promise", "hint": "synonyms for promise", "clues": ["forebode", "predict", "foretell", "call", "anticipate", "prognosticate", "assure", "promise"]}, {"answer": "prompting", "hint": "synonyms for prompting", "clues": ["inspire", "prompt", "actuate", "remind", "incite", "instigate", "motivate", "cue", "move", "propel"]}, {"answer": "props", "hint": "synonyms for props", "clues": ["shore", "shore up", "prop up", "prop"]}, {"answer": "prune", "hint": "synonyms for prune", "clues": ["cut back", "trim", "snip", "crop", "rationalize", "cut", "lop", "dress", "clip", "prune"]}, {"answer": "pruning", "hint": "synonyms for pruning", "clues": ["cut back", "trim", "snip", "crop", "rationalize", "cut", "lop", "dress", "prune", "clip", "pruning"]}, {"answer": "pry", "hint": "synonyms for pry", "clues": ["lever", "jimmy", "horn in", "nose", "intrude", "poke", "prize", "prise", "pry"]}, {"answer": "publicizing", "hint": "synonyms for publicizing", "clues": ["advertize", "bare", "publicise", "air", "publicizing"]}, {"answer": "publishing", "hint": "synonyms for publishing", "clues": ["publish", "bring out", "print", "release", "issue", "write", "put out"]}, {"answer": "pucker", "hint": "synonyms for pucker", "clues": ["crumple", "ruck up", "ruck", "tuck", "knit", "cockle", "gather", "pucker"]}, {"answer": "puddle", "hint": "synonyms for puddle", "clues": ["addle", "make water", "pee", "urinate", "muddle", "relieve oneself", "wee", "make", "wee-wee", "pass water", "pee-pee", "take a leak", "micturate", "spend a penny", "piddle", "piss", "puddle"]}, {"answer": "puffing", "hint": "synonyms for puffing", "clues": ["puff up", "draw", "puff out", "puff", "drag", "heave", "chuff", "whiff", "blow up", "pant", "gasp"]}, {"answer": "puke", "hint": "synonyms for puke", "clues": ["retch", "regurgitate", "purge", "spew", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "puke"]}, {"answer": "puking", "hint": "synonyms for puking", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "puking"]}, {"answer": "pull", "hint": "synonyms for pull", "clues": ["attract", "draw", "rend", "perpetrate", "pull up", "extract", "commit", "draw out", "take out", "deplume", "tear", "pull in", "draw in", "rip", "pluck", "pull out", "get out", "displume", "root for", "rive", "overstretch", "force", "pull"]}, {"answer": "pulling", "hint": "synonyms for pulling", "clues": ["attract", "draw", "rend", "perpetrate", "pull up", "extract", "commit", "draw out", "take out", "deplume", "tear", "pull in", "draw in", "rip", "pluck", "pull out", "get out", "pull", "displume", "root for", "rive", "overstretch", "force"]}, {"answer": "punt", "hint": "synonyms for punt", "clues": ["game", "gage", "back", "stake", "pole", "bet on", "punt"]}, {"answer": "punting", "hint": "synonyms for punting", "clues": ["back", "punt", "pole", "game", "gage", "stake", "bet on"]}, {"answer": "purge", "hint": "synonyms for purge", "clues": ["retch", "sanctify", "regurgitate", "scour", "spew", "puke", "cast", "purify", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "flush", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "purge"]}, {"answer": "purl", "hint": "synonyms for purl", "clues": ["eddy", "whirlpool", "swirl", "sough", "whirl", "purl"]}, {"answer": "purpose", "hint": "synonyms for purpose", "clues": ["purport", "resolve", "aim", "propose"]}, {"answer": "purr", "hint": "synonyms for purr", "clues": ["make vibrant sounds", "whirr", "birr", "whiz", "purr"]}, {"answer": "push", "hint": "synonyms for push", "clues": ["promote", "labor", "fight", "press", "advertize", "tug", "agitate", "crusade", "drive", "bear on", "campaign", "crowd", "force", "push"]}, {"answer": "push_back", "hint": "synonyms for push back", "clues": ["beat back", "force back", "drive", "repel", "repulse", "push back"]}, {"answer": "pushing", "hint": "synonyms for pushing", "clues": ["promote", "labor", "fight", "press", "advertize", "crowd", "tug", "agitate", "crusade", "drive", "bear on", "campaign", "push", "force"]}, {"answer": "put", "hint": "synonyms for put", "clues": ["lay", "place", "redact", "assign", "arrange", "couch", "order", "commit", "frame", "set up", "cast", "position", "pose", "set", "invest", "put"]}, {"answer": "putter", "hint": "synonyms for putter", "clues": ["muck around", "putter around", "monkey", "potter", "mess around", "muck about", "monkey around", "tinker", "putter"]}, {"answer": "putting", "hint": "synonyms for putting", "clues": ["lay", "place", "redact", "assign", "arrange", "couch", "order", "commit", "frame", "set up", "put", "cast", "position", "pose", "set", "invest", "putting"]}, {"answer": "puzzle", "hint": "synonyms for puzzle", "clues": ["get", "stupefy", "flummox", "gravel", "vex", "amaze", "bewilder", "nonplus", "perplex", "baffle", "dumbfound", "pose", "beat", "stick", "mystify", "puzzle"]}, {"answer": "quail", "hint": "synonyms for quail", "clues": ["cringe", "squinch", "funk", "wince", "flinch", "shrink", "recoil", "quail"]}, {"answer": "qualifying", "hint": "synonyms for qualifying", "clues": ["dispose", "characterise", "specify", "measure up", "stipulate", "modify", "qualify", "condition", "restrict"]}, {"answer": "quarrel", "hint": "synonyms for quarrel", "clues": ["dispute", "altercate", "scrap", "argufy", "quarrel"]}, {"answer": "quarter", "hint": "synonyms for quarter", "clues": ["billet", "canton", "draw", "draw and quarter", "quarter"]}, {"answer": "quartering", "hint": "synonyms for quartering", "clues": ["billet", "draw", "quarter", "canton", "draw and quarter"]}, {"answer": "quarters", "hint": "synonyms for quarters", "clues": ["billet", "draw", "quarter", "canton", "draw and quarter"]}, {"answer": "quelling", "hint": "synonyms for quelling", "clues": ["stay", "appease", "squelch", "quell", "quench"]}, {"answer": "quenching", "hint": "synonyms for quenching", "clues": ["squelch", "quench", "assuage", "snuff out", "extinguish", "quell", "allay", "slake", "blow out"]}, {"answer": "quest", "hint": "synonyms for quest", "clues": ["bespeak", "request", "bay", "call for", "quest"]}, {"answer": "question", "hint": "synonyms for question", "clues": ["interview", "interrogate", "query", "call into question", "wonder", "oppugn", "question"]}, {"answer": "quibble", "hint": "synonyms for quibble", "clues": ["pettifog", "niggle", "brabble", "squabble", "bicker", "quibble"]}, {"answer": "quickening", "hint": "synonyms for quickening", "clues": ["speed", "accelerate", "whet", "reanimate", "renovate", "revivify", "invigorate", "recreate", "revive", "speed up", "repair", "quicken"]}, {"answer": "quiver", "hint": "synonyms for quiver", "clues": ["pulsate", "flutter", "flicker", "waver", "palpitate", "beat", "quake", "quiver"]}, {"answer": "quivering", "hint": "synonyms for quivering", "clues": ["flutter", "quiver", "palpitate", "waver", "pulsate", "flicker", "beat", "quake"]}, {"answer": "race", "hint": "synonyms for race", "clues": ["hasten", "speed", "bucket along", "rush", "run", "step on it", "pelt along", "rush along", "hotfoot", "hie", "cannonball along", "race"]}, {"answer": "racing", "hint": "synonyms for racing", "clues": ["hasten", "speed", "bucket along", "race", "rush", "run", "step on it", "pelt along", "rush along", "hotfoot", "hie", "cannonball along", "racing"]}, {"answer": "rack", "hint": "synonyms for rack", "clues": ["scud", "single-foot", "excruciate", "wring", "gouge", "extort", "squeeze", "torment", "torture", "rack"]}, {"answer": "racket", "hint": "synonyms for racket", "clues": ["make merry", "wassail", "whoop it up", "make happy", "revel", "make whoopie", "jollify", "racket"]}, {"answer": "rag", "hint": "synonyms for rag", "clues": ["call down", "chew up", "devil", "take to task", "jaw", "bait", "lecture", "torment", "frustrate", "cod", "call on the carpet", "nark", "bedevil", "vex", "lambast", "rebuke", "chafe", "tantalize", "annoy", "ride", "rally", "reproof", "crucify", "gravel", "razz", "rile", "get at", "nettle", "irritate", "taunt", "have words", "chide", "scold", "dun", "chew out", "remonstrate", "reprimand", "twit", "tease", "berate", "dress down", "trounce", "get to", "bawl out", "bother", "rag"]}, {"answer": "rail", "hint": "synonyms for rail", "clues": ["rail in", "train", "revile", "fulminate", "vilify", "vituperate", "rail off", "inveigh", "rail"]}, {"answer": "railing", "hint": "synonyms for railing", "clues": ["rail", "train", "inveigh", "rail in", "revile", "fulminate", "vituperate", "rail off", "vilify"]}, {"answer": "rails", "hint": "synonyms for rails", "clues": ["rail", "train", "inveigh", "rail in", "revile", "fulminate", "vituperate", "rail off", "vilify"]}, {"answer": "raiment", "hint": "synonyms for raiment", "clues": ["tog", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb", "raiment"]}, {"answer": "raise", "hint": "synonyms for raise", "clues": ["call down", "call forth", "leaven", "arouse", "recruit", "rear", "farm", "invoke", "fire", "nurture", "advance", "lift", "levy", "elevate", "put up", "erect", "set up", "produce", "get up", "kick upstairs", "upraise", "parent", "upgrade", "promote", "enkindle", "conjure", "stir", "prove", "put forward", "enhance", "elicit", "grow", "bring up", "provoke", "resurrect", "conjure up", "evoke", "heighten", "raise"]}, {"answer": "rake", "hint": "synonyms for rake", "clues": ["run down", "graze", "crease", "glance over", "scan", "skim", "rake"]}, {"answer": "rally", "hint": "synonyms for rally", "clues": ["ride", "come up", "razz", "mobilise", "bait", "summon", "taunt", "tantalise", "cod", "call up", "drum up", "beat up", "muster", "muster up", "twit", "tease", "rag", "rebound", "rally"]}, {"answer": "ram", "hint": "synonyms for ram", "clues": ["ram down", "chock up", "pound", "cram", "crash", "wad", "drive", "jam", "jampack", "force"]}, {"answer": "ramble", "hint": "synonyms for ramble", "clues": ["stray", "vagabond", "wander", "roll", "ramble on", "drift", "tramp", "rove", "cast", "range", "swan", "roam", "jog", "ramble"]}, {"answer": "rameses", "hint": "synonyms for rameses", "clues": ["ram down", "chock up", "pound", "cram", "crash", "wad", "drive", "jam", "jampack", "force", "rameses"]}, {"answer": "ramesses", "hint": "synonyms for ramesses", "clues": ["ram down", "chock up", "pound", "cram", "crash", "wad", "drive", "jam", "jampack", "force", "ramesses"]}, {"answer": "ramses", "hint": "synonyms for ramses", "clues": ["ram down", "chock up", "pound", "cram", "crash", "wad", "drive", "jam", "jampack", "force", "ramses"]}, {"answer": "range", "hint": "synonyms for range", "clues": ["array", "stray", "straddle", "pasture", "rank", "vagabond", "tramp", "rove", "cast", "roll", "graze", "browse", "rate", "ramble", "place", "crop", "lay out", "order", "run", "wander", "drift", "grade", "swan", "set out", "roam", "range"]}, {"answer": "ransacking", "hint": "synonyms for ransacking", "clues": ["despoil", "rifle", "foray", "pillage", "comb", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "rant", "hint": "synonyms for rant", "clues": ["rave", "jabber", "rabbit on", "mouth off", "spout", "rant"]}, {"answer": "ranting", "hint": "synonyms for ranting", "clues": ["rave", "jabber", "rant", "rabbit on", "mouth off", "spout"]}, {"answer": "rap", "hint": "synonyms for rap", "clues": ["knock", "tap", "pink", "knap", "rap"]}, {"answer": "rape", "hint": "synonyms for rape", "clues": ["despoil", "spoil", "assault", "dishonour", "plunder", "outrage", "violate", "ravish", "rape"]}, {"answer": "rat", "hint": "synonyms for rat", "clues": ["betray", "shit", "tell on", "denounce", "snitch", "fink", "blackleg", "scab", "give away", "stag", "grass", "shop", "rat"]}, {"answer": "rate", "hint": "synonyms for rate", "clues": ["value", "place", "range", "grade", "rank", "order", "rate"]}, {"answer": "rates", "hint": "synonyms for rates", "clues": ["tell on", "rank", "fink", "give away", "stag", "range", "rate", "value", "betray", "shit", "place", "denounce", "shop", "snitch", "order", "blackleg", "scab", "grade", "grass"]}, {"answer": "rating", "hint": "synonyms for rating", "clues": ["tell on", "rank", "fink", "give away", "stag", "range", "rate", "value", "betray", "shit", "place", "denounce", "shop", "snitch", "order", "blackleg", "scab", "grade", "grass", "rating"]}, {"answer": "ratting", "hint": "synonyms for ratting", "clues": ["betray", "shit", "tell on", "denounce", "shop", "snitch", "fink", "blackleg", "scab", "give away", "stag", "grass", "rat", "ratting"]}, {"answer": "ravage", "hint": "synonyms for ravage", "clues": ["lay waste to", "scourge", "devastate", "waste", "desolate", "harry", "ravage"]}, {"answer": "rave", "hint": "synonyms for rave", "clues": ["jabber", "rant", "rabbit on", "gush", "mouth off", "spout", "rave"]}, {"answer": "ravel", "hint": "synonyms for ravel", "clues": ["unravel", "knot", "tangle", "ravel out", "ravel"]}, {"answer": "raveling", "hint": "synonyms for raveling", "clues": ["unravel", "tangle", "ravel out", "knot", "ravel"]}, {"answer": "ravelling", "hint": "synonyms for ravelling", "clues": ["unravel", "tangle", "ravel out", "knot", "ravel", "ravelling"]}, {"answer": "raven", "hint": "synonyms for raven", "clues": ["predate", "prey", "devour", "guttle", "pig", "raven"]}, {"answer": "razing", "hint": "synonyms for razing", "clues": ["raze", "tear down", "take down", "level", "dismantle", "rase", "pull down", "razing"]}, {"answer": "razz", "hint": "synonyms for razz", "clues": ["cod", "ride", "rally", "taunt", "twit", "tease", "bait", "tantalize", "rag", "razz"]}, {"answer": "razzing", "hint": "synonyms for razzing", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag"]}, {"answer": "reach", "hint": "synonyms for reach", "clues": ["attain", "hit", "strain", "achieve", "get hold of", "get through", "touch", "hand", "extend to", "reach out", "accomplish", "pass on", "progress to", "make", "gain", "arrive at", "contact", "give", "strive", "get to", "pass", "turn over", "reach"]}, {"answer": "reaching", "hint": "synonyms for reaching", "clues": ["attain", "hit", "strain", "achieve", "get hold of", "get through", "touch", "hand", "extend to", "reach out", "accomplish", "pass on", "progress to", "make", "gain", "arrive at", "contact", "give", "reach", "strive", "get to", "pass", "turn over"]}, {"answer": "read", "hint": "synonyms for read", "clues": ["translate", "learn", "register", "understand", "show", "scan", "say", "interpret", "take", "study", "record", "read"]}, {"answer": "reading", "hint": "synonyms for reading", "clues": ["read", "learn", "translate", "register", "understand", "show", "scan", "say", "interpret", "take", "study", "record"]}, {"answer": "readying", "hint": "synonyms for readying", "clues": ["make", "gear up", "set up", "fix", "cook", "ready", "prepare", "set"]}, {"answer": "rebel", "hint": "synonyms for rebel", "clues": ["rise", "renegade", "rise up", "rebel"]}, {"answer": "rebound", "hint": "synonyms for rebound", "clues": ["rally", "bounce", "recoil", "resile", "ricochet", "take a hop", "reverberate", "bound", "spring", "rebound"]}, {"answer": "rebuff", "hint": "synonyms for rebuff", "clues": ["drive back", "repel", "repulse", "fight off", "snub", "rebuff"]}, {"answer": "rebuke", "hint": "synonyms for rebuke", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "berate", "dress down", "trounce", "bawl out", "rag", "rebuke"]}, {"answer": "recall", "hint": "synonyms for recall", "clues": ["call up", "retrieve", "withdraw", "come back", "think", "return", "call back", "recollect", "hark back", "call in", "echo", "remember", "recall"]}, {"answer": "recasting", "hint": "synonyms for recasting", "clues": ["recast", "remould", "remodel", "reforge"]}, {"answer": "reckoning", "hint": "synonyms for reckoning", "clues": ["forecast", "figure", "depend", "guess", "reckon", "think", "estimate", "view", "bet", "count", "work out", "suppose", "consider", "cypher", "compute", "look", "regard", "count on", "cipher", "see", "imagine", "calculate", "opine"]}, {"answer": "reclining", "hint": "synonyms for reclining", "clues": ["recline", "lean back", "repose", "recumb", "reclining"]}, {"answer": "recoil", "hint": "synonyms for recoil", "clues": ["cringe", "backlash", "shrink", "resile", "kick back", "ricochet", "spring", "flinch", "wince", "kick", "squinch", "bounce", "quail", "take a hop", "reverberate", "bound", "rebound", "backfire", "funk", "recoil"]}, {"answer": "recompense", "hint": "synonyms for recompense", "clues": ["indemnify", "compensate", "repair", "remunerate", "recompense"]}, {"answer": "record", "hint": "synonyms for record", "clues": ["immortalise", "read", "put down", "register", "show", "enter", "tape", "memorialise", "commemorate", "record"]}, {"answer": "recording", "hint": "synonyms for recording", "clues": ["immortalise", "read", "put down", "register", "show", "enter", "tape", "memorialise", "record", "commemorate"]}, {"answer": "recounting", "hint": "synonyms for recounting", "clues": ["tell", "recite", "narrate", "recount"]}, {"answer": "recruit", "hint": "synonyms for recruit", "clues": ["enter", "levy", "enrol", "raise", "inscribe", "recruit"]}, {"answer": "redact", "hint": "synonyms for redact", "clues": ["frame", "cast", "put", "edit", "couch", "redact"]}, {"answer": "reducing", "hint": "synonyms for reducing", "clues": ["scale down", "deoxidize", "abridge", "dilute", "quash", "thin out", "slenderize", "trim down", "shrink", "cut down", "trim back", "foreshorten", "come down", "subdue", "shorten", "subjugate", "boil down", "repress", "cut back", "abbreviate", "thin", "slim down", "trim", "tighten", "bring down", "melt off", "lose weight", "reduce", "keep down", "cut", "contract", "slim", "decoct", "concentrate", "reducing"]}, {"answer": "reek", "hint": "synonyms for reek", "clues": ["smell", "smack", "stink", "fume", "reek"]}, {"answer": "reel", "hint": "synonyms for reel", "clues": ["spin around", "careen", "lurch", "gyrate", "swag", "spin", "keel", "whirl", "stagger", "reel"]}, {"answer": "refining", "hint": "synonyms for refining", "clues": ["rectify", "complicate", "elaborate", "rarify", "fine-tune", "down", "polish", "refine", "refining"]}, {"answer": "reform", "hint": "synonyms for reform", "clues": ["reclaim", "see the light", "rectify", "straighten out", "regenerate", "reform"]}, {"answer": "refuse", "hint": "synonyms for refuse", "clues": ["turn down", "decline", "turn away", "resist", "deny", "pass up", "reject", "defy", "refuse"]}, {"answer": "regaining", "hint": "synonyms for regaining", "clues": ["retrieve", "recover", "find", "regain"]}, {"answer": "regard", "hint": "synonyms for regard", "clues": ["see", "affect", "view", "consider", "involve", "reckon", "regard"]}, {"answer": "register", "hint": "synonyms for register", "clues": ["read", "record", "cross-file", "show", "file", "register"]}, {"answer": "regress", "hint": "synonyms for regress", "clues": ["lapse", "revert", "retrograde", "turn back", "retrovert", "recidivate", "return", "fall back", "retrogress", "relapse", "regress"]}, {"answer": "regulating", "hint": "synonyms for regulating", "clues": ["determine", "govern", "regularize", "order", "regulate", "influence", "shape", "baffle", "modulate", "mold", "regulating"]}, {"answer": "reign", "hint": "synonyms for reign", "clues": ["rule", "dominate", "predominate", "prevail", "reign"]}, {"answer": "rein", "hint": "synonyms for rein", "clues": ["draw rein", "rule", "harness", "rein in", "rein"]}, {"answer": "reject", "hint": "synonyms for reject", "clues": ["turn down", "decline", "turn away", "resist", "freeze off", "pass up", "disapprove", "rule out", "pooh-pooh", "disdain", "spurn", "winnow out", "scorn", "refuse", "eliminate", "reject"]}, {"answer": "relapse", "hint": "synonyms for relapse", "clues": ["lapse", "fall back", "retrogress", "regress", "recidivate", "get worse", "relapse"]}, {"answer": "relapsing", "hint": "synonyms for relapsing", "clues": ["lapse", "regress", "recidivate", "get worse", "fall back", "retrogress", "relapse", "relapsing"]}, {"answer": "release", "hint": "synonyms for release", "clues": ["unfreeze", "unloosen", "loose", "exhaust", "discharge", "put out", "issue", "publish", "turn", "resign", "unblock", "free", "give up", "let go", "let go of", "eject", "expel", "relinquish", "bring out", "secrete", "liberate", "release"]}, {"answer": "relegating", "hint": "synonyms for relegating", "clues": ["pass on", "break", "demote", "banish", "bar", "bump", "submit", "classify", "kick downstairs", "relegate", "relegating"]}, {"answer": "relinquishing", "hint": "synonyms for relinquishing", "clues": ["renounce", "foreswear", "dispense with", "waive", "free", "release", "give up", "let go", "let go of", "quit", "resign", "relinquish", "forego"]}, {"answer": "relish", "hint": "synonyms for relish", "clues": ["enjoy", "bask", "savor", "relish"]}, {"answer": "relishing", "hint": "synonyms for relishing", "clues": ["enjoy", "savour", "bask", "relish"]}, {"answer": "remains", "hint": "synonyms for remains", "clues": ["stay", "continue", "remain", "stay on", "persist", "rest"]}, {"answer": "remaking", "hint": "synonyms for remaking", "clues": ["redo", "refashion", "make over", "remake", "remaking"]}, {"answer": "remand", "hint": "synonyms for remand", "clues": ["remit", "incarcerate", "gaol", "send back", "put behind bars", "imprison", "put away", "lag", "jug", "immure", "jail", "remand"]}, {"answer": "remark", "hint": "synonyms for remark", "clues": ["comment", "observe", "notice", "point out", "note", "mention", "remark"]}, {"answer": "remedy", "hint": "synonyms for remedy", "clues": ["rectify", "amend", "repair", "remediate", "relieve", "remedy"]}, {"answer": "remembering", "hint": "synonyms for remembering", "clues": ["call up", "think of", "remember", "retrieve", "think", "call back", "recollect", "commemorate", "think back", "commend", "recall"]}, {"answer": "remit", "hint": "synonyms for remit", "clues": ["hold over", "shelve", "slacken", "send back", "prorogue", "set back", "put off", "remand", "defer", "table", "put over", "postpone", "remit"]}, {"answer": "remove", "hint": "synonyms for remove", "clues": ["take away", "get rid of", "bump off", "absent", "hit", "polish off", "off", "withdraw", "take", "transfer", "move out", "murder", "slay", "take out", "dispatch", "remove"]}, {"answer": "render", "hint": "synonyms for render", "clues": ["translate", "furnish", "depict", "show", "fork over", "supply", "submit", "return", "fork up", "yield", "picture", "try", "deliver", "interpret", "provide", "give", "generate", "fork out", "turn in", "hand over", "render"]}, {"answer": "rendering", "hint": "synonyms for rendering", "clues": ["translate", "furnish", "depict", "show", "fork over", "supply", "submit", "return", "fork up", "yield", "render", "picture", "try", "deliver", "interpret", "provide", "give", "generate", "fork out", "turn in", "hand over"]}, {"answer": "rent", "hint": "synonyms for rent", "clues": ["rip", "let", "engage", "hire", "take", "rend", "pull", "charter", "lease", "rive", "rent"]}, {"answer": "renting", "hint": "synonyms for renting", "clues": ["rent", "let", "engage", "hire", "take", "charter", "lease"]}, {"answer": "repair", "hint": "synonyms for repair", "clues": ["compensate", "mend", "resort", "reanimate", "recompense", "remediate", "doctor", "fix", "indemnify", "recreate", "revive", "remedy", "rectify", "touch on", "renovate", "furbish up", "revivify", "restore", "bushel", "quicken", "repair"]}, {"answer": "repeal", "hint": "synonyms for repeal", "clues": ["countermand", "revoke", "annul", "reverse", "overturn", "vacate", "rescind", "lift", "repeal"]}, {"answer": "repeat", "hint": "synonyms for repeat", "clues": ["ingeminate", "replicate", "restate", "recapitulate", "iterate", "take over", "reprise", "retell", "duplicate", "double", "echo", "recur", "repeat"]}, {"answer": "repeating", "hint": "synonyms for repeating", "clues": ["ingeminate", "replicate", "restate", "recapitulate", "iterate", "take over", "reprise", "retell", "duplicate", "repeat", "double", "echo", "recur"]}, {"answer": "replacing", "hint": "synonyms for replacing", "clues": ["supplant", "put back", "substitute", "supercede", "interchange", "replace", "exchange", "supervene upon", "replacing"]}, {"answer": "reporting", "hint": "synonyms for reporting", "clues": ["account", "cover", "report", "describe"]}, {"answer": "repose", "hint": "synonyms for repose", "clues": ["lay", "recline", "put down", "recumb", "reside", "rest", "repose"]}, {"answer": "reprimand", "hint": "synonyms for reprimand", "clues": ["call down", "chew up", "lambaste", "reproof", "censure", "take to task", "jaw", "lecture", "have words", "chide", "scold", "criminate", "call on the carpet", "chew out", "remonstrate", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "reprimand"]}, {"answer": "reproof", "hint": "synonyms for reproof", "clues": ["call down", "chew up", "lambaste", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "reproof"]}, {"answer": "repulse", "hint": "synonyms for repulse", "clues": ["force back", "drive back", "repel", "rebuff", "fight off", "beat back", "drive", "push back", "repulse"]}, {"answer": "repute", "hint": "synonyms for repute", "clues": ["think of", "look upon", "esteem", "take to be", "regard as", "repute"]}, {"answer": "reserve", "hint": "synonyms for reserve", "clues": ["appropriate", "hold", "earmark", "set aside", "allow", "book", "reserve"]}, {"answer": "reserves", "hint": "synonyms for reserves", "clues": ["book", "appropriate", "earmark", "reserve", "set aside", "allow", "hold"]}, {"answer": "resolve", "hint": "synonyms for resolve", "clues": ["adjudicate", "decide", "break up", "purpose", "answer", "solve", "conclude", "dissolve", "settle", "resolve"]}, {"answer": "resolving", "hint": "synonyms for resolving", "clues": ["adjudicate", "decide", "break up", "purpose", "answer", "resolve", "solve", "conclude", "dissolve", "settle", "resolving"]}, {"answer": "respect", "hint": "synonyms for respect", "clues": ["value", "abide by", "honor", "observe", "esteem", "prize", "prise", "respect"]}, {"answer": "respects", "hint": "synonyms for respects", "clues": ["value", "respect", "abide by", "honor", "observe", "esteem", "prize", "prise"]}, {"answer": "rest", "hint": "synonyms for rest", "clues": ["lie", "stay", "breathe", "pillow", "remain", "roost", "catch one's breath", "repose", "perch", "take a breather", "reside", "rest"]}, {"answer": "resume", "hint": "synonyms for resume", "clues": ["sum up", "take up", "summarise", "re-start", "resume"]}, {"answer": "retard", "hint": "synonyms for retard", "clues": ["decelerate", "delay", "slow up", "slow down", "slow", "check", "retard"]}, {"answer": "retch", "hint": "synonyms for retch", "clues": ["regurgitate", "heave", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "gag", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "retch"]}, {"answer": "retort", "hint": "synonyms for retort", "clues": ["return", "riposte", "repay", "rejoin", "come back", "retort"]}, {"answer": "retread", "hint": "synonyms for retread", "clues": ["remould", "make over", "rework", "retread"]}, {"answer": "retreat", "hint": "synonyms for retreat", "clues": ["retrograde", "crawfish out", "move back", "retire", "withdraw", "pull in one's horns", "back away", "pull back", "recede", "draw back", "back out", "pull away", "crawfish", "retreat"]}, {"answer": "retreated", "hint": "synonyms for retreated", "clues": ["retreat", "retrograde", "crawfish out", "move back", "retire", "withdraw", "pull in one's horns", "back away", "pull back", "recede", "draw back", "back out", "pull away", "crawfish"]}, {"answer": "return", "hint": "synonyms for return", "clues": ["rejoin", "refund", "turn back", "repay", "riposte", "reelect", "take back", "yield", "render", "fall", "devolve", "revert", "retrovert", "regress", "deliver", "pass", "give", "come back", "retort", "generate", "hark back", "bring back", "give back", "recall", "return"]}, {"answer": "revel", "hint": "synonyms for revel", "clues": ["make merry", "wassail", "make happy", "jollify", "make whoopie", "delight", "enjoy", "whoop it up", "racket", "revel"]}, {"answer": "revere", "hint": "synonyms for revere", "clues": ["worship", "idolise", "hero-worship", "venerate", "fear", "reverence", "revere"]}, {"answer": "review", "hint": "synonyms for review", "clues": ["brush up", "look back", "refresh", "critique", "reexamine", "retrospect", "survey", "go over", "review"]}, {"answer": "revoke", "hint": "synonyms for revoke", "clues": ["countermand", "annul", "reverse", "overturn", "vacate", "rescind", "repeal", "lift", "revoke"]}, {"answer": "revolt", "hint": "synonyms for revolt", "clues": ["nauseate", "disgust", "repel", "gross out", "sicken", "churn up", "revolt"]}, {"answer": "reward", "hint": "synonyms for reward", "clues": ["repay", "pay back", "honor", "reinforce", "reward"]}, {"answer": "rib", "hint": "synonyms for rib", "clues": ["poke fun", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "rib"]}, {"answer": "ribbing", "hint": "synonyms for ribbing", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "ribbing"]}, {"answer": "ribes", "hint": "synonyms for ribes", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at"]}, {"answer": "rick", "hint": "synonyms for rick", "clues": ["wrick", "turn", "twist", "wrench", "sprain"]}, {"answer": "ricochet", "hint": "synonyms for ricochet", "clues": ["bounce", "resile", "recoil", "take a hop", "reverberate", "bound", "spring", "rebound", "ricochet"]}, {"answer": "riddle", "hint": "synonyms for riddle", "clues": ["permeate", "interpenetrate", "screen", "diffuse", "penetrate", "imbue", "pervade", "riddle"]}, {"answer": "ride", "hint": "synonyms for ride", "clues": ["depend on", "rally", "hinge upon", "razz", "bait", "turn on", "tantalise", "taunt", "cod", "sit", "mount", "twit", "tease", "devolve on", "drive", "rag", "ride"]}, {"answer": "ridicule", "hint": "synonyms for ridicule", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "blackguard", "laugh at", "ridicule"]}, {"answer": "riding", "hint": "synonyms for riding", "clues": ["depend on", "ride", "rally", "disembarrass", "hinge upon", "razz", "bait", "turn on", "tantalise", "taunt", "cod", "sit", "mount", "free", "twit", "tease", "devolve on", "drive", "rag", "riding"]}, {"answer": "riff", "hint": "synonyms for riff", "clues": ["leaf", "flip", "riffle", "thumb", "flick", "riff"]}, {"answer": "riffle", "hint": "synonyms for riffle", "clues": ["leaf", "riff", "cockle", "flick", "ripple", "undulate", "flip", "ruffle", "thumb", "riffle"]}, {"answer": "rifle", "hint": "synonyms for rifle", "clues": ["despoil", "foray", "go", "pillage", "plunder", "ransack", "strip", "loot", "reave", "rifle"]}, {"answer": "rifling", "hint": "synonyms for rifling", "clues": ["despoil", "rifle", "foray", "go", "pillage", "plunder", "ransack", "strip", "loot", "reave", "rifling"]}, {"answer": "rigging", "hint": "synonyms for rigging", "clues": ["set up", "set", "manipulate", "rig", "rigging"]}, {"answer": "ring", "hint": "synonyms for ring", "clues": ["call up", "environ", "peal", "surround", "resound", "border", "call", "band", "reverberate", "knell", "telephone", "skirt", "phone", "echo", "ring"]}, {"answer": "ringing", "hint": "synonyms for ringing", "clues": ["call up", "environ", "peal", "surround", "ring", "resound", "call", "border", "band", "reverberate", "knell", "telephone", "skirt", "phone", "echo"]}, {"answer": "rings", "hint": "synonyms for rings", "clues": ["call up", "environ", "peal", "surround", "ring", "resound", "call", "border", "band", "reverberate", "knell", "telephone", "skirt", "phone", "echo"]}, {"answer": "rinsing", "hint": "synonyms for rinsing", "clues": ["rinse", "gargle", "rinse off", "wash", "rinsing"]}, {"answer": "riposte", "hint": "synonyms for riposte", "clues": ["retort", "return", "repay", "rejoin", "come back", "riposte"]}, {"answer": "ripple", "hint": "synonyms for ripple", "clues": ["burble", "ruffle", "cockle", "babble", "bubble", "undulate", "riffle", "gurgle", "guggle", "ripple"]}, {"answer": "rippling", "hint": "synonyms for rippling", "clues": ["burble", "ruffle", "cockle", "babble", "bubble", "undulate", "ripple", "riffle", "gurgle", "guggle", "rippling"]}, {"answer": "rise", "hint": "synonyms for rise", "clues": ["rebel", "come up", "originate", "rear", "arise", "wax", "go up", "rise up", "lift", "climb up", "prove", "uprise", "mount", "move up", "climb", "stand up", "turn out", "grow", "jump", "develop", "ascend", "spring up", "resurrect", "get up", "heighten", "surface"]}, {"answer": "risk", "hint": "synonyms for risk", "clues": ["adventure", "hazard", "put on the line", "lay on the line", "chance", "gamble", "take a chance", "run a risk", "risk"]}, {"answer": "rivet", "hint": "synonyms for rivet", "clues": ["focus", "concentrate", "center", "pore", "centre", "rivet"]}, {"answer": "roar", "hint": "synonyms for roar", "clues": ["howl", "bellow", "thunder", "ululate", "yaup", "wail", "yawl", "roar"]}, {"answer": "roasting", "hint": "synonyms for roasting", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at"]}, {"answer": "robe", "hint": "synonyms for robe", "clues": ["cloak", "drape", "vest", "clothe", "robe"]}, {"answer": "roleplaying", "hint": "synonyms for roleplaying", "clues": ["playact", "play", "act", "roleplay"]}, {"answer": "roll", "hint": "synonyms for roll", "clues": ["wind", "stray", "hustle", "roll out", "vagabond", "roll up", "tramp", "rove", "cast", "range", "undulate", "twine", "ramble", "revolve", "wave", "pluck", "wander", "wheel", "drift", "swan", "wrap", "roam", "turn over", "flap", "seethe", "roll"]}, {"answer": "roll_in_the_hay", "hint": "synonyms for roll in the hay", "clues": ["hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "roll in the hay"]}, {"answer": "romp", "hint": "synonyms for romp", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp"]}, {"answer": "rook", "hint": "synonyms for rook", "clues": ["bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "rook"]}, {"answer": "root", "hint": "synonyms for root", "clues": ["rout", "steady down", "rootle", "settle down", "take root", "settle", "root"]}, {"answer": "rooting", "hint": "synonyms for rooting", "clues": ["rout", "steady down", "root", "take root", "settle down", "rootle", "settle"]}, {"answer": "roots", "hint": "synonyms for roots", "clues": ["rout", "steady down", "root", "take root", "settle down", "rootle", "settle"]}, {"answer": "rot", "hint": "synonyms for rot", "clues": ["molder", "waste", "decompose", "rot"]}, {"answer": "rotting", "hint": "synonyms for rotting", "clues": ["molder", "waste", "decompose", "rot", "rotting"]}, {"answer": "rounding", "hint": "synonyms for rounding", "clues": ["labialize", "lash out", "round down", "round", "round off", "fill out", "assault", "snipe", "attack", "polish", "round out", "brush up", "flesh out", "polish up", "assail"]}, {"answer": "rout", "hint": "synonyms for rout", "clues": ["rout out", "gouge", "spreadeagle", "expel", "rootle", "root", "rout"]}, {"answer": "rub", "hint": "synonyms for rub", "clues": ["itch", "fray", "fret", "chafe", "scratch", "rub"]}, {"answer": "rubbing", "hint": "synonyms for rubbing", "clues": ["itch", "fray", "fret", "rub", "chafe", "scratch", "rubbing"]}, {"answer": "ruffle", "hint": "synonyms for ruffle", "clues": ["prance", "cock", "mix", "tittup", "cockle", "sashay", "strut", "flick", "mess up", "fluff", "shuffle", "rumple", "ruffle up", "pleat", "undulate", "ripple", "riffle", "swagger", "ruffle"]}, {"answer": "ruin", "hint": "synonyms for ruin", "clues": ["break", "smash", "deflower", "bankrupt", "destroy", "ruin"]}, {"answer": "ruining", "hint": "synonyms for ruining", "clues": ["break", "ruin", "smash", "deflower", "bankrupt", "destroy"]}, {"answer": "rule", "hint": "synonyms for rule", "clues": ["dominate", "govern", "reign", "predominate", "prevail", "harness", "find", "decree", "rule"]}, {"answer": "run", "hint": "synonyms for run", "clues": ["lean", "guide", "go", "hightail it", "run for", "range", "consort", "break away", "bunk", "campaign", "black market", "persist", "hunt", "track down", "race", "flow", "operate", "turn tail", "melt", "die hard", "incline", "unravel", "extend", "run away", "play", "take to the woods", "course", "move", "ladder", "escape", "draw", "hunt down", "function", "bleed", "lam", "scat", "melt down", "carry", "tend", "feed", "scarper", "fly the coop", "endure", "pass", "be given", "prevail", "work", "lead", "head for the hills", "execute", "run"]}, {"answer": "rung", "hint": "synonyms for rung", "clues": ["call up", "environ", "peal", "surround", "ring", "resound", "call", "border", "band", "reverberate", "knell", "telephone", "skirt", "phone", "echo", "rung"]}, {"answer": "rushing", "hint": "synonyms for rushing", "clues": ["bucket along", "stimulate", "hurry", "hotfoot", "step on it", "belt along", "festinate", "rush along", "hie", "hasten", "speed", "race", "look sharp", "induce", "rush", "cannonball along"]}, {"answer": "sabotage", "hint": "synonyms for sabotage", "clues": ["undermine", "counteract", "countermine", "weaken", "subvert", "sabotage"]}, {"answer": "sack", "hint": "synonyms for sack", "clues": ["can", "give the sack", "force out", "dismiss", "give notice", "plunder", "give the axe", "send away", "clear", "displace", "fire", "terminate", "sack up", "net", "sack"]}, {"answer": "sacking", "hint": "synonyms for sacking", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "plunder", "give the axe", "send away", "clear", "displace", "fire", "terminate", "sack up", "net"]}, {"answer": "sag", "hint": "synonyms for sag", "clues": ["droop", "sag down", "flag", "swag"]}, {"answer": "sailing", "hint": "synonyms for sailing", "clues": ["sweep", "sail", "voyage", "navigate"]}, {"answer": "salute", "hint": "synonyms for salute", "clues": ["wassail", "toast", "drink", "pledge", "present", "salute"]}, {"answer": "salvage", "hint": "synonyms for salvage", "clues": ["scavenge", "salve", "relieve", "salvage"]}, {"answer": "sampling", "hint": "synonyms for sampling", "clues": ["sample", "try", "taste", "try out", "sampling"]}, {"answer": "sang", "hint": "synonyms for sang", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "whistle", "sing", "spill the beans", "tattle", "blab out", "babble out", "sang"]}, {"answer": "sap", "hint": "synonyms for sap", "clues": ["run down", "exhaust", "play out", "tire", "sap"]}, {"answer": "sashay", "hint": "synonyms for sashay", "clues": ["prance", "chasse", "cock", "sidle", "ruffle", "tittup", "strut", "swagger", "sashay"]}, {"answer": "sat", "hint": "synonyms for sat", "clues": ["baby-sit", "sit", "ride", "seat", "model", "sit down", "pose", "sit around", "posture"]}, {"answer": "save", "hint": "synonyms for save", "clues": ["economize", "keep", "redeem", "pull through", "bring through", "carry through", "make unnecessary", "save up", "relieve", "salvage", "keep open", "deliver", "write", "hold open", "preserve", "salve", "lay aside", "spare"]}, {"answer": "savings", "hint": "synonyms for savings", "clues": ["economize", "keep", "redeem", "pull through", "bring through", "carry through", "make unnecessary", "save up", "relieve", "salvage", "keep open", "deliver", "write", "hold open", "preserve", "salve", "lay aside", "spare", "savings"]}, {"answer": "savor", "hint": "synonyms for savor", "clues": ["enjoy", "savour", "bask", "taste", "relish"]}, {"answer": "savoring", "hint": "synonyms for savoring", "clues": ["enjoy", "savour", "bask", "taste", "relish", "savoring"]}, {"answer": "savour", "hint": "synonyms for savour", "clues": ["enjoy", "bask", "savor", "taste", "relish"]}, {"answer": "savouring", "hint": "synonyms for savouring", "clues": ["enjoy", "savour", "bask", "taste", "relish"]}, {"answer": "savvy", "hint": "synonyms for savvy", "clues": ["grok", "apprehend", "grasp", "dig", "get the picture", "comprehend", "compass", "savvy"]}, {"answer": "saw", "hint": "synonyms for saw", "clues": ["get wind", "get a line", "understand", "see to it", "escort", "reckon", "view", "project", "examine", "image", "determine", "visualize", "witness", "fancy", "consider", "interpret", "check", "go steady", "discover", "experience", "envision", "find out", "see", "ascertain", "run into", "take care", "insure", "figure", "construe", "encounter", "learn", "watch", "run across", "get word", "assure", "attend", "date", "realise", "go through", "take in", "control", "ensure", "hear", "picture", "meet", "look", "regard", "pick up", "go out", "come across", "visit", "catch", "find", "saw"]}, {"answer": "say", "hint": "synonyms for say", "clues": ["aver", "read", "state", "allege", "articulate", "suppose", "enunciate", "enounce", "order", "tell", "enjoin", "pronounce", "sound out", "say"]}, {"answer": "saying", "hint": "synonyms for saying", "clues": ["aver", "read", "state", "allege", "articulate", "suppose", "enunciate", "say", "order", "enounce", "tell", "enjoin", "pronounce", "sound out"]}, {"answer": "scam", "hint": "synonyms for scam", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "swindle", "short-change", "gip", "con", "goldbrick", "scam"]}, {"answer": "scan", "hint": "synonyms for scan", "clues": ["run down", "rake", "read", "glance over", "skim", "scan"]}, {"answer": "scanning", "hint": "synonyms for scanning", "clues": ["run down", "rake", "read", "glance over", "scan", "skim", "scanning"]}, {"answer": "scare", "hint": "synonyms for scare", "clues": ["frighten away", "frighten off", "scare away", "scare off", "fright", "pall", "dash", "daunt", "scare"]}, {"answer": "scat", "hint": "synonyms for scat", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "lam", "run away", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "scat"]}, {"answer": "scatter", "hint": "synonyms for scatter", "clues": ["sprinkle", "dot", "break up", "dust", "spread", "dispel", "dissipate", "disperse", "spread out", "scatter"]}, {"answer": "scattering", "hint": "synonyms for scattering", "clues": ["sprinkle", "dot", "break up", "scatter", "dust", "spread", "dispel", "dissipate", "disperse", "spread out"]}, {"answer": "scent", "hint": "synonyms for scent", "clues": ["nose", "perfume", "wind", "odourise", "odorize", "scent"]}, {"answer": "school", "hint": "synonyms for school", "clues": ["civilise", "train", "educate", "cultivate", "school"]}, {"answer": "schooling", "hint": "synonyms for schooling", "clues": ["civilise", "train", "educate", "school", "cultivate"]}, {"answer": "scoff", "hint": "synonyms for scoff", "clues": ["jeer", "flout", "barrack", "gibe", "scoff"]}, {"answer": "scoffing", "hint": "synonyms for scoffing", "clues": ["jeer", "flout", "scoff", "gibe", "barrack"]}, {"answer": "scold", "hint": "synonyms for scold", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "call on the carpet", "chew out", "remonstrate", "reprimand", "grouch", "grumble", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "scold"]}, {"answer": "scolding", "hint": "synonyms for scolding", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "grouch", "grumble", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag"]}, {"answer": "scoop", "hint": "synonyms for scoop", "clues": ["best", "take up", "scoop up", "outdo", "outflank", "trump", "lift out", "scoop out", "scoop"]}, {"answer": "scorch", "hint": "synonyms for scorch", "clues": ["char", "singe", "sear", "blacken", "scorch"]}, {"answer": "score", "hint": "synonyms for score", "clues": ["make", "hit", "seduce", "rack up", "grade", "tally", "mark", "nock", "score"]}, {"answer": "scores", "hint": "synonyms for scores", "clues": ["make", "hit", "score", "seduce", "rack up", "grade", "tally", "mark", "nock"]}, {"answer": "scoring", "hint": "synonyms for scoring", "clues": ["make", "hit", "score", "seduce", "rack up", "grade", "tally", "mark", "nock", "scoring"]}, {"answer": "scorn", "hint": "synonyms for scorn", "clues": ["turn down", "despise", "contemn", "freeze off", "pooh-pooh", "disdain", "reject", "spurn", "scorn"]}, {"answer": "scour", "hint": "synonyms for scour", "clues": ["flush", "scrub", "purge", "abrade", "scour"]}, {"answer": "scourge", "hint": "synonyms for scourge", "clues": ["flagellate", "ravage", "lay waste to", "devastate", "waste", "desolate", "scourge"]}, {"answer": "scouring", "hint": "synonyms for scouring", "clues": ["scrub", "abrade", "flush", "purge", "scour"]}, {"answer": "scours", "hint": "synonyms for scours", "clues": ["scrub", "abrade", "flush", "purge", "scour"]}, {"answer": "scramble", "hint": "synonyms for scramble", "clues": ["skin", "jumble", "shin", "throw together", "sputter", "clamber", "struggle", "beat", "shinny", "scramble"]}, {"answer": "scrap", "hint": "synonyms for scrap", "clues": ["altercate", "trash", "junk", "dispute", "quarrel", "argufy", "scrap"]}, {"answer": "scrape", "hint": "synonyms for scrape", "clues": ["genuflect", "come up", "skin", "scrape up", "kowtow", "scratch up", "grate", "scratch", "scrape"]}, {"answer": "scraping", "hint": "synonyms for scraping", "clues": ["come up", "skin", "trash", "dispute", "quarrel", "kowtow", "scratch up", "genuflect", "altercate", "scrap", "junk", "scrape up", "argufy", "grate", "scratch"]}, {"answer": "scraps", "hint": "synonyms for scraps", "clues": ["trash", "dispute", "quarrel", "altercate", "scrap", "junk", "argufy"]}, {"answer": "scratch", "hint": "synonyms for scratch", "clues": ["call off", "grave", "come up", "fray", "fret", "rub", "cancel", "scratch up", "excise", "engrave", "scrub", "inscribe", "itch", "scrape up", "scrape", "chafe", "expunge", "strike", "scratch"]}, {"answer": "scratching", "hint": "synonyms for scratching", "clues": ["call off", "come up", "fray", "rub", "scratch up", "scrub", "itch", "scrape up", "scrape", "inscribe", "expunge", "engrave", "scratch", "grave", "fret", "cancel", "excise", "chafe", "strike"]}, {"answer": "scream", "hint": "synonyms for scream", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "shout out", "hollo", "scream"]}, {"answer": "screech", "hint": "synonyms for screech", "clues": ["whine", "squawk", "skreak", "skreigh", "squeak", "creak", "screech"]}, {"answer": "screeching", "hint": "synonyms for screeching", "clues": ["whine", "squawk", "skreak", "screech", "skreigh", "squeak", "creak"]}, {"answer": "screen", "hint": "synonyms for screen", "clues": ["test", "block out", "sieve", "shield", "sort", "riddle", "screen out", "screen"]}, {"answer": "screening", "hint": "synonyms for screening", "clues": ["block out", "screen", "sort", "screen out", "test", "sieve", "shield", "riddle"]}, {"answer": "screw", "hint": "synonyms for screw", "clues": ["chouse", "roll in the hay", "hump", "have a go at it", "jockey", "shaft", "bonk", "have sex", "cheat", "sleep together", "make out", "be intimate", "have it off", "bed", "drive in", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "jazz", "know", "get laid", "have it away", "chicane", "do it", "fuck", "lie with", "make love", "screw"]}, {"answer": "screwing", "hint": "synonyms for screwing", "clues": ["chouse", "roll in the hay", "hump", "have a go at it", "jockey", "shaft", "bonk", "have sex", "cheat", "sleep together", "make out", "be intimate", "have it off", "bed", "drive in", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "chicane", "do it", "fuck", "lie with", "make love"]}, {"answer": "scrubbing", "hint": "synonyms for scrubbing", "clues": ["call off", "scrub", "scrub up", "cancel", "scour", "scratch", "scrubbing"]}, {"answer": "scrubs", "hint": "synonyms for scrubs", "clues": ["call off", "scrub", "scrub up", "cancel", "scour", "scratch"]}, {"answer": "scrunch", "hint": "synonyms for scrunch", "clues": ["squat", "crease", "wrinkle", "ruckle", "hunker down", "thud", "scrunch up", "crump", "hunker", "crisp", "crouch", "scrunch"]}, {"answer": "scud", "hint": "synonyms for scud", "clues": ["flash", "scoot", "dart", "shoot", "dash", "rack", "scud"]}, {"answer": "scudding", "hint": "synonyms for scudding", "clues": ["shoot", "scud", "flash", "dart", "scoot", "dash", "rack", "scudding"]}, {"answer": "scupper", "hint": "synonyms for scupper", "clues": ["lie in wait", "queer", "waylay", "bushwhack", "lurk", "expose", "ambush", "peril", "ambuscade", "endanger", "scupper"]}, {"answer": "search", "hint": "synonyms for search", "clues": ["seek", "explore", "look for", "look", "research"]}, {"answer": "season", "hint": "synonyms for season", "clues": ["temper", "mollify", "flavour", "harden", "season"]}, {"answer": "seasoning", "hint": "synonyms for seasoning", "clues": ["temper", "mollify", "flavour", "harden", "season"]}, {"answer": "seat", "hint": "synonyms for seat", "clues": ["induct", "sit", "invest", "sit down", "seat"]}, {"answer": "seating", "hint": "synonyms for seating", "clues": ["sit", "induct", "seat", "invest", "sit down"]}, {"answer": "seats", "hint": "synonyms for seats", "clues": ["sit", "induct", "seat", "invest", "sit down"]}, {"answer": "see", "hint": "synonyms for see", "clues": ["get wind", "get a line", "understand", "see to it", "escort", "reckon", "view", "project", "examine", "image", "determine", "visualize", "witness", "fancy", "consider", "interpret", "check", "go steady", "discover", "experience", "envision", "find out", "take care", "ascertain", "run into", "insure", "figure", "construe", "encounter", "learn", "watch", "run across", "get word", "assure", "attend", "date", "realise", "go through", "take in", "control", "ensure", "hear", "picture", "meet", "look", "regard", "pick up", "go out", "come across", "visit", "catch", "find", "see"]}, {"answer": "seek", "hint": "synonyms for seek", "clues": ["assay", "search", "try", "attempt", "look for", "essay", "seek"]}, {"answer": "seeking", "hint": "synonyms for seeking", "clues": ["seek", "try", "look for", "search", "assay", "attempt", "essay"]}, {"answer": "seesaw", "hint": "synonyms for seesaw", "clues": ["teeter", "teetertotter", "totter", "seesaw"]}, {"answer": "seizing", "hint": "synonyms for seizing", "clues": ["appropriate", "impound", "capture", "attach", "clutch", "assume", "seize", "take over", "get hold of", "prehend", "arrogate", "conquer", "confiscate", "usurp", "grab", "sequester", "seizing"]}, {"answer": "selling", "hint": "synonyms for selling", "clues": ["betray", "sell", "trade", "deal"]}, {"answer": "sending", "hint": "synonyms for sending", "clues": ["post", "get off", "beam", "station", "commit", "charge", "direct", "institutionalize", "transport", "air", "send", "place", "send off", "broadcast", "ship", "mail", "transmit", "send out"]}, {"answer": "sensing", "hint": "synonyms for sensing", "clues": ["smell", "sense", "feel", "smell out", "sensing"]}, {"answer": "serve", "hint": "synonyms for serve", "clues": ["dish up", "dish", "suffice", "answer", "function", "attend", "service", "serve up", "serve well", "help", "do", "dish out", "assist", "attend to", "wait on", "process", "swear out", "serve"]}, {"answer": "serving", "hint": "synonyms for serving", "clues": ["dish up", "dish", "function", "attend", "serve up", "assist", "wait on", "swear out", "dish out", "suffice", "answer", "service", "serve well", "process", "help", "do", "attend to", "serve", "serving"]}, {"answer": "setting", "hint": "synonyms for setting", "clues": ["go under", "countersink", "fix", "mark", "coiffe", "define", "set", "determine", "place", "fructify", "specify", "limit", "rig", "gear up", "set up", "localize", "prepare", "go down", "correct", "typeset", "sic", "put", "adjust", "ready", "dress", "coif", "pose", "lay", "plant", "arrange", "jell", "lay out", "congeal", "do", "position", "setting"]}, {"answer": "settle", "hint": "synonyms for settle", "clues": ["adjudicate", "go down", "sink", "get back", "go under", "nail down", "settle down", "patch up", "subside", "conciliate", "make up", "square up", "decide", "determine", "fall", "steady down", "resolve", "locate", "square off", "reconcile", "root", "ensconce", "finalise", "descend", "take root", "settle"]}, {"answer": "settling", "hint": "synonyms for settling", "clues": ["adjudicate", "go down", "sink", "get back", "go under", "nail down", "settle down", "patch up", "subside", "conciliate", "settle", "make up", "square up", "decide", "determine", "fall", "steady down", "resolve", "locate", "square off", "reconcile", "root", "ensconce", "finalise", "descend", "take root", "settling"]}, {"answer": "settlings", "hint": "synonyms for settlings", "clues": ["adjudicate", "go down", "sink", "get back", "go under", "nail down", "settle down", "patch up", "subside", "conciliate", "settle", "make up", "square up", "decide", "determine", "fall", "steady down", "resolve", "locate", "square off", "reconcile", "root", "ensconce", "finalise", "descend", "take root", "settlings"]}, {"answer": "severing", "hint": "synonyms for severing", "clues": ["discerp", "break up", "lop", "sever"]}, {"answer": "sewing", "hint": "synonyms for sewing", "clues": ["tailor-make", "tailor", "sew", "stitch", "run up", "sew together"]}, {"answer": "sex", "hint": "synonyms for sex", "clues": ["wind up", "arouse", "excite", "turn on", "sex"]}, {"answer": "shack", "hint": "synonyms for shack", "clues": ["domiciliate", "domicile", "reside", "trail", "shack"]}, {"answer": "shades", "hint": "synonyms for shades", "clues": ["shade", "fill in", "shade off", "shadow"]}, {"answer": "shading", "hint": "synonyms for shading", "clues": ["shade", "fill in", "shade off", "shadow", "shading"]}, {"answer": "shadow", "hint": "synonyms for shadow", "clues": ["shade", "shade off", "dwarf", "overshadow", "shadow"]}, {"answer": "shadowing", "hint": "synonyms for shadowing", "clues": ["shade", "shadow", "shade off", "dwarf", "overshadow"]}, {"answer": "shaft", "hint": "synonyms for shaft", "clues": ["cheat", "chouse", "screw", "jockey", "chicane", "shaft"]}, {"answer": "shake", "hint": "synonyms for shake", "clues": ["stir", "shake off", "escape from", "sway", "shake up", "stimulate", "didder", "judder", "agitate", "excite", "throw off", "rock", "shake"]}, {"answer": "shaking", "hint": "synonyms for shaking", "clues": ["stir", "shake off", "escape from", "sway", "shake up", "stimulate", "judder", "didder", "agitate", "shake", "excite", "throw off", "rock", "shaking"]}, {"answer": "shame", "hint": "synonyms for shame", "clues": ["disgrace", "dishonour", "attaint", "shame"]}, {"answer": "shape", "hint": "synonyms for shape", "clues": ["determine", "form", "forge", "regulate", "influence", "mould", "work", "shape"]}, {"answer": "share", "hint": "synonyms for share", "clues": ["divvy up", "portion out", "partake in", "deal", "partake", "apportion", "share"]}, {"answer": "shaving", "hint": "synonyms for shaving", "clues": ["trim", "knock off", "plane", "shave", "shaving"]}, {"answer": "shedding", "hint": "synonyms for shedding", "clues": ["throw", "exuviate", "shake off", "shed", "drop", "molt", "cast off", "throw away", "throw off", "cast", "disgorge", "slough", "spill", "pour forth", "shedding"]}, {"answer": "shell", "hint": "synonyms for shell", "clues": ["vanquish", "trounce", "beat out", "crush", "beat", "husk", "blast", "shell"]}, {"answer": "shelling", "hint": "synonyms for shelling", "clues": ["husk", "blast", "vanquish", "shell", "trounce", "beat out", "crush", "beat"]}, {"answer": "shift", "hint": "synonyms for shift", "clues": ["stir", "reposition", "careen", "change", "switch", "lurch", "agitate", "transfer", "change over", "budge", "wobble", "tilt", "pitch", "dislodge", "shift"]}, {"answer": "shillyshally", "hint": "synonyms for shillyshally", "clues": ["drag one's heels", "dilly-dally", "drag one's feet", "procrastinate", "stall", "shillyshally"]}, {"answer": "shin", "hint": "synonyms for shin", "clues": ["skin", "clamber", "sputter", "scramble", "struggle", "shinny", "shin"]}, {"answer": "shine", "hint": "synonyms for shine", "clues": ["reflect", "fall", "beam", "glitter", "glint", "polish", "smooth", "strike", "glow", "radiate", "gleam", "glisten", "shine"]}, {"answer": "shinny", "hint": "synonyms for shinny", "clues": ["shin", "skin", "clamber", "sputter", "scramble", "struggle", "shinny"]}, {"answer": "shipping", "hint": "synonyms for shipping", "clues": ["send", "ship", "embark", "transport", "shipping"]}, {"answer": "shirking", "hint": "synonyms for shirking", "clues": ["shrink from", "fiddle", "shirk", "goldbrick"]}, {"answer": "shit", "hint": "synonyms for shit", "clues": ["betray", "tell on", "make", "take a crap", "denounce", "shop", "snitch", "take a shit", "defecate", "stool", "give away", "stag", "ca-ca", "grass", "rat", "crap", "shit"]}, {"answer": "shitting", "hint": "synonyms for shitting", "clues": ["betray", "shit", "tell on", "make", "take a crap", "denounce", "shop", "snitch", "take a shit", "defecate", "stool", "give away", "stag", "ca-ca", "grass", "rat", "crap", "shitting"]}, {"answer": "shock", "hint": "synonyms for shock", "clues": ["ball over", "appall", "offend", "take aback", "scandalise", "outrage", "traumatise", "floor", "blow out of the water", "shock"]}, {"answer": "shook", "hint": "synonyms for shook", "clues": ["stir", "shake off", "escape from", "sway", "shake up", "stimulate", "judder", "didder", "agitate", "shake", "excite", "throw off", "rock", "shook"]}, {"answer": "shoot", "hint": "synonyms for shoot", "clues": ["sprout", "dissipate", "buck", "snap", "bourgeon", "hit", "inject", "photograph", "film", "blast", "pullulate", "fool away", "charge", "pip", "tear", "scud", "flash", "shoot down", "fool", "scoot", "fritter", "germinate", "frivol away", "take", "fritter away", "spud", "dart", "dash", "burgeon forth", "shoot"]}, {"answer": "shooting", "hint": "synonyms for shooting", "clues": ["sprout", "dissipate", "buck", "snap", "bourgeon", "hit", "shoot", "inject", "photograph", "film", "blast", "pullulate", "fool away", "charge", "pip", "tear", "scud", "flash", "shoot down", "fool", "scoot", "fritter", "germinate", "frivol away", "take", "fritter away", "spud", "dart", "dash", "burgeon forth"]}, {"answer": "shop", "hint": "synonyms for shop", "clues": ["tell on", "give away", "stag", "browse", "sponsor", "betray", "shit", "patronise", "denounce", "shop at", "buy at", "snitch", "frequent", "grass", "rat", "shop"]}, {"answer": "shopping", "hint": "synonyms for shopping", "clues": ["betray", "shit", "tell on", "patronise", "denounce", "shop at", "buy at", "snitch", "frequent", "grass", "give away", "stag", "sponsor", "rat", "browse", "shop", "shopping"]}, {"answer": "shore", "hint": "synonyms for shore", "clues": ["land", "shore up", "prop up", "prop", "set ashore", "shore"]}, {"answer": "shoring", "hint": "synonyms for shoring", "clues": ["land", "shore", "shore up", "prop up", "prop", "set ashore", "shoring"]}, {"answer": "shortening", "hint": "synonyms for shortening", "clues": ["abbreviate", "abridge", "bowdlerise", "expurgate", "reduce", "cut", "foreshorten", "contract", "shorten", "castrate"]}, {"answer": "shout", "hint": "synonyms for shout", "clues": ["clapperclaw", "holler", "yell", "cry out", "call out", "call", "cry", "squall", "shout out", "scream", "abuse", "blackguard", "exclaim", "hollo", "outcry", "shout"]}, {"answer": "shouting", "hint": "synonyms for shouting", "clues": ["clapperclaw", "holler", "yell", "cry out", "call out", "call", "cry", "shout", "squall", "scream", "abuse", "hollo", "blackguard", "exclaim", "shout out", "outcry"]}, {"answer": "shove", "hint": "synonyms for shove", "clues": ["squeeze", "thrust", "stuff", "jostle", "shove"]}, {"answer": "show", "hint": "synonyms for show", "clues": ["show up", "read", "depict", "usher", "exhibit", "express", "testify", "point", "record", "designate", "evince", "establish", "render", "prove", "demonstrate", "picture", "register", "demo", "indicate", "shew", "present", "bear witness", "show"]}, {"answer": "showing", "hint": "synonyms for showing", "clues": ["show up", "read", "show", "depict", "usher", "exhibit", "express", "testify", "point", "record", "evince", "establish", "designate", "render", "prove", "demonstrate", "picture", "register", "demo", "indicate", "shew", "present", "bear witness"]}, {"answer": "shrieking", "hint": "synonyms for shrieking", "clues": ["pipe up", "shrill", "shriek", "pipe"]}, {"answer": "shrilling", "hint": "synonyms for shrilling", "clues": ["pipe up", "shrill", "shriek", "pipe"]}, {"answer": "shrink", "hint": "synonyms for shrink", "clues": ["cringe", "squinch", "wince", "reduce", "quail", "wither", "recoil", "contract", "shrivel up", "shrivel", "flinch", "funk", "shrink"]}, {"answer": "shrinking", "hint": "synonyms for shrinking", "clues": ["shrivel", "cringe", "squinch", "wince", "reduce", "quail", "shrink", "recoil", "contract", "shrivel up", "wither", "flinch", "funk"]}, {"answer": "shuffle", "hint": "synonyms for shuffle", "clues": ["scuffle", "shamble", "mix", "ruffle"]}, {"answer": "shuffling", "hint": "synonyms for shuffling", "clues": ["scuffle", "mix", "ruffle", "shamble", "shuffling"]}, {"answer": "shunning", "hint": "synonyms for shunning", "clues": ["blackball", "shun", "banish", "ostracise", "eschew", "ban", "cast out", "shunning"]}, {"answer": "shutting", "hint": "synonyms for shutting", "clues": ["exclude", "shut", "shut out", "keep out", "close", "shutting"]}, {"answer": "sidestep", "hint": "synonyms for sidestep", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "evade", "fudge", "elude", "duck", "hedge", "sidestep"]}, {"answer": "sieve", "hint": "synonyms for sieve", "clues": ["screen", "sort", "strain", "screen out", "sift", "sieve"]}, {"answer": "signaling", "hint": "synonyms for signaling", "clues": ["betoken", "signalise", "bespeak", "sign", "indicate", "point", "signal"]}, {"answer": "signified", "hint": "synonyms for signified", "clues": ["stand for", "mean", "intend", "signify", "signified"]}, {"answer": "signing", "hint": "synonyms for signing", "clues": ["sign on", "sign up", "signalise", "subscribe", "sign", "bless", "ratify", "contract", "signal"]}, {"answer": "silence", "hint": "synonyms for silence", "clues": ["hush", "hush up", "still", "shut up", "quieten", "silence"]}, {"answer": "sin", "hint": "synonyms for sin", "clues": ["goof", "trespass", "drop the ball", "boob", "blunder", "transgress", "sin"]}, {"answer": "sink", "hint": "synonyms for sink", "clues": ["lapse", "slide down", "go down", "drop", "bury", "pass", "go under", "dip", "drop down", "fall off", "slump", "subside", "settle", "sink"]}, {"answer": "sinking", "hint": "synonyms for sinking", "clues": ["lapse", "slide down", "sink", "drop", "go down", "subside", "bury", "go under", "dip", "drop down", "fall off", "slump", "pass", "settle"]}, {"answer": "sire", "hint": "synonyms for sire", "clues": ["generate", "bring forth", "mother", "get", "beget", "engender", "father", "sire"]}, {"answer": "skid", "hint": "synonyms for skid", "clues": ["slide", "slip", "slew", "slue", "skid"]}, {"answer": "skimming", "hint": "synonyms for skimming", "clues": ["run down", "skitter", "skip", "glance over", "scan", "skim", "skim over", "cream off", "rake", "cream", "skim off", "plane", "skimming"]}, {"answer": "skin", "hint": "synonyms for skin", "clues": ["pare", "scramble", "shin", "sputter", "clamber", "struggle", "bark", "scrape", "shinny", "peel", "skin"]}, {"answer": "skip", "hint": "synonyms for skip", "clues": ["skitter", "bound off", "jump", "skim", "cut", "hop-skip", "decamp", "hop", "vamoose", "skip over", "pass over", "skip"]}, {"answer": "skirt", "hint": "synonyms for skirt", "clues": ["parry", "circumvent", "environ", "dodge", "border", "ring", "put off", "evade", "fudge", "sidestep", "elude", "duck", "surround", "hedge", "skirt"]}, {"answer": "skylark", "hint": "synonyms for skylark", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "lark about", "disport", "romp", "skylark"]}, {"answer": "slackening", "hint": "synonyms for slackening", "clues": ["slow up", "slacken", "remit", "slack", "relax", "slow down", "slow", "slack up"]}, {"answer": "slacking", "hint": "synonyms for slacking", "clues": ["abate", "die away", "slacken", "slow up", "slack", "relax", "slow down", "let up", "slow", "slack off", "slake", "slack up"]}, {"answer": "slacks", "hint": "synonyms for slacks", "clues": ["abate", "die away", "slacken", "slow up", "slack", "relax", "slow down", "let up", "slow", "slack off", "slake", "slack up"]}, {"answer": "slam", "hint": "synonyms for slam", "clues": ["slam dance", "mosh", "flap down", "thrash", "bang", "slam"]}, {"answer": "slam_dancing", "hint": "synonyms for slam dancing", "clues": ["slam", "slam dance", "thrash", "mosh", "slam dancing"]}, {"answer": "slander", "hint": "synonyms for slander", "clues": ["denigrate", "sully", "asperse", "calumniate", "besmirch", "defame", "smear", "slander"]}, {"answer": "slang", "hint": "synonyms for slang", "clues": ["cod", "fool", "dupe", "gull", "befool", "put one across", "take in", "put one over", "put on", "slang"]}, {"answer": "slant", "hint": "synonyms for slant", "clues": ["lean", "cant", "angle", "cant over", "tip", "tilt", "pitch", "weight", "slant"]}, {"answer": "slash", "hint": "synonyms for slash", "clues": ["thrash about", "toss", "thresh", "lather", "jactitate", "thrash", "cut down", "convulse", "whip", "lash", "trounce", "strap", "flog", "gash", "welt"]}, {"answer": "slaver", "hint": "synonyms for slaver", "clues": ["drool", "slobber", "dribble", "drivel", "slaver"]}, {"answer": "slaying", "hint": "synonyms for slaying", "clues": ["remove", "bump off", "hit", "polish off", "off", "murder", "slay", "dispatch"]}, {"answer": "sleep", "hint": "synonyms for sleep", "clues": ["slumber", "catch some Z's", "kip", "log Z's", "sleep"]}, {"answer": "sleuthing", "hint": "synonyms for sleuthing", "clues": ["sleuth", "spy", "snoop", "stag"]}, {"answer": "slew", "hint": "synonyms for slew", "clues": ["remove", "bump off", "swerve", "slue", "hit", "polish off", "skid", "off", "trend", "cut", "curve", "veer", "murder", "slide", "slip", "sheer", "slay", "dispatch", "slew"]}, {"answer": "slews", "hint": "synonyms for slews", "clues": ["slew", "swerve", "slue", "skid", "curve", "cut", "trend", "veer", "slide", "slip", "sheer"]}, {"answer": "slide", "hint": "synonyms for slide", "clues": ["slew", "slither", "slue", "slip", "skid", "slide"]}, {"answer": "slip", "hint": "synonyms for slip", "clues": ["mistake", "slew", "drop off", "dislocate", "fall away", "slue", "luxate", "skid", "err", "slip one's mind", "drop away", "slide", "steal", "splay", "sneak", "slip"]}, {"answer": "slobber", "hint": "synonyms for slobber", "clues": ["drivel", "drool", "dribble", "slabber", "slaver"]}, {"answer": "slop", "hint": "synonyms for slop", "clues": ["splatter", "slosh", "squelch", "swill", "squish", "splash", "spill", "slop"]}, {"answer": "slops", "hint": "synonyms for slops", "clues": ["squelch", "swill", "splosh", "slop", "splash", "splatter", "squish", "spill"]}, {"answer": "slough", "hint": "synonyms for slough", "clues": ["molt", "shed", "exuviate", "slough"]}, {"answer": "sloughing", "hint": "synonyms for sloughing", "clues": ["exuviate", "shed", "molt", "slough"]}, {"answer": "slowing", "hint": "synonyms for slowing", "clues": ["decelerate", "slow up", "slacken", "slack", "slow down", "slow", "retard"]}, {"answer": "slug", "hint": "synonyms for slug", "clues": ["stagnate", "swig", "idle", "laze", "slog", "slug"]}, {"answer": "slumber", "hint": "synonyms for slumber", "clues": ["sleep", "catch some Z's", "kip", "log Z's", "slumber"]}, {"answer": "slump", "hint": "synonyms for slump", "clues": ["slide down", "decline", "correct", "sink", "fall off", "slouch", "slump"]}, {"answer": "slush", "hint": "synonyms for slush", "clues": ["slosh", "slush around", "splash", "slush"]}, {"answer": "smacking", "hint": "synonyms for smacking", "clues": ["smell", "peck", "smack", "thwack", "reek", "taste"]}, {"answer": "smattering", "hint": "synonyms for smattering", "clues": ["blather", "babble", "dabble", "smatter", "play around"]}, {"answer": "smear", "hint": "synonyms for smear", "clues": ["denigrate", "sully", "defame", "asperse", "calumniate", "besmirch", "slander", "blur", "smudge", "smutch", "daub", "smear"]}, {"answer": "smell", "hint": "synonyms for smell", "clues": ["smell out", "reek", "smack", "sense", "smell"]}, {"answer": "smelt", "hint": "synonyms for smelt", "clues": ["smell", "smack", "sense", "smell out", "reek", "smelt"]}, {"answer": "smirch", "hint": "synonyms for smirch", "clues": ["denigrate", "sully", "asperse", "calumniate", "besmirch", "slander", "defame", "smear"]}, {"answer": "smother", "hint": "synonyms for smother", "clues": ["asphyxiate", "muffle", "stifle", "suffocate", "surround", "repress", "put out", "strangle", "smother"]}, {"answer": "snap", "hint": "synonyms for snap", "clues": ["tear", "snatch", "shoot", "rupture", "click", "photograph", "flick", "crack", "snatch up", "snarl", "lose it", "break down", "bust", "snap"]}, {"answer": "snare", "hint": "synonyms for snare", "clues": ["trammel", "hook", "ensnare", "entrap", "trap", "snare"]}, {"answer": "snarl", "hint": "synonyms for snarl", "clues": ["snarl up", "embrangle", "tangle", "snap", "mat", "snarl"]}, {"answer": "snatch", "hint": "synonyms for snatch", "clues": ["abduct", "snap", "snatch up", "nobble", "kidnap", "snatch"]}, {"answer": "sniffle", "hint": "synonyms for sniffle", "clues": ["sniff", "blub", "snuffle", "blubber", "snivel"]}, {"answer": "snip", "hint": "synonyms for snip", "clues": ["cut back", "trim", "snip off", "crop", "lop", "dress", "prune", "clip", "nip"]}, {"answer": "snipe", "hint": "synonyms for snipe", "clues": ["lash out", "sharpshoot", "round", "assault", "assail", "attack", "snipe"]}, {"answer": "snipping", "hint": "synonyms for snipping", "clues": ["cut back", "trim", "snip", "snip off", "crop", "lop", "dress", "prune", "clip", "snipping"]}, {"answer": "snips", "hint": "synonyms for snips", "clues": ["cut back", "trim", "snip", "snip off", "crop", "lop", "dress", "prune", "clip"]}, {"answer": "snitch", "hint": "synonyms for snitch", "clues": ["betray", "shit", "tell on", "denounce", "grass", "glom", "give away", "stag", "thieve", "hook", "knock off", "rat", "cop", "shop", "snitch"]}, {"answer": "snivel", "hint": "synonyms for snivel", "clues": ["whine", "snuffle", "blub", "blubber", "snivel"]}, {"answer": "sniveling", "hint": "synonyms for sniveling", "clues": ["whine", "snuffle", "blub", "blubber", "snivel"]}, {"answer": "snogging", "hint": "synonyms for snogging", "clues": ["snog", "kiss", "buss", "osculate", "snogging"]}, {"answer": "snow", "hint": "synonyms for snow", "clues": ["lead by the nose", "bamboozle", "play false", "pull the wool over someone's eyes", "hoodwink", "snow"]}, {"answer": "snuffle", "hint": "synonyms for snuffle", "clues": ["blub", "snuff", "sniffle", "blubber", "snivel"]}, {"answer": "snuggle", "hint": "synonyms for snuggle", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle"]}, {"answer": "snuggling", "hint": "synonyms for snuggling", "clues": ["cuddle", "nuzzle", "nest", "draw close", "nestle", "snuggle", "snuggling"]}, {"answer": "soak", "hint": "synonyms for soak", "clues": ["hock", "hit it up", "fleece", "gazump", "hook", "pawn", "intoxicate", "inebriate", "plume", "sop", "drench", "imbue", "dowse", "souse", "pluck", "rob", "overcharge", "surcharge", "douse", "soak"]}, {"answer": "soar", "hint": "synonyms for soar", "clues": ["sailplane", "hang glide", "zoom", "soar upwards", "soar up", "surge", "soar"]}, {"answer": "sock", "hint": "synonyms for sock", "clues": ["bop", "bash", "whop", "whap", "bonk", "sock"]}, {"answer": "soil", "hint": "synonyms for soil", "clues": ["bemire", "dirty", "begrime", "colly", "grime", "soil"]}, {"answer": "soiling", "hint": "synonyms for soiling", "clues": ["bemire", "soil", "dirty", "begrime", "colly", "grime"]}, {"answer": "solving", "hint": "synonyms for solving", "clues": ["work out", "lick", "puzzle out", "resolve", "clear", "figure out", "work", "solve", "solving"]}, {"answer": "sop", "hint": "synonyms for sop", "clues": ["soak", "drench", "souse", "dowse", "douse", "soak through", "sop"]}, {"answer": "sophisticate", "hint": "synonyms for sophisticate", "clues": ["doctor up", "doctor", "convolute", "twist around", "twist", "pervert", "sophisticate"]}, {"answer": "sops", "hint": "synonyms for sops", "clues": ["soak", "sop", "drench", "dowse", "souse", "soak through", "douse"]}, {"answer": "sort", "hint": "synonyms for sort", "clues": ["screen", "sort out", "screen out", "assort", "class", "classify", "sieve", "separate", "sort"]}, {"answer": "sorting", "hint": "synonyms for sorting", "clues": ["screen", "sort", "sort out", "screen out", "assort", "class", "classify", "sieve", "separate"]}, {"answer": "souring", "hint": "synonyms for souring", "clues": ["sour", "acidulate", "acidify", "turn", "ferment", "work", "acetify"]}, {"answer": "souse", "hint": "synonyms for souse", "clues": ["soak", "sop", "drench", "hit it up", "dowse", "dip", "plunge", "dunk", "douse", "inebriate", "souse"]}, {"answer": "sousing", "hint": "synonyms for sousing", "clues": ["soak", "sop", "drench", "hit it up", "souse", "dowse", "dip", "plunge", "dunk", "douse", "inebriate", "sousing"]}, {"answer": "spark", "hint": "synonyms for spark", "clues": ["set off", "spark off", "trigger", "actuate", "trigger off", "sparkle", "trip", "touch off", "activate", "spark"]}, {"answer": "sparkle", "hint": "synonyms for sparkle", "clues": ["effervesce", "coruscate", "spark", "scintillate", "form bubbles", "froth", "foam", "fizz", "sparkle"]}, {"answer": "spat", "hint": "synonyms for spat", "clues": ["acclaim", "sprinkle", "skewer", "spatter", "clap", "applaud", "ptyalise", "spew", "spit", "spue", "spit out", "pitter-patter", "spat"]}, {"answer": "spatter", "hint": "synonyms for spatter", "clues": ["sprinkle", "splosh", "splash", "bespatter", "patter", "spit", "swash", "pitter-patter"]}, {"answer": "spattering", "hint": "synonyms for spattering", "clues": ["sprinkle", "spatter", "splosh", "splash", "spit", "swash", "pitter-patter"]}, {"answer": "spaying", "hint": "synonyms for spaying", "clues": ["spay", "neuter", "alter", "castrate"]}, {"answer": "speed", "hint": "synonyms for speed", "clues": ["bucket along", "accelerate", "hurry", "hotfoot", "step on it", "belt along", "speed up", "rush along", "hie", "hasten", "race", "travel rapidly", "zip", "rush", "quicken", "cannonball along", "speed"]}, {"answer": "speeding", "hint": "synonyms for speeding", "clues": ["bucket along", "accelerate", "hotfoot", "hurry", "step on it", "belt along", "speed up", "rush along", "hie", "hasten", "speed", "race", "travel rapidly", "zip", "rush", "quicken", "cannonball along"]}, {"answer": "spelling", "hint": "synonyms for spelling", "clues": ["spell out", "write", "import", "spell"]}, {"answer": "spelt", "hint": "synonyms for spelt", "clues": ["spell out", "write", "import", "spell", "spelt"]}, {"answer": "spending", "hint": "synonyms for spending", "clues": ["drop", "spend", "pass", "expend"]}, {"answer": "spike", "hint": "synonyms for spike", "clues": ["transfix", "lace", "empale", "fortify", "spike out", "impale", "spike"]}, {"answer": "spill", "hint": "synonyms for spill", "clues": ["splatter", "run out", "shed", "disgorge", "slop", "pour forth", "talk", "spill"]}, {"answer": "spin", "hint": "synonyms for spin", "clues": ["spin around", "reel", "spin out", "birl", "gyrate", "whirl", "twirl", "spin"]}, {"answer": "spinning", "hint": "synonyms for spinning", "clues": ["spin around", "reel", "gyrate", "birl", "spin", "spin out", "whirl", "twirl", "spinning"]}, {"answer": "spirt", "hint": "synonyms for spirt", "clues": ["spurt", "forge", "gush", "spout", "spirt"]}, {"answer": "spit", "hint": "synonyms for spit", "clues": ["skewer", "sprinkle", "spatter", "ptyalise", "spew", "spue", "spit out", "pitter-patter", "spit"]}, {"answer": "spite", "hint": "synonyms for spite", "clues": ["injure", "bruise", "hurt", "offend", "wound", "spite"]}, {"answer": "spitting", "hint": "synonyms for spitting", "clues": ["skewer", "sprinkle", "spatter", "ptyalise", "spew", "spit", "spue", "spit out", "pitter-patter", "spitting"]}, {"answer": "splash", "hint": "synonyms for splash", "clues": ["sprinkle", "spatter", "squelch", "splosh", "slop", "slush", "plash", "squish", "swash"]}, {"answer": "splashing", "hint": "synonyms for splashing", "clues": ["sprinkle", "spatter", "squelch", "splosh", "splash", "slop", "slush", "squish", "swash"]}, {"answer": "splatter", "hint": "synonyms for splatter", "clues": ["swash", "spatter", "splosh", "slop", "spill", "plash"]}, {"answer": "splattering", "hint": "synonyms for splattering", "clues": ["spatter", "splosh", "slop", "splash", "swash", "spill", "splattering"]}, {"answer": "splicing", "hint": "synonyms for splicing", "clues": ["marry", "splice", "tie", "wed", "splicing"]}, {"answer": "splintering", "hint": "synonyms for splintering", "clues": ["secede", "sliver", "break away", "splinter"]}, {"answer": "splinters", "hint": "synonyms for splinters", "clues": ["secede", "sliver", "break away", "splinter"]}, {"answer": "split_up", "hint": "synonyms for split up", "clues": ["break", "break up", "fall apart", "divide", "divorce", "carve up", "come apart", "dissever", "separate", "part", "split", "split up"]}, {"answer": "spoil", "hint": "synonyms for spoil", "clues": ["botch up", "bollix", "pamper", "bollocks", "queer", "bobble", "muff", "plunder", "bilk", "indulge", "violate", "impair", "baffle", "mess up", "mollycoddle", "frustrate", "baby", "cocker", "scotch", "deflower", "fumble", "louse up", "coddle", "foul up", "thwart", "botch", "bumble", "despoil", "muck up", "cross", "rape", "flub", "bollix up", "fluff", "bollocks up", "bungle", "itch", "mar", "vitiate", "mishandle", "screw up", "featherbed", "bodge", "foil", "go bad", "corrupt", "cosset", "ball up", "blow", "spoil"]}, {"answer": "spoiling", "hint": "synonyms for spoiling", "clues": ["botch up", "bollix", "pamper", "bollocks", "queer", "bobble", "muff", "plunder", "bilk", "indulge", "violate", "impair", "baffle", "mess up", "mollycoddle", "frustrate", "baby", "cocker", "scotch", "deflower", "fumble", "louse up", "coddle", "foul up", "thwart", "botch", "bumble", "despoil", "muck up", "spoil", "cross", "rape", "flub", "bollix up", "fluff", "bollocks up", "bungle", "itch", "mar", "vitiate", "mishandle", "screw up", "featherbed", "bodge", "foil", "go bad", "corrupt", "cosset", "ball up", "blow"]}, {"answer": "spoke", "hint": "synonyms for spoke", "clues": ["mouth", "speak", "utter", "address", "verbalise", "talk", "spoke"]}, {"answer": "sponge", "hint": "synonyms for sponge", "clues": ["mooch", "grub", "bum", "cadge", "sponge"]}, {"answer": "sponsor", "hint": "synonyms for sponsor", "clues": ["patronise", "shop at", "buy at", "frequent", "shop", "sponsor"]}, {"answer": "sport", "hint": "synonyms for sport", "clues": ["frisk", "gambol", "feature", "cavort", "frolic", "boast", "lark", "run around", "rollick", "skylark", "lark about", "disport", "romp", "sport"]}, {"answer": "spot", "hint": "synonyms for spot", "clues": ["recognise", "blemish", "fleck", "blob", "tell apart", "blot", "pick out", "make out", "descry", "discern", "distinguish", "espy", "spot"]}, {"answer": "spots", "hint": "synonyms for spots", "clues": ["recognise", "blemish", "spot", "fleck", "blob", "tell apart", "blot", "pick out", "make out", "descry", "discern", "distinguish", "espy"]}, {"answer": "spotting", "hint": "synonyms for spotting", "clues": ["recognise", "blemish", "spot", "fleck", "blob", "tell apart", "blot", "pick out", "make out", "descry", "discern", "distinguish", "espy", "spotting"]}, {"answer": "spout", "hint": "synonyms for spout", "clues": ["rave", "rant", "rabbit on", "spurt", "spirt", "jabber", "gush", "mouth off", "spout"]}, {"answer": "sprain", "hint": "synonyms for sprain", "clues": ["rick", "turn", "twist", "wrench", "sprain"]}, {"answer": "spreading", "hint": "synonyms for spreading", "clues": ["circulate", "circularize", "scatter", "pass around", "spread", "propagate", "disperse", "spread out", "overspread", "diffuse", "fan out", "go around", "broadcast", "disseminate", "unfold", "open", "distribute"]}, {"answer": "spring", "hint": "synonyms for spring", "clues": ["rebound", "form", "bounce", "jump", "resile", "recoil", "take form", "leap", "ricochet", "take a hop", "reverberate", "bound", "take shape", "spring"]}, {"answer": "sprinkle", "hint": "synonyms for sprinkle", "clues": ["dot", "spatter", "splosh", "dust", "splash", "spit", "besprinkle", "disperse", "sparge", "pitter-patter"]}, {"answer": "sprinkles", "hint": "synonyms for sprinkles", "clues": ["sprinkle", "dot", "spatter", "splosh", "dust", "splash", "spit", "disperse", "sparge", "pitter-patter"]}, {"answer": "sprinkling", "hint": "synonyms for sprinkling", "clues": ["sprinkle", "dot", "spatter", "splosh", "dust", "splash", "spit", "disperse", "sparge", "pitter-patter", "sprinkling"]}, {"answer": "sprout", "hint": "synonyms for sprout", "clues": ["spud", "bourgeon", "stock", "shoot", "burgeon forth", "germinate", "pullulate", "sprout"]}, {"answer": "sprouting", "hint": "synonyms for sprouting", "clues": ["sprout", "bourgeon", "shoot", "germinate", "pullulate", "spud", "stock", "burgeon forth"]}, {"answer": "spud", "hint": "synonyms for spud", "clues": ["sprout", "bourgeon", "shoot", "burgeon forth", "germinate", "pullulate", "spud"]}, {"answer": "spurt", "hint": "synonyms for spurt", "clues": ["spirt", "forge", "gush", "spout", "spurt"]}, {"answer": "sputter", "hint": "synonyms for sputter", "clues": ["skin", "scramble", "splutter", "shin", "clamber", "struggle", "shinny", "spit out"]}, {"answer": "sputtering", "hint": "synonyms for sputtering", "clues": ["skin", "scramble", "splutter", "shin", "clamber", "struggle", "shinny", "spit out", "sputtering"]}, {"answer": "spy", "hint": "synonyms for spy", "clues": ["sleuth", "spot", "stag", "descry", "snoop", "sight", "espy"]}, {"answer": "spying", "hint": "synonyms for spying", "clues": ["spot", "snoop", "sight", "sleuth", "stag", "descry", "espy", "spying"]}, {"answer": "squabble", "hint": "synonyms for squabble", "clues": ["pettifog", "niggle", "brabble", "quibble", "bicker", "squabble"]}, {"answer": "squall", "hint": "synonyms for squall", "clues": ["holler", "waul", "yell", "call", "cry", "shout", "scream", "wawl", "hollo", "shout out", "squall"]}, {"answer": "squandering", "hint": "synonyms for squandering", "clues": ["ware", "consume", "waste", "blow", "squander"]}, {"answer": "squash", "hint": "synonyms for squash", "clues": ["squeeze", "crush", "squelch", "mash", "squash"]}, {"answer": "squatting", "hint": "synonyms for squatting", "clues": ["crouch", "squat", "hunker down", "scrunch up", "scrunch", "hunker", "squatting"]}, {"answer": "squawk", "hint": "synonyms for squawk", "clues": ["holler", "skreak", "bellyache", "crab", "grouse", "screech", "beef", "gripe", "skreigh", "bitch", "screak", "squawk"]}, {"answer": "squeak", "hint": "synonyms for squeak", "clues": ["whine", "screech", "skreak", "creak", "squeak"]}, {"answer": "squeeze", "hint": "synonyms for squeeze", "clues": ["coerce", "squelch", "twitch", "compact", "press", "bosom", "wring", "squash", "pressure", "gouge", "wedge", "thrust", "pinch", "shove", "hale", "compress", "twinge", "hug", "tweet", "extort", "embrace", "mash", "contract", "crush", "constrict", "rack", "nip", "stuff", "force", "squeeze"]}, {"answer": "squeezing", "hint": "synonyms for squeezing", "clues": ["coerce", "squelch", "twitch", "compact", "press", "bosom", "wring", "squash", "pressure", "gouge", "squeeze", "wedge", "thrust", "pinch", "shove", "hale", "compress", "twinge", "hug", "tweet", "extort", "embrace", "mash", "contract", "crush", "constrict", "rack", "nip", "stuff", "force", "squeezing"]}, {"answer": "squelch", "hint": "synonyms for squelch", "clues": ["splosh", "slop", "splash", "quench", "squash", "crush", "squish", "quell", "mash", "squeeze", "squelch"]}, {"answer": "squinch", "hint": "synonyms for squinch", "clues": ["cringe", "funk", "flinch", "wince", "squint", "quail", "shrink", "recoil", "squinch"]}, {"answer": "squirm", "hint": "synonyms for squirm", "clues": ["writhe", "worm", "twist", "wriggle", "wrestle", "squirm"]}, {"answer": "squish", "hint": "synonyms for squish", "clues": ["slosh", "squelch", "slop", "splash", "squish"]}, {"answer": "stab", "hint": "synonyms for stab", "clues": ["prod", "jab", "dig", "poke", "knife", "stab"]}, {"answer": "stag", "hint": "synonyms for stag", "clues": ["betray", "shit", "tell on", "snoop", "denounce", "shop", "snitch", "sleuth", "give away", "grass", "rat", "spy", "stag"]}, {"answer": "stagger", "hint": "synonyms for stagger", "clues": ["flounder", "careen", "reel", "lurch", "keel", "swag", "distribute", "stagger"]}, {"answer": "staggers", "hint": "synonyms for staggers", "clues": ["careen", "reel", "lurch", "swag", "flounder", "keel", "distribute", "stagger"]}, {"answer": "staging", "hint": "synonyms for staging", "clues": ["betray", "shit", "tell on", "snoop", "denounce", "arrange", "snitch", "represent", "sleuth", "rat", "give away", "stag", "grass", "shop", "spy"]}, {"answer": "stain", "hint": "synonyms for stain", "clues": ["maculate", "tarnish", "defile", "sully", "stain"]}, {"answer": "staining", "hint": "synonyms for staining", "clues": ["maculate", "stain", "sully", "defile", "tarnish"]}, {"answer": "stake", "hint": "synonyms for stake", "clues": ["adventure", "post", "jeopardize", "back", "hazard", "punt", "impale", "game", "gage", "bet on", "stake"]}, {"answer": "stakes", "hint": "synonyms for stakes", "clues": ["adventure", "post", "jeopardize", "back", "hazard", "punt", "impale", "game", "gage", "stake", "bet on"]}, {"answer": "stall", "hint": "synonyms for stall", "clues": ["shillyshally", "dilly-dally", "drag one's heels", "conk", "drag one's feet", "procrastinate", "stall"]}, {"answer": "stalling", "hint": "synonyms for stalling", "clues": ["shillyshally", "dilly-dally", "procrastinate", "drag one's heels", "conk", "stall", "drag one's feet"]}, {"answer": "stalls", "hint": "synonyms for stalls", "clues": ["shillyshally", "dilly-dally", "procrastinate", "drag one's heels", "conk", "stall", "drag one's feet"]}, {"answer": "stamp", "hint": "synonyms for stamp", "clues": ["pigeonhole", "emboss", "boss", "stomp", "stump", "stereotype", "stamp"]}, {"answer": "stand", "hint": "synonyms for stand", "clues": ["digest", "support", "abide", "bear", "endure", "stand up", "tolerate", "place upright", "suffer", "resist", "put up", "remain firm", "fend", "stomach", "brook", "stick out", "stand"]}, {"answer": "stargazing", "hint": "synonyms for stargazing", "clues": ["dream", "woolgather", "daydream", "stargaze", "stargazing"]}, {"answer": "start", "hint": "synonyms for start", "clues": ["set off", "originate", "go", "take up", "start out", "bulge out", "get down", "pop", "lead off", "set forth", "get", "come out", "protrude", "pop out", "startle", "embark on", "begin", "commence", "initiate", "depart", "jump", "set out", "start up", "take off", "bulge", "get going", "part", "start"]}, {"answer": "startle", "hint": "synonyms for startle", "clues": ["galvanise", "jump", "start", "startle"]}, {"answer": "stash", "hint": "synonyms for stash", "clues": ["hive up", "lay away", "cache", "hoard", "squirrel away", "stash"]}, {"answer": "state", "hint": "synonyms for state", "clues": ["tell", "submit", "express", "put forward", "say", "posit", "state"]}, {"answer": "stations", "hint": "synonyms for stations", "clues": ["send", "post", "place", "station"]}, {"answer": "stay", "hint": "synonyms for stay", "clues": ["continue", "delay", "abide", "outride", "stay on", "appease", "last out", "stay put", "detain", "remain", "quell", "ride out", "stick around", "stick", "persist", "rest", "stay"]}, {"answer": "stays", "hint": "synonyms for stays", "clues": ["delay", "outride", "abide", "stay put", "stick around", "quell", "persist", "stay", "continue", "appease", "stay on", "last out", "detain", "remain", "ride out", "stick", "rest"]}, {"answer": "steer", "hint": "synonyms for steer", "clues": ["guide", "channelize", "head", "maneuver", "point", "direct", "manoeuvre", "steer"]}, {"answer": "steering", "hint": "synonyms for steering", "clues": ["guide", "channelize", "steer", "head", "maneuver", "point", "direct", "manoeuvre"]}, {"answer": "step", "hint": "synonyms for step", "clues": ["tread", "abuse", "mistreat", "maltreat", "pace", "ill-treat", "ill-use", "step"]}, {"answer": "steps", "hint": "synonyms for steps", "clues": ["tread", "step", "mistreat", "maltreat", "ill-treat", "ill-use", "abuse", "pace"]}, {"answer": "stewing", "hint": "synonyms for stewing", "clues": ["grudge", "stew", "grizzle", "brood"]}, {"answer": "stick", "hint": "synonyms for stick", "clues": ["stay put", "flummox", "amaze", "get", "stick around", "baffle", "dumbfound", "wedge", "bind", "cleave", "cohere", "vex", "bewilder", "adhere", "stand by", "deposit", "mystify", "stupefy", "stick to", "lodge", "gravel", "hold fast", "nonplus", "puzzle", "perplex", "pose", "beat", "stay", "cling", "sting", "stick by", "bond", "stick"]}, {"answer": "stiffening", "hint": "synonyms for stiffening", "clues": ["tighten up", "constrain", "tighten", "stiffen"]}, {"answer": "stifle", "hint": "synonyms for stifle", "clues": ["asphyxiate", "suffocate", "choke", "smother", "dampen", "repress", "strangle", "muffle", "stifle"]}, {"answer": "sting", "hint": "synonyms for sting", "clues": ["burn", "bite", "twinge", "stick", "prick", "sting"]}, {"answer": "stir", "hint": "synonyms for stir", "clues": ["call down", "call forth", "arouse", "stimulate", "conjure", "agitate", "shake", "invoke", "shift", "touch", "put forward", "shake up", "raise", "bring up", "budge", "excite", "conjure up", "evoke", "stir"]}, {"answer": "stitching", "hint": "synonyms for stitching", "clues": ["run up", "sew together", "sew", "stitch"]}, {"answer": "stocking", "hint": "synonyms for stocking", "clues": ["sprout", "stock up", "stockpile", "carry", "stock", "buy in"]}, {"answer": "stocks", "hint": "synonyms for stocks", "clues": ["sprout", "stock up", "stockpile", "carry", "stock", "buy in"]}, {"answer": "stomach", "hint": "synonyms for stomach", "clues": ["digest", "support", "abide", "bear", "endure", "tolerate", "suffer", "put up", "stand", "brook", "stick out", "stomach"]}, {"answer": "stool", "hint": "synonyms for stool", "clues": ["shit", "make", "take a crap", "take a shit", "defecate", "ca-ca", "tiller", "crap", "stool"]}, {"answer": "stoop", "hint": "synonyms for stoop", "clues": ["lower oneself", "condescend", "bow", "bend", "crouch", "stoop"]}, {"answer": "stop", "hint": "synonyms for stop", "clues": ["barricade", "turn back", "bar", "intercept", "discontinue", "arrest", "terminate", "block up", "blockade", "kibosh", "quit", "hold on", "cease", "stop over", "break", "block off", "give up", "block", "check", "end", "break off", "halt", "contain", "finish", "lay off", "hold back", "stop"]}, {"answer": "stopes", "hint": "synonyms for stopes", "clues": ["barricade", "turn back", "bar", "intercept", "discontinue", "stop", "arrest", "terminate", "block up", "blockade", "kibosh", "quit", "hold on", "cease", "stop over", "break", "block off", "give up", "block", "check", "end", "break off", "halt", "contain", "finish", "lay off", "hold back"]}, {"answer": "stopping", "hint": "synonyms for stopping", "clues": ["barricade", "turn back", "bar", "intercept", "discontinue", "stop", "arrest", "terminate", "block up", "blockade", "kibosh", "quit", "hold on", "cease", "stop over", "break", "block off", "give up", "block", "check", "end", "break off", "halt", "contain", "finish", "lay off", "hold back", "stopping"]}, {"answer": "stops", "hint": "synonyms for stops", "clues": ["barricade", "turn back", "bar", "intercept", "discontinue", "stop", "arrest", "terminate", "block up", "blockade", "kibosh", "quit", "hold on", "cease", "stop over", "break", "block off", "give up", "block", "check", "end", "break off", "halt", "contain", "finish", "lay off", "hold back"]}, {"answer": "store", "hint": "synonyms for store", "clues": ["put in", "stack away", "salt away", "hive away", "lay in", "stash away", "store"]}, {"answer": "storm", "hint": "synonyms for storm", "clues": ["rage", "surprise", "ramp", "force", "storm"]}, {"answer": "straggle", "hint": "synonyms for straggle", "clues": ["depart", "sidetrack", "sprawl", "digress", "straggle"]}, {"answer": "strain", "hint": "synonyms for strain", "clues": ["filtrate", "stress", "tense", "filter out", "try", "deform", "distort", "reach", "separate out", "extend", "sieve", "strive", "puree", "tense up", "filter", "sift", "strain"]}, {"answer": "strangles", "hint": "synonyms for strangles", "clues": ["gag", "muffle", "halter", "suffocate", "choke", "cramp", "smother", "stifle", "hamper", "strangulate", "repress", "throttle", "strangle"]}, {"answer": "strangling", "hint": "synonyms for strangling", "clues": ["gag", "muffle", "halter", "suffocate", "choke", "cramp", "smother", "stifle", "hamper", "strangulate", "repress", "throttle", "strangle", "strangling"]}, {"answer": "strap", "hint": "synonyms for strap", "clues": ["whip", "lash", "trounce", "flog", "lather", "welt", "strap"]}, {"answer": "stream", "hint": "synonyms for stream", "clues": ["well out", "rain buckets", "swarm", "pullulate", "teem", "pelt", "pour", "rain cats and dogs", "stream"]}, {"answer": "strengthening", "hint": "synonyms for strengthening", "clues": ["tone", "beef up", "fortify", "tone up", "strengthen"]}, {"answer": "stress", "hint": "synonyms for stress", "clues": ["accentuate", "emphasize", "try", "punctuate", "strain", "accent", "stress"]}, {"answer": "stretching", "hint": "synonyms for stretching", "clues": ["stretch", "load", "stretch along", "adulterate", "dilute", "debase", "extend", "elongate", "unfold", "stretch out"]}, {"answer": "strike", "hint": "synonyms for strike", "clues": ["attain", "take up", "hit", "shine", "mint", "collide with", "walk out", "chance upon", "affect", "come upon", "fall upon", "expunge", "scratch", "impress", "fall", "coin", "excise", "take", "happen upon", "light upon", "discover", "come to", "strickle", "come across", "run into", "move", "assume", "impinge on"]}, {"answer": "string", "hint": "synonyms for string", "clues": ["string along", "thread", "draw", "string up", "string"]}, {"answer": "strings", "hint": "synonyms for strings", "clues": ["thread", "draw", "string along", "string", "string up"]}, {"answer": "strip", "hint": "synonyms for strip", "clues": ["despoil", "discase", "strip down", "leach", "pillage", "dismantle", "plunder", "divest", "uncase", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress", "strip"]}, {"answer": "stripes", "hint": "synonyms for stripes", "clues": ["despoil", "discase", "strip down", "leach", "stripe", "pillage", "dismantle", "plunder", "divest", "uncase", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress"]}, {"answer": "striping", "hint": "synonyms for striping", "clues": ["despoil", "discase", "strip down", "leach", "stripe", "pillage", "dismantle", "plunder", "divest", "uncase", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress", "striping"]}, {"answer": "stripping", "hint": "synonyms for stripping", "clues": ["despoil", "discase", "strip down", "leach", "pillage", "dismantle", "plunder", "divest", "uncase", "strip", "unclothe", "deprive", "reave", "disrobe", "peel", "rifle", "foray", "ransack", "clean", "bare", "denude", "loot", "disinvest", "undress", "stripping"]}, {"answer": "striving", "hint": "synonyms for striving", "clues": ["reach", "endeavour", "strive", "strain", "striving"]}, {"answer": "struggle", "hint": "synonyms for struggle", "clues": ["skin", "fight", "scramble", "shin", "sputter", "clamber", "contend", "shinny", "struggle"]}, {"answer": "strut", "hint": "synonyms for strut", "clues": ["prance", "cock", "ruffle", "tittup", "sashay", "swagger", "strut"]}, {"answer": "study", "hint": "synonyms for study", "clues": ["examine", "read", "learn", "meditate", "canvass", "analyse", "consider", "contemplate", "take", "hit the books", "study"]}, {"answer": "studying", "hint": "synonyms for studying", "clues": ["examine", "read", "learn", "meditate", "canvass", "analyse", "consider", "contemplate", "take", "study", "hit the books"]}, {"answer": "stuff", "hint": "synonyms for stuff", "clues": ["gormandize", "ingurgitate", "binge", "farce", "glut", "squeeze", "lug", "thrust", "shove", "englut", "engorge", "choke up", "pig out", "overgorge", "satiate", "overeat", "block", "overindulge", "scarf out", "gorge", "stuff"]}, {"answer": "stuffing", "hint": "synonyms for stuffing", "clues": ["gormandize", "ingurgitate", "binge", "farce", "glut", "squeeze", "lug", "thrust", "shove", "englut", "engorge", "choke up", "pig out", "overgorge", "satiate", "overeat", "block", "overindulge", "scarf out", "gorge", "stuff"]}, {"answer": "stumble", "hint": "synonyms for stumble", "clues": ["bumble", "trip", "falter", "trip up", "hit", "slip up", "stumble"]}, {"answer": "stumping", "hint": "synonyms for stumping", "clues": ["mix up", "stamp", "stomp", "stump"]}, {"answer": "stymie", "hint": "synonyms for stymie", "clues": ["embarrass", "stymy", "blockade", "hinder", "obstruct", "block", "stymie"]}, {"answer": "stymy", "hint": "synonyms for stymy", "clues": ["embarrass", "blockade", "hinder", "stymie", "obstruct", "block", "stymy"]}, {"answer": "subbing", "hint": "synonyms for subbing", "clues": ["fill in", "substitute", "stand in", "sub", "subbing"]}, {"answer": "submerging", "hint": "synonyms for submerging", "clues": ["submerge", "drown", "deluge", "inundate", "overwhelm", "submerging"]}, {"answer": "subsiding", "hint": "synonyms for subsiding", "clues": ["sink", "lessen", "subside", "settle", "subsiding"]}, {"answer": "substituting", "hint": "synonyms for substituting", "clues": ["deputize", "substitute", "interchange", "replace", "fill in", "stand in", "sub", "step in", "exchange", "substituting"]}, {"answer": "suck", "hint": "synonyms for suck", "clues": ["nurse", "absorb", "suckle", "fellate", "breastfeed", "draw", "suck in", "take up", "go down on", "imbibe", "wet-nurse", "sop up", "give suck", "take in", "lactate", "soak up", "suck up", "blow", "suck"]}, {"answer": "sucking", "hint": "synonyms for sucking", "clues": ["absorb", "suckle", "breastfeed", "draw", "suck in", "take up", "imbibe", "sop up", "give suck", "take in", "lactate", "soak up", "suck up", "fellate", "nurse", "go down on", "wet-nurse", "suck", "blow"]}, {"answer": "suckling", "hint": "synonyms for suckling", "clues": ["nurse", "suckle", "breastfeed", "wet-nurse", "give suck", "suck", "lactate", "suckling"]}, {"answer": "suit", "hint": "synonyms for suit", "clues": ["befit", "fit", "accommodate", "become", "beseem", "suit"]}, {"answer": "suiting", "hint": "synonyms for suiting", "clues": ["suit", "fit", "accommodate", "befit", "become", "beseem"]}, {"answer": "sully", "hint": "synonyms for sully", "clues": ["denigrate", "maculate", "stain", "cloud", "defile", "asperse", "taint", "calumniate", "corrupt", "besmirch", "slander", "defame", "tarnish", "smear", "sully"]}, {"answer": "sum", "hint": "synonyms for sum", "clues": ["tot up", "total", "add together", "summate", "tot", "add up", "sum up", "add", "tally", "summarise", "sum"]}, {"answer": "summoning", "hint": "synonyms for summoning", "clues": ["rally", "muster", "come up", "mobilize", "marshal", "muster up", "cite", "summons", "summoning"]}, {"answer": "summons", "hint": "synonyms for summons", "clues": ["rally", "muster", "come up", "mobilize", "marshal", "muster up", "cite", "summon"]}, {"answer": "sun", "hint": "synonyms for sun", "clues": ["insolate", "solarise", "sunbathe", "sun"]}, {"answer": "sung", "hint": "synonyms for sung", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "whistle", "sing", "spill the beans", "tattle", "blab out", "babble out", "sung"]}, {"answer": "supervising", "hint": "synonyms for supervising", "clues": ["superintend", "supervise", "manage", "oversee", "monitor", "supervising"]}, {"answer": "supplanting", "hint": "synonyms for supplanting", "clues": ["replace", "supplant", "supercede", "supervene upon"]}, {"answer": "supply", "hint": "synonyms for supply", "clues": ["ply", "cater", "render", "add", "furnish", "append", "provide", "issue", "supply"]}, {"answer": "supplying", "hint": "synonyms for supplying", "clues": ["ply", "cater", "furnish", "provide", "issue", "supply", "add", "append", "render"]}, {"answer": "support", "hint": "synonyms for support", "clues": ["digest", "fend for", "abide", "back up", "bear", "indorse", "suffer", "brook", "sustain", "keep going", "plump for", "affirm", "underpin", "substantiate", "corroborate", "stomach", "hold up", "back", "patronise", "confirm", "defend", "subscribe", "endure", "tolerate", "patronage", "put up", "plunk for", "hold", "stand", "bear out", "stick out", "support"]}, {"answer": "surcharge", "hint": "synonyms for surcharge", "clues": ["soak", "plume", "overload", "fleece", "pluck", "rob", "overcharge", "gazump", "hook", "surcharge"]}, {"answer": "surfacing", "hint": "synonyms for surfacing", "clues": ["show up", "come up", "coat", "rise", "turn up", "come out", "come on", "rise up", "surface", "surfacing"]}, {"answer": "surfing", "hint": "synonyms for surfing", "clues": ["channel-surf", "surfboard", "surf", "browse"]}, {"answer": "surge", "hint": "synonyms for surge", "clues": ["soar", "zoom", "soar upwards", "soar up", "scend", "heave", "tide", "billow", "surge"]}, {"answer": "surround", "hint": "synonyms for surround", "clues": ["besiege", "hem in", "environ", "circumvent", "wall", "ring", "border", "fence", "smother", "beleaguer", "palisade", "skirt", "fence in", "surround"]}, {"answer": "surroundings", "hint": "synonyms for surroundings", "clues": ["besiege", "hem in", "environ", "circumvent", "wall", "ring", "border", "fence", "smother", "beleaguer", "palisade", "skirt", "fence in", "surround", "surroundings"]}, {"answer": "survey", "hint": "synonyms for survey", "clues": ["follow", "go over", "appraise", "surveil", "review", "survey"]}, {"answer": "surveying", "hint": "synonyms for surveying", "clues": ["follow", "go over", "appraise", "surveil", "survey", "review"]}, {"answer": "swag", "hint": "synonyms for swag", "clues": ["sag", "careen", "reel", "droop", "lurch", "keel", "flag", "stagger"]}, {"answer": "swallow", "hint": "synonyms for swallow", "clues": ["immerse", "accept", "bury", "withdraw", "live with", "get down", "unsay", "take back", "swallow up", "eat up", "swallow"]}, {"answer": "swamp", "hint": "synonyms for swamp", "clues": ["inundate", "flood", "drench", "deluge", "swamp"]}, {"answer": "swan", "hint": "synonyms for swan", "clues": ["swear", "stray", "vagabond", "avow", "assert", "tramp", "rove", "cast", "range", "affirm", "verify", "roll", "aver", "ramble", "wander", "drift", "roam", "swan"]}, {"answer": "swarm", "hint": "synonyms for swarm", "clues": ["stream", "pour", "pullulate", "teem", "swarm"]}, {"answer": "swash", "hint": "synonyms for swash", "clues": ["spatter", "brag", "gas", "splosh", "splash", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "tout", "blow", "swagger", "swash"]}, {"answer": "sway", "hint": "synonyms for sway", "clues": ["rock", "persuade", "carry", "swing", "shake", "sway"]}, {"answer": "swearing", "hint": "synonyms for swearing", "clues": ["aver", "imprecate", "swear", "rely", "curse", "affirm", "swan", "depone", "avow", "cuss", "assert", "depose", "bank", "trust", "verify", "blaspheme"]}, {"answer": "sweep", "hint": "synonyms for sweep", "clues": ["cross", "tangle", "sail", "drag", "drag in", "swing", "swing out", "broom", "brush", "sweep up", "embroil", "traverse", "span", "sweep"]}, {"answer": "swelling", "hint": "synonyms for swelling", "clues": ["puff up", "tumesce", "swell", "tumefy", "well up"]}, {"answer": "swerve", "hint": "synonyms for swerve", "clues": ["cut", "slew", "veer", "slue", "sheer", "trend", "curve", "swerve"]}, {"answer": "swerving", "hint": "synonyms for swerving", "clues": ["slew", "swerve", "slue", "curve", "cut", "trend", "veer", "sheer", "swerving"]}, {"answer": "swig", "hint": "synonyms for swig", "clues": ["slug", "gulp", "quaff", "slog", "swig"]}, {"answer": "swindle", "hint": "synonyms for swindle", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "short-change", "gip", "scam", "con", "goldbrick", "swindle"]}, {"answer": "swing", "hint": "synonyms for swing", "clues": ["sweep", "drop", "sway", "get around", "dangle", "swing out", "swing over", "swing"]}, {"answer": "swipe", "hint": "synonyms for swipe", "clues": ["abstract", "nobble", "sneak", "pilfer", "purloin", "cabbage", "filch", "hook", "snarf", "pinch", "lift", "swipe"]}, {"answer": "swirl", "hint": "synonyms for swirl", "clues": ["eddy", "twiddle", "whirlpool", "purl", "whirl", "twirl", "swirl"]}, {"answer": "switch", "hint": "synonyms for switch", "clues": ["throw", "change", "swop", "swap", "alternate", "interchange", "switch over", "shift", "change over", "tack", "flip-flop", "trade", "flip", "switch"]}, {"answer": "switching", "hint": "synonyms for switching", "clues": ["throw", "change", "swop", "switch", "swap", "alternate", "interchange", "switch over", "shift", "change over", "tack", "flip-flop", "trade", "flip"]}, {"answer": "swot", "hint": "synonyms for swot", "clues": ["swot up", "grind away", "bone up", "mug up", "drum", "cram", "bone", "get up", "swot"]}, {"answer": "symbolising", "hint": "synonyms for symbolising", "clues": ["stand for", "symbolize", "typify", "represent", "symbolising"]}, {"answer": "symbolizing", "hint": "synonyms for symbolizing", "clues": ["stand for", "symbolize", "typify", "represent", "symbolizing"]}, {"answer": "synchronising", "hint": "synonyms for synchronising", "clues": ["sync", "synchronise", "contemporise", "synchronising"]}, {"answer": "synchronizing", "hint": "synonyms for synchronizing", "clues": ["synchronise", "contemporize", "sync", "synchronizing"]}, {"answer": "table", "hint": "synonyms for table", "clues": ["hold over", "shelve", "tabulate", "remit", "tabularize", "prorogue", "set back", "put off", "defer", "put over", "postpone", "table"]}, {"answer": "tack", "hint": "synonyms for tack", "clues": ["switch", "wear round", "piece", "alternate", "interchange", "put together", "hang on", "set up", "tag on", "flip-flop", "tack on", "append", "tack together", "flip", "baste", "assemble", "tack"]}, {"answer": "tacking", "hint": "synonyms for tacking", "clues": ["baste", "switch", "wear round", "piece", "alternate", "interchange", "hang on", "tack", "set up", "tag on", "tack on", "flip-flop", "append", "tack together", "flip", "put together", "assemble"]}, {"answer": "tag", "hint": "synonyms for tag", "clues": ["chase", "label", "dog", "tail", "chase after", "track", "go after", "mark", "give chase", "tag"]}, {"answer": "tail", "hint": "synonyms for tail", "clues": ["chase", "dog", "bob", "dock", "chase after", "track", "go after", "give chase", "tag", "trail"]}, {"answer": "tailing", "hint": "synonyms for tailing", "clues": ["chase", "dog", "bob", "tail", "dock", "chase after", "track", "go after", "give chase", "tag"]}, {"answer": "tailor", "hint": "synonyms for tailor", "clues": ["cut", "orient", "sew", "tailor-make", "tailor"]}, {"answer": "tailoring", "hint": "synonyms for tailoring", "clues": ["cut", "orient", "tailor-make", "sew", "tailor"]}, {"answer": "tails", "hint": "synonyms for tails", "clues": ["chase", "dog", "bob", "tail", "dock", "chase after", "track", "go after", "give chase", "tag"]}, {"answer": "taint", "hint": "synonyms for taint", "clues": ["sully", "corrupt", "cloud", "infect", "defile", "taint"]}, {"answer": "take", "hint": "synonyms for take", "clues": ["claim", "guide", "take up", "shoot", "pack", "deal", "film", "withdraw", "get hold of", "submit", "pick out", "rent", "acquire", "hire", "consume", "direct", "ingest", "subscribe to", "get", "call for", "conduct", "look at", "take away", "take aim", "need", "consider", "necessitate", "demand", "study", "admit", "charter", "lease", "hold", "assume", "strike", "take on", "read", "choose", "select", "remove", "postulate", "accept", "learn", "have", "train", "aim", "engage", "use up", "bring", "require", "exact", "carry", "convey", "adopt", "make", "ask", "fill", "contain", "contract", "drive", "occupy", "lead", "involve", "take"]}, {"answer": "takings", "hint": "synonyms for takings", "clues": ["claim", "guide", "take up", "shoot", "pack", "deal", "film", "withdraw", "get hold of", "submit", "pick out", "rent", "acquire", "hire", "consume", "direct", "ingest", "subscribe to", "get", "call for", "conduct", "look at", "take away", "take aim", "need", "consider", "take", "necessitate", "demand", "study", "admit", "charter", "lease", "hold", "assume", "strike", "take on", "read", "choose", "select", "remove", "postulate", "accept", "learn", "have", "train", "aim", "engage", "use up", "bring", "require", "exact", "carry", "convey", "adopt", "make", "ask", "fill", "contain", "contract", "drive", "occupy", "lead", "involve", "takings"]}, {"answer": "talk", "hint": "synonyms for talk", "clues": ["mouth", "peach", "babble", "blab", "let the cat out of the bag", "speak", "sing", "utter", "spill the beans", "tattle", "blab out", "lecture", "verbalise", "babble out", "spill", "talk"]}, {"answer": "talking", "hint": "synonyms for talking", "clues": ["mouth", "peach", "babble", "blab", "let the cat out of the bag", "talk", "speak", "sing", "utter", "spill the beans", "tattle", "blab out", "lecture", "verbalise", "babble out", "spill"]}, {"answer": "talks", "hint": "synonyms for talks", "clues": ["mouth", "peach", "babble", "blab", "let the cat out of the bag", "talk", "speak", "sing", "utter", "spill the beans", "tattle", "blab out", "lecture", "verbalise", "babble out", "spill"]}, {"answer": "tally", "hint": "synonyms for tally", "clues": ["total", "match", "add together", "gibe", "hit", "summate", "add up", "add", "sum", "sum up", "tot up", "fit", "chalk up", "score", "agree", "tot", "correspond", "check", "rack up", "jibe", "tally"]}, {"answer": "tampering", "hint": "synonyms for tampering", "clues": ["monkey", "fiddle", "meddle", "tamper"]}, {"answer": "tangle", "hint": "synonyms for tangle", "clues": ["knot", "ravel", "drag", "drag in", "mat", "entangle", "sweep up", "sweep", "snarl", "embroil", "tousle", "dishevel"]}, {"answer": "tap", "hint": "synonyms for tap", "clues": ["bug", "intercept", "tapdance", "tip", "wiretap", "solicit", "rap", "knock", "pink", "beg", "exploit", "tap"]}, {"answer": "taping", "hint": "synonyms for taping", "clues": ["knock", "bug", "videotape", "intercept", "tape", "tapdance", "tip", "record", "wiretap", "rap", "exploit", "pink", "solicit", "beg", "taping"]}, {"answer": "tapping", "hint": "synonyms for tapping", "clues": ["knock", "bug", "intercept", "tapdance", "tip", "wiretap", "solicit", "rap", "exploit", "tap", "pink", "beg", "tapping"]}, {"answer": "taps", "hint": "synonyms for taps", "clues": ["knock", "bug", "intercept", "tapdance", "tip", "wiretap", "solicit", "rap", "exploit", "tap", "pink", "beg"]}, {"answer": "target", "hint": "synonyms for target", "clues": ["point", "aim", "place", "direct", "target"]}, {"answer": "tarnish", "hint": "synonyms for tarnish", "clues": ["maculate", "stain", "defile", "sully", "tarnish"]}, {"answer": "taste", "hint": "synonyms for taste", "clues": ["sample", "savour", "try out", "smack", "try", "taste"]}, {"answer": "tasting", "hint": "synonyms for tasting", "clues": ["sample", "savour", "try out", "smack", "try", "taste", "tasting"]}, {"answer": "tattle", "hint": "synonyms for tattle", "clues": ["prattle", "palaver", "chatter", "peach", "babble", "tittle-tattle", "talk", "sing", "spill the beans", "blab out", "twaddle", "prate", "clack", "gabble", "blab", "let the cat out of the bag", "blabber", "gibber", "maunder", "babble out", "piffle", "tattle"]}, {"answer": "taunt", "hint": "synonyms for taunt", "clues": ["cod", "rally", "ride", "razz", "twit", "tease", "bait", "tantalize", "rag", "taunt"]}, {"answer": "tear", "hint": "synonyms for tear", "clues": ["deplumate", "snap", "shoot down", "buck", "shoot", "rupture", "pluck", "pull", "displume", "charge", "bust", "tear"]}, {"answer": "tears", "hint": "synonyms for tears", "clues": ["tear", "deplumate", "snap", "shoot down", "buck", "shoot", "rupture", "pluck", "pull", "displume", "charge", "bust"]}, {"answer": "tease", "hint": "synonyms for tease", "clues": ["cod", "card", "rally", "ride", "bug", "loosen", "tease apart", "razz", "pester", "twit", "badger", "beleaguer", "fluff", "bait", "rag", "tantalize", "taunt", "tease"]}, {"answer": "telephone", "hint": "synonyms for telephone", "clues": ["ring", "call", "phone", "call up", "telephone"]}, {"answer": "tell", "hint": "synonyms for tell", "clues": ["state", "narrate", "evidence", "recount", "say", "order", "assure", "differentiate", "enjoin", "tell apart", "severalise", "recite", "secernate", "distinguish", "secern", "separate", "tell"]}, {"answer": "temper", "hint": "synonyms for temper", "clues": ["anneal", "mollify", "moderate", "chasten", "harden", "normalize", "season", "temper"]}, {"answer": "tent", "hint": "synonyms for tent", "clues": ["camp out", "encamp", "bivouac", "camp", "tent"]}, {"answer": "tenting", "hint": "synonyms for tenting", "clues": ["camp out", "camp", "tent", "encamp", "bivouac"]}, {"answer": "test", "hint": "synonyms for test", "clues": ["examine", "prove", "quiz", "try out", "screen", "try", "essay", "test"]}, {"answer": "testing", "hint": "synonyms for testing", "clues": ["examine", "prove", "try out", "screen", "try", "test", "quiz", "essay"]}, {"answer": "thaw", "hint": "synonyms for thaw", "clues": ["dethaw", "unfreeze", "unthaw", "dissolve", "melt", "thaw"]}, {"answer": "thawing", "hint": "synonyms for thawing", "clues": ["dethaw", "unfreeze", "unthaw", "thaw", "dissolve", "melt"]}, {"answer": "think", "hint": "synonyms for think", "clues": ["call up", "mean", "retrieve", "suppose", "recall", "consider", "believe", "guess", "reckon", "cogitate", "call back", "recollect", "conceive", "imagine", "intend", "cerebrate", "remember", "opine", "think"]}, {"answer": "thinning", "hint": "synonyms for thinning", "clues": ["slim down", "dilute", "melt off", "thin out", "reduce", "lose weight", "slenderize", "cut", "slim", "thin", "thinning"]}, {"answer": "thirst", "hint": "synonyms for thirst", "clues": ["crave", "lust", "hunger", "starve", "thirst"]}, {"answer": "thought", "hint": "synonyms for thought", "clues": ["mean", "cogitate", "guess", "reckon", "think", "call back", "recollect", "cerebrate", "remember", "call up", "retrieve", "suppose", "consider", "believe", "conceive", "imagine", "intend", "recall", "opine", "thought"]}, {"answer": "thrash", "hint": "synonyms for thrash", "clues": ["slam", "slam dance", "clobber", "thrash about", "lick", "toss", "mosh", "flail", "thresh", "slash", "drub", "jactitate", "bat", "convulse", "cream", "thrash"]}, {"answer": "thrashing", "hint": "synonyms for thrashing", "clues": ["slam", "clobber", "toss", "mosh", "flail", "drub", "jactitate", "bat", "convulse", "cream", "slam dance", "thrash about", "lick", "thresh", "slash", "thrash"]}, {"answer": "thread", "hint": "synonyms for thread", "clues": ["meander", "wind", "draw", "weave", "string", "wander", "thread"]}, {"answer": "threads", "hint": "synonyms for threads", "clues": ["thread", "meander", "wind", "draw", "weave", "string", "wander"]}, {"answer": "threshing", "hint": "synonyms for threshing", "clues": ["thrash about", "toss", "flail", "thresh", "slash", "jactitate", "thrash", "lam", "convulse"]}, {"answer": "thrill", "hint": "synonyms for thrill", "clues": ["vibrate", "tickle pink", "shudder", "throb", "exalt", "inebriate", "beatify", "tickle", "shiver", "exhilarate", "thrill"]}, {"answer": "throb", "hint": "synonyms for throb", "clues": ["pulse", "shudder", "shiver", "thrill", "pulsate", "throb"]}, {"answer": "throng", "hint": "synonyms for throng", "clues": ["pack", "pile", "mob", "jam", "throng"]}, {"answer": "throttle", "hint": "synonyms for throttle", "clues": ["confine", "restrict", "limit", "choke", "trammel", "bound", "restrain", "strangulate", "strangle", "throttle"]}, {"answer": "throttling", "hint": "synonyms for throttling", "clues": ["confine", "limit", "strangle", "choke", "trammel", "bound", "restrain", "strangulate", "throttle", "restrict", "throttling"]}, {"answer": "throw", "hint": "synonyms for throw", "clues": ["discombobulate", "drop", "have", "fox", "cast off", "befuddle", "cast", "project", "thrust", "make", "shake off", "shed", "confuse", "switch", "bemuse", "give", "throw away", "bedevil", "throw off", "bewilder", "confound", "contrive", "hold", "flip", "hurl", "throw"]}, {"answer": "thrum", "hint": "synonyms for thrum", "clues": ["beat", "hum", "strum", "drum", "thrum"]}, {"answer": "thrust", "hint": "synonyms for thrust", "clues": ["stuff", "throw", "hurtle", "pierce", "hurl", "lunge", "squeeze", "push up", "shove", "force", "thrust"]}, {"answer": "thrusting", "hint": "synonyms for thrusting", "clues": ["stuff", "throw", "hurtle", "pierce", "shove", "lunge", "squeeze", "thrust", "push up", "hurl", "force"]}, {"answer": "thumb", "hint": "synonyms for thumb", "clues": ["leaf", "riff", "hitchhike", "hitch", "flip", "riffle", "finger", "flick", "thumb"]}, {"answer": "thump", "hint": "synonyms for thump", "clues": ["poke", "thud", "beat", "pound", "thump"]}, {"answer": "thwart", "hint": "synonyms for thwart", "clues": ["cross", "scotch", "spoil", "queer", "bilk", "foil", "baffle", "frustrate", "thwart"]}, {"answer": "tick", "hint": "synonyms for tick", "clues": ["retick", "check off", "ticktock", "click", "check", "mark off", "tick off", "mark", "beat", "tick"]}, {"answer": "ticking", "hint": "synonyms for ticking", "clues": ["retick", "check off", "ticktock", "click", "tick", "check", "mark off", "tick off", "mark", "beat"]}, {"answer": "tickle", "hint": "synonyms for tickle", "clues": ["vellicate", "titillate", "thrill", "vibrate", "tickle"]}, {"answer": "tie", "hint": "synonyms for tie", "clues": ["bind", "link", "attach", "draw", "splice", "wed", "connect", "link up", "marry", "bond", "tie"]}, {"answer": "tightening", "hint": "synonyms for tightening", "clues": ["tighten up", "fasten", "constrain", "tighten", "reduce", "stiffen"]}, {"answer": "tilt", "hint": "synonyms for tilt", "clues": ["slant", "lean", "careen", "angle", "cant over", "wobble", "shift", "tip", "cant", "pitch", "tilt"]}, {"answer": "tinge", "hint": "synonyms for tinge", "clues": ["colour", "touch", "tinct", "distort", "tinge"]}, {"answer": "tinker", "hint": "synonyms for tinker", "clues": ["muck around", "putter", "potter", "monkey", "muck about", "monkey around", "fiddle", "mess around", "tinker"]}, {"answer": "tinting", "hint": "synonyms for tinting", "clues": ["tinge", "tinct", "touch", "tinting"]}, {"answer": "tip", "hint": "synonyms for tip", "clues": ["slant", "lean", "topple", "angle", "tippytoe", "tip off", "fee", "tilt", "tumble", "tap", "bung", "tip"]}, {"answer": "tire", "hint": "synonyms for tire", "clues": ["tire out", "run down", "wear out", "jade", "bore", "exhaust", "wear", "fag", "fatigue", "outwear", "wear down", "sap", "play out", "pall", "wear upon", "fag out", "tire"]}, {"answer": "tittle-tattle", "hint": "synonyms for tittle-tattle", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "gabble", "blab", "blabber", "tattle", "twaddle", "gibber", "maunder", "piffle", "tittle-tattle"]}, {"answer": "toady", "hint": "synonyms for toady", "clues": ["bootlick", "truckle", "kotow", "fawn", "suck up", "toady"]}, {"answer": "toast", "hint": "synonyms for toast", "clues": ["wassail", "crisp", "drink", "crispen", "pledge", "salute", "toast"]}, {"answer": "toasting", "hint": "synonyms for toasting", "clues": ["wassail", "pledge", "toast", "crisp", "crispen", "drink", "salute"]}, {"answer": "togs", "hint": "synonyms for togs", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb"]}, {"answer": "toil", "hint": "synonyms for toil", "clues": ["labor", "grind", "drudge", "dig", "fag", "travail", "moil", "toil"]}, {"answer": "tone", "hint": "synonyms for tone", "clues": ["intone", "inflect", "modulate", "tone up", "strengthen", "chant", "tone"]}, {"answer": "toot", "hint": "synonyms for toot", "clues": ["beep", "honk", "claxon", "blare", "toot"]}, {"answer": "tore", "hint": "synonyms for tore", "clues": ["tear", "deplumate", "snap", "shoot down", "buck", "shoot", "rupture", "pluck", "pull", "displume", "charge", "bust", "tore"]}, {"answer": "torment", "hint": "synonyms for torment", "clues": ["dun", "crucify", "bedevil", "excruciate", "torture", "rack", "rag", "frustrate", "torment"]}, {"answer": "toss", "hint": "synonyms for toss", "clues": ["dispose", "cast aside", "fling", "chuck out", "jactitate", "put away", "toss out", "convulse", "throw out", "toss away", "cast away", "thrash about", "discard", "thresh", "slash", "thrash", "throw away", "flip", "cast out", "sky", "pitch", "chuck", "toss"]}, {"answer": "tot", "hint": "synonyms for tot", "clues": ["tot up", "total", "add together", "summate", "add up", "add", "sum", "sum up", "tally", "tot"]}, {"answer": "touch", "hint": "synonyms for touch", "clues": ["match", "tinge", "relate", "tint", "rival", "affect", "allude", "extend to", "advert", "concern", "impact", "stir", "bear upon", "adjoin", "refer", "touch on", "meet", "contact", "partake", "have-to doe with", "reach", "pertain", "come to", "equal", "disturb", "touch"]}, {"answer": "tout", "hint": "synonyms for tout", "clues": ["swash", "gas", "boast", "bluster", "shoot a line", "gasconade", "vaunt", "blow", "brag", "tout"]}, {"answer": "toy", "hint": "synonyms for toy", "clues": ["fiddle", "diddle", "flirt", "play", "dally", "toy"]}, {"answer": "toying", "hint": "synonyms for toying", "clues": ["diddle", "flirt", "dally", "fiddle", "toy", "play"]}, {"answer": "trace", "hint": "synonyms for trace", "clues": ["line", "follow", "hound", "hunt", "draw", "decipher", "retrace", "delineate", "describe", "trace"]}, {"answer": "tracing", "hint": "synonyms for tracing", "clues": ["line", "follow", "hound", "hunt", "draw", "decipher", "retrace", "trace", "delineate", "describe", "tracing"]}, {"answer": "track", "hint": "synonyms for track", "clues": ["get across", "chase", "get over", "cross", "dog", "tail", "chase after", "cut through", "go after", "cut across", "traverse", "give chase", "cover", "tag", "pass over", "track"]}, {"answer": "tracking", "hint": "synonyms for tracking", "clues": ["get across", "chase", "get over", "cross", "dog", "tail", "chase after", "track", "cut through", "go after", "cut across", "traverse", "give chase", "cover", "tag", "pass over"]}, {"answer": "trade", "hint": "synonyms for trade", "clues": ["sell", "deal", "swop", "merchandise", "switch", "swap", "trade in", "trade"]}, {"answer": "trading", "hint": "synonyms for trading", "clues": ["sell", "swop", "swap", "switch", "trade in", "deal", "trade", "merchandise", "trading"]}, {"answer": "trail", "hint": "synonyms for trail", "clues": ["chase", "drop behind", "hang back", "dog", "train", "tail", "shack", "drag", "chase after", "get behind", "drop back", "track", "go after", "give chase", "tag"]}, {"answer": "trailing", "hint": "synonyms for trailing", "clues": ["chase", "drop behind", "hang back", "dog", "train", "tail", "shack", "drag", "chase after", "get behind", "drop back", "track", "go after", "give chase", "tag", "trailing"]}, {"answer": "train", "hint": "synonyms for train", "clues": ["civilise", "rail", "educate", "take aim", "aim", "groom", "direct", "check", "take", "develop", "coach", "prepare", "school", "discipline", "cultivate", "condition", "train"]}, {"answer": "training", "hint": "synonyms for training", "clues": ["civilise", "train", "aim", "direct", "school", "discipline", "trail", "condition", "educate", "take aim", "groom", "check", "take", "develop", "prepare", "coach", "cultivate"]}, {"answer": "trammel", "hint": "synonyms for trammel", "clues": ["confine", "ensnare", "entrap", "limit", "bound", "restrain", "snare", "trap", "throttle", "restrict", "trammel"]}, {"answer": "tramp", "hint": "synonyms for tramp", "clues": ["plod", "stray", "trudge", "vagabond", "slog", "rove", "cast", "range", "footslog", "pad", "roll", "ramble", "wander", "drift", "swan", "roam", "tramp"]}, {"answer": "trampling", "hint": "synonyms for trampling", "clues": ["tread", "tread down", "tramp down", "trample", "trampling"]}, {"answer": "trance", "hint": "synonyms for trance", "clues": ["captivate", "capture", "becharm", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "entrance"]}, {"answer": "transfer", "hint": "synonyms for transfer", "clues": ["transplant", "transpose", "change", "channelize", "channel", "remove", "shift", "reassign", "transmit", "transport", "transfer"]}, {"answer": "transit", "hint": "synonyms for transit", "clues": ["pass over", "move through", "pass through", "pass across", "transit"]}, {"answer": "transmitting", "hint": "synonyms for transmitting", "clues": ["convey", "send", "conduct", "channel", "beam", "channelize", "communicate", "transfer", "broadcast", "transmit", "carry", "transport", "air", "impart", "transmitting"]}, {"answer": "transplanting", "hint": "synonyms for transplanting", "clues": ["transplant", "graft", "transpose", "transfer"]}, {"answer": "transport", "hint": "synonyms for transport", "clues": ["send", "carry", "enthrall", "channelize", "channel", "enchant", "enrapture", "delight", "transfer", "ravish", "ship", "transmit", "transport"]}, {"answer": "transpose", "hint": "synonyms for transpose", "clues": ["transplant", "counterchange", "commute", "permute", "interchange", "transfer", "transpose"]}, {"answer": "trap", "hint": "synonyms for trap", "clues": ["pin down", "trammel", "immobilize", "ensnare", "entrap", "pin", "snare", "trap"]}, {"answer": "trapping", "hint": "synonyms for trapping", "clues": ["pin down", "immobilize", "ensnare", "entrap", "trammel", "pin", "snare", "trap", "trapping"]}, {"answer": "trash", "hint": "synonyms for trash", "clues": ["pan", "scrap", "junk", "tear apart", "trash"]}, {"answer": "travail", "hint": "synonyms for travail", "clues": ["labor", "grind", "drudge", "dig", "fag", "toil", "moil", "travail"]}, {"answer": "travel", "hint": "synonyms for travel", "clues": ["trip", "jaunt", "locomote", "go", "journey", "move around", "move", "travel"]}, {"answer": "traveling", "hint": "synonyms for traveling", "clues": ["go", "journey", "travel", "trip", "jaunt", "locomote", "move around", "move"]}, {"answer": "travelling", "hint": "synonyms for travelling", "clues": ["go", "journey", "travel", "trip", "jaunt", "locomote", "move around", "move", "travelling"]}, {"answer": "traverse", "hint": "synonyms for traverse", "clues": ["get across", "get over", "cross", "track", "cut through", "deny", "cut across", "sweep", "cover", "span", "pass over", "traverse"]}, {"answer": "treasure", "hint": "synonyms for treasure", "clues": ["value", "hold dear", "cherish", "appreciate", "care for", "prize", "treasure"]}, {"answer": "treat", "hint": "synonyms for treat", "clues": ["address", "care for", "deal", "regale", "process", "plow", "do by", "cover", "handle", "treat"]}, {"answer": "trench", "hint": "synonyms for trench", "clues": ["impinge", "ditch", "entrench", "encroach"]}, {"answer": "trend", "hint": "synonyms for trend", "clues": ["cut", "slew", "veer", "swerve", "slue", "sheer", "curve", "trend"]}, {"answer": "trespass", "hint": "synonyms for trespass", "clues": ["intrude", "overstep", "sin", "take advantage", "transgress", "trespass"]}, {"answer": "trick", "hint": "synonyms for trick", "clues": ["play a joke on", "flim-flam", "pull a fast one on", "play a trick on", "fox", "fob", "play tricks", "trick"]}, {"answer": "trifle", "hint": "synonyms for trifle", "clues": ["piddle away", "wanton away", "wanton", "piddle", "frivol", "play", "dally", "trifle"]}, {"answer": "trigger", "hint": "synonyms for trigger", "clues": ["set off", "spark", "spark off", "actuate", "trigger off", "trip", "touch off", "activate", "trigger"]}, {"answer": "trimming", "hint": "synonyms for trimming", "clues": ["garnish", "trim down", "shave", "cut down", "trim back", "dress", "clip", "cut back", "pare", "trim", "bring down", "snip", "crop", "reduce", "cut", "lop", "prune", "trimming"]}, {"answer": "trip", "hint": "synonyms for trip", "clues": ["set off", "spark", "spark off", "trip up", "trigger", "actuate", "travel", "trigger off", "touch off", "jaunt", "trip out", "activate", "turn on", "stumble", "trip"]}, {"answer": "triumph", "hint": "synonyms for triumph", "clues": ["exult", "jubilate", "crow", "exuberate", "wallow", "rejoice", "prevail", "gloat", "triumph"]}, {"answer": "trouble", "hint": "synonyms for trouble", "clues": ["cark", "incommode", "inconvenience oneself", "disquiet", "trouble oneself", "distract", "unhinge", "pain", "disorder", "put out", "discommode", "perturb", "inconvenience", "disturb", "ail", "upset", "disoblige", "bother", "trouble"]}, {"answer": "trouncing", "hint": "synonyms for trouncing", "clues": ["call down", "chew up", "shell", "whip", "take to task", "jaw", "lecture", "call on the carpet", "slash", "vanquish", "lambast", "rebuke", "flog", "rag", "reproof", "beat out", "beat", "have words", "welt", "chide", "scold", "chew out", "remonstrate", "reprimand", "lather", "strap", "trounce", "berate", "crush", "dress down", "bawl out", "trouncing"]}, {"answer": "truckle", "hint": "synonyms for truckle", "clues": ["bootlick", "toady", "kotow", "fawn", "suck up", "truckle"]}, {"answer": "truckling", "hint": "synonyms for truckling", "clues": ["bootlick", "kotow", "truckle", "toady", "fawn", "suck up", "truckling"]}, {"answer": "trudge", "hint": "synonyms for trudge", "clues": ["plod", "tramp", "footslog", "pad", "slog", "trudge"]}, {"answer": "trump", "hint": "synonyms for trump", "clues": ["ruff", "best", "scoop", "trump out", "outdo", "outflank", "trump"]}, {"answer": "trumping", "hint": "synonyms for trumping", "clues": ["ruff", "best", "scoop", "outflank", "trump out", "outdo", "trump"]}, {"answer": "trust", "hint": "synonyms for trust", "clues": ["desire", "swear", "intrust", "rely", "confide", "believe", "hope", "bank", "commit", "trust"]}, {"answer": "try", "hint": "synonyms for try", "clues": ["examine", "prove", "adjudicate", "hear", "seek", "try out", "stress", "strain", "test", "assay", "sample", "judge", "render", "attempt", "try on", "taste", "essay", "try"]}, {"answer": "tucker", "hint": "synonyms for tucker", "clues": ["exhaust", "beat", "tucker out", "wash up", "tucker"]}, {"answer": "tug", "hint": "synonyms for tug", "clues": ["lug", "labor", "drive", "tote", "push", "tug"]}, {"answer": "tumble", "hint": "synonyms for tumble", "clues": ["crumple", "get wise", "topple", "whirl around", "get it", "get onto", "latch on", "twig", "cotton on", "tip", "break down", "collapse", "whirl", "tumble"]}, {"answer": "tumbling", "hint": "synonyms for tumbling", "clues": ["crumple", "get wise", "topple", "whirl around", "get it", "get onto", "latch on", "twig", "cotton on", "tip", "break down", "collapse", "tumble", "whirl", "tumbling"]}, {"answer": "turn", "hint": "synonyms for turn", "clues": ["rick", "sour", "become", "bend", "plow", "change by reversal", "plough", "ferment", "flex", "wrench", "twist", "sprain", "deform", "call on", "release", "change state", "grow", "reverse", "work", "move around", "turn over", "turn"]}, {"answer": "turning", "hint": "synonyms for turning", "clues": ["rick", "sour", "become", "bend", "turn", "plow", "change by reversal", "plough", "ferment", "flex", "wrench", "twist", "sprain", "deform", "call on", "release", "reverse", "grow", "change state", "work", "move around", "turn over"]}, {"answer": "twaddle", "hint": "synonyms for twaddle", "clues": ["prattle", "palaver", "chatter", "clack", "prate", "gabble", "blab", "tittle-tattle", "blabber", "tattle", "gibber", "maunder", "piffle", "twaddle"]}, {"answer": "tweak", "hint": "synonyms for tweak", "clues": ["pick off", "pull off", "pluck", "fine-tune", "tweak"]}, {"answer": "tweet", "hint": "synonyms for tweet", "clues": ["twitch", "twirp", "twinge", "pinch", "nip", "squeeze", "tweet"]}, {"answer": "twiddle", "hint": "synonyms for twiddle", "clues": ["fiddle with", "swirl", "whirl", "twirl", "twiddle"]}, {"answer": "twig", "hint": "synonyms for twig", "clues": ["cotton on", "get wise", "catch on", "get it", "get onto", "tumble", "twig"]}, {"answer": "twine", "hint": "synonyms for twine", "clues": ["entwine", "wind", "lace", "interlace", "enlace", "distort", "intertwine", "roll", "wrap", "twist", "twine"]}, {"answer": "twinge", "hint": "synonyms for twinge", "clues": ["sting", "tweet", "nip", "twitch", "squeeze", "pinch", "prick", "twinge"]}, {"answer": "twinkle", "hint": "synonyms for twinkle", "clues": ["flash", "wink", "blink", "scintillate", "winkle"]}, {"answer": "twins", "hint": "synonyms for twins", "clues": ["mate", "couple", "match", "parallel", "twin", "duplicate", "pair"]}, {"answer": "twirl", "hint": "synonyms for twirl", "clues": ["twiddle", "swirl", "spin", "whirl", "birl", "twirl"]}, {"answer": "twist", "hint": "synonyms for twist", "clues": ["rick", "wind", "squirm", "wriggle", "sophisticate", "bend", "curve", "writhe", "turn", "worm", "twist around", "flex", "twine", "distort", "wrench", "sprain", "wrestle", "pervert", "convolute", "deform", "twist"]}, {"answer": "twit", "hint": "synonyms for twit", "clues": ["cod", "rally", "ride", "taunt", "razz", "tease", "bait", "tantalize", "rag", "twit"]}, {"answer": "twitch", "hint": "synonyms for twitch", "clues": ["tweet", "twinge", "flip", "pinch", "jerk", "nip", "squeeze", "twitch"]}, {"answer": "twitching", "hint": "synonyms for twitching", "clues": ["twitch", "twinge", "tweet", "squeeze", "flip", "pinch", "jerk", "nip"]}, {"answer": "tying", "hint": "synonyms for tying", "clues": ["bind", "link", "attach", "draw", "splice", "wed", "connect", "link up", "marry", "bond", "tie", "tying"]}, {"answer": "uncovering", "hint": "synonyms for uncovering", "clues": ["uncover", "reveal", "unveil", "expose", "bring out"]}, {"answer": "undertaking", "hint": "synonyms for undertaking", "clues": ["take on", "set about", "undertake", "take in charge", "contract", "tackle", "attempt", "guarantee", "undertaking"]}, {"answer": "undoing", "hint": "synonyms for undoing", "clues": ["untie", "unwrap", "unmake", "loosen", "undo"]}, {"answer": "undress", "hint": "synonyms for undress", "clues": ["discase", "unclothe", "divest", "uncase", "strip", "disinvest", "strip down", "disrobe", "peel", "undress"]}, {"answer": "unfolding", "hint": "synonyms for unfolding", "clues": ["stretch", "blossom forth", "blossom out", "blossom", "spread", "extend", "unfold", "open", "spread out", "stretch out"]}, {"answer": "uniting", "hint": "synonyms for uniting", "clues": ["link", "join", "merge", "connect", "combine", "unify", "link up", "unite", "uniting"]}, {"answer": "unloading", "hint": "synonyms for unloading", "clues": ["drop off", "drop", "put down", "unload", "unlade", "discharge", "set down", "offload"]}, {"answer": "untangling", "hint": "synonyms for untangling", "clues": ["unscramble", "disentangle", "unknot", "unravel", "unpick", "extricate", "disencumber", "untangle", "untangling"]}, {"answer": "untying", "hint": "synonyms for untying", "clues": ["undo", "untie", "loosen", "unbrace", "unlace", "untying"]}, {"answer": "unveiling", "hint": "synonyms for unveiling", "clues": ["uncover", "unveil", "reveal", "bring out"]}, {"answer": "upgrade", "hint": "synonyms for upgrade", "clues": ["promote", "kick upstairs", "advance", "elevate", "raise", "upgrade"]}, {"answer": "uplift", "hint": "synonyms for uplift", "clues": ["pick up", "elate", "intoxicate", "lift up", "uplift"]}, {"answer": "uplifting", "hint": "synonyms for uplifting", "clues": ["pick up", "uplift", "elate", "intoxicate", "lift up"]}, {"answer": "uprising", "hint": "synonyms for uprising", "clues": ["come up", "originate", "rise", "bristle", "go up", "lift", "uprise", "move up", "stand up", "turn out", "grow", "develop", "ascend", "spring up", "resurrect", "get up", "uprising"]}, {"answer": "urge", "hint": "synonyms for urge", "clues": ["inspire", "press", "recommend", "exhort", "urge on", "pep up", "barrack", "advocate", "cheer", "root on", "urge"]}, {"answer": "urging", "hint": "synonyms for urging", "clues": ["inspire", "press", "recommend", "exhort", "urge on", "pep up", "barrack", "urge", "advocate", "cheer", "root on", "urging"]}, {"answer": "use", "hint": "synonyms for use", "clues": ["employ", "utilize", "expend", "practice", "apply", "habituate", "use"]}, {"answer": "using", "hint": "synonyms for using", "clues": ["utilize", "use", "practice", "habituate", "expend", "employ", "apply", "using"]}, {"answer": "vaccinating", "hint": "synonyms for vaccinating", "clues": ["immunise", "inoculate", "vaccinate", "vaccinating"]}, {"answer": "value", "hint": "synonyms for value", "clues": ["rate", "respect", "treasure", "valuate", "appreciate", "assess", "appraise", "esteem", "prize", "measure", "prise", "value"]}, {"answer": "values", "hint": "synonyms for values", "clues": ["value", "respect", "treasure", "rate", "valuate", "appreciate", "assess", "appraise", "esteem", "prize", "measure", "prise"]}, {"answer": "vanishing", "hint": "synonyms for vanishing", "clues": ["fell", "vanish", "go away", "vaporize", "disappear", "fly"]}, {"answer": "vaunt", "hint": "synonyms for vaunt", "clues": ["swash", "gas", "boast", "bluster", "shoot a line", "gasconade", "tout", "blow", "brag", "vaunt"]}, {"answer": "veering", "hint": "synonyms for veering", "clues": ["slew", "swerve", "slue", "curve", "cut", "trend", "veer", "sheer"]}, {"answer": "veil", "hint": "synonyms for veil", "clues": ["obliterate", "hide", "obscure", "blot out", "veil"]}, {"answer": "veiling", "hint": "synonyms for veiling", "clues": ["hide", "veil", "obliterate", "obscure", "blot out"]}, {"answer": "vending", "hint": "synonyms for vending", "clues": ["peddle", "pitch", "vend", "monger", "huckster", "hawk"]}, {"answer": "vent", "hint": "synonyms for vent", "clues": ["air out", "air", "ventilate", "give vent", "vent"]}, {"answer": "venting", "hint": "synonyms for venting", "clues": ["air out", "vent", "air", "ventilate", "give vent"]}, {"answer": "venture", "hint": "synonyms for venture", "clues": ["adventure", "embark", "jeopardize", "hazard", "guess", "stake", "pretend"]}, {"answer": "veto", "hint": "synonyms for veto", "clues": ["negative", "blackball", "disallow", "forbid", "interdict", "prohibit", "nix", "proscribe", "veto"]}, {"answer": "view", "hint": "synonyms for view", "clues": ["look at", "watch", "consider", "reckon", "regard", "see", "take in", "catch", "view"]}, {"answer": "viewing", "hint": "synonyms for viewing", "clues": ["take in", "look at", "watch", "consider", "reckon", "regard", "see", "view", "catch"]}, {"answer": "visit", "hint": "synonyms for visit", "clues": ["inflict", "chatter", "jaw", "natter", "confab", "chat", "inspect", "gossip", "chitchat", "bring down", "shoot the breeze", "travel to", "call", "chaffer", "claver", "confabulate", "chew the fat", "see", "call in", "impose", "visit"]}, {"answer": "visiting", "hint": "synonyms for visiting", "clues": ["inflict", "chatter", "jaw", "natter", "confab", "chat", "inspect", "gossip", "chitchat", "bring down", "shoot the breeze", "chaffer", "call", "claver", "confabulate", "chew the fat", "impose", "visit", "see", "call in", "travel to"]}, {"answer": "vocalizing", "hint": "synonyms for vocalizing", "clues": ["voice", "phonate", "articulate", "enunciate", "vowelise", "vocalise", "sound", "vocalizing"]}, {"answer": "voicing", "hint": "synonyms for voicing", "clues": ["voice", "vocalise", "sound", "voicing"]}, {"answer": "voiding", "hint": "synonyms for voiding", "clues": ["invalidate", "avoid", "nullify", "evacuate", "vitiate", "quash", "annul", "empty", "voiding"]}, {"answer": "vomit", "hint": "synonyms for vomit", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "throw up", "spue", "barf", "chuck", "vomit"]}, {"answer": "vomiting", "hint": "synonyms for vomiting", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck"]}, {"answer": "wad", "hint": "synonyms for wad", "clues": ["bundle", "chock up", "compact", "pack", "cram", "jam", "jampack", "wad"]}, {"answer": "wadding", "hint": "synonyms for wadding", "clues": ["bundle", "chock up", "compact", "pack", "cram", "wad", "jam", "jampack", "wadding"]}, {"answer": "waddle", "hint": "synonyms for waddle", "clues": ["totter", "paddle", "toddle", "coggle", "dodder", "waddle"]}, {"answer": "wading", "hint": "synonyms for wading", "clues": ["bundle", "wade", "chock up", "compact", "pack", "cram", "jam", "jampack", "wading"]}, {"answer": "wads", "hint": "synonyms for wads", "clues": ["bundle", "chock up", "compact", "pack", "cram", "wad", "jam", "jampack"]}, {"answer": "wail", "hint": "synonyms for wail", "clues": ["whimper", "howl", "ululate", "yaup", "mewl", "roar", "yawl", "pule", "wail"]}, {"answer": "wait", "hint": "synonyms for wait", "clues": ["hold off", "expect", "await", "waitress", "look", "hold back"]}, {"answer": "wake", "hint": "synonyms for wake", "clues": ["stir up", "arouse", "awake", "fire up", "wake up", "come alive", "heat", "waken", "inflame", "ignite"]}, {"answer": "wakening", "hint": "synonyms for wakening", "clues": ["wake", "arouse", "wake up", "come alive", "awaken", "wakening"]}, {"answer": "wall", "hint": "synonyms for wall", "clues": ["fence in", "palisade", "surround", "fence", "wall"]}, {"answer": "wallow", "hint": "synonyms for wallow", "clues": ["triumph", "welter", "rejoice", "billow", "wallow"]}, {"answer": "wangle", "hint": "synonyms for wangle", "clues": ["falsify", "manage", "manipulate", "fudge", "cook", "misrepresent", "finagle", "fake", "wangle"]}, {"answer": "wangling", "hint": "synonyms for wangling", "clues": ["falsify", "manage", "manipulate", "fudge", "wangle", "cook", "misrepresent", "finagle", "fake", "wangling"]}, {"answer": "wank", "hint": "synonyms for wank", "clues": ["fuck off", "jerk off", "she-bop", "masturbate", "jack off", "wank"]}, {"answer": "warble", "hint": "synonyms for warble", "clues": ["trill", "descant", "yodel", "quaver", "warble"]}, {"answer": "warp", "hint": "synonyms for warp", "clues": ["falsify", "garble", "buckle", "heave", "distort", "warp"]}, {"answer": "warping", "hint": "synonyms for warping", "clues": ["warp", "falsify", "garble", "heave", "distort", "buckle"]}, {"answer": "wash", "hint": "synonyms for wash", "clues": ["lave", "launder", "wash out", "lap", "rinse", "wash off", "dampen", "wash away", "moisten", "wash"]}, {"answer": "washing", "hint": "synonyms for washing", "clues": ["lave", "launder", "wash out", "lap", "rinse", "wash off", "dampen", "wash", "wash away", "moisten"]}, {"answer": "wassail", "hint": "synonyms for wassail", "clues": ["make merry", "make happy", "revel", "jollify", "make whoopie", "pledge", "toast", "whoop it up", "racket", "drink", "salute", "wassail"]}, {"answer": "wasting", "hint": "synonyms for wasting", "clues": ["ware", "desolate", "squander", "do in", "macerate", "consume", "scourge", "waste", "emaciate", "run off", "lay waste to", "neutralise", "devastate", "languish", "liquidate", "pine away", "ravage", "knock off", "rot", "blow", "wasting"]}, {"answer": "watch", "hint": "synonyms for watch", "clues": ["follow", "determine", "keep an eye on", "learn", "ascertain", "watch out", "check", "look out", "watch over", "observe", "view", "find out", "see", "look on", "take in", "catch", "watch"]}, {"answer": "watching", "hint": "synonyms for watching", "clues": ["watch", "learn", "ascertain", "look out", "observe", "take in", "view", "follow", "determine", "keep an eye on", "watch out", "check", "watch over", "find out", "see", "look on", "catch"]}, {"answer": "wave", "hint": "synonyms for wave", "clues": ["flourish", "beckon", "curl", "roll", "flap", "brandish", "undulate", "wave"]}, {"answer": "waver", "hint": "synonyms for waver", "clues": ["flutter", "fluctuate", "quiver", "weave", "vacillate", "quaver", "waffle", "hesitate", "falter", "flicker", "waver"]}, {"answer": "waving", "hint": "synonyms for waving", "clues": ["beckon", "curl", "wave", "brandish", "undulate", "flourish", "roll", "flap", "waving"]}, {"answer": "wax", "hint": "synonyms for wax", "clues": ["rise", "climb", "full", "mount", "wax"]}, {"answer": "wear", "hint": "synonyms for wear", "clues": ["tire out", "fall apart", "bear", "have on", "wear down", "fatigue", "don", "tire", "wear upon", "bust", "put on", "fag out", "break", "wear out", "jade", "hold out", "wear thin", "get into", "endure", "fag", "outwear", "wear off", "weary", "assume"]}, {"answer": "weave", "hint": "synonyms for weave", "clues": ["thread", "meander", "interweave", "wander", "wind", "waver", "tissue", "weave"]}, {"answer": "weaving", "hint": "synonyms for weaving", "clues": ["thread", "meander", "wind", "weave", "waver", "wander", "interweave", "tissue", "weaving"]}, {"answer": "wedding", "hint": "synonyms for wedding", "clues": ["splice", "wed", "get married", "espouse", "marry", "tie", "hook up with", "get hitched with", "conjoin", "wedding"]}, {"answer": "wedge", "hint": "synonyms for wedge", "clues": ["squeeze", "deposit", "lodge", "stick", "force", "wedge"]}, {"answer": "weighing", "hint": "synonyms for weighing", "clues": ["librate", "weigh", "press", "matter", "consider", "count"]}, {"answer": "weight", "hint": "synonyms for weight", "clues": ["slant", "weight down", "burden", "angle", "burthen", "weight"]}, {"answer": "weighting", "hint": "synonyms for weighting", "clues": ["slant", "weight down", "burden", "angle", "weight", "burthen"]}, {"answer": "welt", "hint": "synonyms for welt", "clues": ["whip", "lash", "strap", "trounce", "flog", "lather", "welt"]}, {"answer": "wet-nurse", "hint": "synonyms for wet-nurse", "clues": ["nurse", "suckle", "breastfeed", "give suck", "suck", "lactate", "wet-nurse"]}, {"answer": "wheedling", "hint": "synonyms for wheedling", "clues": ["sweet-talk", "coax", "palaver", "inveigle", "blarney", "wheedle", "cajole", "wheedling"]}, {"answer": "wheel", "hint": "synonyms for wheel", "clues": ["wheel around", "bicycle", "bike", "cycle", "roll", "pedal", "wheel"]}, {"answer": "wheeling", "hint": "synonyms for wheeling", "clues": ["wheel around", "wheel", "bicycle", "bike", "cycle", "roll", "pedal"]}, {"answer": "whine", "hint": "synonyms for whine", "clues": ["yammer", "yawp", "skreak", "snivel", "screech", "grizzle", "squeak", "creak", "whine"]}, {"answer": "whip", "hint": "synonyms for whip", "clues": ["worst", "scald", "whisk", "slash", "mop up", "lather", "blister", "rack up", "strap", "trounce", "flog", "pip", "welt", "whip"]}, {"answer": "whir", "hint": "synonyms for whir", "clues": ["whirr", "purr", "birr", "whiz"]}, {"answer": "whirl", "hint": "synonyms for whirl", "clues": ["whirlpool", "spin around", "purl", "reel", "whirl around", "gyrate", "birl", "eddy", "twiddle", "swirl", "spin", "tumble", "twirl", "whirl"]}, {"answer": "whirling", "hint": "synonyms for whirling", "clues": ["whirlpool", "spin around", "purl", "reel", "whirl around", "gyrate", "birl", "eddy", "twiddle", "swirl", "spin", "tumble", "whirl", "twirl"]}, {"answer": "whirlpool", "hint": "synonyms for whirlpool", "clues": ["eddy", "swirl", "purl", "whirl", "whirlpool"]}, {"answer": "whirr", "hint": "synonyms for whirr", "clues": ["purr", "birr", "churr", "whiz", "whir"]}, {"answer": "whiz", "hint": "synonyms for whiz", "clues": ["whirr", "purr", "birr", "whizz"]}, {"answer": "whizz", "hint": "synonyms for whizz", "clues": ["zoom", "whirr", "purr", "birr", "zoom along", "whiz", "whizz along"]}, {"answer": "wideness", "hint": "synonyms for wideness", "clues": ["extend", "broaden", "widen", "let out", "wideness"]}, {"answer": "widening", "hint": "synonyms for widening", "clues": ["extend", "broaden", "widen", "let out"]}, {"answer": "win", "hint": "synonyms for win", "clues": ["deliver the goods", "bring home the bacon", "gain", "pull ahead", "come through", "make headway", "succeed", "get ahead", "acquire", "advance", "gain ground", "win"]}, {"answer": "wince", "hint": "synonyms for wince", "clues": ["cringe", "squinch", "funk", "flinch", "quail", "shrink", "recoil", "wince"]}, {"answer": "wind", "hint": "synonyms for wind", "clues": ["wreathe", "thread", "hoist", "weave", "wander", "curve", "nose", "scent", "roll", "wrap", "twine", "twist", "wind up", "meander", "lift", "wind"]}, {"answer": "wink", "hint": "synonyms for wink", "clues": ["nictate", "flash", "twinkle", "blink", "blink away", "wink"]}, {"answer": "winkle", "hint": "synonyms for winkle", "clues": ["flash", "wink", "twinkle", "blink", "scintillate", "winkle out"]}, {"answer": "wiring", "hint": "synonyms for wiring", "clues": ["telegraph", "electrify", "cable", "wire", "wiring"]}, {"answer": "wish", "hint": "synonyms for wish", "clues": ["care", "like", "bid", "wish well", "wish"]}, {"answer": "wishing", "hint": "synonyms for wishing", "clues": ["wish", "like", "bid", "care", "wish well"]}, {"answer": "witch", "hint": "synonyms for witch", "clues": ["jinx", "hex", "bewitch", "glamour", "enchant", "witch"]}, {"answer": "withers", "hint": "synonyms for withers", "clues": ["shrivel", "fade", "shrivel up", "wither", "shrink"]}, {"answer": "withholding", "hint": "synonyms for withholding", "clues": ["keep back", "withhold", "deduct", "recoup"]}, {"answer": "wobble", "hint": "synonyms for wobble", "clues": ["shimmy", "shift", "careen", "tilt", "coggle", "wobble"]}, {"answer": "wonder", "hint": "synonyms for wonder", "clues": ["marvel", "enquire", "question", "wonder"]}, {"answer": "wooing", "hint": "synonyms for wooing", "clues": ["woo", "solicit", "romance", "court"]}, {"answer": "word", "hint": "synonyms for word", "clues": ["articulate", "formulate", "phrase", "give voice", "word"]}, {"answer": "wording", "hint": "synonyms for wording", "clues": ["formulate", "give voice", "articulate", "phrase", "word"]}, {"answer": "words", "hint": "synonyms for words", "clues": ["formulate", "give voice", "articulate", "phrase", "word"]}, {"answer": "work", "hint": "synonyms for work", "clues": ["exercise", "sour", "form", "go", "make for", "forge", "function", "bring", "turn", "influence", "figure out", "wreak", "act upon", "mould", "ferment", "put to work", "solve", "work out", "act", "make", "knead", "lick", "operate", "crop", "puzzle out", "work on", "run", "process", "shape", "do work", "exploit", "play", "cultivate", "work"]}, {"answer": "workings", "hint": "synonyms for workings", "clues": ["exercise", "sour", "form", "go", "make for", "forge", "function", "bring", "turn", "influence", "figure out", "wreak", "act upon", "mould", "ferment", "put to work", "solve", "work out", "act", "make", "knead", "lick", "operate", "crop", "puzzle out", "run", "work on", "process", "shape", "work", "do work", "exploit", "play", "cultivate", "workings"]}, {"answer": "works", "hint": "synonyms for works", "clues": ["exercise", "sour", "form", "go", "make for", "forge", "function", "bring", "turn", "influence", "figure out", "wreak", "act upon", "mould", "ferment", "put to work", "solve", "work out", "act", "make", "knead", "lick", "operate", "crop", "puzzle out", "run", "work on", "process", "shape", "work", "do work", "exploit", "play", "cultivate"]}, {"answer": "worm", "hint": "synonyms for worm", "clues": ["writhe", "twist", "squirm", "wriggle", "wrestle", "worm"]}, {"answer": "worry", "hint": "synonyms for worry", "clues": ["vex", "occupy", "care", "interest", "concern", "worry"]}, {"answer": "worship", "hint": "synonyms for worship", "clues": ["idolize", "revere", "hero-worship", "worship"]}, {"answer": "worsted", "hint": "synonyms for worsted", "clues": ["worst", "rack up", "whip", "mop up", "pip", "worsted"]}, {"answer": "wrap", "hint": "synonyms for wrap", "clues": ["enfold", "enwrap", "wrap up", "wind", "enclose", "roll", "envelop", "twine", "wrap"]}, {"answer": "wrapping", "hint": "synonyms for wrapping", "clues": ["enfold", "enwrap", "wrap up", "wind", "enclose", "roll", "wrap", "envelop", "twine", "wrapping"]}, {"answer": "wrench", "hint": "synonyms for wrench", "clues": ["rick", "turn", "twist", "wring", "sprain", "wrench"]}, {"answer": "wrestle", "hint": "synonyms for wrestle", "clues": ["writhe", "worm", "squirm", "wriggle", "twist", "wrestle"]}, {"answer": "wrestling", "hint": "synonyms for wrestling", "clues": ["writhe", "worm", "twist", "squirm", "wriggle", "wrestle", "wrestling"]}, {"answer": "wrick", "hint": "synonyms for wrick", "clues": ["rick", "turn", "twist", "wrench", "sprain"]}, {"answer": "wriggle", "hint": "synonyms for wriggle", "clues": ["writhe", "worm", "twist", "squirm", "wrestle", "wriggle"]}, {"answer": "wring", "hint": "synonyms for wring", "clues": ["rack", "gouge", "wrench", "extort", "contort", "squeeze", "distort", "deform", "wring"]}, {"answer": "wrinkle", "hint": "synonyms for wrinkle", "clues": ["furrow", "crumple", "crease", "ruckle", "scrunch up", "scrunch", "purse", "crisp", "crinkle"]}, {"answer": "writing", "hint": "synonyms for writing", "clues": ["drop a line", "pen", "compose", "write", "indite", "publish", "spell", "save", "writing"]}, {"answer": "writings", "hint": "synonyms for writings", "clues": ["drop a line", "pen", "compose", "write", "indite", "publish", "spell", "save", "writings"]}, {"answer": "yack", "hint": "synonyms for yack", "clues": ["yack away", "jaw", "yap away", "rattle on", "yack"]}, {"answer": "yawl", "hint": "synonyms for yawl", "clues": ["howl", "ululate", "yaup", "roar", "wail", "yawl"]}, {"answer": "yearning", "hint": "synonyms for yearning", "clues": ["yearn", "long", "yen", "hanker", "languish", "ache", "pine"]}, {"answer": "yell", "hint": "synonyms for yell", "clues": ["holler", "call", "cry", "shout", "squall", "shout out", "scream", "hollo", "yell"]}, {"answer": "yelling", "hint": "synonyms for yelling", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "shout out", "scream", "hollo"]}, {"answer": "yen", "hint": "synonyms for yen", "clues": ["languish", "pine", "ache", "yearn", "yen"]}, {"answer": "yield", "hint": "synonyms for yield", "clues": ["succumb", "relent", "bear", "give in", "knuckle under", "move over", "return", "afford", "render", "grant", "ease up", "give way", "give", "cede", "pay", "generate", "concede", "soften", "yield"]}, {"answer": "yowl", "hint": "synonyms for yowl", "clues": ["howl", "caterwaul", "wrawl", "yammer", "yowl"]}, {"answer": "zap", "hint": "synonyms for zap", "clues": ["atomize", "microwave", "micro-cook", "vaporize", "nuke", "zap"]}, {"answer": "zip", "hint": "synonyms for zip", "clues": ["zipper", "speed", "zip up", "travel rapidly", "hurry", "zip"]}, {"answer": "zoom", "hint": "synonyms for zoom", "clues": ["soar", "soar upwards", "soar up", "surge", "zoom along", "whizz along", "whizz", "zoom"]}, {"answer": "abase", "hint": "synonyms for abase", "clues": ["humble", "chagrin", "humiliate", "mortify", "abase"]}, {"answer": "abate", "hint": "synonyms for abate", "clues": ["die away", "let up", "slack off", "slack", "slake", "abate"]}, {"answer": "abbreviate", "hint": "synonyms for abbreviate", "clues": ["cut", "foreshorten", "abridge", "contract", "shorten", "reduce", "abbreviate"]}, {"answer": "abide", "hint": "synonyms for abide", "clues": ["stay", "digest", "support", "stand", "bear", "endure", "tolerate", "suffer", "put up", "bide", "stomach", "brook", "stick out"]}, {"answer": "abide_by", "hint": "synonyms for abide by", "clues": ["follow", "respect", "observe", "honor", "comply", "abide by"]}, {"answer": "abjure", "hint": "synonyms for abjure", "clues": ["retract", "recant", "forswear", "resile", "abjure"]}, {"answer": "abrade", "hint": "synonyms for abrade", "clues": ["abrase", "rub down", "rub off", "corrade", "scour", "abrade"]}, {"answer": "abrase", "hint": "synonyms for abrase", "clues": ["rub off", "rub down", "abrade", "corrade", "abrase"]}, {"answer": "abridge", "hint": "synonyms for abridge", "clues": ["cut", "abbreviate", "foreshorten", "contract", "shorten", "reduce", "abridge"]}, {"answer": "abscond", "hint": "synonyms for abscond", "clues": ["make off", "decamp", "bolt", "go off", "run off", "absquatulate", "abscond"]}, {"answer": "absorb", "hint": "synonyms for absorb", "clues": ["draw", "take up", "steep", "engage", "engross", "take over", "imbibe", "sop up", "plunge", "take in", "ingest", "soak up", "suck up", "immerse", "assimilate", "suck", "occupy", "engulf", "absorb"]}, {"answer": "absquatulate", "hint": "synonyms for absquatulate", "clues": ["abscond", "make off", "decamp", "bolt", "go off", "run off", "absquatulate"]}, {"answer": "abut", "hint": "synonyms for abut", "clues": ["march", "butt", "adjoin", "butt against", "border", "butt on", "edge", "abut"]}, {"answer": "accede", "hint": "synonyms for accede", "clues": ["submit", "enter", "assent", "acquiesce", "bow", "give in", "defer", "accede"]}, {"answer": "accentuate", "hint": "synonyms for accentuate", "clues": ["stress", "emphasize", "punctuate", "accent", "accentuate"]}, {"answer": "accept", "hint": "synonyms for accept", "clues": ["swallow", "take on", "go for", "have", "bear", "take", "live with", "take over", "consent", "admit", "assume", "accept"]}, {"answer": "accommodate", "hint": "synonyms for accommodate", "clues": ["fit", "oblige", "lodge", "reconcile", "suit", "adapt", "admit", "hold", "conciliate", "accommodate"]}, {"answer": "accompany", "hint": "synonyms for accompany", "clues": ["follow", "attach to", "company", "play along", "keep company", "companion", "go with", "come with"]}, {"answer": "accomplish", "hint": "synonyms for accomplish", "clues": ["attain", "achieve", "reach", "fulfill", "carry through", "carry out", "action", "execute", "accomplish"]}, {"answer": "accost", "hint": "synonyms for accost", "clues": ["solicit", "come up to", "address", "hook", "accost"]}, {"answer": "accumulate", "hint": "synonyms for accumulate", "clues": ["pile up", "amass", "cumulate", "hoard", "gather", "compile", "conglomerate", "roll up", "collect"]}, {"answer": "accurse", "hint": "synonyms for accurse", "clues": ["execrate", "anathematize", "comminate", "anathemise", "accurse"]}, {"answer": "accuse", "hint": "synonyms for accuse", "clues": ["criminate", "charge", "impeach", "accuse"]}, {"answer": "acknowledge", "hint": "synonyms for acknowledge", "clues": ["recognise", "notice", "admit", "know", "receipt", "acknowledge"]}, {"answer": "acquaint", "hint": "synonyms for acquaint", "clues": ["present", "familiarize", "introduce", "acquaint"]}, {"answer": "acquire", "hint": "synonyms for acquire", "clues": ["take on", "adopt", "gain", "learn", "take", "grow", "develop", "win", "evolve", "produce", "get", "assume", "acquire"]}, {"answer": "acquit", "hint": "synonyms for acquit", "clues": ["conduct", "comport", "exonerate", "bear", "discharge", "exculpate", "clear", "behave", "deport", "carry", "assoil", "acquit"]}, {"answer": "activate", "hint": "synonyms for activate", "clues": ["set off", "spark", "spark off", "trigger", "actuate", "trigger off", "trip", "touch off", "aerate", "activate"]}, {"answer": "actuate", "hint": "synonyms for actuate", "clues": ["set off", "spark", "spark off", "trigger", "prompt", "trigger off", "trip", "touch off", "incite", "activate", "motivate", "move", "propel", "actuate"]}, {"answer": "add_together", "hint": "synonyms for add together", "clues": ["tot up", "total", "summate", "tot", "add up", "add", "sum", "sum up", "tally", "add together"]}, {"answer": "add_up", "hint": "synonyms for add up", "clues": ["tot up", "total", "add together", "summate", "tot", "amount", "make sense", "come", "number", "sum up", "add", "sum", "tally", "add up"]}, {"answer": "adhere", "hint": "synonyms for adhere", "clues": ["bind", "cleave", "cohere", "cling", "stick to", "hold fast", "stick by", "bond", "stand by", "stick", "adhere"]}, {"answer": "adjoin", "hint": "synonyms for adjoin", "clues": ["march", "abut", "butt", "butt against", "meet", "border", "contact", "touch", "butt on", "edge", "adjoin"]}, {"answer": "adjourn", "hint": "synonyms for adjourn", "clues": ["break up", "retire", "withdraw", "recess", "adjourn"]}, {"answer": "adjudicate", "hint": "synonyms for adjudicate", "clues": ["decide", "judge", "try", "resolve", "settle", "adjudicate"]}, {"answer": "adjure", "hint": "synonyms for adjure", "clues": ["bid", "beseech", "entreat", "press", "conjure", "adjure"]}, {"answer": "adjust", "hint": "synonyms for adjust", "clues": ["conform", "aline", "adapt", "align", "correct", "set", "line up", "adjust"]}, {"answer": "administer", "hint": "synonyms for administer", "clues": ["dispense", "allot", "mete out", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "administrate", "administer"]}, {"answer": "admit", "hint": "synonyms for admit", "clues": ["take on", "acknowledge", "accommodate", "accept", "take", "allow in", "include", "hold", "intromit", "allow", "let in", "admit"]}, {"answer": "admonish", "hint": "synonyms for admonish", "clues": ["caution", "reprove", "warn", "discourage", "monish"]}, {"answer": "adopt", "hint": "synonyms for adopt", "clues": ["follow", "take on", "dramatize", "take up", "espouse", "take", "take over", "acquire", "sweep up", "embrace", "borrow", "assume", "adopt"]}, {"answer": "adorn", "hint": "synonyms for adorn", "clues": ["grace", "ornament", "clothe", "beautify", "decorate", "deck", "embellish", "invest", "adorn"]}, {"answer": "adumbrate", "hint": "synonyms for adumbrate", "clues": ["insinuate", "sketch", "intimate", "outline", "adumbrate"]}, {"answer": "advertise", "hint": "synonyms for advertise", "clues": ["promote", "publicise", "advertize", "push"]}, {"answer": "advertize", "hint": "synonyms for advertize", "clues": ["promote", "publicise", "advertise", "push"]}, {"answer": "advise", "hint": "synonyms for advise", "clues": ["apprise", "send word", "rede", "give notice", "suggest", "counsel", "propose", "notify", "advise"]}, {"answer": "aerate", "hint": "synonyms for aerate", "clues": ["air out", "oxygenate", "activate", "oxygenise", "air", "aerate"]}, {"answer": "affirm", "hint": "synonyms for affirm", "clues": ["aver", "support", "swear", "confirm", "swan", "avow", "assert", "sustain", "verify", "substantiate", "corroborate", "affirm"]}, {"answer": "aggrandise", "hint": "synonyms for aggrandise", "clues": ["dramatize", "aggrandize", "lard", "blow up", "embellish", "pad", "embroider"]}, {"answer": "aggrandize", "hint": "synonyms for aggrandize", "clues": ["dramatize", "aggrandise", "lard", "blow up", "embellish", "pad", "embroider"]}, {"answer": "agitate", "hint": "synonyms for agitate", "clues": ["press", "shake", "shift", "charge", "turn on", "campaign", "push", "stir", "stir up", "charge up", "fight", "shake up", "budge", "vex", "excite", "crusade", "disturb", "raise up", "rouse", "commove", "foment", "agitate"]}, {"answer": "agnise", "hint": "synonyms for agnise", "clues": ["recognise", "realise", "agnize", "agnise"]}, {"answer": "agnize", "hint": "synonyms for agnize", "clues": ["recognise", "realise", "agnise", "agnize"]}, {"answer": "agree", "hint": "synonyms for agree", "clues": ["fit", "match", "accord", "gibe", "fit in", "correspond", "check", "concord", "harmonize", "tally", "concur", "jibe", "hold", "consort", "agree"]}, {"answer": "air_out", "hint": "synonyms for air out", "clues": ["aerate", "vent", "air", "ventilate", "air out"]}, {"answer": "align", "hint": "synonyms for align", "clues": ["array", "aline", "adjust", "ordinate", "line up", "align"]}, {"answer": "allay", "hint": "synonyms for allay", "clues": ["ease", "slake", "assuage", "still", "relieve", "quench", "allay"]}, {"answer": "alleviate", "hint": "synonyms for alleviate", "clues": ["palliate", "ease", "facilitate", "relieve", "assuage", "alleviate"]}, {"answer": "allot", "hint": "synonyms for allot", "clues": ["dispense", "administer", "accord", "grant", "shell out", "assign", "lot", "deal", "deal out", "portion", "dish out", "dole out", "parcel out", "distribute", "mete out", "allot"]}, {"answer": "allow", "hint": "synonyms for allow", "clues": ["appropriate", "grant", "countenance", "let", "reserve", "leave", "give up", "provide", "take into account", "tolerate", "permit", "admit", "allow for", "earmark", "set aside", "allow"]}, {"answer": "alter", "hint": "synonyms for alter", "clues": ["spay", "neuter", "change", "falsify", "castrate", "vary", "interpolate", "modify", "alter"]}, {"answer": "altercate", "hint": "synonyms for altercate", "clues": ["dispute", "quarrel", "scrap", "argufy", "altercate"]}, {"answer": "amass", "hint": "synonyms for amass", "clues": ["pile up", "cumulate", "hoard", "gather", "compile", "conglomerate", "roll up", "collect", "amass"]}, {"answer": "amaze", "hint": "synonyms for amaze", "clues": ["stupefy", "flummox", "gravel", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "mystify", "vex", "astound", "bewilder", "stick", "astonish", "amaze"]}, {"answer": "ameliorate", "hint": "synonyms for ameliorate", "clues": ["meliorate", "amend", "improve", "better"]}, {"answer": "amend", "hint": "synonyms for amend", "clues": ["remedy", "rectify", "better", "remediate", "meliorate", "repair", "improve", "amend"]}, {"answer": "amplify", "hint": "synonyms for amplify", "clues": ["inflate", "magnify", "overdraw", "hyperbolise", "overstate", "blow up", "expand", "exaggerate", "amplify"]}, {"answer": "analyse", "hint": "synonyms for analyse", "clues": ["examine", "take apart", "canvass", "dissect", "psychoanalyse", "study", "break down", "analyze"]}, {"answer": "analyze", "hint": "synonyms for analyze", "clues": ["examine", "take apart", "canvass", "analyse", "dissect", "psychoanalyse", "study", "break down"]}, {"answer": "anathematise", "hint": "synonyms for anathematise", "clues": ["execrate", "anathematize", "comminate", "anathemise", "accurse"]}, {"answer": "anathematize", "hint": "synonyms for anathematize", "clues": ["execrate", "comminate", "anathemise", "accurse", "anathematize"]}, {"answer": "anathemise", "hint": "synonyms for anathemise", "clues": ["imprecate", "anathematize", "curse", "accurse", "execrate", "maledict", "comminate", "beshrew", "bedamn", "damn", "anathemise"]}, {"answer": "anathemize", "hint": "synonyms for anathemize", "clues": ["imprecate", "anathematize", "curse", "accurse", "execrate", "maledict", "comminate", "anathemise", "beshrew", "bedamn", "damn"]}, {"answer": "anele", "hint": "synonyms for anele", "clues": ["inunct", "oil", "anoint", "embrocate", "anele"]}, {"answer": "animadvert", "hint": "synonyms for animadvert", "clues": ["sound off", "speak out", "speak up", "opine", "animadvert"]}, {"answer": "annihilate", "hint": "synonyms for annihilate", "clues": ["eradicate", "decimate", "extinguish", "wipe out", "carry off", "eliminate", "annihilate"]}, {"answer": "announce", "hint": "synonyms for announce", "clues": ["declare", "harbinger", "herald", "denote", "annunciate", "foretell", "announce"]}, {"answer": "annoy", "hint": "synonyms for annoy", "clues": ["nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "rag", "get to", "chafe", "irritate", "bother", "annoy"]}, {"answer": "annul", "hint": "synonyms for annul", "clues": ["invalidate", "avoid", "nullify", "countermand", "quash", "revoke", "reverse", "overturn", "vacate", "rescind", "repeal", "lift", "annul"]}, {"answer": "annunciate", "hint": "synonyms for annunciate", "clues": ["harbinger", "herald", "announce", "foretell", "annunciate"]}, {"answer": "anoint", "hint": "synonyms for anoint", "clues": ["anele", "inunct", "oil", "embrocate", "anoint"]}, {"answer": "antecede", "hint": "synonyms for antecede", "clues": ["predate", "antedate", "forgo", "precede", "antecede"]}, {"answer": "antedate", "hint": "synonyms for antedate", "clues": ["predate", "foredate", "antecede", "forego", "precede", "antedate"]}, {"answer": "anticipate", "hint": "synonyms for anticipate", "clues": ["counter", "previse", "call", "look for", "foreknow", "foretell", "look to", "foresee", "expect", "forebode", "predict", "prognosticate", "forestall", "promise", "anticipate"]}, {"answer": "apologise", "hint": "synonyms for apologise", "clues": ["rationalise", "apologize", "justify", "excuse"]}, {"answer": "apologize", "hint": "synonyms for apologize", "clues": ["rationalise", "justify", "excuse", "apologise"]}, {"answer": "appal", "hint": "synonyms for appal", "clues": ["appall", "offend", "shock", "scandalise", "outrage", "alarm", "dismay", "horrify"]}, {"answer": "appall", "hint": "synonyms for appall", "clues": ["offend", "shock", "scandalise", "outrage", "alarm", "dismay", "appal", "horrify"]}, {"answer": "appear", "hint": "synonyms for appear", "clues": ["seem", "come along", "look", "come out", "appear"]}, {"answer": "appease", "hint": "synonyms for appease", "clues": ["stay", "gentle", "gruntle", "mollify", "placate", "pacify", "assuage", "propitiate", "lenify", "quell", "conciliate", "appease"]}, {"answer": "append", "hint": "synonyms for append", "clues": ["supplement", "supply", "tack", "tag on", "add", "tack on", "add on", "affix", "hang on", "append"]}, {"answer": "apply", "hint": "synonyms for apply", "clues": ["utilize", "use", "go for", "practice", "give", "employ", "lend oneself", "enforce", "hold", "put on", "implement", "apply"]}, {"answer": "appoint", "hint": "synonyms for appoint", "clues": ["nominate", "charge", "name", "constitute", "appoint"]}, {"answer": "apportion", "hint": "synonyms for apportion", "clues": ["divvy up", "portion out", "deal", "share", "allocate", "apportion"]}, {"answer": "appraise", "hint": "synonyms for appraise", "clues": ["value", "assess", "valuate", "survey", "measure", "appraise"]}, {"answer": "appreciate", "hint": "synonyms for appreciate", "clues": ["value", "apprise", "treasure", "take account", "revalue", "prize", "appreciate"]}, {"answer": "apprehend", "hint": "synonyms for apprehend", "clues": ["nail", "collar", "nab", "dig", "grok", "get the picture", "compass", "pick up", "arrest", "cop", "grasp", "comprehend", "savvy", "quail at", "apprehend"]}, {"answer": "apprise", "hint": "synonyms for apprise", "clues": ["advise", "send word", "apprize", "revalue", "give notice", "instruct", "notify", "appreciate"]}, {"answer": "apprize", "hint": "synonyms for apprize", "clues": ["apprise", "advise", "send word", "revalue", "give notice", "instruct", "notify", "appreciate"]}, {"answer": "arbitrate", "hint": "synonyms for arbitrate", "clues": ["intermediate", "mediate", "liaise", "intercede", "arbitrate"]}, {"answer": "argue", "hint": "synonyms for argue", "clues": ["reason", "debate", "indicate", "contend", "fence", "argue"]}, {"answer": "argufy", "hint": "synonyms for argufy", "clues": ["dispute", "altercate", "scrap", "quarrel", "argufy"]}, {"answer": "arise", "hint": "synonyms for arise", "clues": ["rebel", "come up", "originate", "rise", "go up", "rise up", "lift", "bob up", "uprise", "move up", "stand up", "turn out", "grow", "develop", "spring up", "get up"]}, {"answer": "arouse", "hint": "synonyms for arouse", "clues": ["call down", "wake", "call forth", "enkindle", "conjure", "stimulate", "invoke", "fire", "come alive", "energise", "perk up", "wind up", "turn on", "awaken", "stir", "put forward", "sex", "elicit", "raise", "wake up", "brace", "bring up", "excite", "provoke", "conjure up", "evoke", "rouse"]}, {"answer": "arrange", "hint": "synonyms for arrange", "clues": ["coiffure", "fix up", "order", "set up", "do", "format", "dress", "put", "coif", "stage", "set", "arrange"]}, {"answer": "arrive", "hint": "synonyms for arrive", "clues": ["come", "make it", "go far", "get", "get in", "arrive"]}, {"answer": "arrive_at", "hint": "synonyms for arrive at", "clues": ["reach", "make", "attain", "gain", "hit", "arrive at"]}, {"answer": "arrogate", "hint": "synonyms for arrogate", "clues": ["claim", "lay claim", "assign", "usurp", "assume", "seize", "take over", "arrogate"]}, {"answer": "arse_about", "hint": "synonyms for arse about", "clues": ["loll around", "arse around", "fuck off", "bum", "lounge around", "loaf", "bum about", "frig around", "loll", "lounge about", "bum around", "waste one's time", "arse about"]}, {"answer": "arse_around", "hint": "synonyms for arse around", "clues": ["loll around", "horse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "fool", "bum about", "frig around", "loll", "lounge about", "fool around", "bum around", "waste one's time"]}, {"answer": "ascend", "hint": "synonyms for ascend", "clues": ["come up", "uprise", "rise", "move up", "go up", "climb up", "ascend"]}, {"answer": "ascertain", "hint": "synonyms for ascertain", "clues": ["control", "ensure", "determine", "learn", "watch", "see to it", "check", "assure", "find out", "see", "find", "insure", "ascertain"]}, {"answer": "ask", "hint": "synonyms for ask", "clues": ["enquire", "need", "postulate", "take", "necessitate", "demand", "expect", "involve", "call for", "ask"]}, {"answer": "asperse", "hint": "synonyms for asperse", "clues": ["denigrate", "sully", "calumniate", "besmirch", "slander", "defame", "smear", "asperse"]}, {"answer": "asphyxiate", "hint": "synonyms for asphyxiate", "clues": ["smother", "stifle", "suffocate", "choke", "asphyxiate"]}, {"answer": "assail", "hint": "synonyms for assail", "clues": ["lash out", "round", "assault", "snipe", "attack", "set on", "assail"]}, {"answer": "assemble", "hint": "synonyms for assemble", "clues": ["meet", "piece", "forgather", "gather", "set up", "tack", "tack together", "put together", "get together", "assemble"]}, {"answer": "assert", "hint": "synonyms for assert", "clues": ["aver", "swear", "put forward", "affirm", "asseverate", "avow", "verify", "swan", "maintain", "insist", "assert"]}, {"answer": "assess", "hint": "synonyms for assess", "clues": ["value", "tax", "appraise", "valuate", "measure", "assess"]}, {"answer": "assign", "hint": "synonyms for assign", "clues": ["depute", "allot", "delegate", "specify", "ascribe", "set apart", "impute", "portion", "put", "attribute", "arrogate", "designate", "assign"]}, {"answer": "assimilate", "hint": "synonyms for assimilate", "clues": ["ingest", "absorb", "imbibe", "take in", "assimilate"]}, {"answer": "assoil", "hint": "synonyms for assoil", "clues": ["exonerate", "acquit", "discharge", "exculpate", "clear", "assoil"]}, {"answer": "assort", "hint": "synonyms for assort", "clues": ["affiliate", "sort", "sort out", "associate", "class", "classify", "consort", "separate", "assort"]}, {"answer": "assuage", "hint": "synonyms for assuage", "clues": ["palliate", "gentle", "appease", "gruntle", "mollify", "placate", "alleviate", "pacify", "quench", "lenify", "allay", "slake", "relieve", "conciliate", "assuage"]}, {"answer": "assume", "hint": "synonyms for assume", "clues": ["take on", "take up", "accept", "bear", "sham", "seize", "take over", "don", "take for granted", "presume", "acquire", "arrogate", "put on", "feign", "adopt", "get into", "wear", "take", "simulate", "usurp", "strike", "assume"]}, {"answer": "assure", "hint": "synonyms for assure", "clues": ["ensure", "control", "reassure", "see to it", "check", "tell", "secure", "see", "ascertain", "guarantee", "insure", "promise"]}, {"answer": "atone", "hint": "synonyms for atone", "clues": ["expiate", "repent", "aby", "atone"]}, {"answer": "attach", "hint": "synonyms for attach", "clues": ["bind", "impound", "bond", "tie", "sequester", "confiscate", "seize", "attach"]}, {"answer": "attach_to", "hint": "synonyms for attach to", "clues": ["accompany", "inhere in", "go with", "come with", "attach to"]}, {"answer": "attain", "hint": "synonyms for attain", "clues": ["chance on", "make", "gain", "hit", "arrive at", "achieve", "reach", "happen upon", "light upon", "discover", "come across", "come upon", "fall upon", "accomplish", "strike", "attain"]}, {"answer": "attaint", "hint": "synonyms for attaint", "clues": ["disgrace", "dishonour", "shame", "attaint"]}, {"answer": "attend", "hint": "synonyms for attend", "clues": ["pay heed", "look", "assist", "wait on", "hang", "give ear", "attend to", "take care", "see", "advert", "serve", "go to", "attend"]}, {"answer": "attend_to", "hint": "synonyms for attend to", "clues": ["assist", "wait on", "take to heart", "serve", "attend", "attend to"]}, {"answer": "attest", "hint": "synonyms for attest", "clues": ["demonstrate", "certify", "manifest", "evidence", "testify", "bear witness", "take the stand", "attest"]}, {"answer": "attract", "hint": "synonyms for attract", "clues": ["pull", "pull in", "draw in", "draw", "appeal", "attract"]}, {"answer": "auspicate", "hint": "synonyms for auspicate", "clues": ["forecast", "betoken", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure", "auspicate"]}, {"answer": "authorise", "hint": "synonyms for authorise", "clues": ["empower", "pass", "authorize", "clear"]}, {"answer": "authorize", "hint": "synonyms for authorize", "clues": ["empower", "authorise", "pass", "clear"]}, {"answer": "aver", "hint": "synonyms for aver", "clues": ["swear", "allege", "affirm", "say", "avow", "assert", "verify", "swan", "aver"]}, {"answer": "avert", "hint": "synonyms for avert", "clues": ["avoid", "stave off", "turn away", "forfend", "ward off", "head off", "deflect", "fend off", "obviate", "debar", "avert"]}, {"answer": "avoid", "hint": "synonyms for avoid", "clues": ["stave off", "invalidate", "nullify", "forfend", "quash", "avert", "annul", "ward off", "head off", "deflect", "fend off", "obviate", "void", "keep off", "debar"]}, {"answer": "avow", "hint": "synonyms for avow", "clues": ["aver", "swear", "affirm", "verify", "swan", "avouch", "assert", "avow"]}, {"answer": "awaken", "hint": "synonyms for awaken", "clues": ["wake", "arouse", "wake up", "come alive", "awaken"]}, {"answer": "babble_out", "hint": "synonyms for babble out", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "sing", "spill the beans", "tattle", "blab out", "babble out"]}, {"answer": "back_away", "hint": "synonyms for back away", "clues": ["pull back", "withdraw", "retreat", "crawfish out", "back out", "pull in one's horns", "crawfish", "back away"]}, {"answer": "back_down", "hint": "synonyms for back down", "clues": ["back off", "chicken out", "back up", "bow out", "pull out", "back down"]}, {"answer": "back_off", "hint": "synonyms for back off", "clues": ["pull out", "chicken out", "back up", "bow out", "back down", "back off"]}, {"answer": "back_out", "hint": "synonyms for back out", "clues": ["pull back", "withdraw", "retreat", "crawfish", "crawfish out", "pull in one's horns", "back away", "back out"]}, {"answer": "back_up", "hint": "synonyms for back up", "clues": ["support", "back off", "back", "foul", "clog up", "choke", "back down", "clog", "choke off", "congest", "back up"]}, {"answer": "ball_over", "hint": "synonyms for ball over", "clues": ["shock", "floor", "take aback", "blow out of the water", "ball over"]}, {"answer": "ball_up", "hint": "synonyms for ball up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "blow", "botch", "ball up"]}, {"answer": "ballyrag", "hint": "synonyms for ballyrag", "clues": ["push around", "browbeat", "strong-arm", "hector", "bullyrag", "bully", "boss around"]}, {"answer": "bamboozle", "hint": "synonyms for bamboozle", "clues": ["lead by the nose", "snow", "play false", "pull the wool over someone's eyes", "hoodwink", "bamboozle"]}, {"answer": "bang_up", "hint": "synonyms for bang up", "clues": ["knock up", "smash up", "smash", "prang up", "impregnate", "bang up"]}, {"answer": "banish", "hint": "synonyms for banish", "clues": ["bar", "blackball", "shun", "ostracize", "ban", "cast out", "relegate", "banish"]}, {"answer": "barge_in", "hint": "synonyms for barge in", "clues": ["put in", "butt in", "gate-crash", "break in", "chisel in", "cut in", "crash", "chime in", "barge in"]}, {"answer": "bask", "hint": "synonyms for bask", "clues": ["enjoy", "savor", "relish", "bask"]}, {"answer": "bawl_out", "hint": "synonyms for bawl out", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "rag", "bawl out"]}, {"answer": "be_amiss", "hint": "synonyms for be amiss", "clues": ["misconceive", "misinterpret", "misapprehend", "misunderstand", "misconstrue", "be amiss"]}, {"answer": "be_given", "hint": "synonyms for be given", "clues": ["incline", "tend", "lean", "run", "be given"]}, {"answer": "be_intimate", "hint": "synonyms for be intimate", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "be intimate"]}, {"answer": "be_on_the_ball", "hint": "synonyms for be on the ball", "clues": ["know what's going on", "know the score", "be with it", "know what's what", "be on the ball"]}, {"answer": "be_quiet", "hint": "synonyms for be quiet", "clues": ["belt up", "dummy up", "button up", "clam up", "close up", "shut up", "keep mum", "be quiet"]}, {"answer": "be_sick", "hint": "synonyms for be sick", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "be sick"]}, {"answer": "be_with_it", "hint": "synonyms for be with it", "clues": ["know what's going on", "know the score", "be on the ball", "know what's what", "be with it"]}, {"answer": "bear_away", "hint": "synonyms for bear away", "clues": ["bear off", "take away", "carry away", "carry off", "bear away"]}, {"answer": "bear_down", "hint": "synonyms for bear down", "clues": ["drag down", "overbear", "charge", "bear down on", "weigh down", "press down on"]}, {"answer": "bear_down_on", "hint": "synonyms for bear down on", "clues": ["bear down", "drag down", "press down on", "weigh down", "bear down upon"]}, {"answer": "bear_off", "hint": "synonyms for bear off", "clues": ["carry away", "bear away", "take away", "carry off", "bear off"]}, {"answer": "bear_on", "hint": "synonyms for bear on", "clues": ["bear upon", "impact", "carry on", "continue", "refer", "touch on", "relate", "have-to doe with", "preserve", "pertain", "come to", "touch", "uphold", "affect", "concern", "push"]}, {"answer": "bear_upon", "hint": "synonyms for bear upon", "clues": ["impact", "touch", "affect", "touch on", "bear on"]}, {"answer": "bear_witness", "hint": "synonyms for bear witness", "clues": ["prove", "testify", "attest", "evidence", "show", "take the stand", "bear witness"]}, {"answer": "beat_around_the_bush", "hint": "synonyms for beat around the bush", "clues": ["prevaricate", "equivocate", "palter", "tergiversate", "beat around the bush"]}, {"answer": "beat_back", "hint": "synonyms for beat back", "clues": ["force back", "drive", "repel", "repulse", "push back", "beat back"]}, {"answer": "beat_out", "hint": "synonyms for beat out", "clues": ["shell", "thump out", "trounce", "crush", "beat", "tap out", "vanquish", "beat out"]}, {"answer": "beat_up", "hint": "synonyms for beat up", "clues": ["work over", "rally", "beat", "drum up", "beat up"]}, {"answer": "beatify", "hint": "synonyms for beatify", "clues": ["inebriate", "tickle pink", "thrill", "exalt", "exhilarate", "beatify"]}, {"answer": "beautify", "hint": "synonyms for beautify", "clues": ["fancify", "grace", "ornament", "adorn", "decorate", "deck", "embellish", "prettify", "beautify"]}, {"answer": "becharm", "hint": "synonyms for becharm", "clues": ["captivate", "capture", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "becharm"]}, {"answer": "becloud", "hint": "synonyms for becloud", "clues": ["cloud", "haze over", "mist", "befog", "fog", "obnubilate", "obscure", "becloud"]}, {"answer": "become", "hint": "synonyms for become", "clues": ["turn", "suit", "go", "get", "become"]}, {"answer": "bedamn", "hint": "synonyms for bedamn", "clues": ["imprecate", "maledict", "curse", "anathemise", "beshrew", "damn", "bedamn"]}, {"answer": "bedevil", "hint": "synonyms for bedevil", "clues": ["fuddle", "throw", "dun", "discombobulate", "confuse", "crucify", "fox", "confound", "torment", "rag", "frustrate", "bedevil"]}, {"answer": "beetle_off", "hint": "synonyms for beetle off", "clues": ["bolt out", "run out", "bolt", "run off", "beetle off"]}, {"answer": "befog", "hint": "synonyms for befog", "clues": ["cloud", "haze over", "mist", "fog", "obnubilate", "becloud", "obscure", "befog"]}, {"answer": "befool", "hint": "synonyms for befool", "clues": ["cod", "fool", "dupe", "gull", "put one over", "put one across", "take in", "slang", "put on", "befool"]}, {"answer": "befuddle", "hint": "synonyms for befuddle", "clues": ["bedevil", "fuddle", "throw", "discombobulate", "confuse", "confound", "fox"]}, {"answer": "beg", "hint": "synonyms for beg", "clues": ["solicit", "tap", "implore", "pray", "beg"]}, {"answer": "beget", "hint": "synonyms for beget", "clues": ["generate", "bring forth", "mother", "get", "sire", "engender", "father", "beget"]}, {"answer": "begrime", "hint": "synonyms for begrime", "clues": ["bemire", "soil", "dirty", "colly", "grime", "begrime"]}, {"answer": "beguile", "hint": "synonyms for beguile", "clues": ["captivate", "capture", "becharm", "juggle", "trance", "hoodwink", "fascinate", "enchant", "bewitch", "charm", "catch", "enamor", "beguile"]}, {"answer": "behave", "hint": "synonyms for behave", "clues": ["conduct", "act", "comport", "acquit", "bear", "deport", "do", "carry", "behave"]}, {"answer": "beleaguer", "hint": "synonyms for beleaguer", "clues": ["hem in", "besiege", "circumvent", "bug", "pester", "badger", "tease", "surround", "beleaguer"]}, {"answer": "believe", "hint": "synonyms for believe", "clues": ["think", "trust", "consider", "conceive", "believe"]}, {"answer": "belittle", "hint": "synonyms for belittle", "clues": ["denigrate", "pick at", "minimize", "disparage", "diminish", "derogate", "belittle"]}, {"answer": "belt_along", "hint": "synonyms for belt along", "clues": ["hasten", "speed", "bucket along", "race", "rush", "step on it", "pelt along", "rush along", "hotfoot", "hie", "cannonball along"]}, {"answer": "belt_down", "hint": "synonyms for belt down", "clues": ["pop", "kill", "toss off", "drink down", "pour down", "bolt down", "down"]}, {"answer": "belt_up", "hint": "synonyms for belt up", "clues": ["be quiet", "dummy up", "button up", "clam up", "close up", "shut up", "keep mum", "belt up"]}, {"answer": "bemire", "hint": "synonyms for bemire", "clues": ["dirty", "soil", "begrime", "colly", "grime", "bemire"]}, {"answer": "berate", "hint": "synonyms for berate", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "dress down", "trounce", "bawl out", "rag", "berate"]}, {"answer": "beseech", "hint": "synonyms for beseech", "clues": ["bid", "adjure", "entreat", "press", "conjure", "beseech"]}, {"answer": "beset", "hint": "synonyms for beset", "clues": ["chivvy", "incrust", "chevy", "harass", "harry", "plague", "provoke", "hassle", "set upon", "molest", "beset"]}, {"answer": "beshrew", "hint": "synonyms for beshrew", "clues": ["imprecate", "maledict", "curse", "anathemise", "bedamn", "damn", "beshrew"]}, {"answer": "besiege", "hint": "synonyms for besiege", "clues": ["beleaguer", "hem in", "circumvent", "surround", "besiege"]}, {"answer": "besmirch", "hint": "synonyms for besmirch", "clues": ["denigrate", "sully", "asperse", "calumniate", "slander", "smirch", "defame", "smear"]}, {"answer": "bespeak", "hint": "synonyms for bespeak", "clues": ["indicate", "betoken", "point", "request", "signal", "quest", "call for", "bespeak"]}, {"answer": "bestir_oneself", "hint": "synonyms for bestir oneself", "clues": ["get moving", "get cracking", "get weaving", "get rolling", "get going", "get started", "bestir oneself"]}, {"answer": "bestow", "hint": "synonyms for bestow", "clues": ["contribute", "add", "lend", "confer", "impart", "bring", "bestow"]}, {"answer": "bestride", "hint": "synonyms for bestride", "clues": ["get on", "hop on", "mount up", "mount", "jump on", "climb on", "bestride"]}, {"answer": "bet_on", "hint": "synonyms for bet on", "clues": ["game", "gage", "back", "stake", "punt", "bet on"]}, {"answer": "betoken", "hint": "synonyms for betoken", "clues": ["forecast", "auspicate", "presage", "omen", "predict", "point", "prognosticate", "bode", "bespeak", "augur", "foretell", "indicate", "foreshadow", "portend", "signal", "prefigure", "betoken"]}, {"answer": "betray", "hint": "synonyms for betray", "clues": ["tell on", "cuckold", "cheat", "cheat on", "give away", "stag", "rat", "sell", "shit", "denounce", "bewray", "snitch", "wander", "fail", "lead astray", "grass", "shop", "deceive", "betray"]}, {"answer": "bewilder", "hint": "synonyms for bewilder", "clues": ["get", "stupefy", "throw", "discombobulate", "bemuse", "flummox", "gravel", "vex", "amaze", "nonplus", "puzzle", "perplex", "baffle", "dumbfound", "pose", "beat", "stick", "mystify", "bewilder"]}, {"answer": "bewitch", "hint": "synonyms for bewitch", "clues": ["captivate", "spellbind", "capture", "hex", "becharm", "glamour", "trance", "magnetise", "enchant", "charm", "mesmerise", "fascinate", "jinx", "beguile", "witch", "catch", "enamor", "bewitch"]}, {"answer": "bilk", "hint": "synonyms for bilk", "clues": ["cross", "scotch", "spoil", "queer", "evade", "foil", "elude", "baffle", "thwart", "frustrate", "bilk"]}, {"answer": "birl", "hint": "synonyms for birl", "clues": ["birle", "spin", "whirl", "twirl"]}, {"answer": "blab", "hint": "synonyms for blab", "clues": ["prattle", "palaver", "chatter", "peach", "babble", "tittle-tattle", "talk", "sing", "spill the beans", "blab out", "twaddle", "prate", "clack", "gabble", "let the cat out of the bag", "tattle", "blabber", "gibber", "maunder", "babble out", "piffle", "blab"]}, {"answer": "blab_out", "hint": "synonyms for blab out", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "sing", "spill the beans", "tattle", "babble out", "blab out"]}, {"answer": "blacken", "hint": "synonyms for blacken", "clues": ["nigrify", "melanize", "char", "black", "sear", "scorch", "blacken"]}, {"answer": "blaspheme", "hint": "synonyms for blaspheme", "clues": ["imprecate", "swear", "cuss", "curse", "blaspheme"]}, {"answer": "bleach_out", "hint": "synonyms for bleach out", "clues": ["discolourise", "decolorise", "decolour", "bleach", "bleach out"]}, {"answer": "bleed", "hint": "synonyms for bleed", "clues": ["run", "hemorrhage", "phlebotomise", "leech", "shed blood", "bleed"]}, {"answer": "bless", "hint": "synonyms for bless", "clues": ["consecrate", "hallow", "sanctify", "sign", "bless"]}, {"answer": "block_off", "hint": "synonyms for block off", "clues": ["shut off", "blockade", "block up", "barricade", "close off", "bar", "block", "stop", "block off"]}, {"answer": "block_up", "hint": "synonyms for block up", "clues": ["blockade", "barricade", "block off", "bar", "block", "stop", "block up"]}, {"answer": "blot_out", "hint": "synonyms for blot out", "clues": ["obliterate", "hide", "obscure", "veil", "blot out"]}, {"answer": "blow_a_fuse", "hint": "synonyms for blow a fuse", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "blow a fuse"]}, {"answer": "blow_one's_stack", "hint": "synonyms for blow one's stack", "clues": ["throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "blow one's stack"]}, {"answer": "blow_out", "hint": "synonyms for blow out", "clues": ["burn out", "extinguish", "snuff out", "blow", "quench", "blow out"]}, {"answer": "blow_out_of_the_water", "hint": "synonyms for blow out of the water", "clues": ["ball over", "floor", "shock", "take aback", "blow out of the water"]}, {"answer": "blow_over", "hint": "synonyms for blow over", "clues": ["pass off", "evanesce", "fade", "pass", "fleet", "blow over"]}, {"answer": "blow_up", "hint": "synonyms for blow up", "clues": ["set off", "puff up", "dramatize", "puff out", "inflate", "aggrandize", "lard", "puff", "lose one's temper", "blow a fuse", "fly off the handle", "expand", "flip one's lid", "hit the ceiling", "pad", "go ballistic", "have a fit", "embroider", "blow one's stack", "throw a fit", "magnify", "combust", "detonate", "explode", "have kittens", "embellish", "hit the roof", "amplify", "enlarge", "blow up"]}, {"answer": "blub", "hint": "synonyms for blub", "clues": ["snuffle", "blubber", "snivel", "blub"]}, {"answer": "blunder_out", "hint": "synonyms for blunder out", "clues": ["blurt out", "blurt", "blunder", "ejaculate", "blunder out"]}, {"answer": "blurt", "hint": "synonyms for blurt", "clues": ["ejaculate", "blurt out", "blunder out", "blunder", "blurt"]}, {"answer": "blurt_out", "hint": "synonyms for blurt out", "clues": ["ejaculate", "blurt", "blunder out", "blunder", "blurt out"]}, {"answer": "bode", "hint": "synonyms for bode", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "prefigure", "bode"]}, {"answer": "bodge", "hint": "synonyms for bodge", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bodge"]}, {"answer": "bog_down", "hint": "synonyms for bog down", "clues": ["grind to a halt", "mire", "bog", "get stuck", "bog down"]}, {"answer": "boil_down", "hint": "synonyms for boil down", "clues": ["concentrate", "come down", "decoct", "reduce", "boil down"]}, {"answer": "bollix", "hint": "synonyms for bollix", "clues": ["bumble", "botch up", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bollix"]}, {"answer": "bollix_up", "hint": "synonyms for bollix up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bollix up"]}, {"answer": "bollocks", "hint": "synonyms for bollocks", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bollocks"]}, {"answer": "bollocks_up", "hint": "synonyms for bollocks up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "bollocks up"]}, {"answer": "bolt_down", "hint": "synonyms for bolt down", "clues": ["kill", "pour down", "gobble up", "shovel in", "garbage down", "down", "pop", "toss off", "belt down", "drink down"]}, {"answer": "bolt_out", "hint": "synonyms for bolt out", "clues": ["run out", "bolt", "beetle off", "run off", "bolt out"]}, {"answer": "bone_up", "hint": "synonyms for bone up", "clues": ["swot up", "grind away", "mug up", "drum", "cram", "bone", "swot", "get up", "bone up"]}, {"answer": "bonk", "hint": "synonyms for bonk", "clues": ["roll in the hay", "hump", "have a go at it", "bop", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "whap", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "bash", "jazz", "know", "whop", "get laid", "have it away", "do it", "fuck", "sock", "lie with", "make love", "bonk"]}, {"answer": "boot_out", "hint": "synonyms for boot out", "clues": ["drum out", "turf out", "exclude", "kick out", "chuck out", "eject", "expel", "throw out", "oust", "boot out"]}, {"answer": "bootlick", "hint": "synonyms for bootlick", "clues": ["toady", "truckle", "kotow", "fawn", "suck up", "bootlick"]}, {"answer": "boss_around", "hint": "synonyms for boss around", "clues": ["push around", "browbeat", "strong-arm", "hector", "bullyrag", "bully", "boss around"]}, {"answer": "botch_up", "hint": "synonyms for botch up", "clues": ["bumble", "muck up", "bollix", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "botch up"]}, {"answer": "bourgeon", "hint": "synonyms for bourgeon", "clues": ["sprout", "spud", "shoot", "burgeon forth", "germinate", "pullulate", "bourgeon"]}, {"answer": "bow_out", "hint": "synonyms for bow out", "clues": ["back down", "back off", "chicken out", "withdraw", "pull out", "bow out"]}, {"answer": "bowdlerise", "hint": "synonyms for bowdlerise", "clues": ["shorten", "castrate", "bowdlerize", "expurgate"]}, {"answer": "bowdlerize", "hint": "synonyms for bowdlerize", "clues": ["shorten", "bowdlerise", "castrate", "expurgate"]}, {"answer": "bowl_over", "hint": "synonyms for bowl over", "clues": ["tip over", "boggle", "tump over", "knock over", "upset", "turn over", "flabbergast", "overturn", "bowl over"]}, {"answer": "brabble", "hint": "synonyms for brabble", "clues": ["pettifog", "niggle", "quibble", "squabble", "bicker", "brabble"]}, {"answer": "break_apart", "hint": "synonyms for break apart", "clues": ["take apart", "break up", "disassemble", "crash", "disunify", "dismantle", "break apart"]}, {"answer": "break_away", "hint": "synonyms for break away", "clues": ["secede", "escape", "break out", "hightail it", "splinter", "come off", "lam", "scat", "bunk", "break", "chip", "fly the coop", "chip off", "turn tail", "run", "break off", "run away", "take to the woods", "head for the hills", "scarper", "break away"]}, {"answer": "break_down", "hint": "synonyms for break down", "clues": ["break up", "snap", "go", "dissect", "analyse", "lose it", "give out", "collapse", "tumble", "take apart", "break", "conk out", "crumple", "give way", "fail", "go bad", "crush", "die", "decompose", "break down"]}, {"answer": "break_in", "hint": "synonyms for break in", "clues": ["break", "put in", "cut in", "barge in", "butt in", "chisel in", "chime in", "break in"]}, {"answer": "break_loose", "hint": "synonyms for break loose", "clues": ["escape", "get away", "explode", "burst forth", "break loose"]}, {"answer": "break_off", "hint": "synonyms for break off", "clues": ["break", "chip", "discontinue", "chip off", "stop", "cut short", "come off", "snap off", "knap", "break away", "break short", "cut off", "break off"]}, {"answer": "break_open", "hint": "synonyms for break open", "clues": ["erupt", "burst out", "burst", "flare up", "irrupt", "split", "flare", "break open"]}, {"answer": "break_out", "hint": "synonyms for break out", "clues": ["erupt", "break", "recrudesce", "break away", "break out"]}, {"answer": "break_through", "hint": "synonyms for break through", "clues": ["erupt", "crack", "push through", "come out", "come through", "break through"]}, {"answer": "break_up", "hint": "synonyms for break up", "clues": ["calve", "break apart", "recess", "adjourn", "scatter", "dismantle", "fragmentise", "sever", "break down", "crock up", "collapse", "disperse", "dissolve", "cut off", "break", "take apart", "interrupt", "disrupt", "decompose", "resolve", "fragment", "pick", "dispel", "crack", "crash", "disassemble", "dissipate", "split up", "separate", "part", "split", "break up"]}, {"answer": "breastfeed", "hint": "synonyms for breastfeed", "clues": ["nurse", "wet-nurse", "suckle", "give suck", "suck", "lactate", "breastfeed"]}, {"answer": "breathe", "hint": "synonyms for breathe", "clues": ["take a breath", "pass off", "catch one's breath", "respire", "emit", "rest", "suspire", "breathe"]}, {"answer": "breeze_through", "hint": "synonyms for breeze through", "clues": ["sweep through", "pass with flying colors", "nail", "ace", "sail through", "breeze through"]}, {"answer": "brighten", "hint": "synonyms for brighten", "clues": ["light up", "clear", "lighten", "clear up", "brighten"]}, {"answer": "brim_over", "hint": "synonyms for brim over", "clues": ["run over", "well over", "overrun", "overflow", "brim over"]}, {"answer": "bring", "hint": "synonyms for bring", "clues": ["get", "convey", "lend", "fetch", "institute", "make for", "take", "bestow", "contribute", "add", "wreak", "work", "land", "play", "bring in", "impart", "bring"]}, {"answer": "bring_around", "hint": "synonyms for bring around", "clues": ["bring round", "heal", "bring back", "bring to", "cure"]}, {"answer": "bring_back", "hint": "synonyms for bring back", "clues": ["return", "bring round", "take back", "bring to", "bring back"]}, {"answer": "bring_down", "hint": "synonyms for bring down", "clues": ["inflict", "subvert", "trim down", "get down", "cut down", "trim back", "lower", "cut back", "trim", "take down", "reduce", "overturn", "cut", "impose", "visit", "land", "overthrow", "bring down"]}, {"answer": "bring_forth", "hint": "synonyms for bring forth", "clues": ["mother", "sire", "engender", "generate", "produce", "get", "beget", "father", "bring forth"]}, {"answer": "bring_home_the_bacon", "hint": "synonyms for bring home the bacon", "clues": ["deliver the goods", "win", "come through", "provide", "succeed", "bring home the bacon"]}, {"answer": "bring_in", "hint": "synonyms for bring in", "clues": ["pull in", "make", "gain", "fetch", "clear", "realize", "bring", "take in", "introduce", "earn", "bring in"]}, {"answer": "bring_off", "hint": "synonyms for bring off", "clues": ["carry off", "negociate", "pull off", "manage", "bring off"]}, {"answer": "bring_out", "hint": "synonyms for bring out", "clues": ["set off", "reveal", "put out", "issue", "publish", "give away", "expose", "divulge", "break", "uncover", "unveil", "release", "bring on", "let on", "let out", "disclose", "discover", "unwrap", "produce", "introduce", "bring out"]}, {"answer": "bring_up", "hint": "synonyms for bring up", "clues": ["call down", "parent", "call forth", "arouse", "conjure", "rear", "invoke", "nurture", "advert", "reboot", "evoke", "boot", "lift", "stir", "put forward", "refer", "mention", "cite", "raise", "elevate", "name", "conjure up", "get up", "bring up"]}, {"answer": "broaden", "hint": "synonyms for broaden", "clues": ["extend", "branch out", "diversify", "widen", "broaden"]}, {"answer": "browbeat", "hint": "synonyms for browbeat", "clues": ["strong-arm", "bullyrag", "bully", "boss around", "push around", "hector", "swagger", "browbeat"]}, {"answer": "brush_aside", "hint": "synonyms for brush aside", "clues": ["disregard", "brush off", "discount", "dismiss", "ignore", "push aside"]}, {"answer": "brush_off", "hint": "synonyms for brush off", "clues": ["disregard", "discount", "dismiss", "ignore", "push aside", "brush off"]}, {"answer": "brush_up", "hint": "synonyms for brush up", "clues": ["polish", "round", "round off", "refresh", "polish up", "review", "brush up"]}, {"answer": "bucket_along", "hint": "synonyms for bucket along", "clues": ["hasten", "speed", "race", "rush", "step on it", "pelt along", "rush along", "hotfoot", "hie", "cannonball along", "bucket along"]}, {"answer": "buckle_under", "hint": "synonyms for buckle under", "clues": ["succumb", "yield", "give in", "knuckle under"]}, {"answer": "bug_out", "hint": "synonyms for bug out", "clues": ["pop", "start", "come out", "bulge", "bulge out", "protrude", "pop out"]}, {"answer": "bugger_off", "hint": "synonyms for bugger off", "clues": ["buzz off", "scram", "fuck off", "get", "bugger off"]}, {"answer": "build_up", "hint": "synonyms for build up", "clues": ["progress", "arm", "build", "ramp up", "work up", "gird", "develop", "fortify", "build up"]}, {"answer": "bulge_out", "hint": "synonyms for bulge out", "clues": ["pop", "start", "come out", "bug out", "bulge", "protrude", "pop out"]}, {"answer": "bullyrag", "hint": "synonyms for bullyrag", "clues": ["push around", "browbeat", "strong-arm", "hector", "bully", "boss around", "ballyrag"]}, {"answer": "bum_about", "hint": "synonyms for bum about", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "frig around", "loll", "lounge about", "bum around", "waste one's time", "bum about"]}, {"answer": "bum_around", "hint": "synonyms for bum around", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "bum about", "frig around", "loll", "lounge about", "waste one's time", "bum around"]}, {"answer": "bumble", "hint": "synonyms for bumble", "clues": ["botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "stammer", "mess up", "stumble", "mishandle", "screw up", "stutter", "bodge", "fumble", "louse up", "foul up", "falter", "ball up", "blow", "botch", "bumble"]}, {"answer": "bump_into", "hint": "synonyms for bump into", "clues": ["run into", "knock against", "jar against", "butt against", "bump into"]}, {"answer": "bump_off", "hint": "synonyms for bump off", "clues": ["remove", "hit", "polish off", "off", "murder", "slay", "dispatch", "bump off"]}, {"answer": "bunch_up", "hint": "synonyms for bunch up", "clues": ["bunch", "bundle", "bunch together", "cluster", "clump", "bunch up"]}, {"answer": "burble", "hint": "synonyms for burble", "clues": ["bubble", "gurgle", "ripple", "babble", "guggle", "burble"]}, {"answer": "burgeon_forth", "hint": "synonyms for burgeon forth", "clues": ["sprout", "spud", "bourgeon", "shoot", "germinate", "pullulate", "burgeon forth"]}, {"answer": "burn_down", "hint": "synonyms for burn down", "clues": ["fire", "burn up", "go up", "burn", "burn down"]}, {"answer": "burn_up", "hint": "synonyms for burn up", "clues": ["burn", "burn down", "burn off", "blaze up", "flame up", "go up", "flare", "burn up"]}, {"answer": "burst_forth", "hint": "synonyms for burst forth", "clues": ["break loose", "leap out", "sally out", "effloresce", "explode", "rush out", "burst forth"]}, {"answer": "burst_out", "hint": "synonyms for burst out", "clues": ["erupt", "flare up", "irrupt", "flare", "break open", "pop out", "burst out"]}, {"answer": "bury", "hint": "synonyms for bury", "clues": ["swallow", "sink", "inter", "immerse", "forget", "inhume", "entomb", "eat up", "swallow up", "lay to rest", "bury"]}, {"answer": "bushwhack", "hint": "synonyms for bushwhack", "clues": ["scupper", "lie in wait", "ambush", "ambuscade", "waylay", "lurk", "bushwhack"]}, {"answer": "butt_against", "hint": "synonyms for butt against", "clues": ["march", "abut", "butt", "knock against", "adjoin", "border", "bump into", "jar against", "run into", "butt on", "edge", "butt against"]}, {"answer": "butt_in", "hint": "synonyms for butt in", "clues": ["put in", "cut in", "barge in", "break in", "chisel in", "chime in", "butt in"]}, {"answer": "butt_on", "hint": "synonyms for butt on", "clues": ["march", "abut", "butt", "adjoin", "butt against", "border", "edge", "butt on"]}, {"answer": "button_up", "hint": "synonyms for button up", "clues": ["be quiet", "belt up", "dummy up", "clam up", "close up", "shut up", "keep mum", "button up"]}, {"answer": "buy_at", "hint": "synonyms for buy at", "clues": ["patronize", "shop", "shop at", "sponsor", "frequent", "buy at"]}, {"answer": "buy_the_farm", "hint": "synonyms for buy the farm", "clues": ["decease", "go", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "buy the farm"]}, {"answer": "buzz_off", "hint": "synonyms for buzz off", "clues": ["fuck off", "scram", "bugger off", "get", "buzz off"]}, {"answer": "ca-ca", "hint": "synonyms for ca-ca", "clues": ["shit", "make", "take a crap", "take a shit", "defecate", "stool", "crap", "ca-ca"]}, {"answer": "cadge", "hint": "synonyms for cadge", "clues": ["scrounge", "schnorr", "sponge", "bum", "mooch", "grub", "cadge"]}, {"answer": "cajole", "hint": "synonyms for cajole", "clues": ["sweet-talk", "coax", "palaver", "inveigle", "blarney", "wheedle", "cajole"]}, {"answer": "calculate", "hint": "synonyms for calculate", "clues": ["forecast", "figure", "work out", "aim", "depend", "cypher", "compute", "reckon", "cipher", "count on", "estimate", "account", "look", "direct", "bet", "count", "calculate"]}, {"answer": "call_back", "hint": "synonyms for call back", "clues": ["call up", "remember", "retrieve", "withdraw", "think", "recollect", "call in", "recall", "call back"]}, {"answer": "call_down", "hint": "synonyms for call down", "clues": ["call forth", "chew up", "lambaste", "arouse", "reproof", "conjure", "invoke", "take to task", "jaw", "lecture", "have words", "chide", "scold", "stir", "put forward", "call on the carpet", "chew out", "raise", "remonstrate", "reprimand", "bring up", "rebuke", "conjure up", "berate", "evoke", "dress down", "trounce", "bawl out", "rag", "call down"]}, {"answer": "call_for", "hint": "synonyms for call for", "clues": ["invite", "need", "bespeak", "postulate", "request", "ask", "quest", "take", "necessitate", "demand", "require", "pick up", "gather up", "involve", "collect", "call for"]}, {"answer": "call_forth", "hint": "synonyms for call forth", "clues": ["kick up", "call down", "stir", "put forward", "arouse", "raise", "conjure", "bring up", "invoke", "provoke", "conjure up", "evoke", "call forth"]}, {"answer": "call_in", "hint": "synonyms for call in", "clues": ["call back", "visit", "call", "withdraw", "recall", "call in"]}, {"answer": "call_off", "hint": "synonyms for call off", "clues": ["call", "cancel", "scrub", "scratch", "call off"]}, {"answer": "call_on_the_carpet", "hint": "synonyms for call on the carpet", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "call on the carpet"]}, {"answer": "call_out", "hint": "synonyms for call out", "clues": ["cry out", "exclaim", "cry", "shout", "outcry", "call out"]}, {"answer": "calm_down", "hint": "synonyms for calm down", "clues": ["quiet", "cool off", "calm", "tranquillise", "still", "quieten", "cool it", "chill out", "settle down", "lull", "simmer down", "calm down"]}, {"answer": "calumniate", "hint": "synonyms for calumniate", "clues": ["denigrate", "sully", "asperse", "besmirch", "slander", "defame", "smear", "calumniate"]}, {"answer": "camp_out", "hint": "synonyms for camp out", "clues": ["tent", "encamp", "bivouac", "camp", "camp out"]}, {"answer": "cannonball_along", "hint": "synonyms for cannonball along", "clues": ["hasten", "speed", "bucket along", "race", "rush", "step on it", "pelt along", "rush along", "hotfoot", "hie", "cannonball along"]}, {"answer": "cant_over", "hint": "synonyms for cant over", "clues": ["cant", "slant", "pitch", "tilt", "cant over"]}, {"answer": "captivate", "hint": "synonyms for captivate", "clues": ["capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor", "captivate"]}, {"answer": "care_for", "hint": "synonyms for care for", "clues": ["hold dear", "treasure", "cherish", "treat", "care for"]}, {"answer": "cark", "hint": "synonyms for cark", "clues": ["trouble", "unhinge", "disquiet", "distract", "disorder", "perturb", "cark"]}, {"answer": "carry_away", "hint": "synonyms for carry away", "clues": ["bear off", "bear away", "take away", "carry off", "carry away"]}, {"answer": "carry_off", "hint": "synonyms for carry off", "clues": ["take away", "negociate", "manage", "carry away", "pull off", "annihilate", "decimate", "bear away", "eradicate", "extinguish", "wipe out", "bear off", "bring off", "eliminate", "carry off"]}, {"answer": "carry_on", "hint": "synonyms for carry on", "clues": ["conduct", "continue", "deal", "act up", "preserve", "uphold", "go on", "bear on", "proceed", "carry on"]}, {"answer": "carry_out", "hint": "synonyms for carry out", "clues": ["put through", "follow out", "fulfill", "carry through", "go through", "follow up", "follow through", "implement", "action", "execute", "accomplish", "carry out"]}, {"answer": "carry_through", "hint": "synonyms for carry through", "clues": ["pull through", "bring through", "fulfill", "carry out", "action", "execute", "accomplish", "save", "carry through"]}, {"answer": "carve_up", "hint": "synonyms for carve up", "clues": ["split", "split up", "separate", "divide", "dissever", "carve up"]}, {"answer": "cash_in_one's_chips", "hint": "synonyms for cash in one's chips", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips"]}, {"answer": "cast_aside", "hint": "synonyms for cast aside", "clues": ["dispose", "discard", "toss", "fling", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "toss away", "cast away", "cast aside"]}, {"answer": "cast_away", "hint": "synonyms for cast away", "clues": ["dispose", "discard", "toss", "cast aside", "fling", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "toss away", "cast away"]}, {"answer": "cast_down", "hint": "synonyms for cast down", "clues": ["dismay", "demoralise", "deject", "dispirit", "depress", "get down", "cast down"]}, {"answer": "cast_off", "hint": "synonyms for cast off", "clues": ["throw away", "throw", "throw off", "cast", "shake off", "drop", "shed", "cast off"]}, {"answer": "cast_out", "hint": "synonyms for cast out", "clues": ["dispose", "blackball", "banish", "shun", "ostracise", "toss", "cast aside", "chuck out", "put away", "toss out", "throw out", "toss away", "cast away", "discard", "throw away", "ban", "fling", "cast out"]}, {"answer": "castigate", "hint": "synonyms for castigate", "clues": ["chasten", "correct", "chastise", "objurgate", "castigate"]}, {"answer": "catch_fire", "hint": "synonyms for catch fire", "clues": ["erupt", "conflagrate", "combust", "take fire", "ignite", "catch fire"]}, {"answer": "catch_on", "hint": "synonyms for catch on", "clues": ["cotton on", "get wise", "get it", "get onto", "latch on", "twig", "tumble"]}, {"answer": "catch_some_z's", "hint": "synonyms for catch some z's", "clues": ["kip", "catch some Z's", "sleep", "slumber", "log Z's"]}, {"answer": "cavort", "hint": "synonyms for cavort", "clues": ["frisk", "gambol", "frolic", "lark", "run around", "sport", "rollick", "skylark", "lark about", "disport", "romp", "cavort"]}, {"answer": "cede", "hint": "synonyms for cede", "clues": ["give up", "grant", "concede", "surrender", "deliver", "yield", "cede"]}, {"answer": "celebrate", "hint": "synonyms for celebrate", "clues": ["observe", "keep", "lionise", "fete", "celebrate"]}, {"answer": "center_on", "hint": "synonyms for center on", "clues": ["revolve about", "revolve around", "focus on", "concentrate on", "center", "center on"]}, {"answer": "certify", "hint": "synonyms for certify", "clues": ["endorse", "attest", "demonstrate", "manifest", "evidence", "license", "certify"]}, {"answer": "chaffer", "hint": "synonyms for chaffer", "clues": ["chatter", "jaw", "natter", "confab", "chat", "haggle", "gossip", "chitchat", "shoot the breeze", "huckster", "claver", "confabulate", "chew the fat", "visit", "higgle", "chaffer"]}, {"answer": "chance_on", "hint": "synonyms for chance on", "clues": ["attain", "happen upon", "light upon", "discover", "come across", "chance upon", "come upon", "fall upon", "strike"]}, {"answer": "chance_upon", "hint": "synonyms for chance upon", "clues": ["chance on", "attain", "happen upon", "light upon", "discover", "come across", "come upon", "fall upon", "strike"]}, {"answer": "channelise", "hint": "synonyms for channelise", "clues": ["transmit", "guide", "channelize", "steer", "channel", "head", "transfer", "maneuver", "point", "direct", "manoeuvre", "transport"]}, {"answer": "channelize", "hint": "synonyms for channelize", "clues": ["transmit", "guide", "steer", "channel", "head", "channelise", "transfer", "maneuver", "point", "direct", "manoeuvre", "transport"]}, {"answer": "charge_up", "hint": "synonyms for charge up", "clues": ["excite", "charge", "turn on", "rouse", "agitate", "commove", "charge up"]}, {"answer": "chase_after", "hint": "synonyms for chase after", "clues": ["chase", "dog", "tail", "track", "go after", "give chase", "tag", "chase after"]}, {"answer": "chase_away", "hint": "synonyms for chase away", "clues": ["dispel", "drive away", "drive out", "drive off", "turn back", "run off", "chase away"]}, {"answer": "chasten", "hint": "synonyms for chasten", "clues": ["chastise", "temper", "subdue", "moderate", "correct", "tame", "castigate", "objurgate", "chasten"]}, {"answer": "chastise", "hint": "synonyms for chastise", "clues": ["chasten", "correct", "castigate", "objurgate", "chastise"]}, {"answer": "chat_up", "hint": "synonyms for chat up", "clues": ["flirt", "romance", "dally", "coquet", "philander", "mash", "butterfly", "chat up"]}, {"answer": "cheat_on", "hint": "synonyms for cheat on", "clues": ["betray", "cuckold", "cheat", "wander", "cheat on"]}, {"answer": "check_into", "hint": "synonyms for check into", "clues": ["look into", "check over", "check up on", "suss out", "check out", "check", "go over", "check into"]}, {"answer": "check_off", "hint": "synonyms for check off", "clues": ["tick off", "mark off", "mark", "check", "tick", "check off"]}, {"answer": "check_out", "hint": "synonyms for check out", "clues": ["run down", "feel out", "check over", "suss out", "look into", "check", "check into", "cheque", "check up on", "sound out", "go over", "check out"]}, {"answer": "check_over", "hint": "synonyms for check over", "clues": ["look into", "check up on", "go over", "suss out", "check out", "check", "check into", "check over"]}, {"answer": "check_up_on", "hint": "synonyms for check up on", "clues": ["look into", "check over", "go over", "suss out", "check out", "check", "check into", "check up on"]}, {"answer": "cheer_up", "hint": "synonyms for cheer up", "clues": ["chirk up", "jolly up", "jolly along", "cheer", "cheer up"]}, {"answer": "chevvy", "hint": "synonyms for chevvy", "clues": ["chivvy", "chevy", "harass", "harry", "plague", "provoke", "hassle", "beset", "molest"]}, {"answer": "chevy", "hint": "synonyms for chevy", "clues": ["chivvy", "harass", "chevvy", "harry", "plague", "provoke", "hassle", "beset", "molest"]}, {"answer": "chew_out", "hint": "synonyms for chew out", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "chew out"]}, {"answer": "chew_over", "hint": "synonyms for chew over", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "think over", "ruminate", "excogitate", "chew over"]}, {"answer": "chew_the_fat", "hint": "synonyms for chew the fat", "clues": ["gossip", "chitchat", "chatter", "shoot the breeze", "claver", "confabulate", "jaw", "natter", "confab", "visit", "chat", "chaffer", "chew the fat"]}, {"answer": "chew_up", "hint": "synonyms for chew up", "clues": ["call down", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "chew up"]}, {"answer": "chicken_out", "hint": "synonyms for chicken out", "clues": ["back off", "pull out", "bow out", "back down", "chicken out"]}, {"answer": "chide", "hint": "synonyms for chide", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "chide"]}, {"answer": "chill_out", "hint": "synonyms for chill out", "clues": ["cool it", "cool off", "calm", "calm down", "settle down", "simmer down", "chill out"]}, {"answer": "chime_in", "hint": "synonyms for chime in", "clues": ["put in", "cut in", "barge in", "butt in", "break in", "chisel in", "chime in"]}, {"answer": "chip_off", "hint": "synonyms for chip off", "clues": ["break away", "come off", "break off", "chip", "chip off"]}, {"answer": "chisel_in", "hint": "synonyms for chisel in", "clues": ["put in", "cut in", "barge in", "butt in", "break in", "chime in", "chisel in"]}, {"answer": "chivvy", "hint": "synonyms for chivvy", "clues": ["chevy", "harass", "chivy", "harry", "plague", "provoke", "hassle", "beset", "molest"]}, {"answer": "chivy", "hint": "synonyms for chivy", "clues": ["chivvy", "chevy", "harass", "harry", "plague", "provoke", "hassle", "beset", "molest"]}, {"answer": "chock_up", "hint": "synonyms for chock up", "clues": ["ram", "wad", "jam", "jampack", "chock up"]}, {"answer": "choke_off", "hint": "synonyms for choke off", "clues": ["foul", "clog up", "back up", "choke down", "choke", "clog", "choke back", "congest", "choke off"]}, {"answer": "choose", "hint": "synonyms for choose", "clues": ["pick out", "select", "opt", "prefer", "take", "choose"]}, {"answer": "chouse", "hint": "synonyms for chouse", "clues": ["cheat", "screw", "jockey", "shaft", "chicane", "chouse"]}, {"answer": "chuck_out", "hint": "synonyms for chuck out", "clues": ["dispose", "turf out", "exclude", "discard", "toss", "boot out", "cast aside", "fling", "throw away", "put away", "toss out", "eject", "throw out", "cast out", "toss away", "cast away", "chuck out"]}, {"answer": "chuck_up_the_sponge", "hint": "synonyms for chuck up the sponge", "clues": ["throw in the towel", "give up", "quit", "fall by the wayside", "drop by the wayside", "drop out", "throw in", "chuck up the sponge"]}, {"answer": "churn_up", "hint": "synonyms for churn up", "clues": ["sicken", "revolt", "nauseate", "disgust", "churn up"]}, {"answer": "circularise", "hint": "synonyms for circularise", "clues": ["circulate", "diffuse", "circularize", "pass around", "spread", "broadcast", "propagate", "disseminate", "disperse", "distribute"]}, {"answer": "circularize", "hint": "synonyms for circularize", "clues": ["circulate", "diffuse", "pass around", "spread", "broadcast", "circularise", "propagate", "disseminate", "disperse", "distribute"]}, {"answer": "circulate", "hint": "synonyms for circulate", "clues": ["pass on", "mobilize", "diffuse", "circularize", "pass around", "spread", "go around", "broadcast", "propagate", "disseminate", "disperse", "circle", "distribute", "circulate"]}, {"answer": "circumvent", "hint": "synonyms for circumvent", "clues": ["hem in", "outwit", "overreach", "dodge", "put off", "evade", "fudge", "skirt", "beat", "surround", "outsmart", "besiege", "parry", "beleaguer", "sidestep", "outfox", "elude", "duck", "hedge", "circumvent"]}, {"answer": "civilise", "hint": "synonyms for civilise", "clues": ["train", "educate", "school", "cultivate", "civilize"]}, {"answer": "civilize", "hint": "synonyms for civilize", "clues": ["civilise", "train", "educate", "school", "cultivate"]}, {"answer": "clam_up", "hint": "synonyms for clam up", "clues": ["be quiet", "belt up", "dummy up", "button up", "close up", "shut up", "keep mum", "clam up"]}, {"answer": "classify", "hint": "synonyms for classify", "clues": ["class", "sort out", "sort", "separate", "assort", "relegate", "classify"]}, {"answer": "claver", "hint": "synonyms for claver", "clues": ["gossip", "chitchat", "chatter", "shoot the breeze", "confabulate", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer", "claver"]}, {"answer": "clean_up", "hint": "synonyms for clean up", "clues": ["tidy", "neaten", "straighten out", "straighten", "square away", "tidy up", "clean up"]}, {"answer": "clear_up", "hint": "synonyms for clear up", "clues": ["wrap up", "polish off", "mop up", "illuminate", "clear", "finish off", "get through", "straighten out", "crystallise", "clarify", "brighten", "light up", "elucidate", "finish up", "enlighten", "sort out", "shed light on", "clear up"]}, {"answer": "cleave", "hint": "synonyms for cleave", "clues": ["cohere", "cling", "adhere", "rive", "stick", "split", "cleave"]}, {"answer": "climb_on", "hint": "synonyms for climb on", "clues": ["get on", "hop on", "mount up", "mount", "jump on", "bestride", "climb on"]}, {"answer": "climb_up", "hint": "synonyms for climb up", "clues": ["ascend", "jump", "mount", "rise", "go up", "climb", "climb up"]}, {"answer": "clog_up", "hint": "synonyms for clog up", "clues": ["clog", "foul", "choke off", "back up", "congest", "choke", "clog up"]}, {"answer": "close_down", "hint": "synonyms for close down", "clues": ["close up", "fold", "shut down", "close", "close down"]}, {"answer": "close_in", "hint": "synonyms for close in", "clues": ["enclose", "shut in", "draw in", "close in"]}, {"answer": "clothe", "hint": "synonyms for clothe", "clues": ["tog", "raiment", "apparel", "enclothe", "robe", "drape", "garment", "adorn", "cloak", "habilitate", "dress", "fit out", "garb", "invest"]}, {"answer": "co-occur_with", "hint": "synonyms for co-occur with", "clues": ["go with", "construe with", "cooccur with", "collocate with"]}, {"answer": "coalesce", "hint": "synonyms for coalesce", "clues": ["fuse", "blend", "mix", "immix", "meld", "commingle", "merge", "combine", "conflate", "flux", "coalesce"]}, {"answer": "coddle", "hint": "synonyms for coddle", "clues": ["baby", "cocker", "pamper", "spoil", "featherbed", "indulge", "cosset", "mollycoddle", "coddle"]}, {"answer": "coerce", "hint": "synonyms for coerce", "clues": ["squeeze", "pressure", "hale", "force", "coerce"]}, {"answer": "coggle", "hint": "synonyms for coggle", "clues": ["waddle", "totter", "paddle", "toddle", "wobble", "dodder", "coggle"]}, {"answer": "cohere", "hint": "synonyms for cohere", "clues": ["adhere", "stick", "cleave", "cling", "cohere"]}, {"answer": "coiffe", "hint": "synonyms for coiffe", "clues": ["do", "dress", "coif", "coiffure", "arrange", "set"]}, {"answer": "coldcock", "hint": "synonyms for coldcock", "clues": ["floor", "deck", "knock down", "dump", "coldcock"]}, {"answer": "collide_with", "hint": "synonyms for collide with", "clues": ["run into", "impinge on", "strike", "hit", "collide with"]}, {"answer": "colligate", "hint": "synonyms for colligate", "clues": ["link up", "link", "tie in", "subsume", "associate", "relate", "connect", "colligate"]}, {"answer": "collocate_with", "hint": "synonyms for collocate with", "clues": ["go with", "construe with", "co-occur with", "collocate with"]}, {"answer": "colly", "hint": "synonyms for colly", "clues": ["bemire", "soil", "dirty", "begrime", "grime", "colly"]}, {"answer": "color_in", "hint": "synonyms for color in", "clues": ["colour", "colorise", "colour in", "colourize"]}, {"answer": "colorise", "hint": "synonyms for colorise", "clues": ["colour", "color in", "colourise", "colorize"]}, {"answer": "colorize", "hint": "synonyms for colorize", "clues": ["colour", "color in", "colorise", "colourize"]}, {"answer": "colour_in", "hint": "synonyms for colour in", "clues": ["colour", "color in", "colorise", "colourize"]}, {"answer": "colourise", "hint": "synonyms for colourise", "clues": ["colour", "color in", "colorise", "colourize"]}, {"answer": "colourize", "hint": "synonyms for colourize", "clues": ["colour", "color in", "colorise", "colourize"]}, {"answer": "combust", "hint": "synonyms for combust", "clues": ["blow up", "lose one's temper", "blow a fuse", "fly off the handle", "flip one's lid", "hit the ceiling", "go ballistic", "have a fit", "burn", "blow one's stack", "throw a fit", "take fire", "catch fire", "have kittens", "erupt", "conflagrate", "hit the roof", "ignite", "combust"]}, {"answer": "come_about", "hint": "synonyms for come about", "clues": ["hap", "occur", "fall out", "take place", "happen", "pass off", "go on", "pass", "come about"]}, {"answer": "come_across", "hint": "synonyms for come across", "clues": ["chance on", "resonate", "attain", "encounter", "run across", "meet", "happen upon", "light upon", "discover", "see", "come upon", "run into", "fall upon", "come over", "strike", "come across"]}, {"answer": "come_alive", "hint": "synonyms for come alive", "clues": ["wake", "awaken", "arouse", "wake up", "come alive"]}, {"answer": "come_along", "hint": "synonyms for come along", "clues": ["appear", "get on", "get along", "progress", "advance", "come on", "shape up", "come along"]}, {"answer": "come_apart", "hint": "synonyms for come apart", "clues": ["break", "split up", "separate", "fall apart", "come apart"]}, {"answer": "come_back", "hint": "synonyms for come back", "clues": ["repay", "riposte", "retort", "return", "hark back", "rejoin", "recall", "come back"]}, {"answer": "come_down", "hint": "synonyms for come down", "clues": ["sicken", "fall", "go down", "precipitate", "reduce", "boil down", "descend", "come down"]}, {"answer": "come_forth", "hint": "synonyms for come forth", "clues": ["go forth", "come out", "egress", "emerge", "issue", "come forth"]}, {"answer": "come_forward", "hint": "synonyms for come forward", "clues": ["step forward", "come out", "step up", "step to the fore", "come to the fore", "come forward"]}, {"answer": "come_home", "hint": "synonyms for come home", "clues": ["dawn", "get across", "get through", "penetrate", "fall into place", "sink in", "click", "come home"]}, {"answer": "come_in", "hint": "synonyms for come in", "clues": ["put in", "place", "get into", "inject", "interpose", "go into", "enter", "come", "move into", "go in", "come out", "interject", "throw in", "come in"]}, {"answer": "come_near", "hint": "synonyms for come near", "clues": ["draw close", "draw near", "come on", "approach", "go up", "near", "come near"]}, {"answer": "come_off", "hint": "synonyms for come off", "clues": ["chip", "go off", "chip off", "break off", "come away", "detach", "break away", "go over", "come off"]}, {"answer": "come_on", "hint": "synonyms for come on", "clues": ["show up", "come along", "get along", "draw close", "progress", "get on", "come up", "approach", "come near", "turn up", "draw near", "advance", "come out", "go on", "shape up", "go up", "near", "surface", "come on"]}, {"answer": "come_out", "hint": "synonyms for come out", "clues": ["appear", "show up", "start", "step to the fore", "bulge out", "out", "turn up", "issue", "pop", "step forward", "come out of the closet", "come on", "come to the fore", "protrude", "egress", "pop out", "place", "push through", "fall out", "step up", "emerge", "come forth", "turn out", "go forth", "erupt", "bulge", "break through", "surface", "come forward", "come out"]}, {"answer": "come_through", "hint": "synonyms for come through", "clues": ["deliver the goods", "bring home the bacon", "pull through", "succeed", "make it", "get through", "win", "survive", "pull round", "break through", "come through"]}, {"answer": "come_to", "hint": "synonyms for come to", "clues": ["hit", "refer", "touch on", "relate", "have-to doe with", "pertain", "touch", "revive", "bear on", "resuscitate", "concern", "strike", "come to"]}, {"answer": "come_to_the_fore", "hint": "synonyms for come to the fore", "clues": ["step forward", "come out", "step up", "step to the fore", "come forward", "come to the fore"]}, {"answer": "come_up", "hint": "synonyms for come up", "clues": ["rally", "rise", "get hold", "come on", "scrape up", "go up", "rise up", "scrape", "summon", "lift", "scratch", "muster", "bob up", "uprise", "line up", "muster up", "move up", "come", "ascend", "go on", "find", "surface", "come up"]}, {"answer": "come_upon", "hint": "synonyms for come upon", "clues": ["chance on", "attain", "enter upon", "happen upon", "light upon", "discover", "luck into", "come across", "fall upon", "strike", "come upon"]}, {"answer": "commemorate", "hint": "synonyms for commemorate", "clues": ["immortalise", "memorialise", "mark", "record", "remember", "commemorate"]}, {"answer": "commence", "hint": "synonyms for commence", "clues": ["embark on", "begin", "start", "start out", "set about", "get down", "lead off", "start up", "get", "commence"]}, {"answer": "comminate", "hint": "synonyms for comminate", "clues": ["execrate", "anathematize", "anathemise", "accurse", "comminate"]}, {"answer": "commingle", "hint": "synonyms for commingle", "clues": ["fuse", "blend", "mix", "immix", "meld", "merge", "combine", "coalesce", "conflate", "flux", "commingle"]}, {"answer": "comminute", "hint": "synonyms for comminute", "clues": ["grind", "bray", "crunch", "mash", "comminute"]}, {"answer": "commit", "hint": "synonyms for commit", "clues": ["send", "intrust", "place", "consecrate", "confide", "devote", "give", "practice", "perpetrate", "pull", "trust", "put", "charge", "institutionalize", "invest", "dedicate", "commit"]}, {"answer": "commix", "hint": "synonyms for commix", "clues": ["unify", "amalgamate", "mingle", "mix", "commix"]}, {"answer": "commove", "hint": "synonyms for commove", "clues": ["charge up", "stir up", "shake up", "agitate", "vex", "excite", "charge", "disturb", "raise up", "turn on", "rouse", "commove"]}, {"answer": "communicate", "hint": "synonyms for communicate", "clues": ["pass on", "convey", "commune", "pass along", "intercommunicate", "transmit", "pass", "put across", "communicate"]}, {"answer": "compensate", "hint": "synonyms for compensate", "clues": ["make up", "right", "redress", "even up", "correct", "pay off", "recompense", "pay", "overcompensate", "even off", "indemnify", "counterbalance", "even out", "cover", "repair", "remunerate", "compensate"]}, {"answer": "compile", "hint": "synonyms for compile", "clues": ["pile up", "amass", "compose", "accumulate", "hoard", "roll up", "collect", "compile"]}, {"answer": "complain", "hint": "synonyms for complain", "clues": ["kick", "kvetch", "quetch", "sound off", "plain", "complain"]}, {"answer": "complicate", "hint": "synonyms for complicate", "clues": ["elaborate", "refine", "rarify", "perplex", "complicate"]}, {"answer": "complot", "hint": "synonyms for complot", "clues": ["cabal", "machinate", "conjure", "conspire", "complot"]}, {"answer": "comport", "hint": "synonyms for comport", "clues": ["deport", "conduct", "carry", "acquit", "bear", "behave", "comport"]}, {"answer": "compose", "hint": "synonyms for compose", "clues": ["indite", "compile", "frame", "draw up", "pen", "write", "compose"]}, {"answer": "comprehend", "hint": "synonyms for comprehend", "clues": ["apprehend", "dig", "grok", "get the picture", "perceive", "compass", "embrace", "grasp", "savvy", "cover", "comprehend"]}, {"answer": "comprise", "hint": "synonyms for comprise", "clues": ["make up", "incorporate", "contain", "be", "consist", "represent", "constitute", "comprise"]}, {"answer": "compute", "hint": "synonyms for compute", "clues": ["cipher", "figure", "work out", "calculate", "cypher", "reckon", "compute"]}, {"answer": "concede", "hint": "synonyms for concede", "clues": ["confess", "grant", "profess", "cede", "yield", "concede"]}, {"answer": "conceive", "hint": "synonyms for conceive", "clues": ["think", "conceptualize", "consider", "believe", "gestate", "conceive"]}, {"answer": "concentrate_on", "hint": "synonyms for concentrate on", "clues": ["revolve about", "center on", "revolve around", "focus on", "center", "concentrate on"]}, {"answer": "conciliate", "hint": "synonyms for conciliate", "clues": ["make up", "gentle", "appease", "gruntle", "mollify", "placate", "accommodate", "pacify", "reconcile", "assuage", "lenify", "patch up", "settle", "conciliate"]}, {"answer": "conclude", "hint": "synonyms for conclude", "clues": ["reason", "resolve", "reason out", "close", "conclude"]}, {"answer": "concoct", "hint": "synonyms for concoct", "clues": ["trump up", "dream up", "think of", "cook up", "hatch", "think up", "concoct"]}, {"answer": "concur", "hint": "synonyms for concur", "clues": ["concord", "agree", "coincide", "hold", "concur"]}, {"answer": "condemn", "hint": "synonyms for condemn", "clues": ["decry", "reprobate", "doom", "excoriate", "sentence", "objurgate", "condemn"]}, {"answer": "condense", "hint": "synonyms for condense", "clues": ["digest", "distill", "contract", "concentrate", "condense"]}, {"answer": "condescend", "hint": "synonyms for condescend", "clues": ["lower oneself", "patronize", "stoop", "deign", "descend", "condescend"]}, {"answer": "condole_with", "hint": "synonyms for condole with", "clues": ["pity", "sympathize with", "compassionate", "feel for", "condole with"]}, {"answer": "confabulate", "hint": "synonyms for confabulate", "clues": ["gossip", "chitchat", "consult", "chatter", "shoot the breeze", "confer", "claver", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer", "confabulate"]}, {"answer": "confer", "hint": "synonyms for confer", "clues": ["confabulate", "consult", "confab", "bestow", "confer"]}, {"answer": "confess", "hint": "synonyms for confess", "clues": ["fink", "concede", "squeal", "profess", "confess"]}, {"answer": "confide", "hint": "synonyms for confide", "clues": ["entrust", "commit", "trust", "confide"]}, {"answer": "confine", "hint": "synonyms for confine", "clues": ["hold in", "circumscribe", "limit", "detain", "hold", "enclose", "trammel", "bound", "restrain", "throttle", "restrict", "confine"]}, {"answer": "confirm", "hint": "synonyms for confirm", "clues": ["support", "sustain", "affirm", "substantiate", "corroborate", "reassert", "confirm"]}, {"answer": "conflagrate", "hint": "synonyms for conflagrate", "clues": ["combust", "catch fire", "enkindle", "take fire", "erupt", "inflame", "ignite", "conflagrate"]}, {"answer": "conflate", "hint": "synonyms for conflate", "clues": ["blend", "mix", "immix", "meld", "commingle", "merge", "combine", "coalesce", "fuse", "flux", "conflate"]}, {"answer": "confound", "hint": "synonyms for confound", "clues": ["bedevil", "fuddle", "throw", "discombobulate", "confuse", "fox", "confound"]}, {"answer": "confuse", "hint": "synonyms for confuse", "clues": ["flurry", "fuddle", "throw", "discombobulate", "jumble", "fox", "put off", "disconcert", "bedevil", "obnubilate", "mix up", "confound", "blur", "obscure", "confuse"]}, {"answer": "congest", "hint": "synonyms for congest", "clues": ["clog", "choke off", "foul", "clog up", "back up", "choke", "congest"]}, {"answer": "congratulate", "hint": "synonyms for congratulate", "clues": ["preen", "plume", "compliment", "felicitate", "pride", "congratulate"]}, {"answer": "conjoin", "hint": "synonyms for conjoin", "clues": ["marry", "join", "wed", "hook up with", "get married", "get hitched with", "espouse", "conjoin"]}, {"answer": "conjure", "hint": "synonyms for conjure", "clues": ["call down", "cabal", "call forth", "press", "arouse", "invoke", "bid", "beseech", "stir", "put forward", "adjure", "entreat", "raise", "machinate", "bring up", "conspire", "conjure up", "complot", "evoke", "conjure"]}, {"answer": "conjure_up", "hint": "synonyms for conjure up", "clues": ["call down", "stir", "call forth", "put forward", "arouse", "raise", "conjure", "bring up", "invoke", "evoke", "conjure up"]}, {"answer": "conk_out", "hint": "synonyms for conk out", "clues": ["break", "run down", "run out", "go", "give way", "poop out", "fail", "go bad", "break down", "give out", "die", "peter out", "conk out"]}, {"answer": "connect", "hint": "synonyms for connect", "clues": ["link", "join", "plug into", "get in touch", "relate", "associate", "link up", "touch base", "unite", "tie", "colligate", "tie in", "connect"]}, {"answer": "conquer", "hint": "synonyms for conquer", "clues": ["stamp down", "appropriate", "capture", "subdue", "curb", "seize", "inhibit", "suppress", "conquer"]}, {"answer": "consider", "hint": "synonyms for consider", "clues": ["deal", "deliberate", "reckon", "think", "view", "count", "look at", "believe", "take", "regard", "debate", "study", "see", "conceive", "weigh", "turn over", "moot", "consider"]}, {"answer": "consist", "hint": "synonyms for consist", "clues": ["lie", "comprise", "lie in", "dwell", "consist"]}, {"answer": "conspire", "hint": "synonyms for conspire", "clues": ["cabal", "complot", "machinate", "conjure", "collude", "conspire"]}, {"answer": "constellate", "hint": "synonyms for constellate", "clues": ["dot", "flock", "cluster", "stud", "clump", "constellate"]}, {"answer": "constitute", "hint": "synonyms for constitute", "clues": ["make up", "make", "form", "plant", "institute", "represent", "nominate", "comprise", "name", "appoint", "found", "establish", "be", "constitute"]}, {"answer": "constrain", "hint": "synonyms for constrain", "clues": ["tighten up", "encumber", "tighten", "restrain", "stiffen", "constrain"]}, {"answer": "constrict", "hint": "synonyms for constrict", "clues": ["narrow", "constringe", "compress", "compact", "press", "contract", "squeeze", "constrict"]}, {"answer": "construe_with", "hint": "synonyms for construe with", "clues": ["go with", "co-occur with", "collocate with", "construe with"]}, {"answer": "consult", "hint": "synonyms for consult", "clues": ["look up", "confer with", "confab", "refer", "confer", "confabulate", "consult"]}, {"answer": "consume", "hint": "synonyms for consume", "clues": ["eat", "devour", "deplete", "have", "ware", "exhaust", "take", "squander", "down", "run through", "use up", "go through", "ingest", "wipe out", "take in", "eat up", "waste", "consume"]}, {"answer": "contain", "hint": "synonyms for contain", "clues": ["control", "hold in", "turn back", "bear", "curb", "check", "hold", "take", "stop", "arrest", "incorporate", "comprise", "moderate", "carry", "hold back", "contain"]}, {"answer": "contemplate", "hint": "synonyms for contemplate", "clues": ["muse", "reflect", "meditate", "ponder", "mull", "speculate", "mull over", "study", "think over", "ruminate", "chew over", "excogitate", "contemplate"]}, {"answer": "contend", "hint": "synonyms for contend", "clues": ["make do", "get by", "manage", "postulate", "compete", "argue", "fight", "deal", "fence", "debate", "repugn", "contest", "cope", "make out", "grapple", "struggle", "vie", "contend"]}, {"answer": "continue", "hint": "synonyms for continue", "clues": ["stay", "carry on", "keep", "stay on", "go forward", "retain", "keep on", "remain", "go along", "preserve", "extend", "uphold", "go on", "cover", "bear on", "persist in", "proceed", "continue"]}, {"answer": "contradict", "hint": "synonyms for contradict", "clues": ["contravene", "oppose", "controvert", "belie", "negate", "contradict"]}, {"answer": "contravene", "hint": "synonyms for contravene", "clues": ["conflict", "infringe", "contradict", "run afoul", "negate", "contravene"]}, {"answer": "contribute", "hint": "synonyms for contribute", "clues": ["chip in", "lend", "conduce", "give", "kick in", "bestow", "bring", "put up", "add", "lead", "impart", "contribute"]}, {"answer": "contrive", "hint": "synonyms for contrive", "clues": ["invent", "throw", "devise", "formulate", "forge", "cast", "project", "plan", "excogitate", "design", "contrive"]}, {"answer": "controvert", "hint": "synonyms for controvert", "clues": ["refute", "contradict", "oppose", "rebut", "controvert"]}, {"answer": "convey", "hint": "synonyms for convey", "clues": ["get", "conduct", "channel", "fetch", "communicate", "take", "bring", "express", "transmit", "carry", "impart", "convey"]}, {"answer": "convulse", "hint": "synonyms for convulse", "clues": ["thrash about", "toss", "thresh", "slash", "jactitate", "thrash", "convulse"]}, {"answer": "cooccur_with", "hint": "synonyms for cooccur with", "clues": ["construe with", "co-occur with", "go with", "collocate with"]}, {"answer": "cook_up", "hint": "synonyms for cook up", "clues": ["invent", "make up", "fabricate", "concoct", "manufacture", "cook up"]}, {"answer": "cool_it", "hint": "synonyms for cool it", "clues": ["cool off", "chill out", "calm", "calm down", "settle down", "simmer down", "cool it"]}, {"answer": "cool_off", "hint": "synonyms for cool off", "clues": ["cool down", "cool it", "chill out", "calm", "calm down", "cool", "settle down", "simmer down", "cool off"]}, {"answer": "coquet", "hint": "synonyms for coquet", "clues": ["flirt", "romance", "dally", "philander", "mash", "coquette", "chat up", "butterfly"]}, {"answer": "corrade", "hint": "synonyms for corrade", "clues": ["rub off", "abrase", "abrade", "rub down", "corrade"]}, {"answer": "correspond", "hint": "synonyms for correspond", "clues": ["equate", "fit", "match", "gibe", "agree", "check", "represent", "stand for", "tally", "jibe", "correspond"]}, {"answer": "corroborate", "hint": "synonyms for corroborate", "clues": ["support", "confirm", "sustain", "affirm", "substantiate", "underpin", "bear out", "validate", "corroborate"]}, {"answer": "cosset", "hint": "synonyms for cosset", "clues": ["baby", "cocker", "pamper", "spoil", "featherbed", "indulge", "coddle", "mollycoddle", "cosset"]}, {"answer": "cotton_on", "hint": "synonyms for cotton on", "clues": ["get wise", "catch on", "get it", "get onto", "twig", "tumble", "cotton on"]}, {"answer": "cotton_up", "hint": "synonyms for cotton up", "clues": ["cozy up", "shine up", "play up", "suck up", "sidle up", "cotton up"]}, {"answer": "cough_out", "hint": "synonyms for cough out", "clues": ["spit up", "expectorate", "spit out", "cough up", "cough out"]}, {"answer": "cough_up", "hint": "synonyms for cough up", "clues": ["spit up", "cough out", "expectorate", "pony up", "spit out", "cough up"]}, {"answer": "count_on", "hint": "synonyms for count on", "clues": ["forecast", "figure", "estimate", "calculate", "reckon", "count on"]}, {"answer": "counteract", "hint": "synonyms for counteract", "clues": ["countervail", "antagonize", "countermine", "weaken", "subvert", "sabotage", "undermine", "counterbalance", "countercheck", "neutralize", "counteract"]}, {"answer": "countervail", "hint": "synonyms for countervail", "clues": ["counteract", "counterbalance", "offset", "neutralize", "countervail"]}, {"answer": "cower", "hint": "synonyms for cower", "clues": ["cringe", "creep", "huddle", "fawn", "grovel", "crawl", "cower"]}, {"answer": "cozy_up", "hint": "synonyms for cozy up", "clues": ["shine up", "cotton up", "play up", "suck up", "sidle up", "cozy up"]}, {"answer": "crack_up", "hint": "synonyms for crack up", "clues": ["break up", "crack", "crock up", "collapse"]}, {"answer": "cram", "hint": "synonyms for cram", "clues": ["swot up", "grind away", "chock up", "bone up", "mug up", "drum", "ram", "wad", "jam", "bone", "swot", "get up", "jampack"]}, {"answer": "crave", "hint": "synonyms for crave", "clues": ["lust", "hunger", "starve", "thirst", "crave"]}, {"answer": "crawfish_out", "hint": "synonyms for crawfish out", "clues": ["pull back", "withdraw", "retreat", "crawfish", "back out", "pull in one's horns", "back away", "crawfish out"]}, {"answer": "crawl_in", "hint": "synonyms for crawl in", "clues": ["go to bed", "hit the sack", "go to sleep", "sack out", "retire", "kip down", "bed", "turn in", "hit the hay", "crawl in"]}, {"answer": "criminate", "hint": "synonyms for criminate", "clues": ["accuse", "censure", "reprimand", "impeach", "incriminate"]}, {"answer": "cringe", "hint": "synonyms for cringe", "clues": ["cower", "squinch", "creep", "quail", "shrink", "recoil", "grovel", "crawl", "fawn", "flinch", "wince", "funk", "cringe"]}, {"answer": "crock_up", "hint": "synonyms for crock up", "clues": ["break up", "crack", "crack up", "collapse"]}, {"answer": "cross_off", "hint": "synonyms for cross off", "clues": ["strike off", "strike out", "mark", "cross out", "cross off"]}, {"answer": "cross_out", "hint": "synonyms for cross out", "clues": ["strike off", "cross off", "strike out", "mark", "cross out"]}, {"answer": "crucify", "hint": "synonyms for crucify", "clues": ["dun", "savage", "pillory", "blast", "mortify", "bedevil", "subdue", "torment", "rag", "frustrate", "crucify"]}, {"answer": "crumble", "hint": "synonyms for crumble", "clues": ["decay", "crumple", "break down", "collapse", "fall apart", "tumble", "dilapidate"]}, {"answer": "crumple", "hint": "synonyms for crumple", "clues": ["crease", "wrinkle", "cockle", "crumble", "pucker", "rumple", "break down", "collapse", "knit", "tumble", "buckle"]}, {"answer": "cry_out", "hint": "synonyms for cry out", "clues": ["call out", "exclaim", "cry", "shout", "outcry", "cry out"]}, {"answer": "crystalise", "hint": "synonyms for crystalise", "clues": ["elucidate", "enlighten", "sort out", "illuminate", "clear up", "clear", "crystallize", "straighten out", "effloresce", "shed light on"]}, {"answer": "crystalize", "hint": "synonyms for crystalize", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "effloresce", "shed light on"]}, {"answer": "crystallise", "hint": "synonyms for crystallise", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "shed light on"]}, {"answer": "crystallize", "hint": "synonyms for crystallize", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "effloresce", "shed light on"]}, {"answer": "cultivate", "hint": "synonyms for cultivate", "clues": ["domesticate", "civilise", "train", "educate", "tame", "crop", "naturalise", "work", "school", "cultivate"]}, {"answer": "cumulate", "hint": "synonyms for cumulate", "clues": ["pile up", "conglomerate", "amass", "accumulate", "gather"]}, {"answer": "curtail", "hint": "synonyms for curtail", "clues": ["cut back", "cut short", "curb", "clip", "restrict", "curtail"]}, {"answer": "cut_across", "hint": "synonyms for cut across", "clues": ["get across", "get over", "cross", "crosscut", "track", "cut through", "cover", "traverse", "pass over", "cut across"]}, {"answer": "cut_back", "hint": "synonyms for cut back", "clues": ["flash back", "trim", "bring down", "curtail", "snip", "crop", "reduce", "trim down", "cut", "cut down", "trim back", "lop", "dress", "curb", "prune", "clip", "restrict", "cut back"]}, {"answer": "cut_down", "hint": "synonyms for cut down", "clues": ["cut back", "trim", "drop", "bring down", "knock down", "reduce", "slash", "trim down", "pull down", "down", "cut", "trim back", "mow", "strike down", "cut out", "fell", "push down", "cut down"]}, {"answer": "cut_in", "hint": "synonyms for cut in", "clues": ["put in", "barge in", "butt in", "break in", "chisel in", "chime in", "cut in"]}, {"answer": "cut_short", "hint": "synonyms for cut short", "clues": ["break off", "clip", "break short", "truncate", "curtail", "cut short"]}, {"answer": "cut_through", "hint": "synonyms for cut through", "clues": ["get across", "get over", "cross", "track", "cut across", "cover", "traverse", "pass over", "cut through"]}, {"answer": "dabble", "hint": "synonyms for dabble", "clues": ["splash around", "smatter", "paddle", "play around", "dabble"]}, {"answer": "dally", "hint": "synonyms for dally", "clues": ["chat up", "flirt", "trifle", "romance", "coquet", "dawdle", "butterfly", "mash", "toy", "play", "philander", "dally"]}, {"answer": "dampen", "hint": "synonyms for dampen", "clues": ["break", "muffle", "soften", "weaken", "dull", "deaden", "tone down", "stifle", "mute", "wash", "damp", "moisten", "dampen"]}, {"answer": "dash_off", "hint": "synonyms for dash off", "clues": ["fling off", "toss off", "scratch off", "knock off", "dash down", "dash off"]}, {"answer": "daunt", "hint": "synonyms for daunt", "clues": ["frighten away", "frighten off", "dash", "scare", "scare away", "pall", "scare off", "daunt"]}, {"answer": "dawdle", "hint": "synonyms for dawdle", "clues": ["linger", "lag", "fall back", "fall behind", "dally", "dawdle"]}, {"answer": "deaden", "hint": "synonyms for deaden", "clues": ["dampen", "girdle", "blunt", "damp", "deaden"]}, {"answer": "deal_out", "hint": "synonyms for deal out", "clues": ["dispense", "administer", "allot", "mete out", "shell out", "lot", "deal", "dish out", "dole out", "parcel out", "distribute", "deal out"]}, {"answer": "debar", "hint": "synonyms for debar", "clues": ["avoid", "stave off", "exclude", "forfend", "avert", "bar", "suspend", "ward off", "head off", "deflect", "fend off", "obviate", "debar"]}, {"answer": "debase", "hint": "synonyms for debase", "clues": ["load", "stretch", "adulterate", "vitiate", "subvert", "dilute", "misdirect", "pervert", "profane", "corrupt", "deprave", "demoralise", "debauch", "alloy", "debase"]}, {"answer": "decamp", "hint": "synonyms for decamp", "clues": ["break camp", "abscond", "skip", "make off", "bolt", "go off", "vamoose", "run off", "absquatulate", "decamp"]}, {"answer": "deceive", "hint": "synonyms for deceive", "clues": ["cozen", "betray", "delude", "lead astray", "lead on", "deceive"]}, {"answer": "decelerate", "hint": "synonyms for decelerate", "clues": ["slow up", "slow down", "slow", "retard", "decelerate"]}, {"answer": "decide", "hint": "synonyms for decide", "clues": ["adjudicate", "determine", "make up one's mind", "resolve", "settle", "decide"]}, {"answer": "decimate", "hint": "synonyms for decimate", "clues": ["annihilate", "eradicate", "extinguish", "wipe out", "carry off", "eliminate", "decimate"]}, {"answer": "deck_out", "hint": "synonyms for deck out", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "dress up", "deck out"]}, {"answer": "deck_up", "hint": "synonyms for deck up", "clues": ["fig up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "deck up"]}, {"answer": "decolor", "hint": "synonyms for decolor", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "decolorise", "hint": "synonyms for decolorise", "clues": ["discolourise", "bleach out", "decolorize", "decolour", "bleach"]}, {"answer": "decolorize", "hint": "synonyms for decolorize", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "decolour", "hint": "synonyms for decolour", "clues": ["discolourise", "bleach out", "decolorise", "bleach", "decolor"]}, {"answer": "decolourise", "hint": "synonyms for decolourise", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "decolourize", "hint": "synonyms for decolourize", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "decompose", "hint": "synonyms for decompose", "clues": ["molder", "decay", "break up", "break down", "rot", "disintegrate", "decompose"]}, {"answer": "decompress", "hint": "synonyms for decompress", "clues": ["unwind", "unbend", "relax", "depressurise", "loosen up", "slow down", "uncompress", "decompress"]}, {"answer": "decorate", "hint": "synonyms for decorate", "clues": ["grace", "ornament", "adorn", "beautify", "deck", "dress", "embellish", "decorate"]}, {"answer": "decriminalise", "hint": "synonyms for decriminalise", "clues": ["legitimate", "legalize", "legitimise", "decriminalize"]}, {"answer": "decriminalize", "hint": "synonyms for decriminalize", "clues": ["legitimate", "legalize", "decriminalise", "legitimise"]}, {"answer": "decry", "hint": "synonyms for decry", "clues": ["condemn", "objurgate", "reprobate", "excoriate", "decry"]}, {"answer": "dedicate", "hint": "synonyms for dedicate", "clues": ["consecrate", "commit", "devote", "give", "dedicate"]}, {"answer": "deduct", "hint": "synonyms for deduct", "clues": ["derive", "withhold", "deduce", "take off", "recoup", "infer", "subtract", "deduct"]}, {"answer": "deepen", "hint": "synonyms for deepen", "clues": ["intensify", "heighten", "change", "compound", "deepen"]}, {"answer": "defalcate", "hint": "synonyms for defalcate", "clues": ["peculate", "embezzle", "malversate", "misappropriate", "defalcate"]}, {"answer": "defame", "hint": "synonyms for defame", "clues": ["denigrate", "sully", "asperse", "calumniate", "besmirch", "slander", "smear", "defame"]}, {"answer": "defecate", "hint": "synonyms for defecate", "clues": ["shit", "make", "take a crap", "ca-ca", "take a shit", "stool", "crap", "defecate"]}, {"answer": "defend", "hint": "synonyms for defend", "clues": ["support", "fend for", "fight", "represent", "champion", "guard", "fight back", "hold", "maintain", "fight down", "oppose", "defend"]}, {"answer": "defer", "hint": "synonyms for defer", "clues": ["hold over", "shelve", "remit", "bow", "prorogue", "set back", "put off", "give in", "submit", "accede", "table", "put over", "postpone", "defer"]}, {"answer": "define", "hint": "synonyms for define", "clues": ["determine", "specify", "limit", "delineate", "fix", "delimit", "delimitate", "set", "define"]}, {"answer": "deflect", "hint": "synonyms for deflect", "clues": ["avoid", "stave off", "parry", "turn away", "forfend", "distract", "avert", "block", "bend", "ward off", "head off", "fend off", "obviate", "debar", "deflect"]}, {"answer": "deflower", "hint": "synonyms for deflower", "clues": ["spoil", "mar", "impair", "ruin", "vitiate", "deflower"]}, {"answer": "deform", "hint": "synonyms for deform", "clues": ["change shape", "strain", "wring", "bend", "distort", "turn", "change form", "contort", "flex", "twist", "deform"]}, {"answer": "defraud", "hint": "synonyms for defraud", "clues": ["rook", "bunco", "victimize", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "defraud"]}, {"answer": "defy", "hint": "synonyms for defy", "clues": ["dare", "hold up", "withstand", "hold", "resist", "refuse", "defy"]}, {"answer": "degrade", "hint": "synonyms for degrade", "clues": ["put down", "take down", "demean", "disgrace", "cheapen", "degrade"]}, {"answer": "deject", "hint": "synonyms for deject", "clues": ["get down", "dismay", "demoralise", "dispirit", "depress", "cast down", "deject"]}, {"answer": "delete", "hint": "synonyms for delete", "clues": ["edit", "cancel", "blue-pencil", "erase", "delete"]}, {"answer": "delimit", "hint": "synonyms for delimit", "clues": ["delineate", "delimitate", "demarcate", "specify", "subtend", "define", "delimit"]}, {"answer": "delimitate", "hint": "synonyms for delimitate", "clues": ["delineate", "delimit", "demarcate", "specify", "define", "delimitate"]}, {"answer": "deliver", "hint": "synonyms for deliver", "clues": ["give birth", "birth", "redeem", "have", "fork over", "bear", "deport", "return", "surrender", "fork up", "render", "rescue", "cede", "give up", "fork out", "hand over", "turn in", "extradite", "present", "pitch", "drive home", "save", "deliver"]}, {"answer": "deliver_the_goods", "hint": "synonyms for deliver the goods", "clues": ["bring home the bacon", "win", "succeed", "come through", "deliver the goods"]}, {"answer": "demean", "hint": "synonyms for demean", "clues": ["disgrace", "degrade", "put down", "take down", "demean"]}, {"answer": "demolish", "hint": "synonyms for demolish", "clues": ["pulverise", "smash", "crush", "destroy", "demolish"]}, {"answer": "demonstrate", "hint": "synonyms for demonstrate", "clues": ["march", "prove", "manifest", "evidence", "show", "attest", "exhibit", "demo", "certify", "shew", "present", "establish", "demonstrate"]}, {"answer": "demoralise", "hint": "synonyms for demoralise", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "cast down", "profane", "get down", "corrupt", "deprave", "dismay", "deject", "dispirit", "demoralize", "debauch", "depress"]}, {"answer": "demoralize", "hint": "synonyms for demoralize", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "cast down", "get down", "corrupt", "deprave", "demoralise", "dismay", "deject", "dispirit", "profane", "debauch", "depress"]}, {"answer": "demote", "hint": "synonyms for demote", "clues": ["break", "kick downstairs", "relegate", "bump", "demote"]}, {"answer": "denigrate", "hint": "synonyms for denigrate", "clues": ["sully", "minimize", "asperse", "derogate", "belittle", "calumniate", "slander", "besmirch", "defame", "smear", "denigrate"]}, {"answer": "denounce", "hint": "synonyms for denounce", "clues": ["betray", "shit", "tell on", "snitch", "rat", "give away", "stag", "mark", "stigmatize", "brand", "grass", "shop", "denounce"]}, {"answer": "depart", "hint": "synonyms for depart", "clues": ["set off", "start", "go", "digress", "start out", "diverge", "deviate", "set forth", "straggle", "quit", "go away", "take leave", "pull up stakes", "sidetrack", "vary", "leave", "take off", "set out", "part", "depart"]}, {"answer": "depend", "hint": "synonyms for depend", "clues": ["reckon", "calculate", "bet", "count", "look", "depend"]}, {"answer": "depend_on", "hint": "synonyms for depend on", "clues": ["ride", "rely on", "depend upon", "hinge upon", "devolve on", "turn on"]}, {"answer": "depend_upon", "hint": "synonyms for depend upon", "clues": ["depend on", "ride", "rely on", "hinge upon", "devolve on", "turn on"]}, {"answer": "depict", "hint": "synonyms for depict", "clues": ["portray", "draw", "picture", "limn", "show", "describe", "render", "depict"]}, {"answer": "deplete", "hint": "synonyms for deplete", "clues": ["eat", "consume", "wipe out", "eat up", "exhaust", "run through", "use up", "deplete"]}, {"answer": "deplumate", "hint": "synonyms for deplumate", "clues": ["tear", "pull", "displume", "pluck", "deplume"]}, {"answer": "deplume", "hint": "synonyms for deplume", "clues": ["deplumate", "tear", "displume", "pull", "pluck"]}, {"answer": "deport", "hint": "synonyms for deport", "clues": ["conduct", "comport", "acquit", "bear", "deliver", "behave", "expatriate", "extradite", "carry", "exile", "deport"]}, {"answer": "deprave", "hint": "synonyms for deprave", "clues": ["vitiate", "subvert", "debase", "misdirect", "pervert", "profane", "corrupt", "demoralise", "debauch", "deprave"]}, {"answer": "depreciate", "hint": "synonyms for depreciate", "clues": ["devaluate", "undervalue", "vilipend", "deprecate"]}, {"answer": "depress", "hint": "synonyms for depress", "clues": ["get down", "cast down", "dismay", "demoralise", "deject", "dispirit", "lower", "press down", "depress"]}, {"answer": "depute", "hint": "synonyms for depute", "clues": ["deputize", "delegate", "assign", "designate"]}, {"answer": "derive", "hint": "synonyms for derive", "clues": ["come", "deduct", "educe", "gain", "infer", "descend", "derive"]}, {"answer": "descend", "hint": "synonyms for descend", "clues": ["fall", "go down", "condescend", "come", "derive", "come down", "deign", "settle", "descend"]}, {"answer": "describe", "hint": "synonyms for describe", "clues": ["line", "identify", "draw", "key out", "depict", "report", "key", "trace", "delineate", "discover", "account", "name", "distinguish", "describe"]}, {"answer": "desecrate", "hint": "synonyms for desecrate", "clues": ["violate", "profane", "unhallow", "deconsecrate", "outrage"]}, {"answer": "desex", "hint": "synonyms for desex", "clues": ["unsex", "desexualise", "sterilise", "fix", "desex"]}, {"answer": "desexualise", "hint": "synonyms for desexualise", "clues": ["unsex", "sterilise", "fix", "desex", "desexualize"]}, {"answer": "desexualize", "hint": "synonyms for desexualize", "clues": ["unsex", "desexualise", "sterilise", "fix", "desex"]}, {"answer": "despoil", "hint": "synonyms for despoil", "clues": ["rifle", "spoil", "rape", "foray", "pillage", "ransack", "plunder", "violate", "strip", "loot", "reave", "despoil"]}, {"answer": "destine", "hint": "synonyms for destine", "clues": ["doom", "fate", "specify", "intend", "designate", "destine"]}, {"answer": "destroy", "hint": "synonyms for destroy", "clues": ["destruct", "put down", "demolish", "ruin", "destroy"]}, {"answer": "detain", "hint": "synonyms for detain", "clues": ["confine", "stay", "delay", "hold up", "detain"]}, {"answer": "detect", "hint": "synonyms for detect", "clues": ["discover", "observe", "find", "notice", "detect"]}, {"answer": "determine", "hint": "synonyms for determine", "clues": ["learn", "watch", "regulate", "influence", "fix", "mold", "define", "set", "settle", "square up", "decide", "specify", "make up one's mind", "limit", "check", "square off", "find out", "shape", "ascertain", "see", "find", "determine"]}, {"answer": "dethaw", "hint": "synonyms for dethaw", "clues": ["unfreeze", "unthaw", "thaw", "dissolve", "melt", "dethaw"]}, {"answer": "devastate", "hint": "synonyms for devastate", "clues": ["ravage", "lay waste to", "scourge", "waste", "desolate", "devastate"]}, {"answer": "develop", "hint": "synonyms for develop", "clues": ["train", "originate", "recrudesce", "formulate", "rise", "acquire", "modernize", "get", "break", "educate", "germinate", "uprise", "build up", "explicate", "make grow", "grow", "produce", "spring up", "prepare", "evolve", "develop"]}, {"answer": "devolve", "hint": "synonyms for devolve", "clues": ["return", "fall", "deteriorate", "degenerate", "drop", "pass", "devolve"]}, {"answer": "devolve_on", "hint": "synonyms for devolve on", "clues": ["depend on", "ride", "hinge upon", "turn on", "devolve on"]}, {"answer": "devote", "hint": "synonyms for devote", "clues": ["commit", "consecrate", "give", "dedicate", "pay", "devote"]}, {"answer": "devour", "hint": "synonyms for devour", "clues": ["go through", "consume", "guttle", "raven", "pig", "down", "devour"]}, {"answer": "diddle", "hint": "synonyms for diddle", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "victimize", "nobble", "swindle", "short-change", "toy", "fiddle", "gip", "scam", "play", "con", "goldbrick", "diddle"]}, {"answer": "die_away", "hint": "synonyms for die away", "clues": ["let up", "slack off", "abate", "slack", "die away"]}, {"answer": "die_hard", "hint": "synonyms for die hard", "clues": ["run", "endure", "persist", "prevail", "die hard"]}, {"answer": "differentiate", "hint": "synonyms for differentiate", "clues": ["speciate", "tell apart", "severalise", "tell", "secernate", "mark", "distinguish", "specialise", "secern", "separate", "differentiate"]}, {"answer": "dig_up", "hint": "synonyms for dig up", "clues": ["dig", "excavate", "turn up", "dig out", "dig up"]}, {"answer": "digress", "hint": "synonyms for digress", "clues": ["sidetrack", "stray", "straggle", "depart", "divagate", "wander", "digress"]}, {"answer": "dilate", "hint": "synonyms for dilate", "clues": ["expatiate", "lucubrate", "elaborate", "exposit", "expound", "distend", "expand", "flesh out", "enlarge", "dilate"]}, {"answer": "dilly-dally", "hint": "synonyms for dilly-dally", "clues": ["shillyshally", "drag one's heels", "drag one's feet", "procrastinate", "stall", "dillydally"]}, {"answer": "dillydally", "hint": "synonyms for dillydally", "clues": ["shillyshally", "dilly-dally", "drag one's heels", "procrastinate", "stall", "drag one's feet"]}, {"answer": "diminish", "hint": "synonyms for diminish", "clues": ["lessen", "fall", "decrease", "belittle", "diminish"]}, {"answer": "disable", "hint": "synonyms for disable", "clues": ["incapacitate", "disenable", "invalid", "handicap"]}, {"answer": "disagree", "hint": "synonyms for disagree", "clues": ["differ", "discord", "dissent", "take issue", "disagree"]}, {"answer": "disallow", "hint": "synonyms for disallow", "clues": ["interdict", "veto", "prohibit", "nix", "forbid", "proscribe", "disallow"]}, {"answer": "disappear", "hint": "synonyms for disappear", "clues": ["go away", "evaporate", "melt", "vanish", "disappear"]}, {"answer": "disassemble", "hint": "synonyms for disassemble", "clues": ["take apart", "dismantle", "break up", "break apart", "disassemble"]}, {"answer": "disassociate", "hint": "synonyms for disassociate", "clues": ["dissociate", "disunite", "divorce", "disjoint"]}, {"answer": "discase", "hint": "synonyms for discase", "clues": ["strip", "strip down", "peel", "unclothe", "disrobe", "undress", "uncase", "discase"]}, {"answer": "discern", "hint": "synonyms for discern", "clues": ["recognise", "pick out", "spot", "make out", "distinguish", "tell apart", "discern"]}, {"answer": "discerp", "hint": "synonyms for discerp", "clues": ["take apart", "sever", "lop", "dismember", "discerp"]}, {"answer": "disclose", "hint": "synonyms for disclose", "clues": ["break", "reveal", "let on", "let out", "discover", "give away", "expose", "unwrap", "bring out", "divulge", "disclose"]}, {"answer": "discolorise", "hint": "synonyms for discolorise", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "discolorize", "hint": "synonyms for discolorize", "clues": ["discolourise", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "discolourise", "hint": "synonyms for discolourise", "clues": ["discolorize", "bleach out", "decolorise", "decolour", "bleach"]}, {"answer": "discombobulate", "hint": "synonyms for discombobulate", "clues": ["throw", "fuddle", "confuse", "bemuse", "fox", "bedevil", "bewilder", "confound", "discombobulate"]}, {"answer": "discomfit", "hint": "synonyms for discomfit", "clues": ["untune", "upset", "disconcert", "discompose", "discomfit"]}, {"answer": "discommode", "hint": "synonyms for discommode", "clues": ["trouble", "incommode", "inconvenience", "bother", "disoblige", "put out", "discommode"]}, {"answer": "discompose", "hint": "synonyms for discompose", "clues": ["untune", "upset", "disconcert", "discomfit", "discompose"]}, {"answer": "disconcert", "hint": "synonyms for disconcert", "clues": ["flurry", "untune", "confuse", "upset", "put off", "discompose", "discomfit", "disconcert"]}, {"answer": "discontinue", "hint": "synonyms for discontinue", "clues": ["lay off", "break", "break off", "quit", "cease", "give up", "stop", "discontinue"]}, {"answer": "discourage", "hint": "synonyms for discourage", "clues": ["warn", "admonish", "deter", "discourage"]}, {"answer": "discover", "hint": "synonyms for discover", "clues": ["get wind", "get a line", "attain", "learn", "reveal", "key out", "get word", "key", "notice", "observe", "give away", "chance upon", "expose", "come upon", "distinguish", "fall upon", "describe", "divulge", "break", "hear", "identify", "let on", "let out", "pick up", "happen upon", "light upon", "disclose", "find out", "come across", "see", "unwrap", "name", "bring out", "find", "strike", "detect", "discover"]}, {"answer": "discuss", "hint": "synonyms for discuss", "clues": ["talk over", "talk about", "hash out", "discourse", "discuss"]}, {"answer": "disentangle", "hint": "synonyms for disentangle", "clues": ["unwind", "comb", "disencumber", "disinvolve", "disembroil", "straighten out", "extricate", "comb out", "unsnarl", "untangle", "disentangle"]}, {"answer": "disgorge", "hint": "synonyms for disgorge", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "honk", "spill", "be sick", "upchuck", "shed", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "disgorge"]}, {"answer": "dish_out", "hint": "synonyms for dish out", "clues": ["dispense", "dish up", "administer", "dish", "allot", "mete out", "shell out", "lot", "deal", "deal out", "serve up", "dole out", "serve", "parcel out", "distribute", "dish out"]}, {"answer": "dish_up", "hint": "synonyms for dish up", "clues": ["serve", "dish", "dish out", "serve up", "dish up"]}, {"answer": "dislodge", "hint": "synonyms for dislodge", "clues": ["shift", "bump", "reposition", "free", "dislodge"]}, {"answer": "dismantle", "hint": "synonyms for dismantle", "clues": ["take apart", "break up", "break apart", "take down", "level", "pull down", "raze", "tear down", "strip", "disassemble", "rase", "dismantle"]}, {"answer": "dismiss", "hint": "synonyms for dismiss", "clues": ["disregard", "can", "discount", "drop", "force out", "give notice", "push aside", "give the axe", "fire", "terminate", "brush off", "throw out", "dissolve", "sack", "give the sack", "send away", "usher out", "displace", "ignore", "send packing", "dismiss"]}, {"answer": "disoblige", "hint": "synonyms for disoblige", "clues": ["discommode", "trouble", "incommode", "inconvenience", "bother", "put out", "disoblige"]}, {"answer": "dispel", "hint": "synonyms for dispel", "clues": ["break up", "drive out", "drive off", "turn back", "scatter", "drive away", "chase away", "dissipate", "disperse", "run off", "dispel"]}, {"answer": "dispense", "hint": "synonyms for dispense", "clues": ["administer", "allot", "mete out", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "dispense"]}, {"answer": "dispense_with", "hint": "synonyms for dispense with", "clues": ["foreswear", "waive", "give up", "relinquish", "forego", "spare", "part with", "dispense with"]}, {"answer": "disperse", "hint": "synonyms for disperse", "clues": ["circulate", "sprinkle", "dot", "break up", "diffuse", "circularize", "scatter", "dust", "pass around", "spread", "broadcast", "dispel", "propagate", "disseminate", "dissipate", "spread out", "distribute", "disperse"]}, {"answer": "dispirit", "hint": "synonyms for dispirit", "clues": ["get down", "demoralise", "deject", "dismay", "depress", "cast down", "dispirit"]}, {"answer": "displace", "hint": "synonyms for displace", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "give the axe", "send away", "fire", "terminate", "move", "preempt", "displace"]}, {"answer": "displume", "hint": "synonyms for displume", "clues": ["deplumate", "tear", "pull", "pluck", "displume"]}, {"answer": "disport", "hint": "synonyms for disport", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "divert", "run around", "sport", "rollick", "romp", "skylark", "lark about", "amuse", "disport"]}, {"answer": "dispose", "hint": "synonyms for dispose", "clues": ["discard", "toss", "cast aside", "fling", "chuck out", "throw away", "incline", "put away", "qualify", "toss out", "throw out", "cast out", "toss away", "cast away", "dispose"]}, {"answer": "disrobe", "hint": "synonyms for disrobe", "clues": ["discase", "strip", "strip down", "peel", "unclothe", "undress", "uncase", "disrobe"]}, {"answer": "dissect", "hint": "synonyms for dissect", "clues": ["take apart", "analyse", "break down", "dissect"]}, {"answer": "dissemble", "hint": "synonyms for dissemble", "clues": ["cloak", "act", "affect", "mask", "sham", "feign", "pretend", "dissemble"]}, {"answer": "disseminate", "hint": "synonyms for disseminate", "clues": ["circulate", "diffuse", "circularize", "pass around", "spread", "broadcast", "propagate", "disperse", "distribute", "disseminate"]}, {"answer": "dissever", "hint": "synonyms for dissever", "clues": ["carve up", "split up", "separate", "divide", "split", "dissever"]}, {"answer": "dissipate", "hint": "synonyms for dissipate", "clues": ["break up", "fool", "fritter", "shoot", "scatter", "frivol away", "fritter away", "fool away", "dispel", "disperse", "spread out", "dissipate"]}, {"answer": "dissociate", "hint": "synonyms for dissociate", "clues": ["disunite", "decouple", "disjoint", "disassociate", "divorce"]}, {"answer": "distill", "hint": "synonyms for distill", "clues": ["distil", "condense", "purify", "sublimate", "make pure", "extract"]}, {"answer": "distinguish", "hint": "synonyms for distinguish", "clues": ["spot", "key out", "key", "differentiate", "severalize", "secernate", "pick out", "make out", "discern", "mark", "secern", "signalise", "describe", "recognise", "identify", "tell apart", "tell", "discover", "name", "separate", "distinguish"]}, {"answer": "distort", "hint": "synonyms for distort", "clues": ["colour", "warp", "falsify", "garble", "tinge", "strain", "wring", "contort", "twine", "twist", "deform", "distort"]}, {"answer": "distract", "hint": "synonyms for distract", "clues": ["deflect", "cark", "trouble", "disquiet", "unhinge", "disorder", "perturb", "distract"]}, {"answer": "distribute", "hint": "synonyms for distribute", "clues": ["dispense", "circulate", "pass out", "allot", "circularize", "deal", "hand out", "spread", "deal out", "pass around", "propagate", "dish out", "give out", "shell out", "dole out", "pass on", "administer", "diffuse", "lot", "broadcast", "disseminate", "parcel out", "mete out", "stagger", "distribute"]}, {"answer": "disturb", "hint": "synonyms for disturb", "clues": ["interrupt", "stir up", "shake up", "agitate", "vex", "trouble", "touch", "raise up", "upset", "commove", "disturb"]}, {"answer": "disunite", "hint": "synonyms for disunite", "clues": ["dissociate", "disjoint", "divide", "separate", "divorce", "part", "disunite"]}, {"answer": "divert", "hint": "synonyms for divert", "clues": ["disport", "hive off", "deviate", "amuse", "divert"]}, {"answer": "divest", "hint": "synonyms for divest", "clues": ["strip", "disinvest", "deprive", "undress", "divest"]}, {"answer": "divulge", "hint": "synonyms for divulge", "clues": ["break", "reveal", "let on", "let out", "discover", "disclose", "expose", "give away", "unwrap", "bring out", "divulge"]}, {"answer": "divvy_up", "hint": "synonyms for divvy up", "clues": ["share", "deal", "apportion", "portion out", "divvy up"]}, {"answer": "do_in", "hint": "synonyms for do in", "clues": ["liquidate", "neutralize", "waste", "knock off", "do in"]}, {"answer": "do_it", "hint": "synonyms for do it", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "fuck", "lie with", "make love", "do it"]}, {"answer": "dole_out", "hint": "synonyms for dole out", "clues": ["dispense", "administer", "allot", "mete out", "shell out", "lot", "deal", "deal out", "dish out", "parcel out", "distribute", "dole out"]}, {"answer": "domesticate", "hint": "synonyms for domesticate", "clues": ["naturalise", "reclaim", "tame", "domesticise", "cultivate", "domesticate"]}, {"answer": "domesticise", "hint": "synonyms for domesticise", "clues": ["domesticate", "reclaim", "domesticize", "tame"]}, {"answer": "domesticize", "hint": "synonyms for domesticize", "clues": ["domesticate", "reclaim", "domesticise", "tame"]}, {"answer": "domiciliate", "hint": "synonyms for domiciliate", "clues": ["put up", "shack", "domicile", "reside", "house", "domiciliate"]}, {"answer": "dominate", "hint": "synonyms for dominate", "clues": ["overshadow", "eclipse", "command", "master", "reign", "predominate", "overlook", "rule", "prevail", "overtop", "dominate"]}, {"answer": "dope_off", "hint": "synonyms for dope off", "clues": ["drop off", "doze off", "fall asleep", "drift off", "nod off", "drowse off", "flake out"]}, {"answer": "douse", "hint": "synonyms for douse", "clues": ["soak", "sop", "drench", "dowse", "souse", "put out", "dip", "plunge", "duck", "dunk", "douse"]}, {"answer": "downplay", "hint": "synonyms for downplay", "clues": ["understate", "minimize", "play down", "background", "downplay"]}, {"answer": "doze_off", "hint": "synonyms for doze off", "clues": ["dope off", "fall asleep", "drift off", "nod off", "drowse off", "flake out"]}, {"answer": "drag_down", "hint": "synonyms for drag down", "clues": ["weigh down", "bear down", "press down on", "drag down"]}, {"answer": "drag_in", "hint": "synonyms for drag in", "clues": ["tangle", "sweep up", "sweep", "embroil", "drag", "drag in"]}, {"answer": "drag_one's_feet", "hint": "synonyms for drag one's feet", "clues": ["shillyshally", "dilly-dally", "drag one's heels", "procrastinate", "stall", "drag one's feet"]}, {"answer": "drag_one's_heels", "hint": "synonyms for drag one's heels", "clues": ["shillyshally", "dilly-dally", "drag one's feet", "procrastinate", "stall", "drag one's heels"]}, {"answer": "dramatise", "hint": "synonyms for dramatise", "clues": ["adopt", "dramatize", "aggrandise", "lard", "blow up", "embellish", "pad", "embroider"]}, {"answer": "dramatize", "hint": "synonyms for dramatize", "clues": ["adopt", "aggrandise", "dramatise", "lard", "blow up", "embellish", "pad", "embroider"]}, {"answer": "draw_back", "hint": "synonyms for draw back", "clues": ["retreat", "move back", "retire", "withdraw", "pull back", "recede", "pull away", "draw back"]}, {"answer": "draw_close", "hint": "synonyms for draw close", "clues": ["cuddle", "nuzzle", "nest", "approach", "come near", "near", "draw near", "come on", "go up", "nestle", "snuggle", "draw close"]}, {"answer": "draw_in", "hint": "synonyms for draw in", "clues": ["attract", "close in", "pull in", "draw", "curl", "suck in", "pull", "curl up", "move in", "get in", "retract", "draw in"]}, {"answer": "draw_near", "hint": "synonyms for draw near", "clues": ["come near", "draw close", "come on", "approach", "go up", "near", "draw near"]}, {"answer": "draw_off", "hint": "synonyms for draw off", "clues": ["withdraw", "draw", "draw away", "pull off", "take out", "draw off"]}, {"answer": "draw_out", "hint": "synonyms for draw out", "clues": ["educe", "elicit", "prolong", "protract", "aspirate", "extract", "pull up", "pull out", "pull", "extend", "take out", "evoke", "suck out", "draw out"]}, {"answer": "draw_up", "hint": "synonyms for draw up", "clues": ["frame", "straighten up", "compose", "pull up", "haul up", "draw up"]}, {"answer": "dream_up", "hint": "synonyms for dream up", "clues": ["think of", "concoct", "think up", "hatch", "dream up"]}, {"answer": "drench", "hint": "synonyms for drench", "clues": ["swamp", "soak", "imbrue", "sop", "souse", "dowse", "douse", "drench"]}, {"answer": "dress_down", "hint": "synonyms for dress down", "clues": ["call down", "chew up", "underdress", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "trounce", "bawl out", "rag", "dress down"]}, {"answer": "dress_up", "hint": "synonyms for dress up", "clues": ["fig up", "deck up", "tog up", "caparison", "window-dress", "attire", "overdress", "barde", "dress", "deck out", "costume", "trick out", "fig out", "fancy up", "tog out", "gussy up", "prink", "trick up", "get up", "dress up"]}, {"answer": "drift_off", "hint": "synonyms for drift off", "clues": ["dope off", "fall asleep", "nod off", "drowse off", "flake out", "drift off"]}, {"answer": "drink_down", "hint": "synonyms for drink down", "clues": ["pop", "kill", "toss off", "pour down", "bolt down", "down", "drink down"]}, {"answer": "drive_away", "hint": "synonyms for drive away", "clues": ["dispel", "chase away", "drive out", "drive off", "turn back", "run off", "drive away"]}, {"answer": "drive_back", "hint": "synonyms for drive back", "clues": ["repel", "rebuff", "repulse", "fight off", "drive back"]}, {"answer": "drive_off", "hint": "synonyms for drive off", "clues": ["dispel", "drive away", "drive out", "chase away", "turn back", "run off", "drive off"]}, {"answer": "drive_out", "hint": "synonyms for drive out", "clues": ["rout out", "expectorate", "force out", "drive off", "turn back", "clear out", "dispel", "drive away", "chase away", "rouse", "run off", "drive out"]}, {"answer": "drop_back", "hint": "synonyms for drop back", "clues": ["hang back", "drop behind", "trail", "drag", "get behind", "drop back"]}, {"answer": "drop_behind", "hint": "synonyms for drop behind", "clues": ["hang back", "trail", "drag", "get behind", "drop back", "drop behind"]}, {"answer": "drop_by_the_wayside", "hint": "synonyms for drop by the wayside", "clues": ["throw in the towel", "give up", "quit", "fall by the wayside", "drop out", "throw in", "chuck up the sponge", "drop by the wayside"]}, {"answer": "drop_dead", "hint": "synonyms for drop dead", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "drop dead"]}, {"answer": "drop_off", "hint": "synonyms for drop off", "clues": ["lose", "drop", "fall asleep", "nod off", "discharge", "drowse off", "flake out", "fall back", "doze off", "drift off", "unload", "put down", "fall away", "set down", "drop away", "recede", "slip", "fall behind", "drop off"]}, {"answer": "drop_out", "hint": "synonyms for drop out", "clues": ["throw in the towel", "quit", "fall by the wayside", "drop by the wayside", "give up", "throw in", "chuck up the sponge", "drop out"]}, {"answer": "drop_the_ball", "hint": "synonyms for drop the ball", "clues": ["goof", "boob", "sin", "blunder", "drop the ball"]}, {"answer": "drowse_off", "hint": "synonyms for drowse off", "clues": ["dope off", "fall asleep", "drift off", "nod off", "flake out", "drowse off"]}, {"answer": "drub", "hint": "synonyms for drub", "clues": ["clobber", "lick", "bat", "cream", "thrash", "drub"]}, {"answer": "drum_out", "hint": "synonyms for drum out", "clues": ["boot out", "expel", "kick out", "throw out", "oust", "drum out"]}, {"answer": "dry_up", "hint": "synonyms for dry up", "clues": ["mummify", "exsiccate", "dehydrate", "dry up"]}, {"answer": "dumbfound", "hint": "synonyms for dumbfound", "clues": ["get", "stupefy", "flummox", "gravel", "vex", "amaze", "bewilder", "nonplus", "puzzle", "perplex", "baffle", "pose", "beat", "stick", "mystify", "dumbfound"]}, {"answer": "dummy_up", "hint": "synonyms for dummy up", "clues": ["be quiet", "belt up", "dummy", "clam up", "close up", "keep mum", "button up", "shut up", "dummy up"]}, {"answer": "dwell", "hint": "synonyms for dwell", "clues": ["lie", "lie in", "harp", "consist", "populate", "brood", "inhabit", "dwell"]}, {"answer": "earn", "hint": "synonyms for earn", "clues": ["pull in", "gain", "make", "clear", "realize", "garner", "take in", "bring in", "earn"]}, {"answer": "ease_off", "hint": "synonyms for ease off", "clues": ["ease up", "slacken off", "let up", "flag", "ease off"]}, {"answer": "ease_up", "hint": "synonyms for ease up", "clues": ["slacken off", "give way", "give", "move over", "let up", "ease off", "flag", "yield", "ease up"]}, {"answer": "eat", "hint": "synonyms for eat", "clues": ["rust", "feed", "deplete", "exhaust", "run through", "use up", "corrode", "consume", "wipe out", "eat up", "eat on", "eat"]}, {"answer": "eat_at", "hint": "synonyms for eat at", "clues": ["gnaw at", "gnaw", "wear away", "erode", "eat at"]}, {"answer": "eat_up", "hint": "synonyms for eat up", "clues": ["swallow", "eat", "deplete", "immerse", "polish off", "bury", "exhaust", "run through", "use up", "finish", "consume", "wipe out", "swallow up", "eat up"]}, {"answer": "ebb_away", "hint": "synonyms for ebb away", "clues": ["ebb", "ebb down", "ebb out", "ebb off", "ebb away"]}, {"answer": "ebb_down", "hint": "synonyms for ebb down", "clues": ["ebb away", "ebb", "ebb out", "ebb off", "ebb down"]}, {"answer": "ebb_off", "hint": "synonyms for ebb off", "clues": ["ebb away", "ebb", "ebb down", "ebb out", "ebb off"]}, {"answer": "ebb_out", "hint": "synonyms for ebb out", "clues": ["ebb away", "ebb", "ebb down", "ebb off", "ebb out"]}, {"answer": "economise", "hint": "synonyms for economise", "clues": ["economize", "conserve", "husband", "save"]}, {"answer": "economize", "hint": "synonyms for economize", "clues": ["conserve", "husband", "economise", "save"]}, {"answer": "edit", "hint": "synonyms for edit", "clues": ["cut", "delete", "redact", "blue-pencil", "edit out", "edit"]}, {"answer": "educate", "hint": "synonyms for educate", "clues": ["civilise", "train", "develop", "prepare", "school", "cultivate", "educate"]}, {"answer": "educe", "hint": "synonyms for educe", "clues": ["derive", "elicit", "evoke", "draw out", "extract", "educe"]}, {"answer": "eff", "hint": "synonyms for eff", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "eff"]}, {"answer": "efface", "hint": "synonyms for efface", "clues": ["rub out", "score out", "obliterate", "erase", "wipe off", "efface"]}, {"answer": "effervesce", "hint": "synonyms for effervesce", "clues": ["form bubbles", "froth", "foam", "sparkle", "fizz", "effervesce"]}, {"answer": "eject", "hint": "synonyms for eject", "clues": ["turf out", "exclude", "boot out", "force out", "exhaust", "discharge", "chuck out", "release", "squirt", "squeeze out", "expel", "eject"]}, {"answer": "elapse", "hint": "synonyms for elapse", "clues": ["glide by", "lapse", "slip by", "go by", "go along", "slip away", "pass"]}, {"answer": "elate", "hint": "synonyms for elate", "clues": ["pick up", "uplift", "intoxicate", "lift up", "elate"]}, {"answer": "elevate", "hint": "synonyms for elevate", "clues": ["upgrade", "promote", "raise", "bring up", "advance", "get up", "kick upstairs", "lift", "elevate"]}, {"answer": "elicit", "hint": "synonyms for elicit", "clues": ["educe", "draw out", "arouse", "enkindle", "raise", "extract", "fire", "provoke", "evoke", "elicit"]}, {"answer": "eliminate", "hint": "synonyms for eliminate", "clues": ["excrete", "get rid of", "pass", "annihilate", "rid of", "obviate", "eradicate", "do away with", "decimate", "extinguish", "wipe out", "rule out", "carry off", "winnow out", "reject", "egest", "eliminate"]}, {"answer": "elucidate", "hint": "synonyms for elucidate", "clues": ["enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "clarify", "shed light on", "elucidate"]}, {"answer": "elude", "hint": "synonyms for elude", "clues": ["escape", "parry", "circumvent", "dodge", "bilk", "evade", "put off", "fudge", "sidestep", "duck", "skirt", "hedge", "elude"]}, {"answer": "embarrass", "hint": "synonyms for embarrass", "clues": ["stymy", "blockade", "hinder", "stymie", "abash", "block", "obstruct", "embarrass"]}, {"answer": "embed", "hint": "synonyms for embed", "clues": ["plant", "engraft", "imbed", "implant", "embed"]}, {"answer": "embellish", "hint": "synonyms for embellish", "clues": ["dramatize", "grace", "fancify", "aggrandise", "lard", "ornament", "adorn", "blow up", "beautify", "decorate", "deck", "pad", "prettify", "embroider", "embellish"]}, {"answer": "embezzle", "hint": "synonyms for embezzle", "clues": ["peculate", "malversate", "defalcate", "misappropriate", "embezzle"]}, {"answer": "embody", "hint": "synonyms for embody", "clues": ["incarnate", "body forth", "personify", "substantiate", "be", "embody"]}, {"answer": "embrocate", "hint": "synonyms for embrocate", "clues": ["anele", "inunct", "oil", "anoint", "embrocate"]}, {"answer": "embroider", "hint": "synonyms for embroider", "clues": ["dramatize", "aggrandise", "lard", "blow up", "broider", "embellish", "pad"]}, {"answer": "embroil", "hint": "synonyms for embroil", "clues": ["tangle", "sweep up", "sweep", "drag", "drag in", "embroil"]}, {"answer": "emerge", "hint": "synonyms for emerge", "clues": ["go forth", "come out", "egress", "come forth", "issue", "emerge"]}, {"answer": "emit", "hint": "synonyms for emit", "clues": ["pass off", "let loose", "utter", "breathe", "give out", "give off", "let out", "emit"]}, {"answer": "emphasise", "hint": "synonyms for emphasise", "clues": ["stress", "emphasize", "punctuate", "accentuate", "underline", "accent", "underscore"]}, {"answer": "emphasize", "hint": "synonyms for emphasize", "clues": ["stress", "accentuate", "emphasise", "underline", "punctuate", "accent", "underscore"]}, {"answer": "empower", "hint": "synonyms for empower", "clues": ["gift", "indue", "endue", "endow", "authorise", "invest", "empower"]}, {"answer": "enamor", "hint": "synonyms for enamor", "clues": ["captivate", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamour"]}, {"answer": "enamour", "hint": "synonyms for enamour", "clues": ["captivate", "capture", "becharm", "trance", "fascinate", "enchant", "beguile", "bewitch", "charm", "catch", "enamor"]}, {"answer": "encamp", "hint": "synonyms for encamp", "clues": ["camp out", "bivouac", "camp", "tent", "encamp"]}, {"answer": "enchant", "hint": "synonyms for enchant", "clues": ["captivate", "capture", "hex", "becharm", "glamour", "trance", "enrapture", "charm", "transport", "enthrall", "fascinate", "delight", "ravish", "jinx", "beguile", "bewitch", "witch", "catch", "enamor", "enchant"]}, {"answer": "encipher", "hint": "synonyms for encipher", "clues": ["code", "cipher", "write in code", "encrypt", "inscribe", "cypher"]}, {"answer": "enclose", "hint": "synonyms for enclose", "clues": ["enfold", "confine", "enwrap", "close in", "put in", "hold in", "inclose", "stick in", "shut in", "wrap", "envelop", "introduce", "insert"]}, {"answer": "enclothe", "hint": "synonyms for enclothe", "clues": ["tog", "raiment", "apparel", "garment", "clothe", "habilitate", "dress", "fit out", "garb"]}, {"answer": "encourage", "hint": "synonyms for encourage", "clues": ["further", "boost", "promote", "advance", "encourage"]}, {"answer": "encroach", "hint": "synonyms for encroach", "clues": ["impinge", "infringe", "entrench", "encroach"]}, {"answer": "encrypt", "hint": "synonyms for encrypt", "clues": ["code", "cipher", "write in code", "inscribe", "cypher", "encrypt"]}, {"answer": "end_up", "hint": "synonyms for end up", "clues": ["finish", "finish up", "fetch up", "land up", "wind up", "end up"]}, {"answer": "endanger", "hint": "synonyms for endanger", "clues": ["scupper", "jeopardize", "threaten", "queer", "menace", "imperil", "expose", "peril", "endanger"]}, {"answer": "endorse", "hint": "synonyms for endorse", "clues": ["support", "plump for", "back", "plunk for", "second", "certify", "indorse"]}, {"answer": "endow", "hint": "synonyms for endow", "clues": ["dower", "gift", "empower", "endue", "invest", "indue", "endow"]}, {"answer": "endue", "hint": "synonyms for endue", "clues": ["gift", "empower", "endow", "invest", "indue", "endue"]}, {"answer": "endure", "hint": "synonyms for endure", "clues": ["digest", "support", "abide", "go", "weather", "bear", "suffer", "survive", "stomach", "persist", "hold up", "live", "hold out", "tolerate", "wear", "live on", "run", "die hard", "put up", "last", "prevail", "brave out", "brave", "stand", "brook", "stick out", "endure"]}, {"answer": "energise", "hint": "synonyms for energise", "clues": ["perk up", "excite", "arouse", "stimulate", "energize", "brace"]}, {"answer": "energize", "hint": "synonyms for energize", "clues": ["perk up", "excite", "energise", "arouse", "stimulate", "brace"]}, {"answer": "enfold", "hint": "synonyms for enfold", "clues": ["enclose", "envelop", "wrap", "enwrap", "enfold"]}, {"answer": "engage", "hint": "synonyms for engage", "clues": ["absorb", "rent", "enlist", "plight", "wage", "hire", "engross", "prosecute", "employ", "affiance", "pursue", "lock", "betroth", "operate", "take", "charter", "lease", "occupy", "mesh", "engage"]}, {"answer": "engender", "hint": "synonyms for engender", "clues": ["mother", "sire", "generate", "breed", "bring forth", "get", "beget", "spawn", "father", "engender"]}, {"answer": "englut", "hint": "synonyms for englut", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "stuff", "engorge", "englut"]}, {"answer": "engorge", "hint": "synonyms for engorge", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge"]}, {"answer": "engraft", "hint": "synonyms for engraft", "clues": ["graft", "embed", "plant", "imbed", "ingraft", "implant"]}, {"answer": "engrave", "hint": "synonyms for engrave", "clues": ["grave", "etch", "inscribe", "scratch", "engrave"]}, {"answer": "engross", "hint": "synonyms for engross", "clues": ["absorb", "immerse", "steep", "engage", "plunge", "occupy", "soak up", "engulf", "engross"]}, {"answer": "engulf", "hint": "synonyms for engulf", "clues": ["absorb", "immerse", "plunge", "steep", "soak up", "engross", "engulf"]}, {"answer": "enjoy", "hint": "synonyms for enjoy", "clues": ["savour", "love", "revel", "delight", "bask", "relish", "enjoy"]}, {"answer": "enkindle", "hint": "synonyms for enkindle", "clues": ["elicit", "arouse", "raise", "fire", "provoke", "conflagrate", "inflame", "evoke", "kindle"]}, {"answer": "enlace", "hint": "synonyms for enlace", "clues": ["intertwine", "entwine", "lace", "twine", "interlace", "enlace"]}, {"answer": "enlarge", "hint": "synonyms for enlarge", "clues": ["expatiate", "lucubrate", "magnify", "elaborate", "exposit", "blow up", "dilate", "expound", "expand", "flesh out", "enlarge"]}, {"answer": "enlighten", "hint": "synonyms for enlighten", "clues": ["irradiate", "elucidate", "crystalise", "sort out", "illuminate", "edify", "clear up", "clear", "straighten out", "shed light on", "enlighten"]}, {"answer": "enliven", "hint": "synonyms for enliven", "clues": ["inspire", "liven up", "exalt", "invigorate", "liven", "animate", "enliven"]}, {"answer": "enounce", "hint": "synonyms for enounce", "clues": ["pronounce", "articulate", "say", "sound out", "enunciate", "enounce"]}, {"answer": "enquire", "hint": "synonyms for enquire", "clues": ["investigate", "inquire", "wonder", "ask"]}, {"answer": "enrapture", "hint": "synonyms for enrapture", "clues": ["ravish", "enthrall", "transport", "enchant", "delight", "enrapture"]}, {"answer": "enrol", "hint": "synonyms for enrol", "clues": ["enter", "enroll", "inscribe", "recruit"]}, {"answer": "enroll", "hint": "synonyms for enroll", "clues": ["enter", "recruit", "inscribe", "enrol"]}, {"answer": "ensnare", "hint": "synonyms for ensnare", "clues": ["set up", "frame", "trammel", "entrap", "trap", "snare", "ensnare"]}, {"answer": "ensure", "hint": "synonyms for ensure", "clues": ["control", "see to it", "check", "assure", "secure", "see", "ascertain", "guarantee", "insure", "ensure"]}, {"answer": "entangle", "hint": "synonyms for entangle", "clues": ["snarl", "mat", "tangle", "mire"]}, {"answer": "enter", "hint": "synonyms for enter", "clues": ["figure", "embark", "recruit", "participate", "record", "inscribe", "put down", "get into", "enrol", "go into", "infix", "come in", "move into", "go in", "accede", "introduce", "insert", "enter"]}, {"answer": "entertain", "hint": "synonyms for entertain", "clues": ["nurse", "harbor", "think of", "toy with", "think about", "hold", "flirt with", "entertain"]}, {"answer": "enthral", "hint": "synonyms for enthral", "clues": ["ravish", "enthrall", "enchant", "transport", "enrapture", "delight"]}, {"answer": "enthrall", "hint": "synonyms for enthrall", "clues": ["ravish", "enchant", "enthral", "transport", "enrapture", "delight"]}, {"answer": "entomb", "hint": "synonyms for entomb", "clues": ["bury", "inhume", "lay to rest", "inter", "entomb"]}, {"answer": "entrap", "hint": "synonyms for entrap", "clues": ["set up", "frame", "trammel", "ensnare", "snare", "trap", "entrap"]}, {"answer": "entreat", "hint": "synonyms for entreat", "clues": ["bid", "beseech", "adjure", "press", "conjure", "entreat"]}, {"answer": "entrench", "hint": "synonyms for entrench", "clues": ["impinge", "intrench", "dig in", "encroach"]}, {"answer": "entrust", "hint": "synonyms for entrust", "clues": ["commit", "trust", "intrust", "confide", "leave"]}, {"answer": "entwine", "hint": "synonyms for entwine", "clues": ["intertwine", "lace", "knit", "twine", "interlace", "enlace", "entwine"]}, {"answer": "enumerate", "hint": "synonyms for enumerate", "clues": ["itemise", "number", "recite", "numerate", "count"]}, {"answer": "enunciate", "hint": "synonyms for enunciate", "clues": ["vocalise", "say", "pronounce", "articulate", "enounce", "sound out", "enunciate"]}, {"answer": "envelop", "hint": "synonyms for envelop", "clues": ["enfold", "enclose", "enwrap", "wrap", "envelop"]}, {"answer": "environ", "hint": "synonyms for environ", "clues": ["border", "surround", "skirt", "ring", "environ"]}, {"answer": "envision", "hint": "synonyms for envision", "clues": ["figure", "image", "visualise", "picture", "fancy", "foresee", "see", "project", "envision"]}, {"answer": "enwrap", "hint": "synonyms for enwrap", "clues": ["enfold", "enclose", "envelop", "wrap", "enwrap"]}, {"answer": "equalise", "hint": "synonyms for equalise", "clues": ["equalize", "equate", "match", "equal", "get even"]}, {"answer": "equalize", "hint": "synonyms for equalize", "clues": ["equalise", "equate", "match", "equal", "get even"]}, {"answer": "equate", "hint": "synonyms for equate", "clues": ["equalize", "match", "equal", "liken", "compare", "correspond", "equate"]}, {"answer": "equivocate", "hint": "synonyms for equivocate", "clues": ["beat around the bush", "prevaricate", "palter", "tergiversate", "equivocate"]}, {"answer": "eradicate", "hint": "synonyms for eradicate", "clues": ["uproot", "extirpate", "exterminate", "root out", "annihilate", "decimate", "extinguish", "wipe out", "carry off", "eliminate", "eradicate"]}, {"answer": "erase", "hint": "synonyms for erase", "clues": ["rub out", "score out", "delete", "wipe out", "wipe off", "efface", "erase"]}, {"answer": "erode", "hint": "synonyms for erode", "clues": ["eat at", "gnaw", "gnaw at", "fret", "wear away", "eat away", "erode"]}, {"answer": "err", "hint": "synonyms for err", "clues": ["slip", "mistake", "drift", "stray", "err"]}, {"answer": "eruct", "hint": "synonyms for eruct", "clues": ["spew out", "bubble", "belch", "burp", "spew", "eruct"]}, {"answer": "erupt", "hint": "synonyms for erupt", "clues": ["recrudesce", "break out", "belch", "break open", "burst", "come out", "break", "push through", "combust", "irrupt", "catch fire", "take fire", "flare", "flare up", "conflagrate", "burst out", "break through", "ignite", "extravasate", "erupt"]}, {"answer": "espouse", "hint": "synonyms for espouse", "clues": ["follow", "adopt", "get married", "wed", "marry", "sweep up", "hook up with", "embrace", "get hitched with", "conjoin", "espouse"]}, {"answer": "establish", "hint": "synonyms for establish", "clues": ["launch", "instal", "institute", "show", "found", "constitute", "prove", "lay down", "plant", "make", "demonstrate", "ground", "build", "base", "give", "set up", "shew", "establish"]}, {"answer": "evade", "hint": "synonyms for evade", "clues": ["parry", "circumvent", "skirt", "dodge", "put off", "bilk", "fudge", "sidestep", "elude", "duck", "hedge", "evade"]}, {"answer": "evaluate", "hint": "synonyms for evaluate", "clues": ["value", "assess", "judge", "appraise", "valuate", "pass judgment", "measure"]}, {"answer": "evanesce", "hint": "synonyms for evanesce", "clues": ["blow over", "pass off", "fade", "pass", "fleet", "evanesce"]}, {"answer": "evaporate", "hint": "synonyms for evaporate", "clues": ["vaporise", "disappear", "melt", "evaporate"]}, {"answer": "even_off", "hint": "synonyms for even off", "clues": ["make up", "compensate", "counterbalance", "even up", "even out", "correct", "even off"]}, {"answer": "even_out", "hint": "synonyms for even out", "clues": ["make up", "compensate", "even up", "correct", "level", "flush", "even off", "counterbalance", "even", "even out"]}, {"answer": "even_up", "hint": "synonyms for even up", "clues": ["make up", "even off", "square up", "compensate", "counterbalance", "even out", "correct", "jog", "even up"]}, {"answer": "evoke", "hint": "synonyms for evoke", "clues": ["call down", "call forth", "suggest", "arouse", "enkindle", "conjure", "extract", "invoke", "fire", "paint a picture", "draw out", "kick up", "stir", "educe", "put forward", "elicit", "raise", "bring up", "provoke", "conjure up", "evoke"]}, {"answer": "exaggerate", "hint": "synonyms for exaggerate", "clues": ["overdo", "amplify", "hyperbolize", "magnify", "overdraw", "overstate", "exaggerate"]}, {"answer": "exalt", "hint": "synonyms for exalt", "clues": ["inspire", "proclaim", "tickle pink", "extol", "thrill", "invigorate", "inebriate", "beatify", "animate", "glorify", "enliven", "laud", "exhilarate", "exalt"]}, {"answer": "examine", "hint": "synonyms for examine", "clues": ["prove", "try out", "canvass", "analyse", "try", "test", "study", "probe", "see", "essay", "examine"]}, {"answer": "exasperate", "hint": "synonyms for exasperate", "clues": ["aggravate", "exacerbate", "infuriate", "incense", "worsen", "exasperate"]}, {"answer": "excavate", "hint": "synonyms for excavate", "clues": ["dig up", "hollow", "dig", "unearth", "turn up", "excavate"]}, {"answer": "exceed", "hint": "synonyms for exceed", "clues": ["surpass", "overstep", "transcend", "outdo", "outstrip", "top", "surmount", "outmatch", "go past", "outperform", "pass", "outgo", "exceed"]}, {"answer": "except", "hint": "synonyms for except", "clues": ["demur", "exclude", "omit", "leave out", "take out", "leave off", "except"]}, {"answer": "excite", "hint": "synonyms for excite", "clues": ["wind up", "stir", "energise", "charge up", "sex", "shake up", "arouse", "stimulate", "agitate", "shake", "charge", "turn on", "commove", "excite"]}, {"answer": "exclaim", "hint": "synonyms for exclaim", "clues": ["cry out", "call out", "proclaim", "promulgate", "cry", "shout", "outcry", "exclaim"]}, {"answer": "exclude", "hint": "synonyms for exclude", "clues": ["except", "shut", "turf out", "boot out", "shut out", "bar", "keep out", "leave out", "debar", "leave off", "chuck out", "eject", "omit", "take out", "exclude"]}, {"answer": "excogitate", "hint": "synonyms for excogitate", "clues": ["muse", "reflect", "meditate", "devise", "formulate", "forge", "mull over", "think over", "chew over", "invent", "ponder", "contemplate", "mull", "speculate", "contrive", "ruminate", "excogitate"]}, {"answer": "excoriate", "hint": "synonyms for excoriate", "clues": ["decry", "objurgate", "condemn", "chafe", "reprobate", "excoriate"]}, {"answer": "exculpate", "hint": "synonyms for exculpate", "clues": ["exonerate", "acquit", "discharge", "assoil", "clear", "exculpate"]}, {"answer": "execrate", "hint": "synonyms for execrate", "clues": ["anathematize", "accurse", "loathe", "abhor", "comminate", "anathemise", "abominate", "execrate"]}, {"answer": "execute", "hint": "synonyms for execute", "clues": ["perform", "run", "fulfill", "carry through", "put to death", "carry out", "do", "action", "accomplish", "execute"]}, {"answer": "exhale", "hint": "synonyms for exhale", "clues": ["emanate", "breathe out", "expire", "give forth", "exhale"]}, {"answer": "exhilarate", "hint": "synonyms for exhilarate", "clues": ["beatify", "tickle pink", "thrill", "exalt", "inebriate", "exhilarate"]}, {"answer": "exhort", "hint": "synonyms for exhort", "clues": ["inspire", "press", "urge on", "pep up", "barrack", "urge", "cheer", "root on", "exhort"]}, {"answer": "exist", "hint": "synonyms for exist", "clues": ["survive", "subsist", "live", "be", "exist"]}, {"answer": "exonerate", "hint": "synonyms for exonerate", "clues": ["acquit", "discharge", "exculpate", "assoil", "clear", "exonerate"]}, {"answer": "expand", "hint": "synonyms for expand", "clues": ["expatiate", "lucubrate", "inflate", "elaborate", "thrive", "exposit", "blow up", "dilate", "flourish", "expound", "extend", "boom", "flesh out", "spread out", "amplify", "enlarge", "expand"]}, {"answer": "expatiate", "hint": "synonyms for expatiate", "clues": ["lucubrate", "elaborate", "exposit", "dilate", "expound", "expand", "flesh out", "enlarge", "expatiate"]}, {"answer": "expect", "hint": "synonyms for expect", "clues": ["carry", "bear", "ask", "anticipate", "have a bun in the oven", "look", "require", "gestate", "await", "expect"]}, {"answer": "expectorate", "hint": "synonyms for expectorate", "clues": ["spit up", "cough out", "drive out", "cough up", "clear out", "spit out", "expectorate"]}, {"answer": "expel", "hint": "synonyms for expel", "clues": ["rout", "drum out", "rout out", "boot out", "exhaust", "kick out", "discharge", "release", "eject", "throw out", "oust", "expel"]}, {"answer": "expire", "hint": "synonyms for expire", "clues": ["decease", "run out", "go", "buy the farm", "choke", "snuff it", "perish", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "exhale", "pass away", "die", "pass", "breathe out", "cash in one's chips", "expire"]}, {"answer": "explode", "hint": "synonyms for explode", "clues": ["set off", "break loose", "burst", "burst forth", "irrupt", "detonate", "blow up", "explode"]}, {"answer": "exposit", "hint": "synonyms for exposit", "clues": ["expatiate", "lucubrate", "elaborate", "dilate", "expound", "set forth", "expand", "flesh out", "enlarge", "exposit"]}, {"answer": "expound", "hint": "synonyms for expound", "clues": ["expatiate", "lucubrate", "elaborate", "dilate", "exposit", "set forth", "expand", "flesh out", "enlarge", "expound"]}, {"answer": "expurgate", "hint": "synonyms for expurgate", "clues": ["shorten", "castrate", "bowdlerise", "expurgate"]}, {"answer": "exsert", "hint": "synonyms for exsert", "clues": ["extend", "hold out", "stretch forth", "stretch out", "put out", "exsert"]}, {"answer": "extend", "hint": "synonyms for extend", "clues": ["poke out", "broaden", "go", "widen", "prolong", "protract", "unfold", "strain", "put out", "expand", "cover", "gallop", "carry", "draw out", "reach out", "stretch out", "stretch", "continue", "hold out", "offer", "stretch forth", "run", "lead", "pass", "exsert", "extend"]}, {"answer": "exteriorize", "hint": "synonyms for exteriorize", "clues": ["exteriorise", "externalize", "objectify", "bring outside"]}, {"answer": "exterminate", "hint": "synonyms for exterminate", "clues": ["eradicate", "kill off", "uproot", "extirpate", "root out", "exterminate"]}, {"answer": "externalise", "hint": "synonyms for externalise", "clues": ["exteriorize", "objectify", "project", "externalize"]}, {"answer": "externalize", "hint": "synonyms for externalize", "clues": ["exteriorize", "objectify", "externalise", "project"]}, {"answer": "extinguish", "hint": "synonyms for extinguish", "clues": ["stub out", "press out", "get rid of", "crush out", "quench", "annihilate", "eradicate", "decimate", "do away with", "eliminate", "wipe out", "carry off", "snuff out", "blow out", "extinguish"]}, {"answer": "extirpate", "hint": "synonyms for extirpate", "clues": ["eradicate", "deracinate", "uproot", "exterminate", "root out", "extirpate"]}, {"answer": "extol", "hint": "synonyms for extol", "clues": ["glorify", "exalt", "proclaim", "laud", "extol"]}, {"answer": "extort", "hint": "synonyms for extort", "clues": ["gouge", "wring from", "squeeze", "rack", "wring", "extort"]}, {"answer": "extrapolate", "hint": "synonyms for extrapolate", "clues": ["generalize", "interpolate", "infer", "extrapolate"]}, {"answer": "exuberate", "hint": "synonyms for exuberate", "clues": ["exult", "jubilate", "rejoice", "triumph", "exuberate"]}, {"answer": "exude", "hint": "synonyms for exude", "clues": ["ooze", "exudate", "transude", "ooze out", "exude"]}, {"answer": "exult", "hint": "synonyms for exult", "clues": ["walk on air", "jubilate", "be on cloud nine", "rejoice", "jump for joy", "exuberate", "triumph", "exult"]}, {"answer": "exuviate", "hint": "synonyms for exuviate", "clues": ["molt", "shed", "slough", "exuviate"]}, {"answer": "fabricate", "hint": "synonyms for fabricate", "clues": ["construct", "invent", "make up", "cook up", "manufacture", "fabricate"]}, {"answer": "fag_out", "hint": "synonyms for fag out", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "wear upon", "fag out"]}, {"answer": "fail", "hint": "synonyms for fail", "clues": ["betray", "break", "conk out", "run out", "go wrong", "bomb", "go", "give way", "flush it", "neglect", "miscarry", "go bad", "flunk", "break down", "give out", "die", "fail"]}, {"answer": "fall_apart", "hint": "synonyms for fall apart", "clues": ["break", "wear out", "wear", "crumble", "go to pieces", "come apart", "split up", "separate", "bust", "fall apart"]}, {"answer": "fall_asleep", "hint": "synonyms for fall asleep", "clues": ["dope off", "nod off", "drift off", "drowse off", "flake out", "fall asleep"]}, {"answer": "fall_away", "hint": "synonyms for fall away", "clues": ["slip", "drop off", "drop away", "fall off", "fall away"]}, {"answer": "fall_back", "hint": "synonyms for fall back", "clues": ["lapse", "lose", "drop off", "resort", "regress", "recidivate", "lag", "dawdle", "retrogress", "recede", "relapse", "fall behind", "recur", "fall back"]}, {"answer": "fall_behind", "hint": "synonyms for fall behind", "clues": ["lose", "fall back", "drop off", "lag", "recede", "dawdle", "fall behind"]}, {"answer": "fall_by_the_wayside", "hint": "synonyms for fall by the wayside", "clues": ["throw in the towel", "give up", "quit", "drop by the wayside", "drop out", "throw in", "chuck up the sponge", "fall by the wayside"]}, {"answer": "fall_in", "hint": "synonyms for fall in", "clues": ["break", "join", "cave in", "collapse", "get together", "give way", "founder", "give", "fall in"]}, {"answer": "fall_into_place", "hint": "synonyms for fall into place", "clues": ["dawn", "get across", "get through", "come home", "penetrate", "sink in", "click", "fall into place"]}, {"answer": "fall_out", "hint": "synonyms for fall out", "clues": ["follow", "hap", "occur", "take place", "happen", "come about", "pass off", "go on", "pass", "fall out"]}, {"answer": "fall_upon", "hint": "synonyms for fall upon", "clues": ["chance on", "attain", "happen upon", "light upon", "discover", "come across", "come upon", "strike", "fall upon"]}, {"answer": "falsify", "hint": "synonyms for falsify", "clues": ["fake", "warp", "garble", "interpolate", "manipulate", "fudge", "cook", "misrepresent", "wangle", "distort", "alter", "falsify"]}, {"answer": "fancy_up", "hint": "synonyms for fancy up", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "fancy up"]}, {"answer": "farm_out", "hint": "synonyms for farm out", "clues": ["subcontract", "hire out", "job", "rent out", "farm out"]}, {"answer": "fascinate", "hint": "synonyms for fascinate", "clues": ["captivate", "spellbind", "capture", "becharm", "trance", "enchant", "transfix", "charm", "intrigue", "grip", "beguile", "bewitch", "catch", "enamor", "fascinate"]}, {"answer": "fasten_on", "hint": "synonyms for fasten on", "clues": ["hook on", "latch on", "take up", "seize on", "fasten on"]}, {"answer": "fatten", "hint": "synonyms for fatten", "clues": ["fatten out", "plump", "fat", "fatten up", "fill out", "flesh out", "plump out", "fatten"]}, {"answer": "fatten_out", "hint": "synonyms for fatten out", "clues": ["plump", "fat", "fatten up", "fill out", "flesh out", "plump out", "fatten", "fatten out"]}, {"answer": "fatten_up", "hint": "synonyms for fatten up", "clues": ["fatten out", "plump", "fat", "fill out", "flesh out", "plump out", "fatten", "fatten up"]}, {"answer": "feel_for", "hint": "synonyms for feel for", "clues": ["condole with", "pity", "compassionate", "sympathize with", "feel for"]}, {"answer": "feign", "hint": "synonyms for feign", "clues": ["dissemble", "simulate", "affect", "sham", "assume", "pretend", "feign"]}, {"answer": "felt_up", "hint": "synonyms for felt up", "clues": ["mat up", "matte", "felt", "mat", "matt-up", "felt up"]}, {"answer": "fence_in", "hint": "synonyms for fence in", "clues": ["palisade", "wall", "surround", "fence", "fence in"]}, {"answer": "fend_off", "hint": "synonyms for fend off", "clues": ["avoid", "stave off", "forfend", "avert", "ward off", "head off", "deflect", "obviate", "debar", "fend off"]}, {"answer": "fertilise", "hint": "synonyms for fertilise", "clues": ["fecundate", "feed", "fertilize", "inseminate"]}, {"answer": "fertilize", "hint": "synonyms for fertilize", "clues": ["fecundate", "feed", "inseminate", "fertilise"]}, {"answer": "festinate", "hint": "synonyms for festinate", "clues": ["hasten", "rush", "look sharp", "hurry", "festinate"]}, {"answer": "fetch_up", "hint": "synonyms for fetch up", "clues": ["finish", "finish up", "end up", "land up", "wind up", "fetch up"]}, {"answer": "fig_out", "hint": "synonyms for fig out", "clues": ["fig up", "deck up", "tog up", "trick out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "rig out"]}, {"answer": "fig_up", "hint": "synonyms for fig up", "clues": ["deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "fig up"]}, {"answer": "fight_back", "hint": "synonyms for fight back", "clues": ["defend", "fight down", "oppose", "fight", "fight back"]}, {"answer": "fight_down", "hint": "synonyms for fight down", "clues": ["defend", "oppose", "fight back", "fight", "fight down"]}, {"answer": "fight_off", "hint": "synonyms for fight off", "clues": ["repel", "rebuff", "repulse", "drive back", "fight off"]}, {"answer": "figure_out", "hint": "synonyms for figure out", "clues": ["work out", "lick", "work", "solve", "puzzle out", "figure out"]}, {"answer": "filch", "hint": "synonyms for filch", "clues": ["swipe", "abstract", "nobble", "sneak", "pilfer", "purloin", "cabbage", "hook", "snarf", "pinch", "lift", "filch"]}, {"answer": "fill_in", "hint": "synonyms for fill in", "clues": ["shade", "stand in", "make out", "fill out", "substitute", "sub", "complete", "fill in"]}, {"answer": "fill_out", "hint": "synonyms for fill out", "clues": ["fatten out", "plump", "flesh out", "round", "complete", "fill in", "round out", "make out", "fat", "fatten up", "pad", "plump out", "fatten", "eke out", "fill out"]}, {"answer": "filter_out", "hint": "synonyms for filter out", "clues": ["filtrate", "separate out", "strain", "filter", "filter out"]}, {"answer": "find_out", "hint": "synonyms for find out", "clues": ["get wind", "get a line", "determine", "hear", "learn", "watch", "catch out", "get word", "check", "pick up", "discover", "see", "ascertain", "find", "find out"]}, {"answer": "fine-tune", "hint": "synonyms for fine-tune", "clues": ["polish", "refine", "calibrate", "graduate", "tweak", "down", "fine-tune"]}, {"answer": "finish_off", "hint": "synonyms for finish off", "clues": ["get through", "wrap up", "finish up", "polish off", "mop up", "clear up", "finish off"]}, {"answer": "finish_up", "hint": "synonyms for finish up", "clues": ["wrap up", "polish off", "fetch up", "mop up", "land up", "end up", "clear up", "finish off", "get through", "finish", "wind up", "finish up"]}, {"answer": "fire_up", "hint": "synonyms for fire up", "clues": ["light up", "wake", "stir up", "light", "heat", "inflame", "ignite", "fire up"]}, {"answer": "fit_in", "hint": "synonyms for fit in", "clues": ["concord", "harmonize", "accord", "consort", "agree", "fit in"]}, {"answer": "fit_out", "hint": "synonyms for fit out", "clues": ["tog", "raiment", "fit", "apparel", "enclothe", "outfit", "garment", "equip", "habilitate", "dress", "garb", "fit out"]}, {"answer": "flake_out", "hint": "synonyms for flake out", "clues": ["dope off", "fall asleep", "drift off", "nod off", "drowse off", "flake out"]}, {"answer": "flare_up", "hint": "synonyms for flare up", "clues": ["erupt", "burst out", "irrupt", "break open", "flare", "flare up"]}, {"answer": "flesh_out", "hint": "synonyms for flesh out", "clues": ["fatten out", "plump", "expatiate", "lucubrate", "round", "fill out", "elaborate", "dilate", "exposit", "expound", "fat", "fatten up", "expand", "plump out", "fatten", "enlarge", "flesh out"]}, {"answer": "flim-flam", "hint": "synonyms for flim-flam", "clues": ["play a joke on", "pull a fast one on", "play a trick on", "trick", "fox", "fob", "play tricks", "flim-flam"]}, {"answer": "fling_off", "hint": "synonyms for fling off", "clues": ["dash off", "knock off", "toss off", "scratch off", "fling off"]}, {"answer": "flip_one's_lid", "hint": "synonyms for flip one's lid", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit"]}, {"answer": "flip_one's_wig", "hint": "synonyms for flip one's wig", "clues": ["blow one's stack", "throw a fit", "combust", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "flip one's lid", "hit the ceiling", "hit the roof", "go ballistic", "have a fit"]}, {"answer": "flirt_with", "hint": "synonyms for flirt with", "clues": ["think of", "entertain", "toy with", "think about", "flirt with"]}, {"answer": "flitter", "hint": "synonyms for flitter", "clues": ["flutter", "waver", "flicker", "quiver"]}, {"answer": "flog", "hint": "synonyms for flog", "clues": ["lambaste", "slash", "lather", "whip", "cane", "trounce", "strap", "welt", "flog"]}, {"answer": "flout", "hint": "synonyms for flout", "clues": ["jeer", "scoff", "barrack", "gibe", "flout"]}, {"answer": "flummox", "hint": "synonyms for flummox", "clues": ["get", "stupefy", "gravel", "vex", "amaze", "bewilder", "nonplus", "puzzle", "perplex", "baffle", "dumbfound", "pose", "beat", "stick", "mystify", "flummox"]}, {"answer": "flump", "hint": "synonyms for flump", "clues": ["plump", "plunk down", "plonk", "plop", "plunk", "flump down", "plank", "flump"]}, {"answer": "fly_off_the_handle", "hint": "synonyms for fly off the handle", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "fly off the handle"]}, {"answer": "fly_the_coop", "hint": "synonyms for fly the coop", "clues": ["escape", "hightail it", "turn tail", "run", "lam", "run away", "scat", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "fly the coop"]}, {"answer": "focalise", "hint": "synonyms for focalise", "clues": ["focus", "focalize", "concenter", "sharpen", "localise"]}, {"answer": "focalize", "hint": "synonyms for focalize", "clues": ["focus", "concenter", "sharpen", "localize", "focalise"]}, {"answer": "focus_on", "hint": "synonyms for focus on", "clues": ["revolve about", "center on", "revolve around", "concentrate on", "center", "focus on"]}, {"answer": "follow", "hint": "synonyms for follow", "clues": ["abide by", "come after", "watch", "keep up", "stick to", "comply", "espouse", "succeed", "postdate", "observe", "travel along", "be", "pursue", "adopt", "keep an eye on", "fall out", "take after", "play along", "survey", "trace", "come", "watch over", "accompany", "stick with", "surveil", "keep abreast", "conform to", "follow"]}, {"answer": "follow_out", "hint": "synonyms for follow out", "clues": ["go through", "carry out", "follow up", "follow through", "put through", "implement", "follow out"]}, {"answer": "follow_through", "hint": "synonyms for follow through", "clues": ["go through", "carry out", "follow up", "follow out", "put through", "implement", "follow through"]}, {"answer": "follow_up", "hint": "synonyms for follow up", "clues": ["go through", "carry out", "follow through", "follow out", "put through", "implement", "follow up"]}, {"answer": "fool_around", "hint": "synonyms for fool around", "clues": ["arse around", "play around", "fool", "fool around"]}, {"answer": "fool_away", "hint": "synonyms for fool away", "clues": ["shoot", "fool", "fritter", "dissipate", "frivol away", "fritter away", "fool away"]}, {"answer": "footle", "hint": "synonyms for footle", "clues": ["mess about", "loiter", "loaf", "lallygag", "lurk", "linger", "tarry", "mill around", "mill about", "hang around", "lounge", "footle"]}, {"answer": "footslog", "hint": "synonyms for footslog", "clues": ["plod", "tramp", "trudge", "pad", "slog", "footslog"]}, {"answer": "forbid", "hint": "synonyms for forbid", "clues": ["prevent", "proscribe", "interdict", "veto", "prohibit", "foreclose", "nix", "disallow", "forestall", "preclude", "forbid"]}, {"answer": "force_back", "hint": "synonyms for force back", "clues": ["beat back", "drive", "repel", "repulse", "push back", "force back"]}, {"answer": "forebode", "hint": "synonyms for forebode", "clues": ["predict", "call", "anticipate", "prognosticate", "foretell", "promise", "forebode"]}, {"answer": "foreclose", "hint": "synonyms for foreclose", "clues": ["forbid", "forestall", "prevent", "preclude", "foreclose"]}, {"answer": "forefend", "hint": "synonyms for forefend", "clues": ["avoid", "stave off", "forfend", "avert", "ward off", "head off", "deflect", "fend off", "obviate", "debar"]}, {"answer": "foregather", "hint": "synonyms for foregather", "clues": ["gather", "meet", "forgather", "assemble"]}, {"answer": "forego", "hint": "synonyms for forego", "clues": ["predate", "foreswear", "waive", "antecede", "dispense with", "throw overboard", "antedate", "give up", "forfeit", "relinquish", "forgo", "precede"]}, {"answer": "foresee", "hint": "synonyms for foresee", "clues": ["counter", "previse", "envision", "foreknow", "anticipate", "forestall", "foresee"]}, {"answer": "foreshadow", "hint": "synonyms for foreshadow", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "predict", "portend", "prognosticate", "bode", "prefigure", "foreshadow"]}, {"answer": "foreshorten", "hint": "synonyms for foreshorten", "clues": ["cut", "abbreviate", "abridge", "contract", "shorten", "reduce", "foreshorten"]}, {"answer": "forestall", "hint": "synonyms for forestall", "clues": ["counter", "foresee", "prevent", "foreclose", "forbid", "anticipate", "preclude", "forestall"]}, {"answer": "foreswear", "hint": "synonyms for foreswear", "clues": ["renounce", "waive", "dispense with", "quit", "relinquish", "forego", "foreswear"]}, {"answer": "foretell", "hint": "synonyms for foretell", "clues": ["harbinger", "forecast", "betoken", "auspicate", "presage", "anticipate", "omen", "predict", "announce", "prognosticate", "bode", "herald", "call", "augur", "prefigure", "annunciate", "foreshadow", "forebode", "portend", "promise", "foretell"]}, {"answer": "forfend", "hint": "synonyms for forfend", "clues": ["avoid", "stave off", "avert", "forefend", "ward off", "head off", "deflect", "fend off", "obviate", "debar"]}, {"answer": "forgather", "hint": "synonyms for forgather", "clues": ["foregather", "gather", "meet", "assemble"]}, {"answer": "forget", "hint": "synonyms for forget", "clues": ["blank out", "draw a blank", "bury", "leave", "block", "forget"]}, {"answer": "forgo", "hint": "synonyms for forgo", "clues": ["predate", "foreswear", "waive", "dispense with", "antecede", "throw overboard", "antedate", "give up", "forfeit", "relinquish", "forego", "precede"]}, {"answer": "fork_out", "hint": "synonyms for fork out", "clues": ["turn in", "fork up", "hand over", "deliver", "fork over", "render", "fork out"]}, {"answer": "fork_over", "hint": "synonyms for fork over", "clues": ["fork out", "turn in", "fork up", "hand over", "deliver", "render", "fork over"]}, {"answer": "fork_up", "hint": "synonyms for fork up", "clues": ["fork out", "turn in", "hand over", "deliver", "fork over", "render", "fork up"]}, {"answer": "form_bubbles", "hint": "synonyms for form bubbles", "clues": ["effervesce", "froth", "foam", "sparkle", "fizz", "form bubbles"]}, {"answer": "formulate", "hint": "synonyms for formulate", "clues": ["invent", "explicate", "devise", "forge", "articulate", "phrase", "develop", "contrive", "give voice", "excogitate", "word", "formulate"]}, {"answer": "forswear", "hint": "synonyms for forswear", "clues": ["abjure", "recant", "resile", "retract", "forswear"]}, {"answer": "fortify", "hint": "synonyms for fortify", "clues": ["gird", "fort", "spike", "lace", "arm", "build up", "beef up", "strengthen", "fortify"]}, {"answer": "foul_up", "hint": "synonyms for foul up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "ball up", "blow", "botch", "foul up"]}, {"answer": "freeze_off", "hint": "synonyms for freeze off", "clues": ["turn down", "pooh-pooh", "disdain", "reject", "spurn", "scorn", "freeze off"]}, {"answer": "freshen_up", "hint": "synonyms for freshen up", "clues": ["refreshen", "renovate", "refurbish", "freshen up"]}, {"answer": "frig_around", "hint": "synonyms for frig around", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "bum about", "loll", "lounge about", "bum around", "waste one's time", "frig around"]}, {"answer": "frighten_away", "hint": "synonyms for frighten away", "clues": ["frighten off", "dash", "scare", "scare away", "pall", "scare off", "daunt", "frighten away"]}, {"answer": "frighten_off", "hint": "synonyms for frighten off", "clues": ["frighten away", "dash", "scare", "scare away", "pall", "scare off", "daunt", "frighten off"]}, {"answer": "fritter_away", "hint": "synonyms for fritter away", "clues": ["shoot", "fool away", "fool", "fritter", "dissipate", "frivol away", "fritter away"]}, {"answer": "frivol_away", "hint": "synonyms for frivol away", "clues": ["shoot", "fool away", "fool", "fritter", "dissipate", "fritter away", "frivol away"]}, {"answer": "frizzle", "hint": "synonyms for frizzle", "clues": ["frizz", "kink up", "crape", "kink", "crimp", "frizzle"]}, {"answer": "frustrate", "hint": "synonyms for frustrate", "clues": ["cross", "scotch", "spoil", "dun", "queer", "crucify", "bilk", "foil", "bedevil", "baffle", "thwart", "torment", "rag", "frustrate"]}, {"answer": "fuck_off", "hint": "synonyms for fuck off", "clues": ["loll around", "arse about", "lounge around", "masturbate", "frig around", "jerk off", "scram", "get", "wank", "jack off", "arse around", "bum", "bugger off", "loaf", "bum about", "loll", "lounge about", "bum around", "waste one's time", "buzz off", "she-bop", "fuck off"]}, {"answer": "fuck_up", "hint": "synonyms for fuck up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch"]}, {"answer": "fulfil", "hint": "synonyms for fulfil", "clues": ["meet", "satisfy", "live up to", "fulfill", "carry through", "carry out", "fill", "action", "execute", "accomplish"]}, {"answer": "fulfill", "hint": "synonyms for fulfill", "clues": ["meet", "satisfy", "live up to", "carry through", "carry out", "fill", "fulfil", "action", "execute", "accomplish"]}, {"answer": "furbish_up", "hint": "synonyms for furbish up", "clues": ["doctor", "fix", "restore", "mend", "touch on", "bushel", "repair", "furbish up"]}, {"answer": "furcate", "hint": "synonyms for furcate", "clues": ["branch", "fork", "separate", "ramify", "furcate"]}, {"answer": "gain_ground", "hint": "synonyms for gain ground", "clues": ["get ahead", "win", "gain", "advance", "pull ahead", "make headway", "gain ground"]}, {"answer": "gain_vigor", "hint": "synonyms for gain vigor", "clues": ["perk", "perk up", "percolate", "pick up", "gain vigor"]}, {"answer": "gather_up", "hint": "synonyms for gather up", "clues": ["pick up", "collect", "call for", "lift up", "gather up"]}, {"answer": "gazump", "hint": "synonyms for gazump", "clues": ["soak", "plume", "fleece", "pluck", "rob", "overcharge", "surcharge", "hook", "gazump"]}, {"answer": "gear_up", "hint": "synonyms for gear up", "clues": ["set up", "fix", "ready", "prepare", "set", "gear up"]}, {"answer": "generalise", "hint": "synonyms for generalise", "clues": ["popularize", "generalize", "vulgarise", "infer", "extrapolate"]}, {"answer": "generalize", "hint": "synonyms for generalize", "clues": ["popularize", "vulgarise", "infer", "extrapolate", "generalise"]}, {"answer": "generate", "hint": "synonyms for generate", "clues": ["mother", "sire", "give", "engender", "father", "return", "bring forth", "get", "beget", "yield", "render", "generate"]}, {"answer": "germinate", "hint": "synonyms for germinate", "clues": ["sprout", "develop", "spud", "bourgeon", "shoot", "burgeon forth", "pullulate", "evolve", "germinate"]}, {"answer": "gestate", "hint": "synonyms for gestate", "clues": ["expect", "have a bun in the oven", "conceive", "carry", "conceptualize", "bear", "gestate"]}, {"answer": "get_a_line", "hint": "synonyms for get a line", "clues": ["get wind", "hear", "learn", "get word", "pick up", "discover", "find out", "see", "get a line"]}, {"answer": "get_across", "hint": "synonyms for get across", "clues": ["dawn", "get over", "cross", "fall into place", "sink in", "click", "track", "cut through", "cut across", "get through", "come home", "penetrate", "put over", "traverse", "cover", "pass over", "get across"]}, {"answer": "get_ahead", "hint": "synonyms for get ahead", "clues": ["win", "gain", "advance", "pull ahead", "gain ground", "make headway", "get ahead"]}, {"answer": "get_along", "hint": "synonyms for get along", "clues": ["come along", "progress", "come", "do", "make out", "fare", "advance", "get on", "get along with", "come on", "shape up", "get along"]}, {"answer": "get_around", "hint": "synonyms for get around", "clues": ["break", "get out", "bypass", "short-circuit", "swing", "go around", "get around"]}, {"answer": "get_at", "hint": "synonyms for get at", "clues": ["access", "annoy", "devil", "nark", "gravel", "chafe", "vex", "rile", "get to", "nettle", "irritate", "rag", "bother", "get at"]}, {"answer": "get_away", "hint": "synonyms for get away", "clues": ["get out", "escape", "get off", "break loose", "get by", "get away"]}, {"answer": "get_behind", "hint": "synonyms for get behind", "clues": ["drop behind", "hang back", "drag", "trail", "drop back", "get behind"]}, {"answer": "get_by", "hint": "synonyms for get by", "clues": ["escape", "make do", "get off", "manage", "deal", "get away", "get out", "cope", "make out", "grapple", "contend", "get by"]}, {"answer": "get_cracking", "hint": "synonyms for get cracking", "clues": ["get moving", "bestir oneself", "get weaving", "get rolling", "get going", "get started", "get cracking"]}, {"answer": "get_down", "hint": "synonyms for get down", "clues": ["light", "get off", "start", "start out", "unhorse", "cast down", "demoralise", "deject", "dismay", "get", "lower", "depress", "swallow", "put down", "begin", "take down", "bring down", "commence", "set about", "set down", "write down", "dispirit", "dismount"]}, {"answer": "get_going", "hint": "synonyms for get going", "clues": ["get cracking", "start", "go", "get started", "get moving", "bestir oneself", "get weaving", "get rolling", "get going"]}, {"answer": "get_hitched_with", "hint": "synonyms for get hitched with", "clues": ["marry", "wed", "hook up with", "get married", "espouse", "conjoin", "get hitched with"]}, {"answer": "get_hold_of", "hint": "synonyms for get hold of", "clues": ["reach", "seize", "get through", "contact", "take", "clutch", "get hold of"]}, {"answer": "get_in", "hint": "synonyms for get in", "clues": ["arrive", "pull in", "draw in", "get into", "go into", "come in", "enter", "move into", "make it", "go in", "go far"]}, {"answer": "get_into", "hint": "synonyms for get into", "clues": ["wear", "go into", "come in", "enter", "tangle with", "move into", "don", "go in", "put on", "get in", "assume"]}, {"answer": "get_it", "hint": "synonyms for get it", "clues": ["cotton on", "get wise", "catch on", "get onto", "twig", "tumble", "get it"]}, {"answer": "get_it_on", "hint": "synonyms for get it on", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "screw", "eff", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "get it on"]}, {"answer": "get_laid", "hint": "synonyms for get laid", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "have it away", "do it", "fuck", "lie with", "make love", "get laid"]}, {"answer": "get_married", "hint": "synonyms for get married", "clues": ["marry", "hook up with", "wed", "get hitched with", "espouse", "conjoin", "get married"]}, {"answer": "get_moving", "hint": "synonyms for get moving", "clues": ["get cracking", "bestir oneself", "get weaving", "get rolling", "get going", "get started", "get moving"]}, {"answer": "get_off", "hint": "synonyms for get off", "clues": ["send", "escape", "light", "get by", "send off", "unhorse", "get away", "get down", "get out", "hop out", "trip", "trip out", "mail", "turn on", "dismount", "get off"]}, {"answer": "get_on", "hint": "synonyms for get on", "clues": ["jump on", "mount up", "progress", "hop on", "advance", "come on", "shape up", "board", "age", "get along", "mount", "senesce", "maturate", "be on", "bestride", "get along with", "come along", "climb on", "get on"]}, {"answer": "get_onto", "hint": "synonyms for get onto", "clues": ["cotton on", "get wise", "catch on", "get it", "tumble", "twig", "get onto"]}, {"answer": "get_out", "hint": "synonyms for get out", "clues": ["break", "escape", "get off", "draw", "get by", "leave", "get away", "pull out", "go out", "exit", "pull", "bring out", "get around", "take out", "get out"]}, {"answer": "get_over", "hint": "synonyms for get over", "clues": ["get across", "cross", "get well", "master", "surmount", "track", "cut through", "overcome", "cut across", "bounce back", "subdue", "cover", "traverse", "pass over", "get over"]}, {"answer": "get_rid_of", "hint": "synonyms for get rid of", "clues": ["do away with", "remove", "extinguish", "abolish", "eliminate", "get rid of"]}, {"answer": "get_rolling", "hint": "synonyms for get rolling", "clues": ["get moving", "get cracking", "bestir oneself", "get weaving", "get going", "get started", "get rolling"]}, {"answer": "get_started", "hint": "synonyms for get started", "clues": ["get moving", "get cracking", "bestir oneself", "get weaving", "get rolling", "get going", "get started"]}, {"answer": "get_the_picture", "hint": "synonyms for get the picture", "clues": ["apprehend", "grasp", "dig", "grok", "comprehend", "savvy", "compass", "get the picture"]}, {"answer": "get_through", "hint": "synonyms for get through", "clues": ["while away", "dawn", "get across", "wrap up", "finish up", "polish off", "come through", "fall into place", "contact", "mop up", "sink in", "click", "clear up", "get hold of", "finish off", "reach", "come home", "penetrate", "get through"]}, {"answer": "get_to", "hint": "synonyms for get to", "clues": ["progress to", "make", "annoy", "devil", "nark", "gravel", "chafe", "reach", "vex", "rile", "get at", "nettle", "irritate", "rag", "bother", "get to"]}, {"answer": "get_up", "hint": "synonyms for get up", "clues": ["swot up", "fig up", "deck up", "organise", "tog up", "mug up", "work up", "attire", "overdress", "swot", "deck out", "dress up", "lift", "uprise", "trick out", "elevate", "raise", "fig out", "machinate", "fancy up", "tog out", "cram", "prepare", "devise", "arise", "bone", "grind away", "bone up", "stand up", "turn out", "drum", "bring up", "gussy up", "prink", "trick up", "get up"]}, {"answer": "get_weaving", "hint": "synonyms for get weaving", "clues": ["get moving", "get cracking", "bestir oneself", "get rolling", "get going", "get started", "get weaving"]}, {"answer": "get_wind", "hint": "synonyms for get wind", "clues": ["get a line", "hear", "learn", "get word", "pick up", "discover", "find out", "see", "get wind"]}, {"answer": "get_wise", "hint": "synonyms for get wise", "clues": ["cotton on", "catch on", "get it", "get onto", "twig", "tumble", "get wise"]}, {"answer": "get_word", "hint": "synonyms for get word", "clues": ["get wind", "get a line", "hear", "learn", "pick up", "discover", "find out", "see", "get word"]}, {"answer": "gip", "hint": "synonyms for gip", "clues": ["bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "swindle", "short-change", "rook", "scam", "con", "goldbrick", "gip"]}, {"answer": "gird", "hint": "synonyms for gird", "clues": ["girdle", "encircle", "arm", "build up", "fortify", "gird"]}, {"answer": "give-up_the_ghost", "hint": "synonyms for give-up the ghost", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "give-up the ghost"]}, {"answer": "give_away", "hint": "synonyms for give away", "clues": ["tell on", "reveal", "stag", "expose", "rat", "divulge", "break", "betray", "shit", "denounce", "snitch", "let on", "let out", "discover", "disclose", "unwrap", "bring out", "grass", "shop", "give away"]}, {"answer": "give_birth", "hint": "synonyms for give birth", "clues": ["have", "bear", "deliver", "birth", "give birth"]}, {"answer": "give_chase", "hint": "synonyms for give chase", "clues": ["chase", "dog", "tail", "chase after", "track", "go after", "tag", "give chase"]}, {"answer": "give_ear", "hint": "synonyms for give ear", "clues": ["hang", "pay heed", "advert", "attend", "give ear"]}, {"answer": "give_in", "hint": "synonyms for give in", "clues": ["bow", "succumb", "knuckle under", "submit", "defer", "accede", "yield", "give in"]}, {"answer": "give_notice", "hint": "synonyms for give notice", "clues": ["sack", "apprise", "can", "give the sack", "advise", "force out", "send word", "dismiss", "give the axe", "send away", "displace", "fire", "terminate", "notify", "give notice"]}, {"answer": "give_out", "hint": "synonyms for give out", "clues": ["break", "conk out", "run out", "pass out", "go", "give way", "give off", "hand out", "fail", "go bad", "break down", "emit", "die", "distribute", "give out"]}, {"answer": "give_suck", "hint": "synonyms for give suck", "clues": ["nurse", "wet-nurse", "suckle", "breastfeed", "suck", "lactate", "give suck"]}, {"answer": "give_the_axe", "hint": "synonyms for give the axe", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "send away", "give the gate", "displace", "fire", "terminate", "give the bounce"]}, {"answer": "give_the_sack", "hint": "synonyms for give the sack", "clues": ["sack", "can", "force out", "dismiss", "give notice", "give the axe", "send away", "displace", "fire", "terminate", "give the sack"]}, {"answer": "give_tongue_to", "hint": "synonyms for give tongue to", "clues": ["verbalise", "express", "utter", "give tongue to"]}, {"answer": "give_up", "hint": "synonyms for give up", "clues": ["waive", "dispense with", "fall by the wayside", "drop by the wayside", "discontinue", "chuck up the sponge", "stop", "abandon", "throw in the towel", "quit", "resign", "cease", "forfeit", "forego", "surrender", "throw in", "part with", "allow", "renounce", "kick", "throw overboard", "free", "release", "drop out", "cede", "deliver", "vacate", "lay off", "relinquish", "spare", "give up"]}, {"answer": "give_voice", "hint": "synonyms for give voice", "clues": ["articulate", "formulate", "phrase", "word", "give voice"]}, {"answer": "give_way", "hint": "synonyms for give way", "clues": ["break", "conk out", "ease up", "fall in", "cave in", "go", "founder", "give", "move over", "fail", "go bad", "break down", "collapse", "die", "give out", "yield", "give way"]}, {"answer": "glance_over", "hint": "synonyms for glance over", "clues": ["run down", "rake", "skim", "scan", "glance over"]}, {"answer": "glaze_over", "hint": "synonyms for glaze over", "clues": ["glass over", "glass", "blur", "film over", "glaze", "glaze over"]}, {"answer": "glide_by", "hint": "synonyms for glide by", "clues": ["lapse", "slide by", "slip by", "go by", "go along", "slip away", "pass"]}, {"answer": "glom", "hint": "synonyms for glom", "clues": ["cop", "hook", "knock off", "snitch", "thieve", "glom"]}, {"answer": "glorify", "hint": "synonyms for glorify", "clues": ["extol", "transfigure", "proclaim", "exalt", "spiritualize", "laud", "glorify"]}, {"answer": "gloss_over", "hint": "synonyms for gloss over", "clues": ["skimp over", "slur over", "smooth over", "skate over", "whitewash", "hush up", "sleek over", "gloss over"]}, {"answer": "gnaw", "hint": "synonyms for gnaw", "clues": ["wear away", "gnaw at", "eat at", "erode", "gnaw"]}, {"answer": "gnaw_at", "hint": "synonyms for gnaw at", "clues": ["wear away", "gnaw", "eat at", "erode", "gnaw at"]}, {"answer": "go_after", "hint": "synonyms for go after", "clues": ["chase", "dog", "tail", "quest for", "quest after", "chase after", "track", "give chase", "tag", "pursue", "go after"]}, {"answer": "go_against", "hint": "synonyms for go against", "clues": ["break", "breach", "buck", "infract", "offend", "violate", "transgress", "go against"]}, {"answer": "go_along", "hint": "synonyms for go along", "clues": ["glide by", "lapse", "continue", "keep", "play along", "slip by", "go by", "go on", "slip away", "pass", "proceed", "go along"]}, {"answer": "go_around", "hint": "synonyms for go around", "clues": ["circulate", "bypass", "revolve", "short-circuit", "rotate", "get around", "outflank", "spread", "go around"]}, {"answer": "go_away", "hint": "synonyms for go away", "clues": ["go forth", "go", "vanish", "depart", "disappear", "leave", "go away"]}, {"answer": "go_back", "hint": "synonyms for go back", "clues": ["date back", "date from", "recover", "recuperate", "recur", "go back"]}, {"answer": "go_bad", "hint": "synonyms for go bad", "clues": ["break", "conk out", "spoil", "go", "give way", "fail", "break down", "give out", "die", "go bad"]}, {"answer": "go_ballistic", "hint": "synonyms for go ballistic", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "have a fit", "go ballistic"]}, {"answer": "go_by", "hint": "synonyms for go by", "clues": ["glide by", "lapse", "travel by", "surpass", "pass by", "slip by", "go under", "go along", "go past", "slip away", "pass", "go by"]}, {"answer": "go_down", "hint": "synonyms for go down", "clues": ["decline", "fall", "sink", "descend", "go under", "wane", "come down", "crash", "set", "settle", "go down"]}, {"answer": "go_far", "hint": "synonyms for go far", "clues": ["arrive", "make it", "go deep", "get in", "go far"]}, {"answer": "go_for", "hint": "synonyms for go for", "clues": ["consent", "try for", "take to", "hold", "apply", "hope", "fancy", "accept", "go for"]}, {"answer": "go_forth", "hint": "synonyms for go forth", "clues": ["come forth", "come out", "go away", "leave", "egress", "emerge", "issue", "go forth"]}, {"answer": "go_in", "hint": "synonyms for go in", "clues": ["come in", "enter", "move into", "get into", "go into", "go in"]}, {"answer": "go_into", "hint": "synonyms for go into", "clues": ["come in", "enter", "move into", "get into", "go in", "go into"]}, {"answer": "go_off", "hint": "synonyms for go off", "clues": ["abscond", "go over", "make off", "implode", "discharge", "bolt", "fire", "come off", "decamp", "run off", "absquatulate", "go off"]}, {"answer": "go_on", "hint": "synonyms for go on", "clues": ["keep", "occur", "progress", "come up", "take place", "happen", "pass off", "march on", "advance", "come on", "proceed", "pass on", "hap", "continue", "move on", "carry on", "fall out", "come about", "go along", "pass", "go on"]}, {"answer": "go_out", "hint": "synonyms for go out", "clues": ["get out", "date", "see", "leave", "go steady", "exit", "go out"]}, {"answer": "go_over", "hint": "synonyms for go over", "clues": ["check over", "suss out", "check out", "look into", "go off", "survey", "check", "check into", "come off", "check up on", "fall over", "review", "go over"]}, {"answer": "go_past", "hint": "synonyms for go past", "clues": ["travel by", "surpass", "overstep", "pass by", "transcend", "top", "go by", "exceed", "pass", "go past"]}, {"answer": "go_through", "hint": "synonyms for go through", "clues": ["devour", "follow out", "work through", "run through", "down", "experience", "carry out", "see", "consume", "follow up", "follow through", "pass", "put through", "implement", "go across", "go through"]}, {"answer": "go_to_bed", "hint": "synonyms for go to bed", "clues": ["hit the sack", "go to sleep", "crawl in", "sack out", "retire", "kip down", "bed", "turn in", "hit the hay", "go to bed"]}, {"answer": "go_to_sleep", "hint": "synonyms for go to sleep", "clues": ["go to bed", "hit the sack", "crawl in", "sack out", "retire", "kip down", "bed", "turn in", "hit the hay", "go to sleep"]}, {"answer": "go_under", "hint": "synonyms for go under", "clues": ["go by", "go down", "sink", "set", "settle", "go under"]}, {"answer": "go_up", "hint": "synonyms for go up", "clues": ["burn down", "climb up", "come up", "draw close", "uprise", "mount", "rise", "move up", "climb", "approach", "come near", "burn up", "ascend", "draw near", "come on", "near", "lift", "go up"]}, {"answer": "go_with", "hint": "synonyms for go with", "clues": ["accompany", "attach to", "cooccur with", "collocate with", "construe with", "come with", "go with"]}, {"answer": "gormandise", "hint": "synonyms for gormandise", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge"]}, {"answer": "gormandize", "hint": "synonyms for gormandize", "clues": ["pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "gormandise", "englut", "stuff", "engorge"]}, {"answer": "gourmandize", "hint": "synonyms for gourmandize", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge"]}, {"answer": "govern", "hint": "synonyms for govern", "clues": ["regularise", "regulate", "rule", "order", "govern"]}, {"answer": "grind_away", "hint": "synonyms for grind away", "clues": ["swot up", "bone up", "mug up", "drum", "cram", "bone", "swot", "get up", "grind away"]}, {"answer": "grok", "hint": "synonyms for grok", "clues": ["apprehend", "grasp", "dig", "get the picture", "comprehend", "savvy", "compass", "grok"]}, {"answer": "gross_out", "hint": "synonyms for gross out", "clues": ["revolt", "freak", "freak out", "disgust", "repel", "gross out"]}, {"answer": "grovel", "hint": "synonyms for grovel", "clues": ["cower", "cringe", "fawn", "creep", "crawl", "grovel"]}, {"answer": "grow", "hint": "synonyms for grow", "clues": ["get", "originate", "uprise", "rise", "farm", "develop", "turn", "acquire", "mature", "spring up", "produce", "grow"]}, {"answer": "gruntle", "hint": "synonyms for gruntle", "clues": ["gentle", "appease", "mollify", "placate", "pacify", "assuage", "lenify", "conciliate", "gruntle"]}, {"answer": "guggle", "hint": "synonyms for guggle", "clues": ["bubble", "gurgle", "burble", "ripple", "babble", "guggle"]}, {"answer": "gussy_up", "hint": "synonyms for gussy up", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "gussy up"]}, {"answer": "gyrate", "hint": "synonyms for gyrate", "clues": ["spin around", "coil", "spiral", "reel", "spin", "whirl", "gyrate"]}, {"answer": "habilitate", "hint": "synonyms for habilitate", "clues": ["tog", "raiment", "apparel", "enclothe", "garment", "dress", "fit out", "garb", "habilitate"]}, {"answer": "hand_over", "hint": "synonyms for hand over", "clues": ["fork out", "turn in", "fork up", "deliver", "fork over", "render", "hand over"]}, {"answer": "hang_around", "hint": "synonyms for hang around", "clues": ["mess about", "loiter", "loaf", "lallygag", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "lounge", "hang around"]}, {"answer": "hang_back", "hint": "synonyms for hang back", "clues": ["drop behind", "trail", "drag", "get behind", "drop back", "hang back"]}, {"answer": "hang_in", "hint": "synonyms for hang in", "clues": ["hold on", "persist", "persevere", "hang on"]}, {"answer": "hang_on", "hint": "synonyms for hang on", "clues": ["hang in", "tack", "tag on", "append", "persevere", "hold on", "hold the line", "persist", "tack on"]}, {"answer": "happen", "hint": "synonyms for happen", "clues": ["hap", "materialize", "encounter", "occur", "fall out", "take place", "bechance", "come about", "pass off", "bump", "go on", "befall", "pass", "find", "happen"]}, {"answer": "happen_upon", "hint": "synonyms for happen upon", "clues": ["chance on", "attain", "light upon", "discover", "come across", "come upon", "fall upon", "strike", "happen upon"]}, {"answer": "harass", "hint": "synonyms for harass", "clues": ["chivvy", "chevy", "harry", "plague", "provoke", "hassle", "beset", "molest", "harass"]}, {"answer": "harden", "hint": "synonyms for harden", "clues": ["temper", "inure", "indurate", "season", "harden"]}, {"answer": "harmonise", "hint": "synonyms for harmonise", "clues": ["accord", "fit in", "agree", "reconcile", "concord", "harmonize", "consort", "chord"]}, {"answer": "harmonize", "hint": "synonyms for harmonize", "clues": ["accord", "fit in", "agree", "reconcile", "concord", "consort", "chord", "harmonise"]}, {"answer": "harry", "hint": "synonyms for harry", "clues": ["chivvy", "chevy", "harass", "plague", "ravage", "provoke", "hassle", "beset", "molest", "harry"]}, {"answer": "hasten", "hint": "synonyms for hasten", "clues": ["speed", "bucket along", "race", "stimulate", "hurry", "hotfoot", "induce", "step on it", "pelt along", "expedite", "look sharp", "festinate", "rush along", "rush", "hie", "cannonball along", "hasten"]}, {"answer": "have-to_doe_with", "hint": "synonyms for have-to doe with", "clues": ["refer", "touch on", "relate", "pertain", "come to", "touch", "bear on", "concern", "have-to doe with"]}, {"answer": "have_a_bun_in_the_oven", "hint": "synonyms for have a bun in the oven", "clues": ["carry", "bear", "expect", "gestate", "have a bun in the oven"]}, {"answer": "have_a_fit", "hint": "synonyms for have a fit", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit"]}, {"answer": "have_a_go_at_it", "hint": "synonyms for have a go at it", "clues": ["roll in the hay", "hump", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "have a go at it"]}, {"answer": "have_intercourse", "hint": "synonyms for have intercourse", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "have intercourse"]}, {"answer": "have_it_away", "hint": "synonyms for have it away", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "do it", "fuck", "lie with", "make love", "have it away"]}, {"answer": "have_it_off", "hint": "synonyms for have it off", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "have it off"]}, {"answer": "have_kittens", "hint": "synonyms for have kittens", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "have kittens"]}, {"answer": "have_sex", "hint": "synonyms for have sex", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "have sex"]}, {"answer": "have_words", "hint": "synonyms for have words", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "have words"]}, {"answer": "haze_over", "hint": "synonyms for haze over", "clues": ["cloud", "mist", "befog", "fog", "obnubilate", "becloud", "obscure", "haze over"]}, {"answer": "head_for_the_hills", "hint": "synonyms for head for the hills", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "lam", "run away", "scat", "break away", "bunk", "take to the woods", "scarper", "head for the hills"]}, {"answer": "head_off", "hint": "synonyms for head off", "clues": ["avoid", "stave off", "forfend", "avert", "ward off", "deflect", "fend off", "obviate", "debar", "head off"]}, {"answer": "hear", "hint": "synonyms for hear", "clues": ["get wind", "get a line", "learn", "get word", "try", "take heed", "listen", "pick up", "discover", "find out", "see", "hear"]}, {"answer": "heighten", "hint": "synonyms for heighten", "clues": ["intensify", "sharpen", "deepen", "enhance", "rise", "compound", "heighten"]}, {"answer": "hem_in", "hint": "synonyms for hem in", "clues": ["beleaguer", "besiege", "circumvent", "surround", "hem in"]}, {"answer": "hero-worship", "hint": "synonyms for hero-worship", "clues": ["idolize", "revere", "worship", "hero-worship"]}, {"answer": "hie", "hint": "synonyms for hie", "clues": ["hasten", "speed", "bucket along", "race", "rush", "step on it", "pelt along", "rush along", "hotfoot", "cannonball along", "hie"]}, {"answer": "hightail_it", "hint": "synonyms for hightail it", "clues": ["escape", "fly the coop", "turn tail", "run", "lam", "run away", "scat", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "hightail it"]}, {"answer": "hinge_on", "hint": "synonyms for hinge on", "clues": ["depend on", "ride", "devolve on", "hinge upon", "turn on"]}, {"answer": "hinge_upon", "hint": "synonyms for hinge upon", "clues": ["depend on", "ride", "devolve on", "turn on", "hinge on"]}, {"answer": "hit_the_ceiling", "hint": "synonyms for hit the ceiling", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the roof", "go ballistic", "have a fit", "hit the ceiling"]}, {"answer": "hit_the_hay", "hint": "synonyms for hit the hay", "clues": ["go to bed", "hit the sack", "go to sleep", "crawl in", "sack out", "retire", "kip down", "bed", "turn in", "hit the hay"]}, {"answer": "hit_the_roof", "hint": "synonyms for hit the roof", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "go ballistic", "have a fit", "hit the roof"]}, {"answer": "hit_the_sack", "hint": "synonyms for hit the sack", "clues": ["go to bed", "go to sleep", "crawl in", "sack out", "retire", "kip down", "bed", "turn in", "hit the hay", "hit the sack"]}, {"answer": "hive_away", "hint": "synonyms for hive away", "clues": ["put in", "stack away", "salt away", "store", "lay in", "stash away", "hive away"]}, {"answer": "hive_up", "hint": "synonyms for hive up", "clues": ["lay away", "cache", "hoard", "stash", "squirrel away", "hive up"]}, {"answer": "hold_back", "hint": "synonyms for hold back", "clues": ["hold off", "conceal", "keep", "hold in", "turn back", "retain", "check", "hold", "stop", "keep back", "arrest", "contain", "wait", "forbear", "hold back"]}, {"answer": "hold_fast", "hint": "synonyms for hold fast", "clues": ["bind", "bond", "stick to", "adhere", "stick", "hold fast"]}, {"answer": "hold_in", "hint": "synonyms for hold in", "clues": ["control", "confine", "conceal", "curb", "check", "enclose", "contain", "moderate", "hold", "hold back", "hold in"]}, {"answer": "hold_on", "hint": "synonyms for hold on", "clues": ["hang on", "keep", "persevere", "grasp", "hold the line", "persist", "stop", "hold on"]}, {"answer": "hold_out", "hint": "synonyms for hold out", "clues": ["hold up", "live", "withstand", "stand firm", "go", "stretch forth", "resist", "endure", "wear", "live on", "put out", "extend", "last", "survive", "exsert", "stretch out", "hold out"]}, {"answer": "hold_over", "hint": "synonyms for hold over", "clues": ["shelve", "remit", "prorogue", "set back", "put off", "defer", "table", "carry over", "postpone", "put over", "hold over"]}, {"answer": "hold_up", "hint": "synonyms for hold up", "clues": ["support", "delay", "live", "go", "hold out", "withstand", "endure", "stand up", "detain", "hold", "live on", "sustain", "last", "survive", "stick up", "hold water", "defy", "hold up"]}, {"answer": "hoodwink", "hint": "synonyms for hoodwink", "clues": ["lead by the nose", "beguile", "bamboozle", "snow", "juggle", "play false", "pull the wool over someone's eyes", "hoodwink"]}, {"answer": "hook_on", "hint": "synonyms for hook on", "clues": ["latch on", "fasten on", "take up", "seize on", "hook on"]}, {"answer": "hook_up_with", "hint": "synonyms for hook up with", "clues": ["marry", "wed", "get married", "get hitched with", "espouse", "conjoin", "hook up with"]}, {"answer": "hop_on", "hint": "synonyms for hop on", "clues": ["get on", "mount up", "mount", "climb on", "jump on", "bestride", "hop on"]}, {"answer": "horn_in", "hint": "synonyms for horn in", "clues": ["poke", "nose", "intrude", "pry", "horn in"]}, {"answer": "hornswoggle", "hint": "synonyms for hornswoggle", "clues": ["rook", "bunco", "defraud", "mulct", "gyp", "victimize", "diddle", "nobble", "swindle", "short-change", "gip", "scam", "con", "goldbrick", "hornswoggle"]}, {"answer": "horrify", "hint": "synonyms for horrify", "clues": ["appall", "alarm", "dismay", "horrify"]}, {"answer": "hot_up", "hint": "synonyms for hot up", "clues": ["heat", "soup up", "screw up", "hop up", "heat up", "hot up"]}, {"answer": "hover", "hint": "synonyms for hover", "clues": ["oscillate", "vibrate", "bulk large", "brood", "loom", "levitate", "linger", "vacillate", "hover"]}, {"answer": "humiliate", "hint": "synonyms for humiliate", "clues": ["chagrin", "abase", "humble", "mortify", "humiliate"]}, {"answer": "hunker", "hint": "synonyms for hunker", "clues": ["squat", "hunker down", "scrunch up", "scrunch", "crouch", "hunker"]}, {"answer": "hunker_down", "hint": "synonyms for hunker down", "clues": ["crouch", "squat", "scrunch up", "scrunch", "hunker", "hunker down"]}, {"answer": "hurtle", "hint": "synonyms for hurtle", "clues": ["cast", "lunge", "thrust", "hurl", "hurtle"]}, {"answer": "hush_up", "hint": "synonyms for hush up", "clues": ["hush", "gloss over", "silence", "whitewash", "still", "quieten", "shut up", "sleek over", "hush up"]}, {"answer": "hybridise", "hint": "synonyms for hybridise", "clues": ["cross", "interbreed", "crossbreed", "hybridize"]}, {"answer": "hybridize", "hint": "synonyms for hybridize", "clues": ["cross", "interbreed", "crossbreed", "hybridise"]}, {"answer": "hyperbolise", "hint": "synonyms for hyperbolise", "clues": ["exaggerate", "hyperbolize", "magnify", "overdraw", "amplify", "overstate"]}, {"answer": "hyperbolize", "hint": "synonyms for hyperbolize", "clues": ["amplify", "exaggerate", "magnify", "overdraw", "hyperbolise", "overstate"]}, {"answer": "hypothecate", "hint": "synonyms for hypothecate", "clues": ["hypothesise", "theorize", "suppose", "conjecture", "speculate", "hypothecate"]}, {"answer": "hypothesise", "hint": "synonyms for hypothesise", "clues": ["hypothecate", "theorize", "hypothesize", "suppose", "conjecture", "speculate"]}, {"answer": "hypothesize", "hint": "synonyms for hypothesize", "clues": ["hypothesise", "hypothecate", "theorize", "suppose", "conjecture", "speculate"]}, {"answer": "identify", "hint": "synonyms for identify", "clues": ["place", "key out", "key", "discover", "name", "distinguish", "describe", "identify"]}, {"answer": "idolise", "hint": "synonyms for idolise", "clues": ["idolize", "revere", "worship", "hero-worship"]}, {"answer": "idolize", "hint": "synonyms for idolize", "clues": ["worship", "revere", "idolise", "hero-worship"]}, {"answer": "ignite", "hint": "synonyms for ignite", "clues": ["wake", "light", "stir up", "combust", "take fire", "catch fire", "fire up", "erupt", "heat", "conflagrate", "inflame", "ignite"]}, {"answer": "ignore", "hint": "synonyms for ignore", "clues": ["disregard", "discount", "dismiss", "push aside", "neglect", "cut", "brush off", "snub", "ignore"]}, {"answer": "ill-treat", "hint": "synonyms for ill-treat", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-use", "ill-treat"]}, {"answer": "ill-use", "hint": "synonyms for ill-use", "clues": ["step", "abuse", "mistreat", "maltreat", "ill-treat", "ill-use"]}, {"answer": "illume", "hint": "synonyms for illume", "clues": ["light up", "light", "illuminate", "illume"]}, {"answer": "illuminate", "hint": "synonyms for illuminate", "clues": ["light up", "light", "elucidate", "illume", "enlighten", "crystalise", "sort out", "clear up", "clear", "straighten out", "shed light on", "illuminate"]}, {"answer": "illumine", "hint": "synonyms for illumine", "clues": ["light up", "light", "illuminate", "illume"]}, {"answer": "imagine", "hint": "synonyms for imagine", "clues": ["ideate", "suppose", "guess", "reckon", "envisage", "think", "opine", "conceive of", "imagine"]}, {"answer": "imbed", "hint": "synonyms for imbed", "clues": ["embed", "plant", "engraft", "implant", "imbed"]}, {"answer": "imbibe", "hint": "synonyms for imbibe", "clues": ["absorb", "draw", "take up", "assimilate", "sop up", "suck", "take in", "drink", "soak up", "suck up", "imbibe"]}, {"answer": "imbue", "hint": "synonyms for imbue", "clues": ["permeate", "interpenetrate", "soak", "diffuse", "hue", "penetrate", "riddle", "pervade", "imbue"]}, {"answer": "immerse", "hint": "synonyms for immerse", "clues": ["swallow", "absorb", "steep", "bury", "engross", "plunge", "eat up", "swallow up", "soak up", "engulf", "immerse"]}, {"answer": "immix", "hint": "synonyms for immix", "clues": ["fuse", "blend", "mix", "meld", "commingle", "merge", "combine", "coalesce", "conflate", "flux", "immix"]}, {"answer": "immobilise", "hint": "synonyms for immobilise", "clues": ["trap", "freeze", "immobilize", "block", "pin"]}, {"answer": "immobilize", "hint": "synonyms for immobilize", "clues": ["trap", "freeze", "immobilise", "block", "pin"]}, {"answer": "immortalise", "hint": "synonyms for immortalise", "clues": ["eternalise", "eternize", "memorialise", "immortalize", "record", "commemorate"]}, {"answer": "immortalize", "hint": "synonyms for immortalize", "clues": ["immortalise", "eternalise", "eternize", "memorialise", "record", "commemorate"]}, {"answer": "immure", "hint": "synonyms for immure", "clues": ["incarcerate", "gaol", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "jail", "immure"]}, {"answer": "impair", "hint": "synonyms for impair", "clues": ["deflower", "spoil", "mar", "vitiate", "impair"]}, {"answer": "impale", "hint": "synonyms for impale", "clues": ["empale", "stake", "transfix", "spike", "impale"]}, {"answer": "impart", "hint": "synonyms for impart", "clues": ["pass on", "convey", "conduct", "lend", "channel", "leave", "give", "bring", "bestow", "contribute", "add", "transmit", "carry", "impart"]}, {"answer": "impede", "hint": "synonyms for impede", "clues": ["hinder", "jam", "obstruct", "occlude", "block", "close up", "obturate", "impede"]}, {"answer": "imperil", "hint": "synonyms for imperil", "clues": ["jeopardise", "threaten", "peril", "menace", "endanger", "imperil"]}, {"answer": "impinge", "hint": "synonyms for impinge", "clues": ["infringe", "entrench", "encroach", "impinge"]}, {"answer": "impinge_on", "hint": "synonyms for impinge on", "clues": ["run into", "collide with", "strike", "hit", "impinge on"]}, {"answer": "imply", "hint": "synonyms for imply", "clues": ["entail", "mean", "connote", "inculpate", "involve", "incriminate", "imply"]}, {"answer": "impose", "hint": "synonyms for impose", "clues": ["inflict", "levy", "enforce", "visit", "bring down", "impose"]}, {"answer": "impound", "hint": "synonyms for impound", "clues": ["attach", "sequester", "confiscate", "pound", "seize", "impound"]}, {"answer": "imprecate", "hint": "synonyms for imprecate", "clues": ["swear", "curse", "anathemize", "cuss", "maledict", "blaspheme", "beshrew", "bedamn", "damn", "imprecate"]}, {"answer": "impregnate", "hint": "synonyms for impregnate", "clues": ["knock up", "bang up", "instill", "saturate", "infuse", "prang up", "tincture", "impregnate"]}, {"answer": "imprison", "hint": "synonyms for imprison", "clues": ["incarcerate", "gaol", "put behind bars", "remand", "put away", "lag", "jug", "immure", "jail", "imprison"]}, {"answer": "improve", "hint": "synonyms for improve", "clues": ["meliorate", "amend", "better", "improve"]}, {"answer": "incapacitate", "hint": "synonyms for incapacitate", "clues": ["disable", "invalid", "handicap", "incapacitate"]}, {"answer": "incarcerate", "hint": "synonyms for incarcerate", "clues": ["gaol", "put behind bars", "imprison", "remand", "put away", "lag", "jug", "immure", "jail", "incarcerate"]}, {"answer": "incite", "hint": "synonyms for incite", "clues": ["set off", "egg on", "prompt", "stir up", "actuate", "prod", "instigate", "motivate", "move", "propel", "incite"]}, {"answer": "inclose", "hint": "synonyms for inclose", "clues": ["close in", "put in", "stick in", "enclose", "shut in", "introduce", "insert"]}, {"answer": "incommode", "hint": "synonyms for incommode", "clues": ["discommode", "trouble", "inconvenience", "bother", "disoblige", "put out", "incommode"]}, {"answer": "incriminate", "hint": "synonyms for incriminate", "clues": ["criminate", "accuse", "inculpate", "imply", "impeach"]}, {"answer": "incur", "hint": "synonyms for incur", "clues": ["obtain", "receive", "find", "get", "incur"]}, {"answer": "indicate", "hint": "synonyms for indicate", "clues": ["betoken", "suggest", "point", "argue", "bespeak", "show", "designate", "signal", "indicate"]}, {"answer": "indorse", "hint": "synonyms for indorse", "clues": ["endorse", "support", "plump for", "back", "plunk for", "second", "certify"]}, {"answer": "induce", "hint": "synonyms for induce", "clues": ["hasten", "make", "induct", "have", "bring on", "cause", "stimulate", "get", "rush", "induce"]}, {"answer": "induct", "hint": "synonyms for induct", "clues": ["seat", "induce", "invest", "initiate", "induct"]}, {"answer": "indue", "hint": "synonyms for indue", "clues": ["gift", "empower", "endue", "endow", "invest", "indue"]}, {"answer": "indulge", "hint": "synonyms for indulge", "clues": ["baby", "cocker", "pamper", "gratify", "luxuriate", "spoil", "featherbed", "coddle", "pander", "cosset", "mollycoddle", "indulge"]}, {"answer": "infer", "hint": "synonyms for infer", "clues": ["derive", "deduct", "generalise", "understand", "deduce", "guess", "extrapolate", "infer"]}, {"answer": "inflame", "hint": "synonyms for inflame", "clues": ["wake", "stir up", "enkindle", "fire up", "heat", "conflagrate", "ignite", "inflame"]}, {"answer": "inflate", "hint": "synonyms for inflate", "clues": ["expand", "balloon", "billow", "amplify", "blow up", "inflate"]}, {"answer": "infract", "hint": "synonyms for infract", "clues": ["break", "violate", "breach", "offend", "go against", "transgress", "infract"]}, {"answer": "infringe", "hint": "synonyms for infringe", "clues": ["conflict", "impinge", "contravene", "run afoul", "encroach", "infringe"]}, {"answer": "infuse", "hint": "synonyms for infuse", "clues": ["instill", "steep", "impregnate", "inculcate", "tincture", "infuse"]}, {"answer": "ingeminate", "hint": "synonyms for ingeminate", "clues": ["retell", "restate", "repeat", "iterate", "ingeminate"]}, {"answer": "ingest", "hint": "synonyms for ingest", "clues": ["absorb", "assimilate", "consume", "take in", "have", "take", "ingest"]}, {"answer": "ingurgitate", "hint": "synonyms for ingurgitate", "clues": ["gormandize", "pig out", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "ingurgitate"]}, {"answer": "inhibit", "hint": "synonyms for inhibit", "clues": ["stamp down", "subdue", "curb", "conquer", "bottle up", "suppress", "inhibit"]}, {"answer": "inhume", "hint": "synonyms for inhume", "clues": ["bury", "lay to rest", "inter", "entomb", "inhume"]}, {"answer": "inject", "hint": "synonyms for inject", "clues": ["come in", "put in", "interject", "shoot", "interpose", "throw in", "inject"]}, {"answer": "injure", "hint": "synonyms for injure", "clues": ["spite", "bruise", "hurt", "offend", "wound", "injure"]}, {"answer": "inquire", "hint": "synonyms for inquire", "clues": ["investigate", "ask", "enquire", "wonder"]}, {"answer": "inscribe", "hint": "synonyms for inscribe", "clues": ["code", "grave", "enrol", "recruit", "write in code", "autograph", "encipher", "cypher", "enter", "encrypt", "engrave", "scratch", "inscribe"]}, {"answer": "inseminate", "hint": "synonyms for inseminate", "clues": ["fecundate", "fertilize", "sow", "sow in", "inseminate"]}, {"answer": "inspect", "hint": "synonyms for inspect", "clues": ["audit", "scrutinize", "visit", "inspect"]}, {"answer": "inspire", "hint": "synonyms for inspire", "clues": ["prompt", "breathe in", "revolutionize", "inhale", "exalt", "invigorate", "animate", "exhort", "urge on", "instigate", "pep up", "barrack", "urge", "enliven", "cheer", "root on", "inspire"]}, {"answer": "instal", "hint": "synonyms for instal", "clues": ["put in", "set up", "establish", "install"]}, {"answer": "install", "hint": "synonyms for install", "clues": ["put in", "set up", "instal", "establish"]}, {"answer": "instigate", "hint": "synonyms for instigate", "clues": ["incite", "set off", "inspire", "stir up", "prompt", "instigate"]}, {"answer": "instill", "hint": "synonyms for instill", "clues": ["impress", "infuse", "ingrain", "instil", "impregnate", "inculcate", "tincture", "transfuse"]}, {"answer": "institutionalise", "hint": "synonyms for institutionalise", "clues": ["institutionalize", "commit", "send", "charge"]}, {"answer": "institutionalize", "hint": "synonyms for institutionalize", "clues": ["commit", "send", "institutionalise", "charge"]}, {"answer": "instruct", "hint": "synonyms for instruct", "clues": ["apprize", "learn", "teach", "instruct"]}, {"answer": "insure", "hint": "synonyms for insure", "clues": ["control", "ensure", "cover", "see to it", "check", "assure", "underwrite", "see", "ascertain", "guarantee", "secure", "insure"]}, {"answer": "intend", "hint": "synonyms for intend", "clues": ["think", "mean", "stand for", "specify", "destine", "designate", "signify", "intend"]}, {"answer": "intensify", "hint": "synonyms for intensify", "clues": ["compound", "deepen", "step up", "heighten", "escalate", "intensify"]}, {"answer": "inter", "hint": "synonyms for inter", "clues": ["bury", "inhume", "lay to rest", "entomb", "inter"]}, {"answer": "interbreed", "hint": "synonyms for interbreed", "clues": ["cross", "crossbreed", "hybridize", "interbreed"]}, {"answer": "intercede", "hint": "synonyms for intercede", "clues": ["intermediate", "liaise", "arbitrate", "mediate", "intercede"]}, {"answer": "interject", "hint": "synonyms for interject", "clues": ["come in", "put in", "inject", "interpose", "throw in", "interject"]}, {"answer": "interlace", "hint": "synonyms for interlace", "clues": ["intertwine", "entwine", "lock", "lace", "twine", "interlock", "enlace", "interlace"]}, {"answer": "interpenetrate", "hint": "synonyms for interpenetrate", "clues": ["permeate", "diffuse", "penetrate", "imbue", "riddle", "pervade", "interpenetrate"]}, {"answer": "interpose", "hint": "synonyms for interpose", "clues": ["come in", "put in", "step in", "inject", "interject", "interfere", "intervene", "throw in", "interpose"]}, {"answer": "interpret", "hint": "synonyms for interpret", "clues": ["construe", "translate", "read", "understand", "rede", "represent", "see", "render", "interpret"]}, {"answer": "intertwine", "hint": "synonyms for intertwine", "clues": ["entwine", "tat", "loop", "lace", "twine", "interlace", "enlace", "intertwine"]}, {"answer": "intone", "hint": "synonyms for intone", "clues": ["tone", "intonate", "chant", "cantillate"]}, {"answer": "intoxicate", "hint": "synonyms for intoxicate", "clues": ["pick up", "inebriate", "uplift", "soak", "elate", "lift up", "intoxicate"]}, {"answer": "introduce", "hint": "synonyms for introduce", "clues": ["put in", "acquaint", "usher in", "bring out", "inclose", "stick in", "preface", "precede", "infix", "enter", "inaugurate", "premise", "present", "innovate", "bring in", "insert", "introduce"]}, {"answer": "intrude", "hint": "synonyms for intrude", "clues": ["nose", "pry", "trespass", "poke", "irrupt", "horn in", "obtrude", "intrude"]}, {"answer": "intrust", "hint": "synonyms for intrust", "clues": ["entrust", "commit", "confide", "trust"]}, {"answer": "intumesce", "hint": "synonyms for intumesce", "clues": ["bubble up", "swell up", "tumesce", "swell", "tumefy"]}, {"answer": "inunct", "hint": "synonyms for inunct", "clues": ["anele", "oil", "anoint", "embrocate", "inunct"]}, {"answer": "inundate", "hint": "synonyms for inundate", "clues": ["swamp", "submerge", "flood", "deluge", "inundate"]}, {"answer": "invade", "hint": "synonyms for invade", "clues": ["obtrude upon", "intrude on", "infest", "encroach upon", "occupy", "overrun", "invade"]}, {"answer": "invalidate", "hint": "synonyms for invalidate", "clues": ["avoid", "nullify", "vitiate", "quash", "cancel", "annul", "invalidate"]}, {"answer": "inveigle", "hint": "synonyms for inveigle", "clues": ["sweet-talk", "coax", "palaver", "blarney", "wheedle", "cajole", "inveigle"]}, {"answer": "invent", "hint": "synonyms for invent", "clues": ["make up", "devise", "formulate", "forge", "cook up", "manufacture", "fabricate", "contrive", "excogitate", "invent"]}, {"answer": "invest", "hint": "synonyms for invest", "clues": ["place", "enthrone", "empower", "endue", "endow", "induct", "seat", "adorn", "clothe", "commit", "put", "gift", "indue", "vest", "invest"]}, {"answer": "invigorate", "hint": "synonyms for invigorate", "clues": ["inspire", "liven up", "exalt", "liven", "animate", "reinvigorate", "enliven", "quicken"]}, {"answer": "invoke", "hint": "synonyms for invoke", "clues": ["call down", "stir", "call forth", "put forward", "arouse", "raise", "conjure", "bring up", "appeal", "conjure up", "evoke", "invoke"]}, {"answer": "involve", "hint": "synonyms for involve", "clues": ["need", "postulate", "ask", "take", "necessitate", "demand", "regard", "require", "affect", "imply", "call for", "involve"]}, {"answer": "iron_out", "hint": "synonyms for iron out", "clues": ["press", "put right", "straighten out", "iron", "iron out"]}, {"answer": "irritate", "hint": "synonyms for irritate", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "vex", "rile", "get at", "get to", "chafe", "rag", "bother", "irritate"]}, {"answer": "irrupt", "hint": "synonyms for irrupt", "clues": ["erupt", "intrude", "flare up", "burst out", "explode", "break open", "flare", "irrupt"]}, {"answer": "isolate", "hint": "synonyms for isolate", "clues": ["insulate", "keep apart", "set apart", "sequester", "sequestrate", "isolate"]}, {"answer": "iterate", "hint": "synonyms for iterate", "clues": ["ingeminate", "retell", "restate", "repeat", "reiterate"]}, {"answer": "jack_off", "hint": "synonyms for jack off", "clues": ["fuck off", "jerk off", "wank", "she-bop", "masturbate", "jack off"]}, {"answer": "jactitate", "hint": "synonyms for jactitate", "clues": ["convulse", "thrash about", "toss", "thresh", "slash", "thrash", "jactitate"]}, {"answer": "jampack", "hint": "synonyms for jampack", "clues": ["ram", "wad", "chock up", "jam", "jampack"]}, {"answer": "jar_against", "hint": "synonyms for jar against", "clues": ["run into", "knock against", "bump into", "butt against", "jar against"]}, {"answer": "jeopardise", "hint": "synonyms for jeopardise", "clues": ["imperil", "jeopardize", "threaten", "peril", "menace", "endanger"]}, {"answer": "jeopardize", "hint": "synonyms for jeopardize", "clues": ["adventure", "threaten", "menace", "hazard", "imperil", "jeopardise", "peril", "stake", "endanger"]}, {"answer": "jerk_off", "hint": "synonyms for jerk off", "clues": ["fuck off", "wank", "she-bop", "masturbate", "jack off", "jerk off"]}, {"answer": "jest_at", "hint": "synonyms for jest at", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "ridicule", "blackguard", "laugh at", "jest at"]}, {"answer": "jollify", "hint": "synonyms for jollify", "clues": ["make merry", "wassail", "whoop it up", "make happy", "revel", "make whoopie", "racket", "jollify"]}, {"answer": "josh", "hint": "synonyms for josh", "clues": ["chaff", "banter", "jolly", "kid", "josh"]}, {"answer": "jubilate", "hint": "synonyms for jubilate", "clues": ["exuberate", "exult", "rejoice", "triumph", "jubilate"]}, {"answer": "jump_on", "hint": "synonyms for jump on", "clues": ["get on", "hop on", "mount up", "mount", "climb on", "bestride", "jump on"]}, {"answer": "jump_out", "hint": "synonyms for jump out", "clues": ["leap out", "stand out", "jump", "stick out", "jump out"]}, {"answer": "justify", "hint": "synonyms for justify", "clues": ["vindicate", "apologize", "free", "absolve", "rationalize", "warrant", "excuse", "justify"]}, {"answer": "jut_out", "hint": "synonyms for jut out", "clues": ["stick out", "project", "protrude", "jut", "jut out"]}, {"answer": "keep_an_eye_on", "hint": "synonyms for keep an eye on", "clues": ["follow", "observe", "watch", "watch over", "keep an eye on"]}, {"answer": "keep_apart", "hint": "synonyms for keep apart", "clues": ["set apart", "isolate", "sequester", "sequestrate", "keep apart"]}, {"answer": "keep_back", "hint": "synonyms for keep back", "clues": ["withhold", "keep", "hold", "retain", "hold back", "keep back"]}, {"answer": "keep_down", "hint": "synonyms for keep down", "clues": ["number", "subdue", "quash", "reduce", "subjugate", "repress", "keep down"]}, {"answer": "keep_going", "hint": "synonyms for keep going", "clues": ["support", "bridge over", "patronize", "run on", "tide over", "patronage", "keep going"]}, {"answer": "keep_mum", "hint": "synonyms for keep mum", "clues": ["be quiet", "belt up", "dummy up", "button up", "clam up", "close up", "shut up", "keep mum"]}, {"answer": "keep_one's_distance", "hint": "synonyms for keep one's distance", "clues": ["stand back", "stay away", "keep one's eyes off", "keep one's hands off", "keep one's distance"]}, {"answer": "keep_one's_eyes_off", "hint": "synonyms for keep one's eyes off", "clues": ["stand back", "keep one's distance", "stay away", "keep one's hands off", "keep one's eyes off"]}, {"answer": "keep_one's_hands_off", "hint": "synonyms for keep one's hands off", "clues": ["stand back", "keep one's distance", "keep one's eyes off", "stay away", "keep one's hands off"]}, {"answer": "keep_one's_nose_to_the_grindstone", "hint": "synonyms for keep one's nose to the grindstone", "clues": ["peg away", "plug away", "keep one's shoulder to the wheel", "slog", "keep one's nose to the grindstone"]}, {"answer": "keep_one's_shoulder_to_the_wheel", "hint": "synonyms for keep one's shoulder to the wheel", "clues": ["peg away", "plug away", "keep one's nose to the grindstone", "slog", "keep one's shoulder to the wheel"]}, {"answer": "keep_up", "hint": "synonyms for keep up", "clues": ["preserve", "sustain", "follow", "keep abreast", "conserve", "prolong", "maintain", "keep up"]}, {"answer": "key_out", "hint": "synonyms for key out", "clues": ["discover", "identify", "name", "distinguish", "key", "describe", "key out"]}, {"answer": "kick_downstairs", "hint": "synonyms for kick downstairs", "clues": ["break", "relegate", "demote", "bump", "kick downstairs"]}, {"answer": "kick_in", "hint": "synonyms for kick in", "clues": ["contribute", "chip in", "kick down", "set in", "give", "kick in"]}, {"answer": "kick_out", "hint": "synonyms for kick out", "clues": ["drum out", "boot out", "expel", "throw out", "oust", "kick out"]}, {"answer": "kick_the_bucket", "hint": "synonyms for kick the bucket", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "kick the bucket"]}, {"answer": "kick_upstairs", "hint": "synonyms for kick upstairs", "clues": ["upgrade", "promote", "advance", "elevate", "raise", "kick upstairs"]}, {"answer": "kindle", "hint": "synonyms for kindle", "clues": ["elicit", "arouse", "enkindle", "raise", "fire", "provoke", "conflagrate", "inflame", "evoke"]}, {"answer": "kink_up", "hint": "synonyms for kink up", "clues": ["frizz", "crape", "frizzle", "kink", "crimp", "kink up"]}, {"answer": "kip_down", "hint": "synonyms for kip down", "clues": ["go to bed", "hit the sack", "go to sleep", "crawl in", "sack out", "retire", "turn in", "bed", "hit the hay", "kip down"]}, {"answer": "knap", "hint": "synonyms for knap", "clues": ["rap", "break off", "chip", "cut off", "knap"]}, {"answer": "knock_about", "hint": "synonyms for knock about", "clues": ["kick around", "kick about", "buffet", "batter"]}, {"answer": "knock_against", "hint": "synonyms for knock against", "clues": ["run into", "bump into", "jar against", "butt against", "knock against"]}, {"answer": "knock_down", "hint": "synonyms for knock down", "clues": ["coldcock", "pull down", "down", "cut down", "dump", "blast", "deck", "floor", "push down", "knock down"]}, {"answer": "knock_off", "hint": "synonyms for knock off", "clues": ["dash off", "fling off", "drop", "neutralise", "snitch", "hook", "shave", "do in", "glom", "liquidate", "cop", "toss off", "scratch off", "waste", "thieve", "knock off"]}, {"answer": "knock_over", "hint": "synonyms for knock over", "clues": ["tip over", "bowl over", "tump over", "upset", "turn over", "overturn", "knock over"]}, {"answer": "know_the_score", "hint": "synonyms for know the score", "clues": ["know what's going on", "be with it", "be on the ball", "know what's what", "know the score"]}, {"answer": "know_what's_going_on", "hint": "synonyms for know what's going on", "clues": ["know what's what", "know the score", "be with it", "be on the ball", "know what's going on"]}, {"answer": "know_what's_what", "hint": "synonyms for know what's what", "clues": ["know what's going on", "know the score", "be with it", "be on the ball", "know what's what"]}, {"answer": "knuckle_under", "hint": "synonyms for knuckle under", "clues": ["succumb", "buckle under", "give in", "yield"]}, {"answer": "lace_into", "hint": "synonyms for lace into", "clues": ["pitch into", "tear into", "lay into", "lace into"]}, {"answer": "lade", "hint": "synonyms for lade", "clues": ["load", "laden", "load up", "ladle"]}, {"answer": "lallygag", "hint": "synonyms for lallygag", "clues": ["mess about", "loiter", "loaf", "mill around", "lurk", "linger", "tarry", "lollygag", "footle", "mill about", "hang around", "lounge"]}, {"answer": "lam_into", "hint": "synonyms for lam into", "clues": ["lay into", "tear into", "pitch into", "lace into"]}, {"answer": "lambast", "hint": "synonyms for lambast", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "cane", "rebuke", "berate", "flog", "dress down", "trounce", "bawl out", "rag"]}, {"answer": "lambaste", "hint": "synonyms for lambaste", "clues": ["call down", "chew up", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "cane", "lambast", "rebuke", "flog", "berate", "dress down", "trounce", "bawl out", "rag"]}, {"answer": "land_up", "hint": "synonyms for land up", "clues": ["finish", "earth up", "finish up", "fetch up", "end up", "wind up", "land up"]}, {"answer": "languish", "hint": "synonyms for languish", "clues": ["pine away", "ache", "fade", "yearn", "pine", "waste", "yen", "languish"]}, {"answer": "lark_about", "hint": "synonyms for lark about", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "rollick", "skylark", "disport", "romp", "lark about"]}, {"answer": "lash_out", "hint": "synonyms for lash out", "clues": ["round", "assault", "snipe", "assail", "attack", "lash out"]}, {"answer": "latch_on", "hint": "synonyms for latch on", "clues": ["hook on", "fasten on", "get wise", "take up", "get it", "get onto", "twig", "cotton on", "catch on", "tumble", "seize on"]}, {"answer": "laud", "hint": "synonyms for laud", "clues": ["glorify", "exalt", "proclaim", "extol", "laud"]}, {"answer": "laugh_at", "hint": "synonyms for laugh at", "clues": ["poke fun", "rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at"]}, {"answer": "lay_away", "hint": "synonyms for lay away", "clues": ["hive up", "cache", "hoard", "stash", "squirrel away", "lay away"]}, {"answer": "lay_in", "hint": "synonyms for lay in", "clues": ["put in", "stack away", "salt away", "hive away", "store", "stash away", "lay in"]}, {"answer": "lay_into", "hint": "synonyms for lay into", "clues": ["pitch into", "tear into", "lace into", "lam into"]}, {"answer": "lay_off", "hint": "synonyms for lay off", "clues": ["quit", "cease", "give up", "discontinue", "furlough", "stop", "lay off"]}, {"answer": "lay_out", "hint": "synonyms for lay out", "clues": ["set up", "array", "range", "set out", "present", "set", "lay out"]}, {"answer": "lay_to_rest", "hint": "synonyms for lay to rest", "clues": ["bury", "inhume", "inter", "entomb", "lay to rest"]}, {"answer": "lay_waste_to", "hint": "synonyms for lay waste to", "clues": ["ravage", "scourge", "devastate", "waste", "desolate", "lay waste to"]}, {"answer": "lead_astray", "hint": "synonyms for lead astray", "clues": ["betray", "lead off", "misguide", "mislead", "misdirect", "deceive", "lead astray"]}, {"answer": "lead_by_the_nose", "hint": "synonyms for lead by the nose", "clues": ["bamboozle", "snow", "play false", "pull the wool over someone's eyes", "hoodwink", "lead by the nose"]}, {"answer": "lead_off", "hint": "synonyms for lead off", "clues": ["lead astray", "begin", "start", "commence", "lead off"]}, {"answer": "leap_out", "hint": "synonyms for leap out", "clues": ["burst forth", "jump out", "sally out", "stand out", "jump", "stick out", "rush out", "leap out"]}, {"answer": "learn", "hint": "synonyms for learn", "clues": ["get wind", "get a line", "read", "watch", "get word", "ascertain", "instruct", "acquire", "con", "hear", "determine", "larn", "take", "check", "pick up", "discover", "find out", "memorise", "see", "study", "teach"]}, {"answer": "leave_off", "hint": "synonyms for leave off", "clues": ["exclude", "except", "omit", "leave out", "take out", "leave off"]}, {"answer": "leave_out", "hint": "synonyms for leave out", "clues": ["exclude", "except", "drop", "overleap", "pretermit", "neglect", "leave off", "overlook", "omit", "take out", "miss", "leave out"]}, {"answer": "legalise", "hint": "synonyms for legalise", "clues": ["legitimate", "legalize", "decriminalise", "legitimise"]}, {"answer": "legalize", "hint": "synonyms for legalize", "clues": ["legitimate", "legitimise", "decriminalise", "legalise"]}, {"answer": "legitimatise", "hint": "synonyms for legitimatise", "clues": ["legitimate", "legalize", "decriminalise", "legitimise"]}, {"answer": "legitimatize", "hint": "synonyms for legitimatize", "clues": ["legitimate", "legalize", "decriminalise", "legitimise"]}, {"answer": "legitimise", "hint": "synonyms for legitimise", "clues": ["legitimate", "legalize", "decriminalise", "legitimize"]}, {"answer": "legitimize", "hint": "synonyms for legitimize", "clues": ["legitimate", "legalize", "decriminalise", "legitimise"]}, {"answer": "lend", "hint": "synonyms for lend", "clues": ["contribute", "bestow", "add", "loan", "impart", "bring", "lend"]}, {"answer": "lenify", "hint": "synonyms for lenify", "clues": ["gentle", "appease", "gruntle", "mollify", "placate", "pacify", "assuage", "conciliate", "lenify"]}, {"answer": "lessen", "hint": "synonyms for lessen", "clues": ["fall", "diminish", "decrease", "minify", "subside", "lessen"]}, {"answer": "let_down", "hint": "synonyms for let down", "clues": ["disappoint", "take down", "bring down", "lower", "get down"]}, {"answer": "let_in", "hint": "synonyms for let in", "clues": ["include", "admit", "intromit", "allow in", "let in"]}, {"answer": "let_loose", "hint": "synonyms for let loose", "clues": ["utter", "unleash", "emit", "loose", "let out", "let loose"]}, {"answer": "let_on", "hint": "synonyms for let on", "clues": ["break", "reveal", "let out", "discover", "disclose", "expose", "give away", "unwrap", "bring out", "divulge", "let on"]}, {"answer": "let_out", "hint": "synonyms for let out", "clues": ["break", "reveal", "widen", "let on", "let loose", "discover", "utter", "disclose", "expose", "give away", "emit", "unwrap", "bring out", "divulge", "let out"]}, {"answer": "let_the_cat_out_of_the_bag", "hint": "synonyms for let the cat out of the bag", "clues": ["peach", "babble", "blab", "talk", "sing", "spill the beans", "tattle", "blab out", "babble out", "let the cat out of the bag"]}, {"answer": "let_up", "hint": "synonyms for let up", "clues": ["abate", "die away", "ease up", "ease off", "slack off", "slack", "let up"]}, {"answer": "liaise", "hint": "synonyms for liaise", "clues": ["intermediate", "mediate", "arbitrate", "intercede", "liaise"]}, {"answer": "liberate", "hint": "synonyms for liberate", "clues": ["set free", "free", "unloosen", "loose", "release", "emancipate", "liberate"]}, {"answer": "lie_in_wait", "hint": "synonyms for lie in wait", "clues": ["scupper", "bushwhack", "ambush", "ambuscade", "waylay", "lurk", "lie in wait"]}, {"answer": "lie_with", "hint": "synonyms for lie with", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "make love", "lie with"]}, {"answer": "lift_out", "hint": "synonyms for lift out", "clues": ["scoop out", "scoop", "take up", "scoop up", "lift out"]}, {"answer": "lift_up", "hint": "synonyms for lift up", "clues": ["pick up", "uplift", "gather up", "elate", "intoxicate", "lift up"]}, {"answer": "light_up", "hint": "synonyms for light up", "clues": ["light", "illume", "illuminate", "fire up", "clear", "clear up", "brighten", "light up"]}, {"answer": "light_upon", "hint": "synonyms for light upon", "clues": ["chance on", "attain", "happen upon", "discover", "come across", "come upon", "fall upon", "strike", "light upon"]}, {"answer": "lighten", "hint": "synonyms for lighten", "clues": ["relieve", "brighten", "lighten up", "buoy up", "lighten"]}, {"answer": "limn", "hint": "synonyms for limn", "clues": ["delineate", "depict", "portray", "outline", "limn"]}, {"answer": "line_up", "hint": "synonyms for line up", "clues": ["come up", "queue up", "queue", "get hold", "aline", "adjust", "dress", "align", "find", "line up"]}, {"answer": "linger", "hint": "synonyms for linger", "clues": ["mess about", "loiter", "loaf", "lallygag", "mill around", "lurk", "tarry", "dawdle", "footle", "mill about", "hang around", "hover", "lounge", "linger"]}, {"answer": "link_up", "hint": "synonyms for link up", "clues": ["link", "join", "relate", "connect", "associate", "unite", "tie", "colligate", "tie in", "link up"]}, {"answer": "liquidate", "hint": "synonyms for liquidate", "clues": ["neutralize", "pay off", "waste", "knock off", "do in", "liquidate"]}, {"answer": "liquidize", "hint": "synonyms for liquidize", "clues": ["liquidise", "liquify", "sell out", "sell up"]}, {"answer": "listen", "hint": "synonyms for listen", "clues": ["take heed", "mind", "hear", "heed", "listen"]}, {"answer": "live_on", "hint": "synonyms for live on", "clues": ["hold up", "last", "live", "go", "hold out", "survive", "endure", "live on"]}, {"answer": "liven", "hint": "synonyms for liven", "clues": ["liven up", "animate", "enliven", "invigorate", "liven"]}, {"answer": "liven_up", "hint": "synonyms for liven up", "clues": ["liven", "animate", "enliven", "invigorate", "liven up"]}, {"answer": "localise", "hint": "synonyms for localise", "clues": ["place", "localize", "set", "focalise"]}, {"answer": "localize", "hint": "synonyms for localize", "clues": ["place", "focalize", "set", "localise"]}, {"answer": "locate", "hint": "synonyms for locate", "clues": ["site", "place", "situate", "turn up", "settle", "locate"]}, {"answer": "lock_away", "hint": "synonyms for lock away", "clues": ["lock up", "put away", "lock", "lock in", "shut away", "shut up", "lock away"]}, {"answer": "lock_in", "hint": "synonyms for lock in", "clues": ["seal in", "lock up", "put away", "lock", "shut away", "shut up", "lock away", "lock in"]}, {"answer": "lock_up", "hint": "synonyms for lock up", "clues": ["put away", "lock", "lock in", "shut away", "shut up", "lock away", "lock up"]}, {"answer": "log_z's", "hint": "synonyms for log z's", "clues": ["kip", "catch some Z's", "sleep", "slumber", "log Z's"]}, {"answer": "loiter", "hint": "synonyms for loiter", "clues": ["mess about", "lallygag", "loaf", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge", "loiter"]}, {"answer": "loll", "hint": "synonyms for loll", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "droop", "loaf", "bum about", "frig around", "lounge about", "bum around", "waste one's time", "loll"]}, {"answer": "loll_around", "hint": "synonyms for loll around", "clues": ["arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "bum about", "frig around", "loll", "lounge about", "bum around", "waste one's time", "loll around"]}, {"answer": "lollygag", "hint": "synonyms for lollygag", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge"]}, {"answer": "look_at", "hint": "synonyms for look at", "clues": ["consider", "view", "deal", "take", "look at"]}, {"answer": "look_for", "hint": "synonyms for look for", "clues": ["search", "anticipate", "seek", "look to", "look for"]}, {"answer": "look_into", "hint": "synonyms for look into", "clues": ["investigate", "check over", "suss out", "check out", "check", "check into", "check up on", "go over", "look into"]}, {"answer": "look_on", "hint": "synonyms for look on", "clues": ["think of", "watch", "look upon", "repute", "take to be", "esteem", "regard as"]}, {"answer": "look_sharp", "hint": "synonyms for look sharp", "clues": ["festinate", "hasten", "rush", "hurry", "look sharp"]}, {"answer": "look_upon", "hint": "synonyms for look upon", "clues": ["think of", "look on", "repute", "take to be", "esteem", "regard as"]}, {"answer": "loosen", "hint": "synonyms for loosen", "clues": ["untie", "tease", "loose", "undo", "tease apart", "relax"]}, {"answer": "loosen_up", "hint": "synonyms for loosen up", "clues": ["unstrain", "unwind", "decompress", "unstuff", "unbend", "unlax", "relax", "make relaxed", "limber up", "warm up", "slow down", "loosen up"]}, {"answer": "lop", "hint": "synonyms for lop", "clues": ["cut back", "discerp", "trim", "snip", "crop", "dress", "prune", "clip", "sever", "lop"]}, {"answer": "lose", "hint": "synonyms for lose", "clues": ["misplace", "drop off", "suffer", "turn a loss", "fall back", "recede", "fall behind", "mislay", "miss", "lose"]}, {"answer": "lose_one's_temper", "hint": "synonyms for lose one's temper", "clues": ["blow one's stack", "throw a fit", "combust", "flip one's wig", "have kittens", "blow up", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "lose one's temper"]}, {"answer": "lose_weight", "hint": "synonyms for lose weight", "clues": ["slim down", "slim", "melt off", "thin", "reduce", "slenderize", "lose weight"]}, {"answer": "lounge_about", "hint": "synonyms for lounge about", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "bum about", "frig around", "loll", "bum around", "waste one's time", "lounge about"]}, {"answer": "lounge_around", "hint": "synonyms for lounge around", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "loaf", "bum about", "frig around", "loll", "lounge about", "bum around", "waste one's time", "lounge around"]}, {"answer": "lour", "hint": "synonyms for lour", "clues": ["turn down", "frown", "lower", "lour"]}, {"answer": "louse_up", "hint": "synonyms for louse up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "foul up", "ball up", "blow", "botch", "louse up"]}, {"answer": "lucubrate", "hint": "synonyms for lucubrate", "clues": ["expatiate", "elaborate", "dilate", "exposit", "expound", "expand", "flesh out", "enlarge", "lucubrate"]}, {"answer": "lurk", "hint": "synonyms for lurk", "clues": ["scupper", "lie in wait", "lallygag", "waylay", "tarry", "mill around", "ambuscade", "mill about", "lounge", "mess about", "loiter", "loaf", "bushwhack", "linger", "ambush", "footle", "hang around", "skulk", "lurk"]}, {"answer": "machinate", "hint": "synonyms for machinate", "clues": ["organise", "cabal", "devise", "conjure", "prepare", "conspire", "complot", "get up", "machinate"]}, {"answer": "magnetise", "hint": "synonyms for magnetise", "clues": ["spellbind", "mesmerise", "bewitch", "magnetize"]}, {"answer": "magnetize", "hint": "synonyms for magnetize", "clues": ["spellbind", "mesmerise", "bewitch", "magnetise"]}, {"answer": "magnify", "hint": "synonyms for magnify", "clues": ["hyperbolise", "enlarge", "exaggerate", "blow up", "overdraw", "amplify", "overstate", "magnify"]}, {"answer": "maintain", "hint": "synonyms for maintain", "clues": ["keep", "keep up", "defend", "asseverate", "assert", "exert", "preserve", "sustain", "observe", "uphold", "conserve", "hold", "wield", "maintain"]}, {"answer": "make_do", "hint": "synonyms for make do", "clues": ["cope", "make out", "get by", "manage", "grapple", "contend", "deal", "make do"]}, {"answer": "make_for", "hint": "synonyms for make for", "clues": ["play", "work", "wreak", "bring", "make for"]}, {"answer": "make_fun", "hint": "synonyms for make fun", "clues": ["poke fun", "rib", "guy", "roast", "jest at", "ridicule", "blackguard", "laugh at", "make fun"]}, {"answer": "make_happy", "hint": "synonyms for make happy", "clues": ["make merry", "wassail", "whoop it up", "revel", "make whoopie", "racket", "jollify", "make happy"]}, {"answer": "make_headway", "hint": "synonyms for make headway", "clues": ["get ahead", "win", "gain", "advance", "pull ahead", "gain ground", "make headway"]}, {"answer": "make_it", "hint": "synonyms for make it", "clues": ["arrive", "survive", "pull round", "go far", "pull through", "come through", "pass", "get in", "make it"]}, {"answer": "make_love", "hint": "synonyms for make love", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love"]}, {"answer": "make_merry", "hint": "synonyms for make merry", "clues": ["wassail", "whoop it up", "make happy", "revel", "make whoopie", "racket", "jollify", "make merry"]}, {"answer": "make_off", "hint": "synonyms for make off", "clues": ["abscond", "decamp", "bolt", "go off", "run off", "absquatulate", "make off"]}, {"answer": "make_out", "hint": "synonyms for make out", "clues": ["roll in the hay", "have a go at it", "deal", "issue", "pick out", "sleep together", "neck", "fill in", "write out", "contend", "have intercourse", "bang", "recognise", "love", "get it on", "manage", "eff", "jazz", "know", "get laid", "cope", "fare", "fuck", "lie with", "make love", "spot", "hump", "get by", "fill out", "have sex", "be intimate", "have it off", "bed", "discern", "distinguish", "grapple", "sleep with", "complete", "make do", "get along", "screw", "tell apart", "cut", "come", "have it away", "do", "do it", "bonk", "make out"]}, {"answer": "make_over", "hint": "synonyms for make over", "clues": ["refashion", "retread", "remake", "redo", "rework", "make over"]}, {"answer": "make_relaxed", "hint": "synonyms for make relaxed", "clues": ["unstrain", "unwind", "loosen up", "unlax", "relax", "make relaxed"]}, {"answer": "make_up", "hint": "synonyms for make up", "clues": ["compensate", "even up", "correct", "even off", "fabricate", "catch up with", "patch up", "be", "constitute", "settle", "invent", "conciliate", "make", "cook up", "pay off", "manufacture", "pay", "represent", "reconcile", "counterbalance", "comprise", "even out", "make up"]}, {"answer": "make_water", "hint": "synonyms for make water", "clues": ["puddle", "make", "wee-wee", "pee-pee", "pass water", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "make water"]}, {"answer": "make_whoopie", "hint": "synonyms for make whoopie", "clues": ["make merry", "wassail", "whoop it up", "make happy", "revel", "racket", "jollify", "make whoopie"]}, {"answer": "maltreat", "hint": "synonyms for maltreat", "clues": ["step", "abuse", "mistreat", "ill-treat", "ill-use", "maltreat"]}, {"answer": "malversate", "hint": "synonyms for malversate", "clues": ["embezzle", "misappropriate", "defalcate", "peculate", "malversate"]}, {"answer": "manage", "hint": "synonyms for manage", "clues": ["get by", "deal", "pull off", "make out", "supervise", "wangle", "grapple", "oversee", "carry off", "contend", "care", "make do", "negociate", "handle", "superintend", "cope", "do", "finagle", "bring off", "wield", "manage"]}, {"answer": "manipulate", "hint": "synonyms for manipulate", "clues": ["control", "keep in line", "pull strings", "falsify", "rig", "fudge", "cook", "misrepresent", "wangle", "pull wires", "fake", "manipulate"]}, {"answer": "manoeuver", "hint": "synonyms for manoeuver", "clues": ["guide", "channelize", "steer", "operate", "head", "maneuver", "point", "direct", "manoeuvre"]}, {"answer": "march_on", "hint": "synonyms for march on", "clues": ["pass on", "move on", "progress", "go on", "advance", "march on"]}, {"answer": "mark_off", "hint": "synonyms for mark off", "clues": ["mark out", "check off", "tick off", "mark", "check", "tick", "mark off"]}, {"answer": "marry", "hint": "synonyms for marry", "clues": ["splice", "wed", "get married", "espouse", "tie", "hook up with", "get hitched with", "conjoin", "marry"]}, {"answer": "masturbate", "hint": "synonyms for masturbate", "clues": ["fuck off", "jerk off", "wank", "she-bop", "jack off", "masturbate"]}, {"answer": "mat_up", "hint": "synonyms for mat up", "clues": ["matte up", "felt up", "matte", "felt", "mat", "matt-up"]}, {"answer": "matt-up", "hint": "synonyms for matt-up", "clues": ["mat up", "felt up", "matte", "felt", "mat", "matt-up"]}, {"answer": "matte_up", "hint": "synonyms for matte up", "clues": ["mat up", "felt up", "matte", "felt", "mat", "matt-up"]}, {"answer": "maturate", "hint": "synonyms for maturate", "clues": ["fester", "mature", "get on", "age", "senesce", "grow", "suppurate"]}, {"answer": "maunder", "hint": "synonyms for maunder", "clues": ["prattle", "palaver", "chatter", "mussitate", "tittle-tattle", "mutter", "twaddle", "prate", "clack", "gabble", "blab", "blabber", "tattle", "gibber", "mumble", "piffle", "maunder"]}, {"answer": "meditate", "hint": "synonyms for meditate", "clues": ["muse", "reflect", "ponder", "contemplate", "mull", "speculate", "mull over", "study", "think over", "ruminate", "chew over", "excogitate", "meditate"]}, {"answer": "melanise", "hint": "synonyms for melanise", "clues": ["nigrify", "melanize", "black", "blacken"]}, {"answer": "melanize", "hint": "synonyms for melanize", "clues": ["nigrify", "blacken", "black", "melanise"]}, {"answer": "meliorate", "hint": "synonyms for meliorate", "clues": ["amend", "ameliorate", "improve", "better"]}, {"answer": "melt_off", "hint": "synonyms for melt off", "clues": ["thin", "slim down", "slim", "lose weight", "reduce", "slenderize", "melt off"]}, {"answer": "memorialise", "hint": "synonyms for memorialise", "clues": ["immortalise", "record", "memorialize", "commemorate"]}, {"answer": "memorialize", "hint": "synonyms for memorialize", "clues": ["immortalise", "memorialise", "record", "commemorate"]}, {"answer": "merge", "hint": "synonyms for merge", "clues": ["blend", "mix", "immix", "meld", "commingle", "conflate", "combine", "unify", "unite", "coalesce", "fuse", "flux", "merge"]}, {"answer": "mesmerise", "hint": "synonyms for mesmerise", "clues": ["spellbind", "bewitch", "mesmerize", "hypnotise", "magnetize"]}, {"answer": "mesmerize", "hint": "synonyms for mesmerize", "clues": ["spellbind", "mesmerise", "bewitch", "hypnotise", "magnetize"]}, {"answer": "mess_about", "hint": "synonyms for mess about", "clues": ["lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "tarry", "footle", "mill about", "hang around", "lounge", "mess about"]}, {"answer": "mess_around", "hint": "synonyms for mess around", "clues": ["muck around", "putter", "muck about", "monkey", "monkey around", "tinker", "potter", "mess around"]}, {"answer": "mess_up", "hint": "synonyms for mess up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "rumple", "mess", "ruffle", "mishandle", "screw up", "bodge", "ruffle up", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "mess up"]}, {"answer": "metamorphose", "hint": "synonyms for metamorphose", "clues": ["transfigure", "transmute", "transform", "transmogrify", "metamorphose"]}, {"answer": "mete_out", "hint": "synonyms for mete out", "clues": ["dispense", "administer", "allot", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "mete out"]}, {"answer": "micturate", "hint": "synonyms for micturate", "clues": ["puddle", "make", "make water", "wee-wee", "pee-pee", "pass water", "take a leak", "pee", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "micturate"]}, {"answer": "mill_about", "hint": "synonyms for mill about", "clues": ["mess about", "lallygag", "loaf", "loiter", "mill around", "lurk", "linger", "mill", "tarry", "footle", "hang around", "lounge", "mill about"]}, {"answer": "mill_around", "hint": "synonyms for mill around", "clues": ["mess about", "lallygag", "loaf", "loiter", "lurk", "linger", "mill", "tarry", "footle", "mill about", "hang around", "lounge", "mill around"]}, {"answer": "mingle", "hint": "synonyms for mingle", "clues": ["unify", "mix", "commix", "jumble", "amalgamate", "mingle"]}, {"answer": "minimize", "hint": "synonyms for minimize", "clues": ["understate", "denigrate", "minimise", "belittle", "downplay", "derogate"]}, {"answer": "misapprehend", "hint": "synonyms for misapprehend", "clues": ["be amiss", "misconceive", "misinterpret", "misunderstand", "misconstrue", "misapprehend"]}, {"answer": "misappropriate", "hint": "synonyms for misappropriate", "clues": ["embezzle", "malversate", "defalcate", "peculate", "misappropriate"]}, {"answer": "misconceive", "hint": "synonyms for misconceive", "clues": ["be amiss", "misinterpret", "misapprehend", "misunderstand", "misconstrue", "misconceive"]}, {"answer": "misconstrue", "hint": "synonyms for misconstrue", "clues": ["be amiss", "misconceive", "misinterpret", "misapprehend", "misunderstand", "misconstrue"]}, {"answer": "misdirect", "hint": "synonyms for misdirect", "clues": ["misaddress", "vitiate", "subvert", "misguide", "debase", "pervert", "profane", "corrupt", "deprave", "demoralise", "lead astray", "mislead", "debauch", "misdirect"]}, {"answer": "misguide", "hint": "synonyms for misguide", "clues": ["lead astray", "mislead", "misadvise", "misdirect", "misguide"]}, {"answer": "mishandle", "hint": "synonyms for mishandle", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "screw up", "bodge", "fumble", "louse up", "foul up", "mismanage", "misconduct", "ball up", "blow", "botch", "mishandle"]}, {"answer": "misinterpret", "hint": "synonyms for misinterpret", "clues": ["be amiss", "misconceive", "misconstrue", "misapprehend", "misunderstand", "misread", "misinterpret"]}, {"answer": "mislead", "hint": "synonyms for mislead", "clues": ["lead astray", "misinform", "misdirect", "misguide", "mislead"]}, {"answer": "misrepresent", "hint": "synonyms for misrepresent", "clues": ["fake", "falsify", "cook", "wangle", "manipulate", "belie", "fudge", "misrepresent"]}, {"answer": "mistreat", "hint": "synonyms for mistreat", "clues": ["step", "abuse", "maltreat", "ill-treat", "ill-use", "mistreat"]}, {"answer": "misunderstand", "hint": "synonyms for misunderstand", "clues": ["be amiss", "misconceive", "misinterpret", "misapprehend", "misconstrue", "misunderstand"]}, {"answer": "mobilise", "hint": "synonyms for mobilise", "clues": ["circulate", "call up", "rally", "mobilize", "marshal", "summon"]}, {"answer": "mobilize", "hint": "synonyms for mobilize", "clues": ["circulate", "call up", "rally", "mobilise", "marshal", "summon"]}, {"answer": "moil", "hint": "synonyms for moil", "clues": ["labor", "grind", "drudge", "boil", "churn", "dig", "fag", "travail", "roil", "toil", "moil"]}, {"answer": "molest", "hint": "synonyms for molest", "clues": ["chivvy", "chevy", "harass", "harry", "provoke", "hassle", "beset", "plague", "molest"]}, {"answer": "mollify", "hint": "synonyms for mollify", "clues": ["gentle", "appease", "gruntle", "placate", "temper", "pacify", "season", "assuage", "lenify", "conciliate", "mollify"]}, {"answer": "monish", "hint": "synonyms for monish", "clues": ["caution", "warn", "discourage", "admonish"]}, {"answer": "monkey_around", "hint": "synonyms for monkey around", "clues": ["muck around", "putter", "potter", "monkey", "muck about", "tinker", "mess around", "monkey around"]}, {"answer": "moon_around", "hint": "synonyms for moon around", "clues": ["moon on", "mope", "moon about", "moon", "moon around"]}, {"answer": "mortify", "hint": "synonyms for mortify", "clues": ["necrose", "abase", "gangrene", "crucify", "subdue", "humble", "chagrin", "humiliate", "sphacelate", "mortify"]}, {"answer": "motivate", "hint": "synonyms for motivate", "clues": ["incite", "prompt", "actuate", "move", "propel", "motivate"]}, {"answer": "mount_up", "hint": "synonyms for mount up", "clues": ["get on", "hop on", "bestride", "climb on", "jump on", "mount", "mount up"]}, {"answer": "mouth_off", "hint": "synonyms for mouth off", "clues": ["rave", "jabber", "rant", "rabbit on", "spout", "mouth off"]}, {"answer": "move_back", "hint": "synonyms for move back", "clues": ["pull back", "retreat", "recede", "draw back", "retire", "withdraw", "pull away", "move back"]}, {"answer": "move_into", "hint": "synonyms for move into", "clues": ["come in", "enter", "get into", "go in", "go into", "move into"]}, {"answer": "move_on", "hint": "synonyms for move on", "clues": ["pass on", "march on", "progress", "go on", "advance", "move on"]}, {"answer": "move_over", "hint": "synonyms for move over", "clues": ["give way", "ease up", "give", "yield", "move over"]}, {"answer": "move_through", "hint": "synonyms for move through", "clues": ["pass over", "transit", "pass through", "pass across", "move through"]}, {"answer": "move_up", "hint": "synonyms for move up", "clues": ["come up", "uprise", "rise", "ascend", "go up", "lift", "move up"]}, {"answer": "muck_about", "hint": "synonyms for muck about", "clues": ["muck around", "putter", "potter", "monkey", "monkey around", "tinker", "mess around", "muck about"]}, {"answer": "muck_around", "hint": "synonyms for muck around", "clues": ["putter", "potter", "monkey", "muck about", "monkey around", "tinker", "mess around", "muck around"]}, {"answer": "muck_up", "hint": "synonyms for muck up", "clues": ["bumble", "botch up", "bollix", "spoil", "bollocks", "mire", "bobble", "muff", "flub", "bollix up", "fuck up", "fluff", "bollocks up", "bungle", "mess up", "mishandle", "screw up", "bodge", "fumble", "louse up", "mud", "foul up", "muck", "ball up", "blow", "botch"]}, {"answer": "mug_up", "hint": "synonyms for mug up", "clues": ["swot up", "grind away", "bone up", "drum", "cram", "bone", "swot", "get up", "mug up"]}, {"answer": "mull_over", "hint": "synonyms for mull over", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "think over", "ruminate", "chew over", "excogitate", "mull over"]}, {"answer": "muster_up", "hint": "synonyms for muster up", "clues": ["muster", "rally", "come up", "summon", "muster up"]}, {"answer": "mutilate", "hint": "synonyms for mutilate", "clues": ["mangle", "murder", "cut up", "mar", "mutilate"]}, {"answer": "mystify", "hint": "synonyms for mystify", "clues": ["get", "stupefy", "flummox", "gravel", "vex", "amaze", "bewilder", "nonplus", "puzzle", "perplex", "baffle", "dumbfound", "pose", "beat", "stick", "mystify"]}, {"answer": "nab", "hint": "synonyms for nab", "clues": ["pick up", "arrest", "nail", "collar", "apprehend", "cop", "nab"]}, {"answer": "nail_down", "hint": "synonyms for nail down", "clues": ["narrow", "narrow down", "nail", "pin down", "specify", "finalise", "settle", "peg down", "peg", "nail down"]}, {"answer": "narrow_down", "hint": "synonyms for narrow down", "clues": ["nail down", "narrow", "pin down", "specify", "specialise", "peg down", "narrow down"]}, {"answer": "natter", "hint": "synonyms for natter", "clues": ["gossip", "chitchat", "chatter", "shoot the breeze", "claver", "confabulate", "chew the fat", "jaw", "visit", "confab", "chat", "chaffer", "natter"]}, {"answer": "naturalise", "hint": "synonyms for naturalise", "clues": ["domesticate", "tame", "naturalize", "cultivate"]}, {"answer": "naturalize", "hint": "synonyms for naturalize", "clues": ["domesticate", "tame", "naturalise", "cultivate"]}, {"answer": "nauseate", "hint": "synonyms for nauseate", "clues": ["disgust", "revolt", "turn one's stomach", "sicken", "churn up", "nauseate"]}, {"answer": "neaten", "hint": "synonyms for neaten", "clues": ["tidy", "straighten out", "straighten", "groom", "clean up", "square away", "tidy up", "neaten"]}, {"answer": "necessitate", "hint": "synonyms for necessitate", "clues": ["need", "postulate", "ask", "take", "demand", "require", "involve", "call for", "necessitate"]}, {"answer": "negate", "hint": "synonyms for negate", "clues": ["nullify", "neutralize", "contravene", "contradict", "belie", "negate"]}, {"answer": "negociate", "hint": "synonyms for negociate", "clues": ["bring off", "negotiate", "manage", "carry off", "pull off", "talk terms"]}, {"answer": "neutralise", "hint": "synonyms for neutralise", "clues": ["nullify", "liquidate", "negate", "neutralize", "knock off", "waste", "do in"]}, {"answer": "neutralize", "hint": "synonyms for neutralize", "clues": ["nullify", "countervail", "neutralise", "do in", "liquidate", "counteract", "counterbalance", "knock off", "waste", "negate"]}, {"answer": "niggle", "hint": "synonyms for niggle", "clues": ["pettifog", "bicker", "fret", "brabble", "fuss", "squabble", "quibble", "niggle"]}, {"answer": "nigrify", "hint": "synonyms for nigrify", "clues": ["blacken", "melanize", "black", "nigrify"]}, {"answer": "nobble", "hint": "synonyms for nobble", "clues": ["victimize", "snatch", "abstract", "diddle", "swindle", "filch", "hook", "rook", "pinch", "con", "goldbrick", "sneak", "lift", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "swipe", "abduct", "kidnap", "pilfer", "purloin", "short-change", "cabbage", "gip", "scam", "snarf", "nobble"]}, {"answer": "nod_off", "hint": "synonyms for nod off", "clues": ["dope off", "fall asleep", "drift off", "drowse off", "flake out", "nod off"]}, {"answer": "nominate", "hint": "synonyms for nominate", "clues": ["constitute", "put up", "put forward", "make", "name", "appoint", "propose", "nominate"]}, {"answer": "nonplus", "hint": "synonyms for nonplus", "clues": ["get", "stupefy", "flummox", "gravel", "vex", "amaze", "bewilder", "puzzle", "perplex", "baffle", "dumbfound", "pose", "beat", "stick", "mystify", "nonplus"]}, {"answer": "normalize", "hint": "synonyms for normalize", "clues": ["normalise", "anneal", "renormalize", "temper"]}, {"answer": "notify", "hint": "synonyms for notify", "clues": ["apprise", "advise", "send word", "give notice", "notify"]}, {"answer": "nourish", "hint": "synonyms for nourish", "clues": ["nutrify", "sustain", "nurture", "aliment", "nourish"]}, {"answer": "nullify", "hint": "synonyms for nullify", "clues": ["invalidate", "avoid", "neutralize", "quash", "annul", "negate", "nullify"]}, {"answer": "nuzzle", "hint": "synonyms for nuzzle", "clues": ["cuddle", "nose", "nest", "draw close", "nestle", "snuggle", "nuzzle"]}, {"answer": "objectify", "hint": "synonyms for objectify", "clues": ["exteriorize", "depersonalize", "externalise", "objectify"]}, {"answer": "objurgate", "hint": "synonyms for objurgate", "clues": ["condemn", "correct", "excoriate", "decry", "chastise", "chasten", "castigate", "reprobate", "objurgate"]}, {"answer": "oblige", "hint": "synonyms for oblige", "clues": ["bind", "obligate", "accommodate", "hold", "compel"]}, {"answer": "obnubilate", "hint": "synonyms for obnubilate", "clues": ["cloud", "haze over", "confuse", "fog", "blur", "mist", "obscure", "befog", "becloud", "obnubilate"]}, {"answer": "observe", "hint": "synonyms for observe", "clues": ["respect", "abide by", "keep", "honor", "watch", "notice", "remark", "celebrate", "take note", "follow", "keep an eye on", "note", "mention", "watch over", "discover", "maintain", "find", "detect", "observe"]}, {"answer": "obstruct", "hint": "synonyms for obstruct", "clues": ["stymy", "stymie", "block", "close up", "impede", "embarrass", "blockade", "hinder", "jam", "occlude", "obturate", "obstruct"]}, {"answer": "obtain", "hint": "synonyms for obtain", "clues": ["incur", "prevail", "get", "hold", "receive", "find", "obtain"]}, {"answer": "obturate", "hint": "synonyms for obturate", "clues": ["jam", "obstruct", "occlude", "block", "close up", "impede", "obturate"]}, {"answer": "obviate", "hint": "synonyms for obviate", "clues": ["avoid", "stave off", "forfend", "avert", "ward off", "head off", "rid of", "deflect", "fend off", "debar", "eliminate", "obviate"]}, {"answer": "occlude", "hint": "synonyms for occlude", "clues": ["jam", "obstruct", "block", "close up", "obturate", "impede", "occlude"]}, {"answer": "occupy", "hint": "synonyms for occupy", "clues": ["absorb", "busy", "take", "engage", "use up", "worry", "engross", "fill", "concern", "interest", "invade", "reside", "lodge in", "occupy"]}, {"answer": "occur", "hint": "synonyms for occur", "clues": ["hap", "fall out", "take place", "happen", "come about", "pass off", "come", "go on", "pass", "occur"]}, {"answer": "offend", "hint": "synonyms for offend", "clues": ["break", "appall", "breach", "spite", "infract", "shock", "scandalise", "outrage", "wound", "violate", "injure", "hurt", "bruise", "go against", "pique", "transgress", "offend"]}, {"answer": "omit", "hint": "synonyms for omit", "clues": ["exclude", "except", "drop", "overleap", "pretermit", "leave out", "neglect", "leave off", "overlook", "take out", "miss", "omit"]}, {"answer": "ooze_out", "hint": "synonyms for ooze out", "clues": ["ooze", "exudate", "exude", "transude", "ooze out"]}, {"answer": "operate", "hint": "synonyms for operate", "clues": ["control", "lock", "go", "operate on", "function", "run", "engage", "mesh", "maneuver", "work", "manoeuvre", "operate"]}, {"answer": "opine", "hint": "synonyms for opine", "clues": ["speak out", "suppose", "guess", "reckon", "animadvert", "think", "imagine", "sound off", "speak up", "opine"]}, {"answer": "oppose", "hint": "synonyms for oppose", "clues": ["pit", "match", "fight", "defend", "contradict", "play off", "react", "counterbalance", "fight back", "fight down", "controvert", "oppose"]}, {"answer": "orchestrate", "hint": "synonyms for orchestrate", "clues": ["organise", "mastermind", "engineer", "direct", "orchestrate"]}, {"answer": "ordain", "hint": "synonyms for ordain", "clues": ["consecrate", "order", "ordinate", "enact", "ordain"]}, {"answer": "organise", "hint": "synonyms for organise", "clues": ["orchestrate", "form", "devise", "get up", "direct", "machinate", "coordinate", "unionize", "mastermind", "prepare", "engineer", "organize"]}, {"answer": "organize", "hint": "synonyms for organize", "clues": ["organise", "orchestrate", "form", "devise", "machinate", "unionise", "coordinate", "mastermind", "engineer", "direct", "prepare", "get up"]}, {"answer": "originate", "hint": "synonyms for originate", "clues": ["develop", "arise", "start", "spring up", "uprise", "initiate", "grow", "originate"]}, {"answer": "ostentate", "hint": "synonyms for ostentate", "clues": ["swank", "flaunt", "flash", "show off", "ostentate"]}, {"answer": "ostracise", "hint": "synonyms for ostracise", "clues": ["blackball", "banish", "shun", "ostracize", "ban", "cast out"]}, {"answer": "ostracize", "hint": "synonyms for ostracize", "clues": ["blackball", "banish", "shun", "ostracise", "ban", "cast out"]}, {"answer": "oust", "hint": "synonyms for oust", "clues": ["drum out", "boot out", "expel", "kick out", "throw out", "oust"]}, {"answer": "outdo", "hint": "synonyms for outdo", "clues": ["surpass", "best", "outstrip", "surmount", "outflank", "trump", "exceed", "outmatch", "outperform", "scoop", "outgo", "outdo"]}, {"answer": "outflank", "hint": "synonyms for outflank", "clues": ["best", "scoop", "outdo", "trump", "go around", "outflank"]}, {"answer": "outfox", "hint": "synonyms for outfox", "clues": ["circumvent", "overreach", "outwit", "beat", "outsmart", "outfox"]}, {"answer": "outmatch", "hint": "synonyms for outmatch", "clues": ["exceed", "surpass", "outperform", "outdo", "outstrip", "surmount", "outgo", "outmatch"]}, {"answer": "outperform", "hint": "synonyms for outperform", "clues": ["exceed", "outmatch", "surpass", "outdo", "outstrip", "surmount", "outgo", "outperform"]}, {"answer": "outsmart", "hint": "synonyms for outsmart", "clues": ["outmanoeuvre", "circumvent", "overreach", "outwit", "outfox", "beat", "outsmart"]}, {"answer": "outstrip", "hint": "synonyms for outstrip", "clues": ["surpass", "outdo", "surmount", "outdistance", "exceed", "outmatch", "distance", "outperform", "outgo", "outstrip"]}, {"answer": "outwear", "hint": "synonyms for outwear", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "wear down", "tire", "wear upon", "fag out", "outwear"]}, {"answer": "outwit", "hint": "synonyms for outwit", "clues": ["circumvent", "overreach", "outfox", "beat", "outsmart", "outwit"]}, {"answer": "overcloud", "hint": "synonyms for overcloud", "clues": ["bedim", "obscure", "cloud over", "cloud up", "overcloud"]}, {"answer": "overcome", "hint": "synonyms for overcome", "clues": ["get over", "get the better of", "master", "surmount", "sweep over", "defeat", "overpower", "subdue", "overtake", "have the best", "get the best", "overwhelm", "whelm", "overcome"]}, {"answer": "overdraw", "hint": "synonyms for overdraw", "clues": ["amplify", "exaggerate", "hyperbolize", "magnify", "overstate", "overdraw"]}, {"answer": "overdress", "hint": "synonyms for overdress", "clues": ["fig up", "deck up", "tog up", "attire", "deck out", "dress up", "overclothe", "trick out", "fig out", "fancy up", "tog out", "gussy up", "prink", "trick up", "get up", "overdress"]}, {"answer": "overeat", "hint": "synonyms for overeat", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "overeat"]}, {"answer": "overgorge", "hint": "synonyms for overgorge", "clues": ["gormandize", "pig out", "ingurgitate", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "overgorge"]}, {"answer": "overindulge", "hint": "synonyms for overindulge", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "overindulge"]}, {"answer": "overleap", "hint": "synonyms for overleap", "clues": ["drop", "vault", "pretermit", "leave out", "neglect", "overlook", "omit", "miss", "overleap"]}, {"answer": "overpower", "hint": "synonyms for overpower", "clues": ["sweep over", "overtake", "whelm", "overmaster", "overwhelm", "overcome", "overpower"]}, {"answer": "overreach", "hint": "synonyms for overreach", "clues": ["circumvent", "outwit", "outfox", "beat", "outsmart", "overreach"]}, {"answer": "overrule", "hint": "synonyms for overrule", "clues": ["overthrow", "overturn", "reverse", "override", "overrule"]}, {"answer": "overshadow", "hint": "synonyms for overshadow", "clues": ["dominate", "shadow", "dwarf", "eclipse", "overshadow"]}, {"answer": "overstate", "hint": "synonyms for overstate", "clues": ["exaggerate", "hyperbolize", "magnify", "overdraw", "amplify", "overstate"]}, {"answer": "overstep", "hint": "synonyms for overstep", "clues": ["exceed", "go past", "transcend", "trespass", "pass", "top", "transgress", "overstep"]}, {"answer": "overtake", "hint": "synonyms for overtake", "clues": ["overhaul", "catch up with", "overcome", "sweep over", "overpower", "catch", "pass", "overwhelm", "whelm", "overtake"]}, {"answer": "overwhelm", "hint": "synonyms for overwhelm", "clues": ["deluge", "flood out", "overcome", "sweep over", "submerge", "drown", "overpower", "overtake", "whelm", "overmaster", "overwhelm"]}, {"answer": "pacify", "hint": "synonyms for pacify", "clues": ["gentle", "appease", "gruntle", "mollify", "placate", "assuage", "lenify", "conciliate", "pacify"]}, {"answer": "palliate", "hint": "synonyms for palliate", "clues": ["extenuate", "mitigate", "alleviate", "relieve", "assuage", "palliate"]}, {"answer": "palter", "hint": "synonyms for palter", "clues": ["beat around the bush", "equivocate", "tergiversate", "prevaricate", "palter"]}, {"answer": "pamper", "hint": "synonyms for pamper", "clues": ["baby", "cocker", "spoil", "featherbed", "indulge", "coddle", "cosset", "mollycoddle", "pamper"]}, {"answer": "parcel_out", "hint": "synonyms for parcel out", "clues": ["dispense", "administer", "allot", "mete out", "shell out", "lot", "deal", "deal out", "dish out", "dole out", "distribute", "parcel out"]}, {"answer": "pare", "hint": "synonyms for pare", "clues": ["pare down", "skin", "trim", "whittle", "peel", "pare"]}, {"answer": "pass_across", "hint": "synonyms for pass across", "clues": ["move through", "transit", "pass through", "pass over", "pass across"]}, {"answer": "pass_along", "hint": "synonyms for pass along", "clues": ["pass on", "communicate", "pass", "put across", "pass along"]}, {"answer": "pass_around", "hint": "synonyms for pass around", "clues": ["circulate", "pass on", "diffuse", "circularize", "spread", "broadcast", "propagate", "disseminate", "disperse", "distribute", "pass around"]}, {"answer": "pass_away", "hint": "synonyms for pass away", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "die", "pass", "cash in one's chips", "pass away"]}, {"answer": "pass_by", "hint": "synonyms for pass by", "clues": ["go by", "travel by", "go past", "surpass", "pass", "pass by"]}, {"answer": "pass_off", "hint": "synonyms for pass off", "clues": ["hap", "evanesce", "occur", "breathe", "fall out", "take place", "happen", "blow over", "come about", "fade", "go on", "pass", "fleet", "emit", "pass off"]}, {"answer": "pass_on", "hint": "synonyms for pass on", "clues": ["circulate", "pass along", "progress", "pass around", "submit", "hand", "march on", "advance", "impart", "move on", "communicate", "leave", "put across", "give", "reach", "go on", "pass", "relegate", "turn over", "distribute", "pass on"]}, {"answer": "pass_out", "hint": "synonyms for pass out", "clues": ["zonk out", "conk", "faint", "give out", "black out", "distribute", "swoon", "hand out", "pass out"]}, {"answer": "pass_over", "hint": "synonyms for pass over", "clues": ["get across", "get over", "cross", "skip", "transit", "cover", "move through", "jump", "track", "cut through", "wipe", "cut across", "pass through", "pass across", "overfly", "traverse", "skip over", "pass over"]}, {"answer": "pass_through", "hint": "synonyms for pass through", "clues": ["infiltrate", "transit", "pass across", "move through", "pass over", "pass through"]}, {"answer": "pass_up", "hint": "synonyms for pass up", "clues": ["turn down", "decline", "reject", "refuse", "pass up"]}, {"answer": "pass_water", "hint": "synonyms for pass water", "clues": ["puddle", "make", "make water", "wee-wee", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "pass water"]}, {"answer": "pass_with_flying_colors", "hint": "synonyms for pass with flying colors", "clues": ["sweep through", "breeze through", "nail", "ace", "sail through", "pass with flying colors"]}, {"answer": "patch_up", "hint": "synonyms for patch up", "clues": ["make up", "patch", "conciliate", "reconcile", "settle", "patch up"]}, {"answer": "patronise", "hint": "synonyms for patronise", "clues": ["support", "condescend", "shop at", "buy at", "frequent", "patronage", "keep going", "patronize", "sponsor", "shop"]}, {"answer": "patronize", "hint": "synonyms for patronize", "clues": ["support", "patronise", "condescend", "shop at", "buy at", "shop", "frequent", "patronage", "keep going", "sponsor"]}, {"answer": "pay_back", "hint": "synonyms for pay back", "clues": ["fix", "get", "repay", "pay off", "reward", "pay back"]}, {"answer": "pay_heed", "hint": "synonyms for pay heed", "clues": ["hang", "give ear", "advert", "attend", "pay heed"]}, {"answer": "pay_off", "hint": "synonyms for pay off", "clues": ["make up", "buy off", "compensate", "redeem", "pay", "pay back", "liquidate", "fix", "get", "pay off"]}, {"answer": "peculate", "hint": "synonyms for peculate", "clues": ["embezzle", "malversate", "defalcate", "misappropriate", "peculate"]}, {"answer": "peddle", "hint": "synonyms for peddle", "clues": ["pitch", "vend", "monger", "huckster", "hawk", "peddle"]}, {"answer": "pee-pee", "hint": "synonyms for pee-pee", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "pee-pee"]}, {"answer": "peel_off", "hint": "synonyms for peel off", "clues": ["flake off", "flake", "desquamate", "peel", "peel off"]}, {"answer": "peg_away", "hint": "synonyms for peg away", "clues": ["slog", "plug away", "keep one's nose to the grindstone", "keep one's shoulder to the wheel", "peg away"]}, {"answer": "peg_down", "hint": "synonyms for peg down", "clues": ["nail down", "narrow", "narrow down", "pin down", "specify", "peg", "peg down"]}, {"answer": "pelt_along", "hint": "synonyms for pelt along", "clues": ["hasten", "speed", "bucket along", "race", "rush", "step on it", "belt along", "rush along", "hotfoot", "hie", "cannonball along"]}, {"answer": "penetrate", "hint": "synonyms for penetrate", "clues": ["bottom", "dawn", "get across", "diffuse", "fall into place", "imbue", "sink in", "pervade", "click", "permeate", "infiltrate", "get through", "interpenetrate", "come home", "fathom", "riddle", "perforate", "penetrate"]}, {"answer": "pep_up", "hint": "synonyms for pep up", "clues": ["inspire", "jazz up", "juice up", "ginger up", "exhort", "urge on", "barrack", "urge", "cheer", "root on", "pep up"]}, {"answer": "perish", "hint": "synonyms for perish", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "perish"]}, {"answer": "perk_up", "hint": "synonyms for perk up", "clues": ["percolate", "gain vigor", "arouse", "stimulate", "brace", "perk", "pick up", "energise", "perk up"]}, {"answer": "permeate", "hint": "synonyms for permeate", "clues": ["percolate", "diffuse", "imbue", "sink in", "pervade", "interpenetrate", "penetrate", "riddle", "filter", "permeate"]}, {"answer": "perplex", "hint": "synonyms for perplex", "clues": ["get", "stupefy", "complicate", "flummox", "gravel", "vex", "amaze", "bewilder", "nonplus", "puzzle", "baffle", "dumbfound", "pose", "beat", "stick", "mystify", "perplex"]}, {"answer": "persevere", "hint": "synonyms for persevere", "clues": ["hang in", "hold on", "persist", "persevere"]}, {"answer": "persist", "hint": "synonyms for persist", "clues": ["stay", "hang in", "endure", "run", "die hard", "remain", "prevail", "hold on", "persevere", "persist"]}, {"answer": "personify", "hint": "synonyms for personify", "clues": ["personate", "embody", "be", "body", "personify"]}, {"answer": "pertain", "hint": "synonyms for pertain", "clues": ["refer", "touch on", "relate", "have-to doe with", "touch", "come to", "appertain", "bear on", "concern"]}, {"answer": "perturb", "hint": "synonyms for perturb", "clues": ["cark", "trouble", "derange", "throw out of kilter", "unhinge", "disquiet", "distract", "disorder", "perturb"]}, {"answer": "pervade", "hint": "synonyms for pervade", "clues": ["permeate", "interpenetrate", "diffuse", "penetrate", "imbue", "riddle", "pervade"]}, {"answer": "pester", "hint": "synonyms for pester", "clues": ["badger", "tease", "beleaguer", "bug", "pester"]}, {"answer": "peter_out", "hint": "synonyms for peter out", "clues": ["run down", "conk out", "run out", "fizzle out", "fizzle", "taper off", "poop out", "peter out"]}, {"answer": "pettifog", "hint": "synonyms for pettifog", "clues": ["niggle", "quibble", "brabble", "squabble", "bicker", "pettifog"]}, {"answer": "philander", "hint": "synonyms for philander", "clues": ["womanise", "flirt", "romance", "dally", "coquet", "mash", "chat up", "butterfly", "philander"]}, {"answer": "pick_at", "hint": "synonyms for pick at", "clues": ["pluck at", "pull at", "disparage", "peck at", "peck", "belittle"]}, {"answer": "pick_out", "hint": "synonyms for pick out", "clues": ["recognise", "choose", "select", "spot", "take", "tell apart", "make out", "discern", "distinguish", "pick out"]}, {"answer": "pick_up", "hint": "synonyms for pick up", "clues": ["get wind", "get a line", "percolate", "learn", "apprehend", "gain vigor", "get word", "gather up", "peck", "perk", "arrest", "perk up", "receive", "call for", "lift up", "intoxicate", "uplift", "hear", "collar", "nail", "turn around", "elate", "discover", "find out", "see", "catch", "cop", "nab", "collect", "pick up"]}, {"answer": "piddle_away", "hint": "synonyms for piddle away", "clues": ["wanton away", "trifle", "wanton", "piddle", "piddle away"]}, {"answer": "pig_out", "hint": "synonyms for pig out", "clues": ["gormandize", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "scarf out", "glut", "gorge", "englut", "stuff", "engorge", "pig out"]}, {"answer": "pile_up", "hint": "synonyms for pile up", "clues": ["amass", "cumulate", "hoard", "gather", "compile", "conglomerate", "heap up", "stack up", "roll up", "collect", "pile up"]}, {"answer": "pilfer", "hint": "synonyms for pilfer", "clues": ["swipe", "abstract", "nobble", "sneak", "purloin", "cabbage", "filch", "hook", "snarf", "pinch", "lift", "pilfer"]}, {"answer": "pin_down", "hint": "synonyms for pin down", "clues": ["nail down", "narrow", "narrow down", "trap", "pin up", "specify", "peg down", "pin down"]}, {"answer": "pipe_down", "hint": "synonyms for pipe down", "clues": ["quiet", "hush", "quiet down", "quiesce", "quieten", "pipe down"]}, {"answer": "pitch_into", "hint": "synonyms for pitch into", "clues": ["lay into", "tear into", "lace into", "pitch into"]}, {"answer": "placate", "hint": "synonyms for placate", "clues": ["gentle", "appease", "gruntle", "mollify", "pacify", "assuage", "lenify", "conciliate", "placate"]}, {"answer": "play_a_joke_on", "hint": "synonyms for play a joke on", "clues": ["pull someone's leg", "pull a fast one on", "trick", "fox", "fob", "flim-flam", "play a trick on", "hoax", "play tricks", "play a joke on"]}, {"answer": "play_a_trick_on", "hint": "synonyms for play a trick on", "clues": ["play a joke on", "flim-flam", "pull a fast one on", "trick", "fox", "fob", "play tricks", "play a trick on"]}, {"answer": "play_false", "hint": "synonyms for play false", "clues": ["lead by the nose", "bamboozle", "snow", "pull the wool over someone's eyes", "hoodwink", "play false"]}, {"answer": "play_out", "hint": "synonyms for play out", "clues": ["run down", "exhaust", "sap", "tire", "play out"]}, {"answer": "play_tricks", "hint": "synonyms for play tricks", "clues": ["play a joke on", "flim-flam", "pull a fast one on", "play a trick on", "trick", "fox", "fob", "play tricks"]}, {"answer": "play_up", "hint": "synonyms for play up", "clues": ["cozy up", "shine up", "cotton up", "suck up", "foreground", "highlight", "sidle up", "spotlight", "play up"]}, {"answer": "plug_away", "hint": "synonyms for plug away", "clues": ["peg away", "keep one's shoulder to the wheel", "plug", "keep one's nose to the grindstone", "slog", "plug away"]}, {"answer": "plump_down", "hint": "synonyms for plump down", "clues": ["plonk down", "plump", "flump", "plonk", "plop", "plunk", "plank", "plump down"]}, {"answer": "plump_for", "hint": "synonyms for plump for", "clues": ["endorse", "support", "back", "plunk for", "plump for"]}, {"answer": "plump_out", "hint": "synonyms for plump out", "clues": ["fatten out", "plump", "fat", "fatten up", "fill out", "flesh out", "fatten", "plump out"]}, {"answer": "plunk_down", "hint": "synonyms for plunk down", "clues": ["plump", "plunk", "flump", "plump down", "plonk", "plop", "plank", "plunk down"]}, {"answer": "plunk_for", "hint": "synonyms for plunk for", "clues": ["endorse", "support", "plump for", "back", "plunk for"]}, {"answer": "point_out", "hint": "synonyms for point out", "clues": ["comment", "notice", "call attention", "signalize", "remark", "remonstrate", "point out"]}, {"answer": "poke_fun", "hint": "synonyms for poke fun", "clues": ["rib", "guy", "roast", "make fun", "jest at", "ridicule", "blackguard", "laugh at", "poke fun"]}, {"answer": "polish_off", "hint": "synonyms for polish off", "clues": ["wrap up", "finish up", "remove", "bump off", "hit", "off", "mop up", "clear up", "finish off", "get through", "finish", "eat up", "murder", "slay", "dispatch", "polish off"]}, {"answer": "polish_up", "hint": "synonyms for polish up", "clues": ["polish", "round", "brush up", "round off", "polish up"]}, {"answer": "ponder", "hint": "synonyms for ponder", "clues": ["muse", "reflect", "meditate", "contemplate", "mull", "speculate", "mull over", "think over", "ruminate", "chew over", "excogitate", "ponder"]}, {"answer": "pooh-pooh", "hint": "synonyms for pooh-pooh", "clues": ["turn down", "reject", "disdain", "spurn", "scorn", "freeze off", "pooh-pooh"]}, {"answer": "poop_out", "hint": "synonyms for poop out", "clues": ["run down", "conk out", "run out", "peter out", "poop out"]}, {"answer": "pop_off", "hint": "synonyms for pop off", "clues": ["decease", "go", "buy the farm", "choke", "snuff it", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "pop off"]}, {"answer": "pop_out", "hint": "synonyms for pop out", "clues": ["start", "bulge out", "pop", "come out", "bulge", "burst out", "protrude", "pop out"]}, {"answer": "portend", "hint": "synonyms for portend", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "prognosticate", "bode", "prefigure", "portend"]}, {"answer": "portion_out", "hint": "synonyms for portion out", "clues": ["share", "deal", "divvy up", "apportion", "portion out"]}, {"answer": "portray", "hint": "synonyms for portray", "clues": ["depict", "present", "limn", "impersonate", "portray"]}, {"answer": "postpone", "hint": "synonyms for postpone", "clues": ["hold over", "shelve", "remit", "prorogue", "set back", "put off", "defer", "table", "put over", "postpone"]}, {"answer": "pour", "hint": "synonyms for pour", "clues": ["rain buckets", "swarm", "pullulate", "teem", "pelt", "decant", "stream", "pour out", "rain cats and dogs", "pour"]}, {"answer": "pour_down", "hint": "synonyms for pour down", "clues": ["pop", "kill", "toss off", "drink down", "bolt down", "down", "pour down"]}, {"answer": "pour_out", "hint": "synonyms for pour out", "clues": ["effuse", "decant", "pour", "spill over", "spill out", "pour out"]}, {"answer": "practise", "hint": "synonyms for practise", "clues": ["drill", "exercise", "do", "rehearse", "practice"]}, {"answer": "precede", "hint": "synonyms for precede", "clues": ["predate", "antecede", "antedate", "preface", "introduce", "premise", "lead", "forgo", "come before", "precede"]}, {"answer": "preclude", "hint": "synonyms for preclude", "clues": ["close out", "rule out", "prevent", "foreclose", "forbid", "forestall", "preclude"]}, {"answer": "predate", "hint": "synonyms for predate", "clues": ["antecede", "antedate", "foredate", "prey", "forego", "raven", "precede", "predate"]}, {"answer": "predict", "hint": "synonyms for predict", "clues": ["forecast", "betoken", "auspicate", "presage", "anticipate", "omen", "prognosticate", "bode", "call", "augur", "prefigure", "foretell", "foreshadow", "forebode", "portend", "promise", "predict"]}, {"answer": "preen", "hint": "synonyms for preen", "clues": ["dress", "plume", "primp", "congratulate", "preen"]}, {"answer": "prefer", "hint": "synonyms for prefer", "clues": ["opt", "choose", "favor", "prefer"]}, {"answer": "prefigure", "hint": "synonyms for prefigure", "clues": ["forecast", "betoken", "auspicate", "presage", "augur", "foretell", "omen", "foreshadow", "predict", "portend", "prognosticate", "bode", "prefigure"]}, {"answer": "prepare", "hint": "synonyms for prepare", "clues": ["organise", "make", "train", "educate", "devise", "groom", "machinate", "gear up", "set up", "develop", "fix", "cook", "ready", "get up", "set", "prepare"]}, {"answer": "press_down_on", "hint": "synonyms for press down on", "clues": ["weigh down", "bear down", "drag down", "press down on"]}, {"answer": "press_out", "hint": "synonyms for press out", "clues": ["express", "stub out", "extinguish", "press", "crush out", "extract", "press out"]}, {"answer": "presume", "hint": "synonyms for presume", "clues": ["dare", "take for granted", "make bold", "assume", "presume"]}, {"answer": "pretermit", "hint": "synonyms for pretermit", "clues": ["miss", "drop", "overleap", "omit", "leave out", "neglect", "overlook", "pretermit"]}, {"answer": "prevail", "hint": "synonyms for prevail", "clues": ["dominate", "reign", "endure", "predominate", "run", "die hard", "rule", "obtain", "hold", "persist", "triumph", "prevail"]}, {"answer": "prevaricate", "hint": "synonyms for prevaricate", "clues": ["beat around the bush", "equivocate", "palter", "tergiversate", "prevaricate"]}, {"answer": "prevent", "hint": "synonyms for prevent", "clues": ["keep", "foreclose", "forbid", "forestall", "preclude", "prevent"]}, {"answer": "previse", "hint": "synonyms for previse", "clues": ["foreknow", "foresee", "forewarn", "anticipate", "previse"]}, {"answer": "prink", "hint": "synonyms for prink", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "trick up", "get up", "deck out", "dress up", "prink"]}, {"answer": "prise", "hint": "synonyms for prise", "clues": ["value", "respect", "pry", "lever", "esteem", "jimmy", "prize", "prise"]}, {"answer": "proceed", "hint": "synonyms for proceed", "clues": ["carry on", "continue", "keep", "go", "go forward", "go along", "go on", "move", "proceed"]}, {"answer": "proclaim", "hint": "synonyms for proclaim", "clues": ["glorify", "predicate", "promulgate", "extol", "exclaim", "exalt", "laud", "proclaim"]}, {"answer": "procrastinate", "hint": "synonyms for procrastinate", "clues": ["shillyshally", "dilly-dally", "drag one's heels", "drag one's feet", "stall", "procrastinate"]}, {"answer": "prognosticate", "hint": "synonyms for prognosticate", "clues": ["forecast", "betoken", "auspicate", "presage", "anticipate", "omen", "predict", "bode", "call", "augur", "prefigure", "foretell", "foreshadow", "forebode", "portend", "promise", "prognosticate"]}, {"answer": "prohibit", "hint": "synonyms for prohibit", "clues": ["interdict", "veto", "disallow", "nix", "forbid", "proscribe", "prohibit"]}, {"answer": "prolong", "hint": "synonyms for prolong", "clues": ["extend", "sustain", "keep up", "protract", "draw out", "prolong"]}, {"answer": "promote", "hint": "synonyms for promote", "clues": ["upgrade", "boost", "advertize", "elevate", "raise", "push", "encourage", "advance", "further", "kick upstairs", "promote"]}, {"answer": "pronounce", "hint": "synonyms for pronounce", "clues": ["say", "label", "judge", "articulate", "enounce", "sound out", "enunciate", "pronounce"]}, {"answer": "propagate", "hint": "synonyms for propagate", "clues": ["circulate", "diffuse", "circularize", "pass around", "spread", "broadcast", "disseminate", "disperse", "distribute", "propagate"]}, {"answer": "propel", "hint": "synonyms for propel", "clues": ["incite", "prompt", "motivate", "actuate", "move", "impel", "propel"]}, {"answer": "propose", "hint": "synonyms for propose", "clues": ["purport", "aim", "advise", "suggest", "purpose", "pop the question", "offer", "nominate", "declare oneself", "project"]}, {"answer": "prorogue", "hint": "synonyms for prorogue", "clues": ["hold over", "shelve", "remit", "set back", "put off", "defer", "table", "put over", "postpone", "prorogue"]}, {"answer": "proscribe", "hint": "synonyms for proscribe", "clues": ["interdict", "veto", "prohibit", "nix", "forbid", "disallow", "proscribe"]}, {"answer": "protrude", "hint": "synonyms for protrude", "clues": ["start", "jut", "pouch", "bulge out", "pop", "bulge", "come out", "jut out", "project", "stick out", "pop out", "protrude"]}, {"answer": "prove", "hint": "synonyms for prove", "clues": ["examine", "try out", "demonstrate", "evidence", "show", "try", "rise", "leaven", "turn out", "turn up", "test", "bear witness", "shew", "testify", "establish", "essay", "prove"]}, {"answer": "provide", "hint": "synonyms for provide", "clues": ["ply", "bring home the bacon", "cater", "furnish", "offer", "leave", "supply", "put up", "allow for", "allow", "render", "provide"]}, {"answer": "provoke", "hint": "synonyms for provoke", "clues": ["chivvy", "call forth", "arouse", "enkindle", "stimulate", "harass", "fire", "hassle", "kick up", "chevy", "elicit", "raise", "molest", "harry", "evoke", "beset", "plague", "provoke"]}, {"answer": "ptyalise", "hint": "synonyms for ptyalise", "clues": ["spit", "spue", "ptyalize", "spew"]}, {"answer": "ptyalize", "hint": "synonyms for ptyalize", "clues": ["spit", "ptyalise", "spue", "spew"]}, {"answer": "publicise", "hint": "synonyms for publicise", "clues": ["bare", "advertize", "air", "publicize"]}, {"answer": "publicize", "hint": "synonyms for publicize", "clues": ["bare", "publicise", "advertize", "air"]}, {"answer": "publish", "hint": "synonyms for publish", "clues": ["release", "print", "bring out", "issue", "write", "put out", "publish"]}, {"answer": "puff_up", "hint": "synonyms for puff up", "clues": ["puff out", "puff", "swell", "blow up", "puff up"]}, {"answer": "pull_a_fast_one_on", "hint": "synonyms for pull a fast one on", "clues": ["play a joke on", "flim-flam", "play a trick on", "trick", "fox", "fob", "play tricks", "pull a fast one on"]}, {"answer": "pull_ahead", "hint": "synonyms for pull ahead", "clues": ["get ahead", "win", "gain", "advance", "gain ground", "make headway", "pull ahead"]}, {"answer": "pull_away", "hint": "synonyms for pull away", "clues": ["pull back", "retreat", "recede", "draw back", "move back", "retire", "withdraw", "pull away"]}, {"answer": "pull_back", "hint": "synonyms for pull back", "clues": ["retreat", "draw", "crawfish out", "move back", "retire", "withdraw", "pull in one's horns", "back away", "recede", "draw back", "back out", "pull away", "crawfish", "pull back"]}, {"answer": "pull_down", "hint": "synonyms for pull down", "clues": ["take down", "knock down", "level", "dismantle", "down", "raze", "tear down", "cut down", "rase", "push down", "pull down"]}, {"answer": "pull_in", "hint": "synonyms for pull in", "clues": ["attract", "make", "gain", "draw in", "draw", "collect", "clear", "realize", "pull", "get in", "take in", "move in", "bring in", "earn", "pull in"]}, {"answer": "pull_in_one's_horns", "hint": "synonyms for pull in one's horns", "clues": ["pull back", "retreat", "crawfish", "crawfish out", "back out", "withdraw", "back away", "pull in one's horns"]}, {"answer": "pull_off", "hint": "synonyms for pull off", "clues": ["negociate", "manage", "draw away", "draw off", "pluck", "tweak", "pick off", "bring off", "carry off", "pull off"]}, {"answer": "pull_out", "hint": "synonyms for pull out", "clues": ["back off", "draw", "chicken out", "pull up", "extract", "back down", "get out", "pull", "draw out", "bow out", "take out", "pull out"]}, {"answer": "pull_round", "hint": "synonyms for pull round", "clues": ["make it", "survive", "pull through", "come through", "pull round"]}, {"answer": "pull_the_wool_over_someone's_eyes", "hint": "synonyms for pull the wool over someone's eyes", "clues": ["lead by the nose", "snow", "bamboozle", "play false", "hoodwink", "pull the wool over someone's eyes"]}, {"answer": "pull_through", "hint": "synonyms for pull through", "clues": ["make it", "carry through", "survive", "pull round", "come through", "bring through", "save", "pull through"]}, {"answer": "pull_up", "hint": "synonyms for pull up", "clues": ["straighten up", "extract", "pull out", "pull", "draw up", "draw out", "take out", "haul up", "pull up"]}, {"answer": "pullulate", "hint": "synonyms for pullulate", "clues": ["sprout", "swarm", "bourgeon", "shoot", "germinate", "teem", "spud", "stream", "pour", "burgeon forth", "pullulate"]}, {"answer": "pulsate", "hint": "synonyms for pulsate", "clues": ["pulse", "quiver", "beat", "throb", "pulsate"]}, {"answer": "pulverise", "hint": "synonyms for pulverise", "clues": ["powder", "powderize", "pulverize", "demolish"]}, {"answer": "pulverize", "hint": "synonyms for pulverize", "clues": ["pulverise", "powder", "demolish", "powderise"]}, {"answer": "punctuate", "hint": "synonyms for punctuate", "clues": ["stress", "accentuate", "emphasize", "mark", "accent", "punctuate"]}, {"answer": "purify", "hint": "synonyms for purify", "clues": ["distill", "sublimate", "sanctify", "make pure", "purge", "purify"]}, {"answer": "purloin", "hint": "synonyms for purloin", "clues": ["swipe", "abstract", "nobble", "sneak", "pilfer", "cabbage", "filch", "hook", "snarf", "pinch", "lift", "purloin"]}, {"answer": "pursue", "hint": "synonyms for pursue", "clues": ["go after", "follow", "prosecute", "act on", "follow up on", "quest for", "quest after", "engage", "pursue"]}, {"answer": "push_around", "hint": "synonyms for push around", "clues": ["browbeat", "strong-arm", "hector", "bullyrag", "bully", "boss around", "push around"]}, {"answer": "push_aside", "hint": "synonyms for push aside", "clues": ["disregard", "push away", "brush off", "brush aside", "discount", "dismiss", "ignore"]}, {"answer": "push_down", "hint": "synonyms for push down", "clues": ["cut down", "pull down", "knock down", "down", "push down"]}, {"answer": "put_across", "hint": "synonyms for put across", "clues": ["pass on", "communicate", "pass", "pass along", "put across"]}, {"answer": "put_away", "hint": "synonyms for put away", "clues": ["dispose", "tuck away", "lock in", "toss", "incarcerate", "cast aside", "gaol", "lock up", "chuck out", "put behind bars", "tuck in", "jug", "toss out", "throw out", "immure", "jail", "put to sleep", "toss away", "cast away", "lock", "discard", "shut away", "lock away", "throw away", "imprison", "remand", "put aside", "lag", "cast out", "fling", "shut up", "put away"]}, {"answer": "put_behind_bars", "hint": "synonyms for put behind bars", "clues": ["incarcerate", "gaol", "imprison", "remand", "put away", "lag", "jug", "immure", "jail", "put behind bars"]}, {"answer": "put_down", "hint": "synonyms for put down", "clues": ["drop", "discharge", "get down", "repose", "place down", "record", "disgrace", "destroy", "lay", "unload", "drop off", "bring down", "take down", "degrade", "enter", "demean", "land", "write down", "put down"]}, {"answer": "put_forward", "hint": "synonyms for put forward", "clues": ["call down", "stir", "call forth", "state", "arouse", "raise", "conjure", "assert", "bring up", "submit", "invoke", "put up", "nominate", "conjure up", "evoke", "posit", "put forward"]}, {"answer": "put_in", "hint": "synonyms for put in", "clues": ["stack away", "instal", "inject", "stick in", "stash away", "store", "submit", "salt away", "cut in", "lay in", "throw in", "chime in", "inclose", "barge in", "butt in", "break in", "chisel in", "interpose", "come in", "hive away", "set up", "interject", "introduce", "insert", "put in"]}, {"answer": "put_off", "hint": "synonyms for put off", "clues": ["flurry", "hold over", "dishearten", "hedge", "remit", "dodge", "prorogue", "set back", "evade", "fudge", "turn off", "defer", "skirt", "table", "shelve", "parry", "circumvent", "confuse", "disconcert", "sidestep", "elude", "duck", "put over", "postpone", "put off"]}, {"answer": "put_one_across", "hint": "synonyms for put one across", "clues": ["cod", "fool", "dupe", "gull", "slang", "befool", "take in", "put one over", "put on", "put one across"]}, {"answer": "put_one_over", "hint": "synonyms for put one over", "clues": ["cod", "fool", "dupe", "gull", "befool", "put one across", "take in", "slang", "put on", "put one over"]}, {"answer": "put_out", "hint": "synonyms for put out", "clues": ["anaesthetise", "issue", "publish", "inconvenience", "stretch out", "incommode", "hold out", "stretch forth", "release", "retire", "discommode", "smother", "trouble", "extend", "put under", "bring out", "douse", "exsert", "disoblige", "bother", "put out"]}, {"answer": "put_over", "hint": "synonyms for put over", "clues": ["get across", "hold over", "remit", "prorogue", "set back", "put off", "defer", "table", "shelve", "postpone", "put over"]}, {"answer": "put_through", "hint": "synonyms for put through", "clues": ["go through", "carry out", "follow up", "follow through", "follow out", "implement", "put through"]}, {"answer": "put_together", "hint": "synonyms for put together", "clues": ["set up", "tack", "tack together", "piece", "assemble", "put together"]}, {"answer": "put_up", "hint": "synonyms for put up", "clues": ["post", "digest", "support", "abide", "can", "bear", "rear", "suffer", "nominate", "tin", "domiciliate", "stomach", "put forward", "offer", "raise", "endure", "provide", "tolerate", "house", "set up", "erect", "contribute", "stand", "brook", "stick out", "put up"]}, {"answer": "puzzle_out", "hint": "synonyms for puzzle out", "clues": ["work out", "figure out", "lick", "work", "solve", "puzzle out"]}, {"answer": "qualify", "hint": "synonyms for qualify", "clues": ["dispose", "characterise", "specify", "measure up", "stipulate", "modify", "condition", "restrict", "qualify"]}, {"answer": "quash", "hint": "synonyms for quash", "clues": ["invalidate", "avoid", "nullify", "reduce", "keep down", "annul", "subdue", "subjugate", "repress", "quash"]}, {"answer": "quell", "hint": "synonyms for quell", "clues": ["stay", "appease", "squelch", "quench", "quell"]}, {"answer": "quench", "hint": "synonyms for quench", "clues": ["snuff out", "quell", "squelch", "extinguish", "blow out", "allay", "slake", "assuage", "quench"]}, {"answer": "quetch", "hint": "synonyms for quetch", "clues": ["kick", "kvetch", "sound off", "complain", "plain", "quetch"]}, {"answer": "quicken", "hint": "synonyms for quicken", "clues": ["speed", "accelerate", "whet", "reanimate", "renovate", "revivify", "invigorate", "recreate", "revive", "speed up", "repair", "quicken"]}, {"answer": "quiesce", "hint": "synonyms for quiesce", "clues": ["quiet", "hush", "pipe down", "quiet down", "quieten", "quiesce"]}, {"answer": "quiet_down", "hint": "synonyms for quiet down", "clues": ["quiet", "hush", "pipe down", "quiesce", "quieten", "quiet down"]}, {"answer": "quieten", "hint": "synonyms for quieten", "clues": ["quiet", "hush", "calm", "tranquillise", "silence", "shut up", "quiesce", "still", "pipe down", "calm down", "hush up", "lull", "quiet down", "quieten"]}, {"answer": "quit", "hint": "synonyms for quit", "clues": ["leave office", "fall by the wayside", "drop by the wayside", "discontinue", "chuck up the sponge", "step down", "stop", "throw in the towel", "resign", "cease", "take leave", "throw in", "renounce", "foreswear", "depart", "give up", "drop out", "lay off", "relinquish", "quit"]}, {"answer": "rabbit_on", "hint": "synonyms for rabbit on", "clues": ["rave", "rant", "jabber", "mouth off", "spout", "rabbit on"]}, {"answer": "rack_up", "hint": "synonyms for rack up", "clues": ["worst", "whip", "tally", "hit", "score", "mop up", "pip", "rack up"]}, {"answer": "rain_buckets", "hint": "synonyms for rain buckets", "clues": ["pelt", "pour", "rain cats and dogs", "stream", "rain buckets"]}, {"answer": "rain_cats_and_dogs", "hint": "synonyms for rain cats and dogs", "clues": ["pelt", "pour", "rain buckets", "stream", "rain cats and dogs"]}, {"answer": "raise_up", "hint": "synonyms for raise up", "clues": ["vex", "stir up", "disturb", "shake up", "agitate", "commove", "raise up"]}, {"answer": "ram_down", "hint": "synonyms for ram down", "clues": ["ram", "hammer in", "beat in", "drill in", "pound", "ram down"]}, {"answer": "ramify", "hint": "synonyms for ramify", "clues": ["furcate", "branch", "separate", "fork", "complexify", "ramify"]}, {"answer": "ransack", "hint": "synonyms for ransack", "clues": ["despoil", "rifle", "foray", "pillage", "comb", "plunder", "strip", "loot", "reave", "ransack"]}, {"answer": "rase", "hint": "synonyms for rase", "clues": ["raze", "tear down", "take down", "level", "dismantle", "pull down", "rase"]}, {"answer": "rationalise", "hint": "synonyms for rationalise", "clues": ["cut", "apologise", "justify", "excuse", "rationalize", "prune"]}, {"answer": "rationalize", "hint": "synonyms for rationalize", "clues": ["cut", "rationalise", "apologize", "justify", "excuse", "prune"]}, {"answer": "rattle_down", "hint": "synonyms for rattle down", "clues": ["rattle off", "spiel off", "roll off", "reel off", "rattle down"]}, {"answer": "rattle_off", "hint": "synonyms for rattle off", "clues": ["spiel off", "roll off", "rattle down", "reel off", "rattle off"]}, {"answer": "rattle_on", "hint": "synonyms for rattle on", "clues": ["yack away", "yack", "jaw", "yap away", "rattle on"]}, {"answer": "ravish", "hint": "synonyms for ravish", "clues": ["rape", "enthrall", "assault", "dishonour", "outrage", "enrapture", "enchant", "violate", "delight", "transport", "ravish"]}, {"answer": "raze", "hint": "synonyms for raze", "clues": ["tear down", "take down", "level", "dismantle", "rase", "pull down", "raze"]}, {"answer": "realise", "hint": "synonyms for realise", "clues": ["recognise", "make", "gain", "pull in", "substantiate", "actualize", "understand", "clear", "realize", "agnise", "see", "take in", "agnize", "bring in", "earn"]}, {"answer": "realize", "hint": "synonyms for realize", "clues": ["recognise", "make", "gain", "pull in", "take in", "understand", "actualize", "clear", "realise", "agnise", "see", "substantiate", "agnize", "bring in", "earn"]}, {"answer": "reanimate", "hint": "synonyms for reanimate", "clues": ["renovate", "revivify", "animate", "recreate", "revive", "repair", "quicken"]}, {"answer": "reave", "hint": "synonyms for reave", "clues": ["despoil", "rifle", "foray", "pillage", "plunder", "ransack", "strip", "loot", "reave"]}, {"answer": "recant", "hint": "synonyms for recant", "clues": ["retract", "abjure", "forswear", "resile", "recant"]}, {"answer": "recapitulate", "hint": "synonyms for recapitulate", "clues": ["repeat", "reprize", "recap", "recapitulate"]}, {"answer": "recast", "hint": "synonyms for recast", "clues": ["remould", "remodel", "reforge", "recast"]}, {"answer": "recede", "hint": "synonyms for recede", "clues": ["lose", "retreat", "drop off", "move back", "retire", "withdraw", "pull back", "fall back", "draw back", "fall behind", "pull away", "recede"]}, {"answer": "receive", "hint": "synonyms for receive", "clues": ["invite", "encounter", "meet", "have", "welcome", "incur", "pick up", "obtain", "experience", "get", "take in", "find", "receive"]}, {"answer": "recidivate", "hint": "synonyms for recidivate", "clues": ["lapse", "fall back", "retrogress", "relapse", "regress", "recidivate"]}, {"answer": "recite", "hint": "synonyms for recite", "clues": ["tell", "itemise", "retell", "narrate", "enumerate", "declaim", "recount", "recite"]}, {"answer": "reckon", "hint": "synonyms for reckon", "clues": ["forecast", "figure", "depend", "guess", "think", "estimate", "view", "bet", "count", "work out", "suppose", "consider", "cypher", "compute", "look", "regard", "count on", "cipher", "see", "imagine", "calculate", "opine", "reckon"]}, {"answer": "reclaim", "hint": "synonyms for reclaim", "clues": ["domesticate", "rectify", "tame", "recover", "repossess", "reform", "regenerate", "domesticise", "reclaim"]}, {"answer": "recognise", "hint": "synonyms for recognise", "clues": ["greet", "spot", "acknowledge", "tell apart", "realize", "know", "pick out", "make out", "agnise", "discern", "distinguish", "agnize", "accredit", "recognize"]}, {"answer": "recognize", "hint": "synonyms for recognize", "clues": ["recognise", "greet", "spot", "acknowledge", "know", "realize", "tell apart", "agnise", "pick out", "make out", "discern", "distinguish", "agnize", "accredit"]}, {"answer": "recollect", "hint": "synonyms for recollect", "clues": ["think", "call up", "call back", "remember", "retrieve", "recall", "recollect"]}, {"answer": "reconcile", "hint": "synonyms for reconcile", "clues": ["make up", "accommodate", "submit", "harmonize", "settle", "resign", "patch up", "conciliate", "reconcile"]}, {"answer": "reconstruct", "hint": "synonyms for reconstruct", "clues": ["construct", "restore", "redo", "remodel", "retrace", "rebuild"]}, {"answer": "recoup", "hint": "synonyms for recoup", "clues": ["reimburse", "deduct", "withhold", "recover", "recuperate", "recoup"]}, {"answer": "recover", "hint": "synonyms for recover", "clues": ["reclaim", "convalesce", "go back", "retrieve", "recoup", "recuperate", "find", "regain", "recover"]}, {"answer": "recreate", "hint": "synonyms for recreate", "clues": ["reanimate", "renovate", "revivify", "cheer", "embolden", "revive", "play", "repair", "hearten", "quicken", "recreate"]}, {"answer": "recrudesce", "hint": "synonyms for recrudesce", "clues": ["break", "erupt", "develop", "break out", "recrudesce"]}, {"answer": "rectify", "hint": "synonyms for rectify", "clues": ["remedy", "right", "amend", "correct", "remediate", "reclaim", "refine", "reform", "regenerate", "repair", "rectify"]}, {"answer": "recuperate", "hint": "synonyms for recuperate", "clues": ["convalesce", "recoup", "recover", "go back", "recuperate"]}, {"answer": "recur", "hint": "synonyms for recur", "clues": ["repeat", "fall back", "go back", "resort", "recur"]}, {"answer": "redeem", "hint": "synonyms for redeem", "clues": ["pay off", "deliver", "ransom", "save", "redeem"]}, {"answer": "redo", "hint": "synonyms for redo", "clues": ["reconstruct", "refashion", "remake", "remodel", "make over", "redo"]}, {"answer": "reduce", "hint": "synonyms for reduce", "clues": ["scale down", "deoxidize", "abridge", "dilute", "quash", "thin out", "slenderize", "trim down", "shrink", "cut down", "trim back", "foreshorten", "come down", "subdue", "shorten", "subjugate", "boil down", "repress", "cut back", "abbreviate", "thin", "slim down", "trim", "tighten", "bring down", "melt off", "lose weight", "keep down", "cut", "contract", "slim", "decoct", "concentrate", "reduce"]}, {"answer": "reduplicate", "hint": "synonyms for reduplicate", "clues": ["replicate", "duplicate", "repeat", "geminate", "double"]}, {"answer": "reel_off", "hint": "synonyms for reel off", "clues": ["unreel", "spiel off", "rattle down", "rattle off", "roll off", "reel off"]}, {"answer": "refer", "hint": "synonyms for refer", "clues": ["consult", "mention", "touch on", "cite", "relate", "bring up", "have-to doe with", "look up", "pertain", "come to", "touch", "name", "advert", "bear on", "denote", "concern", "refer"]}, {"answer": "refine", "hint": "synonyms for refine", "clues": ["polish", "rectify", "complicate", "elaborate", "rarify", "fine-tune", "down", "refine"]}, {"answer": "reflect", "hint": "synonyms for reflect", "clues": ["muse", "meditate", "shine", "ponder", "contemplate", "mull", "speculate", "mull over", "reverberate", "think over", "ruminate", "chew over", "excogitate", "reflect"]}, {"answer": "refresh", "hint": "synonyms for refresh", "clues": ["freshen", "brush up", "freshen up", "review", "refresh"]}, {"answer": "regard_as", "hint": "synonyms for regard as", "clues": ["think of", "look upon", "repute", "take to be", "esteem", "regard as"]}, {"answer": "regorge", "hint": "synonyms for regorge", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "vomit", "throw up", "spue", "barf", "chuck", "regorge"]}, {"answer": "regularise", "hint": "synonyms for regularise", "clues": ["regulate", "govern", "regularize", "order"]}, {"answer": "regularize", "hint": "synonyms for regularize", "clues": ["regularise", "regulate", "govern", "order"]}, {"answer": "regulate", "hint": "synonyms for regulate", "clues": ["determine", "govern", "regularize", "order", "influence", "shape", "baffle", "modulate", "mold", "regulate"]}, {"answer": "regurgitate", "hint": "synonyms for regurgitate", "clues": ["retch", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "reproduce", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "regurgitate"]}, {"answer": "reiterate", "hint": "synonyms for reiterate", "clues": ["ingeminate", "retell", "restate", "repeat", "iterate"]}, {"answer": "rejoice", "hint": "synonyms for rejoice", "clues": ["joy", "jubilate", "exult", "wallow", "exuberate", "triumph", "rejoice"]}, {"answer": "rejoin", "hint": "synonyms for rejoin", "clues": ["retort", "return", "riposte", "repay", "come back", "rejoin"]}, {"answer": "relate", "hint": "synonyms for relate", "clues": ["link", "bear on", "refer", "touch on", "associate", "link up", "connect", "have-to doe with", "pertain", "come to", "touch", "colligate", "interrelate", "concern", "tie in", "relate"]}, {"answer": "relax", "hint": "synonyms for relax", "clues": ["unstrain", "unwind", "loosen", "decompress", "unbend", "slacken", "unlax", "slack", "make relaxed", "loosen up", "slow down", "slack up", "relax"]}, {"answer": "relegate", "hint": "synonyms for relegate", "clues": ["pass on", "break", "demote", "banish", "bar", "bump", "submit", "classify", "kick downstairs", "relegate"]}, {"answer": "relieve", "hint": "synonyms for relieve", "clues": ["remedy", "palliate", "ease", "salvage", "let off", "free", "alleviate", "lighten", "still", "assuage", "take over", "allay", "unbosom", "excuse", "exempt", "salve", "relieve"]}, {"answer": "relieve_oneself", "hint": "synonyms for relieve oneself", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "wee", "relieve oneself"]}, {"answer": "relinquish", "hint": "synonyms for relinquish", "clues": ["renounce", "foreswear", "waive", "dispense with", "free", "release", "give up", "let go", "let go of", "quit", "resign", "forego", "relinquish"]}, {"answer": "remain", "hint": "synonyms for remain", "clues": ["stay", "continue", "stay on", "persist", "rest", "remain"]}, {"answer": "remediate", "hint": "synonyms for remediate", "clues": ["amend", "repair", "rectify", "remedy", "remediate"]}, {"answer": "remember", "hint": "synonyms for remember", "clues": ["call up", "think of", "retrieve", "think", "call back", "recollect", "commemorate", "think back", "commend", "recall", "remember"]}, {"answer": "remodel", "hint": "synonyms for remodel", "clues": ["reconstruct", "reforge", "recast", "redo", "remodel"]}, {"answer": "remold", "hint": "synonyms for remold", "clues": ["recast", "reshape", "retread", "remould"]}, {"answer": "remonstrate", "hint": "synonyms for remonstrate", "clues": ["call down", "chew up", "lambaste", "reproof", "take to task", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "reprimand", "rebuke", "point out", "berate", "dress down", "trounce", "bawl out", "rag", "remonstrate"]}, {"answer": "renounce", "hint": "synonyms for renounce", "clues": ["foreswear", "give up", "abdicate", "vacate", "quit", "resign", "relinquish", "repudiate", "disown", "renounce"]}, {"answer": "renovate", "hint": "synonyms for renovate", "clues": ["restitute", "freshen up", "reanimate", "refurbish", "revivify", "recreate", "revive", "repair", "quicken", "renovate"]}, {"answer": "repay", "hint": "synonyms for repay", "clues": ["requite", "rejoin", "refund", "reward", "come back", "riposte", "retort", "pay back", "return", "give back", "repay"]}, {"answer": "repel", "hint": "synonyms for repel", "clues": ["force back", "drive back", "disgust", "rebuff", "fight off", "beat back", "revolt", "drive", "gross out", "repulse", "push back", "snub", "repel"]}, {"answer": "replace", "hint": "synonyms for replace", "clues": ["interchange", "supplant", "put back", "exchange", "substitute", "supercede", "supervene upon", "replace"]}, {"answer": "replicate", "hint": "synonyms for replicate", "clues": ["double", "duplicate", "repeat", "retroflex", "copy", "replicate"]}, {"answer": "represent", "hint": "synonyms for represent", "clues": ["make up", "map", "act", "stage", "defend", "symbolise", "lay out", "correspond", "typify", "interpret", "present", "stand for", "comprise", "play", "exemplify", "be", "constitute"]}, {"answer": "repress", "hint": "synonyms for repress", "clues": ["muffle", "quash", "reduce", "keep down", "smother", "stifle", "subdue", "subjugate", "suppress", "strangle", "repress"]}, {"answer": "require", "hint": "synonyms for require", "clues": ["want", "need", "postulate", "command", "ask", "take", "necessitate", "demand", "expect", "involve", "call for", "require"]}, {"answer": "rescind", "hint": "synonyms for rescind", "clues": ["countermand", "revoke", "annul", "reverse", "overturn", "vacate", "repeal", "lift", "rescind"]}, {"answer": "reside", "hint": "synonyms for reside", "clues": ["repose", "domiciliate", "occupy", "shack", "domicile", "rest", "lodge in", "reside"]}, {"answer": "resign", "hint": "synonyms for resign", "clues": ["renounce", "leave office", "free", "release", "give up", "reconcile", "step down", "submit", "vacate", "quit", "relinquish", "resign"]}, {"answer": "resile", "hint": "synonyms for resile", "clues": ["forswear", "bounce", "abjure", "recoil", "ricochet", "take a hop", "reverberate", "recant", "bound", "spring", "rebound", "retract", "resile"]}, {"answer": "resist", "hint": "synonyms for resist", "clues": ["withstand", "stand firm", "hold out", "dissent", "baulk", "reject", "fend", "jib", "stand", "defy", "refuse", "protest", "resist"]}, {"answer": "resound", "hint": "synonyms for resound", "clues": ["make noise", "reverberate", "ring", "echo", "noise", "resound"]}, {"answer": "rest_on", "hint": "synonyms for rest on", "clues": ["build on", "lean on", "lean against", "repose on", "rest on"]}, {"answer": "restate", "hint": "synonyms for restate", "clues": ["ingeminate", "retell", "repeat", "iterate", "restate"]}, {"answer": "restore", "hint": "synonyms for restore", "clues": ["restitute", "mend", "touch on", "reinstate", "furbish up", "rejuvenate", "reconstruct", "doctor", "fix", "regenerate", "bushel", "repair", "reestablish", "restore"]}, {"answer": "restrain", "hint": "synonyms for restrain", "clues": ["confine", "constrain", "keep", "restrict", "cumber", "limit", "hold", "keep back", "intimidate", "trammel", "bound", "throttle", "hold back", "restrain"]}, {"answer": "restrict", "hint": "synonyms for restrict", "clues": ["cut back", "confine", "limit", "qualify", "trammel", "curb", "bound", "restrain", "throttle", "curtail", "restrict"]}, {"answer": "resurrect", "hint": "synonyms for resurrect", "clues": ["uprise", "revive", "rise", "resurrect"]}, {"answer": "retain", "hint": "synonyms for retain", "clues": ["keep back", "continue", "keep", "hold", "keep on", "hold back", "retain"]}, {"answer": "retell", "hint": "synonyms for retell", "clues": ["ingeminate", "restate", "iterate", "recite", "repeat", "fictionalize", "retell"]}, {"answer": "retire", "hint": "synonyms for retire", "clues": ["go to bed", "retreat", "hit the sack", "adjourn", "strike out", "sack out", "withdraw", "put out", "pull back", "bed", "hit the hay", "pull away", "go to sleep", "crawl in", "move back", "kip down", "turn in", "recede", "draw back", "retire"]}, {"answer": "retract", "hint": "synonyms for retract", "clues": ["pull back", "recant", "forswear", "shrink back", "draw in", "draw back", "abjure", "resile", "retract"]}, {"answer": "retrieve", "hint": "synonyms for retrieve", "clues": ["call up", "recall", "recover", "think", "call back", "recollect", "find", "remember", "regain", "retrieve"]}, {"answer": "retrogress", "hint": "synonyms for retrogress", "clues": ["lapse", "fall back", "retrograde", "relapse", "regress", "recidivate", "retrogress"]}, {"answer": "retrovert", "hint": "synonyms for retrovert", "clues": ["turn back", "regress", "return", "revert", "retrovert"]}, {"answer": "reveal", "hint": "synonyms for reveal", "clues": ["break", "uncover", "unveil", "let on", "let out", "discover", "disclose", "expose", "give away", "unwrap", "bring out", "divulge", "reveal"]}, {"answer": "reverberate", "hint": "synonyms for reverberate", "clues": ["reflect", "bound", "ring", "resound", "bounce", "resile", "recoil", "take a hop", "ricochet", "spring", "echo", "reverberate"]}, {"answer": "revert", "hint": "synonyms for revert", "clues": ["return", "regress", "turn back", "retrovert", "revert"]}, {"answer": "revive", "hint": "synonyms for revive", "clues": ["reanimate", "renovate", "revivify", "recreate", "come to", "resurrect", "resuscitate", "repair", "quicken", "revive"]}, {"answer": "revivify", "hint": "synonyms for revivify", "clues": ["reanimate", "renovate", "vivify", "recreate", "revive", "repair", "quicken"]}, {"answer": "revolve", "hint": "synonyms for revolve", "clues": ["orbit", "roll", "rotate", "orb", "go around", "revolve"]}, {"answer": "revolve_about", "hint": "synonyms for revolve about", "clues": ["center on", "revolve around", "focus on", "concentrate on", "center", "revolve about"]}, {"answer": "revolve_around", "hint": "synonyms for revolve around", "clues": ["circle around", "revolve about", "center on", "focus on", "concentrate on", "center", "revolve around"]}, {"answer": "rig_out", "hint": "synonyms for rig out", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up"]}, {"answer": "rile", "hint": "synonyms for rile", "clues": ["annoy", "nettle", "devil", "nark", "gravel", "roil", "vex", "get at", "rag", "get to", "chafe", "irritate", "bother", "rile"]}, {"answer": "rise_up", "hint": "synonyms for rise up", "clues": ["rebel", "arise", "come up", "rear", "surface", "rise up"]}, {"answer": "rive", "hint": "synonyms for rive", "clues": ["pull", "cleave", "rip", "rend", "split", "rive"]}, {"answer": "roam", "hint": "synonyms for roam", "clues": ["ramble", "stray", "swan", "vagabond", "wander", "drift", "tramp", "rove", "cast", "range", "roll", "roam"]}, {"answer": "rob", "hint": "synonyms for rob", "clues": ["soak", "plume", "fleece", "pluck", "overcharge", "gazump", "surcharge", "hook", "rob"]}, {"answer": "roil", "hint": "synonyms for roil", "clues": ["moil", "rile", "boil", "churn", "roil"]}, {"answer": "roll_off", "hint": "synonyms for roll off", "clues": ["rattle off", "spiel off", "rattle down", "reel off", "roll off"]}, {"answer": "roll_up", "hint": "synonyms for roll up", "clues": ["pile up", "bundle", "wrap up", "amass", "bundle up", "hoard", "compile", "furl", "roll", "accumulate", "collect", "roll up"]}, {"answer": "rollick", "hint": "synonyms for rollick", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "run around", "sport", "skylark", "lark about", "disport", "romp", "rollick"]}, {"answer": "root_on", "hint": "synonyms for root on", "clues": ["inspire", "exhort", "urge on", "pep up", "barrack", "urge", "cheer", "root on"]}, {"answer": "root_out", "hint": "synonyms for root out", "clues": ["eradicate", "deracinate", "uproot", "extirpate", "exterminate", "root out"]}, {"answer": "rotate", "hint": "synonyms for rotate", "clues": ["revolve", "turn out", "spread out", "go around", "splay", "circumvolve", "rotate"]}, {"answer": "round_off", "hint": "synonyms for round off", "clues": ["polish", "round out", "round down", "round", "brush up", "polish up", "round off"]}, {"answer": "round_out", "hint": "synonyms for round out", "clues": ["finish out", "round down", "round", "round off", "fill out", "round out"]}, {"answer": "rouse", "hint": "synonyms for rouse", "clues": ["bestir", "rout out", "charge up", "drive out", "force out", "wake", "arouse", "agitate", "wake up", "excite", "charge", "turn on", "commove", "awaken"]}, {"answer": "rout_out", "hint": "synonyms for rout out", "clues": ["rout", "drive out", "rout up", "force out", "expel", "rouse", "rout out"]}, {"answer": "rove", "hint": "synonyms for rove", "clues": ["reeve", "ramble", "stray", "swan", "vagabond", "wander", "drift", "tramp", "cast", "range", "roll", "roam", "rove"]}, {"answer": "rub_along", "hint": "synonyms for rub along", "clues": ["squeak by", "squeeze by", "scrape by", "scratch along", "scrape along", "rub along"]}, {"answer": "rub_down", "hint": "synonyms for rub down", "clues": ["abrase", "abrade", "knead", "rub off", "massage", "corrade", "rub down"]}, {"answer": "rub_off", "hint": "synonyms for rub off", "clues": ["abrase", "abrade", "corrade", "rub down", "rub off"]}, {"answer": "rub_out", "hint": "synonyms for rub out", "clues": ["wipe off", "score out", "erase", "efface", "rub out"]}, {"answer": "ruckle", "hint": "synonyms for ruckle", "clues": ["crease", "wrinkle", "crisp", "scrunch up", "scrunch", "ruckle"]}, {"answer": "rule_out", "hint": "synonyms for rule out", "clues": ["rule in", "close out", "reject", "eliminate", "winnow out", "preclude", "rule out"]}, {"answer": "ruminate", "hint": "synonyms for ruminate", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "think over", "chew over", "excogitate", "ruminate"]}, {"answer": "rumple", "hint": "synonyms for rumple", "clues": ["crumple", "crease", "wrinkle", "mess up", "ruffle up", "cockle", "pucker", "knit", "ruffle"]}, {"answer": "run_a_risk", "hint": "synonyms for run a risk", "clues": ["adventure", "gamble", "risk", "hazard", "take a chance", "chance", "run a risk"]}, {"answer": "run_across", "hint": "synonyms for run across", "clues": ["encounter", "come across", "see", "meet", "run into", "run across"]}, {"answer": "run_around", "hint": "synonyms for run around", "clues": ["frisk", "gambol", "cavort", "frolic", "lark", "sport", "rollick", "skylark", "lark about", "disport", "romp", "run around"]}, {"answer": "run_away", "hint": "synonyms for run away", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "lam", "scat", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "run away"]}, {"answer": "run_down", "hint": "synonyms for run down", "clues": ["conk out", "run out", "glance over", "check out", "scan", "exhaust", "poop out", "skim", "run over", "rake", "sap", "play out", "tire", "peter out", "run down"]}, {"answer": "run_into", "hint": "synonyms for run into", "clues": ["knock against", "encounter", "butt against", "hit", "run across", "meet", "collide with", "bump into", "come across", "jar against", "see", "strike", "impinge on", "run into"]}, {"answer": "run_off", "hint": "synonyms for run off", "clues": ["bolt out", "run out", "make off", "turn back", "photocopy", "drive away", "elope", "xerox", "decamp", "waste", "beetle off", "abscond", "drive out", "drive off", "bolt", "go off", "dispel", "chase away", "absquatulate", "run off"]}, {"answer": "run_out", "hint": "synonyms for run out", "clues": ["run down", "bolt out", "conk out", "bolt", "drain", "spill", "poop out", "fail", "expire", "give out", "beetle off", "peter out", "run off", "run out"]}, {"answer": "run_over", "hint": "synonyms for run over", "clues": ["run down", "well over", "brim over", "overflow", "overrun", "run over"]}, {"answer": "run_through", "hint": "synonyms for run through", "clues": ["eat", "deplete", "work through", "exhaust", "use up", "go through", "consume", "wipe out", "eat up", "run through"]}, {"answer": "run_up", "hint": "synonyms for run up", "clues": ["sew", "chalk up", "stitch", "sew together", "hoist", "run up"]}, {"answer": "rush_along", "hint": "synonyms for rush along", "clues": ["hasten", "speed", "bucket along", "race", "rush", "step on it", "pelt along", "hotfoot", "hie", "cannonball along", "rush along"]}, {"answer": "sack_out", "hint": "synonyms for sack out", "clues": ["go to bed", "hit the sack", "go to sleep", "crawl in", "retire", "kip down", "bed", "turn in", "hit the hay", "sack out"]}, {"answer": "sail_through", "hint": "synonyms for sail through", "clues": ["sweep through", "pass with flying colors", "breeze through", "nail", "ace", "sail through"]}, {"answer": "sally_out", "hint": "synonyms for sally out", "clues": ["leap out", "sally forth", "burst forth", "rush out", "sally out"]}, {"answer": "salt_away", "hint": "synonyms for salt away", "clues": ["put in", "stack away", "hive away", "store", "lay in", "stash away", "salt away"]}, {"answer": "sanctify", "hint": "synonyms for sanctify", "clues": ["purify", "consecrate", "hallow", "purge", "bless", "sanctify"]}, {"answer": "satisfy", "hint": "synonyms for satisfy", "clues": ["gratify", "meet", "live up to", "fulfill", "fill", "satisfy"]}, {"answer": "scandalise", "hint": "synonyms for scandalise", "clues": ["appall", "scandalize", "offend", "shock", "outrage"]}, {"answer": "scandalize", "hint": "synonyms for scandalize", "clues": ["appall", "offend", "shock", "scandalise", "outrage"]}, {"answer": "scare_away", "hint": "synonyms for scare away", "clues": ["frighten away", "frighten off", "dash", "scare", "pall", "scare off", "daunt", "scare away"]}, {"answer": "scare_off", "hint": "synonyms for scare off", "clues": ["frighten away", "frighten off", "dash", "scare", "scare away", "pall", "daunt", "scare off"]}, {"answer": "scarf_out", "hint": "synonyms for scarf out", "clues": ["gormandize", "pig out", "ingurgitate", "overgorge", "satiate", "binge", "overeat", "overindulge", "glut", "gorge", "englut", "stuff", "engorge", "scarf out"]}, {"answer": "scarper", "hint": "synonyms for scarper", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "lam", "run away", "scat", "break away", "bunk", "take to the woods", "head for the hills", "scarper"]}, {"answer": "scintillate", "hint": "synonyms for scintillate", "clues": ["coruscate", "twinkle", "sparkle", "scintillate"]}, {"answer": "scoop_out", "hint": "synonyms for scoop out", "clues": ["lift out", "scoop", "take up", "scoop up", "scoop out"]}, {"answer": "scoop_up", "hint": "synonyms for scoop up", "clues": ["lift out", "scoop out", "scoop", "take up", "scoop up"]}, {"answer": "scoot", "hint": "synonyms for scoot", "clues": ["scud", "flash", "dart", "shoot", "dash", "scoot"]}, {"answer": "score_out", "hint": "synonyms for score out", "clues": ["wipe off", "rub out", "erase", "efface", "score out"]}, {"answer": "scram", "hint": "synonyms for scram", "clues": ["fuck off", "buzz off", "bugger off", "get", "scram"]}, {"answer": "scrape_along", "hint": "synonyms for scrape along", "clues": ["squeak by", "squeeze by", "scrape by", "scratch along", "rub along", "scrape along"]}, {"answer": "scrape_by", "hint": "synonyms for scrape by", "clues": ["squeak by", "squeeze by", "scratch along", "scrape along", "rub along", "scrape by"]}, {"answer": "scratch_along", "hint": "synonyms for scratch along", "clues": ["squeak by", "squeeze by", "scrape by", "scrape along", "rub along", "scratch along"]}, {"answer": "scratch_off", "hint": "synonyms for scratch off", "clues": ["dash off", "fling off", "toss off", "knock off", "scratch off"]}, {"answer": "screak", "hint": "synonyms for screak", "clues": ["whine", "squawk", "skreak", "screech", "skreigh", "squeak", "creak"]}, {"answer": "screw_up", "hint": "synonyms for screw up", "clues": ["bumble", "botch up", "bollix", "muck up", "spoil", "bollocks", "bobble", "muff", "flub", "bollix up", "fluff", "bollocks up", "bungle", "mess up", "heat up", "hot up", "mishandle", "bodge", "fumble", "louse up", "foul up", "ball up", "blow", "botch", "screw up"]}, {"answer": "scrounge", "hint": "synonyms for scrounge", "clues": ["forage", "schnorr", "cadge", "scrounge"]}, {"answer": "scrunch_up", "hint": "synonyms for scrunch up", "clues": ["squat", "crease", "wrinkle", "ruckle", "hunker down", "scrunch", "hunker", "crisp", "crouch", "scrunch up"]}, {"answer": "scrutinise", "hint": "synonyms for scrutinise", "clues": ["scrutinize", "take stock", "size up", "inspect", "audit"]}, {"answer": "scrutinize", "hint": "synonyms for scrutinize", "clues": ["take stock", "size up", "inspect", "scrutinise", "audit"]}, {"answer": "secern", "hint": "synonyms for secern", "clues": ["differentiate", "tell apart", "severalise", "tell", "secernate", "distinguish", "separate", "secern"]}, {"answer": "secernate", "hint": "synonyms for secernate", "clues": ["differentiate", "tell apart", "severalise", "tell", "distinguish", "secern", "separate", "secernate"]}, {"answer": "see_to_it", "hint": "synonyms for see to it", "clues": ["control", "ensure", "insure", "see", "ascertain", "check", "assure", "see to it"]}, {"answer": "seethe", "hint": "synonyms for seethe", "clues": ["roll", "hum", "boil", "buzz", "seethe"]}, {"answer": "seize", "hint": "synonyms for seize", "clues": ["appropriate", "impound", "capture", "attach", "clutch", "assume", "take over", "get hold of", "prehend", "arrogate", "conquer", "confiscate", "usurp", "grab", "sequester", "seize"]}, {"answer": "seize_on", "hint": "synonyms for seize on", "clues": ["hook on", "fasten on", "take up", "latch on", "seize on"]}, {"answer": "send", "hint": "synonyms for send", "clues": ["post", "transmit", "place", "get off", "beam", "station", "send off", "commit", "ship", "broadcast", "mail", "charge", "direct", "institutionalize", "transport", "air", "send out", "send"]}, {"answer": "send_away", "hint": "synonyms for send away", "clues": ["sack", "can", "give the sack", "drop", "force out", "dismiss", "give notice", "give the axe", "displace", "fire", "terminate", "send packing", "send away"]}, {"answer": "send_off", "hint": "synonyms for send off", "clues": ["send", "get off", "project", "despatch", "send off"]}, {"answer": "send_word", "hint": "synonyms for send word", "clues": ["apprise", "notify", "advise", "give notice", "send word"]}, {"answer": "senesce", "hint": "synonyms for senesce", "clues": ["age", "maturate", "get on", "senesce"]}, {"answer": "separate_out", "hint": "synonyms for separate out", "clues": ["filtrate", "strain", "filter", "filter out", "separate out"]}, {"answer": "sequester", "hint": "synonyms for sequester", "clues": ["keep apart", "impound", "attach", "set apart", "withdraw", "seize", "sequestrate", "seclude", "confiscate", "isolate", "sequester"]}, {"answer": "sequestrate", "hint": "synonyms for sequestrate", "clues": ["keep apart", "seclude", "isolate", "set apart", "withdraw", "sequester", "sequestrate"]}, {"answer": "serve_up", "hint": "synonyms for serve up", "clues": ["serve", "dish up", "dish", "dish out", "serve up"]}, {"answer": "set_about", "hint": "synonyms for set about", "clues": ["begin", "commence", "start", "start out", "approach", "go about", "get down", "set out", "undertake", "get", "attempt"]}, {"answer": "set_apart", "hint": "synonyms for set apart", "clues": ["keep apart", "specify", "assign", "isolate", "sequester", "sequestrate", "set apart"]}, {"answer": "set_aside", "hint": "synonyms for set aside", "clues": ["appropriate", "earmark", "reserve", "allow", "suspend", "set aside"]}, {"answer": "set_back", "hint": "synonyms for set back", "clues": ["hold over", "shelve", "knock back", "remit", "put back", "prorogue", "put off", "defer", "table", "put over", "postpone", "set back"]}, {"answer": "set_down", "hint": "synonyms for set down", "clues": ["put down", "unload", "drop off", "drop", "discharge", "get down", "debark", "place down", "land", "disembark", "write down"]}, {"answer": "set_forth", "hint": "synonyms for set forth", "clues": ["set off", "start", "depart", "start out", "exposit", "expound", "take off", "set out", "part", "set forth"]}, {"answer": "set_off", "hint": "synonyms for set off", "clues": ["start", "offset", "actuate", "start out", "trigger off", "blow up", "set forth", "activate", "spark", "spark off", "trigger", "stir up", "depart", "cancel", "detonate", "explode", "trip", "touch off", "incite", "instigate", "take off", "set out", "bring out", "part", "set off"]}, {"answer": "set_out", "hint": "synonyms for set out", "clues": ["set off", "array", "begin", "commence", "start", "depart", "start out", "lay out", "get down", "set forth", "range", "take off", "get", "set about", "part"]}, {"answer": "set_up", "hint": "synonyms for set up", "clues": ["launch", "put in", "instal", "effectuate", "ensnare", "effect", "rear", "fix", "put", "found", "ready", "set", "establish", "raise", "piece", "lay out", "arrange", "entrap", "rig", "order", "tack", "put up", "erect", "frame", "gear up", "prepare", "tack together", "put together", "pitch", "assemble", "set up"]}, {"answer": "settle_down", "hint": "synonyms for settle down", "clues": ["cool off", "calm", "steady down", "root", "simmer down", "cool it", "chill out", "calm down", "take root", "settle", "settle down"]}, {"answer": "severalise", "hint": "synonyms for severalise", "clues": ["differentiate", "tell apart", "tell", "severalize", "secernate", "distinguish", "secern", "separate"]}, {"answer": "severalize", "hint": "synonyms for severalize", "clues": ["differentiate", "tell apart", "severalise", "tell", "secernate", "distinguish", "secern", "separate"]}, {"answer": "sew", "hint": "synonyms for sew", "clues": ["tailor-make", "tailor", "stitch", "run up", "sew together", "sew"]}, {"answer": "shake_off", "hint": "synonyms for shake off", "clues": ["throw", "escape from", "drop", "shed", "shake", "cast off", "throw away", "throw off", "cast", "shake off"]}, {"answer": "shake_up", "hint": "synonyms for shake up", "clues": ["stir", "stir up", "plump up", "reorganise", "stimulate", "agitate", "shake", "vex", "bump around", "excite", "succuss", "jar", "fluff up", "disturb", "raise up", "commove", "shake up"]}, {"answer": "shape_up", "hint": "synonyms for shape up", "clues": ["get on", "get along", "progress", "advance", "come on", "come along", "shape up"]}, {"answer": "sharpen", "hint": "synonyms for sharpen", "clues": ["focus", "focalize", "taper", "point", "heighten", "sharpen"]}, {"answer": "she-bop", "hint": "synonyms for she-bop", "clues": ["fuck off", "jerk off", "wank", "masturbate", "jack off", "she-bop"]}, {"answer": "shed_light_on", "hint": "synonyms for shed light on", "clues": ["elucidate", "enlighten", "crystalise", "sort out", "illuminate", "clear up", "clear", "straighten out", "shed light on"]}, {"answer": "shell_out", "hint": "synonyms for shell out", "clues": ["dispense", "administer", "allot", "mete out", "lot", "deal", "deal out", "dish out", "dole out", "parcel out", "distribute", "shell out"]}, {"answer": "shelve", "hint": "synonyms for shelve", "clues": ["hold over", "remit", "prorogue", "set back", "put off", "defer", "table", "put over", "postpone", "shelve"]}, {"answer": "shew", "hint": "synonyms for shew", "clues": ["prove", "establish", "demonstrate", "show", "shew"]}, {"answer": "shine_up", "hint": "synonyms for shine up", "clues": ["cozy up", "cotton up", "play up", "suck up", "sidle up", "shine up"]}, {"answer": "shoot_a_line", "hint": "synonyms for shoot a line", "clues": ["swash", "gas", "boast", "bluster", "gasconade", "vaunt", "tout", "blow", "brag", "shoot a line"]}, {"answer": "shoot_down", "hint": "synonyms for shoot down", "clues": ["tear", "kill", "buck", "shoot", "vote down", "vote out", "down", "defeat", "charge", "land", "shoot down"]}, {"answer": "shoot_the_breeze", "hint": "synonyms for shoot the breeze", "clues": ["gossip", "chitchat", "chatter", "claver", "confabulate", "chew the fat", "jaw", "natter", "confab", "visit", "chat", "chaffer", "shoot the breeze"]}, {"answer": "shop_at", "hint": "synonyms for shop at", "clues": ["patronize", "shop", "buy at", "sponsor", "frequent", "shop at"]}, {"answer": "short-change", "hint": "synonyms for short-change", "clues": ["bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "victimize", "gip", "swindle", "goldbrick", "rook", "short", "con", "scam", "short-change"]}, {"answer": "short-circuit", "hint": "synonyms for short-circuit", "clues": ["bypass", "short", "get around", "go around", "short-circuit"]}, {"answer": "shorten", "hint": "synonyms for shorten", "clues": ["abbreviate", "abridge", "bowdlerise", "expurgate", "reduce", "cut", "foreshorten", "contract", "castrate", "shorten"]}, {"answer": "shout_out", "hint": "synonyms for shout out", "clues": ["holler", "yell", "call", "cry", "shout", "squall", "scream", "vociferate", "hollo", "shout out"]}, {"answer": "shovel_in", "hint": "synonyms for shovel in", "clues": ["rake in", "bolt down", "garbage down", "gobble up", "shovel in"]}, {"answer": "show_off", "hint": "synonyms for show off", "clues": ["swank", "flaunt", "flash", "ostentate", "show off"]}, {"answer": "show_up", "hint": "synonyms for show up", "clues": ["show", "come out", "come on", "turn up", "surface", "show up"]}, {"answer": "shun", "hint": "synonyms for shun", "clues": ["blackball", "banish", "ostracize", "eschew", "ban", "cast out", "shun"]}, {"answer": "shut_away", "hint": "synonyms for shut away", "clues": ["put away", "lock", "lock in", "lock up", "shut up", "lock away", "shut away"]}, {"answer": "shut_down", "hint": "synonyms for shut down", "clues": ["close up", "fold", "close down", "close", "shut down"]}, {"answer": "sicken", "hint": "synonyms for sicken", "clues": ["revolt", "nauseate", "come down", "disgust", "churn up", "turn one's stomach", "sicken"]}, {"answer": "sidle_up", "hint": "synonyms for sidle up", "clues": ["cozy up", "shine up", "cotton up", "play up", "suck up", "sidle up"]}, {"answer": "signalise", "hint": "synonyms for signalise", "clues": ["call attention", "signal", "point out", "distinguish", "signalize", "sign"]}, {"answer": "signalize", "hint": "synonyms for signalize", "clues": ["call attention", "signal", "point out", "distinguish", "signalise", "sign"]}, {"answer": "simmer_down", "hint": "synonyms for simmer down", "clues": ["cool it", "cool off", "chill out", "calm", "calm down", "settle down", "simmer down"]}, {"answer": "simulate", "hint": "synonyms for simulate", "clues": ["assume", "sham", "model", "feign", "imitate", "copy", "simulate"]}, {"answer": "sing", "hint": "synonyms for sing", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "whistle", "tattle", "spill the beans", "blab out", "babble out", "sing"]}, {"answer": "sink_in", "hint": "synonyms for sink in", "clues": ["dawn", "get across", "percolate", "fall into place", "click", "permeate", "get through", "come home", "penetrate", "filter", "sink in"]}, {"answer": "sit", "hint": "synonyms for sit", "clues": ["baby-sit", "ride", "seat", "model", "sit down", "pose", "sit around", "posture", "sit"]}, {"answer": "situate", "hint": "synonyms for situate", "clues": ["fix", "deposit", "locate", "posit", "situate"]}, {"answer": "skate_over", "hint": "synonyms for skate over", "clues": ["smooth over", "skimp over", "slur over", "gloss over", "skate over"]}, {"answer": "skimp_over", "hint": "synonyms for skimp over", "clues": ["smooth over", "skate over", "slur over", "gloss over", "skimp over"]}, {"answer": "skitter", "hint": "synonyms for skitter", "clues": ["scurry", "scuttle", "scamper", "skip", "skim", "skitter"]}, {"answer": "skreak", "hint": "synonyms for skreak", "clues": ["whine", "squawk", "screech", "skreigh", "squeak", "creak", "skreak"]}, {"answer": "skreigh", "hint": "synonyms for skreigh", "clues": ["skreak", "screech", "squawk", "screak", "skreigh"]}, {"answer": "slabber", "hint": "synonyms for slabber", "clues": ["drivel", "drool", "slobber", "dribble", "slaver"]}, {"answer": "slack_off", "hint": "synonyms for slack off", "clues": ["let up", "slack", "abate", "die away", "slack off"]}, {"answer": "slacken", "hint": "synonyms for slacken", "clues": ["slow up", "slow down", "remit", "slow", "slack", "relax", "slack up", "slacken"]}, {"answer": "slake", "hint": "synonyms for slake", "clues": ["abate", "allay", "slack", "assuage", "quench", "slake"]}, {"answer": "slay", "hint": "synonyms for slay", "clues": ["polish off", "remove", "bump off", "hit", "off", "murder", "dispatch", "slay"]}, {"answer": "sleep_together", "hint": "synonyms for sleep together", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "sleep with", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "sleep together"]}, {"answer": "sleep_with", "hint": "synonyms for sleep with", "clues": ["roll in the hay", "hump", "have a go at it", "bonk", "have sex", "sleep together", "make out", "be intimate", "have it off", "bed", "have intercourse", "bang", "love", "get it on", "eff", "screw", "jazz", "know", "get laid", "have it away", "do it", "fuck", "lie with", "make love", "sleep with"]}, {"answer": "slenderize", "hint": "synonyms for slenderize", "clues": ["thin", "slim down", "slim", "melt off", "lose weight", "reduce", "slenderise"]}, {"answer": "slick_up", "hint": "synonyms for slick up", "clues": ["smarten up", "tittivate", "spruce up", "spiff up", "spruce", "slick up"]}, {"answer": "slide_by", "hint": "synonyms for slide by", "clues": ["glide by", "lapse", "slip by", "go by", "go along", "slip away", "pass"]}, {"answer": "slim_down", "hint": "synonyms for slim down", "clues": ["thin", "slim", "melt off", "lose weight", "reduce", "slenderize", "slim down"]}, {"answer": "slip_away", "hint": "synonyms for slip away", "clues": ["glide by", "lapse", "sneak out", "steal away", "sneak off", "slip by", "go by", "go along", "pass", "sneak away", "slip away"]}, {"answer": "slip_by", "hint": "synonyms for slip by", "clues": ["glide by", "lapse", "go by", "go along", "slip away", "pass", "slip by"]}, {"answer": "slog", "hint": "synonyms for slog", "clues": ["plod", "keep one's shoulder to the wheel", "trudge", "plug away", "keep one's nose to the grindstone", "slug", "peg away", "tramp", "footslog", "pad", "swig", "slog"]}, {"answer": "slosh", "hint": "synonyms for slosh", "clues": ["squelch", "splosh", "slush", "splash", "slop", "slosh around", "squish"]}, {"answer": "slow_down", "hint": "synonyms for slow down", "clues": ["decelerate", "unwind", "slow up", "slacken", "decompress", "unbend", "slack", "relax", "loosen up", "slow", "retard", "slow down"]}, {"answer": "slow_up", "hint": "synonyms for slow up", "clues": ["decelerate", "slacken", "slow down", "slow", "slack", "retard", "slow up"]}, {"answer": "slue", "hint": "synonyms for slue", "clues": ["slew", "swerve", "skid", "trend", "cut", "curve", "veer", "slide", "slip", "sheer", "slue"]}, {"answer": "slur_over", "hint": "synonyms for slur over", "clues": ["smooth over", "skate over", "skimp over", "gloss over", "slur over"]}, {"answer": "smarten_up", "hint": "synonyms for smarten up", "clues": ["tittivate", "slick up", "spruce up", "spiff up", "spruce", "smarten up"]}, {"answer": "smatter", "hint": "synonyms for smatter", "clues": ["blather", "play around", "babble", "dabble", "smatter"]}, {"answer": "smell_out", "hint": "synonyms for smell out", "clues": ["scent out", "smell", "sense", "nose out", "sniff out", "smell out"]}, {"answer": "smooth_over", "hint": "synonyms for smooth over", "clues": ["skate over", "skimp over", "slur over", "gloss over", "smooth over"]}, {"answer": "snarf", "hint": "synonyms for snarf", "clues": ["swipe", "abstract", "nobble", "sneak", "pilfer", "purloin", "cabbage", "filch", "hook", "pinch", "lift", "snarf"]}, {"answer": "sneak_away", "hint": "synonyms for sneak away", "clues": ["steal away", "slip away", "sneak out", "sneak off", "sneak away"]}, {"answer": "sneak_in", "hint": "synonyms for sneak in", "clues": ["slip in", "stick in", "insert", "creep in", "sneak in"]}, {"answer": "sneak_off", "hint": "synonyms for sneak off", "clues": ["slip away", "sneak out", "steal away", "sneak away", "sneak off"]}, {"answer": "sneak_out", "hint": "synonyms for sneak out", "clues": ["steal away", "slip away", "sneak off", "sneak away", "sneak out"]}, {"answer": "snuff_it", "hint": "synonyms for snuff it", "clues": ["decease", "go", "buy the farm", "choke", "perish", "expire", "croak", "give-up the ghost", "kick the bucket", "pop off", "drop dead", "exit", "conk", "pass away", "die", "pass", "cash in one's chips", "snuff it"]}, {"answer": "soak_up", "hint": "synonyms for soak up", "clues": ["absorb", "draw", "take up", "immerse", "steep", "engross", "imbibe", "sop up", "suck", "plunge", "take in", "suck up", "engulf", "soak up"]}, {"answer": "soar_up", "hint": "synonyms for soar up", "clues": ["soar", "soar upwards", "zoom", "surge", "soar up"]}, {"answer": "soar_upwards", "hint": "synonyms for soar upwards", "clues": ["soar", "soar up", "zoom", "surge", "soar upwards"]}, {"answer": "soften", "hint": "synonyms for soften", "clues": ["break", "cushion", "buffer", "weaken", "relent", "mince", "dampen", "moderate", "damp", "yield", "soften"]}, {"answer": "solicit", "hint": "synonyms for solicit", "clues": ["accost", "woo", "hook", "tap", "romance", "court", "beg", "solicit"]}, {"answer": "solve", "hint": "synonyms for solve", "clues": ["work out", "figure out", "lick", "work", "puzzle out", "resolve", "clear", "solve"]}, {"answer": "sop_up", "hint": "synonyms for sop up", "clues": ["absorb", "draw", "take up", "suck in", "imbibe", "suck", "take in", "soak up", "suck up", "sop up"]}, {"answer": "sort_out", "hint": "synonyms for sort out", "clues": ["correct", "assort", "illuminate", "clear up", "clear", "classify", "straighten out", "crystallise", "discipline", "elucidate", "enlighten", "sort", "class", "shed light on", "separate", "sort out"]}, {"answer": "sound_off", "hint": "synonyms for sound off", "clues": ["speak out", "kick", "kvetch", "quetch", "complain", "opine", "animadvert", "plain", "speak up", "strike up", "sound off"]}, {"answer": "sound_out", "hint": "synonyms for sound out", "clues": ["say", "check out", "pronounce", "articulate", "enounce", "enunciate", "feel out", "sound out"]}, {"answer": "spark_off", "hint": "synonyms for spark off", "clues": ["set off", "spark", "trigger", "actuate", "trigger off", "trip", "touch off", "activate", "spark off"]}, {"answer": "speak", "hint": "synonyms for speak", "clues": ["mouth", "utter", "address", "verbalise", "talk", "speak"]}, {"answer": "speak_out", "hint": "synonyms for speak out", "clues": ["animadvert", "sound off", "speak up", "opine", "speak out"]}, {"answer": "speak_up", "hint": "synonyms for speak up", "clues": ["animadvert", "sound off", "speak out", "opine", "speak up"]}, {"answer": "specialise", "hint": "synonyms for specialise", "clues": ["narrow", "narrow down", "particularize", "specify", "speciate", "differentiate", "specialize"]}, {"answer": "specialize", "hint": "synonyms for specialize", "clues": ["narrow", "narrow down", "particularize", "specify", "speciate", "differentiate", "specialise"]}, {"answer": "specify", "hint": "synonyms for specify", "clues": ["narrow", "pin down", "set apart", "assign", "stipulate", "nail down", "qualify", "fix", "delimit", "specialise", "define", "set", "designate", "condition", "narrow down", "determine", "particularize", "destine", "limit", "delineate", "delimitate", "intend", "peg down", "specify"]}, {"answer": "speculate", "hint": "synonyms for speculate", "clues": ["muse", "reflect", "job", "meditate", "mull over", "hypothesise", "think over", "chew over", "suppose", "ponder", "contemplate", "theorise", "conjecture", "mull", "hypothecate", "ruminate", "excogitate", "speculate"]}, {"answer": "spellbind", "hint": "synonyms for spellbind", "clues": ["mesmerise", "grip", "magnetize", "fascinate", "bewitch", "transfix", "entrance", "spellbind"]}, {"answer": "spend_a_penny", "hint": "synonyms for spend a penny", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "piddle", "urinate", "piss", "relieve oneself", "wee", "spend a penny"]}, {"answer": "spew", "hint": "synonyms for spew", "clues": ["retch", "regurgitate", "purge", "puke", "cast", "vomit up", "disgorge", "honk", "eruct", "be sick", "spew out", "upchuck", "sick", "regorge", "ptyalise", "vomit", "throw up", "spit", "spue", "barf", "chuck", "spew"]}, {"answer": "spiel_off", "hint": "synonyms for spiel off", "clues": ["rattle off", "roll off", "rattle down", "reel off", "spiel off"]}, {"answer": "spiff_up", "hint": "synonyms for spiff up", "clues": ["slick up", "spruce up", "titivate", "smarten up", "spruce", "spiff up"]}, {"answer": "spill_over", "hint": "synonyms for spill over", "clues": ["spill out", "pour out", "overflow", "bubble over", "spill over"]}, {"answer": "spill_the_beans", "hint": "synonyms for spill the beans", "clues": ["peach", "babble", "blab", "let the cat out of the bag", "talk", "sing", "tattle", "blab out", "babble out", "spill the beans"]}, {"answer": "spin_around", "hint": "synonyms for spin around", "clues": ["whirl", "gyrate", "reel", "spin", "spin around"]}, {"answer": "spit_out", "hint": "synonyms for spit out", "clues": ["spit", "spit up", "cough out", "expectorate", "sputter", "cough up", "spit out"]}, {"answer": "spit_up", "hint": "synonyms for spit up", "clues": ["cough up", "cough out", "expectorate", "pony up", "spit out", "spit up"]}, {"answer": "splosh", "hint": "synonyms for splosh", "clues": ["sprinkle", "spatter", "squelch", "slush", "splash", "slop", "squish", "slosh", "swash"]}, {"answer": "spread_out", "hint": "synonyms for spread out", "clues": ["diffuse", "string out", "rotate", "scatter", "fan out", "turn out", "spread", "expand", "dissipate", "disperse", "unfold", "open", "splay", "spread out"]}, {"answer": "spring_up", "hint": "synonyms for spring up", "clues": ["develop", "arise", "originate", "uprise", "grow", "spring up"]}, {"answer": "spruce_up", "hint": "synonyms for spruce up", "clues": ["smarten up", "tittivate", "slick up", "spiff up", "spruce", "spruce up"]}, {"answer": "spue", "hint": "synonyms for spue", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "ptyalise", "vomit", "throw up", "spit", "barf", "chuck", "spue"]}, {"answer": "spurn", "hint": "synonyms for spurn", "clues": ["turn down", "pooh-pooh", "disdain", "reject", "scorn", "freeze off", "spurn"]}, {"answer": "squander", "hint": "synonyms for squander", "clues": ["ware", "consume", "waste", "blow", "squander"]}, {"answer": "square_away", "hint": "synonyms for square away", "clues": ["tidy", "neaten", "straighten out", "straighten", "clean up", "tidy up", "square away"]}, {"answer": "square_up", "hint": "synonyms for square up", "clues": ["determine", "settle", "even up", "square", "square off", "jog", "square up"]}, {"answer": "squeak_by", "hint": "synonyms for squeak by", "clues": ["squeeze by", "scrape by", "scratch along", "scrape along", "squeak through", "rub along", "squeak by"]}, {"answer": "squeeze_by", "hint": "synonyms for squeeze by", "clues": ["squeak by", "scrape by", "scratch along", "scrape along", "rub along", "squeeze by"]}, {"answer": "squeeze_out", "hint": "synonyms for squeeze out", "clues": ["squirt", "wring out", "force out", "eject", "extrude", "eke out", "squeeze out"]}, {"answer": "squirrel_away", "hint": "synonyms for squirrel away", "clues": ["hive up", "lay away", "cache", "hoard", "stash", "squirrel away"]}, {"answer": "stack_away", "hint": "synonyms for stack away", "clues": ["put in", "salt away", "hive away", "store", "lay in", "stash away", "stack away"]}, {"answer": "stamp_down", "hint": "synonyms for stamp down", "clues": ["subdue", "curb", "conquer", "inhibit", "suppress", "stamp down"]}, {"answer": "stand_back", "hint": "synonyms for stand back", "clues": ["stay away", "keep one's distance", "keep one's eyes off", "keep one's hands off", "stand back"]}, {"answer": "stand_by", "hint": "synonyms for stand by", "clues": ["stick about", "stick by", "stick around", "adhere", "stick", "stand by"]}, {"answer": "stand_firm", "hint": "synonyms for stand firm", "clues": ["hold firm", "withstand", "hold out", "resist", "stand fast", "stand pat", "stand firm"]}, {"answer": "stand_for", "hint": "synonyms for stand for", "clues": ["mean", "symbolise", "typify", "signify", "correspond", "represent", "intend", "hold still for", "stand for"]}, {"answer": "stand_out", "hint": "synonyms for stand out", "clues": ["surpass", "excel", "jump out", "leap out", "jump", "stick out", "stand out"]}, {"answer": "stand_up", "hint": "synonyms for stand up", "clues": ["hold water", "hold up", "uprise", "rise", "place upright", "stand", "stick up", "get up", "bristle", "stand up"]}, {"answer": "start_out", "hint": "synonyms for start out", "clues": ["set off", "begin", "commence", "start", "depart", "set about", "get down", "set forth", "take off", "get", "part", "start out"]}, {"answer": "starve", "hint": "synonyms for starve", "clues": ["lust", "thirst", "crave", "hunger", "famish", "starve"]}, {"answer": "stash_away", "hint": "synonyms for stash away", "clues": ["put in", "stack away", "salt away", "hive away", "lay in", "store", "stash away"]}, {"answer": "stave_off", "hint": "synonyms for stave off", "clues": ["avoid", "forfend", "avert", "ward off", "head off", "deflect", "fend off", "obviate", "debar", "stave off"]}, {"answer": "stay_away", "hint": "synonyms for stay away", "clues": ["stand back", "keep one's distance", "keep one's eyes off", "keep one's hands off", "stay away"]}, {"answer": "steady_down", "hint": "synonyms for steady down", "clues": ["take root", "settle down", "root", "settle", "steady down"]}, {"answer": "steal_away", "hint": "synonyms for steal away", "clues": ["slip away", "sneak out", "sneak off", "sneak away", "steal away"]}, {"answer": "step_down", "hint": "synonyms for step down", "clues": ["leave office", "de-escalate", "weaken", "quit", "resign", "step down"]}, {"answer": "step_forward", "hint": "synonyms for step forward", "clues": ["come out", "step up", "step to the fore", "come to the fore", "come forward", "step forward"]}, {"answer": "step_in", "hint": "synonyms for step in", "clues": ["deputize", "substitute", "interpose", "interfere", "intervene", "step in"]}, {"answer": "step_on_it", "hint": "synonyms for step on it", "clues": ["hasten", "speed", "bucket along", "race", "rush", "pelt along", "rush along", "hotfoot", "hie", "cannonball along", "step on it"]}, {"answer": "step_to_the_fore", "hint": "synonyms for step to the fore", "clues": ["step forward", "come out", "step up", "come to the fore", "come forward", "step to the fore"]}, {"answer": "step_up", "hint": "synonyms for step up", "clues": ["rev up", "step to the fore", "come forward", "step forward", "come out", "intensify", "come to the fore", "escalate", "step up"]}, {"answer": "sterilise", "hint": "synonyms for sterilise", "clues": ["sterilize", "unsex", "desexualise", "fix", "desex"]}, {"answer": "sterilize", "hint": "synonyms for sterilize", "clues": ["unsex", "sterilise", "desexualise", "fix", "desex"]}, {"answer": "stick_around", "hint": "synonyms for stick around", "clues": ["stick about", "stay", "stand by", "stay put", "stick", "stick around"]}, {"answer": "stick_in", "hint": "synonyms for stick in", "clues": ["put in", "inclose", "sneak in", "slip in", "introduce", "insert", "stick in"]}, {"answer": "stick_out", "hint": "synonyms for stick out", "clues": ["digest", "support", "abide", "leap out", "jump out", "bear", "suffer", "jut out", "project", "stomach", "protrude", "jut", "endure", "stand out", "jump", "tolerate", "put up", "stand", "brook", "stick out"]}, {"answer": "stick_to", "hint": "synonyms for stick to", "clues": ["hold fast", "bind", "follow", "bond", "stick with", "adhere", "stick", "stick to"]}, {"answer": "stigmatise", "hint": "synonyms for stigmatise", "clues": ["mark", "denounce", "stigmatize", "brand"]}, {"answer": "stigmatize", "hint": "synonyms for stigmatize", "clues": ["mark", "denounce", "brand", "stigmatise"]}, {"answer": "stimulate", "hint": "synonyms for stimulate", "clues": ["stir", "hasten", "make", "energise", "shake up", "arouse", "have", "cause", "rush", "shake", "brace", "excite", "provoke", "get", "induce", "perk up", "stimulate"]}, {"answer": "stir_up", "hint": "synonyms for stir up", "clues": ["set off", "wake", "shake up", "fire up", "agitate", "vex", "incite", "instigate", "heat", "disturb", "inflame", "raise up", "commove", "ignite", "foment", "stir up"]}, {"answer": "straighten", "hint": "synonyms for straighten", "clues": ["unbend", "roll out", "tidy up", "tidy", "straighten out", "neaten", "clean up", "square away", "straighten"]}, {"answer": "straighten_out", "hint": "synonyms for straighten out", "clues": ["iron out", "illuminate", "tidy up", "disentangle", "clear up", "clear", "see the light", "crystalize", "tidy", "neaten", "square away", "unsnarl", "elucidate", "enlighten", "put right", "sort out", "reform", "straighten", "shed light on", "straighten out"]}, {"answer": "strangle", "hint": "synonyms for strangle", "clues": ["gag", "halter", "suffocate", "choke", "cramp", "smother", "stifle", "hamper", "strangulate", "repress", "throttle", "muffle", "strangle"]}, {"answer": "strengthen", "hint": "synonyms for strengthen", "clues": ["beef up", "fortify", "tone up", "tone", "strengthen"]}, {"answer": "stretch_forth", "hint": "synonyms for stretch forth", "clues": ["stretch out", "extend", "hold out", "exsert", "put out", "stretch forth"]}, {"answer": "stretch_out", "hint": "synonyms for stretch out", "clues": ["stretch", "hold out", "stretch forth", "crane", "put out", "extend", "unfold", "exsert", "stretch out"]}, {"answer": "strike_a_chord", "hint": "synonyms for strike a chord", "clues": ["strike a note", "strike home", "hit home", "touch a chord", "strike a chord"]}, {"answer": "strike_down", "hint": "synonyms for strike down", "clues": ["cut down", "cancel", "drop", "fell", "strike down"]}, {"answer": "strike_off", "hint": "synonyms for strike off", "clues": ["strike out", "cross off", "mark", "cross out", "strike off"]}, {"answer": "strike_out", "hint": "synonyms for strike out", "clues": ["cross off", "mark", "strike off", "retire", "cross out", "strike out"]}, {"answer": "strip_down", "hint": "synonyms for strip down", "clues": ["discase", "strip", "peel", "unclothe", "disrobe", "undress", "uncase", "strip down"]}, {"answer": "strive", "hint": "synonyms for strive", "clues": ["reach", "endeavor", "strain", "strive"]}, {"answer": "stun", "hint": "synonyms for stun", "clues": ["stupefy", "sandbag", "daze", "bedaze", "stun"]}, {"answer": "stupefy", "hint": "synonyms for stupefy", "clues": ["flummox", "gravel", "amaze", "nonplus", "puzzle", "besot", "get", "perplex", "baffle", "dumbfound", "pose", "beat", "stun", "vex", "bewilder", "stick", "mystify", "stupefy"]}, {"answer": "subdue", "hint": "synonyms for subdue", "clues": ["quash", "crucify", "inhibit", "overcome", "stamp down", "tame", "conquer", "subjugate", "repress", "suppress", "get over", "subordinate", "master", "reduce", "surmount", "keep down", "mortify", "curb", "chasten", "subdue"]}, {"answer": "subjugate", "hint": "synonyms for subjugate", "clues": ["repress", "subdue", "subject", "quash", "reduce", "keep down", "subjugate"]}, {"answer": "submerge", "hint": "synonyms for submerge", "clues": ["drown", "submerse", "deluge", "inundate", "overwhelm"]}, {"answer": "submit", "hint": "synonyms for submit", "clues": ["pass on", "put in", "put forward", "state", "bow", "give in", "take", "reconcile", "resign", "defer", "accede", "present", "relegate", "subject", "posit", "render", "submit"]}, {"answer": "subscribe", "hint": "synonyms for subscribe", "clues": ["support", "subscribe to", "pledge", "sign", "take"]}, {"answer": "substantiate", "hint": "synonyms for substantiate", "clues": ["incarnate", "support", "actualise", "confirm", "realize", "sustain", "body forth", "affirm", "corroborate", "embody", "substantiate"]}, {"answer": "subvert", "hint": "synonyms for subvert", "clues": ["countermine", "bring down", "vitiate", "weaken", "debase", "misdirect", "pervert", "sabotage", "overturn", "undermine", "corrupt", "deprave", "counteract", "demoralise", "profane", "overthrow", "debauch", "subvert"]}, {"answer": "succeed", "hint": "synonyms for succeed", "clues": ["deliver the goods", "bring home the bacon", "win", "follow", "come after", "come through", "succeed"]}, {"answer": "succumb", "hint": "synonyms for succumb", "clues": ["buckle under", "give in", "yield", "succumb"]}, {"answer": "suck_in", "hint": "synonyms for suck in", "clues": ["sop up", "suck", "take up", "draw in", "take in", "suck in"]}, {"answer": "suck_up", "hint": "synonyms for suck up", "clues": ["cozy up", "absorb", "bootlick", "draw", "take up", "cotton up", "kowtow", "sidle up", "imbibe", "sop up", "take in", "toady", "play up", "soak up", "fawn", "shine up", "suck", "truckle", "suck up"]}, {"answer": "suckle", "hint": "synonyms for suckle", "clues": ["nurse", "wet-nurse", "breastfeed", "give suck", "suck", "lactate", "suckle"]}, {"answer": "suffer", "hint": "synonyms for suffer", "clues": ["digest", "support", "lose", "abide", "meet", "have", "endure", "bear", "tolerate", "put up", "sustain", "ache", "hurt", "get", "stand", "stomach", "brook", "stick out", "suffer"]}, {"answer": "suffocate", "hint": "synonyms for suffocate", "clues": ["gag", "smother", "asphyxiate", "stifle", "choke", "strangle", "suffocate"]}, {"answer": "suggest", "hint": "synonyms for suggest", "clues": ["indicate", "paint a picture", "hint", "advise", "evoke", "intimate", "propose", "suggest"]}, {"answer": "sum_up", "hint": "synonyms for sum up", "clues": ["resume", "tot up", "total", "add together", "summate", "tot", "add up", "add", "sum", "tally", "summarise", "sum up"]}, {"answer": "summarise", "hint": "synonyms for summarise", "clues": ["resume", "sum up", "sum", "summarize"]}, {"answer": "summarize", "hint": "synonyms for summarize", "clues": ["resume", "sum up", "sum", "summarise"]}, {"answer": "summate", "hint": "synonyms for summate", "clues": ["tot up", "total", "add together", "tot", "add up", "add", "sum", "sum up", "tally", "summate"]}, {"answer": "summon", "hint": "synonyms for summon", "clues": ["rally", "muster", "come up", "mobilize", "marshal", "muster up", "cite", "summons"]}, {"answer": "supercede", "hint": "synonyms for supercede", "clues": ["replace", "supplant", "supersede", "supervene upon"]}, {"answer": "supercharge", "hint": "synonyms for supercharge", "clues": ["pressurise", "boost", "advance", "supercharge"]}, {"answer": "supersede", "hint": "synonyms for supersede", "clues": ["replace", "supercede", "supplant", "supervene upon"]}, {"answer": "supervene_upon", "hint": "synonyms for supervene upon", "clues": ["replace", "supercede", "supplant", "supervene upon"]}, {"answer": "supervise", "hint": "synonyms for supervise", "clues": ["superintend", "monitor", "manage", "oversee", "supervise"]}, {"answer": "supplant", "hint": "synonyms for supplant", "clues": ["replace", "supercede", "supervene upon", "supplant"]}, {"answer": "suppose", "hint": "synonyms for suppose", "clues": ["say", "guess", "conjecture", "reckon", "speculate", "think", "theorise", "hypothesise", "hypothecate", "presuppose", "imagine", "opine", "suppose"]}, {"answer": "suppress", "hint": "synonyms for suppress", "clues": ["bottle up", "inhibit", "stamp down", "oppress", "subdue", "curb", "conquer", "crush", "repress", "suppress"]}, {"answer": "surmount", "hint": "synonyms for surmount", "clues": ["get over", "surpass", "master", "outdo", "outstrip", "overcome", "exceed", "outmatch", "outperform", "subdue", "scale", "outgo", "surmount"]}, {"answer": "surpass", "hint": "synonyms for surpass", "clues": ["travel by", "pass by", "transcend", "outdo", "outstrip", "surmount", "stand out", "exceed", "outmatch", "go by", "excel", "outperform", "go past", "pass", "outgo", "surpass"]}, {"answer": "survive", "hint": "synonyms for survive", "clues": ["hold up", "live", "go", "hold out", "come through", "pull through", "outlast", "endure", "live on", "exist", "make it", "outlive", "last", "pull round", "subsist", "survive"]}, {"answer": "suspire", "hint": "synonyms for suspire", "clues": ["sigh", "take a breath", "breathe", "respire", "suspire"]}, {"answer": "suss_out", "hint": "synonyms for suss out", "clues": ["look into", "check over", "check up on", "go over", "check out", "check", "check into", "suss out"]}, {"answer": "sustain", "hint": "synonyms for sustain", "clues": ["hold up", "support", "keep", "keep up", "affirm", "substantiate", "confirm", "prolong", "have", "suffer", "nourish", "nurture", "get", "hold", "maintain", "corroborate", "sustain"]}, {"answer": "swallow_up", "hint": "synonyms for swallow up", "clues": ["swallow", "bury", "immerse", "eat up", "swallow up"]}, {"answer": "swear", "hint": "synonyms for swear", "clues": ["aver", "imprecate", "rely", "curse", "affirm", "swan", "depone", "avow", "cuss", "assert", "depose", "bank", "trust", "verify", "blaspheme", "swear"]}, {"answer": "sweep_over", "hint": "synonyms for sweep over", "clues": ["overpower", "whelm", "overtake", "overwhelm", "overcome", "sweep over"]}, {"answer": "sweep_through", "hint": "synonyms for sweep through", "clues": ["pass with flying colors", "breeze through", "nail", "ace", "sail through", "sweep through"]}, {"answer": "sweep_up", "hint": "synonyms for sweep up", "clues": ["tangle", "sweep", "adopt", "embrace", "embroil", "drag", "drag in", "espouse", "sweep up"]}, {"answer": "sweet-talk", "hint": "synonyms for sweet-talk", "clues": ["coax", "palaver", "inveigle", "blarney", "wheedle", "cajole", "sweet-talk"]}, {"answer": "swell_up", "hint": "synonyms for swell up", "clues": ["tumesce", "swell", "tumefy", "swell up"]}, {"answer": "swot_up", "hint": "synonyms for swot up", "clues": ["grind away", "bone up", "mug up", "drum", "cram", "bone", "swot", "get up", "swot up"]}, {"answer": "symbolise", "hint": "synonyms for symbolise", "clues": ["stand for", "symbolize", "typify", "represent"]}, {"answer": "symbolize", "hint": "synonyms for symbolize", "clues": ["stand for", "symbolise", "typify", "represent"]}, {"answer": "sympathise", "hint": "synonyms for sympathise", "clues": ["empathise", "commiserate", "understand", "sympathize"]}, {"answer": "sympathize", "hint": "synonyms for sympathize", "clues": ["sympathise", "empathise", "commiserate", "understand"]}, {"answer": "sympathize_with", "hint": "synonyms for sympathize with", "clues": ["condole with", "pity", "compassionate", "feel for", "sympathize with"]}, {"answer": "tack_on", "hint": "synonyms for tack on", "clues": ["tack", "tag on", "append", "hang on", "tack on"]}, {"answer": "tack_together", "hint": "synonyms for tack together", "clues": ["set up", "tack", "assemble", "piece", "put together", "tack together"]}, {"answer": "tag_on", "hint": "synonyms for tag on", "clues": ["tack", "tack on", "append", "hang on", "tag on"]}, {"answer": "tailor-make", "hint": "synonyms for tailor-make", "clues": ["sew", "customize", "custom-make", "tailor", "tailor-make"]}, {"answer": "take_a_chance", "hint": "synonyms for take a chance", "clues": ["adventure", "run a risk", "gamble", "risk", "hazard", "take chances", "chance"]}, {"answer": "take_a_crap", "hint": "synonyms for take a crap", "clues": ["shit", "make", "ca-ca", "take a shit", "defecate", "stool", "crap", "take a crap"]}, {"answer": "take_a_hop", "hint": "synonyms for take a hop", "clues": ["bounce", "resile", "recoil", "ricochet", "reverberate", "bound", "spring", "rebound", "take a hop"]}, {"answer": "take_a_leak", "hint": "synonyms for take a leak", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "take a leak"]}, {"answer": "take_a_shit", "hint": "synonyms for take a shit", "clues": ["shit", "make", "take a crap", "ca-ca", "defecate", "stool", "crap", "take a shit"]}, {"answer": "take_aback", "hint": "synonyms for take aback", "clues": ["ball over", "floor", "shock", "blow out of the water", "take aback"]}, {"answer": "take_aim", "hint": "synonyms for take aim", "clues": ["train", "aim", "take", "direct", "take aim"]}, {"answer": "take_apart", "hint": "synonyms for take apart", "clues": ["discerp", "break up", "break apart", "analyse", "dismantle", "dissect", "disassemble", "break down", "dismember", "take apart"]}, {"answer": "take_away", "hint": "synonyms for take away", "clues": ["bear off", "remove", "withdraw", "take", "bear away", "carry away", "detract", "take out", "carry off", "take away"]}, {"answer": "take_back", "hint": "synonyms for take back", "clues": ["swallow", "return", "unsay", "bring back", "repossess", "withdraw", "take back"]}, {"answer": "take_care", "hint": "synonyms for take care", "clues": ["mind", "look", "see", "attend", "take care"]}, {"answer": "take_chances", "hint": "synonyms for take chances", "clues": ["adventure", "run a risk", "gamble", "risk", "hazard", "take a chance", "chance"]}, {"answer": "take_down", "hint": "synonyms for take down", "clues": ["put down", "note", "bring down", "level", "degrade", "dismantle", "pull down", "let down", "raze", "tear down", "demean", "disgrace", "lower", "rase", "take down"]}, {"answer": "take_fire", "hint": "synonyms for take fire", "clues": ["erupt", "conflagrate", "combust", "catch fire", "ignite", "take fire"]}, {"answer": "take_in", "hint": "synonyms for take in", "clues": ["take up", "gull", "clear", "imbibe", "befool", "sop up", "gather in", "consume", "view", "ingest", "receive", "soak up", "suck up", "cod", "pull in", "gain", "dupe", "take", "assimilate", "put one across", "suck", "see", "slang", "earn", "absorb", "watch", "draw", "suck in", "overhear", "have", "realise", "put on", "invite", "make", "adopt", "fool", "catch", "put one over", "bring in", "collect", "take in"]}, {"answer": "take_off", "hint": "synonyms for take off", "clues": ["set off", "deduct", "take time off", "start", "depart", "start out", "subtract", "get off the ground", "set forth", "lift off", "set out", "part", "take off"]}, {"answer": "take_on", "hint": "synonyms for take on", "clues": ["adopt", "encounter", "meet", "accept", "take", "take over", "undertake", "acquire", "admit", "tackle", "play", "assume", "take on"]}, {"answer": "take_out", "hint": "synonyms for take out", "clues": ["ask out", "remove", "draw", "exclude", "except", "invite out", "leave out", "withdraw", "pull up", "extract", "leave off", "buy food", "draw out", "omit", "take away", "draw off", "pull out", "get out", "unpack", "pull", "move out", "take out"]}, {"answer": "take_over", "hint": "synonyms for take over", "clues": ["absorb", "take on", "adopt", "take up", "accept", "bear", "seize", "buy up", "arrogate", "repeat", "borrow", "usurp", "buy out", "assume", "relieve", "take over"]}, {"answer": "take_place", "hint": "synonyms for take place", "clues": ["hap", "occur", "fall out", "happen", "come about", "pass off", "go on", "pass", "take place"]}, {"answer": "take_root", "hint": "synonyms for take root", "clues": ["steady down", "settle down", "root", "settle", "take root"]}, {"answer": "take_stock", "hint": "synonyms for take stock", "clues": ["stock-take", "scrutinize", "size up", "inventory", "take stock"]}, {"answer": "take_to_be", "hint": "synonyms for take to be", "clues": ["think of", "look upon", "repute", "esteem", "regard as", "take to be"]}, {"answer": "take_to_task", "hint": "synonyms for take to task", "clues": ["call down", "chew up", "lambaste", "reproof", "jaw", "lecture", "have words", "chide", "scold", "call on the carpet", "chew out", "remonstrate", "reprimand", "rebuke", "berate", "dress down", "trounce", "bawl out", "rag", "take to task"]}, {"answer": "take_to_the_woods", "hint": "synonyms for take to the woods", "clues": ["escape", "hightail it", "fly the coop", "turn tail", "run", "lam", "run away", "scat", "break away", "bunk", "head for the hills", "scarper", "take to the woods"]}, {"answer": "take_up", "hint": "synonyms for take up", "clues": ["absorb", "fasten on", "start", "draw", "scoop up", "suck in", "take over", "imbibe", "lift out", "scoop", "take in", "soak up", "suck up", "resume", "hook on", "adopt", "seize on", "latch on", "take", "sorb", "strike", "suck", "borrow", "scoop out", "assume", "take up"]}, {"answer": "tantalise", "hint": "synonyms for tantalise", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalize", "rag"]}, {"answer": "tantalize", "hint": "synonyms for tantalize", "clues": ["cod", "rally", "ride", "taunt", "razz", "twit", "tease", "bait", "tantalise", "rag"]}, {"answer": "tear_down", "hint": "synonyms for tear down", "clues": ["raze", "take down", "level", "dismantle", "rase", "pull down", "tear down"]}, {"answer": "tear_into", "hint": "synonyms for tear into", "clues": ["lay into", "pitch into", "lace into", "tear into"]}, {"answer": "teem", "hint": "synonyms for teem", "clues": ["swarm", "stream", "pour", "pullulate", "teem"]}, {"answer": "tell_apart", "hint": "synonyms for tell apart", "clues": ["recognise", "spot", "differentiate", "severalise", "tell", "pick out", "make out", "secernate", "discern", "distinguish", "separate", "secern", "tell apart"]}, {"answer": "tell_on", "hint": "synonyms for tell on", "clues": ["betray", "shit", "denounce", "shop", "snitch", "give away", "stag", "grass", "rat", "tell on"]}, {"answer": "tempt", "hint": "synonyms for tempt", "clues": ["invite", "charm", "influence", "lure", "allure", "entice", "tempt"]}, {"answer": "tend", "hint": "synonyms for tend", "clues": ["incline", "lean", "be given", "run", "tend"]}, {"answer": "tergiversate", "hint": "synonyms for tergiversate", "clues": ["prevaricate", "apostatize", "beat around the bush", "equivocate", "palter", "tergiversate"]}, {"answer": "terminate", "hint": "synonyms for terminate", "clues": ["sack", "can", "give the sack", "force out", "dismiss", "give notice", "give the axe", "end", "stop", "send away", "displace", "finish", "fire", "cease", "terminate"]}, {"answer": "testify", "hint": "synonyms for testify", "clues": ["prove", "attest", "evidence", "show", "bear witness", "take the stand", "testify"]}, {"answer": "theorise", "hint": "synonyms for theorise", "clues": ["hypothesise", "hypothecate", "theorize", "suppose", "conjecture", "speculate"]}, {"answer": "theorize", "hint": "synonyms for theorize", "clues": ["hypothesise", "hypothecate", "suppose", "theorise", "conjecture", "speculate"]}, {"answer": "thieve", "hint": "synonyms for thieve", "clues": ["glom", "hook", "knock off", "snitch", "cop", "thieve"]}, {"answer": "thin_out", "hint": "synonyms for thin out", "clues": ["cut", "thin", "reduce", "dilute", "thin out"]}, {"answer": "think_about", "hint": "synonyms for think about", "clues": ["flirt with", "entertain", "toy with", "think of", "think about"]}, {"answer": "think_of", "hint": "synonyms for think of", "clues": ["entertain", "mean", "concoct", "think up", "toy with", "think about", "regard as", "esteem", "dream up", "hatch", "look upon", "repute", "flirt with", "take to be", "remember", "have in mind", "think of"]}, {"answer": "think_over", "hint": "synonyms for think over", "clues": ["muse", "reflect", "meditate", "ponder", "contemplate", "mull", "speculate", "mull over", "ruminate", "chew over", "excogitate", "think over"]}, {"answer": "think_up", "hint": "synonyms for think up", "clues": ["dream up", "think of", "concoct", "hatch", "think up"]}, {"answer": "thrash_about", "hint": "synonyms for thrash about", "clues": ["convulse", "thresh about", "toss", "thresh", "slash", "jactitate", "thrash"]}, {"answer": "threaten", "hint": "synonyms for threaten", "clues": ["imperil", "jeopardise", "peril", "menace", "endanger", "threaten"]}, {"answer": "thresh", "hint": "synonyms for thresh", "clues": ["thrash about", "toss", "flail", "slash", "jactitate", "thrash", "lam", "convulse", "thresh"]}, {"answer": "thresh_about", "hint": "synonyms for thresh about", "clues": ["convulse", "thrash about", "toss", "thresh", "slash", "jactitate", "thrash"]}, {"answer": "thrive", "hint": "synonyms for thrive", "clues": ["flourish", "fly high", "prosper", "expand", "boom", "thrive"]}, {"answer": "throw_a_fit", "hint": "synonyms for throw a fit", "clues": ["blow one's stack", "combust", "flip one's wig", "have kittens", "blow up", "lose one's temper", "blow a fuse", "fly off the handle", "hit the ceiling", "hit the roof", "go ballistic", "have a fit", "throw a fit"]}, {"answer": "throw_away", "hint": "synonyms for throw away", "clues": ["dispose", "drop", "toss", "cast aside", "chuck out", "cast off", "put away", "cast", "toss out", "throw out", "toss away", "cast away", "throw", "shake off", "shed", "discard", "throw off", "cast out", "fling", "throw away"]}, {"answer": "throw_in", "hint": "synonyms for throw in", "clues": ["put in", "inject", "interpose", "fall by the wayside", "drop by the wayside", "give up", "drop out", "chuck up the sponge", "come in", "throw in the towel", "quit", "interject", "throw in"]}, {"answer": "throw_in_the_towel", "hint": "synonyms for throw in the towel", "clues": ["give up", "quit", "fall by the wayside", "drop by the wayside", "drop out", "throw in", "chuck up the sponge", "throw in the towel"]}, {"answer": "throw_off", "hint": "synonyms for throw off", "clues": ["throw", "shake off", "shed", "drop", "escape from", "cast off", "shake", "throw away", "cast", "throw off"]}, {"answer": "throw_out", "hint": "synonyms for throw out", "clues": ["dispose", "drum out", "toss", "cast aside", "kick out", "chuck out", "fling", "put away", "toss out", "advance", "toss away", "cast away", "oust", "discard", "boot out", "dismiss", "throw away", "expel", "cast out", "throw out"]}, {"answer": "throw_overboard", "hint": "synonyms for throw overboard", "clues": ["waive", "forfeit", "forego", "give up", "deep-six", "throw overboard"]}, {"answer": "throw_up", "hint": "synonyms for throw up", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "spue", "barf", "chuck", "throw up"]}, {"answer": "tick_off", "hint": "synonyms for tick off", "clues": ["check off", "mark off", "mark", "check", "tick", "tick off"]}, {"answer": "tickle_pink", "hint": "synonyms for tickle pink", "clues": ["inebriate", "beatify", "thrill", "exalt", "exhilarate", "tickle pink"]}, {"answer": "tidy_up", "hint": "synonyms for tidy up", "clues": ["tidy", "neaten", "straighten out", "straighten", "clean up", "square away", "tidy up"]}, {"answer": "tie_in", "hint": "synonyms for tie in", "clues": ["link up", "link", "associate", "colligate", "relate", "connect", "tie in"]}, {"answer": "tie_up", "hint": "synonyms for tie up", "clues": ["bind", "truss", "tie down", "bind off", "moor", "berth", "tie up"]}, {"answer": "tighten", "hint": "synonyms for tighten", "clues": ["tighten up", "fasten", "constrain", "reduce", "stiffen", "tighten"]}, {"answer": "tip_over", "hint": "synonyms for tip over", "clues": ["bowl over", "tump over", "knock over", "overturn", "upset", "turn over", "tip over"]}, {"answer": "tire_out", "hint": "synonyms for tire out", "clues": ["wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "wear upon", "fag out", "tire out"]}, {"answer": "titivate", "hint": "synonyms for titivate", "clues": ["slick up", "spruce up", "spiff up", "smarten up", "tittivate", "spruce"]}, {"answer": "tittivate", "hint": "synonyms for tittivate", "clues": ["slick up", "spruce up", "spiff up", "titivate", "smarten up", "spruce"]}, {"answer": "tittup", "hint": "synonyms for tittup", "clues": ["prance", "cock", "ruffle", "sashay", "strut", "swagger", "tittup"]}, {"answer": "toddle", "hint": "synonyms for toddle", "clues": ["totter", "paddle", "waddle", "coggle", "dodder", "toddle"]}, {"answer": "tog", "hint": "synonyms for tog", "clues": ["raiment", "apparel", "enclothe", "garment", "habilitate", "dress", "fit out", "garb", "tog"]}, {"answer": "tog_out", "hint": "synonyms for tog out", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "tog out"]}, {"answer": "tog_up", "hint": "synonyms for tog up", "clues": ["fig up", "deck up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "tog up"]}, {"answer": "tolerate", "hint": "synonyms for tolerate", "clues": ["digest", "support", "abide", "bear", "endure", "suffer", "put up", "permit", "stand", "stomach", "brook", "allow", "stick out", "tolerate"]}, {"answer": "tone_down", "hint": "synonyms for tone down", "clues": ["dampen", "tame", "mute", "moderate", "dull", "damp", "muffle", "tone down"]}, {"answer": "toss_away", "hint": "synonyms for toss away", "clues": ["dispose", "discard", "toss", "cast aside", "fling", "chuck out", "throw away", "put away", "toss out", "throw out", "cast out", "cast away", "toss away"]}, {"answer": "toss_off", "hint": "synonyms for toss off", "clues": ["dash off", "fling off", "kill", "pour down", "belt down", "down", "pop", "scratch off", "knock off", "drink down", "toss off"]}, {"answer": "toss_out", "hint": "synonyms for toss out", "clues": ["dispose", "discard", "toss", "cast aside", "fling", "chuck out", "throw away", "put away", "throw out", "cast out", "toss away", "cast away", "toss out"]}, {"answer": "tot_up", "hint": "synonyms for tot up", "clues": ["total", "add together", "summate", "tot", "add up", "add", "sum", "sum up", "tally", "tote up"]}, {"answer": "tote_up", "hint": "synonyms for tote up", "clues": ["tot up", "total", "add together", "summate", "tot", "add up", "add", "sum", "sum up", "tally"]}, {"answer": "totter", "hint": "synonyms for totter", "clues": ["waddle", "paddle", "toddle", "teeter", "coggle", "seesaw", "dodder", "totter"]}, {"answer": "touch_off", "hint": "synonyms for touch off", "clues": ["set off", "spark", "spark off", "trigger", "actuate", "trigger off", "trip", "activate", "touch off"]}, {"answer": "touch_on", "hint": "synonyms for touch on", "clues": ["mend", "relate", "touch", "doctor", "fix", "affect", "concern", "repair", "impact", "bear upon", "refer", "furbish up", "have-to doe with", "pertain", "come to", "restore", "bushel", "touch on"]}, {"answer": "toy_with", "hint": "synonyms for toy with", "clues": ["flirt with", "entertain", "think about", "think of", "toy with"]}, {"answer": "tranquilize", "hint": "synonyms for tranquilize", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull", "sedate"]}, {"answer": "tranquillise", "hint": "synonyms for tranquillise", "clues": ["quiet", "calm", "tranquillize", "still", "quieten", "calm down", "lull", "sedate"]}, {"answer": "tranquillize", "hint": "synonyms for tranquillize", "clues": ["quiet", "calm", "tranquillise", "still", "quieten", "calm down", "lull", "sedate"]}, {"answer": "transcend", "hint": "synonyms for transcend", "clues": ["exceed", "go past", "surpass", "overstep", "pass", "top", "transcend"]}, {"answer": "transfigure", "hint": "synonyms for transfigure", "clues": ["metamorphose", "glorify", "spiritualize", "transmogrify", "transfigure"]}, {"answer": "transfix", "hint": "synonyms for transfix", "clues": ["spellbind", "grip", "spike", "empale", "fascinate", "impale", "transfix"]}, {"answer": "transform", "hint": "synonyms for transform", "clues": ["metamorphose", "translate", "transubstantiate", "transmute", "transform"]}, {"answer": "transgress", "hint": "synonyms for transgress", "clues": ["break", "breach", "overstep", "sin", "infract", "offend", "trespass", "violate", "go against", "transgress"]}, {"answer": "translate", "hint": "synonyms for translate", "clues": ["interpret", "read", "understand", "transform", "render", "translate"]}, {"answer": "transmit", "hint": "synonyms for transmit", "clues": ["convey", "send", "conduct", "channel", "beam", "channelize", "communicate", "transfer", "broadcast", "carry", "transport", "air", "impart", "transmit"]}, {"answer": "transude", "hint": "synonyms for transude", "clues": ["ooze", "exudate", "exude", "ooze out", "transude"]}, {"answer": "travel_by", "hint": "synonyms for travel by", "clues": ["go by", "go past", "surpass", "pass by", "pass", "travel by"]}, {"answer": "trick_out", "hint": "synonyms for trick out", "clues": ["fig up", "deck up", "tog up", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "trick up", "get up", "deck out", "dress up", "trick out"]}, {"answer": "trick_up", "hint": "synonyms for trick up", "clues": ["fig up", "deck up", "tog up", "trick out", "fig out", "fancy up", "tog out", "gussy up", "attire", "overdress", "prink", "get up", "deck out", "dress up", "trick up"]}, {"answer": "trigger_off", "hint": "synonyms for trigger off", "clues": ["set off", "spark", "spark off", "trigger", "actuate", "trip", "touch off", "activate", "trigger off"]}, {"answer": "trim_back", "hint": "synonyms for trim back", "clues": ["cut back", "cut", "cut down", "trim", "bring down", "reduce", "trim down", "trim back"]}, {"answer": "trim_down", "hint": "synonyms for trim down", "clues": ["cut back", "cut", "cut down", "trim back", "trim", "bring down", "reduce", "trim down"]}, {"answer": "trip_up", "hint": "synonyms for trip up", "clues": ["trip", "catch", "slip up", "stumble", "trip up"]}, {"answer": "trounce", "hint": "synonyms for trounce", "clues": ["call down", "chew up", "shell", "whip", "take to task", "jaw", "lecture", "call on the carpet", "slash", "vanquish", "lambast", "rebuke", "flog", "rag", "reproof", "beat out", "beat", "have words", "welt", "chide", "scold", "chew out", "remonstrate", "reprimand", "lather", "strap", "berate", "dress down", "crush", "bawl out", "trounce"]}, {"answer": "try_out", "hint": "synonyms for try out", "clues": ["examine", "prove", "experiment", "try", "test", "sample", "audition", "taste", "essay", "try out"]}, {"answer": "tucker_out", "hint": "synonyms for tucker out", "clues": ["exhaust", "beat", "tucker", "wash up", "tucker out"]}, {"answer": "tumefy", "hint": "synonyms for tumefy", "clues": ["tumesce", "swell up", "swell", "tumefy"]}, {"answer": "tumesce", "hint": "synonyms for tumesce", "clues": ["swell up", "swell", "intumesce", "tumefy"]}, {"answer": "tump_over", "hint": "synonyms for tump over", "clues": ["bowl over", "knock over", "overturn", "tip over", "upset", "turn over", "tump over"]}, {"answer": "turf_out", "hint": "synonyms for turf out", "clues": ["exclude", "eject", "boot out", "chuck out", "turn out"]}, {"answer": "turn_away", "hint": "synonyms for turn away", "clues": ["deflect", "turn down", "reject", "avert", "refuse", "bend", "turn away"]}, {"answer": "turn_back", "hint": "synonyms for turn back", "clues": ["invert", "stop", "arrest", "return", "drive away", "double back", "run off", "revert", "drive out", "drive off", "retrovert", "regress", "check", "reverse", "dispel", "chase away", "contain", "backtrack", "hold back", "turn back"]}, {"answer": "turn_down", "hint": "synonyms for turn down", "clues": ["decline", "turn away", "lour", "freeze off", "pass up", "reject", "pooh-pooh", "disdain", "spurn", "lower", "scorn", "refuse", "turn down"]}, {"answer": "turn_in", "hint": "synonyms for turn in", "clues": ["go to bed", "hit the sack", "sack out", "fork over", "bed", "hit the hay", "fork up", "put on", "render", "go to sleep", "crawl in", "deliver", "retire", "fork out", "kip down", "hand over", "turn in"]}, {"answer": "turn_off", "hint": "synonyms for turn off", "clues": ["cut", "put off", "turn out", "switch off", "turn off"]}, {"answer": "turn_on", "hint": "synonyms for turn on", "clues": ["depend on", "ride", "get off", "hinge upon", "arouse", "agitate", "trip out", "charge", "switch on", "wind up", "charge up", "sex", "trip", "excite", "devolve on", "commove", "turn on"]}, {"answer": "turn_out", "hint": "synonyms for turn out", "clues": ["turf out", "exclude", "rise", "bear", "chuck out", "turn up", "turn off", "come out", "spread out", "prove", "boot out", "rotate", "uprise", "cut", "eject", "switch off", "get up", "splay"]}, {"answer": "turn_over", "hint": "synonyms for turn over", "clues": ["tump over", "flip over", "cut into", "dig", "deliberate", "tip over", "turn", "hand", "roll", "delve", "pass on", "flip", "bowl over", "knock over", "consider", "give", "overturn", "reach", "debate", "moot", "pass", "upset", "turn over"]}, {"answer": "turn_tail", "hint": "synonyms for turn tail", "clues": ["escape", "hightail it", "fly the coop", "run", "lam", "run away", "scat", "break away", "bunk", "take to the woods", "head for the hills", "scarper", "turn tail"]}, {"answer": "turn_up", "hint": "synonyms for turn up", "clues": ["dig up", "prove", "show up", "excavate", "fold", "locate", "turn out", "come on", "come out", "fold up", "surface", "turn up"]}, {"answer": "twist_around", "hint": "synonyms for twist around", "clues": ["sophisticate", "twist", "convolute", "pervert", "twist around"]}, {"answer": "typify", "hint": "synonyms for typify", "clues": ["stand for", "symbolize", "epitomize", "represent", "typify"]}, {"answer": "ululate", "hint": "synonyms for ululate", "clues": ["howl", "yaup", "roar", "wail", "yawl", "ululate"]}, {"answer": "unbend", "hint": "synonyms for unbend", "clues": ["unwind", "loosen up", "decompress", "straighten", "slow down", "relax", "unbend"]}, {"answer": "uncase", "hint": "synonyms for uncase", "clues": ["discase", "strip", "strip down", "unclothe", "disrobe", "undress", "peel", "uncase"]}, {"answer": "unclothe", "hint": "synonyms for unclothe", "clues": ["discase", "strip", "peel", "strip down", "disrobe", "undress", "uncase", "unclothe"]}, {"answer": "uncover", "hint": "synonyms for uncover", "clues": ["bring out", "reveal", "expose", "unveil", "uncover"]}, {"answer": "undermine", "hint": "synonyms for undermine", "clues": ["cave", "counteract", "countermine", "weaken", "subvert", "sabotage", "undermine"]}, {"answer": "understand", "hint": "synonyms for understand", "clues": ["sympathise", "translate", "read", "infer", "interpret", "realize", "empathise", "see", "understand"]}, {"answer": "undertake", "hint": "synonyms for undertake", "clues": ["take on", "take in charge", "contract", "tackle", "attempt", "set about", "guarantee", "undertake"]}, {"answer": "undervalue", "hint": "synonyms for undervalue", "clues": ["depreciate", "devalue", "underestimate", "undervalue"]}, {"answer": "underwrite", "hint": "synonyms for underwrite", "clues": ["subvent", "cover", "insure", "subvention", "underwrite"]}, {"answer": "undo", "hint": "synonyms for undo", "clues": ["untie", "unwrap", "loosen", "unmake", "undo"]}, {"answer": "unfold", "hint": "synonyms for unfold", "clues": ["stretch", "blossom forth", "blossom out", "blossom", "spread", "extend", "open", "spread out", "stretch out", "unfold"]}, {"answer": "unfreeze", "hint": "synonyms for unfreeze", "clues": ["unblock", "dethaw", "unthaw", "thaw", "free", "release", "dissolve", "melt", "unfreeze"]}, {"answer": "unhinge", "hint": "synonyms for unhinge", "clues": ["cark", "trouble", "disquiet", "distract", "disorder", "perturb", "unhinge"]}, {"answer": "unhorse", "hint": "synonyms for unhorse", "clues": ["light", "get off", "dismount", "get down", "unhorse"]}, {"answer": "unify", "hint": "synonyms for unify", "clues": ["unite", "mix", "commix", "merge", "amalgamate", "mingle", "unify"]}, {"answer": "unite", "hint": "synonyms for unite", "clues": ["link", "join", "merge", "connect", "combine", "unify", "link up", "unite"]}, {"answer": "unknot", "hint": "synonyms for unknot", "clues": ["unravel", "unscramble", "untangle", "unpick", "unknot"]}, {"answer": "unlax", "hint": "synonyms for unlax", "clues": ["unstrain", "unwind", "loosen up", "make relaxed", "relax", "unlax"]}, {"answer": "unload", "hint": "synonyms for unload", "clues": ["drop off", "drop", "put down", "offload", "unlade", "discharge", "set down", "unload"]}, {"answer": "unloose", "hint": "synonyms for unloose", "clues": ["free", "unloosen", "loose", "release", "liberate"]}, {"answer": "unloosen", "hint": "synonyms for unloosen", "clues": ["free", "loose", "release", "liberate", "unloose"]}, {"answer": "unpick", "hint": "synonyms for unpick", "clues": ["unravel", "untangle", "unknot", "unscramble", "unpick"]}, {"answer": "unravel", "hint": "synonyms for unravel", "clues": ["untangle", "unpick", "ravel out", "run", "ravel", "unknot", "unscramble", "unravel"]}, {"answer": "unscramble", "hint": "synonyms for unscramble", "clues": ["unravel", "untangle", "unknot", "unpick", "unscramble"]}, {"answer": "unsex", "hint": "synonyms for unsex", "clues": ["sterilize", "desexualise", "fix", "desex", "unsex"]}, {"answer": "unstrain", "hint": "synonyms for unstrain", "clues": ["unwind", "loosen up", "make relaxed", "unlax", "relax", "unstrain"]}, {"answer": "untangle", "hint": "synonyms for untangle", "clues": ["unravel", "unpick", "extricate", "disencumber", "unknot", "disentangle", "unscramble", "untangle"]}, {"answer": "unthaw", "hint": "synonyms for unthaw", "clues": ["dethaw", "unfreeze", "thaw", "dissolve", "melt", "unthaw"]}, {"answer": "untie", "hint": "synonyms for untie", "clues": ["undo", "unbrace", "unlace", "loosen", "untie"]}, {"answer": "untune", "hint": "synonyms for untune", "clues": ["upset", "disconcert", "discompose", "discomfit", "untune"]}, {"answer": "unwind", "hint": "synonyms for unwind", "clues": ["unstrain", "decompress", "unbend", "unlax", "relax", "disentangle", "make relaxed", "loosen up", "slow down", "unroll", "wind off", "unwind"]}, {"answer": "unwrap", "hint": "synonyms for unwrap", "clues": ["break", "reveal", "let on", "let out", "discover", "disclose", "expose", "give away", "bring out", "undo", "divulge", "unwrap"]}, {"answer": "upchuck", "hint": "synonyms for upchuck", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "vomit up", "disgorge", "honk", "be sick", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "upchuck"]}, {"answer": "uphold", "hint": "synonyms for uphold", "clues": ["preserve", "carry on", "continue", "bear on", "maintain", "uphold"]}, {"answer": "uprise", "hint": "synonyms for uprise", "clues": ["come up", "originate", "rise", "bristle", "go up", "lift", "move up", "stand up", "turn out", "grow", "develop", "ascend", "spring up", "resurrect", "get up", "uprise"]}, {"answer": "uproot", "hint": "synonyms for uproot", "clues": ["eradicate", "deracinate", "exterminate", "extirpate", "root out", "uproot"]}, {"answer": "urge_on", "hint": "synonyms for urge on", "clues": ["inspire", "press", "exhort", "pep up", "barrack", "urge", "cheer", "root on", "urge on"]}, {"answer": "urinate", "hint": "synonyms for urinate", "clues": ["puddle", "make", "make water", "wee-wee", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "piss", "relieve oneself", "wee", "urinate"]}, {"answer": "use_up", "hint": "synonyms for use up", "clues": ["occupy", "eat", "deplete", "exhaust", "take", "run through", "consume", "wipe out", "eat up", "use up"]}, {"answer": "usurp", "hint": "synonyms for usurp", "clues": ["seize", "arrogate", "assume", "take over", "usurp"]}, {"answer": "utilise", "hint": "synonyms for utilise", "clues": ["apply", "employ", "utilize", "use"]}, {"answer": "utilize", "hint": "synonyms for utilize", "clues": ["apply", "employ", "utilise", "use"]}, {"answer": "vacate", "hint": "synonyms for vacate", "clues": ["renounce", "countermand", "repeal", "revoke", "give up", "annul", "reverse", "overturn", "rescind", "abandon", "resign", "empty", "lift", "vacate"]}, {"answer": "vacillate", "hint": "synonyms for vacillate", "clues": ["oscillate", "fluctuate", "vibrate", "waver", "hover", "vacillate"]}, {"answer": "valuate", "hint": "synonyms for valuate", "clues": ["value", "assess", "appraise", "measure", "evaluate"]}, {"answer": "vanish", "hint": "synonyms for vanish", "clues": ["fly", "go away", "vaporize", "disappear", "fell", "vanish"]}, {"answer": "vanquish", "hint": "synonyms for vanquish", "clues": ["shell", "trounce", "beat out", "crush", "beat", "vanquish"]}, {"answer": "vaporise", "hint": "synonyms for vaporise", "clues": ["aerify", "gasify", "evaporate", "vaporize"]}, {"answer": "vaporize", "hint": "synonyms for vaporize", "clues": ["vaporise", "aerify", "gasify", "vanish", "evaporate", "zap", "fly"]}, {"answer": "vary", "hint": "synonyms for vary", "clues": ["change", "variegate", "depart", "diverge", "deviate", "motley", "alter", "vary"]}, {"answer": "veer", "hint": "synonyms for veer", "clues": ["cut", "slew", "swerve", "slue", "sheer", "trend", "curve", "veer"]}, {"answer": "vend", "hint": "synonyms for vend", "clues": ["peddle", "pitch", "monger", "huckster", "hawk", "vend"]}, {"answer": "ventilate", "hint": "synonyms for ventilate", "clues": ["air out", "vent", "air", "give vent", "ventilate"]}, {"answer": "verbalise", "hint": "synonyms for verbalise", "clues": ["mouth", "give tongue to", "talk", "speak", "express", "utter", "verbalize"]}, {"answer": "verbalize", "hint": "synonyms for verbalize", "clues": ["mouth", "give tongue to", "talk", "speak", "express", "utter", "verbalise"]}, {"answer": "verify", "hint": "synonyms for verify", "clues": ["control", "aver", "swear", "affirm", "swan", "avow", "assert", "verify"]}, {"answer": "vex", "hint": "synonyms for vex", "clues": ["stupefy", "annoy", "devil", "agitate", "gravel", "flummox", "worry", "rile", "amaze", "get at", "nonplus", "puzzle", "get", "perplex", "baffle", "dumbfound", "pose", "nettle", "beat", "irritate", "raise up", "stir up", "mystify", "shake up", "nark", "stick", "bewilder", "disturb", "get to", "chafe", "commove", "rag", "bother", "vex"]}, {"answer": "vibrate", "hint": "synonyms for vibrate", "clues": ["resonate", "oscillate", "tickle", "thrill", "hover", "vacillate", "vibrate"]}, {"answer": "victimize", "hint": "synonyms for victimize", "clues": ["victimise", "bunco", "defraud", "mulct", "gyp", "hornswoggle", "diddle", "nobble", "gip", "swindle", "short-change", "rook", "scam", "con", "goldbrick"]}, {"answer": "violate", "hint": "synonyms for violate", "clues": ["break", "despoil", "breach", "rape", "spoil", "infract", "offend", "assault", "dishonour", "plunder", "outrage", "profane", "desecrate", "ravish", "go against", "transgress", "violate"]}, {"answer": "visualise", "hint": "synonyms for visualise", "clues": ["figure", "image", "visualize", "picture", "fancy", "envision", "see", "project"]}, {"answer": "visualize", "hint": "synonyms for visualize", "clues": ["figure", "image", "visualise", "picture", "fancy", "envision", "see", "project"]}, {"answer": "vitiate", "hint": "synonyms for vitiate", "clues": ["invalidate", "spoil", "mar", "subvert", "deflower", "debase", "misdirect", "pervert", "profane", "void", "corrupt", "deprave", "impair", "demoralise", "debauch", "vitiate"]}, {"answer": "vivify", "hint": "synonyms for vivify", "clues": ["reanimate", "renovate", "revivify", "recreate", "revive", "repair", "quicken"]}, {"answer": "vocalise", "hint": "synonyms for vocalise", "clues": ["voice", "phonate", "articulate", "enunciate", "vowelise", "sound", "vocalize"]}, {"answer": "vocalize", "hint": "synonyms for vocalize", "clues": ["voice", "phonate", "enunciate", "articulate", "vowelise", "vocalise", "sound"]}, {"answer": "vomit_up", "hint": "synonyms for vomit up", "clues": ["retch", "regurgitate", "purge", "spew", "puke", "cast", "disgorge", "honk", "be sick", "upchuck", "sick", "regorge", "vomit", "throw up", "spue", "barf", "chuck", "vomit up"]}, {"answer": "vote_down", "hint": "synonyms for vote down", "clues": ["kill", "defeat", "shoot down", "vote out", "turn thumbs down", "vote down"]}, {"answer": "vote_out", "hint": "synonyms for vote out", "clues": ["kill", "defeat", "shoot down", "vote down", "vote out"]}, {"answer": "wait_on", "hint": "synonyms for wait on", "clues": ["assist", "attend to", "serve", "attend", "wait on"]}, {"answer": "waive", "hint": "synonyms for waive", "clues": ["foreswear", "dispense with", "throw overboard", "give up", "forfeit", "relinquish", "forego", "waive"]}, {"answer": "wake_up", "hint": "synonyms for wake up", "clues": ["wake", "awaken", "arouse", "come alive", "wake up"]}, {"answer": "waken", "hint": "synonyms for waken", "clues": ["wake", "arouse", "wake up", "come alive", "awaken"]}, {"answer": "wander", "hint": "synonyms for wander", "clues": ["cuckold", "digress", "stray", "wind", "weave", "divagate", "vagabond", "cheat", "tramp", "cheat on", "rove", "cast", "range", "roll", "meander", "betray", "ramble", "thread", "drift", "swan", "roam", "wander"]}, {"answer": "wanton_away", "hint": "synonyms for wanton away", "clues": ["piddle away", "wanton", "piddle", "trifle", "trifle away", "wanton away"]}, {"answer": "ward_off", "hint": "synonyms for ward off", "clues": ["avoid", "stave off", "forfend", "avert", "head off", "deflect", "fend off", "obviate", "debar", "ward off"]}, {"answer": "wash_out", "hint": "synonyms for wash out", "clues": ["wash", "rain out", "wash away", "wash off", "wash out"]}, {"answer": "wash_up", "hint": "synonyms for wash up", "clues": ["lave", "tucker out", "do the dishes", "tucker", "exhaust", "beat", "wash up"]}, {"answer": "waste_one's_time", "hint": "synonyms for waste one's time", "clues": ["loll around", "arse around", "fuck off", "bum", "arse about", "lounge around", "loaf", "bum about", "frig around", "loll", "lounge about", "bum around", "waste one's time"]}, {"answer": "watch_over", "hint": "synonyms for watch over", "clues": ["follow", "observe", "keep an eye on", "watch", "watch over"]}, {"answer": "waylay", "hint": "synonyms for waylay", "clues": ["scupper", "bushwhack", "lie in wait", "ambush", "ambuscade", "lurk", "waylay"]}, {"answer": "weaken", "hint": "synonyms for weaken", "clues": ["break", "de-escalate", "countermine", "subvert", "sabotage", "step down", "undermine", "counteract", "dampen", "soften", "damp", "weaken"]}, {"answer": "wear_away", "hint": "synonyms for wear away", "clues": ["wear off", "whittle away", "gnaw at", "gnaw", "whittle down", "eat at", "erode", "wear away"]}, {"answer": "wear_down", "hint": "synonyms for wear down", "clues": ["tire out", "wear out", "jade", "wear thin", "wear", "fag", "fatigue", "outwear", "wear off", "tire", "wear upon", "fag out", "wear down"]}, {"answer": "wear_off", "hint": "synonyms for wear off", "clues": ["wear out", "wear thin", "wear", "wear away", "wear down", "wear off"]}, {"answer": "wear_out", "hint": "synonyms for wear out", "clues": ["tire out", "break", "jade", "fall apart", "wear thin", "wear", "fag", "fatigue", "outwear", "wear down", "wear off", "tire", "wear upon", "bust", "fag out", "wear out"]}, {"answer": "wear_thin", "hint": "synonyms for wear thin", "clues": ["wear off", "wear out", "wear", "wear down", "wear thin"]}, {"answer": "wear_upon", "hint": "synonyms for wear upon", "clues": ["tire out", "wear out", "jade", "wear", "fag", "fatigue", "outwear", "wear down", "tire", "fag out", "wear upon"]}, {"answer": "wee-wee", "hint": "synonyms for wee-wee", "clues": ["puddle", "make", "make water", "pass water", "pee-pee", "take a leak", "pee", "micturate", "spend a penny", "piddle", "urinate", "piss", "relieve oneself", "wee", "wee-wee"]}, {"answer": "weigh", "hint": "synonyms for weigh", "clues": ["librate", "press", "matter", "consider", "count", "weigh"]}, {"answer": "weigh_down", "hint": "synonyms for weigh down", "clues": ["bear down", "drag down", "weigh on", "press down on"]}, {"answer": "well_over", "hint": "synonyms for well over", "clues": ["run over", "brim over", "overrun", "overflow", "well over"]}, {"answer": "whap", "hint": "synonyms for whap", "clues": ["bop", "bash", "sock", "whop", "bonk", "whap"]}, {"answer": "wheedle", "hint": "synonyms for wheedle", "clues": ["sweet-talk", "coax", "palaver", "inveigle", "blarney", "cajole", "wheedle"]}, {"answer": "whelm", "hint": "synonyms for whelm", "clues": ["sweep over", "overpower", "overtake", "overwhelm", "overcome", "whelm"]}, {"answer": "whoop_it_up", "hint": "synonyms for whoop it up", "clues": ["make merry", "wassail", "revel", "make happy", "jollify", "make whoopie", "racket", "whoop it up"]}, {"answer": "whop", "hint": "synonyms for whop", "clues": ["wallop", "wham", "bop", "bash", "bonk", "whack", "whap", "sock", "whop"]}, {"answer": "wield", "hint": "synonyms for wield", "clues": ["maintain", "handle", "manage", "exert", "wield"]}, {"answer": "wind_up", "hint": "synonyms for wind up", "clues": ["finish up", "sex", "wind", "fetch up", "arouse", "end up", "land up", "finish", "excite", "turn on", "wind up"]}, {"answer": "wipe_off", "hint": "synonyms for wipe off", "clues": ["rub out", "wipe away", "score out", "erase", "efface", "wipe off"]}, {"answer": "wipe_out", "hint": "synonyms for wipe out", "clues": ["kill", "eat", "deplete", "obliterate", "exhaust", "sweep away", "run through", "use up", "annihilate", "eradicate", "decimate", "erase", "consume", "extinguish", "eat up", "cancel out", "carry off", "eliminate", "wipe out"]}, {"answer": "withdraw", "hint": "synonyms for withdraw", "clues": ["retreat", "draw", "remove", "adjourn", "pull back", "call back", "take back", "pull away", "sequester", "take out", "swallow", "crawfish", "take away", "draw off", "crawfish out", "move back", "retire", "pull in one's horns", "back out", "sequestrate", "back away", "take", "seclude", "unsay", "disengage", "recede", "draw back", "call in", "bow out", "recall", "withdraw"]}, {"answer": "wither", "hint": "synonyms for wither", "clues": ["shrivel up", "shrivel", "shrink", "fade", "wither"]}, {"answer": "withstand", "hint": "synonyms for withstand", "clues": ["hold up", "stand firm", "hold out", "hold", "defy", "resist", "withstand"]}, {"answer": "womanize", "hint": "synonyms for womanize", "clues": ["effeminize", "feminise", "womanise", "philander"]}, {"answer": "work_out", "hint": "synonyms for work out", "clues": ["figure", "exercise", "lick", "elaborate", "puzzle out", "cypher", "compute", "work up", "reckon", "cipher", "solve", "figure out", "work", "calculate", "work out"]}, {"answer": "work_up", "hint": "synonyms for work up", "clues": ["build", "work out", "progress", "build up", "get up", "ramp up", "work up"]}, {"answer": "worsen", "hint": "synonyms for worsen", "clues": ["aggravate", "decline", "exasperate", "exacerbate", "worsen"]}, {"answer": "wrap_up", "hint": "synonyms for wrap up", "clues": ["finish up", "polish off", "mop up", "clear up", "finish off", "get through", "cover", "wrap", "roll up", "wrap up"]}, {"answer": "wreak", "hint": "synonyms for wreak", "clues": ["make for", "play", "work", "bring", "wreak"]}, {"answer": "write", "hint": "synonyms for write", "clues": ["indite", "publish", "drop a line", "pen", "compose", "spell", "save", "write"]}, {"answer": "write_down", "hint": "synonyms for write down", "clues": ["put down", "set down", "write off", "expense", "write down"]}, {"answer": "write_in_code", "hint": "synonyms for write in code", "clues": ["code", "cipher", "inscribe", "encrypt", "cypher", "write in code"]}, {"answer": "write_out", "hint": "synonyms for write out", "clues": ["cut", "make out", "write up", "issue", "write out"]}, {"answer": "writhe", "hint": "synonyms for writhe", "clues": ["worm", "twist", "squirm", "wriggle", "wrestle", "writhe"]}, {"answer": "yack_away", "hint": "synonyms for yack away", "clues": ["yap away", "yack", "jaw", "rattle on", "yack away"]}, {"answer": "yammer", "hint": "synonyms for yammer", "clues": ["howl", "whine", "yawp", "grizzle", "yowl", "wrawl", "yammer"]}, {"answer": "yap_away", "hint": "synonyms for yap away", "clues": ["yack away", "yack", "jaw", "rattle on", "yap away"]}, {"answer": "yaup", "hint": "synonyms for yaup", "clues": ["howl", "ululate", "yawl", "roar", "wail", "yaup"]}, {"answer": "yawp", "hint": "synonyms for yawp", "clues": ["whine", "bawl", "yammer", "grizzle", "yawp"]}, {"answer": "yearn", "hint": "synonyms for yearn", "clues": ["ache", "languish", "long", "pine", "yen", "hanker", "yearn"]}], "portion": 0.6}, {"name": "adverbs", "groups": [{"answer": "about", "hint": "synonyms for about", "clues": ["almost", "well-nigh", "approximately", "roughly", "virtually", "most", "nearly", "just about", "close to", "some", "more or less", "nigh", "or so", "around", "about"]}, {"answer": "above", "hint": "synonyms for above", "clues": ["to a higher place", "higher up", "supra", "above"]}, {"answer": "after", "hint": "synonyms for after", "clues": ["afterwards", "subsequently", "later", "later on", "after"]}, {"answer": "ahead", "hint": "synonyms for ahead", "clues": ["before", "beforehand", "onward", "forward", "out front", "in front", "forrader", "in advance", "in the lead", "ahead"]}, {"answer": "all", "hint": "synonyms for all", "clues": ["completely", "whole", "totally", "wholly", "altogether", "entirely", "all"]}, {"answer": "all_right", "hint": "synonyms for all right", "clues": ["alright", "okay", "very well", "fine"]}, {"answer": "alone", "hint": "synonyms for alone", "clues": ["only", "unaccompanied", "exclusively", "entirely", "solo", "solely", "alone"]}, {"answer": "alright", "hint": "synonyms for alright", "clues": ["okay", "all right", "very well", "fine"]}, {"answer": "apropos", "hint": "synonyms for apropos", "clues": ["timely", "incidentally", "by the way", "seasonably", "well-timed", "by the bye", "apropos"]}, {"answer": "away", "hint": "synonyms for away", "clues": ["by", "forth", "aside", "off", "out", "away"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["comfortably", "good", "considerably", "easily", "intimately", "better", "substantially", "well", "advantageously", "best"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["comfortably", "good", "considerably", "best", "easily", "intimately", "substantially", "well", "advantageously", "better"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["tight", "nigh", "near", "closely"]}, {"answer": "dead", "hint": "synonyms for dead", "clues": ["abruptly", "utterly", "absolutely", "suddenly", "short", "perfectly", "dead"]}, {"answer": "deadly", "hint": "synonyms for deadly", "clues": ["madly", "deucedly", "insanely", "devilishly", "lifelessly", "deadly"]}, {"answer": "decent", "hint": "synonyms for decent", "clues": ["right", "the right way", "decently", "in good order", "properly"]}, {"answer": "each", "hint": "synonyms for each", "clues": ["to each one", "from each one", "apiece", "each"]}, {"answer": "earlier", "hint": "synonyms for earlier", "clues": ["before", "originally", "in the beginning", "sooner", "in the first place", "to begin with", "earlier"]}, {"answer": "early", "hint": "synonyms for early", "clues": ["betimes", "too soon", "early on", "ahead of time", "early"]}, {"answer": "easy", "hint": "synonyms for easy", "clues": ["soft", "tardily", "slowly", "easily", "easy"]}, {"answer": "erstwhile", "hint": "synonyms for erstwhile", "clues": ["formerly", "erst", "at one time", "once", "erstwhile"]}, {"answer": "false", "hint": "synonyms for false", "clues": ["treasonably", "faithlessly", "treacherously", "traitorously", "false"]}, {"answer": "fine", "hint": "synonyms for fine", "clues": ["exquisitely", "alright", "delicately", "very well", "finely"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["for the first time", "foremost", "firstly", "first of all", "first off"]}, {"answer": "for_sure", "hint": "synonyms for for sure", "clues": ["sure", "sure as shooting", "for certain", "sure enough", "certainly", "for sure"]}, {"answer": "foremost", "hint": "synonyms for foremost", "clues": ["first off", "firstly", "first of all", "foremost"]}, {"answer": "forward", "hint": "synonyms for forward", "clues": ["forth", "onward", "frontward", "forrader", "forrard", "ahead", "forwards", "fore"]}, {"answer": "hard", "hint": "synonyms for hard", "clues": ["severely", "firmly", "intemperately", "heavily", "hard"]}, {"answer": "inside", "hint": "synonyms for inside", "clues": ["within", "at bottom", "at heart", "indoors", "in spite of appearance", "deep down", "inwardly", "inside"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["fairly", "somewhat", "passably", "moderately", "pretty", "middling", "reasonably", "jolly"]}, {"answer": "just", "hint": "synonyms for just", "clues": ["barely", "scarce", "merely", "simply", "precisely", "but", "only", "exactly", "just now", "hardly", "just"]}, {"answer": "late", "hint": "synonyms for late", "clues": ["latterly", "tardily", "recently", "of late", "deep", "belatedly", "late"]}, {"answer": "later", "hint": "synonyms for later", "clues": ["after", "afterwards", "subsequently", "by and by", "later on", "later"]}, {"answer": "lengthways", "hint": "synonyms for lengthways", "clues": ["longways", "longwise", "longitudinally", "lengthwise", "lengthways"]}, {"answer": "lengthwise", "hint": "synonyms for lengthwise", "clues": ["longways", "longwise", "longitudinally", "lengthways", "lengthwise"]}, {"answer": "likely", "hint": "synonyms for likely", "clues": ["in all likelihood", "belike", "in all probability", "probably", "likely"]}, {"answer": "middling", "hint": "synonyms for middling", "clues": ["fairly", "somewhat", "passably", "moderately", "jolly", "pretty", "reasonably", "middling"]}, {"answer": "most", "hint": "synonyms for most", "clues": ["almost", "well-nigh", "about", "virtually", "to the highest degree", "nigh", "nearly", "most"]}, {"answer": "much", "hint": "synonyms for much", "clues": ["very much", "often", "lots", "practically", "a great deal", "a good deal", "a lot", "much"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["almost", "well-nigh", "about", "most", "virtually", "nigh", "nearly", "close"]}, {"answer": "nigh", "hint": "synonyms for nigh", "clues": ["almost", "well-nigh", "about", "most", "virtually", "close", "nearly", "nigh"]}, {"answer": "ok", "hint": "synonyms for ok", "clues": ["all right", "very well", "fine", "ok"]}, {"answer": "on_the_button", "hint": "synonyms for on the button", "clues": ["on the dot", "precisely", "on the nose", "exactly", "on the button"]}, {"answer": "on_the_nose", "hint": "synonyms for on the nose", "clues": ["on the button", "precisely", "exactly", "on the dot", "on the nose"]}, {"answer": "only", "hint": "synonyms for only", "clues": ["alone", "exclusively", "merely", "only when", "simply", "only if", "entirely", "solely", "but", "just", "only"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["apparently", "patently", "obviously", "evidently", "manifestly", "plainly"]}, {"answer": "pretty", "hint": "synonyms for pretty", "clues": ["fairly", "somewhat", "passably", "moderately", "jolly", "middling", "reasonably", "pretty"]}, {"answer": "regardless", "hint": "synonyms for regardless", "clues": ["no matter", "irrespective", "disregardless", "disregarding"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["justly", "decent", "the right way", "aright", "powerful", "mighty", "right on", "flop", "correctly", "in good order", "properly"]}, {"answer": "scarce", "hint": "synonyms for scarce", "clues": ["just", "barely", "hardly", "scarcely"]}, {"answer": "short", "hint": "synonyms for short", "clues": ["abruptly", "unawares", "curtly", "dead", "suddenly", "shortly"]}, {"answer": "sideways", "hint": "synonyms for sideways", "clues": ["sideway", "obliquely", "sidewise", "sidelong"]}, {"answer": "slapdash", "hint": "synonyms for slapdash", "clues": ["smack", "bolt", "slap", "slam-bang", "bang", "slapdash"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["behind", "tardily", "easy", "slowly"]}, {"answer": "some", "hint": "synonyms for some", "clues": ["approximately", "roughly", "about", "just about", "close to", "more or less", "or so", "around", "some"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["nonetheless", "however", "nevertheless", "all the same", "notwithstanding", "withal", "even", "even so", "yet", "stock-still", "still"]}, {"answer": "straightaway", "hint": "synonyms for straightaway", "clues": ["straight off", "like a shot", "immediately", "instantly", "directly", "right away", "at once", "forthwith", "now", "straightaway"]}, {"answer": "sure", "hint": "synonyms for sure", "clues": ["surely", "sure as shooting", "for sure", "for certain", "sure enough", "certainly"]}, {"answer": "sure_as_shooting", "hint": "synonyms for sure as shooting", "clues": ["sure", "for sure", "for certain", "sure enough", "certainly", "sure as shooting"]}, {"answer": "topsy-turvy", "hint": "synonyms for topsy-turvy", "clues": ["head over heels", "topsy-turvily", "higgledy-piggledy", "heels over head", "in great confusion"]}, {"answer": "well", "hint": "synonyms for well", "clues": ["comfortably", "good", "substantially", "considerably", "easily", "intimately", "advantageously", "well"]}, {"answer": "whole", "hint": "synonyms for whole", "clues": ["completely", "totally", "all", "wholly", "altogether", "entirely", "whole"]}, {"answer": "wondrous", "hint": "synonyms for wondrous", "clues": ["wondrously", "superbly", "marvelously", "terrifically", "toppingly", "wonderfully"]}, {"answer": "a_good_deal", "hint": "synonyms for a good deal", "clues": ["much", "very much", "lots", "a great deal", "a lot", "a good deal"]}, {"answer": "a_great_deal", "hint": "synonyms for a great deal", "clues": ["much", "very much", "often", "lots", "a good deal", "a lot", "a great deal"]}, {"answer": "a_lot", "hint": "synonyms for a lot", "clues": ["much", "very much", "lots", "a great deal", "a good deal", "a lot"]}, {"answer": "abominably", "hint": "synonyms for abominably", "clues": ["abysmally", "odiously", "awfully", "repulsively", "rottenly", "terribly", "detestably", "atrociously", "abominably"]}, {"answer": "abysmally", "hint": "synonyms for abysmally", "clues": ["rottenly", "awfully", "abominably", "terribly", "atrociously", "abysmally"]}, {"answer": "accidentally", "hint": "synonyms for accidentally", "clues": ["circumstantially", "unintentionally", "incidentally", "by chance", "unexpectedly", "accidentally"]}, {"answer": "acutely", "hint": "synonyms for acutely", "clues": ["sharp", "shrewdly", "sapiently", "astutely", "sagaciously", "acutely"]}, {"answer": "advisedly", "hint": "synonyms for advisedly", "clues": ["designedly", "purposely", "deliberately", "on purpose", "intentionally", "by choice", "by design", "advisedly"]}, {"answer": "afterward", "hint": "synonyms for afterward", "clues": ["after", "afterwards", "subsequently", "later", "later on"]}, {"answer": "afterwards", "hint": "synonyms for afterwards", "clues": ["after", "afterward", "subsequently", "later", "later on"]}, {"answer": "again_and_again", "hint": "synonyms for again and again", "clues": ["over and over", "time and again", "over and over again", "time and time again", "again and again"]}, {"answer": "all_the_same", "hint": "synonyms for all the same", "clues": ["nonetheless", "however", "nevertheless", "notwithstanding", "still", "withal", "even so", "yet", "all the same"]}, {"answer": "almost", "hint": "synonyms for almost", "clues": ["well-nigh", "nigh", "virtually", "about", "most", "nearly", "almost"]}, {"answer": "also", "hint": "synonyms for also", "clues": ["too", "besides", "as well", "likewise", "also"]}, {"answer": "altogether", "hint": "synonyms for altogether", "clues": ["completely", "all", "all told", "tout ensemble", "entirely", "all in all", "whole", "totally", "in all", "wholly", "on the whole", "altogether"]}, {"answer": "always", "hint": "synonyms for always", "clues": ["incessantly", "forever", "invariably", "perpetually", "ever", "e'er", "constantly", "always"]}, {"answer": "annually", "hint": "synonyms for annually", "clues": ["per annum", "p.a.", "yearly", "each year", "every year", "per year", "annually"]}, {"answer": "anyhow", "hint": "synonyms for anyhow", "clues": ["in any case", "anyway", "at any rate", "in any event", "anyhow"]}, {"answer": "anyway", "hint": "synonyms for anyway", "clues": ["anyhow", "in any case", "at any rate", "in any event", "anyways"]}, {"answer": "anyways", "hint": "synonyms for anyways", "clues": ["anyhow", "in any case", "anyway", "at any rate", "in any event"]}, {"answer": "apace", "hint": "synonyms for apace", "clues": ["rapidly", "chop-chop", "quickly", "speedily", "apace"]}, {"answer": "apiece", "hint": "synonyms for apiece", "clues": ["to each one", "from each one", "each", "apiece"]}, {"answer": "apparently", "hint": "synonyms for apparently", "clues": ["evidently", "manifestly", "plainly", "on the face of it", "seemingly", "patently", "obviously", "ostensibly", "apparently"]}, {"answer": "appropriately", "hint": "synonyms for appropriately", "clues": ["fittingly", "fitly", "suitably", "appropriately"]}, {"answer": "approximately", "hint": "synonyms for approximately", "clues": ["roughly", "about", "just about", "close to", "some", "more or less", "or so", "around", "approximately"]}, {"answer": "arbitrarily", "hint": "synonyms for arbitrarily", "clues": ["every which way", "indiscriminately", "willy-nilly", "at random", "randomly", "haphazardly", "arbitrarily"]}, {"answer": "around", "hint": "synonyms for around", "clues": ["approximately", "round", "roughly", "about", "just about", "close to", "some", "more or less", "or so"]}, {"answer": "artfully", "hint": "synonyms for artfully", "clues": ["slyly", "craftily", "knavishly", "foxily", "trickily", "cunningly", "disingenuously", "artfully"]}, {"answer": "as_well", "hint": "synonyms for as well", "clues": ["likewise", "too", "besides", "also", "as well"]}, {"answer": "as_yet", "hint": "synonyms for as yet", "clues": ["heretofore", "so far", "until now", "up to now", "thus far", "yet", "hitherto", "as yet"]}, {"answer": "astutely", "hint": "synonyms for astutely", "clues": ["acutely", "sapiently", "sagaciously", "shrewdly", "astutely"]}, {"answer": "at_any_rate", "hint": "synonyms for at any rate", "clues": ["anyhow", "in any case", "anyway", "in any event", "at least", "leastwise", "leastways", "at any rate"]}, {"answer": "at_bottom", "hint": "synonyms for at bottom", "clues": ["inside", "deep down", "in spite of appearance", "at heart", "at bottom"]}, {"answer": "at_heart", "hint": "synonyms for at heart", "clues": ["deep down", "in spite of appearance", "at bottom", "inside", "at heart"]}, {"answer": "at_last", "hint": "synonyms for at last", "clues": ["in the end", "at long last", "ultimately", "finally", "at last"]}, {"answer": "at_least", "hint": "synonyms for at least", "clues": ["leastwise", "at the least", "at any rate", "leastways", "at least"]}, {"answer": "at_long_last", "hint": "synonyms for at long last", "clues": ["in the end", "ultimately", "finally", "at last", "at long last"]}, {"answer": "at_once", "hint": "synonyms for at once", "clues": ["straight off", "like a shot", "immediately", "instantly", "directly", "at one time", "right away", "straightaway", "at a time", "forthwith", "now", "at once"]}, {"answer": "at_one_time", "hint": "synonyms for at one time", "clues": ["once", "at a time", "formerly", "erst", "at once", "erstwhile", "at one time"]}, {"answer": "at_random", "hint": "synonyms for at random", "clues": ["every which way", "indiscriminately", "willy-nilly", "randomly", "arbitrarily", "haphazardly", "at random"]}, {"answer": "at_times", "hint": "synonyms for at times", "clues": ["now and then", "on occasion", "now and again", "from time to time", "occasionally", "once in a while", "at times"]}, {"answer": "atrociously", "hint": "synonyms for atrociously", "clues": ["abysmally", "rottenly", "awfully", "abominably", "terribly", "outrageously", "atrociously"]}, {"answer": "avowedly", "hint": "synonyms for avowedly", "clues": ["true", "admittedly", "professedly", "confessedly", "avowedly"]}, {"answer": "awfully", "hint": "synonyms for awfully", "clues": ["abysmally", "abominably", "rottenly", "dreadfully", "frightfully", "terribly", "atrociously", "horribly", "awful"]}, {"answer": "badly", "hint": "synonyms for badly", "clues": ["ill", "seriously", "severely", "disadvantageously", "bad", "mischievously", "gravely", "poorly", "naughtily"]}, {"answer": "balmily", "hint": "synonyms for balmily", "clues": ["wackily", "daftly", "dottily", "nuttily", "balmily"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["slapdash", "smack", "bolt", "slap", "bang"]}, {"answer": "barely", "hint": "synonyms for barely", "clues": ["scantily", "scarce", "just", "hardly", "barely"]}, {"answer": "befittingly", "hint": "synonyms for befittingly", "clues": ["fittingly", "appropriately", "fitly", "suitably"]}, {"answer": "belike", "hint": "synonyms for belike", "clues": ["likely", "in all likelihood", "in all probability", "probably", "belike"]}, {"answer": "below", "hint": "synonyms for below", "clues": ["to a lower place", "on a lower floor", "beneath", "down the stairs", "under", "downstairs", "infra", "below"]}, {"answer": "beseechingly", "hint": "synonyms for beseechingly", "clues": ["pleadingly", "entreatingly", "importunately", "imploringly", "beseechingly"]}, {"answer": "besides", "hint": "synonyms for besides", "clues": ["too", "in any case", "as well", "likewise", "also", "besides"]}, {"answer": "bit_by_bit", "hint": "synonyms for bit by bit", "clues": ["in stages", "gradually", "step by step", "little by little", "piecemeal", "bit by bit"]}, {"answer": "blithely", "hint": "synonyms for blithely", "clues": ["jubilantly", "happily", "merrily", "gayly", "mirthfully", "blithely"]}, {"answer": "bluffly", "hint": "synonyms for bluffly", "clues": ["roundly", "bluntly", "brusquely", "flat out", "bluffly"]}, {"answer": "bluntly", "hint": "synonyms for bluntly", "clues": ["roundly", "bluffly", "brusquely", "flat out", "bluntly"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["slapdash", "smack", "slap", "stiffly", "rigidly", "bang", "bolt"]}, {"answer": "briefly", "hint": "synonyms for briefly", "clues": ["in short", "in brief", "shortly", "concisely", "briefly"]}, {"answer": "brusquely", "hint": "synonyms for brusquely", "clues": ["roundly", "bluffly", "bluntly", "flat out", "brusquely"]}, {"answer": "but", "hint": "synonyms for but", "clues": ["merely", "just", "simply", "only", "but"]}, {"answer": "by_all_odds", "hint": "synonyms for by all odds", "clues": ["definitely", "emphatically", "in spades", "decidedly", "unquestionably", "by all odds"]}, {"answer": "by_chance", "hint": "synonyms for by chance", "clues": ["by luck", "haply", "circumstantially", "accidentally", "unexpectedly", "perchance", "by chance"]}, {"answer": "by_choice", "hint": "synonyms for by choice", "clues": ["designedly", "purposely", "advisedly", "deliberately", "on purpose", "intentionally", "by design", "by choice"]}, {"answer": "by_design", "hint": "synonyms for by design", "clues": ["designedly", "purposely", "advisedly", "deliberately", "on purpose", "intentionally", "by choice", "by design"]}, {"answer": "carelessly", "hint": "synonyms for carelessly", "clues": ["rakishly", "incautiously", "heedlessly", "raffishly", "carelessly"]}, {"answer": "ceaselessly", "hint": "synonyms for ceaselessly", "clues": ["incessantly", "continuously", "unendingly", "endlessly", "unceasingly", "ceaselessly"]}, {"answer": "certainly", "hint": "synonyms for certainly", "clues": ["sure", "sure as shooting", "for sure", "for certain", "sure enough", "certainly"]}, {"answer": "cheaply", "hint": "synonyms for cheaply", "clues": ["inexpensively", "tattily", "stingily", "chintzily", "cheaply"]}, {"answer": "chiefly", "hint": "synonyms for chiefly", "clues": ["in the main", "primarily", "principally", "mainly", "chiefly"]}, {"answer": "chop-chop", "hint": "synonyms for chop-chop", "clues": ["speedily", "rapidly", "quickly", "apace", "chop-chop"]}, {"answer": "circumstantially", "hint": "synonyms for circumstantially", "clues": ["by chance", "minutely", "unexpectedly", "accidentally", "circumstantially"]}, {"answer": "clearly", "hint": "synonyms for clearly", "clues": ["understandably", "distinctly", "intelligibly", "clear"]}, {"answer": "close_to", "hint": "synonyms for close to", "clues": ["approximately", "roughly", "about", "just about", "some", "more or less", "or so", "around", "close to"]}, {"answer": "closely", "hint": "synonyms for closely", "clues": ["tight", "intimately", "nearly", "close"]}, {"answer": "commonly", "hint": "synonyms for commonly", "clues": ["ordinarily", "normally", "usually", "unremarkably", "commonly"]}, {"answer": "completely", "hint": "synonyms for completely", "clues": ["whole", "totally", "all", "wholly", "altogether", "entirely", "completely"]}, {"answer": "concisely", "hint": "synonyms for concisely", "clues": ["briefly", "in short", "in brief", "shortly", "concisely"]}, {"answer": "constantly", "hint": "synonyms for constantly", "clues": ["invariably", "always", "incessantly", "perpetually", "forever", "constantly"]}, {"answer": "continuously", "hint": "synonyms for continuously", "clues": ["incessantly", "unendingly", "endlessly", "ceaselessly", "unceasingly", "continuously"]}, {"answer": "contrarily", "hint": "synonyms for contrarily", "clues": ["contrariwise", "on the contrary", "perversely", "contrarily"]}, {"answer": "contrariwise", "hint": "synonyms for contrariwise", "clues": ["vice versa", "on the contrary", "the other way around", "perversely", "contrarily", "contrariwise"]}, {"answer": "covetously", "hint": "synonyms for covetously", "clues": ["enviously", "jealously", "avariciously", "greedily", "covetously"]}, {"answer": "craftily", "hint": "synonyms for craftily", "clues": ["slyly", "artfully", "knavishly", "foxily", "trickily", "cunningly", "craftily"]}, {"answer": "cunningly", "hint": "synonyms for cunningly", "clues": ["slyly", "craftily", "cutely", "artfully", "knavishly", "foxily", "trickily", "cunningly"]}, {"answer": "curiously", "hint": "synonyms for curiously", "clues": ["inquisitively", "peculiarly", "interrogatively", "oddly", "curiously"]}, {"answer": "cussedly", "hint": "synonyms for cussedly", "clues": ["obdurately", "pig-headedly", "mulishly", "obstinately", "stubbornly", "cussedly"]}, {"answer": "daftly", "hint": "synonyms for daftly", "clues": ["wackily", "nuttily", "dottily", "balmily", "daftly"]}, {"answer": "decently", "hint": "synonyms for decently", "clues": ["decent", "right", "the right way", "in good order", "properly"]}, {"answer": "decidedly", "hint": "synonyms for decidedly", "clues": ["definitely", "emphatically", "unquestionably", "by all odds", "in spades", "decidedly"]}, {"answer": "deep_down", "hint": "synonyms for deep down", "clues": ["inside", "in spite of appearance", "at bottom", "at heart", "deep down"]}, {"answer": "definitely", "hint": "synonyms for definitely", "clues": ["emphatically", "unquestionably", "decidedly", "by all odds", "in spades", "definitely"]}, {"answer": "deliberately", "hint": "synonyms for deliberately", "clues": ["designedly", "purposely", "advisedly", "on purpose", "measuredly", "intentionally", "by choice", "by design", "deliberately"]}, {"answer": "designedly", "hint": "synonyms for designedly", "clues": ["purposely", "deliberately", "advisedly", "on purpose", "intentionally", "by choice", "by design", "designedly"]}, {"answer": "deucedly", "hint": "synonyms for deucedly", "clues": ["madly", "deadly", "devilishly", "insanely", "deucedly"]}, {"answer": "devilishly", "hint": "synonyms for devilishly", "clues": ["madly", "deadly", "deucedly", "insanely", "diabolically", "devilish", "fiendishly"]}, {"answer": "dimly", "hint": "synonyms for dimly", "clues": ["indistinctly", "palely", "murkily", "pallidly", "dimly"]}, {"answer": "directly", "hint": "synonyms for directly", "clues": ["straight", "straight off", "like a shot", "flat", "immediately", "instantly", "direct", "right away", "straightaway", "at once", "forthwith", "now"]}, {"answer": "discreditably", "hint": "synonyms for discreditably", "clues": ["ignominiously", "dishonourably", "disgracefully", "shamefully", "ingloriously", "discreditably"]}, {"answer": "disdainfully", "hint": "synonyms for disdainfully", "clues": ["contumeliously", "cavalierly", "contemptuously", "scornfully", "disdainfully"]}, {"answer": "disgracefully", "hint": "synonyms for disgracefully", "clues": ["ignominiously", "dishonourably", "discreditably", "shamefully", "ingloriously", "disgracefully"]}, {"answer": "dishonorably", "hint": "synonyms for dishonorably", "clues": ["ignominiously", "dishonourably", "discreditably", "disgracefully", "shamefully", "ingloriously"]}, {"answer": "dishonourably", "hint": "synonyms for dishonourably", "clues": ["ignominiously", "discreditably", "disgracefully", "dishonorably", "shamefully", "ingloriously"]}, {"answer": "disregarding", "hint": "synonyms for disregarding", "clues": ["regardless", "irrespective", "no matter", "disregarding"]}, {"answer": "disregardless", "hint": "synonyms for disregardless", "clues": ["regardless", "irrespective", "no matter", "disregarding"]}, {"answer": "dottily", "hint": "synonyms for dottily", "clues": ["wackily", "daftly", "nuttily", "balmily", "dottily"]}, {"answer": "each_year", "hint": "synonyms for each year", "clues": ["p.a.", "yearly", "annually", "per annum", "every year", "per year", "each year"]}, {"answer": "emphatically", "hint": "synonyms for emphatically", "clues": ["definitely", "unquestionably", "in spades", "decidedly", "by all odds", "emphatically"]}, {"answer": "endlessly", "hint": "synonyms for endlessly", "clues": ["incessantly", "continuously", "unendingly", "ceaselessly", "infinitely", "interminably", "unceasingly", "endlessly"]}, {"answer": "entirely", "hint": "synonyms for entirely", "clues": ["completely", "alone", "exclusively", "all", "altogether", "solely", "whole", "only", "totally", "wholly", "entirely"]}, {"answer": "entreatingly", "hint": "synonyms for entreatingly", "clues": ["beseechingly", "pleadingly", "importunately", "imploringly", "entreatingly"]}, {"answer": "erst", "hint": "synonyms for erst", "clues": ["formerly", "at one time", "erstwhile", "once", "erst"]}, {"answer": "even_so", "hint": "synonyms for even so", "clues": ["nevertheless", "however", "nonetheless", "all the same", "notwithstanding", "still", "withal", "yet", "even so"]}, {"answer": "ever", "hint": "synonyms for ever", "clues": ["of all time", "always", "e'er", "ever so", "ever"]}, {"answer": "evermore", "hint": "synonyms for evermore", "clues": ["eternally", "everlastingly", "forevermore", "forever", "evermore"]}, {"answer": "every_which_way", "hint": "synonyms for every which way", "clues": ["indiscriminately", "willy-nilly", "at random", "helter-skelter", "randomly", "arbitrarily", "haphazardly", "every which way"]}, {"answer": "evidently", "hint": "synonyms for evidently", "clues": ["apparently", "patently", "obviously", "manifestly", "plainly", "evidently"]}, {"answer": "exactly", "hint": "synonyms for exactly", "clues": ["incisively", "on the button", "just", "precisely", "on the nose", "on the dot", "exactly"]}, {"answer": "exclusively", "hint": "synonyms for exclusively", "clues": ["alone", "only", "entirely", "solely", "exclusively"]}, {"answer": "extravagantly", "hint": "synonyms for extravagantly", "clues": ["richly", "abundantly", "profusely", "copiously", "lavishly", "extravagantly"]}, {"answer": "extremely", "hint": "synonyms for extremely", "clues": ["passing", "highly", "exceedingly", "super", "extremely"]}, {"answer": "fairly", "hint": "synonyms for fairly", "clues": ["somewhat", "moderately", "jolly", "pretty", "evenhandedly", "middling", "clean", "passably", "fair", "reasonably"]}, {"answer": "faithlessly", "hint": "synonyms for faithlessly", "clues": ["treasonably", "treacherously", "false", "traitorously", "faithlessly"]}, {"answer": "finally", "hint": "synonyms for finally", "clues": ["in the end", "ultimately", "last", "at last", "in conclusion", "at long last", "eventually", "finally"]}, {"answer": "firmly", "hint": "synonyms for firmly", "clues": ["hard", "securely", "steadfastly", "firm", "unwaveringly"]}, {"answer": "first_of_all", "hint": "synonyms for first of all", "clues": ["first off", "foremost", "firstly", "first of all"]}, {"answer": "first_off", "hint": "synonyms for first off", "clues": ["foremost", "firstly", "first of all", "first off"]}, {"answer": "firstly", "hint": "synonyms for firstly", "clues": ["first off", "foremost", "first of all", "first"]}, {"answer": "fitly", "hint": "synonyms for fitly", "clues": ["fittingly", "appropriately", "suitably", "fitly"]}, {"answer": "fittingly", "hint": "synonyms for fittingly", "clues": ["appropriately", "fitly", "suitably", "befittingly"]}, {"answer": "flat_out", "hint": "synonyms for flat out", "clues": ["bluffly", "bluntly", "like blue murder", "brusquely", "roundly", "flat out"]}, {"answer": "for_certain", "hint": "synonyms for for certain", "clues": ["sure", "sure as shooting", "for sure", "sure enough", "certainly", "for certain"]}, {"answer": "for_each_one", "hint": "synonyms for for each one", "clues": ["to each one", "from each one", "apiece", "each"]}, {"answer": "forever", "hint": "synonyms for forever", "clues": ["always", "incessantly", "forever and a day", "evermore", "eternally", "perpetually", "everlastingly", "constantly", "forever"]}, {"answer": "formerly", "hint": "synonyms for formerly", "clues": ["once", "erst", "at one time", "erstwhile", "formerly"]}, {"answer": "forrader", "hint": "synonyms for forrader", "clues": ["onward", "forward", "ahead", "forrader"]}, {"answer": "forth", "hint": "synonyms for forth", "clues": ["forward", "off", "onward", "away", "forth"]}, {"answer": "forthwith", "hint": "synonyms for forthwith", "clues": ["straight off", "like a shot", "immediately", "instantly", "directly", "right away", "straightaway", "at once", "now", "forthwith"]}, {"answer": "forwards", "hint": "synonyms for forwards", "clues": ["onward", "frontward", "forward", "forrader", "ahead"]}, {"answer": "foxily", "hint": "synonyms for foxily", "clues": ["craftily", "artfully", "knavishly", "slyly", "trickily", "cunningly", "foxily"]}, {"answer": "frequently", "hint": "synonyms for frequently", "clues": ["oftentimes", "often", "oft", "frequently"]}, {"answer": "freshly", "hint": "synonyms for freshly", "clues": ["impertinently", "new", "fresh", "impudently", "saucily", "pertly"]}, {"answer": "from_each_one", "hint": "synonyms for from each one", "clues": ["to each one", "apiece", "each", "from each one"]}, {"answer": "from_time_to_time", "hint": "synonyms for from time to time", "clues": ["now and then", "on occasion", "now and again", "occasionally", "once in a while", "at times", "from time to time"]}, {"answer": "fully", "hint": "synonyms for fully", "clues": ["to the full", "full", "amply", "in full"]}, {"answer": "gayly", "hint": "synonyms for gayly", "clues": ["jubilantly", "happily", "merrily", "mirthfully", "blithely", "gayly"]}, {"answer": "generally", "hint": "synonyms for generally", "clues": ["in the main", "loosely", "broadly speaking", "more often than not", "in general", "broadly", "by and large", "mostly", "generally"]}, {"answer": "gravely", "hint": "synonyms for gravely", "clues": ["badly", "seriously", "soberly", "staidly", "severely", "gravely"]}, {"answer": "haphazardly", "hint": "synonyms for haphazardly", "clues": ["every which way", "indiscriminately", "willy-nilly", "at random", "randomly", "arbitrarily", "haphazard"]}, {"answer": "happily", "hint": "synonyms for happily", "clues": ["jubilantly", "merrily", "gayly", "mirthfully", "blithely", "happily"]}, {"answer": "hardly", "hint": "synonyms for hardly", "clues": ["barely", "scarce", "just", "hardly"]}, {"answer": "head_over_heels", "hint": "synonyms for head over heels", "clues": ["topsy-turvy", "in great confusion", "heels over head", "head over heels"]}, {"answer": "heavily", "hint": "synonyms for heavily", "clues": ["hard", "intemperately", "heavy", "to a great extent", "heavily"]}, {"answer": "heels_over_head", "hint": "synonyms for heels over head", "clues": ["topsy-turvy", "head over heels", "in great confusion", "heels over head"]}, {"answer": "hence", "hint": "synonyms for hence", "clues": ["so", "thence", "therefore", "thus"]}, {"answer": "heretofore", "hint": "synonyms for heretofore", "clues": ["hitherto", "so far", "until now", "up to now", "thus far", "yet", "as yet", "heretofore"]}, {"answer": "hitherto", "hint": "synonyms for hitherto", "clues": ["heretofore", "so far", "until now", "up to now", "thus far", "yet", "as yet", "hitherto"]}, {"answer": "however", "hint": "synonyms for however", "clues": ["nonetheless", "nevertheless", "all the same", "notwithstanding", "still", "withal", "even so", "yet", "however"]}, {"answer": "ignominiously", "hint": "synonyms for ignominiously", "clues": ["dishonourably", "discreditably", "disgracefully", "shamefully", "ingloriously", "ignominiously"]}, {"answer": "immediately", "hint": "synonyms for immediately", "clues": ["straight off", "like a shot", "instantly", "directly", "right away", "straightaway", "at once", "forthwith", "now", "immediately"]}, {"answer": "impertinently", "hint": "synonyms for impertinently", "clues": ["impudently", "saucily", "pertly", "freshly", "impertinently"]}, {"answer": "imploringly", "hint": "synonyms for imploringly", "clues": ["beseechingly", "pleadingly", "entreatingly", "importunately", "imploringly"]}, {"answer": "importunately", "hint": "synonyms for importunately", "clues": ["beseechingly", "pleadingly", "entreatingly", "imploringly", "importunately"]}, {"answer": "impudently", "hint": "synonyms for impudently", "clues": ["impertinently", "saucily", "pertly", "freshly", "impudently"]}, {"answer": "in_all_likelihood", "hint": "synonyms for in all likelihood", "clues": ["likely", "belike", "in all probability", "probably", "in all likelihood"]}, {"answer": "in_all_probability", "hint": "synonyms for in all probability", "clues": ["likely", "in all likelihood", "belike", "probably", "in all probability"]}, {"answer": "in_any_case", "hint": "synonyms for in any case", "clues": ["anyhow", "anyway", "besides", "at any rate", "in any event", "in any case"]}, {"answer": "in_any_event", "hint": "synonyms for in any event", "clues": ["anyhow", "in any case", "anyway", "at any rate", "in any event"]}, {"answer": "in_brief", "hint": "synonyms for in brief", "clues": ["briefly", "in short", "shortly", "concisely", "in brief"]}, {"answer": "in_due_course", "hint": "synonyms for in due course", "clues": ["in due time", "when the time comes", "in due season", "in good time", "in due course"]}, {"answer": "in_due_season", "hint": "synonyms for in due season", "clues": ["in due time", "when the time comes", "in good time", "in due course", "in due season"]}, {"answer": "in_due_time", "hint": "synonyms for in due time", "clues": ["when the time comes", "in good time", "in due season", "in due course", "in due time"]}, {"answer": "in_good_order", "hint": "synonyms for in good order", "clues": ["decent", "the right way", "right", "properly", "in good order"]}, {"answer": "in_good_time", "hint": "synonyms for in good time", "clues": ["in due time", "when the time comes", "in due season", "in due course", "in good time"]}, {"answer": "in_great_confusion", "hint": "synonyms for in great confusion", "clues": ["topsy-turvy", "head over heels", "heels over head", "in great confusion"]}, {"answer": "in_short", "hint": "synonyms for in short", "clues": ["briefly", "in brief", "shortly", "concisely", "in short"]}, {"answer": "in_so_far", "hint": "synonyms for in so far", "clues": ["insofar", "so far", "to that degree", "to that extent"]}, {"answer": "in_some_manner", "hint": "synonyms for in some manner", "clues": ["in some way", "someway", "somehow", "in some manner"]}, {"answer": "in_some_way", "hint": "synonyms for in some way", "clues": ["someway", "in some manner", "somehow", "in some way"]}, {"answer": "in_spades", "hint": "synonyms for in spades", "clues": ["definitely", "emphatically", "unquestionably", "decidedly", "by all odds", "in spades"]}, {"answer": "in_spite_of_appearance", "hint": "synonyms for in spite of appearance", "clues": ["deep down", "inside", "at bottom", "at heart", "in spite of appearance"]}, {"answer": "in_the_beginning", "hint": "synonyms for in the beginning", "clues": ["originally", "primitively", "earlier", "in the first place", "to begin with", "in the beginning"]}, {"answer": "in_the_end", "hint": "synonyms for in the end", "clues": ["in the long run", "ultimately", "at last", "at long last", "finally", "in the end"]}, {"answer": "in_the_first_place", "hint": "synonyms for in the first place", "clues": ["originally", "in the beginning", "earlier", "primarily", "to begin with", "in the first place"]}, {"answer": "in_the_main", "hint": "synonyms for in the main", "clues": ["generally", "primarily", "mainly", "chiefly", "in general", "principally", "in the main"]}, {"answer": "incessantly", "hint": "synonyms for incessantly", "clues": ["always", "constantly", "unendingly", "ceaselessly", "forever", "continuously", "endlessly", "perpetually", "unceasingly", "incessantly"]}, {"answer": "incidentally", "hint": "synonyms for incidentally", "clues": ["accidentally", "by the way", "apropos", "by the bye", "incidentally"]}, {"answer": "incredibly", "hint": "synonyms for incredibly", "clues": ["fantastically", "implausibly", "fabulously", "improbably", "unbelievably", "incredibly"]}, {"answer": "indiscriminately", "hint": "synonyms for indiscriminately", "clues": ["every which way", "willy-nilly", "at random", "randomly", "arbitrarily", "haphazardly", "promiscuously", "indiscriminately"]}, {"answer": "individually", "hint": "synonyms for individually", "clues": ["one by one", "separately", "severally", "on an individual basis", "singly", "individually"]}, {"answer": "inevitably", "hint": "synonyms for inevitably", "clues": ["ineluctably", "necessarily", "unavoidably", "of necessity", "inescapably", "needs", "inevitably"]}, {"answer": "ingloriously", "hint": "synonyms for ingloriously", "clues": ["ignominiously", "dishonourably", "disgracefully", "shamefully", "discreditably", "ingloriously"]}, {"answer": "insanely", "hint": "synonyms for insanely", "clues": ["madly", "deadly", "crazily", "dementedly", "deucedly", "devilishly", "insanely"]}, {"answer": "insofar", "hint": "synonyms for insofar", "clues": ["so far", "to that degree", "to that extent", "in so far"]}, {"answer": "instantly", "hint": "synonyms for instantly", "clues": ["straight off", "like a shot", "outright", "immediately", "instantaneously", "directly", "right away", "in a flash", "straightaway", "at once", "forthwith", "now", "instantly"]}, {"answer": "intentionally", "hint": "synonyms for intentionally", "clues": ["designedly", "purposely", "advisedly", "deliberately", "on purpose", "by choice", "by design", "intentionally"]}, {"answer": "irrespective", "hint": "synonyms for irrespective", "clues": ["regardless", "no matter", "disregarding", "irrespective"]}, {"answer": "jubilantly", "hint": "synonyms for jubilantly", "clues": ["happily", "merrily", "gayly", "mirthfully", "blithely", "jubilantly"]}, {"answer": "just_about", "hint": "synonyms for just about", "clues": ["approximately", "roughly", "about", "close to", "some", "more or less", "or so", "around", "just about"]}, {"answer": "knavishly", "hint": "synonyms for knavishly", "clues": ["slyly", "craftily", "artfully", "foxily", "trickily", "cunningly", "knavishly"]}, {"answer": "lately", "hint": "synonyms for lately", "clues": ["latterly", "of late", "recently", "late"]}, {"answer": "later_on", "hint": "synonyms for later on", "clues": ["after", "afterwards", "subsequently", "later", "later on"]}, {"answer": "lawfully", "hint": "synonyms for lawfully", "clues": ["licitly", "de jure", "legitimately", "legally", "lawfully"]}, {"answer": "lightly", "hint": "synonyms for lightly", "clues": ["gently", "light", "thinly", "softly"]}, {"answer": "like_a_shot", "hint": "synonyms for like a shot", "clues": ["straight off", "immediately", "instantly", "directly", "right away", "straightaway", "at once", "forthwith", "now", "like a shot"]}, {"answer": "like_crazy", "hint": "synonyms for like crazy", "clues": ["like thunder", "like sin", "like mad", "like hell", "like the devil", "like crazy"]}, {"answer": "like_hell", "hint": "synonyms for like hell", "clues": ["like thunder", "like sin", "like mad", "like the devil", "like crazy", "like hell"]}, {"answer": "like_mad", "hint": "synonyms for like mad", "clues": ["like thunder", "like sin", "like hell", "like the devil", "like crazy", "like mad"]}, {"answer": "like_sin", "hint": "synonyms for like sin", "clues": ["like thunder", "like mad", "like hell", "like the devil", "like crazy", "like sin"]}, {"answer": "like_the_devil", "hint": "synonyms for like the devil", "clues": ["like thunder", "like sin", "like mad", "like hell", "like crazy", "like the devil"]}, {"answer": "like_thunder", "hint": "synonyms for like thunder", "clues": ["like sin", "like mad", "like hell", "like the devil", "like crazy", "like thunder"]}, {"answer": "likewise", "hint": "synonyms for likewise", "clues": ["too", "besides", "as well", "similarly", "alike", "also", "likewise"]}, {"answer": "little_by_little", "hint": "synonyms for little by little", "clues": ["in stages", "by inches", "bit by bit", "by small degrees", "piecemeal", "little by little"]}, {"answer": "longitudinally", "hint": "synonyms for longitudinally", "clues": ["longways", "longwise", "lengthwise", "lengthways", "longitudinally"]}, {"answer": "longways", "hint": "synonyms for longways", "clues": ["longwise", "longitudinally", "lengthwise", "lengthways", "longways"]}, {"answer": "longwise", "hint": "synonyms for longwise", "clues": ["longways", "longitudinally", "lengthwise", "lengthways", "longwise"]}, {"answer": "loosely", "hint": "synonyms for loosely", "clues": ["broadly", "generally", "broadly speaking", "slackly", "loosely"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["much", "very much", "a great deal", "a good deal", "a lot", "lots"]}, {"answer": "loudly", "hint": "synonyms for loudly", "clues": ["clamorously", "aloud", "forte", "obstreperously", "loudly"]}, {"answer": "madly", "hint": "synonyms for madly", "clues": ["deadly", "crazily", "dementedly", "deucedly", "devilishly", "insanely", "frantically", "madly"]}, {"answer": "magnificently", "hint": "synonyms for magnificently", "clues": ["famously", "resplendently", "excellently", "gorgeously", "splendidly", "magnificently"]}, {"answer": "mainly", "hint": "synonyms for mainly", "clues": ["chiefly", "principally", "primarily", "in the main", "mainly"]}, {"answer": "manifestly", "hint": "synonyms for manifestly", "clues": ["apparently", "patently", "obviously", "evidently", "plainly", "manifestly"]}, {"answer": "marvellously", "hint": "synonyms for marvellously", "clues": ["wondrously", "superbly", "marvelously", "toppingly", "terrifically", "wonderfully"]}, {"answer": "marvelously", "hint": "synonyms for marvelously", "clues": ["wondrously", "superbly", "marvellously", "terrifically", "toppingly", "wonderfully"]}, {"answer": "maybe", "hint": "synonyms for maybe", "clues": ["mayhap", "perchance", "possibly", "perhaps", "peradventure", "maybe"]}, {"answer": "mayhap", "hint": "synonyms for mayhap", "clues": ["maybe", "perchance", "possibly", "perhaps", "peradventure", "mayhap"]}, {"answer": "meanly", "hint": "synonyms for meanly", "clues": ["humbly", "scurvily", "basely", "nastily", "meanly"]}, {"answer": "merely", "hint": "synonyms for merely", "clues": ["but", "just", "simply", "only", "merely"]}, {"answer": "merrily", "hint": "synonyms for merrily", "clues": ["jubilantly", "happily", "gayly", "mirthfully", "blithely", "merrily"]}, {"answer": "mirthfully", "hint": "synonyms for mirthfully", "clues": ["jubilantly", "happily", "merrily", "gayly", "blithely", "mirthfully"]}, {"answer": "mockingly", "hint": "synonyms for mockingly", "clues": ["derisively", "gibingly", "derisorily", "jeeringly", "scoffingly", "mockingly"]}, {"answer": "moderately", "hint": "synonyms for moderately", "clues": ["fairly", "somewhat", "passably", "jolly", "pretty", "middling", "reasonably", "moderately"]}, {"answer": "monstrously", "hint": "synonyms for monstrously", "clues": ["heinously", "hideously", "grotesquely", "horridly", "monstrously"]}, {"answer": "more_or_less", "hint": "synonyms for more or less", "clues": ["somewhat", "approximately", "roughly", "about", "just about", "close to", "some", "slightly", "or so", "around", "more or less"]}, {"answer": "mostly", "hint": "synonyms for mostly", "clues": ["for the most part", "largely", "more often than not", "generally", "by and large", "mostly"]}, {"answer": "mulishly", "hint": "synonyms for mulishly", "clues": ["obdurately", "pig-headedly", "cussedly", "obstinately", "stubbornly", "mulishly"]}, {"answer": "namely", "hint": "synonyms for namely", "clues": ["to wit", "viz.", "videlicet", "that is to say", "namely"]}, {"answer": "nearly", "hint": "synonyms for nearly", "clues": ["almost", "well-nigh", "virtually", "about", "most", "intimately", "nigh", "near", "closely"]}, {"answer": "necessarily", "hint": "synonyms for necessarily", "clues": ["inevitably", "of necessity", "needs", "needfully", "necessarily"]}, {"answer": "nevertheless", "hint": "synonyms for nevertheless", "clues": ["nonetheless", "however", "all the same", "notwithstanding", "still", "withal", "even so", "yet", "nevertheless"]}, {"answer": "no_matter", "hint": "synonyms for no matter", "clues": ["regardless", "irrespective", "disregarding", "no matter"]}, {"answer": "nonetheless", "hint": "synonyms for nonetheless", "clues": ["nevertheless", "however", "all the same", "notwithstanding", "still", "withal", "even so", "yet", "nonetheless"]}, {"answer": "normally", "hint": "synonyms for normally", "clues": ["ordinarily", "commonly", "usually", "unremarkably", "normally"]}, {"answer": "notwithstanding", "hint": "synonyms for notwithstanding", "clues": ["nonetheless", "however", "nevertheless", "all the same", "still", "withal", "even so", "yet", "notwithstanding"]}, {"answer": "now", "hint": "synonyms for now", "clues": ["straight off", "like a shot", "nowadays", "immediately", "instantly", "at present", "today", "directly", "right away", "straightaway", "at once", "forthwith", "now"]}, {"answer": "now_and_again", "hint": "synonyms for now and again", "clues": ["now and then", "on occasion", "from time to time", "occasionally", "once in a while", "at times", "now and again"]}, {"answer": "now_and_then", "hint": "synonyms for now and then", "clues": ["on occasion", "now and again", "from time to time", "occasionally", "once in a while", "at times", "now and then"]}, {"answer": "nuttily", "hint": "synonyms for nuttily", "clues": ["wackily", "daftly", "dottily", "balmily", "nuttily"]}, {"answer": "obdurately", "hint": "synonyms for obdurately", "clues": ["pig-headedly", "mulishly", "cussedly", "obstinately", "stubbornly", "obdurately"]}, {"answer": "obliquely", "hint": "synonyms for obliquely", "clues": ["aslant", "sideways", "sidelong", "athwart", "obliquely"]}, {"answer": "obstinately", "hint": "synonyms for obstinately", "clues": ["obdurately", "pig-headedly", "mulishly", "cussedly", "stubbornly", "obstinately"]}, {"answer": "obviously", "hint": "synonyms for obviously", "clues": ["apparently", "patently", "evidently", "manifestly", "plainly", "obviously"]}, {"answer": "occasionally", "hint": "synonyms for occasionally", "clues": ["on occasion", "now and again", "from time to time", "now and then", "once in a while", "at times", "occasionally"]}, {"answer": "oddly", "hint": "synonyms for oddly", "clues": ["strangely", "queerly", "peculiarly", "curiously", "funnily", "oddly"]}, {"answer": "of_late", "hint": "synonyms for of late", "clues": ["latterly", "recently", "late", "of late"]}, {"answer": "oft", "hint": "synonyms for oft", "clues": ["oftentimes", "frequently", "often", "oft"]}, {"answer": "often", "hint": "synonyms for often", "clues": ["much", "a great deal", "oftentimes", "frequently", "oft", "often"]}, {"answer": "oftentimes", "hint": "synonyms for oftentimes", "clues": ["frequently", "often", "ofttimes", "oft"]}, {"answer": "ofttimes", "hint": "synonyms for ofttimes", "clues": ["oftentimes", "frequently", "often", "oft"]}, {"answer": "on_an_individual_basis", "hint": "synonyms for on an individual basis", "clues": ["individually", "one by one", "separately", "severally", "singly", "on an individual basis"]}, {"answer": "on_occasion", "hint": "synonyms for on occasion", "clues": ["now and then", "now and again", "from time to time", "occasionally", "once in a while", "at times", "on occasion"]}, {"answer": "on_purpose", "hint": "synonyms for on purpose", "clues": ["designedly", "purposely", "advisedly", "deliberately", "intentionally", "by choice", "by design", "on purpose"]}, {"answer": "on_the_dot", "hint": "synonyms for on the dot", "clues": ["on the button", "precisely", "on the nose", "exactly", "on the dot"]}, {"answer": "once", "hint": "synonyms for once", "clues": ["at one time", "one time", "formerly", "in one case", "erst", "erstwhile", "once"]}, {"answer": "once_in_a_while", "hint": "synonyms for once in a while", "clues": ["now and then", "now and again", "from time to time", "occasionally", "on occasion", "at times", "once in a while"]}, {"answer": "one_by_one", "hint": "synonyms for one by one", "clues": ["one at a time", "by the piece", "singly", "separately", "severally", "on an individual basis", "individually", "one after another", "one by one"]}, {"answer": "onward", "hint": "synonyms for onward", "clues": ["forth", "ahead", "onwards", "forward", "forrader"]}, {"answer": "onwards", "hint": "synonyms for onwards", "clues": ["ahead", "onward", "forward", "forrader"]}, {"answer": "or_so", "hint": "synonyms for or so", "clues": ["approximately", "roughly", "about", "just about", "close to", "some", "more or less", "around", "or so"]}, {"answer": "ordinarily", "hint": "synonyms for ordinarily", "clues": ["normally", "commonly", "usually", "unremarkably", "ordinarily"]}, {"answer": "originally", "hint": "synonyms for originally", "clues": ["in the beginning", "primitively", "earlier", "in the first place", "to begin with", "originally"]}, {"answer": "over_and_over", "hint": "synonyms for over and over", "clues": ["over and over again", "again and again", "time and again", "time and time again", "over and over"]}, {"answer": "over_and_over_again", "hint": "synonyms for over and over again", "clues": ["over and over", "again and again", "time and again", "time and time again", "over and over again"]}, {"answer": "p.a.", "hint": "synonyms for p.a.", "clues": ["per year", "per annum", "annually", "each year", "p.a."]}, {"answer": "particularly", "hint": "synonyms for particularly", "clues": ["in particular", "specially", "peculiarly", "particularly"]}, {"answer": "passably", "hint": "synonyms for passably", "clues": ["fairly", "somewhat", "moderately", "jolly", "pretty", "middling", "reasonably", "passably"]}, {"answer": "patently", "hint": "synonyms for patently", "clues": ["apparently", "obviously", "evidently", "manifestly", "plainly", "patently"]}, {"answer": "peculiarly", "hint": "synonyms for peculiarly", "clues": ["particularly", "especially", "curiously", "oddly", "peculiarly"]}, {"answer": "per_annum", "hint": "synonyms for per annum", "clues": ["per year", "p.a.", "annually", "each year", "per annum"]}, {"answer": "per_year", "hint": "synonyms for per year", "clues": ["per annum", "p.a.", "annually", "each year", "per year"]}, {"answer": "peradventure", "hint": "synonyms for peradventure", "clues": ["maybe", "mayhap", "possibly", "perhaps", "perchance", "peradventure"]}, {"answer": "perchance", "hint": "synonyms for perchance", "clues": ["maybe", "mayhap", "possibly", "by chance", "perhaps", "peradventure", "perchance"]}, {"answer": "perhaps", "hint": "synonyms for perhaps", "clues": ["maybe", "mayhap", "perchance", "possibly", "peradventure", "perhaps"]}, {"answer": "perpetually", "hint": "synonyms for perpetually", "clues": ["always", "incessantly", "constantly", "forever", "perpetually"]}, {"answer": "pertly", "hint": "synonyms for pertly", "clues": ["impertinently", "impudently", "saucily", "freshly", "pertly"]}, {"answer": "piercingly", "hint": "synonyms for piercingly", "clues": ["bitingly", "bitterly", "shrilly", "piercingly"]}, {"answer": "pig-headedly", "hint": "synonyms for pig-headedly", "clues": ["obdurately", "mulishly", "cussedly", "obstinately", "stubbornly", "pig-headedly"]}, {"answer": "plainly", "hint": "synonyms for plainly", "clues": ["apparently", "patently", "obviously", "evidently", "manifestly", "simply", "plain"]}, {"answer": "pleadingly", "hint": "synonyms for pleadingly", "clues": ["beseechingly", "entreatingly", "importunately", "imploringly", "pleadingly"]}, {"answer": "pleasantly", "hint": "synonyms for pleasantly", "clues": ["cheerily", "enjoyably", "agreeably", "sunnily", "pleasantly"]}, {"answer": "possibly", "hint": "synonyms for possibly", "clues": ["maybe", "mayhap", "perchance", "perhaps", "peradventure", "possibly"]}, {"answer": "precisely", "hint": "synonyms for precisely", "clues": ["on the dot", "exactly", "on the button", "just", "on the nose", "incisively", "precisely"]}, {"answer": "presently", "hint": "synonyms for presently", "clues": ["soon", "currently", "before long", "shortly", "presently"]}, {"answer": "primarily", "hint": "synonyms for primarily", "clues": ["in the main", "mainly", "in the first place", "chiefly", "principally", "primarily"]}, {"answer": "principally", "hint": "synonyms for principally", "clues": ["chiefly", "primarily", "mainly", "in the main", "principally"]}, {"answer": "probably", "hint": "synonyms for probably", "clues": ["likely", "believably", "plausibly", "in all probability", "credibly", "in all likelihood", "belike", "probably"]}, {"answer": "promptly", "hint": "synonyms for promptly", "clues": ["pronto", "right away", "readily", "quickly", "promptly"]}, {"answer": "properly", "hint": "synonyms for properly", "clues": ["decent", "the right way", "right", "by rights", "in good order", "properly"]}, {"answer": "purposely", "hint": "synonyms for purposely", "clues": ["designedly", "deliberately", "advisedly", "on purpose", "intentionally", "by choice", "by design", "purposely"]}, {"answer": "queerly", "hint": "synonyms for queerly", "clues": ["strangely", "fishily", "funnily", "oddly", "queerly"]}, {"answer": "quickly", "hint": "synonyms for quickly", "clues": ["cursorily", "chop-chop", "speedily", "rapidly", "promptly", "quick", "apace"]}, {"answer": "randomly", "hint": "synonyms for randomly", "clues": ["every which way", "indiscriminately", "willy-nilly", "at random", "arbitrarily", "haphazardly", "randomly"]}, {"answer": "rapidly", "hint": "synonyms for rapidly", "clues": ["speedily", "chop-chop", "quickly", "apace", "rapidly"]}, {"answer": "rather", "hint": "synonyms for rather", "clues": ["sort of", "preferably", "sooner", "instead", "kind of", "kinda", "quite", "rather"]}, {"answer": "really", "hint": "synonyms for really", "clues": ["rattling", "genuinely", "actually", "in truth", "truly", "real", "very"]}, {"answer": "reasonably", "hint": "synonyms for reasonably", "clues": ["fairly", "somewhat", "moderately", "jolly", "pretty", "middling", "sanely", "passably", "sensibly", "reasonably"]}, {"answer": "recently", "hint": "synonyms for recently", "clues": ["latterly", "of late", "late", "recently"]}, {"answer": "remarkably", "hint": "synonyms for remarkably", "clues": ["unusually", "signally", "unmistakably", "unco", "outstandingly", "remarkably"]}, {"answer": "richly", "hint": "synonyms for richly", "clues": ["extravagantly", "amply", "high", "luxuriously", "lavishly", "richly"]}, {"answer": "right_away", "hint": "synonyms for right away", "clues": ["straight off", "like a shot", "immediately", "instantly", "promptly", "directly", "straightaway", "at once", "forthwith", "now", "right away"]}, {"answer": "rottenly", "hint": "synonyms for rottenly", "clues": ["abysmally", "awfully", "abominably", "terribly", "atrociously", "rottenly"]}, {"answer": "roughly", "hint": "synonyms for roughly", "clues": ["rough", "approximately", "about", "just about", "close to", "some", "more or less", "or so", "around"]}, {"answer": "roundly", "hint": "synonyms for roundly", "clues": ["bluffly", "bluntly", "brusquely", "flat out", "roundly"]}, {"answer": "sadly", "hint": "synonyms for sadly", "clues": ["unhappily", "deplorably", "lamentably", "woefully", "sadly"]}, {"answer": "sagaciously", "hint": "synonyms for sagaciously", "clues": ["acutely", "sapiently", "astutely", "shrewdly", "sagaciously"]}, {"answer": "sapiently", "hint": "synonyms for sapiently", "clues": ["acutely", "astutely", "sagaciously", "shrewdly", "sapiently"]}, {"answer": "saucily", "hint": "synonyms for saucily", "clues": ["impertinently", "impudently", "pertly", "freshly", "saucily"]}, {"answer": "scarcely", "hint": "synonyms for scarcely", "clues": ["barely", "scarce", "just", "hardly"]}, {"answer": "separately", "hint": "synonyms for separately", "clues": ["individually", "one by one", "severally", "on an individual basis", "singly", "separately"]}, {"answer": "seriously", "hint": "synonyms for seriously", "clues": ["badly", "in earnest", "gravely", "earnestly", "severely", "seriously"]}, {"answer": "severally", "hint": "synonyms for severally", "clues": ["respectively", "individually", "one by one", "separately", "on an individual basis", "singly", "independently", "severally"]}, {"answer": "severely", "hint": "synonyms for severely", "clues": ["badly", "gravely", "seriously", "sternly", "hard", "severely"]}, {"answer": "shamefully", "hint": "synonyms for shamefully", "clues": ["ignominiously", "dishonourably", "discreditably", "disgracefully", "ingloriously", "shamefully"]}, {"answer": "sharply", "hint": "synonyms for sharply", "clues": ["sharp", "acutely", "aggressively", "precipitously", "crisply"]}, {"answer": "shortly", "hint": "synonyms for shortly", "clues": ["soon", "in short", "curtly", "before long", "presently", "briefly", "in brief", "concisely", "short"]}, {"answer": "shrewdly", "hint": "synonyms for shrewdly", "clues": ["acutely", "sapiently", "astutely", "sagaciously", "shrewdly"]}, {"answer": "simply", "hint": "synonyms for simply", "clues": ["but", "only", "merely", "just", "plainly", "simply"]}, {"answer": "singly", "hint": "synonyms for singly", "clues": ["one by one", "separately", "severally", "on an individual basis", "individually", "singly"]}, {"answer": "slap", "hint": "synonyms for slap", "clues": ["slapdash", "bolt", "smack", "bang", "slap"]}, {"answer": "slenderly", "hint": "synonyms for slenderly", "clues": ["meagrely", "slightly", "sparingly", "slimly", "slenderly"]}, {"answer": "slightly", "hint": "synonyms for slightly", "clues": ["somewhat", "slenderly", "more or less", "slimly", "slightly"]}, {"answer": "slowly", "hint": "synonyms for slowly", "clues": ["lento", "slow", "easy", "tardily"]}, {"answer": "slyly", "hint": "synonyms for slyly", "clues": ["craftily", "artfully", "knavishly", "foxily", "trickily", "cunningly", "slyly"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["slapdash", "bolt", "slap", "bang", "smack"]}, {"answer": "smartly", "hint": "synonyms for smartly", "clues": ["modishly", "cleverly", "sprucely", "vigorously", "smartly"]}, {"answer": "so", "hint": "synonyms for so", "clues": ["and then", "indeed", "thusly", "then", "thence", "therefore", "and so", "so"]}, {"answer": "so_far", "hint": "synonyms for so far", "clues": ["insofar", "hitherto", "heretofore", "until now", "up to now", "to that degree", "to that extent", "thus far", "yet", "as yet", "so far"]}, {"answer": "softly", "hint": "synonyms for softly", "clues": ["gently", "lightly", "piano", "quietly", "softly"]}, {"answer": "solely", "hint": "synonyms for solely", "clues": ["alone", "only", "entirely", "exclusively", "solely"]}, {"answer": "somehow", "hint": "synonyms for somehow", "clues": ["in some way", "someway", "in some manner", "somehow"]}, {"answer": "someway", "hint": "synonyms for someway", "clues": ["in some way", "someways", "in some manner", "somehow"]}, {"answer": "someways", "hint": "synonyms for someways", "clues": ["in some way", "someway", "in some manner", "somehow"]}, {"answer": "somewhat", "hint": "synonyms for somewhat", "clues": ["fairly", "moderately", "jolly", "pretty", "middling", "passably", "more or less", "slightly", "reasonably", "somewhat"]}, {"answer": "speedily", "hint": "synonyms for speedily", "clues": ["rapidly", "chop-chop", "quickly", "apace", "speedily"]}, {"answer": "splendidly", "hint": "synonyms for splendidly", "clues": ["famously", "magnificently", "excellently", "resplendently", "gorgeously", "splendidly"]}, {"answer": "squarely", "hint": "synonyms for squarely", "clues": ["forthrightly", "square", "straightforwardly", "foursquare"]}, {"answer": "straight_off", "hint": "synonyms for straight off", "clues": ["like a shot", "immediately", "instantly", "directly", "right away", "straightaway", "at once", "forthwith", "now", "straight off"]}, {"answer": "stubbornly", "hint": "synonyms for stubbornly", "clues": ["obdurately", "pig-headedly", "mulishly", "cussedly", "obstinately", "stubbornly"]}, {"answer": "subsequently", "hint": "synonyms for subsequently", "clues": ["after", "afterwards", "later", "later on", "subsequently"]}, {"answer": "suddenly", "hint": "synonyms for suddenly", "clues": ["abruptly", "on the spur of the moment", "of a sudden", "all of a sudden", "dead", "short", "suddenly"]}, {"answer": "suitably", "hint": "synonyms for suitably", "clues": ["fittingly", "appropriately", "fitly", "suitably"]}, {"answer": "superbly", "hint": "synonyms for superbly", "clues": ["wondrously", "marvelously", "terrifically", "toppingly", "wonderfully", "superbly"]}, {"answer": "sure_enough", "hint": "synonyms for sure enough", "clues": ["sure", "sure as shooting", "for sure", "for certain", "certainly", "sure enough"]}, {"answer": "surely", "hint": "synonyms for surely", "clues": ["sure", "sure as shooting", "for sure", "for certain", "sure enough", "certainly"]}, {"answer": "tardily", "hint": "synonyms for tardily", "clues": ["slowly", "late", "easy", "belatedly", "tardily"]}, {"answer": "terribly", "hint": "synonyms for terribly", "clues": ["abysmally", "awfully", "abominably", "rottenly", "frightfully", "atrociously", "terribly"]}, {"answer": "terrifically", "hint": "synonyms for terrifically", "clues": ["wondrously", "superbly", "marvelously", "toppingly", "wonderfully", "terrifically"]}, {"answer": "that_is_to_say", "hint": "synonyms for that is to say", "clues": ["to wit", "namely", "videlicet", "viz.", "that is to say"]}, {"answer": "the_right_way", "hint": "synonyms for the right way", "clues": ["decent", "right", "in good order", "properly", "the right way"]}, {"answer": "thence", "hint": "synonyms for thence", "clues": ["therefrom", "hence", "thereof", "so", "therefore", "thus"]}, {"answer": "there", "hint": "synonyms for there", "clues": ["in that respect", "thither", "at that place", "on that point", "in that location", "there"]}, {"answer": "therefore", "hint": "synonyms for therefore", "clues": ["hence", "so", "consequently", "thus", "therefore"]}, {"answer": "thus", "hint": "synonyms for thus", "clues": ["hence", "thusly", "so", "therefore"]}, {"answer": "thus_far", "hint": "synonyms for thus far", "clues": ["hitherto", "heretofore", "so far", "until now", "up to now", "yet", "as yet", "thus far"]}, {"answer": "til_now", "hint": "synonyms for til now", "clues": ["hitherto", "heretofore", "so far", "until now", "up to now", "thus far", "as yet", "yet"]}, {"answer": "time_and_again", "hint": "synonyms for time and again", "clues": ["over and over", "again and again", "time and time again", "over and over again", "time and again"]}, {"answer": "time_and_time_again", "hint": "synonyms for time and time again", "clues": ["over and over", "again and again", "time and again", "over and over again", "time and time again"]}, {"answer": "to_a_t", "hint": "synonyms for to a t", "clues": ["to the letter", "to perfection", "just right", "to a T"]}, {"answer": "to_begin_with", "hint": "synonyms for to begin with", "clues": ["in the first place", "originally", "in the beginning", "earlier", "to begin with"]}, {"answer": "to_each_one", "hint": "synonyms for to each one", "clues": ["from each one", "apiece", "each", "to each one"]}, {"answer": "to_that_degree", "hint": "synonyms for to that degree", "clues": ["insofar", "so far", "to that extent", "to that degree"]}, {"answer": "to_that_extent", "hint": "synonyms for to that extent", "clues": ["insofar", "so far", "to that degree", "to that extent"]}, {"answer": "to_wit", "hint": "synonyms for to wit", "clues": ["viz.", "namely", "videlicet", "that is to say", "to wit"]}, {"answer": "too", "hint": "synonyms for too", "clues": ["excessively", "to a fault", "overly", "likewise", "besides", "as well", "also", "too"]}, {"answer": "toppingly", "hint": "synonyms for toppingly", "clues": ["wondrously", "superbly", "marvelously", "terrifically", "wonderfully", "toppingly"]}, {"answer": "topsy-turvily", "hint": "synonyms for topsy-turvily", "clues": ["topsy-turvy", "head over heels", "in great confusion", "heels over head"]}, {"answer": "totally", "hint": "synonyms for totally", "clues": ["completely", "whole", "all", "wholly", "altogether", "entirely", "totally"]}, {"answer": "traitorously", "hint": "synonyms for traitorously", "clues": ["treasonably", "faithlessly", "treacherously", "false", "traitorously"]}, {"answer": "treacherously", "hint": "synonyms for treacherously", "clues": ["treasonably", "faithlessly", "false", "traitorously", "treacherously"]}, {"answer": "treasonably", "hint": "synonyms for treasonably", "clues": ["faithlessly", "treacherously", "false", "traitorously", "treasonably"]}, {"answer": "trickily", "hint": "synonyms for trickily", "clues": ["slyly", "craftily", "artfully", "knavishly", "foxily", "cunningly", "trickily"]}, {"answer": "truly", "hint": "synonyms for truly", "clues": ["rightfully", "genuinely", "sincerely", "in truth", "really", "unfeignedly", "truly"]}, {"answer": "ultimately", "hint": "synonyms for ultimately", "clues": ["in the end", "at long last", "finally", "at last", "ultimately"]}, {"answer": "unceasingly", "hint": "synonyms for unceasingly", "clues": ["incessantly", "continuously", "unendingly", "endlessly", "ceaselessly", "unceasingly"]}, {"answer": "unendingly", "hint": "synonyms for unendingly", "clues": ["incessantly", "continuously", "endlessly", "ceaselessly", "unceasingly", "unendingly"]}, {"answer": "unexpectedly", "hint": "synonyms for unexpectedly", "clues": ["by chance", "circumstantially", "out of the blue", "accidentally", "unexpectedly"]}, {"answer": "unprofitably", "hint": "synonyms for unprofitably", "clues": ["profitlessly", "fruitlessly", "unproductively", "gainlessly", "unprofitably"]}, {"answer": "unquestionably", "hint": "synonyms for unquestionably", "clues": ["definitely", "emphatically", "in spades", "decidedly", "unimpeachably", "by all odds", "unquestionably"]}, {"answer": "unremarkably", "hint": "synonyms for unremarkably", "clues": ["ordinarily", "normally", "commonly", "usually", "unremarkably"]}, {"answer": "until_now", "hint": "synonyms for until now", "clues": ["hitherto", "heretofore", "so far", "up to now", "thus far", "yet", "as yet", "til now"]}, {"answer": "up_to_now", "hint": "synonyms for up to now", "clues": ["to date", "hitherto", "heretofore", "so far", "until now", "thus far", "yet", "as yet", "up to now"]}, {"answer": "usually", "hint": "synonyms for usually", "clues": ["ordinarily", "normally", "commonly", "unremarkably", "usually"]}, {"answer": "very_much", "hint": "synonyms for very much", "clues": ["much", "lots", "a great deal", "a good deal", "a lot", "very much"]}, {"answer": "very_well", "hint": "synonyms for very well", "clues": ["first-rate", "fine", "alright", "very well"]}, {"answer": "videlicet", "hint": "synonyms for videlicet", "clues": ["to wit", "namely", "viz.", "that is to say", "videlicet"]}, {"answer": "virtually", "hint": "synonyms for virtually", "clues": ["almost", "well-nigh", "nigh", "about", "most", "nearly", "virtually"]}, {"answer": "viz.", "hint": "synonyms for viz.", "clues": ["to wit", "namely", "videlicet", "that is to say", "viz."]}, {"answer": "wackily", "hint": "synonyms for wackily", "clues": ["daftly", "nuttily", "dottily", "balmily", "wackily"]}, {"answer": "well-nigh", "hint": "synonyms for well-nigh", "clues": ["almost", "nigh", "virtually", "about", "most", "nearly", "well-nigh"]}, {"answer": "when_the_time_comes", "hint": "synonyms for when the time comes", "clues": ["in due time", "in good time", "in due season", "in due course", "when the time comes"]}, {"answer": "wholly", "hint": "synonyms for wholly", "clues": ["completely", "whole", "totally", "all", "altogether", "entirely", "wholly"]}, {"answer": "willy-nilly", "hint": "synonyms for willy-nilly", "clues": ["every which way", "indiscriminately", "at random", "randomly", "arbitrarily", "haphazardly", "willy-nilly"]}, {"answer": "withal", "hint": "synonyms for withal", "clues": ["nonetheless", "however", "nevertheless", "all the same", "notwithstanding", "still", "even so", "yet", "withal"]}, {"answer": "wonderfully", "hint": "synonyms for wonderfully", "clues": ["wondrously", "superbly", "marvelously", "terrifically", "toppingly", "wonderfully"]}, {"answer": "wondrously", "hint": "synonyms for wondrously", "clues": ["superbly", "marvelously", "wondrous", "terrifically", "toppingly", "wonderfully"]}, {"answer": "yet", "hint": "synonyms for yet", "clues": ["nevertheless", "however", "so far", "until now", "still", "thus far", "withal", "even", "hitherto", "as yet", "in time", "nonetheless", "all the same", "notwithstanding", "heretofore", "up to now", "even so", "yet"]}], "portion": 0.54}, {"name": "nouns", "groups": [{"answer": "0", "hint": "synonyms for 0", "clues": ["cipher", "cypher", "zero", "nought", "0"]}, {"answer": "1", "hint": "synonyms for 1", "clues": ["ace", "single", "unity", "one", "1"]}, {"answer": "1000", "hint": "synonyms for 1000", "clues": ["thou", "grand", "yard", "one thousand", "chiliad", "thousand", "1000"]}, {"answer": "3", "hint": "synonyms for 3", "clues": ["tierce", "ternion", "triplet", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "ternary", "threesome", "trey", "trio", "3"]}, {"answer": "4", "hint": "synonyms for 4", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "quaternion", "foursome", "4"]}, {"answer": "5", "hint": "synonyms for 5", "clues": ["quint", "quintet", "cinque", "pentad", "fin", "quintuplet", "five", "fivesome", "5"]}, {"answer": "6", "hint": "synonyms for 6", "clues": ["half a dozen", "six", "sestet", "sextet", "sise", "hexad", "sixer", "sextuplet", "6"]}, {"answer": "7", "hint": "synonyms for 7", "clues": ["seven", "sevener", "heptad", "septenary", "septet", "7"]}, {"answer": "8", "hint": "synonyms for 8", "clues": ["eighter from Decatur", "octonary", "octad", "ogdoad", "octet", "eighter", "eight", "8"]}, {"answer": "abstract", "hint": "synonyms for abstract", "clues": ["precis", "synopsis", "abstraction", "outline", "abstract"]}, {"answer": "accessory", "hint": "synonyms for accessory", "clues": ["accouterment", "add-on", "appurtenance", "supplement", "accessory"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["single", "unity", "one", "1", "angiotensin-converting enzyme", "ace"]}, {"answer": "acid", "hint": "synonyms for acid", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "superman", "battery-acid", "acid"]}, {"answer": "advance", "hint": "synonyms for advance", "clues": ["procession", "feeler", "advancement", "progress", "onward motion", "rise", "approach", "betterment", "improvement", "overture", "cash advance", "advance"]}, {"answer": "agglomerate", "hint": "synonyms for agglomerate", "clues": ["pile", "cumulation", "mound", "heap", "cumulus", "agglomerate"]}, {"answer": "aggregate", "hint": "synonyms for aggregate", "clues": ["total", "sum", "conglomeration", "congeries", "totality", "aggregate"]}, {"answer": "animal", "hint": "synonyms for animal", "clues": ["fauna", "creature", "brute", "animate being", "beast", "animal"]}, {"answer": "antiaircraft", "hint": "synonyms for antiaircraft", "clues": ["flak", "ack-ack", "ack-ack gun", "antiaircraft gun", "pom-pom"]}, {"answer": "antic", "hint": "synonyms for antic", "clues": ["joke", "caper", "trick", "put-on", "prank", "antic"]}, {"answer": "antifungal", "hint": "synonyms for antifungal", "clues": ["fungicide", "antifungal agent", "antimycotic agent", "antimycotic", "antifungal"]}, {"answer": "anxiolytic", "hint": "synonyms for anxiolytic", "clues": ["antianxiety drug", "minor tranquilliser", "anxiolytic drug", "anxiolytic"]}, {"answer": "arctic", "hint": "synonyms for arctic", "clues": ["golosh", "rubber", "gumshoe", "galosh", "arctic"]}, {"answer": "ataractic", "hint": "synonyms for ataractic", "clues": ["tranquilizer", "antianxiety agent", "ataractic drug", "ataractic agent", "ataractic"]}, {"answer": "azure", "hint": "synonyms for azure", "clues": ["cerulean", "sky-blue", "lazuline", "sapphire", "azure"]}, {"answer": "bacchanal", "hint": "synonyms for bacchanal", "clues": ["orgy", "drunken revelry", "riot", "saturnalia", "debauchery", "debauch", "bacchanalia"]}, {"answer": "back", "hint": "synonyms for back", "clues": ["book binding", "cover", "rear", "binding", "backrest", "back"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["radix", "stem", "root word", "nucleotide", "home", "al-Qaida", "cornerstone", "groundwork", "theme", "pedestal", "alkali", "foundation", "foot", "understructure", "radical", "base of operations", "bag", "root", "fundament", "basis", "infrastructure", "stand", "floor", "substructure", "base"]}, {"answer": "bass", "hint": "synonyms for bass", "clues": ["bass part", "basso", "sea bass", "bass voice", "freshwater bass"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["bat", "at-bat", "squash racquet", "cricket bat"]}, {"answer": "bearing", "hint": "synonyms for bearing", "clues": ["heading", "aim", "mien", "carriage", "heraldic bearing", "presence", "armorial bearing", "comportment", "charge", "posture", "bearing"]}, {"answer": "beat", "hint": "synonyms for beat", "clues": ["musical rhythm", "round", "heartbeat", "rhythm", "metre", "pulse", "meter", "pulsation", "cadence", "measure", "beat"]}, {"answer": "beginning", "hint": "synonyms for beginning", "clues": ["offset", "kickoff", "start", "starting time", "outset", "root", "rootage", "source", "showtime", "get-go", "commencement", "origin", "first", "beginning"]}, {"answer": "billion", "hint": "synonyms for billion", "clues": ["million", "1000000000000", "gazillion", "one thousand million", "one million million", "trillion"]}, {"answer": "binding", "hint": "synonyms for binding", "clues": ["bandaging", "back", "dressing", "cover", "ski binding", "book binding", "binding"]}, {"answer": "biquadratic", "hint": "synonyms for biquadratic", "clues": ["biquadrate", "biquadratic polynomial", "biquadratic equation", "quartic", "fourth power"]}, {"answer": "blank", "hint": "synonyms for blank", "clues": ["blank shell", "lacuna", "dummy", "space", "blank"]}, {"answer": "blaring", "hint": "synonyms for blaring", "clues": ["cacophony", "clamor", "blare", "din", "blaring"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["wink", "blink", "nictitation", "eye blink"]}, {"answer": "blue", "hint": "synonyms for blue", "clues": ["blue angel", "bluing", "amobarbital sodium", "blue air", "blueness", "blue devil", "wild blue yonder", "blue sky", "blue"]}, {"answer": "bone", "hint": "synonyms for bone", "clues": ["pearl", "off-white", "osseous tissue", "ivory", "bone"]}, {"answer": "borderline", "hint": "synonyms for borderline", "clues": ["border", "delimitation", "mete", "boundary line", "borderline"]}, {"answer": "bottom", "hint": "synonyms for bottom", "clues": ["undersurface", "bottom of the inning", "freighter", "bed", "underside", "merchantman", "bottomland", "merchant ship", "bottom"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["leaping", "bounce", "bounds", "limit", "boundary", "spring", "saltation", "edge"]}, {"answer": "brag", "hint": "synonyms for brag", "clues": ["gasconade", "crow", "vaporing", "line-shooting", "bragging", "brag"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["gasconade", "crow", "vaporing", "line-shooting", "brag", "bragging"]}, {"answer": "breeding", "hint": "synonyms for breeding", "clues": ["bringing up", "procreation", "fosterage", "education", "gentility", "facts of life", "upbringing", "genteelness", "nurture", "raising", "rearing", "reproduction", "training", "fostering", "breeding"]}, {"answer": "broadside", "hint": "synonyms for broadside", "clues": ["broadsheet", "circular", "handbill", "throwaway", "bill", "flier", "philippic", "tirade", "flyer", "broadside"]}, {"answer": "brute", "hint": "synonyms for brute", "clues": ["animal", "fauna", "creature", "animate being", "beast", "brute"]}, {"answer": "buff", "hint": "synonyms for buff", "clues": ["caramel brown", "buffer", "yellowish brown", "caramel", "raw sienna", "buff"]}, {"answer": "burlesque", "hint": "synonyms for burlesque", "clues": ["travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff", "burlesque"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["tear", "bout", "fizzle", "flop", "binge", "bust"]}, {"answer": "c", "hint": "synonyms for c", "clues": ["100", "atomic number 6", "degree centigrade", "nose candy", "degree Celsius", "light speed", "coulomb", "snow", "speed of light", "ampere-second", "coke", "cytosine", "deoxycytidine monophosphate", "ascorbic acid", "carbon", "century", "hundred", "vitamin C", "one C", "blow", "c"]}, {"answer": "caesarean", "hint": "synonyms for caesarean", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "caesarian", "hint": "synonyms for caesarian", "clues": ["cesarean section", "cesarean delivery", "abdominal delivery", "caesarean", "cesarian"]}, {"answer": "calm", "hint": "synonyms for calm", "clues": ["calmness", "composure", "calm air", "equanimity", "calm"]}, {"answer": "camp", "hint": "synonyms for camp", "clues": ["cantonment", "clique", "refugee camp", "pack", "coterie", "bivouac", "encampment", "ingroup", "inner circle", "summer camp", "camp"]}, {"answer": "capital", "hint": "synonyms for capital", "clues": ["capital letter", "working capital", "chapiter", "upper-case letter", "cap", "uppercase", "majuscule", "capital"]}, {"answer": "caramel", "hint": "synonyms for caramel", "clues": ["caramel brown", "buff", "yellowish brown", "caramelized sugar", "raw sienna", "caramel"]}, {"answer": "caramel_brown", "hint": "synonyms for caramel brown", "clues": ["yellowish brown", "buff", "caramel", "raw sienna", "caramel brown"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["spying", "detection", "espial", "contracting", "spotting", "catching"]}, {"answer": "cc", "hint": "synonyms for cc", "clues": ["ml", "cubic centimeter", "milliliter", "mil", "cc"]}, {"answer": "cd", "hint": "synonyms for cd", "clues": ["cadmium", "compact disk", "standard candle", "candle", "atomic number 48", "certificate of deposit", "candela", "cd"]}, {"answer": "center", "hint": "synonyms for center", "clues": ["essence", "centerfield", "eye", "center of attention", "centre", "heart", "midpoint", "sum", "gist", "marrow", "middle", "substance", "mall", "meat", "plaza", "nub", "nitty-gritty", "shopping mall", "pith", "shopping centre", "inwardness", "heart and soul", "kernel", "core", "center"]}, {"answer": "cerulean", "hint": "synonyms for cerulean", "clues": ["sky-blue", "azure", "lazuline", "sapphire", "cerulean"]}, {"answer": "cesarean", "hint": "synonyms for cesarean", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "cesarian", "hint": "synonyms for cesarian", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "chance", "hint": "synonyms for chance", "clues": ["hazard", "luck", "fortune", "probability", "chance"]}, {"answer": "charcoal", "hint": "synonyms for charcoal", "clues": ["oxford gray", "charcoal gray", "wood coal", "fusain", "charcoal"]}, {"answer": "chic", "hint": "synonyms for chic", "clues": ["chichi", "smartness", "chicness", "last word", "stylishness", "swank", "modishness", "chic"]}, {"answer": "chichi", "hint": "synonyms for chichi", "clues": ["chic", "smartness", "chicness", "last word", "stylishness", "swank", "modishness", "chichi"]}, {"answer": "chilly", "hint": "synonyms for chilly", "clues": ["chili pepper", "chilli", "chile", "chilly"]}, {"answer": "choice", "hint": "synonyms for choice", "clues": ["pick", "option", "selection", "alternative", "choice"]}, {"answer": "circular", "hint": "synonyms for circular", "clues": ["bill", "flier", "broadsheet", "broadside", "flyer", "handbill", "throwaway", "circular"]}, {"answer": "cl", "hint": "synonyms for cl", "clues": ["atomic number 17", "centilitre", "chlorine", "cl"]}, {"answer": "cleft", "hint": "synonyms for cleft", "clues": ["crevice", "scissure", "crack", "fissure", "cleft"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["ending", "closing curtain", "stopping point", "finis", "finale", "closing", "last", "conclusion", "close"]}, {"answer": "closing", "hint": "synonyms for closing", "clues": ["ending", "completion", "shutdown", "culmination", "closedown", "mop up", "windup", "conclusion", "closure", "shutting", "close", "closing"]}, {"answer": "cold", "hint": "synonyms for cold", "clues": ["frigidness", "low temperature", "coldness", "frigidity", "cold"]}, {"answer": "color", "hint": "synonyms for color", "clues": ["colour", "people of colour", "colouration", "colouring material", "vividness", "gloss", "coloring", "semblance"]}, {"answer": "colour", "hint": "synonyms for colour", "clues": ["people of colour", "colouration", "colouring material", "vividness", "gloss", "coloring", "semblance", "colour"]}, {"answer": "comestible", "hint": "synonyms for comestible", "clues": ["victual", "edible", "pabulum", "eatable", "comestible"]}, {"answer": "coming", "hint": "synonyms for coming", "clues": ["advent", "sexual climax", "climax", "approach", "orgasm", "coming"]}, {"answer": "commonplace", "hint": "synonyms for commonplace", "clues": ["bromide", "cliche", "banality", "platitude", "commonplace"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["compact car", "covenant", "powder compact", "concordat", "compact"]}, {"answer": "connective", "hint": "synonyms for connective", "clues": ["connecter", "conjunctive", "conjunction", "connexion", "continuative"]}, {"answer": "constituent", "hint": "synonyms for constituent", "clues": ["component", "grammatical constituent", "element", "ingredient", "portion", "component part", "factor", "part", "constituent"]}, {"answer": "content", "hint": "synonyms for content", "clues": ["cognitive content", "subject", "capacity", "subject matter", "depicted object", "mental object", "substance", "message", "content"]}, {"answer": "contrabass", "hint": "synonyms for contrabass", "clues": ["bull fiddle", "bass fiddle", "string bass", "double bass", "bass viol", "contrabass"]}, {"answer": "contraceptive", "hint": "synonyms for contraceptive", "clues": ["preventive", "birth control device", "contraceptive device", "prophylactic device", "contraceptive"]}, {"answer": "cool", "hint": "synonyms for cool", "clues": ["aplomb", "poise", "assuredness", "sang-froid", "cool"]}, {"answer": "counter", "hint": "synonyms for counter", "clues": ["parry", "replication", "buffet", "sideboard", "riposte", "retort", "heel counter", "counterpunch", "comeback", "return", "tabulator", "rejoinder", "counter"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["snap", "crack cocaine", "go", "gap", "fracture", "crevice", "sally", "cleft", "tornado", "scissure", "whirl", "fissure", "cracking", "cranny", "offer", "chap", "quip", "wisecrack", "pass", "fling"]}, {"answer": "crackers", "hint": "synonyms for crackers", "clues": ["cracker", "snapper", "firecracker", "cracker bonbon", "banger"]}, {"answer": "crackle", "hint": "synonyms for crackle", "clues": ["crackleware", "crackling", "crackle china", "crepitation", "crackle"]}, {"answer": "crank", "hint": "synonyms for crank", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "starter", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "crank"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["crisscross", "crossbreeding", "hybridisation", "crossing", "mark", "interbreeding", "hybridizing"]}, {"answer": "crowing", "hint": "synonyms for crowing", "clues": ["gasconade", "crow", "vaporing", "line-shooting", "bragging", "brag"]}, {"answer": "crude", "hint": "synonyms for crude", "clues": ["rock oil", "fossil oil", "crude oil", "oil", "petroleum", "crude"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["rallying cry", "watchword", "yell", "war cry", "tears", "weeping", "call", "cry", "shout", "battle cry", "vociferation", "outcry"]}, {"answer": "cunning", "hint": "synonyms for cunning", "clues": ["wiliness", "craft", "slyness", "guile", "craftiness", "foxiness", "cunning"]}, {"answer": "custom", "hint": "synonyms for custom", "clues": ["usage", "impost", "tradition", "usance", "customs duty", "customs"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["stinger", "deletion", "excision", "cut of meat", "track", "cold shoulder", "swing", "undercut", "baseball swing", "cutting off", "gash", "cutting", "snub", "cut"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["film editing", "cutting off", "clipping", "press cutting", "cut", "carving", "press clipping", "thinning", "newspaper clipping", "cutting"]}, {"answer": "d", "hint": "synonyms for d", "clues": ["ergocalciferol", "cholecalciferol", "five hundred", "500", "vitamin D", "calciferol", "viosterol", "d"]}, {"answer": "dainty", "hint": "synonyms for dainty", "clues": ["goody", "kickshaw", "treat", "delicacy", "dainty"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["shit", "shucks", "darn", "hoot", "tinker's dam", "red cent", "damn"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["hardiness", "dare", "boldness", "hardihood", "daring"]}, {"answer": "dark", "hint": "synonyms for dark", "clues": ["shadow", "night", "nighttime", "darkness", "dark"]}, {"answer": "declarative", "hint": "synonyms for declarative", "clues": ["common mood", "indicative mood", "indicative", "declarative mood", "fact mood", "declarative"]}, {"answer": "derivative", "hint": "synonyms for derivative", "clues": ["first derivative", "differential", "derivative instrument", "derived function", "differential coefficient", "derivative"]}, {"answer": "determinant", "hint": "synonyms for determinant", "clues": ["antigenic determinant", "causal factor", "determiner", "determining factor", "epitope", "determinative", "determinant"]}, {"answer": "determinative", "hint": "synonyms for determinative", "clues": ["causal factor", "determiner", "determining factor", "determinant", "determinative"]}, {"answer": "deterrent", "hint": "synonyms for deterrent", "clues": ["baulk", "hindrance", "impediment", "check", "handicap", "deterrent"]}, {"answer": "diagonal", "hint": "synonyms for diagonal", "clues": ["separatrix", "virgule", "bias", "slash", "solidus", "stroke", "diagonal"]}, {"answer": "dickey", "hint": "synonyms for dickey", "clues": ["dickey-seat", "shirtfront", "dicky", "dickie"]}, {"answer": "dicky", "hint": "synonyms for dicky", "clues": ["dickey", "dickey-seat", "shirtfront", "dickie"]}, {"answer": "differential", "hint": "synonyms for differential", "clues": ["first derivative", "differential gear", "derived function", "differential coefficient", "derivative", "differential"]}, {"answer": "dirt", "hint": "synonyms for dirt", "clues": ["shit", "soil", "turd", "poop", "malicious gossip", "scandal", "crap", "dirt"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["two-baser", "doubling", "two-base hit", "two-bagger", "double"]}, {"answer": "dress", "hint": "synonyms for dress", "clues": ["apparel", "clothes", "attire", "frock", "wearing apparel", "garb", "dress"]}, {"answer": "eager", "hint": "synonyms for eager", "clues": ["aegir", "tidal bore", "bore", "eagre", "eager"]}, {"answer": "eatable", "hint": "synonyms for eatable", "clues": ["comestible", "victual", "edible", "pabulum", "eatable"]}, {"answer": "ebony", "hint": "synonyms for ebony", "clues": ["coal black", "jet black", "sable", "pitch black", "soot black", "ebony"]}, {"answer": "edible", "hint": "synonyms for edible", "clues": ["comestible", "victual", "pabulum", "eatable", "edible"]}, {"answer": "eight", "hint": "synonyms for eight", "clues": ["eighter", "eight-spot", "eighter from Decatur", "octonary", "octad", "ogdoad", "octet", "8", "eight"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["elevated railroad", "elevated railway", "overhead railway", "el", "elevated"]}, {"answer": "empyrean", "hint": "synonyms for empyrean", "clues": ["sphere", "firmament", "vault of heaven", "welkin", "heavens", "celestial sphere", "empyrean"]}, {"answer": "essential", "hint": "synonyms for essential", "clues": ["requirement", "necessity", "necessary", "requisite", "essential"]}, {"answer": "evil", "hint": "synonyms for evil", "clues": ["evilness", "immorality", "iniquity", "wickedness", "evil"]}, {"answer": "excess", "hint": "synonyms for excess", "clues": ["inordinateness", "surplus", "excessiveness", "overindulgence", "nimiety", "surplusage", "excess"]}, {"answer": "fancy", "hint": "synonyms for fancy", "clues": ["fantasy", "fondness", "partiality", "phantasy", "illusion", "fancy"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["first base", "number one", "offset", "kickoff", "start", "beginning", "number 1", "starting time", "outset", "low", "showtime", "get-go", "first-class honours degree", "low gear", "commencement", "first gear", "first"]}, {"answer": "fitting", "hint": "synonyms for fitting", "clues": ["trying on", "adjustment", "accommodation", "try-on", "appointment", "fitting"]}, {"answer": "five", "hint": "synonyms for five", "clues": ["quint", "quintet", "cinque", "pentad", "five-spot", "fin", "basketball team", "quintuplet", "5", "fivesome", "five"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["jiffy", "news bulletin", "heartbeat", "newsbreak", "flashing", "trice", "flash bulb", "twinkling", "instant", "wink", "split second", "flash lamp", "flashgun", "flare", "ostentation", "blink of an eye", "newsflash", "photoflash", "fanfare"]}, {"answer": "flat", "hint": "synonyms for flat", "clues": ["apartment", "flatbed", "flatcar", "flat tire", "flat"]}, {"answer": "flip", "hint": "synonyms for flip", "clues": ["somersault", "somerset", "toss", "pass", "summerset", "flip"]}, {"answer": "flowering", "hint": "synonyms for flowering", "clues": ["inflorescence", "anthesis", "blossoming", "unfolding", "efflorescence", "flowering"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["kick", "blush", "prime", "bloom", "peak", "rush", "blossom", "efflorescence", "outpouring", "flower", "heyday", "charge", "thrill", "gush", "boot", "bang", "flush"]}, {"answer": "fly", "hint": "synonyms for fly", "clues": ["fly ball", "fly sheet", "rainfly", "tent flap", "tent-fly", "fly front", "fly"]}, {"answer": "following", "hint": "synonyms for following", "clues": ["chase", "pursuit", "followers", "pursual", "following"]}, {"answer": "formal", "hint": "synonyms for formal", "clues": ["dinner gown", "dinner dress", "ball", "evening gown", "formal"]}, {"answer": "forte", "hint": "synonyms for forte", "clues": ["specialty", "fortissimo", "strength", "strong point", "long suit", "metier", "strong suit", "forte"]}, {"answer": "four", "hint": "synonyms for four", "clues": ["four-spot", "quaternary", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome", "four"]}, {"answer": "fourth", "hint": "synonyms for fourth", "clues": ["quartern", "one-fourth", "fourth part", "twenty-five percent", "one-quarter", "fourth"]}, {"answer": "frank", "hint": "synonyms for frank", "clues": ["hotdog", "weenie", "dog", "wienerwurst", "wiener", "frankfurter", "frank"]}, {"answer": "front", "hint": "synonyms for front", "clues": ["front end", "movement", "front line", "social movement", "forepart", "presence", "battlefront", "front"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["roll in the hay", "nookie", "screw", "shtup", "piece of ass", "piece of tail", "shag", "nooky", "ass", "fuck"]}, {"answer": "future", "hint": "synonyms for future", "clues": ["futurity", "time to come", "future tense", "hereafter", "future"]}, {"answer": "gimcrack", "hint": "synonyms for gimcrack", "clues": ["trumpery", "nonsense", "falderol", "frill", "folderal", "gimcrackery", "gimcrack"]}, {"answer": "ginger", "hint": "synonyms for ginger", "clues": ["powdered ginger", "gingerroot", "pep", "peppiness", "ginger"]}, {"answer": "gleaming", "hint": "synonyms for gleaming", "clues": ["glow", "lambency", "glimmer", "gleam"]}, {"answer": "go", "hint": "synonyms for go", "clues": ["whirl", "hug drug", "offer", "disco biscuit", "fling", "cristal", "turn", "tour", "crack", "go game", "pass", "spell", "ecstasy", "go"]}, {"answer": "going", "hint": "synonyms for going", "clues": ["sledding", "going away", "departure", "passing", "release", "expiration", "leaving", "exit", "loss", "going"]}, {"answer": "governing", "hint": "synonyms for governing", "clues": ["administration", "governance", "government", "government activity", "governing"]}, {"answer": "grand", "hint": "synonyms for grand", "clues": ["1000", "thou", "yard", "one thousand", "chiliad", "grand piano", "thousand", "grand"]}, {"answer": "green", "hint": "synonyms for green", "clues": ["jet", "super C", "super acid", "commons", "leafy vegetable", "putting green", "greens", "viridity", "park", "putting surface", "greenness", "cat valium", "special K", "honey oil"]}, {"answer": "growing", "hint": "synonyms for growing", "clues": ["ontogeny", "maturation", "development", "growth", "ontogenesis", "growing"]}, {"answer": "grumbling", "hint": "synonyms for grumbling", "clues": ["rumble", "murmuring", "muttering", "rumbling"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["handgrip", "handle", "grip", "hold"]}, {"answer": "hearing", "hint": "synonyms for hearing", "clues": ["earshot", "audition", "listening", "auditory modality", "earreach", "auditory sense", "sense of hearing", "hearing"]}, {"answer": "high", "hint": "synonyms for high", "clues": ["senior high school", "high school", "heights", "high gear", "senior high", "high"]}, {"answer": "home", "hint": "synonyms for home", "clues": ["dwelling", "menage", "place", "habitation", "dwelling house", "home plate", "family", "rest home", "base", "house", "nursing home", "household", "home base", "plate", "abode", "domicile", "home"]}, {"answer": "hurt", "hint": "synonyms for hurt", "clues": ["distress", "scathe", "harm", "detriment", "damage", "suffering", "hurt"]}, {"answer": "i", "hint": "synonyms for i", "clues": ["single", "atomic number 53", "iodin", "one", "ace", "unity", "1", "i"]}, {"answer": "iii", "hint": "synonyms for iii", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "iii"]}, {"answer": "immunosuppressive", "hint": "synonyms for immunosuppressive", "clues": ["immunosuppressant", "immunosuppressor", "immune suppressant drug", "immunosuppressive drug"]}, {"answer": "imperfect", "hint": "synonyms for imperfect", "clues": ["imperfect tense", "continuous tense", "progressive tense", "progressive", "imperfect"]}, {"answer": "incoming", "hint": "synonyms for incoming", "clues": ["entering", "ingress", "entry", "entrance", "incoming"]}, {"answer": "indicative", "hint": "synonyms for indicative", "clues": ["common mood", "indicative mood", "declarative", "declarative mood", "fact mood", "indicative"]}, {"answer": "individual", "hint": "synonyms for individual", "clues": ["mortal", "soul", "somebody", "someone", "person", "individual"]}, {"answer": "infrared", "hint": "synonyms for infrared", "clues": ["infrared radiation", "infrared emission", "infrared frequency", "infrared light", "infrared"]}, {"answer": "initiative", "hint": "synonyms for initiative", "clues": ["first step", "go-ahead", "enterprisingness", "opening", "opening move", "enterprise", "initiative"]}, {"answer": "instant", "hint": "synonyms for instant", "clues": ["twinkling", "jiffy", "moment", "flash", "wink", "split second", "heartbeat", "minute", "blink of an eye", "trice", "second", "instant"]}, {"answer": "intent", "hint": "synonyms for intent", "clues": ["purport", "intention", "aim", "spirit", "purpose", "design", "intent"]}, {"answer": "interrogative", "hint": "synonyms for interrogative", "clues": ["interrogation", "interrogative mood", "question", "interrogative sentence", "interrogative"]}, {"answer": "intoxicant", "hint": "synonyms for intoxicant", "clues": ["alcoholic drink", "alcoholic beverage", "inebriant", "alcohol", "intoxicant"]}, {"answer": "iv", "hint": "synonyms for iv", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome", "intravenous feeding", "iv"]}, {"answer": "ix", "hint": "synonyms for ix", "clues": ["nine", "9", "ennead", "ix"]}, {"answer": "jet", "hint": "synonyms for jet", "clues": ["green", "super acid", "super C", "jet plane", "blue jet", "squirt", "spurt", "special K", "reverse lightning", "spirt", "cat valium", "honey oil", "jet-propelled plane", "fountain", "jet"]}, {"answer": "joint", "hint": "synonyms for joint", "clues": ["reefer", "spliff", "join", "articulation", "marijuana cigarette", "roast", "junction", "juncture", "stick"]}, {"answer": "k", "hint": "synonyms for k", "clues": ["green", "kB", "super C", "kilobyte", "thousand", "atomic number 19", "special K", "kibibyte", "cat valium", "thou", "chiliad", "jet", "1000", "super acid", "grand", "one thousand", "kelvin", "yard", "honey oil", "potassium", "k"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["winder", "headstone", "tonality", "keystone", "paint", "cay", "key"]}, {"answer": "killing", "hint": "synonyms for killing", "clues": ["cleanup", "kill", "putting to death", "violent death"]}, {"answer": "kin", "hint": "synonyms for kin", "clues": ["kin group", "kinship group", "kindred", "tribe", "clan", "kin"]}, {"answer": "kindred", "hint": "synonyms for kindred", "clues": ["kin group", "kinship group", "kin", "tribe", "clan", "kindred"]}, {"answer": "l", "hint": "synonyms for l", "clues": ["litre", "cubic decimeter", "lambert", "liter", "50", "fifty", "l"]}, {"answer": "lashing", "hint": "synonyms for lashing", "clues": ["flogging", "tanning", "flagellation", "whipping", "lashing"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["death", "stopping point", "finis", "finale", "shoemaker's last", "end", "final stage", "cobbler's last", "conclusion", "close", "last"]}, {"answer": "lean", "hint": "synonyms for lean", "clues": ["list", "tilt", "inclination", "leaning"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["tendency", "inclination", "lean", "list", "tilt", "proclivity", "propensity"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["story", "layer", "stratum", "spirit level", "horizontal surface", "degree", "grade", "floor", "level"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["lightness", "spark", "twinkle", "light source", "igniter", "sparkle", "brightness level", "luminance", "visible radiation", "lighter", "luminosity", "luminousness", "brightness", "visible light", "light"]}, {"answer": "literal", "hint": "synonyms for literal", "clues": ["literal error", "erratum", "typo", "misprint", "typographical error", "literal"]}, {"answer": "living", "hint": "synonyms for living", "clues": ["support", "keep", "life", "bread and butter", "sustenance", "livelihood", "living"]}, {"answer": "m", "hint": "synonyms for m", "clues": ["1000", "molarity", "thou", "grand", "metre", "one thousand", "thousand", "meter", "mebibyte", "megabyte", "yard", "chiliad", "molar concentration", "m"]}, {"answer": "magic", "hint": "synonyms for magic", "clues": ["legerdemain", "magic trick", "thaumaturgy", "trick", "deception", "illusion", "conjuration", "conjuring trick", "magic"]}, {"answer": "majuscule", "hint": "synonyms for majuscule", "clues": ["upper-case letter", "uppercase", "capital letter", "capital", "majuscule"]}, {"answer": "mass", "hint": "synonyms for mass", "clues": ["good deal", "slew", "mint", "bulk", "heap", "deal", "peck", "quite a little", "wad", "raft", "mess", "spate", "masses", "passel", "great deal", "hatful", "hoi polloi", "volume", "people", "lot", "sight", "mickle", "stack", "plenty", "the great unwashed", "muckle", "mountain", "pile", "batch", "flock", "multitude", "tidy sum", "pot"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["original", "master key", "passe-partout", "master copy", "passkey", "master"]}, {"answer": "mat", "hint": "synonyms for mat", "clues": ["lustrelessness", "matt", "gym mat", "flatness"]}, {"answer": "material", "hint": "synonyms for material", "clues": ["cloth", "textile", "fabric", "stuff", "material"]}, {"answer": "matt", "hint": "synonyms for matt", "clues": ["lustrelessness", "matte", "flatness", "mat"]}, {"answer": "maximum", "hint": "synonyms for maximum", "clues": ["utmost", "uttermost", "upper limit", "level best", "maximum"]}, {"answer": "meaning", "hint": "synonyms for meaning", "clues": ["signification", "significance", "substance", "import", "meaning"]}, {"answer": "medical", "hint": "synonyms for medical", "clues": ["medical checkup", "medical examination", "medical exam", "checkup", "health check", "medical"]}, {"answer": "merging", "hint": "synonyms for merging", "clues": ["conflux", "coming together", "confluence", "meeting", "merging"]}, {"answer": "middle", "hint": "synonyms for middle", "clues": ["heart", "eye", "center", "centre", "middle"]}, {"answer": "military", "hint": "synonyms for military", "clues": ["armed forces", "armed services", "military machine", "war machine", "military"]}, {"answer": "million", "hint": "synonyms for million", "clues": ["one thousand thousand", "zillion", "meg", "1000000", "trillion"]}, {"answer": "mint", "hint": "synonyms for mint", "clues": ["mint candy", "good deal", "slew", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "mint"]}, {"answer": "minute", "hint": "synonyms for minute", "clues": ["moment", "instant", "arcminute", "bit", "minute of arc", "min", "second", "hour", "mo", "minute"]}, {"answer": "model", "hint": "synonyms for model", "clues": ["modeling", "framework", "simulation", "theoretical account", "example", "exemplar", "good example"]}, {"answer": "mortal", "hint": "synonyms for mortal", "clues": ["soul", "individual", "somebody", "someone", "person", "mortal"]}, {"answer": "motley", "hint": "synonyms for motley", "clues": ["potpourri", "smorgasbord", "miscellany", "variety", "mixture", "mixed bag", "assortment", "salmagundi", "motley"]}, {"answer": "murmuring", "hint": "synonyms for murmuring", "clues": ["grumbling", "murmuration", "mussitation", "muttering", "grumble", "murmur"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["reflexion", "reflection", "contemplation", "rumination", "thoughtfulness", "musing"]}, {"answer": "necessary", "hint": "synonyms for necessary", "clues": ["essential", "necessity", "requisite", "requirement", "necessary"]}, {"answer": "net", "hint": "synonyms for net", "clues": ["lucre", "cyberspace", "internet", "meshwork", "mesh", "network", "profit", "earnings", "net income", "net profit", "net"]}, {"answer": "nine", "hint": "synonyms for nine", "clues": ["nine-spot", "9", "club", "ennead", "baseball club", "niner", "ball club"]}, {"answer": "nip_and_tuck", "hint": "synonyms for nip and tuck", "clues": ["lift", "cosmetic surgery", "face lifting", "facelift", "rhytidectomy", "rhytidoplasty", "nip and tuck"]}, {"answer": "nonsense", "hint": "synonyms for nonsense", "clues": ["trumpery", "gimcrack", "falderol", "frill", "folderal", "gimcrackery", "nonsensicality", "meaninglessness", "bunk", "hokum", "nonsense"]}, {"answer": "normal", "hint": "synonyms for normal", "clues": ["rule", "convention", "formula", "pattern", "normal"]}, {"answer": "north", "hint": "synonyms for north", "clues": ["magnetic north", "due north", "compass north", "northward", "north"]}, {"answer": "null", "hint": "synonyms for null", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "zip", "nada", "nix", "nothing", "null"]}, {"answer": "objective", "hint": "synonyms for objective", "clues": ["object lens", "aim", "object", "object glass", "target", "objective"]}, {"answer": "occlusive", "hint": "synonyms for occlusive", "clues": ["plosive speech sound", "plosive consonant", "stop consonant", "plosive", "stop", "occlusive"]}, {"answer": "omnibus", "hint": "synonyms for omnibus", "clues": ["passenger vehicle", "double-decker", "motorcoach", "bus", "charabanc", "autobus", "motorbus", "coach", "jitney", "omnibus"]}, {"answer": "one", "hint": "synonyms for one", "clues": ["ace", "single", "unity", "1", "one"]}, {"answer": "one_thousand", "hint": "synonyms for one thousand", "clues": ["1000", "thou", "yard", "grand", "chiliad", "thousand", "one thousand"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["open air", "outdoors", "surface", "out-of-doors", "clear", "open"]}, {"answer": "opening", "hint": "synonyms for opening", "clues": ["curtain raising", "scuttle", "opening night", "chess opening", "possible action", "gap", "initiative", "first step", "opening move", "hatchway", "possibility", "opening"]}, {"answer": "opposite", "hint": "synonyms for opposite", "clues": ["contrary", "inverse", "opposite word", "antonym", "reverse", "opposite"]}, {"answer": "oral", "hint": "synonyms for oral", "clues": ["viva voce", "viva", "oral examination", "oral exam", "oral"]}, {"answer": "original", "hint": "synonyms for original", "clues": ["master copy", "master", "archetype", "pilot", "original"]}, {"answer": "ottoman", "hint": "synonyms for ottoman", "clues": ["hassock", "pouf", "tuffet", "puff", "footstool", "footrest", "pouffe", "ottoman"]}, {"answer": "overhead", "hint": "synonyms for overhead", "clues": ["command processing overhead", "viewgraph", "smash", "disk overhead", "budget items", "operating expense", "command overhead", "operating cost", "overhead"]}, {"answer": "panegyric", "hint": "synonyms for panegyric", "clues": ["paean", "encomium", "eulogy", "panegyric"]}, {"answer": "paperback", "hint": "synonyms for paperback", "clues": ["paperback book", "soft-cover book", "softback", "softback book", "soft-cover", "paperback"]}, {"answer": "parallel", "hint": "synonyms for parallel", "clues": ["parallel of latitude", "analogue", "line of latitude", "latitude", "parallel"]}, {"answer": "paramilitary", "hint": "synonyms for paramilitary", "clues": ["paramilitary organization", "paramilitary force", "paramilitary unit", "paramilitary"]}, {"answer": "particular", "hint": "synonyms for particular", "clues": ["particular proposition", "specific", "item", "detail", "particular"]}, {"answer": "pass", "hint": "synonyms for pass", "clues": ["base on balls", "go", "toss", "passport", "head", "passing play", "notch", "straits", "pas", "passing game", "mountain pass", "whirl", "bye", "liberty chit", "qualifying", "passing", "offer", "crack", "flip", "walk", "fling", "laissez passer"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["passage", "overtaking", "qualifying", "departure", "going", "pass", "release", "expiration", "passing play", "exit", "loss", "passing game"]}, {"answer": "peanut", "hint": "synonyms for peanut", "clues": ["earthnut", "goober", "monkey nut", "goober pea", "groundnut", "peanut"]}, {"answer": "pedal", "hint": "synonyms for pedal", "clues": ["foot pedal", "foot lever", "treadle", "pedal point", "pedal"]}, {"answer": "pedigree", "hint": "synonyms for pedigree", "clues": ["line", "bloodline", "blood", "lineage", "parentage", "line of descent", "descent", "ancestry", "stock", "origin", "stemma", "pedigree"]}, {"answer": "phantom", "hint": "synonyms for phantom", "clues": ["shadow", "phantasma", "apparition", "fantasm", "phantom"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["field", "plain stitch", "knit", "knit stitch", "champaign", "plain"]}, {"answer": "plane", "hint": "synonyms for plane", "clues": ["airplane", "aeroplane", "carpenter's plane", "planer", "planing machine", "woodworking plane", "sheet"]}, {"answer": "plodding", "hint": "synonyms for plodding", "clues": ["drudgery", "plod", "grind", "donkeywork", "plodding"]}, {"answer": "pokey", "hint": "synonyms for pokey", "clues": ["poky", "clink", "gaol", "jail", "slammer", "jailhouse"]}, {"answer": "poky", "hint": "synonyms for poky", "clues": ["clink", "pokey", "gaol", "jail", "slammer", "jailhouse"]}, {"answer": "pop", "hint": "synonyms for pop", "clues": ["soda water", "popping", "tonic", "pop music", "soda", "soda pop", "pop"]}, {"answer": "port", "hint": "synonyms for port", "clues": ["porthole", "port wine", "interface", "embrasure", "larboard", "port"]}, {"answer": "postmortem", "hint": "synonyms for postmortem", "clues": ["postmortem examination", "post-mortem", "autopsy", "necropsy"]}, {"answer": "potential", "hint": "synonyms for potential", "clues": ["potential difference", "electric potential", "voltage", "potential drop", "potential"]}, {"answer": "potty", "hint": "synonyms for potty", "clues": ["toilet", "can", "thunder mug", "commode", "stool", "chamberpot", "throne", "crapper", "pot", "potty"]}, {"answer": "premium", "hint": "synonyms for premium", "clues": ["agiotage", "exchange premium", "agio", "bounty", "insurance premium", "premium"]}, {"answer": "preventative", "hint": "synonyms for preventative", "clues": ["interference", "prophylactic device", "hitch", "preventive", "encumbrance", "hinderance", "birth control device", "contraceptive", "contraceptive device", "prophylactic"]}, {"answer": "preventive", "hint": "synonyms for preventive", "clues": ["interference", "prophylactic device", "hitch", "encumbrance", "hinderance", "birth control device", "contraceptive", "contraceptive device", "prophylactic", "preventative"]}, {"answer": "prime", "hint": "synonyms for prime", "clues": ["prime quantity", "flush", "bloom", "peak", "blossom", "efflorescence", "prime of life", "flower", "heyday", "prime"]}, {"answer": "privy", "hint": "synonyms for privy", "clues": ["toilet", "can", "earth-closet", "lavatory", "jakes", "john", "outhouse", "bathroom", "lav", "privy"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["trophy", "dirty money", "award", "loot", "pillage", "booty", "plunder", "swag", "prize"]}, {"answer": "prognostic", "hint": "synonyms for prognostic", "clues": ["portent", "presage", "prodigy", "prognostication", "omen", "prognostic"]}, {"answer": "progressive", "hint": "synonyms for progressive", "clues": ["imperfect tense", "continuous tense", "progressive tense", "imperfect", "progressive"]}, {"answer": "proof", "hint": "synonyms for proof", "clues": ["substantiation", "test copy", "trial impression", "validation", "cogent evidence", "proof"]}, {"answer": "prophylactic", "hint": "synonyms for prophylactic", "clues": ["preventive", "rubber", "condom", "safety", "safe", "prophylactic"]}, {"answer": "puff", "hint": "synonyms for puff", "clues": ["hassock", "comfort", "drag", "quilt", "whiff", "ottoman", "pouffe", "powderpuff", "pouf", "pull", "puff of air", "blow", "puff"]}, {"answer": "punk", "hint": "synonyms for punk", "clues": ["tinder", "kindling", "spunk", "punk rock", "touchwood"]}, {"answer": "quality", "hint": "synonyms for quality", "clues": ["timbre", "tone", "timber", "calibre", "lineament", "character", "quality"]}, {"answer": "quaternary", "hint": "synonyms for quaternary", "clues": ["four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome", "quaternary"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["serenity", "repose", "silence", "tranquility", "placidity", "quiet"]}, {"answer": "radical", "hint": "synonyms for radical", "clues": ["stem", "root word", "chemical group", "free radical", "base", "root", "group", "theme", "radical"]}, {"answer": "radio", "hint": "synonyms for radio", "clues": ["wireless", "radiocommunication", "radio set", "tuner", "receiving set", "radio receiver", "radio"]}, {"answer": "raising", "hint": "synonyms for raising", "clues": ["bringing up", "fosterage", "elevation", "upbringing", "breeding", "nurture", "rearing", "fostering", "lift", "raising"]}, {"answer": "rearing", "hint": "synonyms for rearing", "clues": ["bringing up", "fosterage", "upbringing", "breeding", "nurture", "raising", "fostering", "rearing"]}, {"answer": "reflex", "hint": "synonyms for reflex", "clues": ["reflex action", "instinctive reflex", "inborn reflex", "reflex response", "physiological reaction", "unconditioned reflex", "innate reflex", "reflex"]}, {"answer": "regulation", "hint": "synonyms for regulation", "clues": ["rule", "regularisation", "regulating", "ordinance"]}, {"answer": "requisite", "hint": "synonyms for requisite", "clues": ["essential", "necessity", "necessary", "requirement", "requisite"]}, {"answer": "residual", "hint": "synonyms for residual", "clues": ["residue", "residuum", "balance", "remainder", "rest", "residual"]}, {"answer": "resultant", "hint": "synonyms for resultant", "clues": ["termination", "vector sum", "result", "final result", "outcome", "resultant"]}, {"answer": "reverse", "hint": "synonyms for reverse", "clues": ["contrary", "reversal", "verso", "setback", "reverse gear", "opposite", "reversion", "turnabout", "turnaround", "black eye", "blow", "reverse"]}, {"answer": "reverting", "hint": "synonyms for reverting", "clues": ["lapse", "reversion", "relapse", "backsliding", "lapsing", "reverting"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["right field", "rightfulness", "right wing", "right"]}, {"answer": "rising", "hint": "synonyms for rising", "clues": ["ascent", "revolt", "rebellion", "insurrection", "ascension", "rise", "uprising"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["holler", "thunder", "holla", "yowl", "bellowing", "boom", "hollo", "roar"]}, {"answer": "rose", "hint": "synonyms for rose", "clues": ["blush wine", "rose wine", "pink wine", "rosiness", "rose"]}, {"answer": "rotary", "hint": "synonyms for rotary", "clues": ["roundabout", "circle", "traffic circle", "rotary converter", "synchronous converter", "rotary"]}, {"answer": "rough-and-tumble", "hint": "synonyms for rough-and-tumble", "clues": ["hassle", "scuffle", "tussle", "dogfight", "rough-and-tumble"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["stave", "rhythm", "daily round", "round of golf", "rung", "one shot", "cycle", "bout", "turn", "round of drinks", "troll", "circle", "unit of ammunition", "beat", "round"]}, {"answer": "roundabout", "hint": "synonyms for roundabout", "clues": ["carrousel", "merry-go-round", "whirligig", "circle", "traffic circle", "rotary", "roundabout"]}, {"answer": "routine", "hint": "synonyms for routine", "clues": ["act", "subprogram", "subroutine", "bit", "function", "procedure", "modus operandi", "number", "turn", "routine"]}, {"answer": "rubber", "hint": "synonyms for rubber", "clues": ["arctic", "gum elastic", "gumshoe", "galosh", "natural rubber", "golosh", "caoutchouc", "safety", "rubber eraser", "condom", "prophylactic", "pencil eraser", "safe", "synthetic rubber", "rubber"]}, {"answer": "runaway", "hint": "synonyms for runaway", "clues": ["blowout", "walkaway", "shoo-in", "laugher", "romp", "runaway"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["running game", "running play", "track", "run", "running"]}, {"answer": "rush", "hint": "synonyms for rush", "clues": ["haste", "upsurge", "kick", "bang", "flush", "hurry", "charge", "spate", "surge", "thrill", "boot", "rushing"]}, {"answer": "sable", "hint": "synonyms for sable", "clues": ["ebony", "coal black", "pitch black", "sable brush", "jet black", "sable's hair pencil", "soot black", "sable"]}, {"answer": "safe", "hint": "synonyms for safe", "clues": ["condom", "safety", "rubber", "prophylactic", "safe"]}, {"answer": "salt", "hint": "synonyms for salt", "clues": ["table salt", "salinity", "saltiness", "common salt", "salt"]}, {"answer": "sapphire", "hint": "synonyms for sapphire", "clues": ["cerulean", "sky-blue", "azure", "lazuline", "sapphire"]}, {"answer": "saving", "hint": "synonyms for saving", "clues": ["deliverance", "economy", "delivery", "preservation", "rescue", "saving"]}, {"answer": "scrub", "hint": "synonyms for scrub", "clues": ["scrubbing", "chaparral", "bush", "scouring", "scrub"]}, {"answer": "second", "hint": "synonyms for second", "clues": ["moment", "s", "second base", "instant", "bit", "secondment", "minute", "endorsement", "irregular", "arcsecond", "second gear", "sec", "mo", "second"]}, {"answer": "secret", "hint": "synonyms for secret", "clues": ["mystery", "arcanum", "closed book", "enigma", "secret"]}, {"answer": "seeing", "hint": "synonyms for seeing", "clues": ["eyesight", "visual perception", "beholding", "sightedness", "seeing"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["hardening", "curing", "exercise set", "stage set", "solidifying", "solidification", "lot", "readiness", "band", "circle", "bent", "set"]}, {"answer": "seven", "hint": "synonyms for seven", "clues": ["sevener", "7", "heptad", "septenary", "septet", "seven-spot", "seven"]}, {"answer": "shot", "hint": "synonyms for shot", "clues": ["slam", "dead reckoning", "shooting", "snap", "gibe", "guesswork", "dig", "shaft", "guess", "stroke", "blastoff", "scene", "injection", "pellet", "stab", "snapshot", "barb", "jibe", "nip", "shot"]}, {"answer": "side", "hint": "synonyms for side", "clues": ["incline", "position", "side of meat", "face", "slope", "side"]}, {"answer": "sign", "hint": "synonyms for sign", "clues": ["signaling", "star sign", "house", "preindication", "signboard", "mansion", "sign of the zodiac", "augury", "polarity", "mark", "planetary house", "foretoken", "sign"]}, {"answer": "silver", "hint": "synonyms for silver", "clues": ["silver medal", "silver gray", "ash grey", "atomic number 47", "flatware", "silver"]}, {"answer": "single", "hint": "synonyms for single", "clues": ["bingle", "unity", "one", "1", "ace", "single"]}, {"answer": "six", "hint": "synonyms for six", "clues": ["half a dozen", "6", "sestet", "sextet", "sise", "six-spot", "hexad", "sixer", "sextuplet", "six"]}, {"answer": "sky-blue", "hint": "synonyms for sky-blue", "clues": ["cerulean", "azure", "lazuline", "sapphire", "sky-blue"]}, {"answer": "slack", "hint": "synonyms for slack", "clues": ["falloff", "quag", "mire", "drop-off", "quagmire", "slack water", "morass", "slump", "slackness", "falling off", "slack"]}, {"answer": "slick", "hint": "synonyms for slick", "clues": ["slickness", "glossy", "slick magazine", "slipperiness", "slip", "slick"]}, {"answer": "snub", "hint": "synonyms for snub", "clues": ["cut", "rebuff", "repulse", "cold shoulder", "snub"]}, {"answer": "soaring", "hint": "synonyms for soaring", "clues": ["sailing", "sailplaning", "glide", "gliding", "soaring"]}, {"answer": "solvent", "hint": "synonyms for solvent", "clues": ["solution", "resolvent", "dissolver", "answer", "result", "dissolving agent", "dissolvent"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["strait", "auditory sensation", "phone", "speech sound", "audio", "sound"]}, {"answer": "speaking", "hint": "synonyms for speaking", "clues": ["speechmaking", "speech production", "public speaking", "oral presentation", "speaking"]}, {"answer": "speckless", "hint": "synonyms for speckless", "clues": ["spot", "fleck", "patch", "dapple", "maculation", "speckle"]}, {"answer": "spiral", "hint": "synonyms for spiral", "clues": ["volute", "coil", "helix", "whorl", "spiral"]}, {"answer": "split", "hint": "synonyms for split", "clues": ["tear", "rent", "stock split", "schism", "snag", "rip", "split up", "split"]}, {"answer": "spread", "hint": "synonyms for spread", "clues": ["facing pages", "counterpane", "feast", "scatter", "cattle farm", "gap", "banquet", "bed cover", "bedspread", "cattle ranch", "ranch", "spreadhead", "spreading", "paste"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["knee bend", "shit", "diddlysquat", "diddlyshit", "diddly", "doodly-squat", "squatting", "jack", "squat"]}, {"answer": "standard", "hint": "synonyms for standard", "clues": ["touchstone", "measure", "banner", "criterion", "monetary standard", "standard"]}, {"answer": "staple", "hint": "synonyms for staple", "clues": ["staple fiber", "basic", "raw material", "staple"]}, {"answer": "stereo", "hint": "synonyms for stereo", "clues": ["stereoscopic picture", "stereophonic system", "stereoscopic photograph", "stereophony", "stereo system", "stereo"]}, {"answer": "stern", "hint": "synonyms for stern", "clues": ["after part", "tail", "poop", "quarter", "stern"]}, {"answer": "stimulant", "hint": "synonyms for stimulant", "clues": ["stimulant drug", "stimulus", "stimulation", "excitant", "input", "stimulant"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["fund", "blood", "lineage", "parentage", "line of descent", "descent", "ancestry", "store", "strain", "stock certificate", "breed", "inventory", "pedigree", "stemma", "line", "bloodline", "gunstock", "broth", "neckcloth", "origin", "stock"]}, {"answer": "straining", "hint": "synonyms for straining", "clues": ["overrefinement", "distortion", "torture", "strain", "twisting"]}, {"answer": "straw", "hint": "synonyms for straw", "clues": ["shuck", "stubble", "wheat", "chaff", "drinking straw", "stalk", "husk", "pale yellow", "straw"]}, {"answer": "stretch", "hint": "synonyms for stretch", "clues": ["reach", "stretchability", "stint", "stretching", "stretchiness"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["impinging", "contact", "hitting", "hit", "striking"]}, {"answer": "subject", "hint": "synonyms for subject", "clues": ["content", "field of study", "matter", "subject area", "issue", "subject field", "field", "study", "depicted object", "theme", "topic", "discipline", "bailiwick", "subject"]}, {"answer": "submarine", "hint": "synonyms for submarine", "clues": ["hoagie", "hoagy", "torpedo", "submarine sandwich", "hero sandwich", "pigboat", "poor boy", "bomber", "grinder", "wedge", "hero", "zep", "sub", "submarine"]}, {"answer": "sunrise", "hint": "synonyms for sunrise", "clues": ["dawn", "dayspring", "break of day", "first light", "daybreak", "sunup", "morning", "aurora", "cockcrow", "sunrise"]}, {"answer": "surface", "hint": "synonyms for surface", "clues": ["aerofoil", "control surface", "open", "airfoil", "surface"]}, {"answer": "swank", "hint": "synonyms for swank", "clues": ["chic", "chichi", "smartness", "chicness", "last word", "stylishness", "modishness", "swank"]}, {"answer": "sweet", "hint": "synonyms for sweet", "clues": ["dessert", "afters", "sweetness", "sugariness", "confection", "sweet"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["ribbing", "comb-out", "tease", "tantalization", "teasing"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["tattle", "recounting", "apprisal", "relation", "singing", "notification", "telling"]}, {"answer": "ten", "hint": "synonyms for ten", "clues": ["tenner", "10", "decade", "ten-spot", "ten"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["stamp", "bid", "legal tender", "supply ship", "ship's boat", "cutter", "pinnace", "tender"]}, {"answer": "terminal", "hint": "synonyms for terminal", "clues": ["end", "terminus", "depot", "pole", "terminal"]}, {"answer": "ternary", "hint": "synonyms for ternary", "clues": ["tierce", "ternion", "triplet", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "ternary"]}, {"answer": "testimonial", "hint": "synonyms for testimonial", "clues": ["recommendation", "good word", "tribute", "testimony", "testimonial"]}, {"answer": "textbook", "hint": "synonyms for textbook", "clues": ["text", "schoolbook", "school text", "text edition", "textbook"]}, {"answer": "thickening", "hint": "synonyms for thickening", "clues": ["thickener", "inspissation", "node", "knob", "thickening"]}, {"answer": "thieving", "hint": "synonyms for thieving", "clues": ["thievery", "theft", "stealing", "larceny", "thieving"]}, {"answer": "thinking", "hint": "synonyms for thinking", "clues": ["mentation", "intellection", "thought", "thought process", "cerebration", "thinking"]}, {"answer": "third", "hint": "synonyms for third", "clues": ["tierce", "third base", "one-third", "third gear", "third"]}, {"answer": "thousand", "hint": "synonyms for thousand", "clues": ["1000", "thou", "one thousand", "yard", "grand", "chiliad", "thousand"]}, {"answer": "three", "hint": "synonyms for three", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "three"]}, {"answer": "throwaway", "hint": "synonyms for throwaway", "clues": ["bill", "flier", "broadsheet", "circular", "broadside", "flyer", "handbill", "throwaway"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["thump", "thud", "clump", "clunk"]}, {"answer": "token", "hint": "synonyms for token", "clues": ["souvenir", "keepsake", "item", "relic", "token"]}, {"answer": "tonic", "hint": "synonyms for tonic", "clues": ["pop", "keynote", "tonic water", "soda water", "soda", "quinine water", "restorative", "soda pop", "tonic"]}, {"answer": "top", "hint": "synonyms for top", "clues": ["top of the inning", "summit", "peak", "teetotum", "top side", "crown", "whirligig", "crest", "upside", "tip", "cover", "big top", "round top", "upper side", "circus tent", "spinning top", "top"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["top of the inning", "summit", "top", "peak", "teetotum", "top side", "crown", "whirligig", "crest", "upside", "tip", "cover", "big top", "round top", "upper side", "circus tent", "spinning top"]}, {"answer": "total", "hint": "synonyms for total", "clues": ["sum", "aggregate", "totality", "amount", "total"]}, {"answer": "trillion", "hint": "synonyms for trillion", "clues": ["million", "one million million million", "one million million", "1000000000000", "gazillion", "trillion"]}, {"answer": "triple", "hint": "synonyms for triple", "clues": ["three-bagger", "three-base hit", "triad", "triplet", "trio"]}, {"answer": "twilight", "hint": "synonyms for twilight", "clues": ["dusk", "fall", "gloam", "crepuscule", "evenfall", "nightfall", "twilight"]}, {"answer": "twinkling", "hint": "synonyms for twinkling", "clues": ["jiffy", "instant", "flash", "wink", "split second", "heartbeat", "blink of an eye", "trice", "twinkling"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["overrefinement", "distortion", "spin", "straining", "torture", "twist", "whirl", "twirl"]}, {"answer": "umber", "hint": "synonyms for umber", "clues": ["chocolate", "coffee", "burnt umber", "deep brown", "umber"]}, {"answer": "underground", "hint": "synonyms for underground", "clues": ["subway", "metro", "resistance", "subway system", "tube", "underground"]}, {"answer": "understanding", "hint": "synonyms for understanding", "clues": ["discernment", "reason", "sympathy", "intellect", "apprehension", "agreement", "savvy", "understanding"]}, {"answer": "union", "hint": "synonyms for union", "clues": ["join", "coupling", "trades union", "pairing", "sexual union", "uniting", "conglutination", "sum", "brotherhood", "jointure", "conjugation", "unification", "labor union", "mating", "union"]}, {"answer": "upper", "hint": "synonyms for upper", "clues": ["pep pill", "speed", "upper berth", "amphetamine", "upper"]}, {"answer": "uppercase", "hint": "synonyms for uppercase", "clues": ["upper-case letter", "majuscule", "capital letter", "capital", "uppercase"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["derangement", "overturn", "overthrow", "swage", "turnover", "upset"]}, {"answer": "utility", "hint": "synonyms for utility", "clues": ["public-service corporation", "public utility", "utility program", "service program", "public utility company", "usefulness", "utility"]}, {"answer": "v", "hint": "synonyms for v", "clues": ["quint", "quintet", "cinque", "pentad", "volt", "atomic number 23", "fin", "fivesome", "quintuplet", "5", "five", "vanadium", "v"]}, {"answer": "variant", "hint": "synonyms for variant", "clues": ["form", "version", "chance variable", "variation", "strain", "stochastic variable", "random variable", "var.", "discrepancy", "edition", "variate", "variance"]}, {"answer": "vernacular", "hint": "synonyms for vernacular", "clues": ["argot", "cant", "slang", "lingo", "patois", "jargon", "vernacular"]}, {"answer": "vi", "hint": "synonyms for vi", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "sise", "hexad", "sixer", "sextuplet", "vi"]}, {"answer": "vii", "hint": "synonyms for vii", "clues": ["seven", "sevener", "7", "heptad", "septenary", "septet", "vii"]}, {"answer": "viii", "hint": "synonyms for viii", "clues": ["octet", "8", "eighter from Decatur", "octonary", "octad", "ogdoad", "eighter", "eight", "viii"]}, {"answer": "volute", "hint": "synonyms for volute", "clues": ["coil", "spiral", "helix", "whorl", "volute"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["drubbing", "debacle", "trouncing", "slaughter", "thrashing", "whipping", "walloping"]}, {"answer": "waste", "hint": "synonyms for waste", "clues": ["dissipation", "barren", "waste product", "wastefulness", "permissive waste", "waste material", "waste matter", "wasteland", "thriftlessness", "waste"]}, {"answer": "wearable", "hint": "synonyms for wearable", "clues": ["article of clothing", "habiliment", "vesture", "wear", "clothing", "wearable"]}, {"answer": "wearing", "hint": "synonyms for wearing", "clues": ["eating away", "wear", "eroding", "erosion"]}, {"answer": "whacking", "hint": "synonyms for whacking", "clues": ["licking", "trouncing", "beating", "drubbing", "thrashing", "lacing", "whacking"]}, {"answer": "whipping", "hint": "synonyms for whipping", "clues": ["flogging", "lashing", "trouncing", "thrashing", "tanning", "flagellation", "drubbing", "debacle", "beating", "slaughter", "whipstitching", "walloping", "whipping"]}, {"answer": "whispering", "hint": "synonyms for whispering", "clues": ["rustle", "susurration", "whisper", "rustling", "voicelessness"]}, {"answer": "white", "hint": "synonyms for white", "clues": ["egg white", "gabardine", "albumen", "ovalbumin", "whiteness", "flannel", "tweed", "white"]}, {"answer": "windup", "hint": "synonyms for windup", "clues": ["culmination", "closing", "completion", "mop up", "windup"]}, {"answer": "winking", "hint": "synonyms for winking", "clues": ["wink", "blink", "nictitation", "eye blink"]}, {"answer": "wireless", "hint": "synonyms for wireless", "clues": ["radio", "radiocommunication", "radio set", "tuner", "receiving set", "radio receiver", "wireless"]}, {"answer": "world", "hint": "synonyms for world", "clues": ["cosmos", "public", "earthly concern", "existence", "worldly concern", "populace", "earth", "globe", "macrocosm", "creation", "reality", "domain", "universe", "world"]}, {"answer": "x", "hint": "synonyms for x", "clues": ["hug drug", "go", "disco biscuit", "ex", "cristal", "tenner", "decade", "10", "ten", "ecstasy", "x"]}, {"answer": "xiii", "hint": "synonyms for xiii", "clues": ["thirteen", "13", "long dozen", "baker's dozen", "xiii"]}, {"answer": "yielding", "hint": "synonyms for yielding", "clues": ["concession", "giving up", "conceding", "surrender", "yielding"]}, {"answer": "zero", "hint": "synonyms for zero", "clues": ["goose egg", "zippo", "nil", "zilch", "cypher", "0", "aught", "cipher", "null", "nought", "zip", "nada", "nix", "nothing", "zero point", "zero"]}, {"answer": "ad", "hint": "synonyms for ad", "clues": ["advert", "advertising", "advertisement", "ad"]}, {"answer": "as", "hint": "synonyms for as", "clues": ["atomic number 33", "deoxyadenosine monophosphate", "arsenic", "amp", "ampere", "axerophthol", "angstrom unit", "angstrom", "a", "adenine", "vitamin A", "antiophthalmic factor"]}, {"answer": "aside", "hint": "synonyms for aside", "clues": ["parenthesis", "excursus", "digression", "divagation", "aside"]}, {"answer": "bang", "hint": "synonyms for bang", "clues": ["kick", "belt", "smasher", "smash", "clap", "hit", "bash", "flush", "eruption", "blast", "rush", "bam", "strike", "charge", "knock", "thrill", "boot", "bang"]}, {"answer": "bolt", "hint": "synonyms for bolt", "clues": ["dash", "deadbolt", "bolt of lightning", "thunderbolt", "bolt"]}, {"answer": "con", "hint": "synonyms for con", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "confidence trick", "con"]}, {"answer": "course", "hint": "synonyms for course", "clues": ["line", "row", "form", "path", "course of instruction", "course of study", "track", "trend", "class", "course of action", "grade", "course"]}, {"answer": "crossways", "hint": "synonyms for crossways", "clues": ["carrefour", "intersection", "crossroad", "crossway", "crossing"]}, {"answer": "flop", "hint": "synonyms for flop", "clues": ["fizzle", "bust", "floating-point operation", "collapse", "flop"]}, {"answer": "heaps", "hint": "synonyms for heaps", "clues": ["good deal", "lots", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "agglomerate", "wad", "mass", "mess", "cumulus", "passel", "great deal", "piles", "plenty", "mountain", "tidy sum", "dozens", "cumulation", "lashings", "pot", "tons", "gobs", "raft", "mound", "spate", "hatful", "scads", "jalopy", "bus", "sight", "mickle", "stack", "muckle", "batch", "flock", "scores"]}, {"answer": "heart_and_soul", "hint": "synonyms for heart and soul", "clues": ["meat", "essence", "nub", "nitty-gritty", "center", "centre", "heart", "pith", "inwardness", "gist", "sum", "marrow", "kernel", "substance", "core", "heart and soul"]}, {"answer": "hereafter", "hint": "synonyms for hereafter", "clues": ["futurity", "time to come", "future", "afterlife", "hereafter"]}, {"answer": "item", "hint": "synonyms for item", "clues": ["detail", "point", "particular", "token", "item"]}, {"answer": "lots", "hint": "synonyms for lots", "clues": ["good deal", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "band", "wad", "mass", "mess", "set", "passel", "great deal", "piles", "plenty", "mountain", "tidy sum", "dozens", "circle", "caboodle", "draw", "lashings", "pot", "tons", "gobs", "raft", "spate", "hatful", "scads", "lot", "sight", "mickle", "stack", "muckle", "batch", "bunch", "flock", "scores"]}, {"answer": "needs", "hint": "synonyms for needs", "clues": ["motive", "want", "need", "motivation"]}, {"answer": "nothing", "hint": "synonyms for nothing", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing"]}, {"answer": "part", "hint": "synonyms for part", "clues": ["voice", "region", "percentage", "section", "share", "function", "persona", "portion", "component part", "office", "contribution", "character", "division", "theatrical role", "constituent", "piece", "role", "component", "part"]}, {"answer": "plenty", "hint": "synonyms for plenty", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "plentitude", "wad", "mass", "plenteousness", "mess", "raft", "spate", "passel", "great deal", "hatful", "lot", "plentifulness", "sight", "mickle", "stack", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "plenty"]}, {"answer": "smack", "hint": "synonyms for smack", "clues": ["smacking", "big H", "hell dust", "thunder", "flavour", "sapidity", "savor", "scag", "relish", "nose drops", "smooch", "nip", "skag", "slap", "tang"]}, {"answer": "smash", "hint": "synonyms for smash", "clues": ["belt", "smasher", "hit", "bash", "overhead", "crash", "knock", "smash-up", "strike", "bang", "smash"]}, {"answer": "soaking", "hint": "synonyms for soaking", "clues": ["soak", "sousing", "drenching", "souse", "soakage"]}, {"answer": "vis-a-vis", "hint": "synonyms for vis-a-vis", "clues": ["loveseat", "counterpart", "opposite number", "tete-a-tete", "vis-a-vis"]}, {"answer": "viva_voce", "hint": "synonyms for viva voce", "clues": ["oral", "viva", "oral examination", "oral exam", "viva voce"]}, {"answer": "way", "hint": "synonyms for way", "clues": ["style", "means", "direction", "mode", "agency", "path", "fashion", "manner", "way of life", "elbow room", "room", "way"]}, {"answer": "24-hour_interval", "hint": "synonyms for 24-hour interval", "clues": ["mean solar day", "solar day", "twenty-four hours", "twenty-four hour period", "day", "24-hour interval"]}, {"answer": "a", "hint": "synonyms for a", "clues": ["amp", "deoxyadenosine monophosphate", "ampere", "axerophthol", "angstrom unit", "angstrom", "adenine", "vitamin A", "antiophthalmic factor", "a"]}, {"answer": "a-bomb", "hint": "synonyms for a-bomb", "clues": ["fission bomb", "atomic bomb", "plutonium bomb", "a-bomb"]}, {"answer": "abatement", "hint": "synonyms for abatement", "clues": ["suspension", "respite", "reprieve", "hiatus", "abatement"]}, {"answer": "abc", "hint": "synonyms for abc", "clues": ["first principle", "first rudiment", "rudiment", "alphabet", "abc"]}, {"answer": "abc's", "hint": "synonyms for abc's", "clues": ["first principle", "first rudiment", "rudiment", "alphabet", "abc's"]}, {"answer": "abcs", "hint": "synonyms for abcs", "clues": ["rudiment", "alphabet", "first principle", "first rudiment", "abcs"]}, {"answer": "abdominal_delivery", "hint": "synonyms for abdominal delivery", "clues": ["cesarean section", "caesarian", "cesarean delivery", "cesarean", "abdominal delivery"]}, {"answer": "abhorrence", "hint": "synonyms for abhorrence", "clues": ["loathing", "odium", "abomination", "execration", "detestation", "abhorrence"]}, {"answer": "abidance", "hint": "synonyms for abidance", "clues": ["compliance", "residency", "conformity", "conformation", "abidance"]}, {"answer": "abnegation", "hint": "synonyms for abnegation", "clues": ["self-renunciation", "self-denial", "self-abnegation", "denial", "abnegation"]}, {"answer": "abode", "hint": "synonyms for abode", "clues": ["dwelling", "residence", "habitation", "dwelling house", "domicile", "home", "abode"]}, {"answer": "abomination", "hint": "synonyms for abomination", "clues": ["abhorrence", "loathing", "odium", "execration", "detestation", "abomination"]}, {"answer": "about-face", "hint": "synonyms for about-face", "clues": ["volte-face", "reversal", "about turn", "policy change", "about-face"]}, {"answer": "abrasion", "hint": "synonyms for abrasion", "clues": ["attrition", "detrition", "corrasion", "grinding", "abrasion"]}, {"answer": "abruptness", "hint": "synonyms for abruptness", "clues": ["suddenness", "precipitateness", "precipitance", "curtness", "brusqueness", "gruffness", "precipitousness", "steepness", "shortness", "abruptness"]}, {"answer": "absolutism", "hint": "synonyms for absolutism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalism", "totalitarianism", "absolutism"]}, {"answer": "absorption", "hint": "synonyms for absorption", "clues": ["soaking up", "concentration", "preoccupancy", "engrossment", "assimilation", "preoccupation", "immersion", "absorption"]}, {"answer": "abstraction", "hint": "synonyms for abstraction", "clues": ["abstractedness", "abstract entity", "abstract", "generalization", "abstraction"]}, {"answer": "abstruseness", "hint": "synonyms for abstruseness", "clues": ["abstrusity", "obscurity", "reconditeness", "profundity", "obscureness", "profoundness", "abstruseness"]}, {"answer": "abstrusity", "hint": "synonyms for abstrusity", "clues": ["reconditeness", "abstruseness", "profundity", "profoundness", "abstrusity"]}, {"answer": "absurdity", "hint": "synonyms for absurdity", "clues": ["fatuousness", "ridiculousness", "silliness", "absurdness", "fatuity", "absurdity"]}, {"answer": "abuse", "hint": "synonyms for abuse", "clues": ["contumely", "insult", "maltreatment", "vilification", "ill-usage", "ill-treatment", "misuse", "revilement", "abuse"]}, {"answer": "ac", "hint": "synonyms for ac", "clues": ["atomic number 89", "actinium", "alternating current", "alternating electric current", "ac"]}, {"answer": "acaroid_resin", "hint": "synonyms for acaroid resin", "clues": ["accroides", "accroides gum", "accroides resin", "gum accroides"]}, {"answer": "accaroid_resin", "hint": "synonyms for accaroid resin", "clues": ["acaroid resin", "accroides gum", "accroides", "gum accroides"]}, {"answer": "accelerator", "hint": "synonyms for accelerator", "clues": ["accelerator pedal", "atom smasher", "gas", "catalyst", "throttle valve", "gun", "particle accelerator", "gas pedal", "throttle", "accelerator"]}, {"answer": "accelerator_pedal", "hint": "synonyms for accelerator pedal", "clues": ["gun", "gas", "gas pedal", "accelerator", "throttle", "accelerator pedal"]}, {"answer": "accent", "hint": "synonyms for accent", "clues": ["stress", "accent mark", "speech pattern", "emphasis", "dialect", "idiom", "accent"]}, {"answer": "acceptance", "hint": "synonyms for acceptance", "clues": ["banker's acceptance", "toleration", "adoption", "sufferance", "espousal", "acceptation", "credence", "acceptance"]}, {"answer": "acceptation", "hint": "synonyms for acceptation", "clues": ["adoption", "acceptance", "word sense", "espousal", "word meaning", "acceptation"]}, {"answer": "acceptor_rna", "hint": "synonyms for acceptor rna", "clues": ["transfer RNA", "soluble RNA", "tRNA", "acceptor RNA"]}, {"answer": "access", "hint": "synonyms for access", "clues": ["admission", "access code", "memory access", "accession", "approach", "admittance", "entree", "access"]}, {"answer": "accessibility", "hint": "synonyms for accessibility", "clues": ["handiness", "approachability", "availability", "availableness", "accessibility"]}, {"answer": "accession", "hint": "synonyms for accession", "clues": ["admission", "access", "assenting", "addition", "admittance", "rise to power", "entree", "accession"]}, {"answer": "acclaim", "hint": "synonyms for acclaim", "clues": ["acclamation", "plaudit", "eclat", "acclaim"]}, {"answer": "acclamation", "hint": "synonyms for acclamation", "clues": ["acclaim", "plaudits", "eclat", "acclamation"]}, {"answer": "acclivity", "hint": "synonyms for acclivity", "clues": ["upgrade", "ascent", "rise", "climb", "acclivity"]}, {"answer": "accolade", "hint": "synonyms for accolade", "clues": ["laurels", "award", "honor", "accolade"]}, {"answer": "accompaniment", "hint": "synonyms for accompaniment", "clues": ["support", "attendant", "complement", "concomitant", "backup", "co-occurrence", "escort", "musical accompaniment", "accompaniment"]}, {"answer": "accomplishment", "hint": "synonyms for accomplishment", "clues": ["achievement", "acquirement", "acquisition", "skill", "attainment", "accomplishment"]}, {"answer": "accord", "hint": "synonyms for accord", "clues": ["pact", "conformity", "treaty", "accordance", "accord"]}, {"answer": "account", "hint": "synonyms for account", "clues": ["story", "invoice", "news report", "score", "chronicle", "report", "bill", "history", "write up", "explanation", "accounting", "account statement"]}, {"answer": "account_book", "hint": "synonyms for account book", "clues": ["book of account", "leger", "book", "account book"]}, {"answer": "accounting", "hint": "synonyms for accounting", "clues": ["account", "account statement", "method of accounting", "accountancy", "accounting system"]}, {"answer": "accroides", "hint": "synonyms for accroides", "clues": ["acaroid resin", "accroides gum", "gum accroides", "accroides"]}, {"answer": "accroides_gum", "hint": "synonyms for accroides gum", "clues": ["acaroid resin", "accroides", "gum accroides", "accroides gum"]}, {"answer": "accroides_resin", "hint": "synonyms for accroides resin", "clues": ["acaroid resin", "accroides gum", "accroides", "gum accroides"]}, {"answer": "acculturation", "hint": "synonyms for acculturation", "clues": ["socialization", "culture", "assimilation", "enculturation", "acculturation"]}, {"answer": "accumulation", "hint": "synonyms for accumulation", "clues": ["assemblage", "accruement", "aggregation", "collection", "accretion", "accrual", "accumulation"]}, {"answer": "acerbity", "hint": "synonyms for acerbity", "clues": ["tartness", "bitterness", "jaundice", "acrimony", "thorniness", "acerbity"]}, {"answer": "acetyl", "hint": "synonyms for acetyl", "clues": ["ethanoyl radical", "acetyl radical", "acetyl group", "ethanoyl group", "acetyl"]}, {"answer": "acetyl_group", "hint": "synonyms for acetyl group", "clues": ["acetyl", "ethanoyl group", "acetyl radical", "ethanoyl radical", "acetyl group"]}, {"answer": "acetyl_radical", "hint": "synonyms for acetyl radical", "clues": ["acetyl", "ethanoyl group", "acetyl group", "ethanoyl radical", "acetyl radical"]}, {"answer": "achromasia", "hint": "synonyms for achromasia", "clues": ["lividness", "paleness", "wanness", "pallor", "lividity", "luridness", "pallidness", "achromasia"]}, {"answer": "ack-ack", "hint": "synonyms for ack-ack", "clues": ["flak", "ack-ack gun", "antiaircraft gun", "pom-pom", "ack-ack"]}, {"answer": "ack-ack_gun", "hint": "synonyms for ack-ack gun", "clues": ["flak", "ack-ack", "antiaircraft gun", "pom-pom", "ack-ack gun"]}, {"answer": "acknowledgment", "hint": "synonyms for acknowledgment", "clues": ["citation", "acknowledgement", "reference", "quotation", "mention", "cite", "credit"]}, {"answer": "acquired_reflex", "hint": "synonyms for acquired reflex", "clues": ["conditional reaction", "conditional response", "conditional reflex", "acquired reflex"]}, {"answer": "acquirement", "hint": "synonyms for acquirement", "clues": ["accomplishment", "acquisition", "skill", "attainment", "acquirement"]}, {"answer": "acquisition", "hint": "synonyms for acquisition", "clues": ["learning", "acquirement", "accomplishment", "skill", "attainment", "acquisition"]}, {"answer": "acres", "hint": "synonyms for acres", "clues": ["landed estate", "demesne", "land", "estate", "acre"]}, {"answer": "acrimony", "hint": "synonyms for acrimony", "clues": ["tartness", "bitterness", "jaundice", "acerbity", "thorniness", "acrimony"]}, {"answer": "acrobatics", "hint": "synonyms for acrobatics", "clues": ["aerobatics", "tumbling", "stunting", "stunt flying"]}, {"answer": "acrylic", "hint": "synonyms for acrylic", "clues": ["acrylic paint", "acrylate resin", "acrylic resin", "acrylic fiber", "acrylic"]}, {"answer": "act", "hint": "synonyms for act", "clues": ["human activity", "deed", "bit", "human action", "enactment", "number", "turn", "routine", "act"]}, {"answer": "act_of_god", "hint": "synonyms for act of god", "clues": ["unavoidable casualty", "inevitable accident", "act of God", "force majeure", "vis major"]}, {"answer": "actinotherapy", "hint": "synonyms for actinotherapy", "clues": ["radiotherapy", "radiation therapy", "irradiation", "actinotherapy"]}, {"answer": "action", "hint": "synonyms for action", "clues": ["natural action", "legal action", "action at law", "military action", "action mechanism", "natural process", "activity", "action"]}, {"answer": "activity", "hint": "synonyms for activity", "clues": ["natural action", "bodily process", "activeness", "action", "natural process", "bodily function", "activity"]}, {"answer": "acts", "hint": "synonyms for acts", "clues": ["human activity", "act", "deed", "bit", "human action", "enactment", "number", "turn", "routine"]}, {"answer": "acuity", "hint": "synonyms for acuity", "clues": ["visual acuity", "acuteness", "sharp-sightedness", "keenness", "sharpness", "acuity"]}, {"answer": "adam", "hint": "synonyms for adam", "clues": ["cristal", "hug drug", "go", "disco biscuit", "ecstasy", "adam"]}, {"answer": "adams", "hint": "synonyms for adams", "clues": ["cristal", "hug drug", "go", "disco biscuit", "ecstasy", "adams"]}, {"answer": "add-in", "hint": "synonyms for add-in", "clues": ["card", "circuit card", "plug-in", "board", "add-in"]}, {"answer": "add-on", "hint": "synonyms for add-on", "clues": ["addition", "appurtenance", "improver", "accessory", "supplement", "add-on"]}, {"answer": "addition", "hint": "synonyms for addition", "clues": ["increase", "gain", "improver", "summation", "accession", "add-on", "plus", "addition"]}, {"answer": "address", "hint": "synonyms for address", "clues": ["reference", "destination", "savoir-faire", "speech", "computer address", "name and address", "address"]}, {"answer": "adeptness", "hint": "synonyms for adeptness", "clues": ["adroitness", "facility", "quickness", "deftness", "adeptness"]}, {"answer": "ader_wax", "hint": "synonyms for ader wax", "clues": ["mineral wax", "earth wax", "ozocerite", "ader wax"]}, {"answer": "adermin", "hint": "synonyms for adermin", "clues": ["pyridoxamine", "pyridoxal", "vitamin B6", "adermin"]}, {"answer": "adherence", "hint": "synonyms for adherence", "clues": ["adhesiveness", "bond", "attachment", "adhesion", "adherence"]}, {"answer": "adhesion", "hint": "synonyms for adhesion", "clues": ["adherence", "adhesiveness", "bond", "attachment", "adhesion"]}, {"answer": "adieu", "hint": "synonyms for adieu", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "bye-bye", "adios", "so long", "sayonara", "au revoir", "adieu"]}, {"answer": "adios", "hint": "synonyms for adios", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "so long", "sayonara", "au revoir", "adios"]}, {"answer": "adjustment", "hint": "synonyms for adjustment", "clues": ["alteration", "accommodation", "registration", "adaptation", "fitting", "allowance", "modification", "readjustment"]}, {"answer": "administration", "hint": "synonyms for administration", "clues": ["organization", "establishment", "governing body", "governing", "presidential term", "governance", "disposal", "brass", "judicature", "giving medication", "government", "presidency", "government activity", "administration"]}, {"answer": "admiralty_mile", "hint": "synonyms for admiralty mile", "clues": ["mi", "geographical mile", "naut mi", "nautical mile", "mile", "admiralty mile"]}, {"answer": "admiration", "hint": "synonyms for admiration", "clues": ["esteem", "wonder", "appreciation", "wonderment", "admiration"]}, {"answer": "admission", "hint": "synonyms for admission", "clues": ["access", "entrance money", "accession", "entrance fee", "price of admission", "admission charge", "entree", "admittance", "admission fee", "admission price", "admission"]}, {"answer": "admission_charge", "hint": "synonyms for admission charge", "clues": ["admission", "entrance money", "admission fee", "entrance fee", "admission price", "price of admission", "admission charge"]}, {"answer": "admission_fee", "hint": "synonyms for admission fee", "clues": ["admission", "entrance money", "entrance fee", "admission price", "price of admission", "admission charge", "admission fee"]}, {"answer": "admission_price", "hint": "synonyms for admission price", "clues": ["admission", "entrance money", "admission fee", "entrance fee", "price of admission", "admission charge", "admission price"]}, {"answer": "admittance", "hint": "synonyms for admittance", "clues": ["admission", "access", "accession", "entree", "admittance"]}, {"answer": "admixture", "hint": "synonyms for admixture", "clues": ["intermixture", "commixture", "mixture", "mix"]}, {"answer": "admonition", "hint": "synonyms for admonition", "clues": ["monition", "word of advice", "warning", "admonishment"]}, {"answer": "ado", "hint": "synonyms for ado", "clues": ["flurry", "stir", "bustle", "hustle", "fuss", "ado"]}, {"answer": "adoption", "hint": "synonyms for adoption", "clues": ["acceptance", "espousal", "acceptation", "borrowing", "adoption"]}, {"answer": "adoration", "hint": "synonyms for adoration", "clues": ["worship", "latria", "idolisation", "adoration"]}, {"answer": "adps", "hint": "synonyms for adps", "clues": ["adenosine diphosphate", "computing system", "automatic data processing", "computer system", "adps"]}, {"answer": "adroitness", "hint": "synonyms for adroitness", "clues": ["facility", "adeptness", "quickness", "deftness", "adroitness"]}, {"answer": "advancement", "hint": "synonyms for advancement", "clues": ["promotion", "procession", "onward motion", "progress", "furtherance", "advance", "advancement"]}, {"answer": "advantageousness", "hint": "synonyms for advantageousness", "clues": ["profitableness", "positiveness", "positivity", "favourableness", "advantageousness"]}, {"answer": "advert", "hint": "synonyms for advert", "clues": ["ad", "advertising", "advertisement", "advert"]}, {"answer": "advertisement", "hint": "synonyms for advertisement", "clues": ["ad", "advert", "advertising", "advertizement"]}, {"answer": "advertising", "hint": "synonyms for advertising", "clues": ["ad", "publicizing", "advert", "advertisement", "advertizing"]}, {"answer": "advertizement", "hint": "synonyms for advertizement", "clues": ["ad", "advert", "advertising", "advertisement"]}, {"answer": "advertizing", "hint": "synonyms for advertizing", "clues": ["ad", "advert", "advertising", "advertisement"]}, {"answer": "aegir", "hint": "synonyms for aegir", "clues": ["bore", "tidal bore", "eager", "eagre", "aegir"]}, {"answer": "aegis", "hint": "synonyms for aegis", "clues": ["auspices", "egis", "protection", "breastplate"]}, {"answer": "aerial_tramway", "hint": "synonyms for aerial tramway", "clues": ["cable tramway", "ropeway", "tramway", "tram", "aerial tramway"]}, {"answer": "aerosol", "hint": "synonyms for aerosol", "clues": ["spray can", "aerosol bomb", "aerosol container", "aerosol can", "aerosol"]}, {"answer": "aerosol_bomb", "hint": "synonyms for aerosol bomb", "clues": ["fuel-air bomb", "volume-detonation bomb", "aerosol container", "aerosol", "vacuum bomb", "spray can", "thermobaric bomb", "aerosol can", "aerosol bomb"]}, {"answer": "aerosol_can", "hint": "synonyms for aerosol can", "clues": ["aerosol", "aerosol bomb", "spray can", "aerosol container", "aerosol can"]}, {"answer": "aerosol_container", "hint": "synonyms for aerosol container", "clues": ["aerosol", "aerosol bomb", "spray can", "aerosol can", "aerosol container"]}, {"answer": "aesthesis", "hint": "synonyms for aesthesis", "clues": ["sense experience", "sense datum", "sense impression", "sensation", "esthesis"]}, {"answer": "affability", "hint": "synonyms for affability", "clues": ["affableness", "amiableness", "bonhomie", "geniality", "amiability", "affability"]}, {"answer": "affableness", "hint": "synonyms for affableness", "clues": ["amiableness", "affability", "bonhomie", "geniality", "amiability", "affableness"]}, {"answer": "affair", "hint": "synonyms for affair", "clues": ["social occasion", "social function", "thing", "matter", "function", "occasion", "affair"]}, {"answer": "affairs", "hint": "synonyms for affairs", "clues": ["personal matters", "function", "social occasion", "social function", "thing", "personal business", "matter", "affair", "occasion"]}, {"answer": "affection", "hint": "synonyms for affection", "clues": ["heart", "fondness", "tenderness", "warmness", "affectionateness", "philia", "warmheartedness", "affection"]}, {"answer": "affectionateness", "hint": "synonyms for affectionateness", "clues": ["fondness", "affection", "philia", "warmheartedness", "heart", "lovingness", "warmth", "warmness", "tenderness", "affectionateness"]}, {"answer": "affirmation", "hint": "synonyms for affirmation", "clues": ["statement", "avowal", "assertion", "avouchment", "affirmation"]}, {"answer": "affray", "hint": "synonyms for affray", "clues": ["fracas", "fray", "altercation", "disturbance", "ruffle", "affray"]}, {"answer": "african_tea", "hint": "synonyms for african tea", "clues": ["qat", "cat", "kat", "african tea"]}, {"answer": "after_part", "hint": "synonyms for after part", "clues": ["tail", "stern", "poop", "quarter", "after part"]}, {"answer": "age", "hint": "synonyms for age", "clues": ["geezerhood", "years", "eld", "long time", "historic period", "old age", "age"]}, {"answer": "agency", "hint": "synonyms for agency", "clues": ["way", "federal agency", "office", "means", "bureau", "government agency", "authority", "agency"]}, {"answer": "agenda", "hint": "synonyms for agenda", "clues": ["schedule", "order of business", "agendum", "docket", "agenda"]}, {"answer": "aggravation", "hint": "synonyms for aggravation", "clues": ["exasperation", "exacerbation", "provocation", "irritation", "aggravation"]}, {"answer": "aggregation", "hint": "synonyms for aggregation", "clues": ["assemblage", "assembling", "collecting", "accumulation", "aggregation"]}, {"answer": "agility", "hint": "synonyms for agility", "clues": ["legerity", "lightness", "lightsomeness", "nimbleness", "agility"]}, {"answer": "agitation", "hint": "synonyms for agitation", "clues": ["hullabaloo", "turmoil", "excitement", "upheaval", "agitation"]}, {"answer": "agreement", "hint": "synonyms for agreement", "clues": ["correspondence", "concord", "arrangement", "understanding", "agreement"]}, {"answer": "agriculture", "hint": "synonyms for agriculture", "clues": ["agribusiness", "farming", "husbandry", "factory farm", "agriculture"]}, {"answer": "aid", "hint": "synonyms for aid", "clues": ["assist", "attention", "help", "financial aid", "economic aid", "care", "assistance", "tending", "aid"]}, {"answer": "aids", "hint": "synonyms for aids", "clues": ["tending", "aid", "assist", "attention", "help", "financial aid", "economic aid", "care", "assistance"]}, {"answer": "aim", "hint": "synonyms for aim", "clues": ["heading", "bearing", "purpose", "object", "intent", "intention", "design", "objective", "target", "aim"]}, {"answer": "air", "hint": "synonyms for air", "clues": ["line", "melodic phrase", "airwave", "melodic line", "aura", "atmosphere", "strain", "tune", "melody", "breeze", "aviation", "gentle wind", "zephyr", "air travel", "air"]}, {"answer": "air-sleeve", "hint": "synonyms for air-sleeve", "clues": ["wind cone", "wind sleeve", "wind sock", "drogue", "sock", "air sock", "air-sleeve"]}, {"answer": "air_castle", "hint": "synonyms for air castle", "clues": ["castle in the air", "revery", "oneirism", "daydreaming", "castle in Spain", "reverie", "air castle"]}, {"answer": "air_mile", "hint": "synonyms for air mile", "clues": ["mi", "international nautical mile", "knot", "naut mi", "nautical mile", "mile", "air mile"]}, {"answer": "air_sock", "hint": "synonyms for air sock", "clues": ["wind cone", "wind sleeve", "wind sock", "drogue", "sock", "air-sleeve", "air sock"]}, {"answer": "airing", "hint": "synonyms for airing", "clues": ["dissemination", "ventilation", "public exposure", "spreading", "airing"]}, {"answer": "airs", "hint": "synonyms for airs", "clues": ["line", "melodic phrase", "airwave", "melodic line", "aura", "atmosphere", "strain", "tune", "melody", "breeze", "aviation", "gentle wind", "pose", "zephyr", "air", "air travel"]}, {"answer": "airstream", "hint": "synonyms for airstream", "clues": ["slipstream", "wash", "backwash", "race", "airstream"]}, {"answer": "airway", "hint": "synonyms for airway", "clues": ["airline business", "skyway", "airline", "air passage", "air duct", "flight path", "air lane", "airway"]}, {"answer": "alarm", "hint": "synonyms for alarm", "clues": ["consternation", "warning device", "dismay", "alarm system", "alarm clock", "warning signal", "alarum", "alert"]}, {"answer": "alcohol", "hint": "synonyms for alcohol", "clues": ["alcoholic beverage", "inebriant", "alcoholic drink", "intoxicant", "alcohol"]}, {"answer": "alcoholic_beverage", "hint": "synonyms for alcoholic beverage", "clues": ["alcoholic drink", "inebriant", "alcohol", "intoxicant", "alcoholic beverage"]}, {"answer": "alcoholic_drink", "hint": "synonyms for alcoholic drink", "clues": ["alcoholic beverage", "inebriant", "alcohol", "intoxicant", "alcoholic drink"]}, {"answer": "alertness", "hint": "synonyms for alertness", "clues": ["vigilance", "sharp-sightedness", "on the qui vive", "wakefulness", "watchfulness", "alertness"]}, {"answer": "alignment", "hint": "synonyms for alignment", "clues": ["coalition", "alliance", "conjunction", "alinement"]}, {"answer": "aliment", "hint": "synonyms for aliment", "clues": ["nutriment", "nourishment", "nutrition", "victuals", "alimentation", "sustenance", "aliment"]}, {"answer": "alimentation", "hint": "synonyms for alimentation", "clues": ["nutriment", "nourishment", "nutrition", "victuals", "feeding", "sustenance", "aliment", "alimentation"]}, {"answer": "alkane", "hint": "synonyms for alkane", "clues": ["paraffin series", "paraffin", "methane series", "alkane series", "alkane"]}, {"answer": "alkane_series", "hint": "synonyms for alkane series", "clues": ["alkane", "paraffin series", "paraffin", "methane series", "alkane series"]}, {"answer": "allegiance", "hint": "synonyms for allegiance", "clues": ["fealty", "loyalty", "commitment", "dedication", "allegiance"]}, {"answer": "allegory", "hint": "synonyms for allegory", "clues": ["fable", "apologue", "emblem", "parable", "allegory"]}, {"answer": "alleviation", "hint": "synonyms for alleviation", "clues": ["easement", "relief", "easing", "assuagement", "alleviation"]}, {"answer": "alley", "hint": "synonyms for alley", "clues": ["bowling alley", "skittle alley", "alleyway", "back street", "alley"]}, {"answer": "alliance", "hint": "synonyms for alliance", "clues": ["bond", "coalition", "alignment", "confederation", "alliance"]}, {"answer": "allocation", "hint": "synonyms for allocation", "clues": ["assignation", "parcelling", "storage allocation", "apportioning", "allotment", "apportionment", "allocation"]}, {"answer": "allotment", "hint": "synonyms for allotment", "clues": ["assignation", "parceling", "apportioning", "apportionment", "allocation", "allotment"]}, {"answer": "allowance", "hint": "synonyms for allowance", "clues": ["leeway", "valuation reserve", "valuation account", "adjustment", "tolerance", "margin", "allowance account", "allowance"]}, {"answer": "alluvion", "hint": "synonyms for alluvion", "clues": ["alluvial sediment", "alluvium", "flood", "deluge", "inundation", "alluvial deposit", "alluvion"]}, {"answer": "aloofness", "hint": "synonyms for aloofness", "clues": ["distance", "remoteness", "standoffishness", "withdrawnness", "aloofness"]}, {"answer": "alteration", "hint": "synonyms for alteration", "clues": ["adjustment", "revision", "change", "modification", "alteration"]}, {"answer": "alum", "hint": "synonyms for alum", "clues": ["potash alum", "potassium alum", "ammonium alum", "alum"]}, {"answer": "amativeness", "hint": "synonyms for amativeness", "clues": ["amorousness", "erotism", "sexiness", "amativeness"]}, {"answer": "ambit", "hint": "synonyms for ambit", "clues": ["reach", "orbit", "range", "scope", "compass", "ambit"]}, {"answer": "amble", "hint": "synonyms for amble", "clues": ["saunter", "stroll", "promenade", "perambulation", "amble"]}, {"answer": "ambo", "hint": "synonyms for ambo", "clues": ["rostrum", "podium", "soapbox", "pulpit", "stump", "dais", "ambo"]}, {"answer": "amends", "hint": "synonyms for amends", "clues": ["redress", "restitution", "damages", "indemnity", "reparation", "indemnification", "amends"]}, {"answer": "amenities", "hint": "synonyms for amenities", "clues": ["agreeableness", "conveniences", "creature comforts", "amenity", "comforts", "amenities"]}, {"answer": "amiability", "hint": "synonyms for amiability", "clues": ["amiableness", "affability", "good humor", "affableness", "bonhomie", "geniality", "good temper", "amiability"]}, {"answer": "amiableness", "hint": "synonyms for amiableness", "clues": ["affableness", "affability", "bonhomie", "geniality", "amiability", "amiableness"]}, {"answer": "amorousness", "hint": "synonyms for amorousness", "clues": ["erotism", "amativeness", "sexiness", "enamoredness", "amorousness"]}, {"answer": "amount", "hint": "synonyms for amount", "clues": ["amount of money", "total", "sum", "sum of money", "measure", "quantity", "amount"]}, {"answer": "ampule", "hint": "synonyms for ampule", "clues": ["phial", "ampoule", "vial", "ampul"]}, {"answer": "amytal", "hint": "synonyms for amytal", "clues": ["blue", "blue devil", "blue angel", "amobarbital sodium", "amytal"]}, {"answer": "anamnesis", "hint": "synonyms for anamnesis", "clues": ["medical history", "recollection", "medical record", "remembrance", "anamnesis"]}, {"answer": "ancestry", "hint": "synonyms for ancestry", "clues": ["line", "filiation", "bloodline", "blood", "lineage", "parentage", "line of descent", "descent", "stock", "pedigree", "derivation", "origin", "stemma", "ancestry"]}, {"answer": "anchor", "hint": "synonyms for anchor", "clues": ["linchpin", "keystone", "backbone", "mainstay", "ground tackle", "anchor"]}, {"answer": "anchor_ring", "hint": "synonyms for anchor ring", "clues": ["annulus", "halo", "doughnut", "ring", "anchor ring"]}, {"answer": "aneurin", "hint": "synonyms for aneurin", "clues": ["thiamine", "antiberiberi factor", "vitamin B1", "aneurin"]}, {"answer": "anger", "hint": "synonyms for anger", "clues": ["choler", "wrath", "ira", "ire", "anger"]}, {"answer": "angle_of_dip", "hint": "synonyms for angle of dip", "clues": ["magnetic dip", "dip", "magnetic inclination", "inclination", "angle of dip"]}, {"answer": "animate_being", "hint": "synonyms for animate being", "clues": ["animal", "fauna", "creature", "brute", "beast", "animate being"]}, {"answer": "animation", "hint": "synonyms for animation", "clues": ["liveliness", "vivification", "vitality", "invigoration", "spiritedness", "brio", "animation"]}, {"answer": "announcement", "hint": "synonyms for announcement", "clues": ["annunciation", "proclamation", "declaration", "promulgation", "announcement"]}, {"answer": "annoyance", "hint": "synonyms for annoyance", "clues": ["irritation", "infliction", "botheration", "pain", "bother", "annoying", "pain in the ass", "pain in the neck", "chafe", "vexation", "annoyance"]}, {"answer": "annulet", "hint": "synonyms for annulet", "clues": ["bandelette", "square and rabbet", "roundel", "bandlet", "annulet"]}, {"answer": "annulus", "hint": "synonyms for annulus", "clues": ["anchor ring", "halo", "doughnut", "ring", "annulus"]}, {"answer": "anovulant", "hint": "synonyms for anovulant", "clues": ["pill", "contraceptive pill", "oral contraceptive", "birth control pill", "anovulatory drug", "anovulant"]}, {"answer": "anovulatory_drug", "hint": "synonyms for anovulatory drug", "clues": ["pill", "contraceptive pill", "oral contraceptive", "birth control pill", "anovulant", "anovulatory drug"]}, {"answer": "answer", "hint": "synonyms for answer", "clues": ["response", "solution", "result", "reply", "solvent", "answer"]}, {"answer": "antecedence", "hint": "synonyms for antecedence", "clues": ["priority", "precedency", "antecedency", "anteriority"]}, {"answer": "antecedency", "hint": "synonyms for antecedency", "clues": ["priority", "precedency", "anteriority", "antecedence"]}, {"answer": "antechamber", "hint": "synonyms for antechamber", "clues": ["anteroom", "vestibule", "hall", "entrance hall", "foyer", "lobby", "antechamber"]}, {"answer": "anteriority", "hint": "synonyms for anteriority", "clues": ["priority", "precedency", "antecedency", "anteriority"]}, {"answer": "anteroom", "hint": "synonyms for anteroom", "clues": ["vestibule", "hall", "antechamber", "entrance hall", "foyer", "lobby", "anteroom"]}, {"answer": "anthesis", "hint": "synonyms for anthesis", "clues": ["inflorescence", "blossoming", "flowering", "efflorescence", "anthesis"]}, {"answer": "antiaircraft_gun", "hint": "synonyms for antiaircraft gun", "clues": ["flak", "ack-ack", "ack-ack gun", "antiaircraft", "pom-pom"]}, {"answer": "antianxiety_agent", "hint": "synonyms for antianxiety agent", "clues": ["tranquilizer", "ataractic", "ataractic drug", "ataractic agent", "antianxiety agent"]}, {"answer": "antianxiety_drug", "hint": "synonyms for antianxiety drug", "clues": ["minor tranquilliser", "anxiolytic", "anxiolytic drug", "antianxiety drug"]}, {"answer": "antiberiberi_factor", "hint": "synonyms for antiberiberi factor", "clues": ["thiamine", "vitamin B1", "aneurin", "antiberiberi factor"]}, {"answer": "antifungal_agent", "hint": "synonyms for antifungal agent", "clues": ["fungicide", "antimycotic agent", "antifungal", "antimycotic", "antifungal agent"]}, {"answer": "antimycotic", "hint": "synonyms for antimycotic", "clues": ["fungicide", "antifungal agent", "antimycotic agent", "antifungal", "antimycotic"]}, {"answer": "antimycotic_agent", "hint": "synonyms for antimycotic agent", "clues": ["fungicide", "antifungal agent", "antifungal", "antimycotic", "antimycotic agent"]}, {"answer": "antipsychotic", "hint": "synonyms for antipsychotic", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic"]}, {"answer": "antipsychotic_agent", "hint": "synonyms for antipsychotic agent", "clues": ["neuroleptic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic", "antipsychotic agent"]}, {"answer": "antipsychotic_drug", "hint": "synonyms for antipsychotic drug", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic", "antipsychotic drug"]}, {"answer": "anxiolytic_drug", "hint": "synonyms for anxiolytic drug", "clues": ["antianxiety drug", "minor tranquilliser", "anxiolytic", "anxiolytic drug"]}, {"answer": "apex", "hint": "synonyms for apex", "clues": ["apex of the sun's way", "acme", "vertex", "peak", "solar apex", "apex"]}, {"answer": "aplomb", "hint": "synonyms for aplomb", "clues": ["assuredness", "poise", "cool", "sang-froid", "aplomb"]}, {"answer": "apothecary's_shop", "hint": "synonyms for apothecary's shop", "clues": ["chemist's shop", "chemist's", "drugstore", "pharmacy", "apothecary's shop"]}, {"answer": "apparel_industry", "hint": "synonyms for apparel industry", "clues": ["fashion industry", "fashion business", "garment industry", "rag trade", "apparel industry"]}, {"answer": "apparent_horizon", "hint": "synonyms for apparent horizon", "clues": ["horizon", "visible horizon", "sensible horizon", "skyline", "apparent horizon"]}, {"answer": "apparition", "hint": "synonyms for apparition", "clues": ["shadow", "phantasma", "phantom", "fantasm", "apparition"]}, {"answer": "appeal", "hint": "synonyms for appeal", "clues": ["solicitation", "prayer", "appealingness", "charm", "entreaty", "ingathering", "collection", "appeal"]}, {"answer": "appearance", "hint": "synonyms for appearance", "clues": ["appearing", "visual aspect", "coming into court", "show", "appearance"]}, {"answer": "applesauce", "hint": "synonyms for applesauce", "clues": ["trumpery", "apple sauce", "folderol", "trash", "codswallop", "wish-wash", "rubbish", "tripe"]}, {"answer": "appliance", "hint": "synonyms for appliance", "clues": ["convenience", "gismo", "gizmo", "gadget", "contrivance", "contraption", "widget", "appliance"]}, {"answer": "application", "hint": "synonyms for application", "clues": ["coating", "diligence", "applications programme", "lotion", "covering", "practical application", "application"]}, {"answer": "appointment", "hint": "synonyms for appointment", "clues": ["designation", "date", "fitting", "naming", "engagement", "assignment", "appointment"]}, {"answer": "apportioning", "hint": "synonyms for apportioning", "clues": ["assignation", "parcelling", "allotment", "apportionment", "allocation", "apportioning"]}, {"answer": "apportionment", "hint": "synonyms for apportionment", "clues": ["assignation", "parceling", "apportioning", "allotment", "allocation", "apportionment"]}, {"answer": "appreciation", "hint": "synonyms for appreciation", "clues": ["discernment", "admiration", "perceptiveness", "grasp", "hold", "taste", "appreciation"]}, {"answer": "apprehension", "hint": "synonyms for apprehension", "clues": ["collar", "understanding", "dread", "discernment", "apprehensiveness", "arrest", "taking into custody", "catch", "pinch", "savvy", "misgiving", "apprehension"]}, {"answer": "approach", "hint": "synonyms for approach", "clues": ["access", "feeler", "glide path", "coming", "attack", "approach path", "plan of attack", "overture", "advance", "approach shot", "approaching", "glide slope"]}, {"answer": "approximation", "hint": "synonyms for approximation", "clues": ["estimate", "bringing close together", "estimation", "idea", "approximation"]}, {"answer": "appurtenance", "hint": "synonyms for appurtenance", "clues": ["paraphernalia", "add-on", "gear", "accessory", "supplement", "appurtenance"]}, {"answer": "aqua", "hint": "synonyms for aqua", "clues": ["cobalt blue", "peacock blue", "turquoise", "greenish blue", "aquamarine", "aqua"]}, {"answer": "aquamarine", "hint": "synonyms for aquamarine", "clues": ["aqua", "cobalt blue", "peacock blue", "turquoise", "greenish blue", "aquamarine"]}, {"answer": "arabian_tea", "hint": "synonyms for arabian tea", "clues": ["qat", "cat", "kat", "arabian tea"]}, {"answer": "arbalest", "hint": "synonyms for arbalest", "clues": ["onager", "trebuchet", "mangonel", "catapult", "bricole", "ballista", "arbalist"]}, {"answer": "arbalist", "hint": "synonyms for arbalist", "clues": ["onager", "arbalest", "trebuchet", "mangonel", "catapult", "bricole", "ballista"]}, {"answer": "arbitrariness", "hint": "synonyms for arbitrariness", "clues": ["whimsicality", "whimsy", "capriciousness", "flightiness", "arbitrariness"]}, {"answer": "arbor", "hint": "synonyms for arbor", "clues": ["mandrel", "pergola", "arbour", "spindle", "bower"]}, {"answer": "arc", "hint": "synonyms for arc", "clues": ["spark", "bow", "electric discharge", "discharge", "electric arc", "arc"]}, {"answer": "archness", "hint": "synonyms for archness", "clues": ["sauciness", "perkiness", "pertness", "impertinence", "archness"]}, {"answer": "ardor", "hint": "synonyms for ardor", "clues": ["elan", "fervor", "fervency", "fire", "zeal", "fervidness", "ardour"]}, {"answer": "ardour", "hint": "synonyms for ardour", "clues": ["elan", "fervor", "fervency", "fire", "zeal", "fervidness", "ardor"]}, {"answer": "arena", "hint": "synonyms for arena", "clues": ["stadium", "scene of action", "bowl", "sports stadium", "arena"]}, {"answer": "argot", "hint": "synonyms for argot", "clues": ["vernacular", "cant", "slang", "lingo", "patois", "jargon", "argot"]}, {"answer": "arguing", "hint": "synonyms for arguing", "clues": ["contention", "disceptation", "argument", "tilt", "contestation", "controversy", "arguing"]}, {"answer": "argument", "hint": "synonyms for argument", "clues": ["parameter", "line", "contention", "disceptation", "statement", "contestation", "controversy", "debate", "argumentation", "logical argument", "tilt", "arguing", "line of reasoning", "literary argument", "argument"]}, {"answer": "argumentation", "hint": "synonyms for argumentation", "clues": ["debate", "line", "logical argument", "argument", "line of reasoning", "argumentation"]}, {"answer": "arm", "hint": "synonyms for arm", "clues": ["sleeve", "weapon system", "branch", "weapon", "limb", "subdivision", "arm"]}, {"answer": "armed_forces", "hint": "synonyms for armed forces", "clues": ["armed services", "military", "war machine", "military machine", "armed forces"]}, {"answer": "armed_services", "hint": "synonyms for armed services", "clues": ["armed forces", "military service", "service", "military", "military machine", "armed service", "war machine"]}, {"answer": "arms", "hint": "synonyms for arms", "clues": ["weapon system", "weaponry", "blazon", "arm", "coat of arms", "implements of war", "limb", "subdivision", "sleeve", "branch", "munition"]}, {"answer": "aroma", "hint": "synonyms for aroma", "clues": ["smell", "fragrance", "perfume", "scent", "odor", "olfactory property", "aroma"]}, {"answer": "arrangement", "hint": "synonyms for arrangement", "clues": ["agreement", "musical arrangement", "transcription", "organization", "system", "arranging", "placement", "arrangement"]}, {"answer": "arrest", "hint": "synonyms for arrest", "clues": ["collar", "taking into custody", "apprehension", "catch", "pinch", "arrest"]}, {"answer": "arrivederci", "hint": "synonyms for arrivederci", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir", "arrivederci"]}, {"answer": "arrogance", "hint": "synonyms for arrogance", "clues": ["hauteur", "high-handedness", "haughtiness", "lordliness", "arrogance"]}, {"answer": "arsenic", "hint": "synonyms for arsenic", "clues": ["atomic number 33", "arsenous anhydride", "arsenic trioxide", "white arsenic", "arsenous oxide", "ratsbane", "arsenic"]}, {"answer": "arsenic_trioxide", "hint": "synonyms for arsenic trioxide", "clues": ["arsenic", "arsenous anhydride", "white arsenic", "arsenous oxide", "ratsbane", "arsenic trioxide"]}, {"answer": "arsenous_anhydride", "hint": "synonyms for arsenous anhydride", "clues": ["arsenic", "arsenic trioxide", "white arsenic", "arsenous oxide", "ratsbane", "arsenous anhydride"]}, {"answer": "arsenous_oxide", "hint": "synonyms for arsenous oxide", "clues": ["arsenic", "arsenous anhydride", "arsenic trioxide", "white arsenic", "ratsbane", "arsenous oxide"]}, {"answer": "art", "hint": "synonyms for art", "clues": ["graphics", "prowess", "artistry", "nontextual matter", "artistic creation", "artwork", "fine art", "artistic production", "art"]}, {"answer": "article_of_clothing", "hint": "synonyms for article of clothing", "clues": ["habiliment", "vesture", "wear", "clothing", "wearable", "article of clothing"]}, {"answer": "articulated_lorry", "hint": "synonyms for articulated lorry", "clues": ["semi", "trucking rig", "trailer truck", "tractor trailer", "rig", "articulated lorry"]}, {"answer": "articulation", "hint": "synonyms for articulation", "clues": ["voice", "join", "junction", "juncture", "articulation"]}, {"answer": "artillery", "hint": "synonyms for artillery", "clues": ["heavy weapon", "artillery unit", "gun", "ordnance", "weapon", "artillery"]}, {"answer": "arts", "hint": "synonyms for arts", "clues": ["graphics", "art", "liberal arts", "nontextual matter", "artwork", "artistry", "fine art", "humanistic discipline", "prowess", "artistic creation", "humanities", "artistic production"]}, {"answer": "asa_dulcis", "hint": "synonyms for asa dulcis", "clues": ["gum benzoin", "benjamin", "gum benjamin", "benzoin", "asa dulcis"]}, {"answer": "ascension", "hint": "synonyms for ascension", "clues": ["ascent", "ascending", "rising", "rise", "ascension"]}, {"answer": "ascent", "hint": "synonyms for ascent", "clues": ["upgrade", "ascension", "rise", "climb", "ascending", "rising", "acclivity", "ascent"]}, {"answer": "ash-bin", "hint": "synonyms for ash-bin", "clues": ["ashcan", "garbage can", "trash barrel", "trash bin", "ashbin", "dustbin", "trash can", "wastebin"]}, {"answer": "ash_bin", "hint": "synonyms for ash bin", "clues": ["ashcan", "garbage can", "ash-bin", "trash barrel", "trash bin", "dustbin", "trash can", "wastebin"]}, {"answer": "ashbin", "hint": "synonyms for ashbin", "clues": ["ashcan", "ash-bin", "garbage can", "trash barrel", "trash bin", "dustbin", "trash can", "wastebin"]}, {"answer": "ashcan", "hint": "synonyms for ashcan", "clues": ["ash-bin", "garbage can", "trash barrel", "trash bin", "dustbin", "trash can", "wastebin", "ashcan"]}, {"answer": "aspect", "hint": "synonyms for aspect", "clues": ["prospect", "panorama", "face", "look", "scene", "vista", "expression", "view", "facial expression", "aspect"]}, {"answer": "asperity", "hint": "synonyms for asperity", "clues": ["hardship", "rigor", "grimness", "sharpness", "rigourousness", "severeness", "severity", "asperity"]}, {"answer": "aspersion", "hint": "synonyms for aspersion", "clues": ["denigration", "slander", "sprinkling", "defamation", "slur", "calumny", "aspersion"]}, {"answer": "aspiration", "hint": "synonyms for aspiration", "clues": ["breathing in", "intake", "dream", "ambition", "inspiration", "inhalation"]}, {"answer": "ass", "hint": "synonyms for ass", "clues": ["atomic number 33", "roll in the hay", "arsenic", "nookie", "screw", "fuck", "shtup", "piece of ass", "piece of tail", "shag", "nooky", "ass"]}, {"answer": "assemblage", "hint": "synonyms for assemblage", "clues": ["assembly", "aggregation", "hookup", "gathering", "collection", "accumulation", "assemblage"]}, {"answer": "assembly", "hint": "synonyms for assembly", "clues": ["assemblage", "meeting place", "fabrication", "forum", "gathering", "assembly"]}, {"answer": "assertion", "hint": "synonyms for assertion", "clues": ["averment", "asseveration", "statement", "affirmation"]}, {"answer": "assignation", "hint": "synonyms for assignation", "clues": ["tryst", "parceling", "apportioning", "allotment", "apportionment", "allocation", "assignation"]}, {"answer": "assignment", "hint": "synonyms for assignment", "clues": ["designation", "grant", "duty assignment", "naming", "assigning", "appointment", "assignment"]}, {"answer": "assortment", "hint": "synonyms for assortment", "clues": ["potpourri", "classification", "smorgasbord", "miscellany", "compartmentalisation", "variety", "mixture", "categorization", "mixed bag", "motley", "salmagundi", "assortment"]}, {"answer": "assumption", "hint": "synonyms for assumption", "clues": ["laying claim", "effrontery", "premiss", "presumption", "supposition", "supposal", "presumptuousness", "assumption"]}, {"answer": "assurance", "hint": "synonyms for assurance", "clues": ["self-assurance", "confidence", "sureness", "self-confidence", "pledge", "authority", "assurance"]}, {"answer": "assuredness", "hint": "synonyms for assuredness", "clues": ["aplomb", "poise", "cool", "sang-froid", "assuredness"]}, {"answer": "astuteness", "hint": "synonyms for astuteness", "clues": ["depth", "deepness", "perspicaciousness", "shrewdness", "profundity", "perspicacity", "profoundness", "astuteness"]}, {"answer": "asylum", "hint": "synonyms for asylum", "clues": ["mental institution", "refuge", "insane asylum", "sanctuary", "mental home", "mental hospital", "institution", "psychiatric hospital", "asylum"]}, {"answer": "asynchrony", "hint": "synonyms for asynchrony", "clues": ["desynchronisation", "desynchronizing", "asynchronism", "asynchrony"]}, {"answer": "ataractic_agent", "hint": "synonyms for ataractic agent", "clues": ["tranquilizer", "antianxiety agent", "ataractic", "ataractic drug", "ataractic agent"]}, {"answer": "ataractic_drug", "hint": "synonyms for ataractic drug", "clues": ["tranquilizer", "antianxiety agent", "ataractic", "ataractic agent", "ataractic drug"]}, {"answer": "ataraxis", "hint": "synonyms for ataraxis", "clues": ["peace of mind", "peace", "repose", "heartsease", "serenity", "peacefulness", "ataraxis"]}, {"answer": "atherodyde", "hint": "synonyms for atherodyde", "clues": ["flying drainpipe", "athodyd", "ramjet engine", "ramjet", "atherodyde"]}, {"answer": "athletic_supporter", "hint": "synonyms for athletic supporter", "clues": ["jockstrap", "supporter", "suspensor", "jock", "athletic supporter"]}, {"answer": "athodyd", "hint": "synonyms for athodyd", "clues": ["ramjet", "flying drainpipe", "ramjet engine", "atherodyde", "athodyd"]}, {"answer": "atm", "hint": "synonyms for atm", "clues": ["atmosphere", "automatic teller", "standard pressure", "asynchronous transfer mode", "cash dispenser", "automated teller machine", "standard atmosphere", "cash machine", "atm"]}, {"answer": "atmosphere", "hint": "synonyms for atmosphere", "clues": ["atm", "aura", "standard atmosphere", "air", "standard pressure", "atmosphere"]}, {"answer": "atom", "hint": "synonyms for atom", "clues": ["speck", "corpuscle", "mote", "molecule", "particle", "atom"]}, {"answer": "atomiser", "hint": "synonyms for atomiser", "clues": ["spray", "nebulizer", "atomizer", "sprayer"]}, {"answer": "atomizer", "hint": "synonyms for atomizer", "clues": ["spray", "nebulizer", "atomiser", "sprayer"]}, {"answer": "atrociousness", "hint": "synonyms for atrociousness", "clues": ["heinousness", "atrocity", "barbarousness", "barbarity", "atrociousness"]}, {"answer": "atrocity", "hint": "synonyms for atrocity", "clues": ["heinousness", "inhumanity", "barbarity", "barbarousness", "atrociousness", "atrocity"]}, {"answer": "attachment", "hint": "synonyms for attachment", "clues": ["adherence", "bond", "affixation", "fond regard", "fastening", "adhesion", "attachment"]}, {"answer": "attack", "hint": "synonyms for attack", "clues": ["flak", "onrush", "approach", "tone-beginning", "blast", "fire", "onset", "plan of attack", "onslaught", "attempt", "attack"]}, {"answer": "attainment", "hint": "synonyms for attainment", "clues": ["accomplishment", "acquirement", "acquisition", "skill", "attainment"]}, {"answer": "attempt", "hint": "synonyms for attempt", "clues": ["endeavour", "effort", "try", "attack", "attempt"]}, {"answer": "attention", "hint": "synonyms for attention", "clues": ["aid", "care", "tending", "attention"]}, {"answer": "attracter", "hint": "synonyms for attracter", "clues": ["attractive feature", "attraction", "magnet", "attractor"]}, {"answer": "attraction", "hint": "synonyms for attraction", "clues": ["attractiveness", "attractive feature", "attractive force", "magnet", "attracter", "attraction"]}, {"answer": "attractive_feature", "hint": "synonyms for attractive feature", "clues": ["attracter", "magnet", "attraction", "attractive feature"]}, {"answer": "attractor", "hint": "synonyms for attractor", "clues": ["attractive feature", "attraction", "magnet", "attracter"]}, {"answer": "attrition", "hint": "synonyms for attrition", "clues": ["contrition", "abrasion", "contriteness", "detrition", "corrasion", "grinding", "attrition"]}, {"answer": "au_revoir", "hint": "synonyms for au revoir", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir"]}, {"answer": "auberge", "hint": "synonyms for auberge", "clues": ["hostel", "lodge", "inn", "auberge"]}, {"answer": "audio", "hint": "synonyms for audio", "clues": ["audio recording", "sound recording", "sound", "audio frequency", "audio"]}, {"answer": "audition", "hint": "synonyms for audition", "clues": ["tryout", "hearing", "auditory modality", "auditory sense", "sense of hearing", "audition"]}, {"answer": "auditory_modality", "hint": "synonyms for auditory modality", "clues": ["hearing", "auditory sense", "sense of hearing", "audition", "auditory modality"]}, {"answer": "auditory_sense", "hint": "synonyms for auditory sense", "clues": ["auditory modality", "hearing", "sense of hearing", "audition", "auditory sense"]}, {"answer": "auf_wiedersehen", "hint": "synonyms for auf wiedersehen", "clues": ["bye", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir", "auf wiedersehen"]}, {"answer": "auger", "hint": "synonyms for auger", "clues": ["gimlet", "plumber's snake", "screw auger", "wimble", "auger"]}, {"answer": "aught", "hint": "synonyms for aught", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "cipher", "null", "zip", "naught", "nada", "nix", "nothing"]}, {"answer": "aura", "hint": "synonyms for aura", "clues": ["nimbus", "aureole", "glory", "halo", "atmosphere", "air", "gloriole", "aura"]}, {"answer": "aureole", "hint": "synonyms for aureole", "clues": ["corona", "nimbus", "aura", "glory", "halo", "gloriole", "aureole"]}, {"answer": "aurora", "hint": "synonyms for aurora", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "daybreak", "sunup", "morning", "cockcrow", "aurora"]}, {"answer": "authorisation", "hint": "synonyms for authorisation", "clues": ["mandate", "say-so", "authorization", "potency", "empowerment", "authority", "dominance", "sanction"]}, {"answer": "authoritarianism", "hint": "synonyms for authoritarianism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "totalitarianism", "absolutism", "authoritarianism"]}, {"answer": "authorities", "hint": "synonyms for authorities", "clues": ["potency", "say-so", "federal agency", "agency", "bureau", "authority", "office", "assurance", "confidence", "government agency", "government", "self-confidence", "sanction", "authorisation", "self-assurance", "dominance", "sureness", "regime", "authorities"]}, {"answer": "authority", "hint": "synonyms for authority", "clues": ["potency", "authorization", "say-so", "self-assurance", "federal agency", "agency", "bureau", "dominance", "office", "assurance", "confidence", "sureness", "government agency", "self-confidence", "sanction", "authority"]}, {"answer": "authorization", "hint": "synonyms for authorization", "clues": ["mandate", "potency", "say-so", "empowerment", "authority", "dominance", "sanction", "authorisation"]}, {"answer": "authorship", "hint": "synonyms for authorship", "clues": ["penning", "writing", "composition", "paternity", "authorship"]}, {"answer": "auto", "hint": "synonyms for auto", "clues": ["machine", "car", "automobile", "motorcar", "auto"]}, {"answer": "auto_maker", "hint": "synonyms for auto maker", "clues": ["car maker", "auto manufacturer", "automaker", "car manufacturer"]}, {"answer": "auto_manufacturer", "hint": "synonyms for auto manufacturer", "clues": ["auto maker", "car maker", "car manufacturer", "auto manufacturer"]}, {"answer": "autobus", "hint": "synonyms for autobus", "clues": ["passenger vehicle", "double-decker", "motorcoach", "bus", "charabanc", "omnibus", "motorbus", "coach", "jitney", "autobus"]}, {"answer": "automaker", "hint": "synonyms for automaker", "clues": ["auto maker", "car maker", "auto manufacturer", "car manufacturer"]}, {"answer": "automated_teller", "hint": "synonyms for automated teller", "clues": ["cash dispenser", "automated teller machine", "automatic teller", "cash machine"]}, {"answer": "automated_teller_machine", "hint": "synonyms for automated teller machine", "clues": ["cash dispenser", "automatic teller machine", "automatic teller", "cash machine"]}, {"answer": "automatic_teller", "hint": "synonyms for automatic teller", "clues": ["cash dispenser", "automated teller machine", "automated teller", "cash machine"]}, {"answer": "automatic_teller_machine", "hint": "synonyms for automatic teller machine", "clues": ["cash dispenser", "automated teller machine", "automatic teller", "cash machine"]}, {"answer": "automobile", "hint": "synonyms for automobile", "clues": ["auto", "car", "motorcar", "machine", "automobile"]}, {"answer": "automobile_horn", "hint": "synonyms for automobile horn", "clues": ["hooter", "horn", "motor horn", "car horn", "automobile horn"]}, {"answer": "autopsy", "hint": "synonyms for autopsy", "clues": ["postmortem examination", "postmortem", "necropsy", "autopsy"]}, {"answer": "avarice", "hint": "synonyms for avarice", "clues": ["cupidity", "rapacity", "greed", "covetousness", "avaritia", "avariciousness", "avarice"]}, {"answer": "avaritia", "hint": "synonyms for avaritia", "clues": ["greed", "covetousness", "avarice", "rapacity", "avaritia"]}, {"answer": "aviation", "hint": "synonyms for aviation", "clues": ["air travel", "airmanship", "air", "air power", "aviation"]}, {"answer": "avocation", "hint": "synonyms for avocation", "clues": ["hobby", "pursuit", "spare-time activity", "by-line", "sideline", "avocation"]}, {"answer": "avoirdupois", "hint": "synonyms for avoirdupois", "clues": ["fatness", "fat", "avoirdupois weight", "blubber", "avoirdupois"]}, {"answer": "award", "hint": "synonyms for award", "clues": ["accolade", "awarding", "honor", "laurels", "prize"]}, {"answer": "awareness", "hint": "synonyms for awareness", "clues": ["cognisance", "sentience", "consciousness", "knowingness", "awareness"]}, {"answer": "awkwardness", "hint": "synonyms for awkwardness", "clues": ["maladroitness", "ineptitude", "clumsiness", "unwieldiness", "nuisance value", "slowness", "cumbersomeness", "ineptness", "stiffness", "gracelessness", "awkwardness"]}, {"answer": "b", "hint": "synonyms for b", "clues": ["vitamin B", "vitamin B complex", "boron", "barn", "atomic number 5", "b"]}, {"answer": "baby_buggy", "hint": "synonyms for baby buggy", "clues": ["pusher", "stroller", "carriage", "baby carriage", "pram", "perambulator", "go-cart", "pushchair", "baby buggy"]}, {"answer": "baby_carriage", "hint": "synonyms for baby carriage", "clues": ["pusher", "stroller", "carriage", "pram", "perambulator", "go-cart", "pushchair", "baby buggy", "baby carriage"]}, {"answer": "baby_grand", "hint": "synonyms for baby grand", "clues": ["baby grand piano", "parlour grand piano", "parlor grand", "baby grand"]}, {"answer": "baby_grand_piano", "hint": "synonyms for baby grand piano", "clues": ["parlour grand piano", "parlor grand", "baby grand", "baby grand piano"]}, {"answer": "bacchanalia", "hint": "synonyms for bacchanalia", "clues": ["orgy", "drunken revelry", "riot", "saturnalia", "debauchery", "debauch", "bacchanal"]}, {"answer": "back_breaker", "hint": "synonyms for back breaker", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "superman", "acid", "battery-acid", "back breaker"]}, {"answer": "back_pack", "hint": "synonyms for back pack", "clues": ["rucksack", "knapsack", "backpack", "haversack", "packsack"]}, {"answer": "back_talk", "hint": "synonyms for back talk", "clues": ["mouth", "sass", "backtalk", "lip"]}, {"answer": "backbone", "hint": "synonyms for backbone", "clues": ["keystone", "mainstay", "moxie", "anchor", "grit", "guts", "gumption", "linchpin", "sand", "spine", "backbone"]}, {"answer": "background", "hint": "synonyms for background", "clues": ["ground", "background knowledge", "desktop", "backdrop", "backcloth", "screen background", "background signal", "background"]}, {"answer": "backing", "hint": "synonyms for backing", "clues": ["support", "mount", "funding", "financial backing", "patronage", "financial support", "backup", "championship", "backing"]}, {"answer": "backpack", "hint": "synonyms for backpack", "clues": ["knapsack", "back pack", "rucksack", "haversack", "packsack"]}, {"answer": "backsheesh", "hint": "synonyms for backsheesh", "clues": ["bakshis", "gratuity", "tip", "pourboire", "baksheesh"]}, {"answer": "backsliding", "hint": "synonyms for backsliding", "clues": ["lapse", "reversion", "reverting", "relapse", "lapsing", "backsliding"]}, {"answer": "backtalk", "hint": "synonyms for backtalk", "clues": ["mouth", "sass", "back talk", "lip"]}, {"answer": "backup", "hint": "synonyms for backup", "clues": ["computer backup", "support", "backing", "championship", "patronage", "musical accompaniment", "accompaniment", "backup"]}, {"answer": "backwardness", "hint": "synonyms for backwardness", "clues": ["mental retardation", "slowness", "subnormality", "retardation", "backwardness"]}, {"answer": "backwash", "hint": "synonyms for backwash", "clues": ["slipstream", "airstream", "wake", "race", "aftermath", "wash", "backwash"]}, {"answer": "badness", "hint": "synonyms for badness", "clues": ["severeness", "mischievousness", "severity", "naughtiness", "bad", "badness"]}, {"answer": "bafflement", "hint": "synonyms for bafflement", "clues": ["mystification", "befuddlement", "puzzlement", "bemusement", "bewilderment", "obfuscation", "bafflement"]}, {"answer": "bag", "hint": "synonyms for bag", "clues": ["cup of tea", "dish", "grip", "handbag", "travelling bag", "base", "purse", "suitcase", "pocketbook", "bagful", "bag"]}, {"answer": "bagatelle", "hint": "synonyms for bagatelle", "clues": ["fluff", "frivolity", "frippery", "bar billiards", "bagatelle"]}, {"answer": "bagnio", "hint": "synonyms for bagnio", "clues": ["house of ill repute", "house of prostitution", "brothel", "cathouse", "bawdyhouse", "whorehouse", "bordello", "sporting house", "bathhouse", "bagnio"]}, {"answer": "bailiwick", "hint": "synonyms for bailiwick", "clues": ["subject field", "field", "study", "field of study", "discipline", "subject area", "subject", "bailiwick"]}, {"answer": "bait", "hint": "synonyms for bait", "clues": ["come-on", "lure", "hook", "decoy", "sweetener", "bait"]}, {"answer": "baking_soda", "hint": "synonyms for baking soda", "clues": ["sodium hydrogen carbonate", "sodium bicarbonate", "bicarbonate of soda", "saleratus", "baking soda"]}, {"answer": "baksheesh", "hint": "synonyms for baksheesh", "clues": ["bakshis", "gratuity", "tip", "pourboire", "backsheesh"]}, {"answer": "bakshis", "hint": "synonyms for bakshis", "clues": ["gratuity", "tip", "bakshish", "pourboire", "backsheesh"]}, {"answer": "bakshish", "hint": "synonyms for bakshish", "clues": ["bakshis", "gratuity", "tip", "pourboire", "backsheesh"]}, {"answer": "balance", "hint": "synonyms for balance", "clues": ["correspondence", "proportion", "residuum", "residual", "proportionality", "equalizer", "symmetry", "equilibrium", "residue", "counterpoise", "counterbalance", "counterweight", "symmetricalness", "remainder", "equipoise", "balance wheel", "rest", "balance"]}, {"answer": "balk", "hint": "synonyms for balk", "clues": ["check", "deterrent", "handicap", "baulk", "hindrance", "impediment", "rafter"]}, {"answer": "ball", "hint": "synonyms for ball", "clues": ["formal", "clod", "orb", "clump", "glob", "chunk", "musket ball", "ball"]}, {"answer": "ballista", "hint": "synonyms for ballista", "clues": ["onager", "arbalest", "trebuchet", "catapult", "bricole", "mangonel", "ballista"]}, {"answer": "balm", "hint": "synonyms for balm", "clues": ["unguent", "ointment", "unction", "salve", "balm"]}, {"answer": "baloney", "hint": "synonyms for baloney", "clues": ["tarradiddle", "bosh", "drool", "boloney", "humbug", "tommyrot", "tosh", "twaddle", "bilgewater"]}, {"answer": "balusters", "hint": "synonyms for balusters", "clues": ["bannister", "baluster", "handrail", "balustrade"]}, {"answer": "balustrade", "hint": "synonyms for balustrade", "clues": ["bannister", "balusters", "handrail", "balustrade"]}, {"answer": "bam", "hint": "synonyms for bam", "clues": ["clap", "eruption", "blast", "bang", "bam"]}, {"answer": "ban", "hint": "synonyms for ban", "clues": ["forbiddance", "prohibition", "forbidding", "banning", "proscription", "ban"]}, {"answer": "banality", "hint": "synonyms for banality", "clues": ["cliche", "bromide", "platitude", "commonplace", "banality"]}, {"answer": "band", "hint": "synonyms for band", "clues": ["dance band", "ring", "stripe", "set", "lot", "dance orchestra", "striation", "stria", "circle", "banding"]}, {"answer": "bandelet", "hint": "synonyms for bandelet", "clues": ["square and rabbet", "bandlet", "annulet", "bandelette"]}, {"answer": "bandelette", "hint": "synonyms for bandelette", "clues": ["bandlet", "annulet", "square and rabbet", "bandelette"]}, {"answer": "banding", "hint": "synonyms for banding", "clues": ["stria", "stripe", "band", "striation"]}, {"answer": "bangle", "hint": "synonyms for bangle", "clues": ["trinket", "bracelet", "novelty", "gaud", "fallal", "gewgaw", "bauble", "bangle"]}, {"answer": "banister", "hint": "synonyms for banister", "clues": ["balustrade", "bannister", "balusters", "handrail"]}, {"answer": "bank", "hint": "synonyms for bank", "clues": ["banking concern", "camber", "bank building", "money box", "depository financial institution", "banking company", "savings bank", "cant", "coin bank", "bank"]}, {"answer": "bank_bill", "hint": "synonyms for bank bill", "clues": ["bill", "banker's bill", "bank note", "note", "greenback", "government note", "bank bill"]}, {"answer": "bank_line", "hint": "synonyms for bank line", "clues": ["line", "personal line of credit", "line of credit", "personal credit line", "credit line", "bank line"]}, {"answer": "bank_note", "hint": "synonyms for bank note", "clues": ["bill", "banker's bill", "note", "greenback", "bank bill", "banknote", "government note"]}, {"answer": "banker's_bill", "hint": "synonyms for banker's bill", "clues": ["bill", "bank note", "note", "greenback", "bank bill", "government note", "banker's bill"]}, {"answer": "banknote", "hint": "synonyms for banknote", "clues": ["bill", "banker's bill", "bank note", "note", "greenback", "bank bill", "government note"]}, {"answer": "banks", "hint": "synonyms for banks", "clues": ["banking concern", "camber", "bank building", "depository financial institution", "banking company", "money box", "savings bank", "bank", "cant", "coin bank"]}, {"answer": "bannister", "hint": "synonyms for bannister", "clues": ["balustrade", "balusters", "banister", "handrail"]}, {"answer": "bar", "hint": "synonyms for bar", "clues": ["legal community", "cake", "stripe", "barroom", "prevention", "taproom", "ginmill", "saloon", "measure", "streak", "legal profession", "bar"]}, {"answer": "barb", "hint": "synonyms for barb", "clues": ["slam", "shot", "gibe", "jibe", "dig", "shaft", "barb"]}, {"answer": "barbarity", "hint": "synonyms for barbarity", "clues": ["heinousness", "atrocity", "savagery", "brutality", "barbarism", "barbarousness", "atrociousness", "barbarity"]}, {"answer": "barbarousness", "hint": "synonyms for barbarousness", "clues": ["heinousness", "atrocity", "barbarity", "atrociousness", "barbarousness"]}, {"answer": "barbital", "hint": "synonyms for barbital", "clues": ["barbitone", "diethylbarbituric acid", "diethylmalonylurea", "veronal", "barbital"]}, {"answer": "barbitone", "hint": "synonyms for barbitone", "clues": ["diethylbarbituric acid", "veronal", "diethylmalonylurea", "barbital", "barbitone"]}, {"answer": "baring", "hint": "synonyms for baring", "clues": ["uncovering", "denudation", "stripping", "husking", "baring"]}, {"answer": "barium_sulphate", "hint": "synonyms for barium sulphate", "clues": ["blanc fixe", "barite", "heavy spar", "barium sulfate", "barytes"]}, {"answer": "barrage", "hint": "synonyms for barrage", "clues": ["bombardment", "outpouring", "onslaught", "barrage fire", "shelling", "battery", "barrage"]}, {"answer": "barrage_fire", "hint": "synonyms for barrage fire", "clues": ["bombardment", "barrage", "shelling", "battery", "barrage fire"]}, {"answer": "barrel", "hint": "synonyms for barrel", "clues": ["bbl", "cask", "barrelful", "gun barrel", "drum", "barrel"]}, {"answer": "barrel_organ", "hint": "synonyms for barrel organ", "clues": ["grind organ", "street organ", "hurdy-gurdy", "hand organ", "barrel organ"]}, {"answer": "barrels", "hint": "synonyms for barrels", "clues": ["bbl", "cask", "barrelful", "drum", "barrel", "gun barrel"]}, {"answer": "barroom", "hint": "synonyms for barroom", "clues": ["ginmill", "saloon", "bar", "taproom", "barroom"]}, {"answer": "barrow", "hint": "synonyms for barrow", "clues": ["wheelbarrow", "garden cart", "burial mound", "tumulus", "lawn cart", "barrowful", "grave mound", "barrow"]}, {"answer": "bars", "hint": "synonyms for bars", "clues": ["legal community", "cake", "streak", "stripe", "bar", "barroom", "prevention", "taproom", "ginmill", "saloon", "measure", "parallel bars", "legal profession"]}, {"answer": "baseness", "hint": "synonyms for baseness", "clues": ["despicableness", "sordidness", "despicability", "contemptibility", "baseness"]}, {"answer": "bash", "hint": "synonyms for bash", "clues": ["belt", "do", "smash", "knock", "brawl", "bang", "bash"]}, {"answer": "basic_principle", "hint": "synonyms for basic principle", "clues": ["basics", "fundamental principle", "bedrock", "fundamentals", "basic principle"]}, {"answer": "basics", "hint": "synonyms for basics", "clues": ["fundamental principle", "rudiments", "basic", "staple", "bedrock", "fundamentals", "basic principle"]}, {"answer": "basin", "hint": "synonyms for basin", "clues": ["basinful", "catchment area", "catchment basin", "river basin", "drainage area", "watershed", "drainage basin", "washstand", "lavatory", "washbowl", "washbasin", "basin"]}, {"answer": "basis", "hint": "synonyms for basis", "clues": ["cornerstone", "ground", "foundation", "fundament", "footing", "groundwork", "base", "basis"]}, {"answer": "basket", "hint": "synonyms for basket", "clues": ["field goal", "handbasket", "basketful", "basketball hoop", "hoop", "basket"]}, {"answer": "bass_fiddle", "hint": "synonyms for bass fiddle", "clues": ["contrabass", "bull fiddle", "string bass", "double bass", "bass viol", "bass fiddle"]}, {"answer": "bass_viol", "hint": "synonyms for bass viol", "clues": ["contrabass", "bull fiddle", "bass fiddle", "string bass", "double bass", "viola da gamba", "gamba", "bass viol"]}, {"answer": "bat", "hint": "synonyms for bat", "clues": ["squash racquet", "cricket bat", "at-bat", "bat"]}, {"answer": "batch", "hint": "synonyms for batch", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "clutch", "muckle", "mountain", "pile", "flock", "tidy sum", "pot", "batch"]}, {"answer": "bath", "hint": "synonyms for bath", "clues": ["tub", "bathing tub", "bathtub", "bathroom", "bath"]}, {"answer": "bathing_costume", "hint": "synonyms for bathing costume", "clues": ["bathing suit", "swimming costume", "swimwear", "swimsuit", "bathing costume"]}, {"answer": "bathing_suit", "hint": "synonyms for bathing suit", "clues": ["bathing costume", "swimming costume", "swimwear", "swimsuit", "bathing suit"]}, {"answer": "bathroom", "hint": "synonyms for bathroom", "clues": ["bath", "john", "toilet", "can", "privy", "lavatory", "lav", "bathroom"]}, {"answer": "baton", "hint": "synonyms for baton", "clues": ["wand", "billystick", "nightstick", "truncheon", "billy", "billy club", "baton"]}, {"answer": "battalion", "hint": "synonyms for battalion", "clues": ["pack", "multitude", "plurality", "large number", "battalion"]}, {"answer": "battercake", "hint": "synonyms for battercake", "clues": ["griddlecake", "hotcake", "pancake", "flapjack", "flapcake", "flannel-cake", "battercake"]}, {"answer": "battery", "hint": "synonyms for battery", "clues": ["stamp battery", "bombardment", "electric battery", "assault and battery", "barrage fire", "barrage", "shelling", "battery"]}, {"answer": "battery-acid", "hint": "synonyms for battery-acid", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid"]}, {"answer": "battle", "hint": "synonyms for battle", "clues": ["conflict", "fight", "struggle", "engagement", "battle"]}, {"answer": "battle_cry", "hint": "synonyms for battle cry", "clues": ["rallying cry", "watchword", "war cry", "cry", "war whoop", "battle cry"]}, {"answer": "battlefield", "hint": "synonyms for battlefield", "clues": ["field", "battleground", "field of honor", "field of battle", "battlefield"]}, {"answer": "battleground", "hint": "synonyms for battleground", "clues": ["field", "field of honor", "field of battle", "battlefield", "battleground"]}, {"answer": "bauble", "hint": "synonyms for bauble", "clues": ["bangle", "trinket", "novelty", "gaud", "fallal", "gewgaw", "bauble"]}, {"answer": "baulk", "hint": "synonyms for baulk", "clues": ["check", "deterrent", "handicap", "hindrance", "impediment", "rafter", "balk"]}, {"answer": "bawdiness", "hint": "synonyms for bawdiness", "clues": ["salaciousness", "salacity", "lewdness", "obscenity", "bawdiness"]}, {"answer": "bawdyhouse", "hint": "synonyms for bawdyhouse", "clues": ["bagnio", "house of ill repute", "house of prostitution", "brothel", "cathouse", "whorehouse", "bordello", "sporting house", "bawdyhouse"]}, {"answer": "bawling_out", "hint": "synonyms for bawling out", "clues": ["dressing down", "chewing out", "earful", "castigation", "going-over", "upbraiding", "bawling out"]}, {"answer": "beach_waggon", "hint": "synonyms for beach waggon", "clues": ["beach wagon", "waggon", "estate car", "station waggon"]}, {"answer": "beach_wagon", "hint": "synonyms for beach wagon", "clues": ["wagon", "estate car", "beach waggon", "station waggon"]}, {"answer": "beacon", "hint": "synonyms for beacon", "clues": ["pharos", "lighthouse", "radio beacon", "beacon light", "beacon fire", "beacon"]}, {"answer": "bead", "hint": "synonyms for bead", "clues": ["beadwork", "astragal", "drop", "pearl", "beading"]}, {"answer": "beads", "hint": "synonyms for beads", "clues": ["pearl", "beadwork", "astragal", "drop", "string of beads", "beading", "beads"]}, {"answer": "beam", "hint": "synonyms for beam", "clues": ["irradiation", "radio beam", "shaft", "beam of light", "shaft of light", "ray of light", "light beam", "balance beam", "electron beam", "ray", "beam"]}, {"answer": "beam_of_light", "hint": "synonyms for beam of light", "clues": ["shaft of light", "irradiation", "ray of light", "beam", "light beam", "shaft", "ray", "beam of light"]}, {"answer": "beast", "hint": "synonyms for beast", "clues": ["animal", "fauna", "creature", "brute", "animate being", "beast"]}, {"answer": "beating", "hint": "synonyms for beating", "clues": ["licking", "whacking", "trouncing", "drubbing", "thrashing", "lacing", "whipping", "beating"]}, {"answer": "beats", "hint": "synonyms for beats", "clues": ["musical rhythm", "round", "heartbeat", "cadence", "rhythm", "metre", "beatniks", "pulse", "meter", "beat generation", "pulsation", "beat", "measure"]}, {"answer": "beau_monde", "hint": "synonyms for beau monde", "clues": ["high society", "smart set", "bon ton", "society", "beau monde"]}, {"answer": "beauty_parlor", "hint": "synonyms for beauty parlor", "clues": ["beauty salon", "beauty shop", "salon", "beauty parlour"]}, {"answer": "beauty_parlour", "hint": "synonyms for beauty parlour", "clues": ["beauty parlor", "beauty salon", "beauty shop", "salon"]}, {"answer": "beauty_salon", "hint": "synonyms for beauty salon", "clues": ["beauty parlor", "beauty shop", "salon", "beauty salon"]}, {"answer": "beauty_shop", "hint": "synonyms for beauty shop", "clues": ["beauty parlor", "beauty salon", "salon", "beauty shop"]}, {"answer": "beaver", "hint": "synonyms for beaver", "clues": ["beaver fur", "silk hat", "stovepipe", "dress hat", "opera hat", "high hat", "topper", "castor", "top hat", "beaver"]}, {"answer": "bed_cover", "hint": "synonyms for bed cover", "clues": ["counterpane", "bed covering", "bedspread", "bedcover", "spread"]}, {"answer": "bed_covering", "hint": "synonyms for bed covering", "clues": ["counterpane", "bed cover", "bedspread", "spread"]}, {"answer": "bedchamber", "hint": "synonyms for bedchamber", "clues": ["bedroom", "chamber", "sleeping accommodation", "sleeping room", "bedchamber"]}, {"answer": "bedcover", "hint": "synonyms for bedcover", "clues": ["counterpane", "bed cover", "bedspread", "spread"]}, {"answer": "bedding", "hint": "synonyms for bedding", "clues": ["bedclothes", "bedding material", "litter", "bed clothing", "bedding"]}, {"answer": "bedlam", "hint": "synonyms for bedlam", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "bedlam"]}, {"answer": "bedrock", "hint": "synonyms for bedrock", "clues": ["basics", "basic principle", "fundamental principle", "fundamentals", "bedrock"]}, {"answer": "bedroom", "hint": "synonyms for bedroom", "clues": ["sleeping room", "chamber", "bedchamber", "sleeping accommodation", "bedroom"]}, {"answer": "bedspread", "hint": "synonyms for bedspread", "clues": ["counterpane", "bed cover", "spread", "bedspread"]}, {"answer": "beef", "hint": "synonyms for beef", "clues": ["boeuf", "kick", "squawk", "bitch", "gripe", "beef"]}, {"answer": "beef_patty", "hint": "synonyms for beef patty", "clues": ["chopped steak", "hamburger steak", "chopsteak", "beef patty"]}, {"answer": "befuddlement", "hint": "synonyms for befuddlement", "clues": ["obfuscation", "puzzlement", "bemusement", "bewilderment", "bafflement", "mystification", "befuddlement"]}, {"answer": "behavior", "hint": "synonyms for behavior", "clues": ["deportment", "conduct", "demeanour", "doings", "behaviour"]}, {"answer": "behaviour", "hint": "synonyms for behaviour", "clues": ["deportment", "conduct", "doings", "demeanor", "behavior"]}, {"answer": "belief", "hint": "synonyms for belief", "clues": ["notion", "feeling", "opinion", "impression", "belief"]}, {"answer": "bell", "hint": "synonyms for bell", "clues": ["toll", "ship's bell", "doorbell", "buzzer", "campana", "bell shape", "chime", "gong", "bell"]}, {"answer": "bell_ringing", "hint": "synonyms for bell ringing", "clues": ["electioneering", "canvassing", "carillon playing", "carillon", "bell ringing"]}, {"answer": "belling", "hint": "synonyms for belling", "clues": ["callathump", "chivaree", "charivari", "belling"]}, {"answer": "bellow", "hint": "synonyms for bellow", "clues": ["holler", "holla", "yowl", "bellowing", "roaring", "hollo"]}, {"answer": "bellowing", "hint": "synonyms for bellowing", "clues": ["holler", "holla", "yowl", "roaring", "bellow", "hollo"]}, {"answer": "bellows", "hint": "synonyms for bellows", "clues": ["holler", "holla", "yowl", "bellowing", "roaring", "hollo", "bellows"]}, {"answer": "belly_laugh", "hint": "synonyms for belly laugh", "clues": ["sidesplitter", "guffaw", "riot", "howler", "wow", "thigh-slapper", "scream", "belly laugh"]}, {"answer": "belt", "hint": "synonyms for belt", "clues": ["belt ammunition", "smash", "bash", "whack", "rap", "knock", "swath", "whang", "bang", "belt"]}, {"answer": "bemusement", "hint": "synonyms for bemusement", "clues": ["mystification", "befuddlement", "puzzlement", "bewilderment", "bafflement", "obfuscation", "bemusement"]}, {"answer": "bench", "hint": "synonyms for bench", "clues": ["workbench", "judiciary", "terrace", "bench"]}, {"answer": "bend", "hint": "synonyms for bend", "clues": ["bend dexter", "crease", "flexure", "fold", "crimp", "plication", "curve", "bending", "turn", "twist", "crook"]}, {"answer": "bender", "hint": "synonyms for bender", "clues": ["curve ball", "toot", "carousal", "booze-up", "carouse", "breaking ball", "curve", "bender"]}, {"answer": "bends", "hint": "synonyms for bends", "clues": ["bend dexter", "crease", "flexure", "fold", "crimp", "bend", "curve", "plication", "turn", "twist", "crook"]}, {"answer": "beneficiation", "hint": "synonyms for beneficiation", "clues": ["mineral extraction", "ore processing", "mineral processing", "ore dressing", "beneficiation"]}, {"answer": "benjamin", "hint": "synonyms for benjamin", "clues": ["gum benzoin", "gum benjamin", "asa dulcis", "benzoin", "benjamin"]}, {"answer": "benzoin", "hint": "synonyms for benzoin", "clues": ["benjamin", "gum benzoin", "asa dulcis", "gum benjamin", "benzoin"]}, {"answer": "berth", "hint": "synonyms for berth", "clues": ["billet", "post", "situation", "place", "spot", "moorage", "mooring", "office", "position", "bunk", "built in bed", "slip", "berth"]}, {"answer": "betise", "hint": "synonyms for betise", "clues": ["folly", "stupidity", "imbecility", "foolishness", "betise"]}, {"answer": "betterment", "hint": "synonyms for betterment", "clues": ["amelioration", "improvement", "advance", "betterment"]}, {"answer": "bewilderment", "hint": "synonyms for bewilderment", "clues": ["mystification", "befuddlement", "puzzlement", "bemusement", "bafflement", "obfuscation", "bewilderment"]}, {"answer": "bicarbonate_of_soda", "hint": "synonyms for bicarbonate of soda", "clues": ["sodium hydrogen carbonate", "sodium bicarbonate", "baking soda", "saleratus", "bicarbonate of soda"]}, {"answer": "bicker", "hint": "synonyms for bicker", "clues": ["spat", "bickering", "pettifoggery", "tiff", "fuss", "squabble"]}, {"answer": "bickering", "hint": "synonyms for bickering", "clues": ["spat", "pettifoggery", "tiff", "fuss", "squabble", "bicker"]}, {"answer": "bid", "hint": "synonyms for bid", "clues": ["play", "command", "dictation", "bidding", "tender", "bid"]}, {"answer": "bidding", "hint": "synonyms for bidding", "clues": ["bid", "command", "summons", "dictation", "bidding"]}, {"answer": "biff", "hint": "synonyms for biff", "clues": ["slug", "lick", "clout", "poke", "punch", "biff"]}, {"answer": "big_bucks", "hint": "synonyms for big bucks", "clues": ["bundle", "megabucks", "pile", "big money", "big bucks"]}, {"answer": "big_h", "hint": "synonyms for big h", "clues": ["big H", "hell dust", "smack", "thunder", "scag", "skag", "nose drops"]}, {"answer": "big_money", "hint": "synonyms for big money", "clues": ["bundle", "megabucks", "big bucks", "pile", "big money"]}, {"answer": "bike", "hint": "synonyms for bike", "clues": ["bicycle", "cycle", "wheel", "motorcycle", "bike"]}, {"answer": "bilgewater", "hint": "synonyms for bilgewater", "clues": ["tarradiddle", "bosh", "drool", "baloney", "humbug", "tommyrot", "tosh", "twaddle", "bilgewater"]}, {"answer": "biliousness", "hint": "synonyms for biliousness", "clues": ["peevishness", "temper", "surliness", "pettishness", "irritability", "snappishness", "biliousness"]}, {"answer": "bill", "hint": "synonyms for bill", "clues": ["eyeshade", "banker's bill", "broadsheet", "circular", "bank bill", "visor", "handbill", "throwaway", "poster", "notice", "greenback", "flyer", "banknote", "vizor", "card", "invoice", "posting", "note", "placard", "peak", "government note", "flier", "account", "broadside", "measure", "billhook", "bill"]}, {"answer": "bill_of_fare", "hint": "synonyms for bill of fare", "clues": ["card", "carte", "carte du jour", "menu", "bill of fare"]}, {"answer": "billet", "hint": "synonyms for billet", "clues": ["line", "post", "situation", "place", "note", "spot", "office", "position", "short letter", "berth", "billet"]}, {"answer": "billiard_hall", "hint": "synonyms for billiard hall", "clues": ["billiard saloon", "billiard room", "billiard parlour", "billiard hall"]}, {"answer": "billiard_parlor", "hint": "synonyms for billiard parlor", "clues": ["billiard hall", "billiard saloon", "billiard parlour", "billiard room"]}, {"answer": "billiard_parlour", "hint": "synonyms for billiard parlour", "clues": ["billiard hall", "billiard room", "billiard saloon", "billiard parlor"]}, {"answer": "billiard_room", "hint": "synonyms for billiard room", "clues": ["billiard hall", "billiard saloon", "billiard parlour", "billiard room"]}, {"answer": "billiard_saloon", "hint": "synonyms for billiard saloon", "clues": ["billiard hall", "billiard room", "billiard parlour", "billiard saloon"]}, {"answer": "billy", "hint": "synonyms for billy", "clues": ["billystick", "nightstick", "baton", "truncheon", "billy club", "billy"]}, {"answer": "billy_club", "hint": "synonyms for billy club", "clues": ["billystick", "nightstick", "baton", "truncheon", "billy", "billy club"]}, {"answer": "billystick", "hint": "synonyms for billystick", "clues": ["nightstick", "baton", "truncheon", "billy", "billy club", "billystick"]}, {"answer": "binge", "hint": "synonyms for binge", "clues": ["tear", "orgy", "bout", "splurge", "bust", "binge"]}, {"answer": "bird", "hint": "synonyms for bird", "clues": ["shuttle", "shuttlecock", "razz", "hiss", "raspberry", "boo", "hoot", "birdie", "fowl", "snort", "bird"]}, {"answer": "bird-scarer", "hint": "synonyms for bird-scarer", "clues": ["scarecrow", "scarer", "strawman", "bird-scarer"]}, {"answer": "birth", "hint": "synonyms for birth", "clues": ["nascence", "birthing", "parentage", "giving birth", "nativity", "parturition"]}, {"answer": "birth_control_device", "hint": "synonyms for birth control device", "clues": ["preventive", "contraceptive device", "contraceptive", "prophylactic device", "birth control device"]}, {"answer": "birth_control_pill", "hint": "synonyms for birth control pill", "clues": ["pill", "oral contraceptive pill", "anovulatory drug", "anovulant", "birth control pill"]}, {"answer": "birth_rate", "hint": "synonyms for birth rate", "clues": ["fertility rate", "birthrate", "fertility", "natality"]}, {"answer": "birthplace", "hint": "synonyms for birthplace", "clues": ["provenance", "place of birth", "place of origin", "cradle", "birthplace"]}, {"answer": "birthrate", "hint": "synonyms for birthrate", "clues": ["birth rate", "fertility rate", "fertility", "natality"]}, {"answer": "bit", "hint": "synonyms for bit", "clues": ["moment", "bite", "spot", "flake", "fleck", "chip", "snatch", "act", "morsel", "routine", "piece", "minute", "number", "scrap", "turn", "second", "mo"]}, {"answer": "bitch", "hint": "synonyms for bitch", "clues": ["kick", "squawk", "beef", "gripe", "bitch"]}, {"answer": "bitchiness", "hint": "synonyms for bitchiness", "clues": ["nastiness", "cattiness", "spite", "spitefulness", "bitchiness"]}, {"answer": "bite", "hint": "synonyms for bite", "clues": ["snack", "chomp", "morsel", "bit", "sharpness", "collation", "pungency", "raciness"]}, {"answer": "bitterness", "hint": "synonyms for bitterness", "clues": ["acerbity", "acrimony", "rancour", "tartness", "resentment", "bitter", "jaundice", "gall", "thorniness", "bitterness"]}, {"answer": "bivouac", "hint": "synonyms for bivouac", "clues": ["cantonment", "camping area", "campsite", "campground", "encampment", "camping ground", "camping site", "camp", "bivouac"]}, {"answer": "black_eye", "hint": "synonyms for black eye", "clues": ["setback", "reverse", "reversal", "blow", "black eye"]}, {"answer": "black_maria", "hint": "synonyms for black maria", "clues": ["patrol wagon", "wagon", "paddy wagon", "hearts", "black Maria", "police van", "police wagon"]}, {"answer": "blackjack", "hint": "synonyms for blackjack", "clues": ["vingt-et-un", "cosh", "sap", "pirate flag", "black flag", "twenty-one", "blackjack"]}, {"answer": "blade", "hint": "synonyms for blade", "clues": ["vane", "brand", "sword", "steel", "blade"]}, {"answer": "blah", "hint": "synonyms for blah", "clues": ["rant", "fustian", "bombast", "claptrap", "blah"]}, {"answer": "blahs", "hint": "synonyms for blahs", "clues": ["fustian", "bombast", "blah", "rant", "claptrap"]}, {"answer": "blandness", "hint": "synonyms for blandness", "clues": ["insipidness", "insipidity", "smoothness", "suavity", "suaveness", "blandness"]}, {"answer": "blare", "hint": "synonyms for blare", "clues": ["din", "cacophony", "clamor", "blaring", "blare"]}, {"answer": "blast", "hint": "synonyms for blast", "clues": ["flak", "clap", "gust", "eruption", "attack", "fire", "bam", "good time", "blow", "bang", "blast"]}, {"answer": "blaze", "hint": "synonyms for blaze", "clues": ["glare", "hell", "blazing", "brilliance", "blaze"]}, {"answer": "blessing", "hint": "synonyms for blessing", "clues": ["grace", "thanksgiving", "benediction", "approval", "approving", "blessing"]}, {"answer": "blether", "hint": "synonyms for blether", "clues": ["prattle", "chin music", "idle talk", "prate", "blether"]}, {"answer": "blink", "hint": "synonyms for blink", "clues": ["wink", "nictitation", "blinking", "eye blink"]}, {"answer": "blink_of_an_eye", "hint": "synonyms for blink of an eye", "clues": ["twinkling", "jiffy", "instant", "flash", "wink", "split second", "heartbeat", "trice", "blink of an eye"]}, {"answer": "blinker", "hint": "synonyms for blinker", "clues": ["turn indicator", "blinder", "winker", "turn signal", "trafficator", "flasher"]}, {"answer": "blinks", "hint": "synonyms for blinks", "clues": ["wink", "blink", "nictitation", "eye blink"]}, {"answer": "blistering_agent", "hint": "synonyms for blistering agent", "clues": ["mustard agent", "mustard gas", "sulfur mustard", "dichloroethyl sulfide", "blistering agent"]}, {"answer": "block", "hint": "synonyms for block", "clues": ["cylinder block", "pulley-block", "stoppage", "auction block", "cube", "mental block", "city block", "engine block", "stop", "pulley", "blockage", "occlusion", "blocking", "closure"]}, {"answer": "blockage", "hint": "synonyms for blockage", "clues": ["occlusion", "stoppage", "closure", "block", "stop", "blockage"]}, {"answer": "blood", "hint": "synonyms for blood", "clues": ["line", "bloodline", "lineage", "parentage", "line of descent", "descent", "ancestry", "stock", "pedigree", "origin", "stemma", "blood"]}, {"answer": "blood_line", "hint": "synonyms for blood line", "clues": ["line", "bloodline", "blood", "lineage", "parentage", "line of descent", "descent", "ancestry", "stock", "pedigree", "origin", "stemma"]}, {"answer": "bloodline", "hint": "synonyms for bloodline", "clues": ["line", "blood", "lineage", "parentage", "line of descent", "ancestry", "descent", "blood line", "stock", "pedigree", "origin", "stemma"]}, {"answer": "bloodshed", "hint": "synonyms for bloodshed", "clues": ["bloodletting", "battue", "gore", "bloodbath", "bloodshed"]}, {"answer": "bloom", "hint": "synonyms for bloom", "clues": ["prime", "blooming", "flush", "peak", "blossom", "efflorescence", "flower", "bloom of youth", "heyday", "salad days"]}, {"answer": "bloomer", "hint": "synonyms for bloomer", "clues": ["fuckup", "blooper", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch"]}, {"answer": "bloomers", "hint": "synonyms for bloomers", "clues": ["fuckup", "bloomer", "knickers", "flub", "pratfall", "blunder", "pants", "foul-up", "botch", "boo-boo", "bungle", "boner", "drawers"]}, {"answer": "blooper", "hint": "synonyms for blooper", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch"]}, {"answer": "blossom", "hint": "synonyms for blossom", "clues": ["flower", "prime", "heyday", "bloom", "flush", "peak", "efflorescence", "blossom"]}, {"answer": "blossoming", "hint": "synonyms for blossoming", "clues": ["inflorescence", "anthesis", "flowering", "efflorescence", "blossoming"]}, {"answer": "blot", "hint": "synonyms for blot", "clues": ["stain", "spot", "slur", "smudge", "smirch", "daub", "smear", "blot"]}, {"answer": "blotter", "hint": "synonyms for blotter", "clues": ["rap sheet", "charge sheet", "police blotter", "day book", "blotting paper", "blotter"]}, {"answer": "blow", "hint": "synonyms for blow", "clues": ["reversal", "shock", "nose candy", "puff", "setback", "gust", "blast", "reverse", "bump", "snow", "black eye", "coke", "blow"]}, {"answer": "blowout", "hint": "synonyms for blowout", "clues": ["jamboree", "walkaway", "shoo-in", "laugher", "runaway", "romp", "gala", "gala affair", "blowout"]}, {"answer": "blowup", "hint": "synonyms for blowup", "clues": ["explosion", "effusion", "magnification", "detonation", "outburst", "enlargement", "gush", "ebullition", "blowup"]}, {"answer": "blue_devils", "hint": "synonyms for blue devils", "clues": ["blue", "blue devil", "blue angel", "amobarbital sodium"]}, {"answer": "blues", "hint": "synonyms for blues", "clues": ["blue angel", "bluing", "amobarbital sodium", "blue", "blue air", "blueness", "blue devil", "wild blue yonder", "blue sky"]}, {"answer": "blunder", "hint": "synonyms for blunder", "clues": ["fuckup", "bloomer", "flub", "pratfall", "foul-up", "boo-boo", "bungle", "boner", "botch", "blunder"]}, {"answer": "blurriness", "hint": "synonyms for blurriness", "clues": ["fuzziness", "indistinctness", "fogginess", "softness", "blurriness"]}, {"answer": "bluster", "hint": "synonyms for bluster", "clues": ["bravado", "rhodomontade", "braggadocio", "bluster"]}, {"answer": "bm", "hint": "synonyms for bm", "clues": ["fecal matter", "feces", "bowel movement", "stool", "ordure", "movement", "dejection", "bm"]}, {"answer": "board", "hint": "synonyms for board", "clues": ["card", "add-in", "panel", "control board", "control panel", "gameboard", "plug-in", "display panel", "dining table", "circuit card", "instrument panel", "table", "display board", "plank", "board"]}, {"answer": "boards", "hint": "synonyms for boards", "clues": ["card", "add-in", "panel", "control board", "control panel", "gameboard", "plug-in", "display panel", "dining table", "circuit card", "instrument panel", "table", "board", "display board", "plank"]}, {"answer": "boater", "hint": "synonyms for boater", "clues": ["leghorn", "skimmer", "sailor", "straw hat", "boater"]}, {"answer": "bob", "hint": "synonyms for bob", "clues": ["bobfloat", "cork", "bobsled", "bobsleigh", "bobber", "shilling", "bob"]}, {"answer": "body", "hint": "synonyms for body", "clues": ["soundbox", "consistency", "eubstance", "body"]}, {"answer": "body_armor", "hint": "synonyms for body armor", "clues": ["suit of armor", "cataphract", "coat of mail", "body armour"]}, {"answer": "body_armour", "hint": "synonyms for body armour", "clues": ["suit of armor", "cataphract", "body armor", "coat of mail"]}, {"answer": "body_politic", "hint": "synonyms for body politic", "clues": ["commonwealth", "country", "state", "res publica", "nation", "land", "body politic"]}, {"answer": "body_waste", "hint": "synonyms for body waste", "clues": ["excretory product", "excreta", "excretion", "excrement", "body waste"]}, {"answer": "boldness", "hint": "synonyms for boldness", "clues": ["brass", "cheek", "strikingness", "hardiness", "hardihood", "face", "daring", "nerve", "boldness"]}, {"answer": "bolo", "hint": "synonyms for bolo", "clues": ["bola tie", "bola", "bolo knife", "bolo"]}, {"answer": "boloney", "hint": "synonyms for boloney", "clues": ["tarradiddle", "bosh", "drool", "baloney", "humbug", "tommyrot", "tosh", "twaddle", "bilgewater"]}, {"answer": "bombardment", "hint": "synonyms for bombardment", "clues": ["outpouring", "bombing", "onslaught", "barrage fire", "barrage", "shelling", "battery", "bombardment"]}, {"answer": "bombast", "hint": "synonyms for bombast", "clues": ["rant", "fustian", "claptrap", "blah", "bombast"]}, {"answer": "bomber", "hint": "synonyms for bomber", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "poor boy", "submarine", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "bomber"]}, {"answer": "bon_ton", "hint": "synonyms for bon ton", "clues": ["smart set", "beau monde", "high society", "society", "bon ton"]}, {"answer": "bonanza", "hint": "synonyms for bonanza", "clues": ["gold rush", "manna from heaven", "gravy", "godsend", "boom", "windfall", "bunce", "bonanza"]}, {"answer": "bond", "hint": "synonyms for bond", "clues": ["bond certificate", "bail", "attachment", "adherence", "adhesiveness", "shackle", "chemical bond", "alliance", "bail bond", "bond paper", "trammel", "hamper", "adhesion", "bond"]}, {"answer": "boner", "hint": "synonyms for boner", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "botch", "boner"]}, {"answer": "bones", "hint": "synonyms for bones", "clues": ["off-white", "clappers", "castanets", "finger cymbals", "bone", "pearl", "osseous tissue", "ivory"]}, {"answer": "bonhomie", "hint": "synonyms for bonhomie", "clues": ["affableness", "amiableness", "affability", "geniality", "amiability", "bonhomie"]}, {"answer": "boniness", "hint": "synonyms for boniness", "clues": ["maceration", "bonyness", "gauntness", "emaciation"]}, {"answer": "bonnet", "hint": "synonyms for bonnet", "clues": ["cowling", "poke bonnet", "hood", "bonnet"]}, {"answer": "bonyness", "hint": "synonyms for bonyness", "clues": ["maceration", "boniness", "gauntness", "emaciation"]}, {"answer": "boo", "hint": "synonyms for boo", "clues": ["hiss", "bird", "raspberry", "hoot", "razzing", "snort", "boo"]}, {"answer": "boo-boo", "hint": "synonyms for boo-boo", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "foul-up", "bungle", "boner", "botch", "boo-boo"]}, {"answer": "boob_tube", "hint": "synonyms for boob tube", "clues": ["television set", "tv", "telly", "television receiver", "goggle box", "idiot box", "tv set", "television", "boob tube"]}, {"answer": "booby_hatch", "hint": "synonyms for booby hatch", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "crazy house", "cuckoo's nest", "madhouse", "snake pit", "booby hatch"]}, {"answer": "boodle", "hint": "synonyms for boodle", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "stops", "moolah", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "boodle"]}, {"answer": "book", "hint": "synonyms for book", "clues": ["volume", "book of account", "al-Qur'an", "playscript", "rule book", "ledger", "account book", "record", "record book", "script", "book"]}, {"answer": "book_of_account", "hint": "synonyms for book of account", "clues": ["leger", "account book", "book", "book of account"]}, {"answer": "booklet", "hint": "synonyms for booklet", "clues": ["brochure", "pamphlet", "folder", "leaflet", "booklet"]}, {"answer": "boom", "hint": "synonyms for boom", "clues": ["thunder", "manna from heaven", "bonanza", "godsend", "windfall", "roaring", "gold rush", "gravy", "microphone boom", "bunce", "boom"]}, {"answer": "boost", "hint": "synonyms for boost", "clues": ["rise", "encouragement", "hike", "cost increase", "boost"]}, {"answer": "booster", "hint": "synonyms for booster", "clues": ["booster amplifier", "booster station", "takeoff booster", "relay station", "relay link", "relay transmitter", "booster shot", "takeoff rocket", "booster rocket", "booster unit", "booster dose", "recall dose", "booster"]}, {"answer": "booster_amplifier", "hint": "synonyms for booster amplifier", "clues": ["relay transmitter", "booster station", "booster", "relay station", "relay link", "booster amplifier"]}, {"answer": "booster_rocket", "hint": "synonyms for booster rocket", "clues": ["takeoff rocket", "booster", "booster unit", "takeoff booster", "booster rocket"]}, {"answer": "booster_station", "hint": "synonyms for booster station", "clues": ["booster amplifier", "relay transmitter", "booster", "relay station", "relay link", "booster station"]}, {"answer": "booster_unit", "hint": "synonyms for booster unit", "clues": ["takeoff rocket", "booster", "booster rocket", "takeoff booster", "booster unit"]}, {"answer": "boot", "hint": "synonyms for boot", "clues": ["kick", "flush", "rush", "the boot", "charge", "thrill", "iron boot", "iron heel", "bang", "boot"]}, {"answer": "booty", "hint": "synonyms for booty", "clues": ["dirty money", "loot", "pillage", "prize", "plunder", "swag", "booty"]}, {"answer": "booze", "hint": "synonyms for booze", "clues": ["liquor", "strong drink", "hard drink", "hard liquor", "spirits", "booze"]}, {"answer": "booze-up", "hint": "synonyms for booze-up", "clues": ["toot", "bender", "carouse", "carousal", "booze-up"]}, {"answer": "boozing", "hint": "synonyms for boozing", "clues": ["drunkenness", "drink", "crapulence", "boozing"]}, {"answer": "bordello", "hint": "synonyms for bordello", "clues": ["bagnio", "house of ill repute", "house of prostitution", "brothel", "cathouse", "bawdyhouse", "whorehouse", "sporting house", "bordello"]}, {"answer": "border", "hint": "synonyms for border", "clues": ["borderline", "mete", "boundary line", "molding", "delimitation", "edge", "margin", "perimeter", "border"]}, {"answer": "bore", "hint": "synonyms for bore", "clues": ["drill hole", "calibre", "eagre", "eager", "aegir", "tidal bore", "bore-hole", "gauge", "bore"]}, {"answer": "bosh", "hint": "synonyms for bosh", "clues": ["tarradiddle", "drool", "baloney", "humbug", "tommyrot", "tosh", "twaddle", "bilgewater", "bosh"]}, {"answer": "botch", "hint": "synonyms for botch", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch"]}, {"answer": "bother", "hint": "synonyms for bother", "clues": ["infliction", "botheration", "pain", "fuss", "pain in the ass", "pain in the neck", "trouble", "annoyance", "hassle", "bother"]}, {"answer": "botheration", "hint": "synonyms for botheration", "clues": ["pain in the neck", "annoyance", "infliction", "pain", "pain in the ass", "bother", "botheration"]}, {"answer": "bounce", "hint": "synonyms for bounce", "clues": ["spring", "leap", "bouncing", "bound", "bounciness", "saltation", "bounce"]}, {"answer": "boundary", "hint": "synonyms for boundary", "clues": ["bound", "edge", "limit", "boundary"]}, {"answer": "boundary_line", "hint": "synonyms for boundary line", "clues": ["border", "borderline", "mete", "delimitation", "boundary line"]}, {"answer": "boundlessness", "hint": "synonyms for boundlessness", "clues": ["infiniteness", "limitlessness", "unboundedness", "infinitude", "boundlessness"]}, {"answer": "bounds", "hint": "synonyms for bounds", "clues": ["leaping", "bounce", "limit", "boundary", "bound", "spring", "saltation", "edge"]}, {"answer": "bounty", "hint": "synonyms for bounty", "clues": ["premium", "bounteousness", "bountifulness", "amplitude", "bounty"]}, {"answer": "bouquet", "hint": "synonyms for bouquet", "clues": ["fragrance", "nosegay", "corsage", "sweetness", "redolence", "posy", "bouquet"]}, {"answer": "bout", "hint": "synonyms for bout", "clues": ["tear", "turn", "round", "binge", "bust", "bout"]}, {"answer": "bow", "hint": "synonyms for bow", "clues": ["stem", "arc", "obeisance", "prow", "curtain call", "bowknot", "bowing", "fore"]}, {"answer": "bowl", "hint": "synonyms for bowl", "clues": ["bowling ball", "arena", "stadium", "trough", "sports stadium", "roll", "bowlful", "pipe bowl", "bowl"]}, {"answer": "bowler", "hint": "synonyms for bowler", "clues": ["derby", "derby hat", "plug hat", "bowler hat", "bowler"]}, {"answer": "bowler_hat", "hint": "synonyms for bowler hat", "clues": ["derby", "bowler", "plug hat", "derby hat", "bowler hat"]}, {"answer": "bowls", "hint": "synonyms for bowls", "clues": ["sports stadium", "bowlful", "lawn bowling", "bowling ball", "arena", "stadium", "trough", "roll", "bowl", "pipe bowl"]}, {"answer": "boxberry", "hint": "synonyms for boxberry", "clues": ["wintergreen", "teaberry", "checkerberry", "spiceberry", "boxberry"]}, {"answer": "boxers", "hint": "synonyms for boxers", "clues": ["underdrawers", "drawers", "shorts", "boxershorts", "boxers"]}, {"answer": "boxershorts", "hint": "synonyms for boxershorts", "clues": ["underdrawers", "shorts", "boxers", "drawers", "boxershorts"]}, {"answer": "brace", "hint": "synonyms for brace", "clues": ["yoke", "duet", "pair", "twain", "dyad", "orthodontic braces", "couplet", "bracing", "gallus", "span", "twosome", "braces", "bitstock", "suspender", "duad", "duo", "distich"]}, {"answer": "bracelet", "hint": "synonyms for bracelet", "clues": ["wristband", "bangle", "watchband", "watch bracelet", "watchstrap", "bracelet"]}, {"answer": "braces", "hint": "synonyms for braces", "clues": ["yoke", "twain", "dyad", "orthodontic braces", "couplet", "bracing", "bitstock", "duo", "distich", "span", "duet", "pair", "gallus", "brace", "twosome", "suspender", "duad"]}, {"answer": "brain", "hint": "synonyms for brain", "clues": ["mind", "wit", "head", "brainpower", "psyche", "learning ability", "mental capacity", "nous", "mentality", "brain"]}, {"answer": "brainpower", "hint": "synonyms for brainpower", "clues": ["brain", "learning ability", "mental capacity", "wit", "mentality", "brainpower"]}, {"answer": "brainwave", "hint": "synonyms for brainwave", "clues": ["brain wave", "insight", "brainstorm", "cortical potential"]}, {"answer": "branch", "hint": "synonyms for branch", "clues": ["offset", "arm", "offshoot", "ramification", "leg", "limb", "subdivision", "outgrowth", "branch"]}, {"answer": "brand", "hint": "synonyms for brand", "clues": ["firebrand", "make", "stain", "sword", "brand name", "trade name", "marque", "steel", "mark", "blade", "stigma", "brand"]}, {"answer": "brashness", "hint": "synonyms for brashness", "clues": ["gaudiness", "tawdriness", "meretriciousness", "loudness", "flashiness", "garishness", "glitz", "brashness"]}, {"answer": "brass", "hint": "synonyms for brass", "clues": ["administration", "organization", "boldness", "memorial tablet", "establishment", "governing body", "face", "nerve", "brass instrument", "governance", "cheek", "plaque", "brass section", "brass"]}, {"answer": "bravery", "hint": "synonyms for bravery", "clues": ["fearlessness", "braveness", "courageousness", "courage", "bravery"]}, {"answer": "brawn", "hint": "synonyms for brawn", "clues": ["muscle", "sinew", "brawniness", "heftiness", "muscularity", "brawn"]}, {"answer": "brawniness", "hint": "synonyms for brawniness", "clues": ["muscle", "brawn", "sinew", "heftiness", "muscularity", "brawniness"]}, {"answer": "breach", "hint": "synonyms for breach", "clues": ["break", "rift", "severance", "rupture", "falling out", "breach"]}, {"answer": "bread", "hint": "synonyms for bread", "clues": ["lucre", "sugar", "lettuce", "pelf", "staff of life", "simoleons", "moolah", "boodle", "lolly", "breadstuff", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "loot", "dough", "bread"]}, {"answer": "bread_and_butter", "hint": "synonyms for bread and butter", "clues": ["support", "keep", "living", "sustenance", "livelihood", "bread and butter"]}, {"answer": "break", "hint": "synonyms for break", "clues": ["geological fault", "breach", "rift", "recess", "rupture", "breakage", "prison-breaking", "disruption", "fracture", "breaking", "good luck", "pause", "shift", "gap", "open frame", "severance", "gaolbreak", "faulting", "falling out", "jailbreak", "intermission", "break of serve", "prisonbreak", "suspension", "interruption", "breakout", "time out", "happy chance", "respite"]}, {"answer": "break_of_day", "hint": "synonyms for break of day", "clues": ["dawn", "dayspring", "first light", "sunrise", "break of the day", "daybreak", "sunup", "morning", "aurora", "cockcrow"]}, {"answer": "break_of_the_day", "hint": "synonyms for break of the day", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "daybreak", "sunup", "morning", "aurora", "cockcrow"]}, {"answer": "breaking_wind", "hint": "synonyms for breaking wind", "clues": ["flatus", "farting", "wind", "breaking wind"]}, {"answer": "breakout", "hint": "synonyms for breakout", "clues": ["break", "gaolbreak", "prisonbreak", "jailbreak", "prison-breaking", "breakout"]}, {"answer": "breakwater", "hint": "synonyms for breakwater", "clues": ["bulwark", "groin", "groyne", "mole", "seawall", "jetty", "breakwater"]}, {"answer": "breath", "hint": "synonyms for breath", "clues": ["breathing spell", "intimation", "breathing place", "hint", "breathing time", "breather"]}, {"answer": "breather", "hint": "synonyms for breather", "clues": ["breathing space", "breathing time", "breath", "schnorchel", "snorkel breather", "schnorkel"]}, {"answer": "breathing_in", "hint": "synonyms for breathing in", "clues": ["intake", "aspiration", "inhalation", "breathing in"]}, {"answer": "breathing_place", "hint": "synonyms for breathing place", "clues": ["breathing spell", "breathing time", "breather", "breathing place"]}, {"answer": "breathing_space", "hint": "synonyms for breathing space", "clues": ["breathing spell", "breathing place", "breathing time", "breather", "breathing room"]}, {"answer": "breeches", "hint": "synonyms for breeches", "clues": ["knee breeches", "breech", "rear of tube", "knickerbockers", "rear of barrel", "knickers", "knee pants"]}, {"answer": "breeze", "hint": "synonyms for breeze", "clues": ["picnic", "snap", "pushover", "cinch", "child's play", "piece of cake", "duck soup", "walkover", "gentle wind", "zephyr", "air", "breeze"]}, {"answer": "bric-a-brac", "hint": "synonyms for bric-a-brac", "clues": ["knickknackery", "nicknack", "whatnot", "bric-a-brac"]}, {"answer": "bricole", "hint": "synonyms for bricole", "clues": ["onager", "arbalest", "trebuchet", "mangonel", "catapult", "ballista", "bricole"]}, {"answer": "bridge", "hint": "synonyms for bridge", "clues": ["bridge circuit", "bridge deck", "nosepiece", "bridgework", "span", "bridge"]}, {"answer": "bridges", "hint": "synonyms for bridges", "clues": ["bridge circuit", "bridge", "bridge deck", "nosepiece", "bridgework", "span"]}, {"answer": "brightness", "hint": "synonyms for brightness", "clues": ["smartness", "light", "luminosity", "luminousness", "cleverness", "brightness level", "luminance", "brightness"]}, {"answer": "brightness_level", "hint": "synonyms for brightness level", "clues": ["light", "luminosity", "luminousness", "brightness", "luminance", "brightness level"]}, {"answer": "brilliance", "hint": "synonyms for brilliance", "clues": ["grandeur", "glare", "genius", "magnificence", "splendor", "grandness", "blaze", "brilliance"]}, {"answer": "brilliancy", "hint": "synonyms for brilliancy", "clues": ["splendor", "lustre", "luster", "brilliancy"]}, {"answer": "bringing_up", "hint": "synonyms for bringing up", "clues": ["fosterage", "breeding", "nurture", "raising", "rearing", "fostering", "upbringing", "bringing up"]}, {"answer": "brio", "hint": "synonyms for brio", "clues": ["invigoration", "animation", "spiritedness", "vivification", "brio"]}, {"answer": "broadsheet", "hint": "synonyms for broadsheet", "clues": ["bill", "flier", "broadside", "circular", "flyer", "handbill", "throwaway", "broadsheet"]}, {"answer": "brochure", "hint": "synonyms for brochure", "clues": ["folder", "pamphlet", "booklet", "leaflet", "brochure"]}, {"answer": "bromide", "hint": "synonyms for bromide", "clues": ["cliche", "banality", "platitude", "commonplace", "bromide"]}, {"answer": "bronx_cheer", "hint": "synonyms for bronx cheer", "clues": ["bird", "razz", "hiss", "boo", "raspberry", "hoot", "snort", "bronx cheer"]}, {"answer": "brothel", "hint": "synonyms for brothel", "clues": ["bagnio", "house of ill repute", "house of prostitution", "cathouse", "bawdyhouse", "whorehouse", "bordello", "sporting house", "brothel"]}, {"answer": "brotherhood", "hint": "synonyms for brotherhood", "clues": ["fraternity", "union", "trade union", "sodality", "labor union", "brotherhood"]}, {"answer": "brush", "hint": "synonyms for brush", "clues": ["copse", "encounter", "coppice", "light touch", "brushwood", "brushing", "clash", "thicket", "skirmish"]}, {"answer": "brushwood", "hint": "synonyms for brushwood", "clues": ["copse", "brush", "thicket", "coppice", "brushwood"]}, {"answer": "brusqueness", "hint": "synonyms for brusqueness", "clues": ["shortness", "curtness", "abruptness", "gruffness", "brusqueness"]}, {"answer": "brutality", "hint": "synonyms for brutality", "clues": ["viciousness", "savagery", "barbarism", "ferociousness", "barbarity", "brutality"]}, {"answer": "bs", "hint": "synonyms for bs", "clues": ["vitamin B", "vitamin B complex", "boron", "b", "barn", "atomic number 5"]}, {"answer": "buck", "hint": "synonyms for buck", "clues": ["long horse", "clam", "sawhorse", "horse", "sawbuck", "vaulting horse", "one dollar bill", "dollar bill", "dollar", "buck"]}, {"answer": "buffer", "hint": "synonyms for buffer", "clues": ["fender", "buffer store", "buff", "pilot", "buffer zone", "polisher", "cowcatcher", "buffer"]}, {"answer": "buffet", "hint": "synonyms for buffet", "clues": ["snack counter", "counter", "snack bar", "sideboard", "buffet"]}, {"answer": "buffoonery", "hint": "synonyms for buffoonery", "clues": ["clowning", "frivolity", "japery", "harlequinade", "prank", "buffoonery"]}, {"answer": "bulb", "hint": "synonyms for bulb", "clues": ["electric-light bulb", "lightbulb", "electric light", "incandescent lamp", "bulb"]}, {"answer": "bulge", "hint": "synonyms for bulge", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "gibbousness", "bump", "prominence", "protrusion", "excrescence", "gibbosity", "bulge"]}, {"answer": "bull", "hint": "synonyms for bull", "clues": ["shit", "dogshit", "bull's eye", "papal bull", "horseshit", "bullshit", "crap", "bull"]}, {"answer": "bull's_eye", "hint": "synonyms for bull's eye", "clues": ["bull", "home run", "bell ringer", "mark", "bull's eye"]}, {"answer": "bull_fiddle", "hint": "synonyms for bull fiddle", "clues": ["contrabass", "bass fiddle", "string bass", "double bass", "bass viol", "bull fiddle"]}, {"answer": "bullet", "hint": "synonyms for bullet", "clues": ["slug", "heater", "bullet train", "smoke", "hummer", "fastball", "bullet"]}, {"answer": "bulletin_board", "hint": "synonyms for bulletin board", "clues": ["electronic bulletin board", "bulletin board system", "bbs", "notice board", "bulletin board"]}, {"answer": "bullheadedness", "hint": "synonyms for bullheadedness", "clues": ["obstinance", "stubbornness", "obstinacy", "self-will", "pigheadedness", "bullheadedness"]}, {"answer": "bullshit", "hint": "synonyms for bullshit", "clues": ["shit", "dogshit", "bull", "horseshit", "crap", "bullshit"]}, {"answer": "bulwark", "hint": "synonyms for bulwark", "clues": ["wall", "breakwater", "groyne", "jetty", "rampart", "groin", "mole", "seawall", "bulwark"]}, {"answer": "bump", "hint": "synonyms for bump", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "gibbousness", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "blow", "bump"]}, {"answer": "bunce", "hint": "synonyms for bunce", "clues": ["gold rush", "manna from heaven", "gravy", "bonanza", "boom", "windfall", "godsend", "bunce"]}, {"answer": "bunch", "hint": "synonyms for bunch", "clues": ["gang", "caboodle", "clustering", "crowd", "crew", "clump", "lot", "bunch"]}, {"answer": "bunco", "hint": "synonyms for bunco", "clues": ["bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick", "bunco"]}, {"answer": "bunco_game", "hint": "synonyms for bunco game", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick"]}, {"answer": "buncombe", "hint": "synonyms for buncombe", "clues": ["rot", "bunk", "guff", "hogwash", "bunkum", "buncombe"]}, {"answer": "bundle", "hint": "synonyms for bundle", "clues": ["package", "megabucks", "parcel", "big bucks", "pile", "packet", "sheaf", "big money", "bundle"]}, {"answer": "bungle", "hint": "synonyms for bungle", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "boner", "botch", "bungle"]}, {"answer": "bunk", "hint": "synonyms for bunk", "clues": ["nonsense", "buncombe", "guff", "hogwash", "bunkum", "nonsensicality", "meaninglessness", "built in bed", "feed bunk", "hokum", "bunk bed", "rot", "berth", "bunk"]}, {"answer": "bunko", "hint": "synonyms for bunko", "clues": ["bunco", "bunko game", "gyp", "confidence game", "hustle", "sting", "flimflam", "con game", "con", "confidence trick", "bunko"]}, {"answer": "bunko_game", "hint": "synonyms for bunko game", "clues": ["bunco", "gyp", "bunco game", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick"]}, {"answer": "bunkum", "hint": "synonyms for bunkum", "clues": ["buncombe", "bunk", "guff", "hogwash", "rot", "bunkum"]}, {"answer": "burden", "hint": "synonyms for burden", "clues": ["load", "onus", "essence", "effect", "encumbrance", "gist", "core", "burden"]}, {"answer": "bureau", "hint": "synonyms for bureau", "clues": ["federal agency", "office", "chest", "agency", "dresser", "government agency", "chest of drawers", "authority", "bureau"]}, {"answer": "burial", "hint": "synonyms for burial", "clues": ["sepulture", "inhumation", "burying", "entombment", "interment", "burial"]}, {"answer": "burial_ground", "hint": "synonyms for burial ground", "clues": ["burying ground", "graveyard", "necropolis", "cemetery", "memorial park", "burial site", "burial ground"]}, {"answer": "burial_site", "hint": "synonyms for burial site", "clues": ["burial ground", "burying ground", "graveyard", "necropolis", "cemetery", "memorial park", "burial site"]}, {"answer": "burnt_lime", "hint": "synonyms for burnt lime", "clues": ["calx", "unslaked lime", "lime", "calcium oxide", "calcined lime", "fluxing lime", "quicklime", "burnt lime"]}, {"answer": "burnt_umber", "hint": "synonyms for burnt umber", "clues": ["umber", "chocolate", "coffee", "deep brown", "burnt umber"]}, {"answer": "burst", "hint": "synonyms for burst", "clues": ["explosion", "fusillade", "fit", "salvo", "outburst", "flare-up", "volley", "burst"]}, {"answer": "burying_ground", "hint": "synonyms for burying ground", "clues": ["burial ground", "graveyard", "necropolis", "cemetery", "memorial park", "burial site", "burying ground"]}, {"answer": "bus", "hint": "synonyms for bus", "clues": ["passenger vehicle", "double-decker", "jalopy", "motorcoach", "heap", "charabanc", "omnibus", "autobus", "busbar", "bus topology", "motorbus", "coach", "jitney", "bus"]}, {"answer": "business", "hint": "synonyms for business", "clues": ["line", "business organization", "job", "commercial enterprise", "business sector", "business concern", "patronage", "stage business", "occupation", "business enterprise", "line of work", "clientele", "byplay", "concern", "business"]}, {"answer": "business_concern", "hint": "synonyms for business concern", "clues": ["business organization", "business", "concern", "business concern"]}, {"answer": "business_line", "hint": "synonyms for business line", "clues": ["line", "line of business", "line of products", "product line", "line of merchandise", "business line"]}, {"answer": "business_organisation", "hint": "synonyms for business organisation", "clues": ["business organization", "business", "business concern", "concern"]}, {"answer": "business_organization", "hint": "synonyms for business organization", "clues": ["business", "business concern", "business organisation", "concern"]}, {"answer": "buskin", "hint": "synonyms for buskin", "clues": ["half boot", "combat boot", "desert boot", "top boot", "buskin"]}, {"answer": "buss", "hint": "synonyms for buss", "clues": ["passenger vehicle", "double-decker", "jalopy", "motorcoach", "bus", "osculation", "heap", "charabanc", "omnibus", "autobus", "busbar", "bus topology", "coach", "motorbus", "kiss", "jitney"]}, {"answer": "bustle", "hint": "synonyms for bustle", "clues": ["flurry", "stir", "ado", "fuss", "hustle", "bustle"]}, {"answer": "butchery", "hint": "synonyms for butchery", "clues": ["shambles", "butchering", "massacre", "carnage", "mass murder", "slaughter", "slaughterhouse", "abattoir", "butchery"]}, {"answer": "butt", "hint": "synonyms for butt", "clues": ["cigarette", "butt joint", "butt end", "stub", "fag", "coffin nail", "target", "butt"]}, {"answer": "butterfly_nut", "hint": "synonyms for butterfly nut", "clues": ["thumbnut", "wing screw", "wing nut", "butterfly nut"]}, {"answer": "bw", "hint": "synonyms for bw", "clues": ["bioattack", "biological warfare", "biologic attack", "bw"]}, {"answer": "by-line", "hint": "synonyms for by-line", "clues": ["avocation", "pursuit", "hobby", "spare-time activity", "credit line", "sideline", "by-line"]}, {"answer": "bye", "hint": "synonyms for bye", "clues": ["auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "pass", "so long", "sayonara", "au revoir", "bye"]}, {"answer": "bye-bye", "hint": "synonyms for bye-bye", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "adios", "so long", "sayonara", "au revoir", "bye-bye"]}, {"answer": "byname", "hint": "synonyms for byname", "clues": ["soubriquet", "cognomen", "nickname", "moniker", "byname"]}, {"answer": "bypass", "hint": "synonyms for bypass", "clues": ["shunt", "ring road", "beltway", "electrical shunt", "ringway", "bypass"]}, {"answer": "byre", "hint": "synonyms for byre", "clues": ["cow barn", "cowhouse", "cowshed", "byre"]}, {"answer": "c-section", "hint": "synonyms for c-section", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean", "c-section"]}, {"answer": "c.p.u.", "hint": "synonyms for c.p.u.", "clues": ["central processor", "mainframe", "processor", "central processing unit", "c.p.u."]}, {"answer": "cab", "hint": "synonyms for cab", "clues": ["hack", "cabriolet", "taxicab", "taxi", "cab"]}, {"answer": "cabal", "hint": "synonyms for cabal", "clues": ["faction", "camarilla", "junto", "conspiracy", "cabal"]}, {"answer": "cabaret", "hint": "synonyms for cabaret", "clues": ["floor show", "night club", "club", "nightspot", "cabaret"]}, {"answer": "cabbage", "hint": "synonyms for cabbage", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "chou", "dinero", "gelt", "wampum", "bread", "loot", "dough", "cabbage"]}, {"answer": "cable", "hint": "synonyms for cable", "clues": ["line", "cable system", "cablegram", "cable's length", "cable television service", "overseas telegram", "transmission line", "cable television", "cable"]}, {"answer": "cable_tramway", "hint": "synonyms for cable tramway", "clues": ["tram", "ropeway", "tramway", "aerial tramway", "cable tramway"]}, {"answer": "caboose", "hint": "synonyms for caboose", "clues": ["cookhouse", "cabin car", "ship's galley", "galley", "caboose"]}, {"answer": "cackle", "hint": "synonyms for cackle", "clues": ["yack", "yakety-yak", "chatter", "cackle"]}, {"answer": "cacodyl", "hint": "synonyms for cacodyl", "clues": ["arsenic group", "cacodyl radical", "tetramethyldiarsine", "cacodyl group", "cacodyl"]}, {"answer": "cacophony", "hint": "synonyms for cacophony", "clues": ["din", "clamor", "blare", "blaring", "cacophony"]}, {"answer": "cadence", "hint": "synonyms for cadence", "clues": ["meter", "metre", "cadency", "beat", "measure"]}, {"answer": "caesarean_delivery", "hint": "synonyms for caesarean delivery", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "caesarean_section", "hint": "synonyms for caesarean section", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "caesarian_delivery", "hint": "synonyms for caesarian delivery", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "caesarian_section", "hint": "synonyms for caesarian section", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "caesarism", "hint": "synonyms for caesarism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "caesarism"]}, {"answer": "caisson", "hint": "synonyms for caisson", "clues": ["cofferdam", "pneumatic caisson", "ammunition chest", "coffer", "lacuna", "caisson"]}, {"answer": "calamity", "hint": "synonyms for calamity", "clues": ["cataclysm", "catastrophe", "tragedy", "disaster", "calamity"]}, {"answer": "calciferol", "hint": "synonyms for calciferol", "clues": ["cholecalciferol", "ergocalciferol", "vitamin D", "viosterol", "calciferol"]}, {"answer": "calcined_lime", "hint": "synonyms for calcined lime", "clues": ["calx", "unslaked lime", "lime", "calcium oxide", "burnt lime", "fluxing lime", "quicklime", "calcined lime"]}, {"answer": "calcium_hydrate", "hint": "synonyms for calcium hydrate", "clues": ["lime", "lime hydrate", "caustic lime", "hydrated lime", "calcium hydroxide", "slaked lime", "calcium hydrate"]}, {"answer": "calcium_hydroxide", "hint": "synonyms for calcium hydroxide", "clues": ["lime", "lime hydrate", "caustic lime", "calcium hydrate", "hydrated lime", "slaked lime", "calcium hydroxide"]}, {"answer": "calcium_oxide", "hint": "synonyms for calcium oxide", "clues": ["calx", "unslaked lime", "lime", "calcined lime", "burnt lime", "fluxing lime", "quicklime", "calcium oxide"]}, {"answer": "calculation", "hint": "synonyms for calculation", "clues": ["reckoning", "computing", "deliberation", "computation", "figuring", "calculation"]}, {"answer": "calculus", "hint": "synonyms for calculus", "clues": ["infinitesimal calculus", "tophus", "concretion", "tartar", "calculus"]}, {"answer": "calean", "hint": "synonyms for calean", "clues": ["narghile", "sheesha", "kalian", "hookah", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble", "calean"]}, {"answer": "calendar_method", "hint": "synonyms for calendar method", "clues": ["calendar method of birth control", "rhythm", "rhythm method", "rhythm method of birth control", "calendar method"]}, {"answer": "calendar_method_of_birth_control", "hint": "synonyms for calendar method of birth control", "clues": ["calendar method", "rhythm", "rhythm method", "rhythm method of birth control", "calendar method of birth control"]}, {"answer": "caliber", "hint": "synonyms for caliber", "clues": ["calibre", "bore", "gauge", "quality"]}, {"answer": "calibre", "hint": "synonyms for calibre", "clues": ["bore", "gauge", "quality", "caliber"]}, {"answer": "call", "hint": "synonyms for call", "clues": ["song", "claim", "yell", "birdcall", "cry", "shout", "call option", "birdsong", "telephone call", "margin call", "vociferation", "phone call", "outcry", "call"]}, {"answer": "call_box", "hint": "synonyms for call box", "clues": ["telephone booth", "letter box", "telephone kiosk", "phone booth", "call box"]}, {"answer": "callathump", "hint": "synonyms for callathump", "clues": ["belling", "callithump", "chivaree", "callithump parade", "charivari"]}, {"answer": "callithump", "hint": "synonyms for callithump", "clues": ["charivari", "callithump parade", "chivaree", "belling", "callathump"]}, {"answer": "callosity", "hint": "synonyms for callosity", "clues": ["insensibility", "hardness", "callousness", "unfeelingness", "callosity"]}, {"answer": "callousness", "hint": "synonyms for callousness", "clues": ["insensibility", "unfeelingness", "hardness", "callosity", "callousness"]}, {"answer": "calorie", "hint": "synonyms for calorie", "clues": ["nutritionist's calorie", "gram calorie", "large calorie", "kilocalorie", "small calorie", "calorie"]}, {"answer": "calumniation", "hint": "synonyms for calumniation", "clues": ["traducement", "hatchet job", "defamation", "obloquy", "calumny", "calumniation"]}, {"answer": "calumny", "hint": "synonyms for calumny", "clues": ["traducement", "aspersion", "denigration", "defamation", "obloquy", "slander", "calumniation", "hatchet job", "calumny"]}, {"answer": "calx", "hint": "synonyms for calx", "clues": ["unslaked lime", "lime", "calcium oxide", "calcined lime", "burnt lime", "fluxing lime", "quicklime", "calx"]}, {"answer": "camaraderie", "hint": "synonyms for camaraderie", "clues": ["comradeliness", "comradeship", "comradery", "chumminess", "camaraderie"]}, {"answer": "campaign", "hint": "synonyms for campaign", "clues": ["safari", "hunting expedition", "cause", "run", "movement", "crusade", "military campaign", "drive", "effort", "political campaign", "campaign"]}, {"answer": "campaigning", "hint": "synonyms for campaigning", "clues": ["electioneering", "political campaign", "candidacy", "candidature", "campaigning"]}, {"answer": "campground", "hint": "synonyms for campground", "clues": ["camping ground", "camping site", "camping area", "campsite", "bivouac", "encampment", "campground"]}, {"answer": "camping_area", "hint": "synonyms for camping area", "clues": ["camping ground", "camping site", "campsite", "campground", "bivouac", "encampment", "camping area"]}, {"answer": "camping_ground", "hint": "synonyms for camping ground", "clues": ["camping site", "camping area", "campsite", "campground", "bivouac", "encampment", "camping ground"]}, {"answer": "camping_site", "hint": "synonyms for camping site", "clues": ["camping ground", "camping area", "campsite", "campground", "bivouac", "encampment", "camping site"]}, {"answer": "campsite", "hint": "synonyms for campsite", "clues": ["camping ground", "camping site", "camping area", "campground", "bivouac", "encampment", "campsite"]}, {"answer": "can", "hint": "synonyms for can", "clues": ["toilet", "potty", "canful", "commode", "lavatory", "tin can", "can buoy", "stool", "throne", "john", "lav", "privy", "tin", "crapper", "bathroom", "pot", "can"]}, {"answer": "candidacy", "hint": "synonyms for candidacy", "clues": ["electioneering", "political campaign", "campaigning", "candidature", "candidacy"]}, {"answer": "candidature", "hint": "synonyms for candidature", "clues": ["electioneering", "political campaign", "campaigning", "candidacy", "candidature"]}, {"answer": "candidness", "hint": "synonyms for candidness", "clues": ["frankness", "candour", "directness", "forthrightness", "candidness"]}, {"answer": "candied_apple", "hint": "synonyms for candied apple", "clues": ["taffy apple", "caramel apple", "toffee apple", "candy apple", "candied apple"]}, {"answer": "candle", "hint": "synonyms for candle", "clues": ["wax light", "standard candle", "taper", "candela", "cd", "candle"]}, {"answer": "candor", "hint": "synonyms for candor", "clues": ["candour", "fairness", "directness", "frankness", "fair-mindedness", "candidness", "forthrightness"]}, {"answer": "candour", "hint": "synonyms for candour", "clues": ["frankness", "fair-mindedness", "fairness", "candidness", "candor", "directness", "forthrightness"]}, {"answer": "candy_apple", "hint": "synonyms for candy apple", "clues": ["taffy apple", "caramel apple", "candied apple", "toffee apple", "candy apple"]}, {"answer": "canister", "hint": "synonyms for canister", "clues": ["case shot", "cannister", "tin", "canister shot"]}, {"answer": "cant", "hint": "synonyms for cant", "clues": ["buzzword", "argot", "pious platitude", "bevel", "bank", "patois", "jargon", "chamfer", "camber", "slang", "lingo", "vernacular", "cant"]}, {"answer": "canvas", "hint": "synonyms for canvas", "clues": ["sail", "canvass", "canvas tent", "sheet"]}, {"answer": "canvass", "hint": "synonyms for canvass", "clues": ["opinion poll", "sail", "public opinion poll", "canvas", "canvas tent", "poll", "sheet"]}, {"answer": "cap", "hint": "synonyms for cap", "clues": ["roof", "hood", "jacket", "crownwork", "capital", "detonator", "crown", "detonating device", "chapiter", "ceiling", "jacket crown", "cap"]}, {"answer": "capacitance", "hint": "synonyms for capacitance", "clues": ["electrical capacity", "capacitor", "condenser", "capacity", "electrical condenser", "capacitance"]}, {"answer": "capacity", "hint": "synonyms for capacity", "clues": ["capacitance", "electrical capacity", "content", "mental ability", "capacity"]}, {"answer": "capacity_measure", "hint": "synonyms for capacity measure", "clues": ["displacement unit", "cubage unit", "cubature unit", "volume unit", "cubic measure", "cubic content unit", "capacity unit", "capacity measure"]}, {"answer": "capacity_unit", "hint": "synonyms for capacity unit", "clues": ["displacement unit", "cubage unit", "volume unit", "cubic measure", "cubic content unit", "cubature unit", "capacity measure", "capacity unit"]}, {"answer": "caper", "hint": "synonyms for caper", "clues": ["gambol", "job", "joke", "capriole", "trick", "put-on", "antic", "prank", "frolic", "play", "romp", "caper"]}, {"answer": "capital_letter", "hint": "synonyms for capital letter", "clues": ["upper-case letter", "uppercase", "majuscule", "capital", "capital letter"]}, {"answer": "capriciousness", "hint": "synonyms for capriciousness", "clues": ["whimsicality", "arbitrariness", "whimsy", "unpredictability", "flightiness", "capriciousness"]}, {"answer": "capstone", "hint": "synonyms for capstone", "clues": ["stretcher", "copestone", "coping stone", "finishing touch", "capstone"]}, {"answer": "capsule", "hint": "synonyms for capsule", "clues": ["abridgement", "condensation", "ejector seat", "space capsule", "capsule"]}, {"answer": "captain_hicks", "hint": "synonyms for captain hicks", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "sise", "hexad", "sixer", "sextuplet", "captain hicks"]}, {"answer": "car", "hint": "synonyms for car", "clues": ["auto", "elevator car", "gondola", "cable car", "automobile", "railcar", "motorcar", "railroad car", "machine", "railway car", "car"]}, {"answer": "car_horn", "hint": "synonyms for car horn", "clues": ["hooter", "horn", "automobile horn", "motor horn", "car horn"]}, {"answer": "car_maker", "hint": "synonyms for car maker", "clues": ["auto maker", "auto manufacturer", "car manufacturer", "carmaker"]}, {"answer": "car_manufacturer", "hint": "synonyms for car manufacturer", "clues": ["auto maker", "car maker", "auto manufacturer", "car manufacturer"]}, {"answer": "car_rental", "hint": "synonyms for car rental", "clues": ["u-drive", "self-drive", "hire car", "rent-a-car", "car rental"]}, {"answer": "caramel_apple", "hint": "synonyms for caramel apple", "clues": ["taffy apple", "candied apple", "toffee apple", "candy apple", "caramel apple"]}, {"answer": "carbolic_acid", "hint": "synonyms for carbolic acid", "clues": ["phenylic acid", "phenol", "hydroxybenzene", "oxybenzene", "carbolic acid"]}, {"answer": "carbon_black", "hint": "synonyms for carbon black", "clues": ["soot", "crock", "smut", "lampblack", "carbon black"]}, {"answer": "carbonated_water", "hint": "synonyms for carbonated water", "clues": ["soda water", "seltzer", "club soda", "sparkling water", "carbonated water"]}, {"answer": "card", "hint": "synonyms for card", "clues": ["add-in", "carte du jour", "calling card", "poster", "bill", "notice", "bill of fare", "menu", "identity card", "carte", "board", "circuit board", "posting", "placard", "lineup", "plug-in", "visiting card", "scorecard", "batting order", "card"]}, {"answer": "cards", "hint": "synonyms for cards", "clues": ["add-in", "carte du jour", "calling card", "poster", "bill", "notice", "bill of fare", "menu", "card game", "identity card", "carte", "board", "circuit board", "card", "posting", "placard", "lineup", "plug-in", "visiting card", "scorecard", "batting order"]}, {"answer": "care", "hint": "synonyms for care", "clues": ["precaution", "tutelage", "guardianship", "upkeep", "maintenance", "fear", "tending", "aid", "attention", "caution", "charge", "concern", "forethought", "care"]}, {"answer": "carelessness", "hint": "synonyms for carelessness", "clues": ["negligence", "neglect", "nonperformance", "sloppiness", "carelessness"]}, {"answer": "caressing", "hint": "synonyms for caressing", "clues": ["fondling", "necking", "kissing", "snuggling", "cuddling", "petting", "hugging", "smooching", "caressing"]}, {"answer": "cargo", "hint": "synonyms for cargo", "clues": ["load", "lading", "consignment", "shipment", "payload", "freight", "cargo"]}, {"answer": "cargo_area", "hint": "synonyms for cargo area", "clues": ["hold", "cargo deck", "cargo hold", "storage area", "cargo area"]}, {"answer": "cargo_deck", "hint": "synonyms for cargo deck", "clues": ["hold", "cargo hold", "storage area", "cargo area", "cargo deck"]}, {"answer": "cargo_hold", "hint": "synonyms for cargo hold", "clues": ["hold", "cargo deck", "storage area", "cargo area", "cargo hold"]}, {"answer": "cargo_ships", "hint": "synonyms for cargo ships", "clues": ["shipping", "merchant marine", "cargo ship", "merchant vessels", "cargo vessel"]}, {"answer": "carmaker", "hint": "synonyms for carmaker", "clues": ["auto maker", "car maker", "auto manufacturer", "car manufacturer"]}, {"answer": "carnage", "hint": "synonyms for carnage", "clues": ["massacre", "mass murder", "butchery", "slaughter", "carnage"]}, {"answer": "carnal_knowledge", "hint": "synonyms for carnal knowledge", "clues": ["sexual intercourse", "coition", "sex act", "coitus", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "carnal knowledge"]}, {"answer": "carnality", "hint": "synonyms for carnality", "clues": ["prurience", "lubricity", "lasciviousness", "carnality"]}, {"answer": "carousal", "hint": "synonyms for carousal", "clues": ["booze-up", "bender", "carouse", "toot", "carousal"]}, {"answer": "carouse", "hint": "synonyms for carouse", "clues": ["booze-up", "toot", "bender", "carousal", "carouse"]}, {"answer": "carousel", "hint": "synonyms for carousel", "clues": ["merry-go-round", "whirligig", "roundabout", "luggage carrousel", "carrousel"]}, {"answer": "carrefour", "hint": "synonyms for carrefour", "clues": ["intersection", "crossroad", "crossway", "crossing", "carrefour"]}, {"answer": "carriage", "hint": "synonyms for carriage", "clues": ["pusher", "bearing", "perambulator", "rig", "baby carriage", "pram", "equipage", "stroller", "passenger car", "coach", "pushchair", "posture", "baby buggy", "go-cart", "carriage"]}, {"answer": "carrier", "hint": "synonyms for carrier", "clues": ["common carrier", "attack aircraft carrier", "flattop", "aircraft carrier", "carrier wave", "carrier"]}, {"answer": "carrousel", "hint": "synonyms for carrousel", "clues": ["merry-go-round", "whirligig", "roundabout", "luggage carrousel", "carousel"]}, {"answer": "carrying_out", "hint": "synonyms for carrying out", "clues": ["execution", "carrying into action", "performance", "implementation", "carrying out"]}, {"answer": "carte", "hint": "synonyms for carte", "clues": ["bill of fare", "carte du jour", "menu", "card", "carte"]}, {"answer": "carte_du_jour", "hint": "synonyms for carte du jour", "clues": ["bill of fare", "carte", "menu", "card", "carte du jour"]}, {"answer": "case", "hint": "synonyms for case", "clues": ["typeface", "instance", "cause", "face", "causa", "pillowcase", "shell", "suit", "compositor's case", "display case", "fount", "lawsuit", "pillow slip", "casing", "grammatical case", "caseful", "typesetter's case", "vitrine", "showcase", "slip", "example"]}, {"answer": "cash_dispenser", "hint": "synonyms for cash dispenser", "clues": ["automated teller machine", "automatic teller", "cash machine", "cash dispenser"]}, {"answer": "cash_in_hand", "hint": "synonyms for cash in hand", "clues": ["funds", "monetary resource", "pecuniary resource", "finances", "cash in hand"]}, {"answer": "cash_machine", "hint": "synonyms for cash machine", "clues": ["cash dispenser", "automated teller machine", "automatic teller", "cash machine"]}, {"answer": "cast", "hint": "synonyms for cast", "clues": ["plaster cast", "form", "casting", "dramatis personae", "stamp", "mould", "shape", "roll", "cast of characters", "hurl", "plaster bandage"]}, {"answer": "castigation", "hint": "synonyms for castigation", "clues": ["dressing down", "chewing out", "bawling out", "earful", "going-over", "chastisement", "upbraiding", "castigation"]}, {"answer": "castle_in_spain", "hint": "synonyms for castle in spain", "clues": ["castle in the air", "revery", "oneirism", "air castle", "castle in Spain", "reverie", "daydreaming"]}, {"answer": "castle_in_the_air", "hint": "synonyms for castle in the air", "clues": ["revery", "oneirism", "daydreaming", "air castle", "castle in Spain", "reverie", "castle in the air"]}, {"answer": "cat", "hint": "synonyms for cat", "clues": ["computerized tomography", "qat", "kat", "cat-o'-nine-tails", "computed axial tomography", "cat"]}, {"answer": "cat_sleep", "hint": "synonyms for cat sleep", "clues": ["forty winks", "snooze", "catnap", "short sleep", "nap", "cat sleep"]}, {"answer": "cat_valium", "hint": "synonyms for cat valium", "clues": ["jet", "green", "special K", "super C", "super acid", "honey oil", "cat valium"]}, {"answer": "cataclysm", "hint": "synonyms for cataclysm", "clues": ["catastrophe", "disaster", "tragedy", "calamity", "cataclysm"]}, {"answer": "catamenia", "hint": "synonyms for catamenia", "clues": ["menstruum", "menses", "period", "flow", "menstruation", "catamenia"]}, {"answer": "cataphract", "hint": "synonyms for cataphract", "clues": ["suit of armor", "body armor", "coat of mail", "cataphract"]}, {"answer": "catapult", "hint": "synonyms for catapult", "clues": ["launcher", "onager", "arbalest", "trebuchet", "ballista", "sling", "slingshot", "bricole", "mangonel", "catapult"]}, {"answer": "catastrophe", "hint": "synonyms for catastrophe", "clues": ["disaster", "cataclysm", "tragedy", "calamity", "catastrophe"]}, {"answer": "catch", "hint": "synonyms for catch", "clues": ["snatch", "snap", "collar", "stop", "arrest", "haul", "taking into custody", "apprehension", "gimmick", "pinch", "grab", "catch"]}, {"answer": "catchment_area", "hint": "synonyms for catchment area", "clues": ["watershed", "catchment basin", "river basin", "drainage area", "drainage basin", "basin", "catchment area"]}, {"answer": "catchment_basin", "hint": "synonyms for catchment basin", "clues": ["catchment area", "drainage area", "river basin", "drainage basin", "watershed", "basin", "catchment basin"]}, {"answer": "catchword", "hint": "synonyms for catchword", "clues": ["motto", "slogan", "guide word", "shibboleth", "catchword"]}, {"answer": "categorisation", "hint": "synonyms for categorisation", "clues": ["categorization", "compartmentalization", "assortment", "classification", "sorting"]}, {"answer": "categorization", "hint": "synonyms for categorization", "clues": ["categorisation", "compartmentalization", "assortment", "classification", "sorting"]}, {"answer": "cathouse", "hint": "synonyms for cathouse", "clues": ["bagnio", "house of ill repute", "house of prostitution", "brothel", "bawdyhouse", "whorehouse", "bordello", "sporting house", "cathouse"]}, {"answer": "catnap", "hint": "synonyms for catnap", "clues": ["forty winks", "snooze", "cat sleep", "short sleep", "nap", "catnap"]}, {"answer": "cattiness", "hint": "synonyms for cattiness", "clues": ["nastiness", "spite", "spitefulness", "bitchiness", "cattiness"]}, {"answer": "causa", "hint": "synonyms for causa", "clues": ["case", "lawsuit", "suit", "causa"]}, {"answer": "causal_factor", "hint": "synonyms for causal factor", "clues": ["determining factor", "determinative", "determinant", "determiner", "causal factor"]}, {"answer": "cause", "hint": "synonyms for cause", "clues": ["case", "lawsuit", "grounds", "causa", "reason", "movement", "crusade", "causal agency", "suit", "drive", "effort", "campaign"]}, {"answer": "causerie", "hint": "synonyms for causerie", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "chin wag", "gabfest", "tittle-tattle", "gab", "causerie"]}, {"answer": "caustic_lime", "hint": "synonyms for caustic lime", "clues": ["lime", "lime hydrate", "calcium hydrate", "hydrated lime", "calcium hydroxide", "slaked lime", "caustic lime"]}, {"answer": "caution", "hint": "synonyms for caution", "clues": ["cautiousness", "precaution", "circumspection", "caveat", "carefulness", "care", "forethought", "caution"]}, {"answer": "cavity", "hint": "synonyms for cavity", "clues": ["pit", "dental caries", "caries", "enclosed space", "tooth decay", "cavity"]}, {"answer": "celebration", "hint": "synonyms for celebration", "clues": ["solemnisation", "festivity", "jubilation", "celebration"]}, {"answer": "celerity", "hint": "synonyms for celerity", "clues": ["rapidness", "speediness", "quickness", "rapidity", "celerity"]}, {"answer": "celestial_sphere", "hint": "synonyms for celestial sphere", "clues": ["empyrean", "sphere", "firmament", "vault of heaven", "welkin", "heavens", "celestial sphere"]}, {"answer": "cell", "hint": "synonyms for cell", "clues": ["cubicle", "cellular telephone", "cadre", "mobile phone", "electric cell", "jail cell", "cellphone", "prison cell", "cell"]}, {"answer": "cellphone", "hint": "synonyms for cellphone", "clues": ["cell", "mobile phone", "cellular phone", "cellphone"]}, {"answer": "cellular_phone", "hint": "synonyms for cellular phone", "clues": ["cell", "mobile phone", "cellphone", "cellular telephone"]}, {"answer": "cellular_telephone", "hint": "synonyms for cellular telephone", "clues": ["cell", "mobile phone", "cellular phone", "cellphone"]}, {"answer": "cemetery", "hint": "synonyms for cemetery", "clues": ["burial ground", "burying ground", "graveyard", "necropolis", "memorial park", "burial site", "cemetery"]}, {"answer": "cental", "hint": "synonyms for cental", "clues": ["centner", "short hundredweight", "hundredweight", "cwt", "quintal", "cental"]}, {"answer": "centering", "hint": "synonyms for centering", "clues": ["direction", "snap", "focus", "focal point", "focussing", "centering"]}, {"answer": "centner", "hint": "synonyms for centner", "clues": ["cental", "cwt", "doppelzentner", "hundredweight", "short hundredweight", "metric hundredweight", "quintal", "centner"]}, {"answer": "central_office", "hint": "synonyms for central office", "clues": ["main office", "home base", "headquarters", "home office", "central office"]}, {"answer": "centre", "hint": "synonyms for centre", "clues": ["essence", "eye", "center", "center of attention", "heart", "midpoint", "sum", "gist", "marrow", "middle", "substance", "meat", "nub", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "core", "centre"]}, {"answer": "cerebration", "hint": "synonyms for cerebration", "clues": ["thought process", "mentation", "thought", "thinking", "intellection", "cerebration"]}, {"answer": "cerement", "hint": "synonyms for cerement", "clues": ["pall", "shroud", "winding-sheet", "winding-clothes", "cerement"]}, {"answer": "certificate", "hint": "synonyms for certificate", "clues": ["certification", "credential", "security", "certificate"]}, {"answer": "certification", "hint": "synonyms for certification", "clues": ["credential", "documentation", "enfranchisement", "corroboration", "certificate", "authentication", "certification"]}, {"answer": "cesarean_delivery", "hint": "synonyms for cesarean delivery", "clues": ["cesarean section", "caesarian", "caesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "cesarean_section", "hint": "synonyms for cesarean section", "clues": ["caesarian", "cesarean delivery", "abdominal delivery", "cesarean", "cesarian section"]}, {"answer": "cesarian_section", "hint": "synonyms for cesarian section", "clues": ["cesarean section", "caesarian", "cesarean delivery", "abdominal delivery", "cesarean"]}, {"answer": "chaff", "hint": "synonyms for chaff", "clues": ["shuck", "straw", "stubble", "stalk", "husk", "chaff"]}, {"answer": "chain", "hint": "synonyms for chain", "clues": ["chemical chain", "range of mountains", "mountain chain", "strand", "range", "concatenation", "mountain range", "string", "chain of mountains", "chain"]}, {"answer": "chain_armor", "hint": "synonyms for chain armor", "clues": ["mail", "ring armor", "chain mail", "chain armour", "ring mail"]}, {"answer": "chain_armour", "hint": "synonyms for chain armour", "clues": ["mail", "ring armor", "chain mail", "chain armor", "ring mail"]}, {"answer": "chain_mail", "hint": "synonyms for chain mail", "clues": ["mail", "ring armor", "chain armour", "ring mail", "chain mail"]}, {"answer": "chain_of_mountains", "hint": "synonyms for chain of mountains", "clues": ["range", "range of mountains", "mountain chain", "mountain range", "chain", "chain of mountains"]}, {"answer": "chains", "hint": "synonyms for chains", "clues": ["chemical chain", "irons", "mountain chain", "range of mountains", "chain", "strand", "range", "concatenation", "mountain range", "string", "chain of mountains"]}, {"answer": "chair", "hint": "synonyms for chair", "clues": ["hot seat", "professorship", "electric chair", "death chair", "chair"]}, {"answer": "chair_car", "hint": "synonyms for chair car", "clues": ["parlour car", "drawing-room car", "palace car", "chair car"]}, {"answer": "chalk", "hint": "synonyms for chalk", "clues": ["ice", "glass", "trash", "shabu", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "chalk"]}, {"answer": "chamber", "hint": "synonyms for chamber", "clues": ["bedroom", "bedchamber", "sleeping room", "sleeping accommodation", "chamber"]}, {"answer": "chambers", "hint": "synonyms for chambers", "clues": ["sleeping room", "sleeping accommodation", "bedroom", "chamber", "bedchamber"]}, {"answer": "chammy", "hint": "synonyms for chammy", "clues": ["chamois", "shammy leather", "shammy", "chamois leather", "chammy"]}, {"answer": "chammy_leather", "hint": "synonyms for chammy leather", "clues": ["chamois", "shammy leather", "chammy", "shammy", "chamois leather"]}, {"answer": "chamois", "hint": "synonyms for chamois", "clues": ["shammy leather", "chammy", "shammy", "chamois leather", "chamois"]}, {"answer": "chamois_leather", "hint": "synonyms for chamois leather", "clues": ["chamois", "shammy leather", "chammy", "shammy", "chamois leather"]}, {"answer": "chance_variable", "hint": "synonyms for chance variable", "clues": ["variate", "stochastic variable", "random variable", "chance variable"]}, {"answer": "change_of_mind", "hint": "synonyms for change of mind", "clues": ["turnaround", "reversal", "flip-flop", "turnabout", "change of mind"]}, {"answer": "channel", "hint": "synonyms for channel", "clues": ["line", "distribution channel", "groove", "communication channel", "television channel", "transmission channel", "channel"]}, {"answer": "channels", "hint": "synonyms for channels", "clues": ["line", "distribution channel", "channel", "groove", "communication channel", "television channel", "transmission channel"]}, {"answer": "chap", "hint": "synonyms for chap", "clues": ["crevice", "crack", "fissure", "cranny", "chap"]}, {"answer": "chaplet", "hint": "synonyms for chaplet", "clues": ["coronal", "garland", "lei", "wreath", "chaplet"]}, {"answer": "charabanc", "hint": "synonyms for charabanc", "clues": ["passenger vehicle", "double-decker", "motorcoach", "bus", "omnibus", "autobus", "motorbus", "coach", "jitney", "charabanc"]}, {"answer": "character", "hint": "synonyms for character", "clues": ["reference", "graphic symbol", "lineament", "grapheme", "fibre", "persona", "character reference", "theatrical role", "fiber", "quality", "role", "part", "character"]}, {"answer": "characterisation", "hint": "synonyms for characterisation", "clues": ["characterization", "delineation", "picture", "word-painting", "word picture", "depiction"]}, {"answer": "characterization", "hint": "synonyms for characterization", "clues": ["portrayal", "picture", "personation", "word picture", "depiction", "enactment", "word-painting", "characterisation", "delineation"]}, {"answer": "charade", "hint": "synonyms for charade", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "pasquinade", "parody", "takeoff", "charade"]}, {"answer": "charades", "hint": "synonyms for charades", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff"]}, {"answer": "charge", "hint": "synonyms for charge", "clues": ["complaint", "accusation", "billing", "bursting charge", "care", "thrill", "mission", "boot", "bang", "tutelage", "kick", "direction", "guardianship", "commission", "bearing", "heraldic bearing", "explosive charge", "electric charge", "flush", "burster", "armorial bearing", "cathexis", "rush", "charge"]}, {"answer": "charge_sheet", "hint": "synonyms for charge sheet", "clues": ["rap sheet", "police blotter", "blotter", "day book", "charge sheet"]}, {"answer": "charity_shot", "hint": "synonyms for charity shot", "clues": ["charity throw", "penalty free throw", "free throw", "foul shot", "charity toss", "charity shot"]}, {"answer": "charity_throw", "hint": "synonyms for charity throw", "clues": ["penalty free throw", "charity shot", "free throw", "foul shot", "charity toss", "charity throw"]}, {"answer": "charity_toss", "hint": "synonyms for charity toss", "clues": ["foul shot", "penalty free throw", "charity shot", "free throw", "charity throw", "charity toss"]}, {"answer": "charivari", "hint": "synonyms for charivari", "clues": ["callithump", "chivaree", "belling", "charivari"]}, {"answer": "charm", "hint": "synonyms for charm", "clues": ["magic spell", "appeal", "appealingness", "good luck charm", "spell", "charm"]}, {"answer": "chastity", "hint": "synonyms for chastity", "clues": ["virtue", "celibacy", "sexual abstention", "sexual morality", "chastity"]}, {"answer": "chat", "hint": "synonyms for chat", "clues": ["confabulation", "schmoose", "confab", "chat"]}, {"answer": "chatter", "hint": "synonyms for chatter", "clues": ["yack", "chattering", "yakety-yak", "cackle"]}, {"answer": "chauvinism", "hint": "synonyms for chauvinism", "clues": ["superpatriotism", "male chauvinism", "ultranationalism", "jingoism", "antifeminism", "chauvinism"]}, {"answer": "chaw", "hint": "synonyms for chaw", "clues": ["quid", "cud", "wad", "plug", "chew", "chaw"]}, {"answer": "cheapness", "hint": "synonyms for cheapness", "clues": ["sleaze", "bargain rate", "tackiness", "cut price", "tat", "cut rate", "cheapness"]}, {"answer": "check", "hint": "synonyms for check", "clues": ["tick", "deterrent", "handicap", "baulk", "bank check", "chit", "check-out procedure", "bridle", "confirmation", "checkout", "chip", "curb", "check mark", "cheque", "assay", "substantiation", "tab", "hindrance", "impediment", "verification", "check"]}, {"answer": "checkerberry", "hint": "synonyms for checkerberry", "clues": ["wintergreen", "teaberry", "spiceberry", "boxberry", "checkerberry"]}, {"answer": "checkout", "hint": "synonyms for checkout", "clues": ["checkout counter", "check-out procedure", "check", "checkout time", "checkout"]}, {"answer": "checkup", "hint": "synonyms for checkup", "clues": ["medical checkup", "medical examination", "medical", "medical exam", "health check", "checkup"]}, {"answer": "cheek", "hint": "synonyms for cheek", "clues": ["boldness", "brass", "nerve", "impudence", "face", "impertinence", "cheek"]}, {"answer": "cheekiness", "hint": "synonyms for cheekiness", "clues": ["insolence", "crust", "impertinence", "impudence", "gall", "freshness", "cheekiness"]}, {"answer": "cheerfulness", "hint": "synonyms for cheerfulness", "clues": ["sunniness", "blitheness", "sunshine", "cheer", "cheerfulness"]}, {"answer": "cheerio", "hint": "synonyms for cheerio", "clues": ["bye", "auf wiedersehen", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir", "cheerio"]}, {"answer": "chemise", "hint": "synonyms for chemise", "clues": ["shimmy", "shift", "sack", "teddy", "slip", "chemise"]}, {"answer": "chemist's", "hint": "synonyms for chemist's", "clues": ["chemist's shop", "pharmacy", "drugstore", "apothecary's shop", "chemist's"]}, {"answer": "chemist's_shop", "hint": "synonyms for chemist's shop", "clues": ["chemist's", "drugstore", "apothecary's shop", "pharmacy", "chemist's shop"]}, {"answer": "chew", "hint": "synonyms for chew", "clues": ["mastication", "quid", "cud", "wad", "manduction", "plug", "chewing", "chaw"]}, {"answer": "chewing_out", "hint": "synonyms for chewing out", "clues": ["dressing down", "earful", "bawling out", "castigation", "going-over", "upbraiding", "chewing out"]}, {"answer": "chicane", "hint": "synonyms for chicane", "clues": ["trickery", "guile", "shenanigan", "wile", "chicanery"]}, {"answer": "chicanery", "hint": "synonyms for chicanery", "clues": ["trickery", "guile", "shenanigan", "wile", "chicane"]}, {"answer": "chicha", "hint": "synonyms for chicha", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "shisha", "water pipe", "hubble-bubble", "chicha"]}, {"answer": "chicken_feed", "hint": "synonyms for chicken feed", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "crank", "deoxyephedrine", "meth", "methamphetamine hydrochloride", "scratch", "chicken feed"]}, {"answer": "chicness", "hint": "synonyms for chicness", "clues": ["chichi", "smartness", "chic", "last word", "stylishness", "swank", "modishness", "chicness"]}, {"answer": "child's_play", "hint": "synonyms for child's play", "clues": ["picnic", "snap", "pushover", "cinch", "piece of cake", "duck soup", "breeze", "walkover", "play", "child's play"]}, {"answer": "chile", "hint": "synonyms for chile", "clues": ["chili pepper", "chilli", "chilly", "chile"]}, {"answer": "chili", "hint": "synonyms for chili", "clues": ["chilly", "chili pepper", "chilli", "chili con carne", "chile"]}, {"answer": "chili_pepper", "hint": "synonyms for chili pepper", "clues": ["chilli", "chile", "chilly", "chili pepper"]}, {"answer": "chiliad", "hint": "synonyms for chiliad", "clues": ["1000", "one thousand", "yard", "grand", "thou", "thousand", "chiliad"]}, {"answer": "chill", "hint": "synonyms for chill", "clues": ["frisson", "quiver", "iciness", "shudder", "gelidity", "pall", "shiver", "thrill", "tingle", "chill"]}, {"answer": "chilli", "hint": "synonyms for chilli", "clues": ["chili pepper", "chile", "chilly", "chili"]}, {"answer": "chilliness", "hint": "synonyms for chilliness", "clues": ["frigidness", "coolness", "iciness", "frigidity", "nip", "chilliness"]}, {"answer": "chimneypiece", "hint": "synonyms for chimneypiece", "clues": ["mantelpiece", "mantle", "mantel", "chimneypiece"]}, {"answer": "chin-wag", "hint": "synonyms for chin-wag", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab"]}, {"answer": "chin-wagging", "hint": "synonyms for chin-wagging", "clues": ["small talk", "chin wagging", "chitchat", "gossip", "causerie", "gabfest", "tittle-tattle", "gab", "chin-wag"]}, {"answer": "chin_music", "hint": "synonyms for chin music", "clues": ["blether", "prattle", "idle talk", "prate", "chin music"]}, {"answer": "chin_wag", "hint": "synonyms for chin wag", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "gabfest", "tittle-tattle", "gab", "chin-wag"]}, {"answer": "chin_wagging", "hint": "synonyms for chin wagging", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "gabfest", "tittle-tattle", "gab", "chin-wag"]}, {"answer": "china_clay", "hint": "synonyms for china clay", "clues": ["china stone", "terra alba", "kaolin", "porcelain clay", "china clay"]}, {"answer": "china_stone", "hint": "synonyms for china stone", "clues": ["terra alba", "kaolin", "china clay", "porcelain clay", "china stone"]}, {"answer": "chinook", "hint": "synonyms for chinook", "clues": ["chinook salmon", "king salmon", "chinook wind", "snow eater", "chinook"]}, {"answer": "chip", "hint": "synonyms for chip", "clues": ["flake", "fleck", "micro chip", "chipping", "bit", "chip shot", "splintering", "check", "microprocessor chip", "scrap", "potato chip", "buffalo chip", "crisp", "cow chip", "silicon chip", "cow dung", "poker chip", "chip"]}, {"answer": "chips", "hint": "synonyms for chips", "clues": ["flake", "fleck", "micro chip", "chip shot", "microprocessor chip", "scrap", "potato chip", "buffalo chip", "french-fried potatoes", "silicon chip", "french fries", "poker chip", "fries", "chip", "chipping", "bit", "splintering", "check", "crisp", "cow chip", "cow dung"]}, {"answer": "chit-chat", "hint": "synonyms for chit-chat", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab"]}, {"answer": "chit_chat", "hint": "synonyms for chit chat", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab"]}, {"answer": "chitchat", "hint": "synonyms for chitchat", "clues": ["small talk", "chin-wagging", "gossip", "causerie", "chin wag", "chit-chat", "gabfest", "tittle-tattle", "gab"]}, {"answer": "chivaree", "hint": "synonyms for chivaree", "clues": ["callathump", "shivaree", "belling", "charivari"]}, {"answer": "chocolate", "hint": "synonyms for chocolate", "clues": ["umber", "burnt umber", "hot chocolate", "deep brown", "cocoa", "coffee", "drinking chocolate", "chocolate"]}, {"answer": "choice_of_words", "hint": "synonyms for choice of words", "clues": ["verbiage", "phraseology", "wording", "diction", "phrasing", "choice of words"]}, {"answer": "choker", "hint": "synonyms for choker", "clues": ["ruff", "dog collar", "collar", "neckband", "ruffle", "neck ruff", "choker"]}, {"answer": "cholecalciferol", "hint": "synonyms for cholecalciferol", "clues": ["ergocalciferol", "vitamin D", "calciferol", "viosterol", "cholecalciferol"]}, {"answer": "choler", "hint": "synonyms for choler", "clues": ["peevishness", "petulance", "fussiness", "crossness", "anger", "fretfulness", "irritability", "ire", "choler"]}, {"answer": "chop_steak", "hint": "synonyms for chop steak", "clues": ["beef patty", "chopped steak", "hamburger steak", "chopsteak"]}, {"answer": "chopper", "hint": "synonyms for chopper", "clues": ["cleaver", "helicopter", "chop", "meat cleaver", "eggbeater", "whirlybird", "chopper"]}, {"answer": "chopsteak", "hint": "synonyms for chopsteak", "clues": ["beef patty", "chopped steak", "hamburger steak", "chopsteak"]}, {"answer": "chronological_sequence", "hint": "synonyms for chronological sequence", "clues": ["successiveness", "sequence", "succession", "chronological succession", "chronological sequence"]}, {"answer": "chronological_succession", "hint": "synonyms for chronological succession", "clues": ["sequence", "succession", "chronological sequence", "successiveness", "chronological succession"]}, {"answer": "chumminess", "hint": "synonyms for chumminess", "clues": ["comradeship", "camaraderie", "comradeliness", "comradery", "chumminess"]}, {"answer": "chunk", "hint": "synonyms for chunk", "clues": ["clod", "ball", "lump", "glob", "chunk"]}, {"answer": "chute", "hint": "synonyms for chute", "clues": ["slide", "slideway", "parachute", "sloping trough", "chute"]}, {"answer": "cigaret", "hint": "synonyms for cigaret", "clues": ["cigarette", "butt", "fag", "coffin nail"]}, {"answer": "cigarette", "hint": "synonyms for cigarette", "clues": ["butt", "fag", "coffin nail", "cigaret"]}, {"answer": "cinch", "hint": "synonyms for cinch", "clues": ["picnic", "snap", "girth", "pushover", "child's play", "piece of cake", "duck soup", "breeze", "walkover", "cinch"]}, {"answer": "cincture", "hint": "synonyms for cincture", "clues": ["waistband", "girdle", "sash", "waistcloth", "cincture"]}, {"answer": "cinema", "hint": "synonyms for cinema", "clues": ["celluloid", "movie theatre", "movie house", "film", "picture palace", "cinema"]}, {"answer": "cinque", "hint": "synonyms for cinque", "clues": ["quint", "quintet", "pentad", "fin", "quintuplet", "5", "five", "fivesome", "cinque"]}, {"answer": "cipher", "hint": "synonyms for cipher", "clues": ["goose egg", "nix", "cryptograph", "0", "aught", "nothing", "zippo", "zero", "nil", "zilch", "cypher", "null", "secret code", "nada", "zip", "nought", "cipher"]}, {"answer": "circle", "hint": "synonyms for circle", "clues": ["rope", "round", "roach", "set", "lap", "lot", "rotary", "band", "roofy", "circuit", "roundabout", "dress circle", "forget me drug", "traffic circle", "rophy", "circle"]}, {"answer": "circuit", "hint": "synonyms for circuit", "clues": ["electrical circuit", "racing circuit", "tour", "circle", "lap", "circumference", "circuit"]}, {"answer": "circuit_board", "hint": "synonyms for circuit board", "clues": ["card", "add-in", "circuit card", "plug-in", "board"]}, {"answer": "circuit_card", "hint": "synonyms for circuit card", "clues": ["card", "add-in", "plug-in", "board", "circuit board"]}, {"answer": "circumspection", "hint": "synonyms for circumspection", "clues": ["caution", "discretion", "discreetness", "prudence", "circumspection"]}, {"answer": "citation", "hint": "synonyms for citation", "clues": ["reference", "mention", "quote", "cite", "credit", "commendation", "quotation", "acknowledgment", "citation"]}, {"answer": "cite", "hint": "synonyms for cite", "clues": ["citation", "reference", "quotation", "mention", "credit", "acknowledgment", "cite"]}, {"answer": "cither", "hint": "synonyms for cither", "clues": ["cittern", "zither", "citole", "cither"]}, {"answer": "clam", "hint": "synonyms for clam", "clues": ["one dollar bill", "dollar bill", "dollar", "buck", "clam"]}, {"answer": "clamor", "hint": "synonyms for clamor", "clues": ["clamoring", "hue and cry", "blare", "clamour", "cacophony", "blaring", "din"]}, {"answer": "clams", "hint": "synonyms for clams", "clues": ["lucre", "buck", "sugar", "lettuce", "pelf", "simoleons", "moolah", "dollar", "boodle", "lolly", "shekels", "kale", "scratch", "clam", "dinero", "gelt", "wampum", "one dollar bill", "cabbage", "bread", "loot", "dollar bill", "dough"]}, {"answer": "clan", "hint": "synonyms for clan", "clues": ["kin group", "kinship group", "kindred", "tribe", "kin", "clan"]}, {"answer": "clang", "hint": "synonyms for clang", "clues": ["clangor", "crash", "clash", "clank", "clang"]}, {"answer": "clangor", "hint": "synonyms for clangor", "clues": ["crash", "clangoring", "clash", "clank", "clangour", "clang"]}, {"answer": "clangoring", "hint": "synonyms for clangoring", "clues": ["clangor", "crash", "clash", "clank", "clang"]}, {"answer": "clangour", "hint": "synonyms for clangour", "clues": ["clangor", "crash", "clash", "clank", "clang"]}, {"answer": "clank", "hint": "synonyms for clank", "clues": ["clangor", "crash", "clash", "clang", "clank"]}, {"answer": "clap", "hint": "synonyms for clap", "clues": ["clack", "bam", "eruption", "blast", "bang", "clap"]}, {"answer": "clappers", "hint": "synonyms for clappers", "clues": ["finger cymbals", "tongue", "castanets", "clapper", "bones"]}, {"answer": "claptrap", "hint": "synonyms for claptrap", "clues": ["rant", "fustian", "bombast", "blah", "claptrap"]}, {"answer": "clarity", "hint": "synonyms for clarity", "clues": ["pellucidity", "lucidness", "lucidity", "limpidity", "clearness", "uncloudedness", "clarity"]}, {"answer": "clash", "hint": "synonyms for clash", "clues": ["encounter", "clangoring", "clank", "clang", "brush", "crash", "skirmish", "clangour", "clash"]}, {"answer": "clasp", "hint": "synonyms for clasp", "clues": ["clutches", "grip", "grasp", "hold", "clench", "clasp"]}, {"answer": "class", "hint": "synonyms for class", "clues": ["form", "family", "stratum", "course of instruction", "course of study", "socio-economic class", "grade", "social class", "year", "course", "division", "category", "class"]}, {"answer": "classification", "hint": "synonyms for classification", "clues": ["categorization", "compartmentalization", "assortment", "sorting", "classification"]}, {"answer": "clay_sculpture", "hint": "synonyms for clay sculpture", "clues": ["modeling", "molding", "mould", "clay sculpture"]}, {"answer": "cleanup", "hint": "synonyms for cleanup", "clues": ["killing", "cleaning", "cleanup spot", "cleanup position", "cleanup"]}, {"answer": "clearness", "hint": "synonyms for clearness", "clues": ["pellucidity", "lucidity", "uncloudedness", "limpidity", "lucidness", "clarity", "clearness"]}, {"answer": "clench", "hint": "synonyms for clench", "clues": ["clasp", "clutches", "grip", "grasp", "hold", "clinch", "clench"]}, {"answer": "cleverness", "hint": "synonyms for cleverness", "clues": ["smartness", "ingeniousness", "inventiveness", "brightness", "ingenuity", "cleverness"]}, {"answer": "cliche", "hint": "synonyms for cliche", "clues": ["bromide", "banality", "platitude", "commonplace", "cliche"]}, {"answer": "click", "hint": "synonyms for click", "clues": ["pawl", "clink", "suction stop", "dog", "mouse click", "detent", "chink", "click"]}, {"answer": "climax", "hint": "synonyms for climax", "clues": ["sexual climax", "culmination", "flood tide", "coming", "orgasm", "climax"]}, {"answer": "climb", "hint": "synonyms for climb", "clues": ["mounting", "upgrade", "ascent", "climbing", "rise", "acclivity"]}, {"answer": "clinch", "hint": "synonyms for clinch", "clues": ["squeeze", "clench", "hug", "clamp", "clinch"]}, {"answer": "clink", "hint": "synonyms for clink", "clues": ["gaol", "click", "jailhouse", "chink", "poky", "jail", "slammer", "clink"]}, {"answer": "clip", "hint": "synonyms for clip", "clues": ["magazine", "cartridge clip", "clipping", "cartridge holder", "snip", "time", "clip"]}, {"answer": "clip-clop", "hint": "synonyms for clip-clop", "clues": ["clop", "clopping", "clippety-clop", "clumping", "clunking", "clip-clop"]}, {"answer": "clippety-clop", "hint": "synonyms for clippety-clop", "clues": ["clip-clop", "clop", "clopping", "clumping", "clunking", "clippety-clop"]}, {"answer": "clipping", "hint": "synonyms for clipping", "clues": ["clip", "trim", "trimming", "snip", "press clipping", "press cutting", "newspaper clipping", "cutting", "clipping"]}, {"answer": "clique", "hint": "synonyms for clique", "clues": ["ingroup", "inner circle", "pack", "coterie", "camp", "clique"]}, {"answer": "clod", "hint": "synonyms for clod", "clues": ["chunk", "ball", "lump", "glob", "clod"]}, {"answer": "clog", "hint": "synonyms for clog", "clues": ["patten", "clog dance", "geta", "sabot", "clog dancing", "clog"]}, {"answer": "clop", "hint": "synonyms for clop", "clues": ["clip-clop", "clopping", "clippety-clop", "clumping", "clunking", "clop"]}, {"answer": "clopping", "hint": "synonyms for clopping", "clues": ["clip-clop", "clop", "clippety-clop", "clumping", "clunking", "clopping"]}, {"answer": "close_call", "hint": "synonyms for close call", "clues": ["squeak", "narrow escape", "close shave", "close call"]}, {"answer": "close_shave", "hint": "synonyms for close shave", "clues": ["squeak", "close call", "narrow escape", "close shave"]}, {"answer": "closeness", "hint": "synonyms for closeness", "clues": ["secretiveness", "tightness", "intimacy", "minginess", "niggardness", "nearness", "meanness", "stuffiness", "familiarity", "parsimoniousness", "parsimony", "tightfistedness", "closeness"]}, {"answer": "closet", "hint": "synonyms for closet", "clues": ["wardrobe", "water closet", "press", "cupboard", "loo", "closet"]}, {"answer": "closure", "hint": "synonyms for closure", "clues": ["gag law", "resolution", "settlement", "cloture", "stoppage", "shutdown", "closing", "closedown", "block", "stop", "law of closure", "gag rule", "blockage", "occlusion"]}, {"answer": "clothing", "hint": "synonyms for clothing", "clues": ["article of clothing", "habiliment", "vesture", "wear", "wearable", "clothing"]}, {"answer": "cloudburst", "hint": "synonyms for cloudburst", "clues": ["downpour", "deluge", "torrent", "pelter", "soaker", "waterspout", "cloudburst"]}, {"answer": "clout", "hint": "synonyms for clout", "clues": ["slug", "pull", "lick", "clout nail", "poke", "biff", "punch", "clout"]}, {"answer": "clowning", "hint": "synonyms for clowning", "clues": ["frivolity", "japery", "comedy", "harlequinade", "buffoonery", "prank", "funniness", "drollery", "clowning"]}, {"answer": "club", "hint": "synonyms for club", "clues": ["society", "guild", "cabaret", "clubhouse", "order", "baseball club", "lodge", "ball club", "social club", "golf-club", "night club", "nine", "nightspot", "club"]}, {"answer": "club_soda", "hint": "synonyms for club soda", "clues": ["carbonated water", "soda water", "seltzer", "sparkling water", "club soda"]}, {"answer": "clump", "hint": "synonyms for clump", "clues": ["clod", "ball", "clunk", "cluster", "thud", "thumping", "glob", "bunch", "chunk", "lump"]}, {"answer": "clumping", "hint": "synonyms for clumping", "clues": ["clip-clop", "clop", "clopping", "clippety-clop", "clunking", "clumping"]}, {"answer": "clumsiness", "hint": "synonyms for clumsiness", "clues": ["maladroitness", "slowness", "ineptitude", "awkwardness", "ineptness", "stiffness", "gracelessness", "clumsiness"]}, {"answer": "clunk", "hint": "synonyms for clunk", "clues": ["thump", "thud", "clump", "clunk"]}, {"answer": "clunking", "hint": "synonyms for clunking", "clues": ["clip-clop", "clop", "clopping", "clippety-clop", "clumping", "clunking"]}, {"answer": "clutch", "hint": "synonyms for clutch", "clues": ["clutch pedal", "grip", "clasp", "clutches", "batch", "clutch bag", "grasp", "hold", "clench"]}, {"answer": "clutches", "hint": "synonyms for clutches", "clues": ["clutch pedal", "grip", "clutch", "clasp", "batch", "clutch bag", "grasp", "hold", "clench"]}, {"answer": "cm", "hint": "synonyms for cm", "clues": ["centimeter", "atomic number 96", "curium", "cm"]}, {"answer": "co", "hint": "synonyms for co", "clues": ["carbon monoxide gas", "cobalt", "atomic number 27", "co"]}, {"answer": "co-occurrence", "hint": "synonyms for co-occurrence", "clues": ["concurrence", "conjunction", "attendant", "concomitant", "coincidence", "accompaniment", "co-occurrence"]}, {"answer": "coach", "hint": "synonyms for coach", "clues": ["passenger vehicle", "carriage", "double-decker", "motorcoach", "bus", "charabanc", "omnibus", "autobus", "coach-and-four", "motorbus", "passenger car", "four-in-hand", "jitney", "coach"]}, {"answer": "coal_black", "hint": "synonyms for coal black", "clues": ["ebony", "jet black", "sable", "pitch black", "soot black", "coal black"]}, {"answer": "coalescence", "hint": "synonyms for coalescence", "clues": ["coalescency", "coalition", "conglutination", "concretion"]}, {"answer": "coalescency", "hint": "synonyms for coalescency", "clues": ["coalition", "coalescence", "concretion", "conglutination"]}, {"answer": "coalition", "hint": "synonyms for coalition", "clues": ["alliance", "coalescence", "concretion", "conglutination", "alignment", "coalition"]}, {"answer": "coarseness", "hint": "synonyms for coarseness", "clues": ["saltiness", "commonness", "graininess", "tweediness", "grossness", "nubbiness", "vulgarity", "raunch", "vulgarism", "granularity", "coarseness"]}, {"answer": "coast", "hint": "synonyms for coast", "clues": ["glide", "slide", "seacoast", "seashore", "coast"]}, {"answer": "coat_of_mail", "hint": "synonyms for coat of mail", "clues": ["suit of armor", "cataphract", "body armor", "coat of mail"]}, {"answer": "coating", "hint": "synonyms for coating", "clues": ["finish", "coat", "covering", "application"]}, {"answer": "cobalt_blue", "hint": "synonyms for cobalt blue", "clues": ["aqua", "peacock blue", "turquoise", "greenish blue", "cobalt ultramarine", "aquamarine", "cobalt blue"]}, {"answer": "cock-and-bull_story", "hint": "synonyms for cock-and-bull story", "clues": ["fairy story", "fairy tale", "song and dance", "cock-and-bull story"]}, {"answer": "cockcrow", "hint": "synonyms for cockcrow", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "daybreak", "sunup", "morning", "aurora", "cockcrow"]}, {"answer": "cocoyam", "hint": "synonyms for cocoyam", "clues": ["dasheen", "taro root", "taro", "edda", "cocoyam"]}, {"answer": "codswallop", "hint": "synonyms for codswallop", "clues": ["trumpery", "folderol", "trash", "applesauce", "rubbish", "tripe", "wish-wash", "codswallop"]}, {"answer": "coffee", "hint": "synonyms for coffee", "clues": ["umber", "deep brown", "burnt umber", "coffee bean", "coffee berry", "chocolate", "java", "coffee"]}, {"answer": "coffin_nail", "hint": "synonyms for coffin nail", "clues": ["cigarette", "butt", "fag", "coffin nail"]}, {"answer": "cognation", "hint": "synonyms for cognation", "clues": ["matrilineage", "enation", "consanguinity", "blood kinship", "cognation"]}, {"answer": "cognisance", "hint": "synonyms for cognisance", "clues": ["cognizance", "knowingness", "consciousness", "awareness"]}, {"answer": "cognitive_operation", "hint": "synonyms for cognitive operation", "clues": ["process", "cognitive process", "mental process", "operation", "cognitive operation"]}, {"answer": "cognitive_process", "hint": "synonyms for cognitive process", "clues": ["operation", "mental process", "process", "cognitive operation", "cognitive process"]}, {"answer": "cognizance", "hint": "synonyms for cognizance", "clues": ["cognisance", "ken", "consciousness", "knowingness", "awareness"]}, {"answer": "cognomen", "hint": "synonyms for cognomen", "clues": ["soubriquet", "byname", "last name", "nickname", "surname", "moniker", "family name", "cognomen"]}, {"answer": "cohesiveness", "hint": "synonyms for cohesiveness", "clues": ["ropiness", "glueyness", "tackiness", "gluiness", "viscidness", "viscidity", "gumminess", "cohesiveness"]}, {"answer": "coil", "hint": "synonyms for coil", "clues": ["volute", "spiral", "curl", "whorl", "ringlet", "curlicue", "helix", "scroll", "roll", "gyre", "coil"]}, {"answer": "coinage", "hint": "synonyms for coinage", "clues": ["metal money", "neology", "specie", "mintage", "neologism", "coinage"]}, {"answer": "coincidence", "hint": "synonyms for coincidence", "clues": ["concurrence", "co-occurrence", "conjunction", "happenstance", "coincidence"]}, {"answer": "coition", "hint": "synonyms for coition", "clues": ["sexual intercourse", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "coition"]}, {"answer": "coitus", "hint": "synonyms for coitus", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "coitus"]}, {"answer": "coitus_interruptus", "hint": "synonyms for coitus interruptus", "clues": ["withdrawal method", "pulling out", "onanism", "withdrawal", "coitus interruptus"]}, {"answer": "coldness", "hint": "synonyms for coldness", "clues": ["low temperature", "iciness", "cold", "frigidness", "coolness", "chilliness", "frigidity"]}, {"answer": "collar", "hint": "synonyms for collar", "clues": ["dog collar", "choker", "leash", "shoe collar", "apprehension", "arrest", "neckband", "taking into custody", "catch", "pinch", "collar"]}, {"answer": "collection", "hint": "synonyms for collection", "clues": ["assembling", "aggregation", "compendium", "accumulation", "assemblage", "appeal", "solicitation", "collecting", "ingathering"]}, {"answer": "coloring", "hint": "synonyms for coloring", "clues": ["colour", "food color", "food colouring", "coloring"]}, {"answer": "colors", "hint": "synonyms for colors", "clues": ["colour", "people of colour", "colouration", "colouring material", "vividness", "gloss", "coloring", "semblance", "colors"]}, {"answer": "colouring", "hint": "synonyms for colouring", "clues": ["colour", "food color", "food colouring", "coloring"]}, {"answer": "colours", "hint": "synonyms for colours", "clues": ["colour", "people of colour", "colouration", "colors", "colouring material", "vividness", "gloss", "coloring", "semblance"]}, {"answer": "column", "hint": "synonyms for column", "clues": ["chromatography column", "tower", "editorial", "newspaper column", "pillar", "column"]}, {"answer": "combat", "hint": "synonyms for combat", "clues": ["armed combat", "fighting", "scrap", "combat"]}, {"answer": "combat_boot", "hint": "synonyms for combat boot", "clues": ["buskin", "half boot", "desert boot", "top boot", "combat boot"]}, {"answer": "combine", "hint": "synonyms for combine", "clues": ["trust", "corporate trust", "cartel", "combining", "combine"]}, {"answer": "come-on", "hint": "synonyms for come-on", "clues": ["bait", "lure", "hook", "enticement", "sweetener", "come-on"]}, {"answer": "comeback", "hint": "synonyms for comeback", "clues": ["retort", "counter", "return", "replication", "rejoinder", "riposte", "comeback"]}, {"answer": "comfort", "hint": "synonyms for comfort", "clues": ["consolation", "comforter", "puff", "solace", "quilt"]}, {"answer": "comfort_station", "hint": "synonyms for comfort station", "clues": ["convenience", "public toilet", "public convenience", "wash room", "toilet facility", "public lavatory", "restroom", "comfort station"]}, {"answer": "comforter", "hint": "synonyms for comforter", "clues": ["puff", "teething ring", "comfort", "pacifier", "baby's dummy", "quilt"]}, {"answer": "comforts", "hint": "synonyms for comforts", "clues": ["conveniences", "comfort", "puff", "quilt", "consolation", "creature comforts", "solace", "amenities"]}, {"answer": "command", "hint": "synonyms for command", "clues": ["control", "program line", "bid", "instruction", "dictation", "bidding", "statement", "mastery", "command"]}, {"answer": "commemoration", "hint": "synonyms for commemoration", "clues": ["memorialisation", "memorial", "remembrance", "commemoration"]}, {"answer": "commencement", "hint": "synonyms for commencement", "clues": ["offset", "kickoff", "start", "beginning", "starting time", "commencement exercise", "outset", "graduation", "showtime", "get-go", "graduation exercise", "commencement ceremony", "first", "commencement"]}, {"answer": "commencement_ceremony", "hint": "synonyms for commencement ceremony", "clues": ["commencement exercise", "commencement", "graduation exercise", "graduation", "commencement ceremony"]}, {"answer": "commencement_exercise", "hint": "synonyms for commencement exercise", "clues": ["commencement", "graduation", "graduation exercise", "commencement ceremony", "commencement exercise"]}, {"answer": "comment", "hint": "synonyms for comment", "clues": ["gossip", "remark", "commentary", "scuttlebutt", "input", "comment"]}, {"answer": "commiseration", "hint": "synonyms for commiseration", "clues": ["pity", "pathos", "ruth", "condolence", "commiseration"]}, {"answer": "commissariat", "hint": "synonyms for commissariat", "clues": ["viands", "victuals", "provender", "provisions", "commissariat"]}, {"answer": "commission", "hint": "synonyms for commission", "clues": ["delegacy", "direction", "military commission", "committee", "commissioning", "deputation", "committal", "charge", "perpetration", "delegation", "mission"]}, {"answer": "commitment", "hint": "synonyms for commitment", "clues": ["committedness", "loyalty", "consignment", "committal", "allegiance", "dedication", "commitment"]}, {"answer": "committal", "hint": "synonyms for committal", "clues": ["consignment", "commission", "commitment", "perpetration", "committal"]}, {"answer": "commixture", "hint": "synonyms for commixture", "clues": ["intermixture", "mixture", "mix", "commixture"]}, {"answer": "commode", "hint": "synonyms for commode", "clues": ["throne", "toilet", "can", "potty", "crapper", "chiffonier", "stool", "pot", "commode"]}, {"answer": "common_measure", "hint": "synonyms for common measure", "clues": ["common meter", "common factor", "common divisor", "common time", "four-four time", "quadruple time", "common measure"]}, {"answer": "common_mood", "hint": "synonyms for common mood", "clues": ["indicative mood", "indicative", "declarative", "declarative mood", "fact mood", "common mood"]}, {"answer": "common_sense", "hint": "synonyms for common sense", "clues": ["mother wit", "good sense", "horse sense", "sense", "gumption", "common sense"]}, {"answer": "commonness", "hint": "synonyms for commonness", "clues": ["commonality", "vulgarity", "raunch", "everydayness", "vulgarism", "commonplaceness", "grossness", "coarseness", "commonness"]}, {"answer": "commons", "hint": "synonyms for commons", "clues": ["green", "third estate", "common", "commonality", "park", "common land"]}, {"answer": "commonwealth", "hint": "synonyms for commonwealth", "clues": ["country", "state", "res publica", "nation", "land", "republic", "body politic", "democracy", "commonwealth"]}, {"answer": "commotion", "hint": "synonyms for commotion", "clues": ["ruction", "ruckus", "tumult", "rumpus", "whirl", "din", "commotion"]}, {"answer": "commutation", "hint": "synonyms for commutation", "clues": ["exchange", "re-sentencing", "commuting", "substitution", "commutation"]}, {"answer": "compaction", "hint": "synonyms for compaction", "clues": ["densification", "concretion", "crush", "crunch", "compression", "compaction"]}, {"answer": "compactness", "hint": "synonyms for compactness", "clues": ["density", "denseness", "tightness", "concentration", "compactness"]}, {"answer": "comparison", "hint": "synonyms for comparison", "clues": ["compare", "comparability", "equivalence", "comparing", "comparison"]}, {"answer": "compartmentalisation", "hint": "synonyms for compartmentalisation", "clues": ["categorization", "compartmentalization", "assortment", "classification"]}, {"answer": "compartmentalization", "hint": "synonyms for compartmentalization", "clues": ["categorization", "assortment", "classification", "compartmentalisation"]}, {"answer": "compass", "hint": "synonyms for compass", "clues": ["reach", "orbit", "ambit", "range", "grasp", "scope", "compass"]}, {"answer": "complaisance", "hint": "synonyms for complaisance", "clues": ["compliancy", "deference", "obligingness", "complaisance"]}, {"answer": "completion", "hint": "synonyms for completion", "clues": ["pass completion", "culmination", "closing", "mop up", "windup", "completion"]}, {"answer": "compliance", "hint": "synonyms for compliance", "clues": ["obligingness", "compliancy", "deference", "submission", "abidance", "conformity", "conformation", "complaisance"]}, {"answer": "complication", "hint": "synonyms for complication", "clues": ["tortuousness", "ramification", "complicatedness", "knottiness", "complication"]}, {"answer": "component", "hint": "synonyms for component", "clues": ["constituent", "element", "ingredient", "portion", "component part", "factor", "part", "component"]}, {"answer": "component_part", "hint": "synonyms for component part", "clues": ["part", "portion", "component", "constituent", "component part"]}, {"answer": "composition", "hint": "synonyms for composition", "clues": ["physical composition", "writing", "theme", "piece of music", "piece", "report", "make-up", "authorship", "constitution", "opus", "typography", "penning", "paper", "composing", "composition"]}, {"answer": "compression", "hint": "synonyms for compression", "clues": ["densification", "compaction", "concretion", "contraction", "condensation", "compressing"]}, {"answer": "computation", "hint": "synonyms for computation", "clues": ["calculation", "reckoning", "computing", "figuring", "computation"]}, {"answer": "computer", "hint": "synonyms for computer", "clues": ["information processing system", "electronic computer", "computing device", "data processor", "computing machine", "computer"]}, {"answer": "computer_memory", "hint": "synonyms for computer memory", "clues": ["memory board", "computer storage", "memory", "store", "storage", "computer memory"]}, {"answer": "computer_software", "hint": "synonyms for computer software", "clues": ["package", "software system", "software program", "software", "software package", "computer software"]}, {"answer": "computer_storage", "hint": "synonyms for computer storage", "clues": ["memory board", "memory", "computer memory", "store", "storage", "computer storage"]}, {"answer": "computing_device", "hint": "synonyms for computing device", "clues": ["information processing system", "electronic computer", "data processor", "computing machine", "computer", "computing device"]}, {"answer": "computing_machine", "hint": "synonyms for computing machine", "clues": ["electronic computer", "computing device", "data processor", "information processing system", "computer", "computing machine"]}, {"answer": "comradeliness", "hint": "synonyms for comradeliness", "clues": ["comradeship", "camaraderie", "chumminess", "comradery", "comradeliness"]}, {"answer": "comradery", "hint": "synonyms for comradery", "clues": ["comradeliness", "comradeship", "camaraderie", "chumminess", "comradery"]}, {"answer": "comradeship", "hint": "synonyms for comradeship", "clues": ["comradeliness", "camaraderie", "chumminess", "comradery", "comradeship"]}, {"answer": "con_game", "hint": "synonyms for con game", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con", "confidence trick", "con game"]}, {"answer": "concavity", "hint": "synonyms for concavity", "clues": ["incurvature", "concaveness", "concave shape", "incurvation", "concavity"]}, {"answer": "concealment", "hint": "synonyms for concealment", "clues": ["concealing", "screen", "covert", "hiding", "concealment"]}, {"answer": "conceit", "hint": "synonyms for conceit", "clues": ["amour propre", "vanity", "conceitedness", "self-love", "conceit"]}, {"answer": "concentration", "hint": "synonyms for concentration", "clues": ["absorption", "engrossment", "tightness", "denseness", "compactness", "density", "assiduity", "assiduousness", "immersion", "concentration"]}, {"answer": "conception", "hint": "synonyms for conception", "clues": ["concept", "construct", "creation", "innovation", "invention", "excogitation", "design", "conception"]}, {"answer": "concern", "hint": "synonyms for concern", "clues": ["business organization", "business", "business concern", "headache", "fear", "worry", "care", "vexation", "concern"]}, {"answer": "conclusion", "hint": "synonyms for conclusion", "clues": ["ending", "stopping point", "finis", "finale", "closing", "decision", "last", "termination", "close", "ratiocination", "conclusion"]}, {"answer": "concord", "hint": "synonyms for concord", "clues": ["harmony", "concordance", "agreement", "capital of New Hampshire", "concord"]}, {"answer": "concretion", "hint": "synonyms for concretion", "clues": ["calculus", "coalescence", "compression", "densification", "compaction", "conglutination", "coalition", "concretion"]}, {"answer": "concurrence", "hint": "synonyms for concurrence", "clues": ["co-occurrence", "concurrency", "coincidence", "conjunction"]}, {"answer": "condemnation", "hint": "synonyms for condemnation", "clues": ["conviction", "curse", "sentence", "judgment of conviction", "disapprobation", "execration", "condemnation"]}, {"answer": "condensation", "hint": "synonyms for condensation", "clues": ["contraction", "condensing", "capsule", "abridgement", "condensate", "compression", "condensation"]}, {"answer": "condenser", "hint": "synonyms for condenser", "clues": ["optical condenser", "capacitor", "capacitance", "electrical condenser", "condenser"]}, {"answer": "condescension", "hint": "synonyms for condescension", "clues": ["disdainfulness", "superciliousness", "disdain", "condescendingness", "patronage", "condescension"]}, {"answer": "condition", "hint": "synonyms for condition", "clues": ["precondition", "stipulation", "term", "circumstance", "consideration", "experimental condition"]}, {"answer": "conditional_reaction", "hint": "synonyms for conditional reaction", "clues": ["conditional response", "conditional reflex", "acquired reflex", "conditioned reaction"]}, {"answer": "conditional_reflex", "hint": "synonyms for conditional reflex", "clues": ["conditional reaction", "conditional response", "conditioned reflex", "acquired reflex"]}, {"answer": "conditional_response", "hint": "synonyms for conditional response", "clues": ["conditional reaction", "conditional reflex", "acquired reflex", "conditioned response"]}, {"answer": "conditioned_reaction", "hint": "synonyms for conditioned reaction", "clues": ["conditional reaction", "conditional reflex", "acquired reflex", "conditioned response"]}, {"answer": "conditioned_reflex", "hint": "synonyms for conditioned reflex", "clues": ["conditional reaction", "conditional reflex", "acquired reflex", "conditioned response"]}, {"answer": "conditioned_response", "hint": "synonyms for conditioned response", "clues": ["conditional reaction", "acquired reflex", "conditional reflex", "conditional response"]}, {"answer": "conditions", "hint": "synonyms for conditions", "clues": ["precondition", "stipulation", "weather condition", "weather", "atmospheric condition", "consideration", "term", "circumstance", "experimental condition", "conditions"]}, {"answer": "condom", "hint": "synonyms for condom", "clues": ["safe", "safety", "rubber", "prophylactic", "condom"]}, {"answer": "conduct", "hint": "synonyms for conduct", "clues": ["deportment", "demeanour", "doings", "behaviour", "conduct"]}, {"answer": "confab", "hint": "synonyms for confab", "clues": ["chat", "schmoose", "confabulation", "confab"]}, {"answer": "confabulation", "hint": "synonyms for confabulation", "clues": ["chat", "schmoose", "confab", "confabulation"]}, {"answer": "confidence", "hint": "synonyms for confidence", "clues": ["self-assurance", "assurance", "sureness", "self-confidence", "authority", "confidence"]}, {"answer": "confidence_game", "hint": "synonyms for confidence game", "clues": ["bunco", "bunko game", "gyp", "hustle", "bunko", "sting", "flimflam", "con game", "con", "confidence trick", "confidence game"]}, {"answer": "confidence_trick", "hint": "synonyms for confidence trick", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick"]}, {"answer": "confidential_information", "hint": "synonyms for confidential information", "clues": ["hint", "steer", "wind", "tip", "lead", "confidential information"]}, {"answer": "configuration", "hint": "synonyms for configuration", "clues": ["form", "constellation", "shape", "contour", "conformation", "configuration"]}, {"answer": "confirmation", "hint": "synonyms for confirmation", "clues": ["ratification", "substantiation", "verification", "check", "confirmation"]}, {"answer": "conflict", "hint": "synonyms for conflict", "clues": ["battle", "difference", "fight", "dispute", "struggle", "engagement", "difference of opinion", "conflict"]}, {"answer": "confluence", "hint": "synonyms for confluence", "clues": ["conflux", "concourse", "meeting", "merging", "confluence"]}, {"answer": "conformation", "hint": "synonyms for conformation", "clues": ["compliance", "form", "configuration", "shape", "abidance", "contour", "conformity", "conformation"]}, {"answer": "conformity", "hint": "synonyms for conformity", "clues": ["compliance", "conformance", "accord", "abidance", "accordance", "ossification", "conformation", "conformism", "conformity"]}, {"answer": "confrontation", "hint": "synonyms for confrontation", "clues": ["face-off", "encounter", "showdown", "opposition", "confrontation"]}, {"answer": "confusedness", "hint": "synonyms for confusedness", "clues": ["mental confusion", "muddiness", "disarray", "confusion", "confusedness"]}, {"answer": "confusion", "hint": "synonyms for confusion", "clues": ["confusedness", "mix-up", "discombobulation", "mental confusion", "muddiness", "disarray", "confusion"]}, {"answer": "conglutination", "hint": "synonyms for conglutination", "clues": ["coalescence", "union", "concretion", "coalition", "conglutination"]}, {"answer": "congratulations", "hint": "synonyms for congratulations", "clues": ["congratulation", "felicitation", "praise", "extolment", "kudos"]}, {"answer": "congress", "hint": "synonyms for congress", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "congress"]}, {"answer": "conjecture", "hint": "synonyms for conjecture", "clues": ["hypothesis", "speculation", "surmise", "surmisal", "supposition", "guess", "conjecture"]}, {"answer": "conjugation", "hint": "synonyms for conjugation", "clues": ["union", "coupling", "pairing", "sexual union", "uniting", "jointure", "unification", "mating", "conjugation"]}, {"answer": "conjunction", "hint": "synonyms for conjunction", "clues": ["concurrence", "conjunctive", "junction", "co-occurrence", "continuative", "alignment", "coincidence", "conjunction"]}, {"answer": "conjuration", "hint": "synonyms for conjuration", "clues": ["legerdemain", "magic trick", "conjuring trick", "incantation", "thaumaturgy", "trick", "deception", "invocation", "illusion", "magic", "conjuring", "conjury", "conjuration"]}, {"answer": "conjuring_trick", "hint": "synonyms for conjuring trick", "clues": ["legerdemain", "magic trick", "thaumaturgy", "trick", "deception", "illusion", "magic", "conjuration", "conjuring trick"]}, {"answer": "connecter", "hint": "synonyms for connecter", "clues": ["connection", "connexion", "connective", "connector"]}, {"answer": "connection", "hint": "synonyms for connection", "clues": ["link", "connexion", "joining", "connectedness", "connective", "connector", "association", "connection"]}, {"answer": "connector", "hint": "synonyms for connector", "clues": ["connecter", "connection", "connective", "connexion"]}, {"answer": "connexion", "hint": "synonyms for connexion", "clues": ["link", "joining", "connectedness", "connection", "connective", "connector", "association", "connexion"]}, {"answer": "conquest", "hint": "synonyms for conquest", "clues": ["subjugation", "seduction", "conquering", "subjection", "conquest"]}, {"answer": "consciousness", "hint": "synonyms for consciousness", "clues": ["cognizance", "knowingness", "awareness", "consciousness"]}, {"answer": "consequence", "hint": "synonyms for consequence", "clues": ["moment", "event", "effect", "issue", "upshot", "import", "result", "aftermath", "outcome", "consequence"]}, {"answer": "consideration", "hint": "synonyms for consideration", "clues": ["considerateness", "circumstance", "thoughtfulness", "condition", "retainer", "consideration"]}, {"answer": "consignment", "hint": "synonyms for consignment", "clues": ["load", "shipment", "commitment", "cargo", "freight", "lading", "committal", "payload", "consignment"]}, {"answer": "constitution", "hint": "synonyms for constitution", "clues": ["organization", "physical composition", "fundamental law", "establishment", "organic law", "make-up", "formation", "composition", "constitution"]}, {"answer": "constriction", "hint": "synonyms for constriction", "clues": ["coarctation", "bottleneck", "tightness", "chokepoint", "constriction"]}, {"answer": "construction", "hint": "synonyms for construction", "clues": ["mental synthesis", "structure", "expression", "twist", "building", "grammatical construction", "construction"]}, {"answer": "consumption", "hint": "synonyms for consumption", "clues": ["intake", "use", "using up", "uptake", "economic consumption", "use of goods and services", "expenditure", "ingestion", "usance", "consumption"]}, {"answer": "contact", "hint": "synonyms for contact", "clues": ["striking", "link", "physical contact", "liaison", "impinging", "inter-group communication", "tangency", "touch", "contact lens", "contact"]}, {"answer": "contemplation", "hint": "synonyms for contemplation", "clues": ["musing", "reflexion", "reflection", "rumination", "thoughtfulness", "contemplation"]}, {"answer": "contemporaneity", "hint": "synonyms for contemporaneity", "clues": ["contemporaneousness", "modernism", "modernness", "modernity", "contemporaneity"]}, {"answer": "contemporaneousness", "hint": "synonyms for contemporaneousness", "clues": ["contemporaneity", "modernism", "modernness", "modernity", "contemporaneousness"]}, {"answer": "contempt", "hint": "synonyms for contempt", "clues": ["despite", "disdain", "scorn", "disrespect", "contempt"]}, {"answer": "contemptibility", "hint": "synonyms for contemptibility", "clues": ["despicableness", "baseness", "sordidness", "despicability", "contemptibility"]}, {"answer": "contention", "hint": "synonyms for contention", "clues": ["rivalry", "disceptation", "competition", "contestation", "controversy", "tilt", "argument", "arguing", "contention"]}, {"answer": "contents", "hint": "synonyms for contents", "clues": ["table of contents", "content", "subject", "subject matter", "cognitive content", "depicted object", "capacity", "mental object", "substance", "message"]}, {"answer": "contestation", "hint": "synonyms for contestation", "clues": ["contention", "disceptation", "argument", "tilt", "arguing", "controversy", "contestation"]}, {"answer": "continuation", "hint": "synonyms for continuation", "clues": ["law of continuation", "good continuation", "protraction", "continuance", "sequel", "lengthiness", "prolongation", "continuation"]}, {"answer": "continuous_tense", "hint": "synonyms for continuous tense", "clues": ["imperfect tense", "progressive tense", "progressive", "imperfect", "continuous tense"]}, {"answer": "contortion", "hint": "synonyms for contortion", "clues": ["deformation", "torsion", "tortuousness", "tortuosity", "crookedness", "contortion"]}, {"answer": "contour", "hint": "synonyms for contour", "clues": ["contour line", "form", "configuration", "shape", "conformation", "contour"]}, {"answer": "contra_danse", "hint": "synonyms for contra danse", "clues": ["country-dance", "country dancing", "contredanse", "contradance"]}, {"answer": "contraceptive_device", "hint": "synonyms for contraceptive device", "clues": ["preventive", "birth control device", "contraceptive", "prophylactic device", "contraceptive device"]}, {"answer": "contraceptive_pill", "hint": "synonyms for contraceptive pill", "clues": ["pill", "oral contraceptive pill", "birth control pill", "anovulatory drug", "anovulant"]}, {"answer": "contraction", "hint": "synonyms for contraction", "clues": ["condensation", "muscle contraction", "compression", "contraction"]}, {"answer": "contraption", "hint": "synonyms for contraption", "clues": ["convenience", "gismo", "appliance", "gizmo", "gadget", "contrivance", "widget", "contraption"]}, {"answer": "contrariness", "hint": "synonyms for contrariness", "clues": ["perverseness", "grumpiness", "crotchetiness", "perversity", "crankiness", "contrariness"]}, {"answer": "contrast", "hint": "synonyms for contrast", "clues": ["line", "direct contrast", "dividing line", "demarcation", "contrast"]}, {"answer": "contrivance", "hint": "synonyms for contrivance", "clues": ["convenience", "gismo", "appliance", "gizmo", "gadget", "dodge", "contraption", "devisal", "stratagem", "lash-up", "widget", "contrivance"]}, {"answer": "control", "hint": "synonyms for control", "clues": ["controller", "restraint", "command", "control condition", "mastery", "control"]}, {"answer": "control_board", "hint": "synonyms for control board", "clues": ["control panel", "instrument panel", "board", "panel", "control board"]}, {"answer": "control_panel", "hint": "synonyms for control panel", "clues": ["instrument panel", "board", "panel", "control board", "control panel"]}, {"answer": "controversy", "hint": "synonyms for controversy", "clues": ["contention", "disceptation", "argument", "tilt", "contestation", "arguing", "controversy"]}, {"answer": "contumely", "hint": "synonyms for contumely", "clues": ["vilification", "abuse", "revilement", "insult", "contumely"]}, {"answer": "convenience", "hint": "synonyms for convenience", "clues": ["gismo", "appliance", "public convenience", "gizmo", "gadget", "widget", "contrivance", "public lavatory", "contraption", "restroom", "public toilet", "comfort station", "toilet facility", "wash room", "convenience"]}, {"answer": "conveniences", "hint": "synonyms for conveniences", "clues": ["gismo", "appliance", "public convenience", "contrivance", "restroom", "toilet facility", "creature comforts", "comforts", "amenities", "convenience", "widget", "gizmo", "gadget", "public lavatory", "contraption", "public toilet", "comfort station", "wash room"]}, {"answer": "convention", "hint": "synonyms for convention", "clues": ["rule", "pattern", "conventionalism", "formula", "normal", "convening", "convention"]}, {"answer": "convergence", "hint": "synonyms for convergence", "clues": ["convergency", "overlap", "intersection", "converging"]}, {"answer": "conversion", "hint": "synonyms for conversion", "clues": ["transition", "changeover", "rebirth", "spiritual rebirth", "conversion"]}, {"answer": "conveyance", "hint": "synonyms for conveyance", "clues": ["imparting", "impartation", "conveyancing", "transportation", "transferral", "transport", "transfer", "conveyance of title", "conveyance"]}, {"answer": "conviction", "hint": "synonyms for conviction", "clues": ["article of faith", "strong belief", "sentence", "judgment of conviction", "condemnation", "conviction"]}, {"answer": "cooking_stove", "hint": "synonyms for cooking stove", "clues": ["kitchen stove", "stove", "range", "kitchen range", "cooking stove"]}, {"answer": "coolness", "hint": "synonyms for coolness", "clues": ["imperturbableness", "iciness", "nervelessness", "frigidness", "imperturbability", "coldness", "chilliness", "frigidity", "nip"]}, {"answer": "coop", "hint": "synonyms for coop", "clues": ["hencoop", "chicken coop", "henhouse", "cage", "coop"]}, {"answer": "copestone", "hint": "synonyms for copestone", "clues": ["stretcher", "capstone", "coping stone", "finishing touch", "copestone"]}, {"answer": "coppice", "hint": "synonyms for coppice", "clues": ["copse", "brushwood", "brush", "thicket", "coppice"]}, {"answer": "copse", "hint": "synonyms for copse", "clues": ["brushwood", "brush", "thicket", "coppice", "copse"]}, {"answer": "copulation", "hint": "synonyms for copulation", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "sexual congress", "sexual relation", "intercourse", "relation", "copulation"]}, {"answer": "coquetry", "hint": "synonyms for coquetry", "clues": ["toying", "flirtation", "flirting", "dalliance", "coquetry"]}, {"answer": "core", "hint": "synonyms for core", "clues": ["essence", "burden", "center", "effect", "centre", "heart", "sum", "gist", "marrow", "substance", "magnetic core", "core group", "nucleus", "meat", "nub", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "core"]}, {"answer": "cork", "hint": "synonyms for cork", "clues": ["bobfloat", "bottle cork", "bob", "phellem", "bobber", "cork"]}, {"answer": "corner", "hint": "synonyms for corner", "clues": ["nook", "turning point", "quoin", "recess", "niche", "recession", "street corner", "corner"]}, {"answer": "cornerstone", "hint": "synonyms for cornerstone", "clues": ["foundation", "fundament", "basis", "groundwork", "base", "cornerstone"]}, {"answer": "cornucopia", "hint": "synonyms for cornucopia", "clues": ["profuseness", "profusion", "richness", "horn of plenty", "cornucopia"]}, {"answer": "corona", "hint": "synonyms for corona", "clues": ["electric glow", "aureole", "corposant", "corona discharge", "corona"]}, {"answer": "coronach", "hint": "synonyms for coronach", "clues": ["lament", "dirge", "threnody", "requiem", "coronach"]}, {"answer": "coronal", "hint": "synonyms for coronal", "clues": ["garland", "chaplet", "lei", "wreath", "coronal"]}, {"answer": "coronation", "hint": "synonyms for coronation", "clues": ["enthronement", "enthronization", "investiture", "coronation"]}, {"answer": "corpuscle", "hint": "synonyms for corpuscle", "clues": ["speck", "mote", "molecule", "atom", "particle", "corpuscle"]}, {"answer": "correction", "hint": "synonyms for correction", "clues": ["rectification", "chastisement", "chastening", "discipline", "fudge factor", "correction"]}, {"answer": "corrections", "hint": "synonyms for corrections", "clues": ["rectification", "correction", "chastisement", "department of corrections", "chastening", "discipline", "fudge factor"]}, {"answer": "correlation", "hint": "synonyms for correlation", "clues": ["correlativity", "correlational statistics", "correlation coefficient", "coefficient of correlation", "correlation"]}, {"answer": "correspondence", "hint": "synonyms for correspondence", "clues": ["commensurateness", "parallelism", "balance", "symmetricalness", "proportionateness", "agreement", "symmetry", "correspondence"]}, {"answer": "corruption", "hint": "synonyms for corruption", "clues": ["putrefaction", "subversion", "depravation", "depravity", "corruptness", "degeneracy", "corruption"]}, {"answer": "cos", "hint": "synonyms for cos", "clues": ["cobalt", "cos lettuce", "cosine", "romaine lettuce", "carbon monoxide", "atomic number 27", "romaine", "cos"]}, {"answer": "cosmetic_surgery", "hint": "synonyms for cosmetic surgery", "clues": ["lift", "face lifting", "facelift", "nip and tuck", "rhytidectomy", "rhytidoplasty", "cosmetic surgery"]}, {"answer": "cosmos", "hint": "synonyms for cosmos", "clues": ["macrocosm", "creation", "existence", "world", "universe", "cosmos"]}, {"answer": "coss", "hint": "synonyms for coss", "clues": ["cosine", "cos", "cos lettuce", "romaine lettuce", "romaine", "kos"]}, {"answer": "costs", "hint": "synonyms for costs", "clues": ["toll", "monetary value", "price", "cost"]}, {"answer": "coterie", "hint": "synonyms for coterie", "clues": ["ingroup", "inner circle", "clique", "pack", "camp", "coterie"]}, {"answer": "counseling", "hint": "synonyms for counseling", "clues": ["counselling", "direction", "counsel", "guidance"]}, {"answer": "count", "hint": "synonyms for count", "clues": ["counting", "enumeration", "tally", "reckoning"]}, {"answer": "countenance", "hint": "synonyms for countenance", "clues": ["sanction", "visage", "imprimatur", "endorsement", "warrant", "countenance"]}, {"answer": "counterbalance", "hint": "synonyms for counterbalance", "clues": ["equilibrium", "counterpoise", "balance", "counterweight", "offset", "equipoise", "equalizer", "counterbalance"]}, {"answer": "countercurrent", "hint": "synonyms for countercurrent", "clues": ["riptide", "tide rip", "rip", "crosscurrent", "countercurrent"]}, {"answer": "counterpane", "hint": "synonyms for counterpane", "clues": ["bed cover", "bedspread", "spread", "counterpane"]}, {"answer": "counterpart", "hint": "synonyms for counterpart", "clues": ["opposite number", "vis-a-vis", "twin", "similitude", "counterpart"]}, {"answer": "counterpoise", "hint": "synonyms for counterpoise", "clues": ["balance", "counterweight", "counterbalance", "equalizer", "counterpoise"]}, {"answer": "countersign", "hint": "synonyms for countersign", "clues": ["watchword", "parole", "countersignature", "password", "word", "countersign"]}, {"answer": "counterweight", "hint": "synonyms for counterweight", "clues": ["counterpoise", "balance", "counterbalance", "equalizer", "counterweight"]}, {"answer": "counting", "hint": "synonyms for counting", "clues": ["enumeration", "tally", "reckoning", "count"]}, {"answer": "country", "hint": "synonyms for country", "clues": ["commonwealth", "area", "state", "res publica", "nation", "land", "rural area", "body politic", "country"]}, {"answer": "country_of_origin", "hint": "synonyms for country of origin", "clues": ["homeland", "mother country", "native land", "fatherland", "motherland", "country of origin"]}, {"answer": "couple", "hint": "synonyms for couple", "clues": ["yoke", "twain", "match", "dyad", "couplet", "duo", "span", "distich", "duet", "mates", "brace", "twosome", "pair", "duad"]}, {"answer": "couplet", "hint": "synonyms for couplet", "clues": ["yoke", "duet", "pair", "twain", "dyad", "span", "brace", "twosome", "couple", "duad", "duo", "distich"]}, {"answer": "coupling", "hint": "synonyms for coupling", "clues": ["yoke", "coupler", "union", "conjugation", "pairing", "sexual union", "mating", "coupling"]}, {"answer": "course_of_study", "hint": "synonyms for course of study", "clues": ["class", "curriculum", "program", "course", "course of instruction", "syllabus", "course of study"]}, {"answer": "court", "hint": "synonyms for court", "clues": ["court of law", "courtyard", "tribunal", "tourist court", "motor inn", "royal court", "homage", "judicature", "courtroom", "motor lodge", "motor hotel", "court of justice", "lawcourt", "court"]}, {"answer": "cover", "hint": "synonyms for cover", "clues": ["masking", "natural covering", "cover version", "covering fire", "screen", "back", "cover charge", "top", "cover song", "binding", "covert", "covering", "concealment", "book binding", "blanket"]}, {"answer": "covering", "hint": "synonyms for covering", "clues": ["natural covering", "masking", "coating", "cover", "screening", "application"]}, {"answer": "covetousness", "hint": "synonyms for covetousness", "clues": ["cupidity", "rapacity", "greed", "avaritia", "avarice", "avariciousness", "covetousness"]}, {"answer": "cow_barn", "hint": "synonyms for cow barn", "clues": ["cowbarn", "byre", "cowhouse", "cowshed"]}, {"answer": "cowbarn", "hint": "synonyms for cowbarn", "clues": ["cow barn", "byre", "cowhouse", "cowshed"]}, {"answer": "cowhouse", "hint": "synonyms for cowhouse", "clues": ["cow barn", "byre", "cowshed", "cowhouse"]}, {"answer": "cowshed", "hint": "synonyms for cowshed", "clues": ["cow barn", "byre", "cowhouse", "cowshed"]}, {"answer": "cpr", "hint": "synonyms for cpr", "clues": ["cardiac resuscitation", "mouth-to-mouth resuscitation", "kiss of life", "cardiopulmonary resuscitation", "cpr"]}, {"answer": "cps", "hint": "synonyms for cps", "clues": ["cycles/second", "cycle", "cycle per second", "hertz", "cps"]}, {"answer": "cpu", "hint": "synonyms for cpu", "clues": ["central processor", "mainframe", "processor", "central processing unit", "cpu"]}, {"answer": "crack_of_doom", "hint": "synonyms for crack of doom", "clues": ["doomsday", "eschaton", "day of reckoning", "end of the world", "crack of doom"]}, {"answer": "cracker", "hint": "synonyms for cracker", "clues": ["cracker bonbon", "snapper", "banger", "firecracker", "cracker"]}, {"answer": "cracklings", "hint": "synonyms for cracklings", "clues": ["greaves", "crackling", "crackle", "crepitation"]}, {"answer": "cradle", "hint": "synonyms for cradle", "clues": ["provenance", "rocker", "place of origin", "birthplace", "cradle"]}, {"answer": "craft", "hint": "synonyms for craft", "clues": ["slyness", "workmanship", "craftsmanship", "guile", "craftiness", "wiliness", "cunning", "trade", "foxiness", "craft"]}, {"answer": "craftiness", "hint": "synonyms for craftiness", "clues": ["wiliness", "craft", "deceitfulness", "slyness", "guile", "cunning", "foxiness", "craftiness"]}, {"answer": "cranny", "hint": "synonyms for cranny", "clues": ["crevice", "chap", "fissure", "crack", "cranny"]}, {"answer": "crap", "hint": "synonyms for crap", "clues": ["shit", "dogshit", "dirt", "horseshit", "bullshit", "turd", "bull", "poop", "crap"]}, {"answer": "crapper", "hint": "synonyms for crapper", "clues": ["throne", "toilet", "can", "potty", "commode", "stool", "pot", "crapper"]}, {"answer": "craps", "hint": "synonyms for craps", "clues": ["shit", "dogshit", "snake eyes", "dirt", "horseshit", "bullshit", "turd", "bull", "poop", "crap"]}, {"answer": "crapulence", "hint": "synonyms for crapulence", "clues": ["boozing", "drunkenness", "drink", "crapulence"]}, {"answer": "crash", "hint": "synonyms for crash", "clues": ["clangoring", "smash", "clank", "clang", "clash", "wreck", "collapse", "clangour", "crash"]}, {"answer": "crayfish", "hint": "synonyms for crayfish", "clues": ["langouste", "crawdad", "ecrevisse", "rock lobster", "spiny lobster", "crawfish"]}, {"answer": "craze", "hint": "synonyms for craze", "clues": ["furor", "rage", "fad", "cult", "craze"]}, {"answer": "craziness", "hint": "synonyms for craziness", "clues": ["tomfoolery", "foolery", "indulgence", "folly", "lunacy", "foolishness", "madness", "craziness"]}, {"answer": "crazy_house", "hint": "synonyms for crazy house", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "crazy house"]}, {"answer": "crease", "hint": "synonyms for crease", "clues": ["line", "kris", "wrinkle", "flexure", "creese", "fold", "seam", "crimp", "bend", "plication", "furrow", "crease"]}, {"answer": "creation", "hint": "synonyms for creation", "clues": ["foundation", "cosmos", "innovation", "conception", "initiation", "existence", "origination", "world", "creative activity", "instauration", "founding", "macrocosm", "institution", "universe", "introduction", "creation"]}, {"answer": "creature", "hint": "synonyms for creature", "clues": ["animal", "fauna", "brute", "animate being", "beast", "creature"]}, {"answer": "credit", "hint": "synonyms for credit", "clues": ["recognition", "reference", "deferred payment", "credit entry", "mention", "course credit", "cite", "citation", "quotation", "credit rating", "acknowledgment", "credit"]}, {"answer": "credit_line", "hint": "synonyms for credit line", "clues": ["line", "bank line", "personal line of credit", "line of credit", "personal credit line", "by-line", "credit line"]}, {"answer": "credits", "hint": "synonyms for credits", "clues": ["recognition", "reference", "deferred payment", "credit entry", "mention", "course credit", "cite", "credit", "citation", "quotation", "credit rating", "acknowledgment"]}, {"answer": "creed", "hint": "synonyms for creed", "clues": ["credo", "church doctrine", "religious doctrine", "gospel", "creed"]}, {"answer": "crenation", "hint": "synonyms for crenation", "clues": ["scallop", "crenel", "crenature", "crenation"]}, {"answer": "crenature", "hint": "synonyms for crenature", "clues": ["scallop", "crenel", "crenation", "crenature"]}, {"answer": "crenel", "hint": "synonyms for crenel", "clues": ["crenation", "scallop", "crenelle", "crenature"]}, {"answer": "crenelle", "hint": "synonyms for crenelle", "clues": ["crenation", "scallop", "crenel", "crenature"]}, {"answer": "crepuscle", "hint": "synonyms for crepuscle", "clues": ["dusk", "twilight", "fall", "gloam", "crepuscule", "evenfall", "nightfall"]}, {"answer": "crepuscule", "hint": "synonyms for crepuscule", "clues": ["dusk", "twilight", "fall", "gloam", "nightfall", "evenfall", "crepuscle"]}, {"answer": "crest", "hint": "synonyms for crest", "clues": ["crown", "tip", "peak", "summit", "top", "crest"]}, {"answer": "crevice", "hint": "synonyms for crevice", "clues": ["fissure", "cranny", "chap", "crack", "cleft", "scissure", "crevice"]}, {"answer": "crew", "hint": "synonyms for crew", "clues": ["gang", "bunch", "crowd", "work party", "crew"]}, {"answer": "crib", "hint": "synonyms for crib", "clues": ["pony", "trot", "cot", "cribbage", "crib"]}, {"answer": "crime", "hint": "synonyms for crime", "clues": ["criminal offence", "offence", "law-breaking", "crime"]}, {"answer": "criminal_offence", "hint": "synonyms for criminal offence", "clues": ["criminal offense", "offence", "law-breaking", "crime"]}, {"answer": "criminal_offense", "hint": "synonyms for criminal offense", "clues": ["criminal offence", "offence", "law-breaking", "crime"]}, {"answer": "crimp", "hint": "synonyms for crimp", "clues": ["crease", "bend", "flexure", "fold", "plication", "crimp"]}, {"answer": "cringle", "hint": "synonyms for cringle", "clues": ["grommet", "eyelet", "loop", "cringle"]}, {"answer": "crinkle", "hint": "synonyms for crinkle", "clues": ["line", "crease", "wrinkle", "furrow", "seam"]}, {"answer": "cristal", "hint": "synonyms for cristal", "clues": ["disco biscuit", "hug drug", "go", "ecstasy", "cristal"]}, {"answer": "critique", "hint": "synonyms for critique", "clues": ["review article", "critical review", "criticism", "review", "critique"]}, {"answer": "crock", "hint": "synonyms for crock", "clues": ["earthenware jar", "lampblack", "soot", "carbon black", "smut", "crock"]}, {"answer": "crook", "hint": "synonyms for crook", "clues": ["shepherd's crook", "turn", "twist", "bend", "crook"]}, {"answer": "crookedness", "hint": "synonyms for crookedness", "clues": ["contortion", "torsion", "deviousness", "tortuousness", "tortuosity", "crookedness"]}, {"answer": "crossbreeding", "hint": "synonyms for crossbreeding", "clues": ["cross", "interbreeding", "hybridizing", "miscegenation", "hybridisation", "crossbreeding"]}, {"answer": "crosscurrent", "hint": "synonyms for crosscurrent", "clues": ["riptide", "tide rip", "rip", "countercurrent", "crosscurrent"]}, {"answer": "crossing", "hint": "synonyms for crossing", "clues": ["cross", "crosswalk", "crossbreeding", "crossover", "crossroad", "hybridization", "ford", "carrefour", "interbreeding", "hybridizing", "intersection", "crossway"]}, {"answer": "crossness", "hint": "synonyms for crossness", "clues": ["crabbedness", "choler", "peevishness", "petulance", "fussiness", "fretfulness", "irritability", "crossness"]}, {"answer": "crossroad", "hint": "synonyms for crossroad", "clues": ["intersection", "carrefour", "crossway", "crossing", "crossroad"]}, {"answer": "crossroads", "hint": "synonyms for crossroads", "clues": ["hamlet", "carrefour", "intersection", "crossroad", "crossway", "crossing"]}, {"answer": "crossway", "hint": "synonyms for crossway", "clues": ["intersection", "carrefour", "crossroad", "crossing", "crossway"]}, {"answer": "crotchet", "hint": "synonyms for crotchet", "clues": ["queerness", "quirkiness", "quarter note", "oddity", "hook", "quirk", "crotchet"]}, {"answer": "crow", "hint": "synonyms for crow", "clues": ["gasconade", "crowing", "vaporing", "line-shooting", "bragging", "brag"]}, {"answer": "crown", "hint": "synonyms for crown", "clues": ["jacket", "summit", "peak", "top", "diadem", "pennant", "cap", "crownwork", "crest", "tip", "jacket crown", "crown"]}, {"answer": "crownwork", "hint": "synonyms for crownwork", "clues": ["cap", "crown", "jacket crown", "jacket", "crownwork"]}, {"answer": "crude_oil", "hint": "synonyms for crude oil", "clues": ["rock oil", "fossil oil", "crude", "oil", "petroleum", "crude oil"]}, {"answer": "cruelty", "hint": "synonyms for cruelty", "clues": ["pitilessness", "ruthlessness", "cruelness", "mercilessness", "harshness", "inhuman treatment", "cruelty"]}, {"answer": "cruiser", "hint": "synonyms for cruiser", "clues": ["squad car", "police cruiser", "pleasure craft", "prowl car", "police car", "cabin cruiser", "patrol car", "pleasure boat", "cruiser"]}, {"answer": "crusade", "hint": "synonyms for crusade", "clues": ["movement", "drive", "effort", "campaign", "cause", "crusade"]}, {"answer": "crush", "hint": "synonyms for crush", "clues": ["infatuation", "crushed leather", "compaction", "jam", "press", "calf love", "crunch", "puppy love", "crush"]}, {"answer": "crust", "hint": "synonyms for crust", "clues": ["encrustation", "impudence", "freshness", "insolence", "cheekiness", "gall", "impertinence", "crust"]}, {"answer": "cry", "hint": "synonyms for cry", "clues": ["rallying cry", "watchword", "yell", "war cry", "call", "battle cry", "shout", "vociferation", "outcry", "cry"]}, {"answer": "cryptograph", "hint": "synonyms for cryptograph", "clues": ["cipher", "secret writing", "secret code", "cryptogram", "cypher"]}, {"answer": "cryptography", "hint": "synonyms for cryptography", "clues": ["coding", "cryptanalysis", "steganography", "secret writing", "cryptology", "cryptography"]}, {"answer": "crystal", "hint": "synonyms for crystal", "clues": ["watch crystal", "crystallization", "watch glass", "lechatelierite", "quartz", "quartz glass", "vitreous silica", "crystal"]}, {"answer": "cs", "hint": "synonyms for cs", "clues": ["100", "atomic number 6", "degree centigrade", "nose candy", "degree Celsius", "light speed", "cesium", "coulomb", "snow", "speed of light", "ampere-second", "coke", "cytosine", "c", "deoxycytidine monophosphate", "ascorbic acid", "carbon", "century", "hundred", "vitamin C", "one C", "blow"]}, {"answer": "cubage_unit", "hint": "synonyms for cubage unit", "clues": ["displacement unit", "volume unit", "cubic measure", "cubic content unit", "cubature unit", "capacity unit", "capacity measure", "cubage unit"]}, {"answer": "cuban_sandwich", "hint": "synonyms for cuban sandwich", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "cuban sandwich"]}, {"answer": "cubature_unit", "hint": "synonyms for cubature unit", "clues": ["displacement unit", "cubage unit", "volume unit", "cubic measure", "cubic content unit", "capacity unit", "capacity measure", "cubature unit"]}, {"answer": "cubbyhole", "hint": "synonyms for cubbyhole", "clues": ["pigeonhole", "cubby", "snug", "snuggery", "cubbyhole"]}, {"answer": "cube", "hint": "synonyms for cube", "clues": ["third power", "square block", "block", "regular hexahedron", "cube"]}, {"answer": "cubic_centimeter", "hint": "synonyms for cubic centimeter", "clues": ["cc", "ml", "milliliter", "cubic centimetre", "mil"]}, {"answer": "cubic_centimetre", "hint": "synonyms for cubic centimetre", "clues": ["cc", "ml", "cubic centimeter", "milliliter", "mil"]}, {"answer": "cubic_content_unit", "hint": "synonyms for cubic content unit", "clues": ["displacement unit", "cubage unit", "cubature unit", "volume unit", "cubic measure", "capacity unit", "capacity measure", "cubic content unit"]}, {"answer": "cubic_decimeter", "hint": "synonyms for cubic decimeter", "clues": ["litre", "cubic decimetre", "l", "liter"]}, {"answer": "cubic_decimetre", "hint": "synonyms for cubic decimetre", "clues": ["litre", "l", "cubic decimeter", "liter"]}, {"answer": "cubic_measure", "hint": "synonyms for cubic measure", "clues": ["displacement unit", "cubage unit", "cubature unit", "volume unit", "cubic content unit", "capacity unit", "capacity measure", "cubic measure"]}, {"answer": "cubicle", "hint": "synonyms for cubicle", "clues": ["booth", "carrel", "kiosk", "cell", "stall", "cubicle"]}, {"answer": "cuckoo's_nest", "hint": "synonyms for cuckoo's nest", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "crazy house", "booby hatch", "madhouse", "snake pit", "cuckoo's nest"]}, {"answer": "cud", "hint": "synonyms for cud", "clues": ["quid", "wad", "plug", "rechewed food", "chew", "chaw", "cud"]}, {"answer": "cuddling", "hint": "synonyms for cuddling", "clues": ["fondling", "necking", "kissing", "snuggling", "caressing", "petting", "hugging", "smooching", "cuddling"]}, {"answer": "cue", "hint": "synonyms for cue", "clues": ["clew", "pool stick", "discriminative stimulus", "clue", "cue stick", "pool cue"]}, {"answer": "cuff", "hint": "synonyms for cuff", "clues": ["handlock", "handcuff", "turnup", "manacle", "cuff"]}, {"answer": "cul_de_sac", "hint": "synonyms for cul de sac", "clues": ["impasse", "blind alley", "dead-end street", "dead end", "cul", "cul de sac"]}, {"answer": "culmination", "hint": "synonyms for culmination", "clues": ["mop up", "climax", "apogee", "completion", "windup", "closing", "culmination"]}, {"answer": "cult", "hint": "synonyms for cult", "clues": ["furor", "rage", "cultus", "fad", "craze", "religious cult", "cult"]}, {"answer": "cultivated_land", "hint": "synonyms for cultivated land", "clues": ["tilth", "tillage", "farmland", "ploughland", "plowland", "tilled land", "cultivated land"]}, {"answer": "cumulation", "hint": "synonyms for cumulation", "clues": ["pile", "mound", "heap", "cumulus", "agglomerate", "cumulation"]}, {"answer": "cumulus", "hint": "synonyms for cumulus", "clues": ["pile", "cumulation", "mound", "heap", "agglomerate", "cumulus cloud", "cumulus"]}, {"answer": "curb", "hint": "synonyms for curb", "clues": ["kerb", "curbing", "bridle", "check", "curb bit"]}, {"answer": "curing", "hint": "synonyms for curing", "clues": ["hardening", "set", "solidifying", "solidification", "curing"]}, {"answer": "curio", "hint": "synonyms for curio", "clues": ["peculiarity", "oddity", "oddment", "curiosity", "rarity", "curio"]}, {"answer": "curiosity", "hint": "synonyms for curiosity", "clues": ["peculiarity", "oddity", "wonder", "curio", "oddment", "rarity", "curiosity"]}, {"answer": "curl", "hint": "synonyms for curl", "clues": ["coil", "curlicue", "scroll", "whorl", "gyre", "ringlet", "roll", "curl"]}, {"answer": "curlicue", "hint": "synonyms for curlicue", "clues": ["coil", "scroll", "curl", "whorl", "gyre", "squiggle", "ringlet", "roll", "curlicue"]}, {"answer": "curriculum", "hint": "synonyms for curriculum", "clues": ["program", "syllabus", "course of study", "curriculum"]}, {"answer": "curse", "hint": "synonyms for curse", "clues": ["expletive", "swearword", "oath", "hex", "curse word", "cuss", "execration", "whammy", "jinx", "swearing", "torment", "condemnation", "curse"]}, {"answer": "curse_word", "hint": "synonyms for curse word", "clues": ["expletive", "swearword", "oath", "swearing", "curse", "cuss", "curse word"]}, {"answer": "curtain", "hint": "synonyms for curtain", "clues": ["pall", "mantle", "drape", "drapery", "curtain"]}, {"answer": "curtness", "hint": "synonyms for curtness", "clues": ["shortness", "abruptness", "gruffness", "brusqueness", "curtness"]}, {"answer": "curve", "hint": "synonyms for curve", "clues": ["curve ball", "curved shape", "bender", "curvature", "bend", "breaking ball", "curve"]}, {"answer": "cuss", "hint": "synonyms for cuss", "clues": ["expletive", "swearword", "oath", "swearing", "curse", "curse word", "cuss"]}, {"answer": "customs", "hint": "synonyms for customs", "clues": ["usage", "impost", "tradition", "custom", "usance", "customs duty"]}, {"answer": "cutaneous_senses", "hint": "synonyms for cutaneous senses", "clues": ["touch", "touch modality", "sense of touch", "skin senses", "cutaneous senses"]}, {"answer": "cutter", "hint": "synonyms for cutter", "clues": ["pinnace", "cutlery", "cutting tool", "ship's boat", "tender", "cutter"]}, {"answer": "cwt", "hint": "synonyms for cwt", "clues": ["centner", "long hundredweight", "short hundredweight", "hundredweight", "cental", "quintal", "cwt"]}, {"answer": "cycle", "hint": "synonyms for cycle", "clues": ["cps", "oscillation", "round", "hertz", "rhythm", "wheel", "bicycle", "bike", "cycle per second", "cycles/second", "cycle"]}, {"answer": "cycle_per_second", "hint": "synonyms for cycle per second", "clues": ["cps", "cycles/second", "cycle", "hertz", "cycle per second"]}, {"answer": "cycles/second", "hint": "synonyms for cycles/second", "clues": ["cps", "cycle", "cycle per second", "hertz", "cycles/second"]}, {"answer": "cypher", "hint": "synonyms for cypher", "clues": ["goose egg", "nix", "cryptograph", "0", "aught", "nothing", "zippo", "zero", "nil", "zilch", "cipher", "null", "secret code", "nada", "zip", "nought", "cypher"]}, {"answer": "dab", "hint": "synonyms for dab", "clues": ["splatter", "tap", "splash", "pat", "dab"]}, {"answer": "dag", "hint": "synonyms for dag", "clues": ["dekagram", "jag", "dkg", "dag"]}, {"answer": "dais", "hint": "synonyms for dais", "clues": ["rostrum", "podium", "soapbox", "pulpit", "ambo", "stump", "dais"]}, {"answer": "dal", "hint": "synonyms for dal", "clues": ["decaliter", "dekalitre", "dkl", "dal"]}, {"answer": "dalliance", "hint": "synonyms for dalliance", "clues": ["toying", "flirtation", "flirting", "coquetry", "dawdling", "trifling", "dalliance"]}, {"answer": "dam", "hint": "synonyms for dam", "clues": ["decametre", "dkm", "dike", "dyke", "dekameter", "dam"]}, {"answer": "damage", "hint": "synonyms for damage", "clues": ["legal injury", "harm", "price", "equipment casualty", "terms", "impairment", "scathe", "hurt", "wrong", "damage"]}, {"answer": "damages", "hint": "synonyms for damages", "clues": ["legal injury", "amends", "wrong", "redress", "harm", "price", "indemnity", "equipment casualty", "terms", "impairment", "scathe", "hurt", "restitution", "indemnification", "damage"]}, {"answer": "dandle_board", "hint": "synonyms for dandle board", "clues": ["teeterboard", "tilting board", "teeter", "teetertotter", "seesaw", "dandle board"]}, {"answer": "dapple", "hint": "synonyms for dapple", "clues": ["spot", "patch", "fleck", "maculation", "speckle", "dapple"]}, {"answer": "darkness", "hint": "synonyms for darkness", "clues": ["duskiness", "dark", "shadow", "swarthiness", "darkness"]}, {"answer": "darn", "hint": "synonyms for darn", "clues": ["damn", "shit", "patch", "mend", "tinker's damn", "hoot", "red cent", "shucks", "darn"]}, {"answer": "dash", "hint": "synonyms for dash", "clues": ["elan", "style", "flair", "dah", "bolt", "hyphen", "panache", "sprint"]}, {"answer": "dasheen", "hint": "synonyms for dasheen", "clues": ["cocoyam", "taro root", "taro", "edda", "dasheen"]}, {"answer": "data_processor", "hint": "synonyms for data processor", "clues": ["information processing system", "electronic computer", "computing device", "computing machine", "computer", "data processor"]}, {"answer": "date", "hint": "synonyms for date", "clues": ["day of the month", "engagement", "particular date", "appointment", "date"]}, {"answer": "daub", "hint": "synonyms for daub", "clues": ["smear", "spot", "smudge", "smirch", "slur", "blot", "daub"]}, {"answer": "davy_jones", "hint": "synonyms for davy jones", "clues": ["ocean floor", "seabed", "ocean bottom", "sea floor", "sea bottom", "davy jones"]}, {"answer": "davy_jones's_locker", "hint": "synonyms for davy jones's locker", "clues": ["ocean floor", "seabed", "ocean bottom", "sea floor", "sea bottom", "davy jones's locker"]}, {"answer": "dawn", "hint": "synonyms for dawn", "clues": ["dayspring", "break of day", "first light", "sunrise", "dawning", "daybreak", "sunup", "morning", "aurora", "cockcrow"]}, {"answer": "dawning", "hint": "synonyms for dawning", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "daybreak", "sunup", "morning", "aurora", "cockcrow"]}, {"answer": "day", "hint": "synonyms for day", "clues": ["daylight", "daytime", "mean solar day", "24-hour interval", "solar day", "twenty-four hours", "sidereal day", "twenty-four hour period", "day"]}, {"answer": "day_book", "hint": "synonyms for day book", "clues": ["rap sheet", "charge sheet", "police blotter", "blotter", "day book"]}, {"answer": "day_of_judgement", "hint": "synonyms for day of judgement", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "day of judgement"]}, {"answer": "day_of_judgment", "hint": "synonyms for day of judgment", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "day of judgment"]}, {"answer": "day_of_reckoning", "hint": "synonyms for day of reckoning", "clues": ["eschaton", "doom", "crack of doom", "doomsday", "end of the world", "day of reckoning"]}, {"answer": "daybreak", "hint": "synonyms for daybreak", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "sunup", "morning", "aurora", "cockcrow", "daybreak"]}, {"answer": "daydream", "hint": "synonyms for daydream", "clues": ["castle in the air", "revery", "oneirism", "daydreaming", "air castle", "castle in Spain", "reverie"]}, {"answer": "daydreaming", "hint": "synonyms for daydreaming", "clues": ["castle in the air", "revery", "oneirism", "daydream", "air castle", "castle in Spain", "reverie"]}, {"answer": "days", "hint": "synonyms for days", "clues": ["daylight", "years", "day", "daytime", "mean solar day", "24-hour interval", "solar day", "twenty-four hours", "sidereal day", "twenty-four hour period"]}, {"answer": "dayspring", "hint": "synonyms for dayspring", "clues": ["dawn", "break of day", "first light", "sunrise", "daybreak", "sunup", "morning", "aurora", "cockcrow", "dayspring"]}, {"answer": "daze", "hint": "synonyms for daze", "clues": ["shock", "fog", "stupor", "haze", "daze"]}, {"answer": "db", "hint": "synonyms for db", "clues": ["atomic number 105", "element 105", "dubnium", "hahnium", "decibel", "dB"]}, {"answer": "dead_reckoning", "hint": "synonyms for dead reckoning", "clues": ["shot", "guess", "guesswork", "dead reckoning"]}, {"answer": "deal", "hint": "synonyms for deal", "clues": ["good deal", "slew", "mint", "heap", "peck", "quite a little", "softwood", "hand", "wad", "trade", "mass", "mess", "raft", "business deal", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "bargain", "flock", "tidy sum", "pot", "deal"]}, {"answer": "dealings", "hint": "synonyms for dealings", "clues": ["traffic", "transaction", "dealing", "relations"]}, {"answer": "death", "hint": "synonyms for death", "clues": ["decease", "dying", "last", "expiry", "demise", "death"]}, {"answer": "death_rate", "hint": "synonyms for death rate", "clues": ["mortality rate", "deathrate", "mortality", "fatality rate"]}, {"answer": "deathrate", "hint": "synonyms for deathrate", "clues": ["mortality rate", "death rate", "mortality", "fatality rate"]}, {"answer": "debacle", "hint": "synonyms for debacle", "clues": ["walloping", "drubbing", "trouncing", "whipping", "fiasco", "thrashing", "slaughter", "debacle"]}, {"answer": "debate", "hint": "synonyms for debate", "clues": ["argument", "argumentation", "public debate", "disputation", "debate"]}, {"answer": "debauch", "hint": "synonyms for debauch", "clues": ["orgy", "drunken revelry", "riot", "saturnalia", "debauchery", "bacchanalia", "debauch"]}, {"answer": "debauchery", "hint": "synonyms for debauchery", "clues": ["orgy", "drunken revelry", "riot", "saturnalia", "bacchanalia", "debauch", "debauchery"]}, {"answer": "debris", "hint": "synonyms for debris", "clues": ["rubble", "dust", "junk", "detritus", "debris"]}, {"answer": "debut", "hint": "synonyms for debut", "clues": ["first appearance", "launching", "unveiling", "entry", "introduction", "debut"]}, {"answer": "decade", "hint": "synonyms for decade", "clues": ["decennary", "10", "tenner", "decennium", "ten", "decade"]}, {"answer": "decaliter", "hint": "synonyms for decaliter", "clues": ["dekalitre", "dal", "dkl", "decaliter"]}, {"answer": "decalitre", "hint": "synonyms for decalitre", "clues": ["decaliter", "dekalitre", "dal", "dkl"]}, {"answer": "decameter", "hint": "synonyms for decameter", "clues": ["decametre", "dkm", "dam", "dekameter"]}, {"answer": "decametre", "hint": "synonyms for decametre", "clues": ["dkm", "dam", "dekameter", "decametre"]}, {"answer": "decay", "hint": "synonyms for decay", "clues": ["decline", "disintegration", "decomposition", "radioactive decay", "decay"]}, {"answer": "deceit", "hint": "synonyms for deceit", "clues": ["misrepresentation", "dissimulation", "deception", "fraudulence", "dissembling", "deceit"]}, {"answer": "deception", "hint": "synonyms for deception", "clues": ["legerdemain", "magic trick", "thaumaturgy", "trick", "magic", "illusion", "misrepresentation", "conjuration", "dissimulation", "deceit", "conjuring trick", "dissembling", "deception"]}, {"answer": "declaration", "hint": "synonyms for declaration", "clues": ["annunciation", "resolution", "contract", "announcement", "proclamation", "resolve", "declaration"]}, {"answer": "declarative_mood", "hint": "synonyms for declarative mood", "clues": ["common mood", "indicative mood", "indicative", "declarative", "fact mood", "declarative mood"]}, {"answer": "declension", "hint": "synonyms for declension", "clues": ["worsening", "decline", "fall", "deterioration", "descent", "downslope", "decline in quality", "declivity", "declination", "declension"]}, {"answer": "declination", "hint": "synonyms for declination", "clues": ["decline", "fall", "descent", "regrets", "downslope", "celestial latitude", "declension", "declivity", "dec", "declination"]}, {"answer": "decline", "hint": "synonyms for decline", "clues": ["decay", "fall", "diminution", "descent", "downslope", "declension", "declivity", "declination", "decline"]}, {"answer": "declivity", "hint": "synonyms for declivity", "clues": ["decline", "fall", "declension", "descent", "declination", "downslope", "declivity"]}, {"answer": "decomposition", "hint": "synonyms for decomposition", "clues": ["putrefaction", "decay", "rotting", "vector decomposition", "chemical decomposition reaction", "decomposition reaction", "rot", "decomposition"]}, {"answer": "decoration", "hint": "synonyms for decoration", "clues": ["medallion", "ornament", "medal", "palm", "ribbon", "ornamentation", "laurel wreath", "decoration"]}, {"answer": "decrease", "hint": "synonyms for decrease", "clues": ["decrement", "lessening", "reduction", "diminution", "drop-off", "step-down", "decrease"]}, {"answer": "decree", "hint": "synonyms for decree", "clues": ["fiat", "order", "edict", "rescript", "decree"]}, {"answer": "dedication", "hint": "synonyms for dedication", "clues": ["loyalty", "commitment", "allegiance", "inscription", "dedication"]}, {"answer": "deduction", "hint": "synonyms for deduction", "clues": ["discount", "entailment", "tax deduction", "subtraction", "deductive reasoning", "price reduction", "implication", "synthesis", "tax write-off", "deduction"]}, {"answer": "deed", "hint": "synonyms for deed", "clues": ["human activity", "deed of conveyance", "act", "human action", "title", "deed"]}, {"answer": "deeds", "hint": "synonyms for deeds", "clues": ["human activity", "works", "deed of conveyance", "act", "deed", "human action", "title"]}, {"answer": "deep_brown", "hint": "synonyms for deep brown", "clues": ["umber", "chocolate", "coffee", "burnt umber", "deep brown"]}, {"answer": "deepness", "hint": "synonyms for deepness", "clues": ["depth", "profundity", "astuteness", "profoundness", "deepness"]}, {"answer": "defalcation", "hint": "synonyms for defalcation", "clues": ["misapplication", "peculation", "misappropriation", "embezzlement", "defalcation"]}, {"answer": "defamation", "hint": "synonyms for defamation", "clues": ["traducement", "aspersion", "denigration", "obloquy", "slander", "calumniation", "hatchet job", "calumny", "defamation"]}, {"answer": "defence", "hint": "synonyms for defence", "clues": ["demurrer", "vindication", "defense", "defense lawyers", "defense force", "defense team", "defence reaction", "denial", "defence mechanism", "refutation", "defensive measure", "defensive structure", "defending team"]}, {"answer": "defense", "hint": "synonyms for defense", "clues": ["demurrer", "vindication", "defense lawyers", "defense force", "defense team", "defence reaction", "denial", "defence", "defence mechanism", "refutation", "defensive measure", "defensive structure", "defending team"]}, {"answer": "deference", "hint": "synonyms for deference", "clues": ["respect", "compliancy", "obligingness", "respectfulness", "complaisance", "deference"]}, {"answer": "deflection", "hint": "synonyms for deflection", "clues": ["refraction", "deviation", "divagation", "bending", "diversion", "digression", "deflexion", "deflection"]}, {"answer": "deflexion", "hint": "synonyms for deflexion", "clues": ["refraction", "deflection", "deviation", "divagation", "bending", "diversion", "digression", "deflexion"]}, {"answer": "deftness", "hint": "synonyms for deftness", "clues": ["adroitness", "facility", "adeptness", "quickness", "deftness"]}, {"answer": "degeneracy", "hint": "synonyms for degeneracy", "clues": ["putrefaction", "depravity", "depravation", "corruption", "degeneracy"]}, {"answer": "degree", "hint": "synonyms for degree", "clues": ["level", "arcdegree", "grade", "academic degree", "degree"]}, {"answer": "degustation", "hint": "synonyms for degustation", "clues": ["tasting", "relishing", "savouring", "degustation"]}, {"answer": "dejectedness", "hint": "synonyms for dejectedness", "clues": ["dispiritedness", "lowness", "low-spiritedness", "downheartedness", "dejectedness"]}, {"answer": "dejection", "hint": "synonyms for dejection", "clues": ["fecal matter", "feces", "stool", "ordure", "dejection"]}, {"answer": "dekaliter", "hint": "synonyms for dekaliter", "clues": ["decaliter", "dekalitre", "dal", "dkl"]}, {"answer": "dekalitre", "hint": "synonyms for dekalitre", "clues": ["decaliter", "dal", "dkl", "dekalitre"]}, {"answer": "dekameter", "hint": "synonyms for dekameter", "clues": ["decametre", "dkm", "dam", "dekameter"]}, {"answer": "dekametre", "hint": "synonyms for dekametre", "clues": ["decametre", "dkm", "dam", "dekameter"]}, {"answer": "delay", "hint": "synonyms for delay", "clues": ["wait", "holdup", "postponement", "hold", "time lag", "delay"]}, {"answer": "delegacy", "hint": "synonyms for delegacy", "clues": ["delegation", "deputation", "mission", "commission", "delegacy"]}, {"answer": "delegation", "hint": "synonyms for delegation", "clues": ["delegacy", "relegation", "commission", "delegating", "deputation", "mission"]}, {"answer": "deliberation", "hint": "synonyms for deliberation", "clues": ["deliberateness", "slowness", "calculation", "unhurriedness", "advisement", "weighing", "deliberation"]}, {"answer": "delicacy", "hint": "synonyms for delicacy", "clues": ["diplomacy", "treat", "finesse", "discreetness", "dainty", "fragility", "goody", "slightness", "airiness", "discretion", "fineness", "daintiness", "kickshaw", "delicacy"]}, {"answer": "delimitation", "hint": "synonyms for delimitation", "clues": ["border", "borderline", "mete", "boundary line", "delimitation"]}, {"answer": "delineation", "hint": "synonyms for delineation", "clues": ["picture", "word-painting", "word picture", "depiction", "line drawing", "limning", "characterization", "portrayal", "delineation"]}, {"answer": "delivery", "hint": "synonyms for delivery", "clues": ["deliverance", "saving", "bringing", "livery", "obstetrical delivery", "legal transfer", "speech", "manner of speaking", "pitch", "rescue"]}, {"answer": "deluge", "hint": "synonyms for deluge", "clues": ["flood", "torrent", "soaker", "alluvion", "cloudburst", "inundation", "downpour", "pelter", "waterspout", "deluge"]}, {"answer": "demarcation", "hint": "synonyms for demarcation", "clues": ["line", "dividing line", "limit", "demarcation line", "contrast", "demarcation"]}, {"answer": "demeanor", "hint": "synonyms for demeanor", "clues": ["deportment", "conduct", "demeanour", "behavior"]}, {"answer": "demeanour", "hint": "synonyms for demeanour", "clues": ["deportment", "conduct", "demeanor", "behavior"]}, {"answer": "demesne", "hint": "synonyms for demesne", "clues": ["landed estate", "land", "estate", "domain", "acres", "demesne"]}, {"answer": "demonstration", "hint": "synonyms for demonstration", "clues": ["presentment", "monstrance", "manifestation", "presentation", "demo", "demonstration"]}, {"answer": "demurrer", "hint": "synonyms for demurrer", "clues": ["defense", "demurral", "demur", "denial", "demurrer"]}, {"answer": "denial", "hint": "synonyms for denial", "clues": ["self-denial", "defense", "demurrer", "self-abnegation", "abnegation", "self-renunciation", "disaffirmation", "denial"]}, {"answer": "denigration", "hint": "synonyms for denigration", "clues": ["aspersion", "defamation", "slander", "calumny", "deprecation", "belittling", "denigration"]}, {"answer": "denseness", "hint": "synonyms for denseness", "clues": ["compactness", "density", "tightness", "slow-wittedness", "dumbness", "concentration", "denseness"]}, {"answer": "density", "hint": "synonyms for density", "clues": ["denseness", "compactness", "tightness", "concentration", "density"]}, {"answer": "dent", "hint": "synonyms for dent", "clues": ["incision", "gouge", "ding", "nick", "prick", "slit", "scratch", "dent"]}, {"answer": "denudation", "hint": "synonyms for denudation", "clues": ["husking", "uncovering", "stripping", "baring", "denudation"]}, {"answer": "deoxyephedrine", "hint": "synonyms for deoxyephedrine", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "crank", "chicken feed", "meth", "methamphetamine hydrochloride", "deoxyephedrine"]}, {"answer": "departure", "hint": "synonyms for departure", "clues": ["difference", "deviation", "going away", "going", "passing", "release", "divergence", "expiration", "leaving", "exit", "loss", "departure"]}, {"answer": "depiction", "hint": "synonyms for depiction", "clues": ["portraying", "depicting", "portrayal", "picture", "word-painting", "word picture", "line drawing", "limning", "characterization", "delineation"]}, {"answer": "deportment", "hint": "synonyms for deportment", "clues": ["conduct", "demeanor", "behavior", "deportment"]}, {"answer": "deposit", "hint": "synonyms for deposit", "clues": ["sediment", "deposition", "down payment", "alluviation", "repository", "sedimentation", "bank deposit", "depositary", "deposit"]}, {"answer": "deposit_box", "hint": "synonyms for deposit box", "clues": ["safety deposit box", "lockbox", "safety-deposit", "deposit box"]}, {"answer": "depot", "hint": "synonyms for depot", "clues": ["terminus", "entrepot", "storehouse", "store", "storage", "terminal", "depot"]}, {"answer": "depravation", "hint": "synonyms for depravation", "clues": ["putrefaction", "depravity", "degeneracy", "corruption", "depravation"]}, {"answer": "depravity", "hint": "synonyms for depravity", "clues": ["putrefaction", "depravation", "turpitude", "degeneracy", "corruption", "depravity"]}, {"answer": "depth", "hint": "synonyms for depth", "clues": ["deepness", "profundity", "astuteness", "profoundness", "depth"]}, {"answer": "deputation", "hint": "synonyms for deputation", "clues": ["delegacy", "relegation", "commission", "delegating", "mission", "deputation"]}, {"answer": "derby", "hint": "synonyms for derby", "clues": ["plug hat", "derby hat", "bowler", "bowler hat", "derby"]}, {"answer": "derby_hat", "hint": "synonyms for derby hat", "clues": ["derby", "bowler", "plug hat", "bowler hat", "derby hat"]}, {"answer": "derivation", "hint": "synonyms for derivation", "clues": ["filiation", "etymologizing", "lineage", "deriving", "ancestry", "derivation"]}, {"answer": "derived_function", "hint": "synonyms for derived function", "clues": ["first derivative", "differential", "differential coefficient", "derivative", "derived function"]}, {"answer": "descent", "hint": "synonyms for descent", "clues": ["filiation", "decline", "blood", "lineage", "parentage", "line of descent", "ancestry", "downslope", "declivity", "declination", "stock", "pedigree", "stemma", "line", "fall", "bloodline", "extraction", "declension", "origin", "descent"]}, {"answer": "desert_boot", "hint": "synonyms for desert boot", "clues": ["buskin", "half boot", "combat boot", "top boot", "desert boot"]}, {"answer": "design", "hint": "synonyms for design", "clues": ["figure", "aim", "innovation", "blueprint", "conception", "purpose", "invention", "intent", "excogitation", "pattern", "designing", "plan"]}, {"answer": "designation", "hint": "synonyms for designation", "clues": ["denomination", "appellative", "naming", "appellation", "identification", "appointment", "assignment", "designation"]}, {"answer": "despatch", "hint": "synonyms for despatch", "clues": ["expeditiousness", "shipment", "communique", "expedition", "dispatch"]}, {"answer": "despicability", "hint": "synonyms for despicability", "clues": ["despicableness", "baseness", "sordidness", "contemptibility", "despicability"]}, {"answer": "despicableness", "hint": "synonyms for despicableness", "clues": ["baseness", "sordidness", "despicability", "contemptibility", "despicableness"]}, {"answer": "despoilation", "hint": "synonyms for despoilation", "clues": ["despoilment", "spoilation", "spoil", "despoliation"]}, {"answer": "despoilment", "hint": "synonyms for despoilment", "clues": ["spoilation", "spoil", "despoliation", "despoilment"]}, {"answer": "despoliation", "hint": "synonyms for despoliation", "clues": ["despoilment", "spoilation", "spoil", "despoliation"]}, {"answer": "despotism", "hint": "synonyms for despotism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "despotism"]}, {"answer": "destination", "hint": "synonyms for destination", "clues": ["finish", "terminus", "address", "name and address", "goal", "destination"]}, {"answer": "desynchronisation", "hint": "synonyms for desynchronisation", "clues": ["asynchrony", "desynchronizing", "asynchronism", "desynchronisation"]}, {"answer": "desynchronization", "hint": "synonyms for desynchronization", "clues": ["asynchrony", "desynchronizing", "asynchronism", "desynchronisation"]}, {"answer": "detachment", "hint": "synonyms for detachment", "clues": ["disengagement", "withdrawal", "separation", "breakup", "detachment"]}, {"answer": "detail", "hint": "synonyms for detail", "clues": ["particular", "contingent", "item", "point", "detail"]}, {"answer": "details", "hint": "synonyms for details", "clues": ["inside information", "detail", "point", "particular", "contingent", "item"]}, {"answer": "detection", "hint": "synonyms for detection", "clues": ["catching", "spying", "detective work", "espial", "sleuthing", "signal detection", "detecting", "spotting", "sensing"]}, {"answer": "determination", "hint": "synonyms for determination", "clues": ["finding", "purpose", "conclusion", "decision", "determination"]}, {"answer": "determiner", "hint": "synonyms for determiner", "clues": ["causal factor", "determining factor", "clincher", "determinative", "determinant", "determiner"]}, {"answer": "determining_factor", "hint": "synonyms for determining factor", "clues": ["causal factor", "determiner", "clincher", "determinative", "determinant", "determining factor"]}, {"answer": "detestation", "hint": "synonyms for detestation", "clues": ["abhorrence", "loathing", "odium", "abomination", "execration", "detestation"]}, {"answer": "detrition", "hint": "synonyms for detrition", "clues": ["abrasion", "attrition", "friction", "corrasion", "rubbing", "grinding", "detrition"]}, {"answer": "detritus", "hint": "synonyms for detritus", "clues": ["rubble", "dust", "junk", "debris", "detritus"]}, {"answer": "deuce", "hint": "synonyms for deuce", "clues": ["two", "devil", "2", "dickens", "deuce"]}, {"answer": "deuce-ace", "hint": "synonyms for deuce-ace", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "3", "threesome", "trey", "trio", "deuce-ace"]}, {"answer": "development", "hint": "synonyms for development", "clues": ["ontogeny", "exploitation", "developing", "maturation", "evolution", "growing", "growth", "ontogenesis", "development"]}, {"answer": "deviation", "hint": "synonyms for deviation", "clues": ["deflexion", "deflection", "difference", "departure", "divergence", "divagation", "diversion", "digression", "deviance", "deviation"]}, {"answer": "devilment", "hint": "synonyms for devilment", "clues": ["mischievousness", "roguery", "deviltry", "mischief-making", "rascality", "roguishness", "shenanigan", "mischief", "devilment"]}, {"answer": "devilry", "hint": "synonyms for devilry", "clues": ["mischievousness", "roguery", "deviltry", "mischief-making", "rascality", "devilment", "roguishness", "shenanigan", "mischief"]}, {"answer": "deviltry", "hint": "synonyms for deviltry", "clues": ["mischievousness", "roguery", "mischief-making", "devilry", "rascality", "devilment", "roguishness", "shenanigan", "mischief"]}, {"answer": "devotion", "hint": "synonyms for devotion", "clues": ["veneration", "cultism", "devotedness", "idolatry", "devotion"]}, {"answer": "dialogue", "hint": "synonyms for dialogue", "clues": ["talks", "dialog", "duologue", "negotiation"]}, {"answer": "diamond", "hint": "synonyms for diamond", "clues": ["rhomb", "ball field", "adamant", "infield", "rhombus", "baseball diamond", "baseball field", "diamond"]}, {"answer": "diamond_dust", "hint": "synonyms for diamond dust", "clues": ["ice crystal", "frost snow", "poudrin", "ice needle", "snow mist", "frost mist", "diamond dust"]}, {"answer": "diaphoresis", "hint": "synonyms for diaphoresis", "clues": ["hidrosis", "sweating", "perspiration", "sudation", "diaphoresis"]}, {"answer": "dichloroethyl_sulfide", "hint": "synonyms for dichloroethyl sulfide", "clues": ["mustard agent", "blistering agent", "mustard gas", "sulfur mustard", "dichloroethyl sulfide"]}, {"answer": "dickie", "hint": "synonyms for dickie", "clues": ["dickey", "dickey-seat", "shirtfront", "dickie"]}, {"answer": "dictatorship", "hint": "synonyms for dictatorship", "clues": ["one-man rule", "tyranny", "shogunate", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "dictatorship"]}, {"answer": "diction", "hint": "synonyms for diction", "clues": ["choice of words", "verbiage", "phraseology", "wording", "enunciation", "phrasing", "diction"]}, {"answer": "didactics", "hint": "synonyms for didactics", "clues": ["teaching", "instruction", "pedagogy", "education", "educational activity", "didactics"]}, {"answer": "diddley", "hint": "synonyms for diddley", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "diddly", "doodly-squat", "jack"]}, {"answer": "diddly", "hint": "synonyms for diddly", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "doodly-squat", "jack", "diddley"]}, {"answer": "diddly-shit", "hint": "synonyms for diddly-shit", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "diddly", "doodly-squat", "jack"]}, {"answer": "diddly-squat", "hint": "synonyms for diddly-squat", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "diddly", "doodly-squat", "jack"]}, {"answer": "diddlyshit", "hint": "synonyms for diddlyshit", "clues": ["shit", "diddlysquat", "squat", "diddly", "doodly-squat", "diddly-shit", "jack"]}, {"answer": "diddlysquat", "hint": "synonyms for diddlysquat", "clues": ["shit", "squat", "diddlyshit", "diddly", "doodly-squat", "diddly-squat", "jack"]}, {"answer": "diethyl_ether", "hint": "synonyms for diethyl ether", "clues": ["ethoxyethane", "ether", "divinyl ether", "ethyl ether"]}, {"answer": "diethylbarbituric_acid", "hint": "synonyms for diethylbarbituric acid", "clues": ["barbitone", "veronal", "diethylmalonylurea", "barbital", "diethylbarbituric acid"]}, {"answer": "diethylmalonylurea", "hint": "synonyms for diethylmalonylurea", "clues": ["barbitone", "diethylbarbituric acid", "barbital", "veronal", "diethylmalonylurea"]}, {"answer": "difference", "hint": "synonyms for difference", "clues": ["conflict", "deviation", "remainder", "departure", "difference of opinion", "divergence", "dispute", "difference"]}, {"answer": "differential_coefficient", "hint": "synonyms for differential coefficient", "clues": ["first derivative", "differential", "derived function", "derivative", "differential coefficient"]}, {"answer": "dig", "hint": "synonyms for dig", "clues": ["digging", "archeological site", "slam", "jab", "gibe", "shaft", "barb", "excavation", "shot", "jibe", "dig"]}, {"answer": "diggings", "hint": "synonyms for diggings", "clues": ["digging", "lodgings", "domiciliation", "digs", "pad", "excavation"]}, {"answer": "digit", "hint": "synonyms for digit", "clues": ["figure", "finger", "finger's breadth", "digit"]}, {"answer": "dignity", "hint": "synonyms for dignity", "clues": ["lordliness", "gravitas", "self-respect", "self-regard", "self-worth", "dignity"]}, {"answer": "digression", "hint": "synonyms for digression", "clues": ["deflection", "deviation", "aside", "parenthesis", "divagation", "excursion", "diversion", "excursus", "deflexion", "digression"]}, {"answer": "digs", "hint": "synonyms for digs", "clues": ["digging", "archeological site", "slam", "jab", "jibe", "gibe", "dig", "shaft", "barb", "lodgings", "domiciliation", "excavation", "shot", "pad"]}, {"answer": "diminution", "hint": "synonyms for diminution", "clues": ["reduction", "decline", "step-down", "decrease", "diminution"]}, {"answer": "diminutiveness", "hint": "synonyms for diminutiveness", "clues": ["petiteness", "minuteness", "weeness", "tininess", "diminutiveness"]}, {"answer": "din", "hint": "synonyms for din", "clues": ["blare", "cacophony", "ruckus", "tumult", "ruction", "rumpus", "commotion", "clamor", "blaring", "din"]}, {"answer": "dinero", "hint": "synonyms for dinero", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "dinero"]}, {"answer": "diode", "hint": "synonyms for diode", "clues": ["junction rectifier", "semiconductor diode", "crystal rectifier", "rectifying valve", "rectifying tube", "diode"]}, {"answer": "dip", "hint": "synonyms for dip", "clues": ["inclination", "free fall", "fall", "drop", "angle of dip", "magnetic dip", "plunge", "magnetic inclination", "dip"]}, {"answer": "diplomacy", "hint": "synonyms for diplomacy", "clues": ["discreetness", "diplomatic negotiations", "statecraft", "delicacy", "finesse", "statesmanship", "diplomacy"]}, {"answer": "direction", "hint": "synonyms for direction", "clues": ["commission", "focus", "instruction", "focal point", "counselling", "guidance", "centering", "focussing", "counsel", "management", "charge", "steering", "way", "direction"]}, {"answer": "directness", "hint": "synonyms for directness", "clues": ["frankness", "candour", "straightness", "candidness", "forthrightness", "directness"]}, {"answer": "dirge", "hint": "synonyms for dirge", "clues": ["coronach", "lament", "threnody", "requiem", "dirge"]}, {"answer": "dirty_money", "hint": "synonyms for dirty money", "clues": ["loot", "pillage", "booty", "prize", "plunder", "swag", "dirty money"]}, {"answer": "dirty_word", "hint": "synonyms for dirty word", "clues": ["vulgarism", "smut", "filth", "obscenity", "dirty word"]}, {"answer": "disarray", "hint": "synonyms for disarray", "clues": ["confusedness", "disorderliness", "confusion", "mental confusion", "muddiness", "disarray"]}, {"answer": "disaster", "hint": "synonyms for disaster", "clues": ["cataclysm", "catastrophe", "tragedy", "calamity", "disaster"]}, {"answer": "disbelief", "hint": "synonyms for disbelief", "clues": ["mental rejection", "incredulity", "skepticism", "unbelief", "disbelief"]}, {"answer": "disbursal", "hint": "synonyms for disbursal", "clues": ["spending", "disbursement", "outlay", "expense", "disbursal"]}, {"answer": "disbursement", "hint": "synonyms for disbursement", "clues": ["spending", "disbursal", "outlay", "expense", "disbursement"]}, {"answer": "disc", "hint": "synonyms for disc", "clues": ["platter", "phonograph record", "disk", "record", "saucer", "magnetic disc", "disc"]}, {"answer": "disceptation", "hint": "synonyms for disceptation", "clues": ["contention", "disputation", "argument", "tilt", "contestation", "controversy", "arguing"]}, {"answer": "discernment", "hint": "synonyms for discernment", "clues": ["judgement", "perceptiveness", "understanding", "sagacity", "discretion", "appreciation", "apprehension", "taste", "savvy", "sagaciousness", "discernment"]}, {"answer": "discharge", "hint": "synonyms for discharge", "clues": ["expelling", "sacking", "electric arc", "venting", "outpouring", "waiver", "liberation", "arc", "spark", "dismissal", "release", "run", "firing", "dismission", "electric discharge", "firing off", "emission", "discharge"]}, {"answer": "discipline", "hint": "synonyms for discipline", "clues": ["subject field", "field", "correction", "study", "field of study", "bailiwick", "subject area", "subject", "discipline"]}, {"answer": "disco_biscuit", "hint": "synonyms for disco biscuit", "clues": ["cristal", "hug drug", "go", "ecstasy", "disco biscuit"]}, {"answer": "discount", "hint": "synonyms for discount", "clues": ["rebate", "discount rate", "bank discount", "deduction", "price reduction", "discount"]}, {"answer": "discourse", "hint": "synonyms for discourse", "clues": ["treatment", "discussion", "sermon", "preaching", "discourse"]}, {"answer": "discourtesy", "hint": "synonyms for discourtesy", "clues": ["offensive activity", "rudeness", "offence", "disrespect", "discourtesy"]}, {"answer": "discreetness", "hint": "synonyms for discreetness", "clues": ["diplomacy", "prudence", "circumspection", "delicacy", "discretion", "finesse", "discreetness"]}, {"answer": "discrepancy", "hint": "synonyms for discrepancy", "clues": ["variance", "divergence", "disagreement", "variant", "discrepancy"]}, {"answer": "discretion", "hint": "synonyms for discretion", "clues": ["circumspection", "discernment", "prudence", "delicacy", "free will", "discreetness", "discretion"]}, {"answer": "discussion", "hint": "synonyms for discussion", "clues": ["treatment", "word", "give-and-take", "discourse", "discussion"]}, {"answer": "disdain", "hint": "synonyms for disdain", "clues": ["despite", "contempt", "condescension", "scorn", "patronage", "disdain"]}, {"answer": "disgorgement", "hint": "synonyms for disgorgement", "clues": ["regurgitation", "emesis", "vomit", "puking", "disgorgement"]}, {"answer": "disgustingness", "hint": "synonyms for disgustingness", "clues": ["sickeningness", "distastefulness", "unsavoriness", "nauseatingness", "disgustingness"]}, {"answer": "dish", "hint": "synonyms for dish", "clues": ["dish antenna", "cup of tea", "dish aerial", "saucer", "bag", "dishful", "dish"]}, {"answer": "disinclination", "hint": "synonyms for disinclination", "clues": ["reluctance", "hesitation", "hesitancy", "indisposition", "disinclination"]}, {"answer": "disintegration", "hint": "synonyms for disintegration", "clues": ["dissolution", "decay", "annihilation", "radioactive decay", "disintegration"]}, {"answer": "disk", "hint": "synonyms for disk", "clues": ["platter", "phonograph record", "disc", "saucer", "record", "magnetic disc", "disk"]}, {"answer": "dismay", "hint": "synonyms for dismay", "clues": ["discouragement", "disheartenment", "consternation", "alarm", "dismay"]}, {"answer": "dismissal", "hint": "synonyms for dismissal", "clues": ["sack", "pink slip", "release", "discharge", "judgment of dismissal", "firing", "dismission", "liberation", "dismissal"]}, {"answer": "dismission", "hint": "synonyms for dismission", "clues": ["sack", "pink slip", "dismissal", "release", "discharge", "firing", "liberation", "dismission"]}, {"answer": "dispatch", "hint": "synonyms for dispatch", "clues": ["shipment", "expeditiousness", "communique", "expedition", "despatch"]}, {"answer": "dispersion", "hint": "synonyms for dispersion", "clues": ["dissemination", "scattering", "dispersal", "distribution", "diffusion", "dispersion"]}, {"answer": "dispiritedness", "hint": "synonyms for dispiritedness", "clues": ["lowness", "dejectedness", "low-spiritedness", "downheartedness", "dispiritedness"]}, {"answer": "displacement", "hint": "synonyms for displacement", "clues": ["displacement reaction", "shift", "translation", "supplanting", "deracination", "displacement"]}, {"answer": "displacement_unit", "hint": "synonyms for displacement unit", "clues": ["cubage unit", "cubature unit", "volume unit", "cubic measure", "cubic content unit", "capacity unit", "capacity measure", "displacement unit"]}, {"answer": "display", "hint": "synonyms for display", "clues": ["showing", "presentation", "exhibit", "video display", "display"]}, {"answer": "disposal", "hint": "synonyms for disposal", "clues": ["administration", "electric pig", "garbage disposal", "disposition", "disposal"]}, {"answer": "disposition", "hint": "synonyms for disposition", "clues": ["tendency", "inclination", "disposal", "temperament", "disposition"]}, {"answer": "disproof", "hint": "synonyms for disproof", "clues": ["falsification", "refutation", "refutal", "falsifying", "disproof"]}, {"answer": "disputation", "hint": "synonyms for disputation", "clues": ["contention", "public debate", "disceptation", "contestation", "controversy", "debate", "argument", "tilt", "arguing"]}, {"answer": "dispute", "hint": "synonyms for dispute", "clues": ["conflict", "difference of opinion", "contravention", "difference", "dispute"]}, {"answer": "disruption", "hint": "synonyms for disruption", "clues": ["break", "interruption", "perturbation", "dislocation", "gap", "disruption"]}, {"answer": "dissembling", "hint": "synonyms for dissembling", "clues": ["pretence", "dissimulation", "deceit", "deception", "feigning", "dissembling"]}, {"answer": "dissemination", "hint": "synonyms for dissemination", "clues": ["dispersal", "airing", "dispersion", "spreading", "diffusion", "public exposure", "dissemination"]}, {"answer": "dissipation", "hint": "synonyms for dissipation", "clues": ["profligacy", "dissolution", "waste", "wastefulness", "looseness", "licentiousness", "dissipation"]}, {"answer": "dissolution", "hint": "synonyms for dissolution", "clues": ["disintegration", "profligacy", "breakup", "dissolving", "adjournment", "looseness", "licentiousness", "dissipation", "dissolution"]}, {"answer": "dissolvent", "hint": "synonyms for dissolvent", "clues": ["dissolver", "solvent", "dissolving agent", "dissolvent"]}, {"answer": "dissolver", "hint": "synonyms for dissolver", "clues": ["solvent", "dissolving agent", "dissolvent", "dissolver"]}, {"answer": "dissolving_agent", "hint": "synonyms for dissolving agent", "clues": ["dissolver", "resolvent", "dissolvent", "dissolving agent"]}, {"answer": "distastefulness", "hint": "synonyms for distastefulness", "clues": ["sickeningness", "odiousness", "offensiveness", "disgustingness", "unsavoriness", "nauseatingness", "distastefulness"]}, {"answer": "distich", "hint": "synonyms for distich", "clues": ["yoke", "duet", "pair", "twain", "dyad", "couplet", "brace", "twosome", "duad", "duo", "span", "distich"]}, {"answer": "distinctiveness", "hint": "synonyms for distinctiveness", "clues": ["peculiarity", "specialness", "disparateness", "specialty", "distinctiveness"]}, {"answer": "distortion", "hint": "synonyms for distortion", "clues": ["optical aberration", "overrefinement", "aberration", "twisting", "deformation", "straining", "torture", "distorted shape", "distortion"]}, {"answer": "distrust", "hint": "synonyms for distrust", "clues": ["suspicion", "distrustfulness", "mistrust", "misgiving"]}, {"answer": "disturbance", "hint": "synonyms for disturbance", "clues": ["affray", "fray", "perturbation", "interference", "ruffle", "noise", "disturbance"]}, {"answer": "divagation", "hint": "synonyms for divagation", "clues": ["deflection", "deviation", "aside", "parenthesis", "diversion", "digression", "excursus", "deflexion", "divagation"]}, {"answer": "dive", "hint": "synonyms for dive", "clues": ["honkytonk", "nosedive", "diving", "dive"]}, {"answer": "divergence", "hint": "synonyms for divergence", "clues": ["difference", "deviation", "variance", "departure", "divergency", "disagreement", "discrepancy"]}, {"answer": "diversion", "hint": "synonyms for diversion", "clues": ["deflexion", "deflection", "deviation", "digression", "recreation", "diversionary attack", "divagation", "diversion"]}, {"answer": "divination", "hint": "synonyms for divination", "clues": ["soothsaying", "foretelling", "prophecy", "fortune telling", "divination"]}, {"answer": "divining_rod", "hint": "synonyms for divining rod", "clues": ["dowsing rod", "waterfinder", "dowser", "divining rod"]}, {"answer": "divinyl_ether", "hint": "synonyms for divinyl ether", "clues": ["ethoxyethane", "ether", "diethyl ether", "vinyl ether"]}, {"answer": "division", "hint": "synonyms for division", "clues": ["section", "segmentation", "partitioning", "air division", "sectionalization", "class", "variance", "naval division", "part", "division"]}, {"answer": "dkl", "hint": "synonyms for dkl", "clues": ["decaliter", "dekalitre", "dal", "dkl"]}, {"answer": "dkm", "hint": "synonyms for dkm", "clues": ["decametre", "dam", "dekameter", "dkm"]}, {"answer": "do", "hint": "synonyms for do", "clues": ["doh", "bash", "ut", "brawl", "do"]}, {"answer": "dock", "hint": "synonyms for dock", "clues": ["pier", "wharfage", "wharf", "dockage", "docking facility", "loading dock", "dock"]}, {"answer": "dockage", "hint": "synonyms for dockage", "clues": ["docking fee", "docking", "moorage", "docking facility", "tying up", "dockage"]}, {"answer": "doctrine", "hint": "synonyms for doctrine", "clues": ["ism", "school of thought", "philosophy", "philosophical system", "doctrine"]}, {"answer": "documentation", "hint": "synonyms for documentation", "clues": ["certification", "support", "corroboration", "software documentation", "documentation"]}, {"answer": "dodge", "hint": "synonyms for dodge", "clues": ["scheme", "contrivance", "dodging", "stratagem", "dodge"]}, {"answer": "dodging", "hint": "synonyms for dodging", "clues": ["escape", "scheme", "evasion", "dodge", "shunning", "turning away", "avoidance", "dodging"]}, {"answer": "dog", "hint": "synonyms for dog", "clues": ["hotdog", "frank", "detent", "wiener", "frankfurter", "click", "andiron", "pawl", "weenie", "dog-iron", "wienerwurst", "firedog", "dog"]}, {"answer": "dog_collar", "hint": "synonyms for dog collar", "clues": ["choker", "collar", "clerical collar", "neckband", "dog collar"]}, {"answer": "dogfight", "hint": "synonyms for dogfight", "clues": ["rough-and-tumble", "scuffle", "tussle", "hassle", "dogfight"]}, {"answer": "doggedness", "hint": "synonyms for doggedness", "clues": ["persistency", "tenaciousness", "perseverance", "pertinacity", "tenacity", "doggedness"]}, {"answer": "dogshit", "hint": "synonyms for dogshit", "clues": ["shit", "bull", "horseshit", "bullshit", "crap", "dogshit"]}, {"answer": "dollar", "hint": "synonyms for dollar", "clues": ["one dollar bill", "dollar bill", "buck", "clam", "dollar sign", "dollar mark", "dollar"]}, {"answer": "dollar_bill", "hint": "synonyms for dollar bill", "clues": ["one dollar bill", "dollar", "buck", "clam", "dollar bill"]}, {"answer": "dolmen", "hint": "synonyms for dolmen", "clues": ["dolman jacket", "dolman", "portal tomb", "cromlech", "dolmen"]}, {"answer": "dolophine_hydrochloride", "hint": "synonyms for dolophine hydrochloride", "clues": ["methadone hydrochloride", "synthetic heroin", "fixer", "methadone", "dolophine hydrochloride"]}, {"answer": "domain", "hint": "synonyms for domain", "clues": ["knowledge base", "demesne", "domain of a function", "knowledge domain", "land", "world", "domain"]}, {"answer": "domicile", "hint": "synonyms for domicile", "clues": ["legal residence", "dwelling", "habitation", "dwelling house", "abode", "home", "domicile"]}, {"answer": "domiciliation", "hint": "synonyms for domiciliation", "clues": ["lodgings", "diggings", "pad", "digs", "domiciliation"]}, {"answer": "dominance", "hint": "synonyms for dominance", "clues": ["say-so", "potency", "authorization", "laterality", "authority", "dominance"]}, {"answer": "doodad", "hint": "synonyms for doodad", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "doodad"]}, {"answer": "doodly-squat", "hint": "synonyms for doodly-squat", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "diddly", "jack", "doodly-squat"]}, {"answer": "doohickey", "hint": "synonyms for doohickey", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "whatsis", "doohickey"]}, {"answer": "doojigger", "hint": "synonyms for doojigger", "clues": ["gismo", "gubbins", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "doojigger"]}, {"answer": "doomsday", "hint": "synonyms for doomsday", "clues": ["eschaton", "doom", "crack of doom", "day of reckoning", "end of the world", "doomsday"]}, {"answer": "dope", "hint": "synonyms for dope", "clues": ["the skinny", "green goddess", "cola", "skunk", "low-down", "locoweed", "gage", "weed", "smoke", "poop", "sess", "grass", "sens", "pot", "dope"]}, {"answer": "dorm", "hint": "synonyms for dorm", "clues": ["hall", "student residence", "residence hall", "dormitory", "dorm"]}, {"answer": "dormitory", "hint": "synonyms for dormitory", "clues": ["student residence", "dorm", "hall", "dorm room", "residence hall", "dormitory room", "dormitory"]}, {"answer": "dos", "hint": "synonyms for dos", "clues": ["do", "ut", "doh", "bash", "brawl", "disk operating system"]}, {"answer": "dose", "hint": "synonyms for dose", "clues": ["dot", "loony toons", "dosage", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid", "dose"]}, {"answer": "dot", "hint": "synonyms for dot", "clues": ["dit", "dose", "loony toons", "window pane", "point", "pane", "superman", "back breaker", "acid", "battery-acid", "dot"]}, {"answer": "double-decker", "hint": "synonyms for double-decker", "clues": ["passenger vehicle", "motorcoach", "bus", "charabanc", "omnibus", "autobus", "motorbus", "coach", "jitney", "double-decker"]}, {"answer": "double_bass", "hint": "synonyms for double bass", "clues": ["contrabass", "bull fiddle", "bass fiddle", "string bass", "bass viol", "double bass"]}, {"answer": "doubles", "hint": "synonyms for doubles", "clues": ["doubling", "two-bagger", "two-baser", "double", "two-base hit"]}, {"answer": "doubt", "hint": "synonyms for doubt", "clues": ["incertitude", "uncertainty", "doubtfulness", "dubiety", "question", "dubiousness", "doubt"]}, {"answer": "doubtfulness", "hint": "synonyms for doubtfulness", "clues": ["incertitude", "uncertainty", "doubt", "dubiety", "question", "dubiousness", "doubtfulness"]}, {"answer": "dough", "hint": "synonyms for dough", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough"]}, {"answer": "doughnut", "hint": "synonyms for doughnut", "clues": ["annulus", "donut", "sinker", "ring", "anchor ring", "halo", "doughnut"]}, {"answer": "downfall", "hint": "synonyms for downfall", "clues": ["precipitation", "fall", "ruin", "ruination", "downfall"]}, {"answer": "downheartedness", "hint": "synonyms for downheartedness", "clues": ["dispiritedness", "lowness", "dejectedness", "low-spiritedness", "downheartedness"]}, {"answer": "downpour", "hint": "synonyms for downpour", "clues": ["cloudburst", "deluge", "torrent", "pelter", "soaker", "waterspout", "downpour"]}, {"answer": "downslope", "hint": "synonyms for downslope", "clues": ["decline", "fall", "declivity", "declension", "descent", "declination", "downslope"]}, {"answer": "dowser", "hint": "synonyms for dowser", "clues": ["divining rod", "waterfinder", "dowsing rod", "dowser"]}, {"answer": "dowsing_rod", "hint": "synonyms for dowsing rod", "clues": ["divining rod", "waterfinder", "dowser", "dowsing rod"]}, {"answer": "dozens", "hint": "synonyms for dozens", "clues": ["lots", "scads", "slews", "loads", "12", "dozen", "lashings", "oodles", "wads", "tons", "gobs", "rafts", "scores", "heaps", "stacks", "twelve", "piles"]}, {"answer": "draft", "hint": "synonyms for draft", "clues": ["potation", "muster", "selective service", "order of payment", "conscription", "tipple", "drawing", "rough drawing", "bill of exchange", "draught", "gulp", "swig", "draft copy", "draft"]}, {"answer": "drainage_area", "hint": "synonyms for drainage area", "clues": ["catchment area", "catchment basin", "river basin", "drainage basin", "watershed", "basin", "drainage area"]}, {"answer": "drainage_basin", "hint": "synonyms for drainage basin", "clues": ["catchment area", "catchment basin", "river basin", "drainage area", "watershed", "basin", "drainage basin"]}, {"answer": "dramatic_art", "hint": "synonyms for dramatic art", "clues": ["theatre", "dramaturgy", "dramatics", "dramatic art"]}, {"answer": "dramatics", "hint": "synonyms for dramatics", "clues": ["theatre", "dramaturgy", "dramatic art", "dramatics"]}, {"answer": "dramaturgy", "hint": "synonyms for dramaturgy", "clues": ["theatre", "dramatics", "dramatic art", "dramaturgy"]}, {"answer": "drape", "hint": "synonyms for drape", "clues": ["pall", "mantle", "curtain", "drapery", "drape"]}, {"answer": "drapery", "hint": "synonyms for drapery", "clues": ["pall", "mantle", "drape", "curtain", "drapery"]}, {"answer": "draught", "hint": "synonyms for draught", "clues": ["potation", "gulp", "swig", "tipple", "drawing", "draft", "draught"]}, {"answer": "draughts", "hint": "synonyms for draughts", "clues": ["potation", "tipple", "drawing", "draft", "draught", "gulp", "checkers", "swig"]}, {"answer": "draw", "hint": "synonyms for draw", "clues": ["hooking", "standoff", "lot", "haulage", "draw play", "tie", "haul", "draw poker", "draw"]}, {"answer": "drawers", "hint": "synonyms for drawers", "clues": ["underdrawers", "drawer", "pants", "bloomers", "knickers", "shorts", "boxers", "boxershorts"]}, {"answer": "drawing", "hint": "synonyms for drawing", "clues": ["draught", "drawing off", "draftsmanship", "lottery", "drafting", "drawing"]}, {"answer": "drawing-room_car", "hint": "synonyms for drawing-room car", "clues": ["parlor car", "palace car", "chair car", "drawing-room car"]}, {"answer": "dream", "hint": "synonyms for dream", "clues": ["pipe dream", "ambition", "dreaming", "aspiration"]}, {"answer": "dress_hat", "hint": "synonyms for dress hat", "clues": ["beaver", "high hat", "silk hat", "stovepipe", "top hat", "topper", "opera hat", "dress hat"]}, {"answer": "dress_suit", "hint": "synonyms for dress suit", "clues": ["white tie", "tail coat", "tails", "full dress", "white tie and tails", "dress suit"]}, {"answer": "dresser", "hint": "synonyms for dresser", "clues": ["vanity", "chest", "toilet table", "bureau", "chest of drawers", "dressing table", "dresser"]}, {"answer": "dressing", "hint": "synonyms for dressing", "clues": ["fecundation", "bandaging", "fertilisation", "medical dressing", "salad dressing", "grooming", "binding", "stuffing", "dressing"]}, {"answer": "dressing_down", "hint": "synonyms for dressing down", "clues": ["chewing out", "bawling out", "earful", "castigation", "going-over", "upbraiding", "dressing down"]}, {"answer": "drier", "hint": "synonyms for drier", "clues": ["siccative", "drying agent", "desiccant", "dryer", "drier"]}, {"answer": "drift", "hint": "synonyms for drift", "clues": ["movement", "purport", "heading", "impetus", "gallery", "impulsion", "trend", "drift"]}, {"answer": "drill", "hint": "synonyms for drill", "clues": ["practice", "exercise", "practice session", "recitation", "drill"]}, {"answer": "drink", "hint": "synonyms for drink", "clues": ["boozing", "swallow", "potable", "drinking", "drinkable", "deglutition", "beverage", "drunkenness", "crapulence"]}, {"answer": "drinking", "hint": "synonyms for drinking", "clues": ["boozing", "imbibing", "imbibition", "drunkenness", "crapulence", "drink"]}, {"answer": "drip", "hint": "synonyms for drip", "clues": ["drip mould", "trickle", "dribble", "dripping", "drip"]}, {"answer": "drippiness", "hint": "synonyms for drippiness", "clues": ["sentimentality", "sloppiness", "mushiness", "mawkishness", "soupiness", "drippiness"]}, {"answer": "drive", "hint": "synonyms for drive", "clues": ["driving", "ride", "parkway", "cause", "driveway", "movement", "crusade", "private road", "effort", "campaign", "thrust", "driving force", "drive"]}, {"answer": "drogue", "hint": "synonyms for drogue", "clues": ["wind cone", "drogue chute", "air sock", "air-sleeve", "wind sleeve", "wind sock", "sock", "sea anchor", "drogue"]}, {"answer": "drollery", "hint": "synonyms for drollery", "clues": ["comedy", "clowning", "waggery", "funniness", "drollery"]}, {"answer": "drone", "hint": "synonyms for drone", "clues": ["drone pipe", "droning", "pilotless aircraft", "bourdon", "radio-controlled aircraft", "monotone", "drone"]}, {"answer": "drool", "hint": "synonyms for drool", "clues": ["tarradiddle", "bosh", "baloney", "humbug", "tommyrot", "tosh", "twaddle", "bilgewater", "drool"]}, {"answer": "drop", "hint": "synonyms for drop", "clues": ["cliff", "drop cloth", "free fall", "fall", "drop curtain", "bead", "driblet", "drib", "dip", "pearl", "drop-off", "drop"]}, {"answer": "drop-off", "hint": "synonyms for drop-off", "clues": ["cliff", "falloff", "drop", "decrease", "slump", "slack", "lessening", "falling off", "drop-off"]}, {"answer": "drop_line", "hint": "synonyms for drop line", "clues": ["staggered head", "dropline", "stepped line", "stephead"]}, {"answer": "dropline", "hint": "synonyms for dropline", "clues": ["staggered head", "drop line", "stepped line", "stephead"]}, {"answer": "drubbing", "hint": "synonyms for drubbing", "clues": ["trouncing", "thrashing", "lacing", "whipping", "licking", "whacking", "debacle", "beating", "slaughter", "walloping", "drubbing"]}, {"answer": "drugstore", "hint": "synonyms for drugstore", "clues": ["chemist's shop", "chemist's", "apothecary's shop", "pharmacy", "drugstore"]}, {"answer": "drum", "hint": "synonyms for drum", "clues": ["membranophone", "tympan", "metal drum", "brake drum", "barrel", "drum"]}, {"answer": "drunken_revelry", "hint": "synonyms for drunken revelry", "clues": ["orgy", "riot", "saturnalia", "debauchery", "debauch", "bacchanalia", "drunken revelry"]}, {"answer": "drunkenness", "hint": "synonyms for drunkenness", "clues": ["boozing", "drink", "crapulence", "drunkenness"]}, {"answer": "dry_land", "hint": "synonyms for dry land", "clues": ["terra firma", "ground", "earth", "land", "solid ground", "dry land"]}, {"answer": "ds", "hint": "synonyms for ds", "clues": ["ergocalciferol", "viosterol", "d", "five hundred", "cholecalciferol", "atomic number 110", "500", "vitamin D", "calciferol", "darmstadtium", "element 110"]}, {"answer": "duad", "hint": "synonyms for duad", "clues": ["yoke", "duet", "pair", "twain", "dyad", "couplet", "span", "brace", "twosome", "duo", "distich", "duad"]}, {"answer": "dubiety", "hint": "synonyms for dubiety", "clues": ["uncertainty", "doubtfulness", "doubt", "incertitude", "dubiousness", "dubiety"]}, {"answer": "dubiousness", "hint": "synonyms for dubiousness", "clues": ["incertitude", "uncertainty", "doubtfulness", "doubt", "dubiety", "question", "dubiousness"]}, {"answer": "duck_soup", "hint": "synonyms for duck soup", "clues": ["picnic", "snap", "pushover", "cinch", "child's play", "piece of cake", "breeze", "walkover", "duck soup"]}, {"answer": "ducking", "hint": "synonyms for ducking", "clues": ["dousing", "duck hunting", "submersion", "immersion", "ducking"]}, {"answer": "duds", "hint": "synonyms for duds", "clues": ["bomb", "misfire", "turkey", "togs", "dud", "threads"]}, {"answer": "duet", "hint": "synonyms for duet", "clues": ["yoke", "twain", "pair", "dyad", "couplet", "pas de deux", "span", "brace", "twosome", "duette", "duad", "duo", "distich", "duet"]}, {"answer": "dump", "hint": "synonyms for dump", "clues": ["shit", "wasteyard", "rubbish dump", "dumpsite", "garbage dump", "trash dump", "dump"]}, {"answer": "dump_truck", "hint": "synonyms for dump truck", "clues": ["tipper lorry", "tipper truck", "tipper", "dumper", "dump truck"]}, {"answer": "dumper", "hint": "synonyms for dumper", "clues": ["dump truck", "tipper lorry", "tipper truck", "tipper", "dumper"]}, {"answer": "dumps", "hint": "synonyms for dumps", "clues": ["shit", "wasteyard", "garbage dump", "dump", "trash dump", "rubbish dump", "dumpsite"]}, {"answer": "dumpsite", "hint": "synonyms for dumpsite", "clues": ["garbage dump", "wasteyard", "rubbish dump", "dump", "trash dump", "dumpsite"]}, {"answer": "duo", "hint": "synonyms for duo", "clues": ["yoke", "duet", "pair", "twain", "dyad", "couplet", "span", "brace", "twosome", "duette", "duad", "distich", "duo"]}, {"answer": "dupery", "hint": "synonyms for dupery", "clues": ["put-on", "fraud", "humbug", "fraudulence", "hoax", "dupery"]}, {"answer": "dusk", "hint": "synonyms for dusk", "clues": ["twilight", "fall", "gloam", "crepuscule", "evenfall", "nightfall", "dusk"]}, {"answer": "dust", "hint": "synonyms for dust", "clues": ["rubble", "junk", "debris", "detritus", "dust"]}, {"answer": "dust_coat", "hint": "synonyms for dust coat", "clues": ["smock", "duster", "gabardine", "dust coat"]}, {"answer": "dust_cover", "hint": "synonyms for dust cover", "clues": ["dust sheet", "book jacket", "dust wrapper", "dust jacket", "dust cover"]}, {"answer": "dustbin", "hint": "synonyms for dustbin", "clues": ["ashcan", "ash-bin", "garbage can", "trash barrel", "trash bin", "trash can", "wastebin", "dustbin"]}, {"answer": "duster", "hint": "synonyms for duster", "clues": ["sirocco", "dustrag", "smock", "gaberdine", "sandstorm", "dust coat", "dust storm", "dustcloth", "duster"]}, {"answer": "dustup", "hint": "synonyms for dustup", "clues": ["wrangle", "row", "words", "quarrel", "run-in", "dustup"]}, {"answer": "duty_tour", "hint": "synonyms for duty tour", "clues": ["tour", "enlistment", "term of enlistment", "hitch", "tour of duty", "duty tour"]}, {"answer": "dwelling", "hint": "synonyms for dwelling", "clues": ["habitation", "dwelling house", "abode", "domicile", "home", "dwelling"]}, {"answer": "dwelling_house", "hint": "synonyms for dwelling house", "clues": ["dwelling", "habitation", "abode", "domicile", "home", "dwelling house"]}, {"answer": "dyad", "hint": "synonyms for dyad", "clues": ["yoke", "duet", "pair", "twain", "couplet", "span", "brace", "twosome", "duad", "duo", "distich", "dyad"]}, {"answer": "dynamism", "hint": "synonyms for dynamism", "clues": ["zing", "pizzaz", "vigour", "oomph", "heartiness", "dynamism"]}, {"answer": "e", "hint": "synonyms for e", "clues": ["einsteinium", "vitamin E", "due east", "tocopherol", "eastward", "east", "atomic number 99", "e"]}, {"answer": "eagerness", "hint": "synonyms for eagerness", "clues": ["zeal", "avidness", "keenness", "forwardness", "avidity", "readiness", "eagerness"]}, {"answer": "eagre", "hint": "synonyms for eagre", "clues": ["aegir", "tidal bore", "eager", "bore", "eagre"]}, {"answer": "earful", "hint": "synonyms for earful", "clues": ["dressing down", "chewing out", "bawling out", "castigation", "going-over", "upbraiding", "earful"]}, {"answer": "earnings", "hint": "synonyms for earnings", "clues": ["lucre", "remuneration", "pay", "wage", "salary", "profit", "net", "net income", "net profit", "earnings"]}, {"answer": "earth", "hint": "synonyms for earth", "clues": ["ground", "earthly concern", "worldly concern", "world", "terra firma", "dry land", "globe", "land", "solid ground", "earth"]}, {"answer": "earth_wax", "hint": "synonyms for earth wax", "clues": ["mineral wax", "ader wax", "ozocerite", "earth wax"]}, {"answer": "earthnut", "hint": "synonyms for earthnut", "clues": ["truffle", "peanut", "goober", "monkey nut", "goober pea", "groundnut", "earthnut"]}, {"answer": "ease", "hint": "synonyms for ease", "clues": ["relaxation", "repose", "informality", "simplicity", "easiness", "rest", "simpleness", "ease"]}, {"answer": "easiness", "hint": "synonyms for easiness", "clues": ["simplicity", "relaxation", "ease", "simpleness", "easiness"]}, {"answer": "easing", "hint": "synonyms for easing", "clues": ["easement", "moderation", "relief", "alleviation", "easing"]}, {"answer": "easy_lay", "hint": "synonyms for easy lay", "clues": ["liquid ecstasy", "scoop", "grievous bodily harm", "max", "soap", "goop", "easy lay"]}, {"answer": "eatage", "hint": "synonyms for eatage", "clues": ["forage", "grass", "pasturage", "eatage"]}, {"answer": "eating_away", "hint": "synonyms for eating away", "clues": ["wearing away", "eroding", "wearing", "erosion"]}, {"answer": "ebs", "hint": "synonyms for ebs", "clues": ["exabyte", "east by south", "exbibyte", "exabit", "ebs"]}, {"answer": "ebullition", "hint": "synonyms for ebullition", "clues": ["effusion", "outburst", "gush", "blowup", "ebullition"]}, {"answer": "eclat", "hint": "synonyms for eclat", "clues": ["acclaim", "acclamation", "plaudit", "pomp", "eclat"]}, {"answer": "economic_consumption", "hint": "synonyms for economic consumption", "clues": ["use", "usance", "consumption", "use of goods and services", "economic consumption"]}, {"answer": "ecstasy", "hint": "synonyms for ecstasy", "clues": ["cristal", "disco biscuit", "hug drug", "go", "ecstasy"]}, {"answer": "edacity", "hint": "synonyms for edacity", "clues": ["voracity", "esurience", "rapacity", "voraciousness", "rapaciousness", "edacity"]}, {"answer": "edda", "hint": "synonyms for edda", "clues": ["dasheen", "cocoyam", "taro root", "taro", "edda"]}, {"answer": "eden", "hint": "synonyms for eden", "clues": ["paradise", "nirvana", "heaven", "promised land", "eden"]}, {"answer": "edge", "hint": "synonyms for edge", "clues": ["border", "boundary", "bound", "sharpness", "edge"]}, {"answer": "edict", "hint": "synonyms for edict", "clues": ["fiat", "rescript", "order", "decree", "edict"]}, {"answer": "education", "hint": "synonyms for education", "clues": ["breeding", "instruction", "pedagogy", "teaching", "training", "educational activity", "didactics", "education"]}, {"answer": "educational_activity", "hint": "synonyms for educational activity", "clues": ["teaching", "instruction", "pedagogy", "education", "didactics", "educational activity"]}, {"answer": "effect", "hint": "synonyms for effect", "clues": ["impression", "essence", "core", "event", "burden", "consequence", "issue", "upshot", "gist", "result", "outcome", "force", "effect"]}, {"answer": "effectiveness", "hint": "synonyms for effectiveness", "clues": ["effectuality", "effectivity", "effectualness", "potency", "strength", "effectiveness"]}, {"answer": "effects", "hint": "synonyms for effects", "clues": ["impression", "essence", "burden", "event", "core", "consequence", "effect", "outcome", "issue", "upshot", "gist", "result", "personal effects", "force"]}, {"answer": "effeminacy", "hint": "synonyms for effeminacy", "clues": ["sissiness", "unmanliness", "womanishness", "effeminateness", "softness", "effeminacy"]}, {"answer": "effeminateness", "hint": "synonyms for effeminateness", "clues": ["sissiness", "unmanliness", "womanishness", "softness", "effeminacy", "effeminateness"]}, {"answer": "efflorescence", "hint": "synonyms for efflorescence", "clues": ["inflorescence", "prime", "anthesis", "bloom", "flush", "peak", "blossom", "flower", "heyday", "efflorescence"]}, {"answer": "effort", "hint": "synonyms for effort", "clues": ["elbow grease", "endeavour", "try", "cause", "campaign", "travail", "exertion", "movement", "crusade", "drive", "sweat", "attempt", "feat", "exploit", "effort"]}, {"answer": "effusion", "hint": "synonyms for effusion", "clues": ["outburst", "gush", "blowup", "ebullition", "effusion"]}, {"answer": "eggbeater", "hint": "synonyms for eggbeater", "clues": ["chopper", "eggwhisk", "helicopter", "whirlybird", "eggbeater"]}, {"answer": "egocentrism", "hint": "synonyms for egocentrism", "clues": ["egoism", "self-interest", "self-concern", "self-centeredness", "egocentrism"]}, {"answer": "egoism", "hint": "synonyms for egoism", "clues": ["egocentrism", "self-interest", "self-concern", "self-centeredness", "egoism"]}, {"answer": "egress", "hint": "synonyms for egress", "clues": ["emersion", "egression", "emergence", "issue", "egress"]}, {"answer": "eighter", "hint": "synonyms for eighter", "clues": ["eighter from Decatur", "octonary", "octad", "ogdoad", "octet", "8", "eight", "eighter"]}, {"answer": "eighter_from_decatur", "hint": "synonyms for eighter from decatur", "clues": ["octet", "8", "eighter from Decatur", "octonary", "octad", "ogdoad", "eighter", "eight"]}, {"answer": "eighties", "hint": "synonyms for eighties", "clues": ["1980s", "1880s", "fourscore", "mid-eighties", "80", "eighty", "eighties"]}, {"answer": "ejection", "hint": "synonyms for ejection", "clues": ["riddance", "expulsion", "forcing out", "exclusion", "projection", "ejection"]}, {"answer": "el", "hint": "synonyms for el", "clues": ["elevated", "elevated railway", "altitude", "elevation", "elevated railroad", "overhead railway", "el"]}, {"answer": "elaborateness", "hint": "synonyms for elaborateness", "clues": ["elaboration", "involution", "intricacy", "ornateness", "elaborateness"]}, {"answer": "elaboration", "hint": "synonyms for elaboration", "clues": ["elaborateness", "involution", "enlargement", "working out", "intricacy", "refinement", "expansion", "amplification", "elaboration"]}, {"answer": "elan", "hint": "synonyms for elan", "clues": ["style", "flair", "zeal", "dash", "ardour", "panache", "elan"]}, {"answer": "elbow_grease", "hint": "synonyms for elbow grease", "clues": ["effort", "exertion", "sweat", "travail", "elbow grease"]}, {"answer": "eld", "hint": "synonyms for eld", "clues": ["geezerhood", "years", "age", "old age", "eld"]}, {"answer": "electioneering", "hint": "synonyms for electioneering", "clues": ["canvassing", "campaigning", "bell ringing", "political campaign", "candidacy", "candidature", "electioneering"]}, {"answer": "electric-light_bulb", "hint": "synonyms for electric-light bulb", "clues": ["bulb", "lightbulb", "electric light", "incandescent lamp", "electric-light bulb"]}, {"answer": "electric_arc", "hint": "synonyms for electric arc", "clues": ["electric discharge", "arc", "discharge", "spark", "electric arc"]}, {"answer": "electric_discharge", "hint": "synonyms for electric discharge", "clues": ["arc", "discharge", "spark", "electric arc", "electric discharge"]}, {"answer": "electric_eye", "hint": "synonyms for electric eye", "clues": ["magic eye", "photocell", "photoconductive cell", "photoelectric cell", "electric eye"]}, {"answer": "electric_light", "hint": "synonyms for electric light", "clues": ["bulb", "electric-light bulb", "lightbulb", "incandescent lamp", "electric light"]}, {"answer": "electric_outlet", "hint": "synonyms for electric outlet", "clues": ["wall socket", "electrical outlet", "outlet", "wall plug", "electric receptacle"]}, {"answer": "electric_potential", "hint": "synonyms for electric potential", "clues": ["potential difference", "potential", "voltage", "potential drop", "electric potential"]}, {"answer": "electric_receptacle", "hint": "synonyms for electric receptacle", "clues": ["wall socket", "electrical outlet", "outlet", "wall plug", "electric receptacle"]}, {"answer": "electric_resistance", "hint": "synonyms for electric resistance", "clues": ["electrical resistance", "impedance", "resistance", "ohmic resistance", "resistivity"]}, {"answer": "electrical_outlet", "hint": "synonyms for electrical outlet", "clues": ["wall socket", "outlet", "wall plug", "electric receptacle", "electric outlet"]}, {"answer": "electrical_resistance", "hint": "synonyms for electrical resistance", "clues": ["impedance", "resistance", "ohmic resistance", "resistivity", "electric resistance"]}, {"answer": "electron_tube", "hint": "synonyms for electron tube", "clues": ["thermionic tube", "vacuum tube", "thermionic vacuum tube", "thermionic valve", "tube", "electron tube"]}, {"answer": "electronic_computer", "hint": "synonyms for electronic computer", "clues": ["information processing system", "computing device", "data processor", "computing machine", "computer", "electronic computer"]}, {"answer": "element", "hint": "synonyms for element", "clues": ["ingredient", "constituent", "chemical element", "factor", "component", "element"]}, {"answer": "elements", "hint": "synonyms for elements", "clues": ["ingredient", "constituent", "chemical element", "factor", "component", "element"]}, {"answer": "elevated_railroad", "hint": "synonyms for elevated railroad", "clues": ["elevated", "elevated railway", "overhead railway", "el", "elevated railroad"]}, {"answer": "elevated_railway", "hint": "synonyms for elevated railway", "clues": ["elevated railroad", "elevated", "overhead railway", "el", "elevated railway"]}, {"answer": "elevation", "hint": "synonyms for elevation", "clues": ["altitude", "raising", "aggrandizement", "natural elevation", "lift", "elevation"]}, {"answer": "elimination", "hint": "synonyms for elimination", "clues": ["evacuation", "excreting", "riddance", "liquidation", "reasoning by elimination", "voiding", "elimination"]}, {"answer": "elvis", "hint": "synonyms for elvis", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid", "elvis"]}, {"answer": "em", "hint": "synonyms for em", "clues": ["pica em", "mutton quad", "em quad", "pica", "em"]}, {"answer": "emaciation", "hint": "synonyms for emaciation", "clues": ["boniness", "gauntness", "maceration", "emaciation"]}, {"answer": "embezzlement", "hint": "synonyms for embezzlement", "clues": ["misapplication", "defalcation", "peculation", "misappropriation", "embezzlement"]}, {"answer": "embossment", "hint": "synonyms for embossment", "clues": ["relievo", "imprint", "relief", "sculptural relief", "embossment"]}, {"answer": "emda", "hint": "synonyms for emda", "clues": ["electromotive drug administration", "iontophoresis", "iontotherapy", "ionic medication", "emda"]}, {"answer": "emergence", "hint": "synonyms for emergence", "clues": ["outgrowth", "emersion", "egression", "growth", "issue", "egress", "emergence"]}, {"answer": "emergency", "hint": "synonyms for emergency", "clues": ["emergency brake", "hand brake", "exigency", "pinch", "parking brake", "emergency"]}, {"answer": "emesis", "hint": "synonyms for emesis", "clues": ["disgorgement", "regurgitation", "vomit", "puking", "emesis"]}, {"answer": "emotionlessness", "hint": "synonyms for emotionlessness", "clues": ["indifference", "phlegm", "unemotionality", "impassivity", "impassiveness", "stolidity", "emotionlessness"]}, {"answer": "employment", "hint": "synonyms for employment", "clues": ["usage", "utilisation", "exercise", "use", "work", "engagement", "employment"]}, {"answer": "emptiness", "hint": "synonyms for emptiness", "clues": ["void", "vacuum", "vanity", "vacancy", "emptiness"]}, {"answer": "empty_talk", "hint": "synonyms for empty talk", "clues": ["hot air", "rhetoric", "empty words", "palaver", "empty talk"]}, {"answer": "empty_words", "hint": "synonyms for empty words", "clues": ["hot air", "rhetoric", "palaver", "empty talk", "empty words"]}, {"answer": "enactment", "hint": "synonyms for enactment", "clues": ["passage", "act", "characterization", "personation", "portrayal", "enactment"]}, {"answer": "encampment", "hint": "synonyms for encampment", "clues": ["cantonment", "camp", "camping area", "campsite", "tenting", "bivouac", "camping ground", "camping site", "bivouacking", "campground", "encampment"]}, {"answer": "enchantment", "hint": "synonyms for enchantment", "clues": ["captivation", "bewitchment", "enthrallment", "fascination", "enchantment"]}, {"answer": "enclosure", "hint": "synonyms for enclosure", "clues": ["natural enclosure", "enclosing", "inclosure", "envelopment"]}, {"answer": "encomium", "hint": "synonyms for encomium", "clues": ["paean", "eulogy", "panegyric", "encomium"]}, {"answer": "encounter", "hint": "synonyms for encounter", "clues": ["face-off", "meeting", "brush", "confrontation", "showdown", "skirmish", "coming upon", "clash", "encounter"]}, {"answer": "encroachment", "hint": "synonyms for encroachment", "clues": ["impact", "invasion", "impingement", "intrusion", "usurpation", "trespass", "violation", "encroachment"]}, {"answer": "encumbrance", "hint": "synonyms for encumbrance", "clues": ["load", "onus", "burden", "interference", "hitch", "preventive", "hinderance", "incumbrance"]}, {"answer": "encyclopaedism", "hint": "synonyms for encyclopaedism", "clues": ["eruditeness", "learning", "encyclopedism", "learnedness", "scholarship", "erudition"]}, {"answer": "encyclopedism", "hint": "synonyms for encyclopedism", "clues": ["eruditeness", "learning", "scholarship", "learnedness", "encyclopaedism", "erudition"]}, {"answer": "end", "hint": "synonyms for end", "clues": ["ending", "closing", "goal", "oddment", "final stage", "last", "remainder", "conclusion", "remnant", "close", "terminal"]}, {"answer": "end_of_the_world", "hint": "synonyms for end of the world", "clues": ["eschaton", "doom", "crack of doom", "doomsday", "day of reckoning", "end of the world"]}, {"answer": "endeavor", "hint": "synonyms for endeavor", "clues": ["try", "endeavour", "effort", "attempt", "enterprise"]}, {"answer": "endeavour", "hint": "synonyms for endeavour", "clues": ["endeavor", "try", "effort", "attempt", "enterprise"]}, {"answer": "ending", "hint": "synonyms for ending", "clues": ["finish", "termination", "conclusion", "close", "end", "closing"]}, {"answer": "endorsement", "hint": "synonyms for endorsement", "clues": ["countenance", "secondment", "warrant", "sanction", "second", "imprimatur", "indorsement", "blurb"]}, {"answer": "endowment", "hint": "synonyms for endowment", "clues": ["natural endowment", "gift", "talent", "endowment fund", "endowment"]}, {"answer": "energy", "hint": "synonyms for energy", "clues": ["muscularity", "vigour", "get-up-and-go", "vim", "free energy", "zip", "push", "energy"]}, {"answer": "engagement", "hint": "synonyms for engagement", "clues": ["battle", "participation", "fight", "betrothal", "troth", "employment", "conflict", "date", "involvement", "involution", "meshing", "booking", "interlocking", "appointment", "engagement"]}, {"answer": "engineering", "hint": "synonyms for engineering", "clues": ["applied science", "engine room", "engineering science", "technology", "engineering"]}, {"answer": "engrossment", "hint": "synonyms for engrossment", "clues": ["absorption", "concentration", "preoccupancy", "intentness", "preoccupation", "immersion", "engrossment"]}, {"answer": "enigma", "hint": "synonyms for enigma", "clues": ["closed book", "riddle", "mystery", "secret", "brain-teaser", "conundrum", "enigma"]}, {"answer": "enlargement", "hint": "synonyms for enlargement", "clues": ["magnification", "elaboration", "blowup", "expansion", "enlargement"]}, {"answer": "enlistment", "hint": "synonyms for enlistment", "clues": ["term of enlistment", "tour", "duty tour", "hitch", "tour of duty", "enlistment"]}, {"answer": "enormousness", "hint": "synonyms for enormousness", "clues": ["wideness", "vastness", "immenseness", "immensity", "grandness", "sizeableness", "greatness", "enormousness"]}, {"answer": "enquiry", "hint": "synonyms for enquiry", "clues": ["interrogation", "inquiry", "query", "question", "research"]}, {"answer": "entering", "hint": "synonyms for entering", "clues": ["ingress", "incoming", "entry", "entrance", "entering"]}, {"answer": "enterprise", "hint": "synonyms for enterprise", "clues": ["go-ahead", "endeavour", "enterprisingness", "initiative", "enterprise"]}, {"answer": "enthronement", "hint": "synonyms for enthronement", "clues": ["enthronisation", "coronation", "investiture", "enthronement"]}, {"answer": "enthronisation", "hint": "synonyms for enthronisation", "clues": ["enthronement", "enthronization", "coronation", "investiture"]}, {"answer": "enthronization", "hint": "synonyms for enthronization", "clues": ["enthronement", "coronation", "enthronisation", "investiture"]}, {"answer": "entombment", "hint": "synonyms for entombment", "clues": ["inhumation", "sepulture", "interment", "burial", "entombment"]}, {"answer": "entrance", "hint": "synonyms for entrance", "clues": ["entering", "incoming", "entryway", "entree", "entranceway", "entry", "ingress", "entrance"]}, {"answer": "entrance_fee", "hint": "synonyms for entrance fee", "clues": ["admission", "entrance money", "admission fee", "admission price", "price of admission", "admission charge", "entrance fee"]}, {"answer": "entrance_hall", "hint": "synonyms for entrance hall", "clues": ["anteroom", "vestibule", "hall", "antechamber", "foyer", "lobby", "entrance hall"]}, {"answer": "entrance_money", "hint": "synonyms for entrance money", "clues": ["admission", "admission fee", "entrance fee", "admission price", "price of admission", "admission charge", "entrance money"]}, {"answer": "entranceway", "hint": "synonyms for entranceway", "clues": ["entryway", "entry", "entree", "entrance", "entranceway"]}, {"answer": "entree", "hint": "synonyms for entree", "clues": ["admission", "access", "accession", "entryway", "main course", "entranceway", "entry", "admittance", "entrance", "entree"]}, {"answer": "entrepot", "hint": "synonyms for entrepot", "clues": ["depot", "storehouse", "transshipment center", "store", "storage", "entrepot"]}, {"answer": "entry", "hint": "synonyms for entry", "clues": ["entering", "first appearance", "launching", "accounting entry", "incoming", "entryway", "ledger entry", "debut", "submission", "entree", "entranceway", "unveiling", "entrance", "ingress", "introduction", "entry"]}, {"answer": "entryway", "hint": "synonyms for entryway", "clues": ["entry", "entranceway", "entree", "entrance", "entryway"]}, {"answer": "enumeration", "hint": "synonyms for enumeration", "clues": ["counting", "numbering", "tally", "reckoning", "numeration"]}, {"answer": "environs", "hint": "synonyms for environs", "clues": ["purlieu", "surroundings", "environment", "surround", "environs"]}, {"answer": "episcopate", "hint": "synonyms for episcopate", "clues": ["diocese", "episcopacy", "bishopry", "bishopric", "episcopate"]}, {"answer": "equaliser", "hint": "synonyms for equaliser", "clues": ["counterpoise", "balance", "counterweight", "counterbalance", "equalizer"]}, {"answer": "equalizer", "hint": "synonyms for equalizer", "clues": ["counterpoise", "balance", "counterweight", "counterbalance", "equaliser"]}, {"answer": "equilibrium", "hint": "synonyms for equilibrium", "clues": ["chemical equilibrium", "sense of balance", "labyrinthine sense", "sense of equilibrium", "counterbalance", "balance", "equipoise", "vestibular sense", "equilibrium"]}, {"answer": "equivocation", "hint": "synonyms for equivocation", "clues": ["evasion", "tergiversation", "evasiveness", "prevarication", "equivocation"]}, {"answer": "ergocalciferol", "hint": "synonyms for ergocalciferol", "clues": ["cholecalciferol", "vitamin D", "calciferol", "viosterol", "ergocalciferol"]}, {"answer": "eroding", "hint": "synonyms for eroding", "clues": ["eating away", "wearing", "erosion", "eroding"]}, {"answer": "erosion", "hint": "synonyms for erosion", "clues": ["eating away", "corroding", "wearing", "eroding", "corrosion", "erosion"]}, {"answer": "erotica", "hint": "synonyms for erotica", "clues": ["porn", "pornography", "smut", "erotica"]}, {"answer": "eroticism", "hint": "synonyms for eroticism", "clues": ["amorousness", "erotism", "amativeness", "sexiness"]}, {"answer": "erotism", "hint": "synonyms for erotism", "clues": ["amorousness", "sexiness", "amativeness", "eroticism"]}, {"answer": "erratum", "hint": "synonyms for erratum", "clues": ["literal error", "typo", "literal", "misprint", "typographical error", "erratum"]}, {"answer": "error", "hint": "synonyms for error", "clues": ["fault", "wrongdoing", "mistake", "computer error", "misplay", "erroneous belief", "erroneousness", "error"]}, {"answer": "eruditeness", "hint": "synonyms for eruditeness", "clues": ["learning", "encyclopedism", "scholarship", "learnedness", "erudition", "eruditeness"]}, {"answer": "erudition", "hint": "synonyms for erudition", "clues": ["eruditeness", "learning", "encyclopedism", "learnedness", "scholarship", "erudition"]}, {"answer": "eruption", "hint": "synonyms for eruption", "clues": ["outbreak", "clap", "irruption", "volcanic eruption", "bam", "blast", "bang", "eruption"]}, {"answer": "es", "hint": "synonyms for es", "clues": ["e", "due east", "tocopherol", "eastward", "atomic number 99", "einsteinium", "vitamin E", "east"]}, {"answer": "escapade", "hint": "synonyms for escapade", "clues": ["adventure", "lark", "dangerous undertaking", "risky venture", "escapade"]}, {"answer": "escape", "hint": "synonyms for escape", "clues": ["flight", "evasion", "dodging", "leakage", "relief valve", "outflow", "safety valve", "escape cock", "escapism", "escape valve", "leak", "escape"]}, {"answer": "escape_cock", "hint": "synonyms for escape cock", "clues": ["escape", "safety valve", "relief valve", "escape valve", "escape cock"]}, {"answer": "escape_valve", "hint": "synonyms for escape valve", "clues": ["escape", "safety valve", "relief valve", "escape cock", "escape valve"]}, {"answer": "eschaton", "hint": "synonyms for eschaton", "clues": ["crack of doom", "doomsday", "day of reckoning", "end of the world", "eschaton"]}, {"answer": "espial", "hint": "synonyms for espial", "clues": ["spying", "catching", "spotting", "detection", "espial"]}, {"answer": "espousal", "hint": "synonyms for espousal", "clues": ["adoption", "betrothal", "acceptance", "acceptation", "bridal", "espousal"]}, {"answer": "esr", "hint": "synonyms for esr", "clues": ["erythrocyte sedimentation rate", "sed rate", "electron paramagnetic resonance", "electron spin resonance", "sedimentation rate", "esr"]}, {"answer": "essence", "hint": "synonyms for essence", "clues": ["burden", "center", "effect", "centre", "heart", "perfume", "sum", "gist", "marrow", "substance", "meat", "nub", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "core", "essence"]}, {"answer": "establishment", "hint": "synonyms for establishment", "clues": ["administration", "organization", "validation", "governing body", "formation", "governance", "constitution", "brass", "ecesis", "establishment"]}, {"answer": "estate", "hint": "synonyms for estate", "clues": ["landed estate", "demesne", "estate of the realm", "land", "the three estates", "acres", "estate"]}, {"answer": "estate_car", "hint": "synonyms for estate car", "clues": ["beach wagon", "waggon", "station waggon", "estate car"]}, {"answer": "esthesis", "hint": "synonyms for esthesis", "clues": ["sense experience", "sense datum", "sense impression", "sensation", "aesthesis"]}, {"answer": "estimate", "hint": "synonyms for estimate", "clues": ["approximation", "estimation", "idea", "appraisal", "estimate"]}, {"answer": "estimation", "hint": "synonyms for estimation", "clues": ["approximation", "estimate", "idea", "appraisal", "estimation"]}, {"answer": "esurience", "hint": "synonyms for esurience", "clues": ["voracity", "rapacity", "edacity", "voraciousness", "rapaciousness", "esurience"]}, {"answer": "ethanoyl_group", "hint": "synonyms for ethanoyl group", "clues": ["acetyl", "acetyl radical", "acetyl group", "ethanoyl radical", "ethanoyl group"]}, {"answer": "ethanoyl_radical", "hint": "synonyms for ethanoyl radical", "clues": ["acetyl", "acetyl radical", "acetyl group", "ethanoyl group", "ethanoyl radical"]}, {"answer": "ether", "hint": "synonyms for ether", "clues": ["aether", "quintessence", "ethoxyethane", "diethyl ether", "divinyl ether"]}, {"answer": "ethic", "hint": "synonyms for ethic", "clues": ["moral principle", "value-system", "ethical code", "value orientation", "ethic"]}, {"answer": "ethics", "hint": "synonyms for ethics", "clues": ["moral philosophy", "value-system", "ethical motive", "ethical code", "value orientation", "morals", "moral principle", "ethic", "morality"]}, {"answer": "ethoxyethane", "hint": "synonyms for ethoxyethane", "clues": ["ether", "diethyl ether", "divinyl ether", "ethoxyethane"]}, {"answer": "ethyl_alcohol", "hint": "synonyms for ethyl alcohol", "clues": ["fermentation alcohol", "grain alcohol", "ethanol", "neutral spirits", "ethyl alcohol"]}, {"answer": "ethyl_ether", "hint": "synonyms for ethyl ether", "clues": ["ethoxyethane", "ether", "diethyl ether", "divinyl ether"]}, {"answer": "eulogy", "hint": "synonyms for eulogy", "clues": ["encomium", "paean", "eulogium", "panegyric", "eulogy"]}, {"answer": "evacuation", "hint": "synonyms for evacuation", "clues": ["elimination", "excreting", "emptying", "voidance", "voiding", "evacuation"]}, {"answer": "evaporation", "hint": "synonyms for evaporation", "clues": ["desiccation", "vapor", "vaporization", "dehydration", "drying up"]}, {"answer": "evasion", "hint": "synonyms for evasion", "clues": ["escape", "nonpayment", "dodging", "equivocation", "evasion"]}, {"answer": "evenfall", "hint": "synonyms for evenfall", "clues": ["dusk", "twilight", "fall", "gloam", "crepuscule", "nightfall", "evenfall"]}, {"answer": "event", "hint": "synonyms for event", "clues": ["upshot", "result", "consequence", "effect", "outcome", "issue", "event"]}, {"answer": "evolution", "hint": "synonyms for evolution", "clues": ["development", "phylogeny", "phylogenesis", "organic evolution", "evolution"]}, {"answer": "examination", "hint": "synonyms for examination", "clues": ["test", "interrogation", "scrutiny", "examen", "exam", "interrogatory", "examination"]}, {"answer": "example", "hint": "synonyms for example", "clues": ["case", "object lesson", "exercise", "lesson", "deterrent example", "illustration", "instance", "model", "exemplar", "representative", "good example", "example"]}, {"answer": "excavation", "hint": "synonyms for excavation", "clues": ["dig", "archeological site", "mining", "digging", "excavation"]}, {"answer": "exchange", "hint": "synonyms for exchange", "clues": ["rally", "telephone exchange", "commutation", "substitution", "central", "interchange", "exchange"]}, {"answer": "excision", "hint": "synonyms for excision", "clues": ["cut", "ablation", "deletion", "cutting out", "extirpation", "deracination", "excommunication", "excision"]}, {"answer": "excitement", "hint": "synonyms for excitement", "clues": ["turmoil", "excitation", "upheaval", "agitation", "exhilaration", "hullabaloo", "excitement"]}, {"answer": "exclusion", "hint": "synonyms for exclusion", "clues": ["exception", "riddance", "expulsion", "ejection", "elision", "exclusion"]}, {"answer": "excogitation", "hint": "synonyms for excogitation", "clues": ["invention", "innovation", "design", "conception", "excogitation"]}, {"answer": "excrement", "hint": "synonyms for excrement", "clues": ["excretory product", "excreta", "excretion", "body waste", "excrement"]}, {"answer": "excrescence", "hint": "synonyms for excrescence", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "gibbousness", "bump", "prominence", "protrusion", "bulge", "gibbosity", "excrescence"]}, {"answer": "excreta", "hint": "synonyms for excreta", "clues": ["excretory product", "excretion", "excrement", "body waste", "excreta"]}, {"answer": "excreting", "hint": "synonyms for excreting", "clues": ["evacuation", "excretion", "elimination", "voiding"]}, {"answer": "excretion", "hint": "synonyms for excretion", "clues": ["excreting", "excrement", "voiding", "elimination", "evacuation", "excretory product", "excreta", "body waste"]}, {"answer": "excretory_product", "hint": "synonyms for excretory product", "clues": ["excreta", "excretion", "excrement", "body waste", "excretory product"]}, {"answer": "excursion", "hint": "synonyms for excursion", "clues": ["outing", "jaunt", "pleasure trip", "digression", "junket", "sashay", "expedition", "excursion"]}, {"answer": "excursus", "hint": "synonyms for excursus", "clues": ["aside", "digression", "divagation", "parenthesis", "excursus"]}, {"answer": "excuse", "hint": "synonyms for excuse", "clues": ["alibi", "exculpation", "apology", "self-justification", "excuse"]}, {"answer": "execration", "hint": "synonyms for execration", "clues": ["abhorrence", "loathing", "odium", "curse", "abomination", "condemnation", "detestation", "execration"]}, {"answer": "execution", "hint": "synonyms for execution", "clues": ["executing", "carrying into action", "slaying", "instruction execution", "performance", "writ of execution", "execution of instrument", "death penalty", "capital punishment", "murder", "implementation", "carrying out"]}, {"answer": "exercise", "hint": "synonyms for exercise", "clues": ["usage", "utilisation", "drill", "use", "practice session", "physical exercise", "practice", "physical exertion", "employment", "recitation", "exercising", "example", "workout", "exercise"]}, {"answer": "exercising", "hint": "synonyms for exercising", "clues": ["physical exercise", "exercise", "physical exertion", "workout", "exercising"]}, {"answer": "exertion", "hint": "synonyms for exertion", "clues": ["effort", "elbow grease", "sweat", "travail", "exertion"]}, {"answer": "exiguity", "hint": "synonyms for exiguity", "clues": ["meagerness", "scantiness", "poorness", "leanness", "exiguity"]}, {"answer": "existence", "hint": "synonyms for existence", "clues": ["cosmos", "macrocosm", "creation", "world", "universe", "existence"]}, {"answer": "exit", "hint": "synonyms for exit", "clues": ["outlet", "departure", "passing", "going", "release", "expiration", "issue", "way out", "loss", "exit"]}, {"answer": "expatriation", "hint": "synonyms for expatriation", "clues": ["deportation", "out-migration", "transportation", "exile", "emigration", "expatriation"]}, {"answer": "expectation", "hint": "synonyms for expectation", "clues": ["arithmetic mean", "prospect", "outlook", "expected value", "first moment", "expectation"]}, {"answer": "expedience", "hint": "synonyms for expedience", "clues": ["expediency", "self-seeking", "self-interest", "opportunism"]}, {"answer": "expedition", "hint": "synonyms for expedition", "clues": ["pleasure trip", "expeditiousness", "junket", "military expedition", "sashay", "excursion", "despatch", "outing", "jaunt", "hostile expedition", "expedition"]}, {"answer": "expenditure", "hint": "synonyms for expenditure", "clues": ["spending", "outlay", "using up", "consumption", "expending", "outgo", "expenditure"]}, {"answer": "expiration", "hint": "synonyms for expiration", "clues": ["breathing out", "expiry", "departure", "passing", "going", "release", "exit", "termination", "loss", "exhalation", "expiration"]}, {"answer": "expiry", "hint": "synonyms for expiry", "clues": ["death", "decease", "termination", "expiration", "expiry"]}, {"answer": "expletive", "hint": "synonyms for expletive", "clues": ["swearword", "oath", "swearing", "curse", "curse word", "cuss", "expletive"]}, {"answer": "exploitation", "hint": "synonyms for exploitation", "clues": ["development", "victimization", "using", "exploitation"]}, {"answer": "explosion", "hint": "synonyms for explosion", "clues": ["detonation", "burst", "blowup", "plosion"]}, {"answer": "exposure", "hint": "synonyms for exposure", "clues": ["picture", "photograph", "pic", "photo", "exposure"]}, {"answer": "expression", "hint": "synonyms for expression", "clues": ["grammatical construction", "reflexion", "reflection", "saying", "face", "look", "verbal expression", "formula", "locution", "construction", "aspect", "facial expression", "manifestation", "formulation", "verbalism", "expression"]}, {"answer": "expressway", "hint": "synonyms for expressway", "clues": ["throughway", "superhighway", "pike", "state highway", "freeway", "motorway", "thruway", "expressway"]}, {"answer": "expulsion", "hint": "synonyms for expulsion", "clues": ["riddance", "exclusion", "projection", "extrusion", "ejection", "forcing out", "expulsion"]}, {"answer": "extension", "hint": "synonyms for extension", "clues": ["reference", "elongation", "annexe", "extension phone", "prolongation", "wing", "university extension", "file name extension", "extension service", "telephone extension", "denotation", "lengthiness", "propagation", "extension"]}, {"answer": "extinction", "hint": "synonyms for extinction", "clues": ["quenching", "experimental extinction", "extermination", "extinguishing", "extinction"]}, {"answer": "extirpation", "hint": "synonyms for extirpation", "clues": ["ablation", "cutting out", "excision", "deracination", "extirpation"]}, {"answer": "extract", "hint": "synonyms for extract", "clues": ["selection", "excerption", "excerpt", "infusion", "extract"]}, {"answer": "extractor", "hint": "synonyms for extractor", "clues": ["cartridge remover", "cartridge extractor", "separator", "centrifuge", "extractor"]}, {"answer": "extravagance", "hint": "synonyms for extravagance", "clues": ["profligacy", "highlife", "extravagancy", "prodigality", "lavishness"]}, {"answer": "extrusion", "hint": "synonyms for extrusion", "clues": ["protuberance", "hump", "jut", "swelling", "expulsion", "gibbousness", "bump", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "extrusion"]}, {"answer": "exultation", "hint": "synonyms for exultation", "clues": ["jubilancy", "rejoicing", "jubilation", "exultation"]}, {"answer": "eye", "hint": "synonyms for eye", "clues": ["heart", "middle", "center", "centre", "eye"]}, {"answer": "eye_blink", "hint": "synonyms for eye blink", "clues": ["wink", "blink", "nictitation", "eye blink"]}, {"answer": "eyeglasses", "hint": "synonyms for eyeglasses", "clues": ["specs", "glasses", "eyeglass", "monocle", "spectacles"]}, {"answer": "eyelet", "hint": "synonyms for eyelet", "clues": ["loop", "grummet", "cringle", "eyehole", "eyelet"]}, {"answer": "eyes", "hint": "synonyms for eyes", "clues": ["heart", "eye", "middle", "center", "centre"]}, {"answer": "eyeshade", "hint": "synonyms for eyeshade", "clues": ["visor", "bill", "peak", "vizor", "eyeshade"]}, {"answer": "ezed", "hint": "synonyms for ezed", "clues": ["z", "zee", "izzard", "zed"]}, {"answer": "f", "hint": "synonyms for f", "clues": ["farad", "atomic number 9", "fluorine", "degree Fahrenheit", "f"]}, {"answer": "fable", "hint": "synonyms for fable", "clues": ["fabrication", "allegory", "legend", "apologue", "fiction", "parable", "fable"]}, {"answer": "fabric", "hint": "synonyms for fabric", "clues": ["cloth", "textile", "material", "framework", "fabric"]}, {"answer": "fabrication", "hint": "synonyms for fabrication", "clues": ["fictionalization", "prevarication", "lying", "assembly", "manufacture", "fiction", "manufacturing", "fable", "fabrication"]}, {"answer": "face", "hint": "synonyms for face", "clues": ["case", "boldness", "typeface", "font", "look", "grimace", "nerve", "brass", "expression", "aspect", "cheek", "facial expression", "side", "face"]}, {"answer": "face_lift", "hint": "synonyms for face lift", "clues": ["face lifting", "facelift", "nip and tuck", "cosmetic surgery", "rhytidectomy", "rhytidoplasty", "lift"]}, {"answer": "face_lifting", "hint": "synonyms for face lifting", "clues": ["facelift", "nip and tuck", "lift", "cosmetic surgery", "rhytidectomy", "rhytidoplasty", "face lifting"]}, {"answer": "facelift", "hint": "synonyms for facelift", "clues": ["face lifting", "nip and tuck", "cosmetic surgery", "rhytidectomy", "rhytidoplasty", "lift", "facelift"]}, {"answer": "facial_expression", "hint": "synonyms for facial expression", "clues": ["expression", "aspect", "facial gesture", "face", "look", "facial expression"]}, {"answer": "facility", "hint": "synonyms for facility", "clues": ["quickness", "installation", "adroitness", "readiness", "adeptness", "deftness", "facility"]}, {"answer": "fact_mood", "hint": "synonyms for fact mood", "clues": ["common mood", "indicative mood", "indicative", "declarative", "declarative mood", "fact mood"]}, {"answer": "faction", "hint": "synonyms for faction", "clues": ["cabal", "sect", "camarilla", "junto", "faction"]}, {"answer": "factor", "hint": "synonyms for factor", "clues": ["ingredient", "constituent", "divisor", "component", "element", "factor"]}, {"answer": "factor_v", "hint": "synonyms for factor v", "clues": ["proaccelerin", "prothrombin accelerator", "factor V", "accelerator factor"]}, {"answer": "factor_vii", "hint": "synonyms for factor vii", "clues": ["proconvertin", "factor VII", "stable factor", "cothromboplastin"]}, {"answer": "fad", "hint": "synonyms for fad", "clues": ["furor", "rage", "craze", "cult", "fad"]}, {"answer": "faecal_matter", "hint": "synonyms for faecal matter", "clues": ["fecal matter", "feces", "dejection", "stool", "ordure"]}, {"answer": "faeces", "hint": "synonyms for faeces", "clues": ["fecal matter", "feces", "dejection", "stool", "ordure"]}, {"answer": "fag", "hint": "synonyms for fag", "clues": ["cigarette", "butt", "coffin nail", "fag"]}, {"answer": "fairness", "hint": "synonyms for fairness", "clues": ["candour", "blondness", "paleness", "comeliness", "equity", "fair-mindedness", "beauteousness", "loveliness", "fairness"]}, {"answer": "fairy_story", "hint": "synonyms for fairy story", "clues": ["fairy tale", "cock-and-bull story", "song and dance", "fairy story"]}, {"answer": "fairy_tale", "hint": "synonyms for fairy tale", "clues": ["fairy story", "cock-and-bull story", "song and dance", "fairytale"]}, {"answer": "fairyland", "hint": "synonyms for fairyland", "clues": ["faerie", "phantasy world", "faery", "fairyland"]}, {"answer": "fairytale", "hint": "synonyms for fairytale", "clues": ["fairy story", "fairy tale", "cock-and-bull story", "song and dance"]}, {"answer": "faith", "hint": "synonyms for faith", "clues": ["religion", "religious belief", "trust", "organized religion", "faith"]}, {"answer": "falderol", "hint": "synonyms for falderol", "clues": ["trumpery", "nonsense", "gimcrack", "frill", "folderal", "gimcrackery", "falderol"]}, {"answer": "fall", "hint": "synonyms for fall", "clues": ["dusk", "twilight", "decline", "drop", "autumn", "descent", "downslope", "gloaming", "nightfall", "evenfall", "crepuscle", "surrender", "tumble", "declivity", "declination", "spill", "capitulation", "pin", "free fall", "dip", "declension", "downfall", "fall"]}, {"answer": "fallal", "hint": "synonyms for fallal", "clues": ["bangle", "trinket", "novelty", "gaud", "gewgaw", "bauble", "fallal"]}, {"answer": "falling_off", "hint": "synonyms for falling off", "clues": ["slump", "slack", "falloff", "drop-off", "falling off"]}, {"answer": "falling_out", "hint": "synonyms for falling out", "clues": ["break", "breach", "rift", "severance", "rupture", "falling out"]}, {"answer": "falloff", "hint": "synonyms for falloff", "clues": ["slump", "slack", "drop-off", "falling off", "falloff"]}, {"answer": "falls", "hint": "synonyms for falls", "clues": ["dusk", "twilight", "decline", "drop", "autumn", "descent", "downslope", "gloaming", "nightfall", "evenfall", "crepuscle", "surrender", "tumble", "declivity", "declination", "spill", "capitulation", "pin", "fall", "free fall", "dip", "declension", "waterfall", "downfall"]}, {"answer": "falseness", "hint": "synonyms for falseness", "clues": ["faithlessness", "insincerity", "inconstancy", "fickleness", "hollowness", "falseness"]}, {"answer": "falsification", "hint": "synonyms for falsification", "clues": ["disproof", "falsehood", "misrepresentation", "refutation", "refutal", "falsifying", "falsification"]}, {"answer": "falsifying", "hint": "synonyms for falsifying", "clues": ["refutal", "disproof", "refutation", "falsification", "falsifying"]}, {"answer": "familiarity", "hint": "synonyms for familiarity", "clues": ["closeness", "impropriety", "intimacy", "liberty", "conversancy", "indecorum", "acquaintance", "casualness", "familiarity"]}, {"answer": "family", "hint": "synonyms for family", "clues": ["family line", "menage", "crime syndicate", "phratry", "family unit", "sept", "kinfolk", "house", "home", "folk", "household", "mob", "class", "fellowship", "syndicate", "category", "family"]}, {"answer": "family_line", "hint": "synonyms for family line", "clues": ["family", "phratry", "kinsfolk", "sept", "folk", "family line"]}, {"answer": "fan-jet", "hint": "synonyms for fan-jet", "clues": ["turbofan", "turbojet", "fanjet", "turbofan engine", "fanjet engine", "turbojet engine"]}, {"answer": "fanfare", "hint": "synonyms for fanfare", "clues": ["ostentation", "flourish", "flash", "tucket", "fanfare"]}, {"answer": "fanjet", "hint": "synonyms for fanjet", "clues": ["turbofan", "turbojet", "turbofan engine", "fanjet engine", "fan-jet", "turbojet engine"]}, {"answer": "fanjet_engine", "hint": "synonyms for fanjet engine", "clues": ["turbofan engine", "fanjet", "turbofan", "turbojet", "turbojet engine", "fanjet engine"]}, {"answer": "fantasm", "hint": "synonyms for fantasm", "clues": ["shadow", "phantasma", "apparition", "phantom", "fantasm"]}, {"answer": "farewell", "hint": "synonyms for farewell", "clues": ["parting", "leave-taking", "leave", "word of farewell", "farewell"]}, {"answer": "farmland", "hint": "synonyms for farmland", "clues": ["tilth", "farming area", "cultivated land", "tillage", "ploughland", "plowland", "tilled land", "farmland"]}, {"answer": "farrago", "hint": "synonyms for farrago", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "ragbag", "mingle-mangle", "odds and ends", "omnium-gatherum", "mishmash", "farrago"]}, {"answer": "fart", "hint": "synonyms for fart", "clues": ["flatus", "breaking wind", "farting", "wind"]}, {"answer": "farting", "hint": "synonyms for farting", "clues": ["flatus", "breaking wind", "fart", "wind"]}, {"answer": "fashion", "hint": "synonyms for fashion", "clues": ["style", "manner", "way", "mode", "fashion"]}, {"answer": "fashion_business", "hint": "synonyms for fashion business", "clues": ["fashion industry", "apparel industry", "garment industry", "rag trade", "fashion business"]}, {"answer": "fashion_industry", "hint": "synonyms for fashion industry", "clues": ["apparel industry", "fashion business", "garment industry", "rag trade", "fashion industry"]}, {"answer": "fastball", "hint": "synonyms for fastball", "clues": ["bullet", "heater", "smoke", "hummer", "fastball"]}, {"answer": "fastening", "hint": "synonyms for fastening", "clues": ["attachment", "fixing", "holdfast", "fastener", "fastening"]}, {"answer": "fastness", "hint": "synonyms for fastness", "clues": ["fixedness", "fixture", "speed", "fixity", "swiftness", "stronghold", "secureness", "fastness"]}, {"answer": "fatality_rate", "hint": "synonyms for fatality rate", "clues": ["mortality rate", "death rate", "mortality", "fatality rate"]}, {"answer": "fatherland", "hint": "synonyms for fatherland", "clues": ["homeland", "mother country", "native land", "motherland", "country of origin", "fatherland"]}, {"answer": "fault", "hint": "synonyms for fault", "clues": ["break", "geological fault", "mistake", "fracture", "demerit", "shift", "error", "faulting"]}, {"answer": "faulting", "hint": "synonyms for faulting", "clues": ["break", "geological fault", "fault", "shift", "fracture"]}, {"answer": "fauna", "hint": "synonyms for fauna", "clues": ["brute", "animal", "zoology", "creature", "animate being", "beast", "fauna"]}, {"answer": "faux_pas", "hint": "synonyms for faux pas", "clues": ["gaucherie", "slip", "gaffe", "solecism", "faux pas"]}, {"answer": "favorableness", "hint": "synonyms for favorableness", "clues": ["advantageousness", "profitableness", "positiveness", "positivity", "favourableness"]}, {"answer": "favourableness", "hint": "synonyms for favourableness", "clues": ["advantageousness", "profitableness", "positiveness", "positivity", "favorableness"]}, {"answer": "fear", "hint": "synonyms for fear", "clues": ["fright", "reverence", "veneration", "care", "awe", "fearfulness", "concern", "fear"]}, {"answer": "feast", "hint": "synonyms for feast", "clues": ["banquet", "fete", "fiesta", "spread", "feast"]}, {"answer": "feature", "hint": "synonyms for feature", "clues": ["feature film", "feature article", "feature of speech", "characteristic", "feature"]}, {"answer": "fecal_matter", "hint": "synonyms for fecal matter", "clues": ["faecal matter", "feces", "dejection", "stool", "ordure"]}, {"answer": "feces", "hint": "synonyms for feces", "clues": ["fecal matter", "faeces", "dejection", "stool", "ordure"]}, {"answer": "fecundation", "hint": "synonyms for fecundation", "clues": ["dressing", "fertilization", "impregnation", "fecundation"]}, {"answer": "federal_agency", "hint": "synonyms for federal agency", "clues": ["office", "agency", "bureau", "government agency", "authority", "federal agency"]}, {"answer": "federal_reserve_note", "hint": "synonyms for federal reserve note", "clues": ["banker's bill", "bank note", "note", "bank bill", "government note", "bill", "greenback", "federal reserve note"]}, {"answer": "feeder", "hint": "synonyms for feeder", "clues": ["affluent", "tributary", "confluent", "birdfeeder", "self-feeder", "feeder"]}, {"answer": "feeler", "hint": "synonyms for feeler", "clues": ["antenna", "approach", "overture", "advance", "feeler"]}, {"answer": "feeling", "hint": "synonyms for feeling", "clues": ["impression", "tactile sensation", "notion", "touch", "touch sensation", "opinion", "intuitive feeling", "belief", "feeling"]}, {"answer": "feelings", "hint": "synonyms for feelings", "clues": ["impression", "tactile sensation", "notion", "touch", "touch sensation", "opinion", "feeling", "intuitive feeling", "belief"]}, {"answer": "feigning", "hint": "synonyms for feigning", "clues": ["pretence", "simulation", "pretending", "dissembling", "feigning"]}, {"answer": "fender", "hint": "synonyms for fender", "clues": ["buffer", "pilot", "cowcatcher", "wing", "fender"]}, {"answer": "fere_phenomenon", "hint": "synonyms for fere phenomenon", "clues": ["psychogalvanic response", "galvanic skin response", "electrodermal response", "electrical skin response", "fere phenomenon"]}, {"answer": "ferocity", "hint": "synonyms for ferocity", "clues": ["wildness", "fury", "furiousness", "vehemence", "violence", "fierceness", "ferocity"]}, {"answer": "fertilisation", "hint": "synonyms for fertilisation", "clues": ["fecundation", "dressing", "fertilization", "impregnation"]}, {"answer": "fertility", "hint": "synonyms for fertility", "clues": ["birth rate", "rankness", "prolificacy", "fertility rate", "natality", "richness", "fertility"]}, {"answer": "fertility_rate", "hint": "synonyms for fertility rate", "clues": ["birth rate", "fertility", "natality", "fertility rate"]}, {"answer": "fertilization", "hint": "synonyms for fertilization", "clues": ["fecundation", "dressing", "fertilisation", "impregnation"]}, {"answer": "fervency", "hint": "synonyms for fervency", "clues": ["fire", "fervour", "fervidness", "ardour", "fervency"]}, {"answer": "fervidness", "hint": "synonyms for fervidness", "clues": ["fervency", "fire", "fervour", "ardour", "fervidness"]}, {"answer": "fervor", "hint": "synonyms for fervor", "clues": ["fervency", "fire", "fervidness", "ardour", "fervour"]}, {"answer": "fervour", "hint": "synonyms for fervour", "clues": ["fervency", "fire", "fervidness", "ardour", "fervor"]}, {"answer": "fetich", "hint": "synonyms for fetich", "clues": ["fetish", "hoodoo", "juju", "voodoo", "fetich"]}, {"answer": "fetidness", "hint": "synonyms for fetidness", "clues": ["foulness", "rankness", "stinkiness", "malodorousness", "fetidness"]}, {"answer": "fetish", "hint": "synonyms for fetish", "clues": ["fetich", "hoodoo", "juju", "voodoo", "fetish"]}, {"answer": "fetor", "hint": "synonyms for fetor", "clues": ["malodor", "stench", "mephitis", "foetor", "reek", "stink"]}, {"answer": "fiat", "hint": "synonyms for fiat", "clues": ["rescript", "order", "edict", "decree", "fiat"]}, {"answer": "fib", "hint": "synonyms for fib", "clues": ["story", "taradiddle", "tale", "fib"]}, {"answer": "fiber", "hint": "synonyms for fiber", "clues": ["vulcanized fiber", "fibre", "character", "roughage", "fiber"]}, {"answer": "field", "hint": "synonyms for field", "clues": ["field of study", "battleground", "field of honor", "field of battle", "subject area", "field of operation", "playing area", "theater", "flying field", "discipline", "athletic field", "bailiwick", "subject", "theater of operations", "field of view", "line of business", "landing field", "battlefield", "champaign", "subject field", "field of force", "study", "airfield", "force field", "plain", "field"]}, {"answer": "field_glasses", "hint": "synonyms for field glasses", "clues": ["glass", "opera glasses", "field glass", "spyglass", "binoculars"]}, {"answer": "field_of_battle", "hint": "synonyms for field of battle", "clues": ["field", "battleground", "field of honor", "battlefield", "field of battle"]}, {"answer": "field_of_honor", "hint": "synonyms for field of honor", "clues": ["field", "battleground", "field of battle", "battlefield", "field of honor"]}, {"answer": "field_of_operations", "hint": "synonyms for field of operations", "clues": ["theatre", "theatre of operations", "field", "line of business", "field of operation"]}, {"answer": "field_of_study", "hint": "synonyms for field of study", "clues": ["subject field", "field", "study", "discipline", "bailiwick", "subject area", "subject", "field of study"]}, {"answer": "fields", "hint": "synonyms for fields", "clues": ["field of study", "battleground", "field of honor", "field of battle", "subject area", "field of operation", "playing area", "field", "theater", "flying field", "discipline", "bailiwick", "athletic field", "subject", "theater of operations", "field of view", "line of business", "landing field", "battlefield", "champaign", "subject field", "field of force", "study", "airfield", "force field", "plain"]}, {"answer": "fierceness", "hint": "synonyms for fierceness", "clues": ["wildness", "ferocity", "furiousness", "vehemence", "violence", "fury", "fierceness"]}, {"answer": "fifties", "hint": "synonyms for fifties", "clues": ["mid-fifties", "fifty dollar bill", "1950s", "50", "fifty", "fifties"]}, {"answer": "fight", "hint": "synonyms for fight", "clues": ["battle", "conflict", "combat", "scrap", "competitiveness", "engagement", "fighting"]}, {"answer": "figure", "hint": "synonyms for figure", "clues": ["fig", "number", "image", "digit", "trope", "pattern", "figure of speech", "design", "figure"]}, {"answer": "file", "hint": "synonyms for file", "clues": ["file cabinet", "filing cabinet", "single file", "data file", "file"]}, {"answer": "filiation", "hint": "synonyms for filiation", "clues": ["lineage", "ancestry", "line of descent", "descent", "derivation", "filiation"]}, {"answer": "fillet", "hint": "synonyms for fillet", "clues": ["fish fillet", "taenia", "stopping", "filet"]}, {"answer": "filling", "hint": "synonyms for filling", "clues": ["pick", "woof", "fill", "weft"]}, {"answer": "film", "hint": "synonyms for film", "clues": ["movie", "plastic film", "moving picture", "picture", "flick", "celluloid", "moving-picture show", "picture show", "photographic film", "cinema", "pic", "film"]}, {"answer": "filth", "hint": "synonyms for filth", "clues": ["crud", "obscenity", "dirty word", "smut", "skank", "vulgarism", "filth"]}, {"answer": "fin", "hint": "synonyms for fin", "clues": ["quint", "louvre", "quintet", "louver", "tail fin", "cinque", "pentad", "flipper", "quintuplet", "5", "five", "fivesome", "fin"]}, {"answer": "final_result", "hint": "synonyms for final result", "clues": ["result", "termination", "resultant", "outcome", "final result"]}, {"answer": "finale", "hint": "synonyms for finale", "clues": ["closing curtain", "stopping point", "finis", "coda", "last", "conclusion", "close", "finale"]}, {"answer": "finances", "hint": "synonyms for finances", "clues": ["funds", "monetary resource", "finance", "cash in hand", "pecuniary resource"]}, {"answer": "financial_backing", "hint": "synonyms for financial backing", "clues": ["funding", "support", "backing", "financial support", "financial backing"]}, {"answer": "financial_support", "hint": "synonyms for financial support", "clues": ["funding", "support", "backing", "financial backing", "financial support"]}, {"answer": "fineness", "hint": "synonyms for fineness", "clues": ["thinness", "delicacy", "powderiness", "choiceness", "daintiness", "fineness"]}, {"answer": "finis", "hint": "synonyms for finis", "clues": ["closing curtain", "stopping point", "finale", "finish", "last", "conclusion", "close"]}, {"answer": "finish", "hint": "synonyms for finish", "clues": ["ending", "destination", "finishing", "stopping point", "finis", "finale", "goal", "coating", "last", "conclusion", "close"]}, {"answer": "fire", "hint": "synonyms for fire", "clues": ["flak", "flame", "flaming", "fervor", "blast", "firing", "fervency", "attack", "fervidness", "ardour", "fire"]}, {"answer": "firing", "hint": "synonyms for firing", "clues": ["sack", "inflammation", "lighting", "dismissal", "release", "discharge", "fire", "dismission", "ignition", "firing off", "kindling", "liberation", "firing"]}, {"answer": "firmament", "hint": "synonyms for firmament", "clues": ["empyrean", "sphere", "vault of heaven", "welkin", "heavens", "celestial sphere", "firmament"]}, {"answer": "firmness", "hint": "synonyms for firmness", "clues": ["resolution", "soundness", "steadiness", "resolve", "resoluteness", "firmness of purpose", "firmness"]}, {"answer": "firmness_of_purpose", "hint": "synonyms for firmness of purpose", "clues": ["resolution", "resolve", "resoluteness", "firmness", "firmness of purpose"]}, {"answer": "first_appearance", "hint": "synonyms for first appearance", "clues": ["launching", "unveiling", "entry", "debut", "introduction", "first appearance"]}, {"answer": "first_derivative", "hint": "synonyms for first derivative", "clues": ["differential", "derived function", "differential coefficient", "derivative", "first derivative"]}, {"answer": "first_light", "hint": "synonyms for first light", "clues": ["dawn", "dayspring", "break of day", "sunrise", "daybreak", "sunup", "morning", "aurora", "cockcrow", "first light"]}, {"answer": "fishgig", "hint": "synonyms for fishgig", "clues": ["spear", "gig", "lance", "fizgig", "fishgig"]}, {"answer": "fishing_gear", "hint": "synonyms for fishing gear", "clues": ["tackle", "fishing rig", "rig", "fishing tackle", "fishing gear"]}, {"answer": "fishing_rig", "hint": "synonyms for fishing rig", "clues": ["tackle", "fishing tackle", "rig", "fishing gear", "fishing rig"]}, {"answer": "fishing_tackle", "hint": "synonyms for fishing tackle", "clues": ["tackle", "fishing rig", "rig", "fishing gear", "fishing tackle"]}, {"answer": "fissure", "hint": "synonyms for fissure", "clues": ["cranny", "chap", "crevice", "crack", "cleft", "scissure", "fissure"]}, {"answer": "fisticuffs", "hint": "synonyms for fisticuffs", "clues": ["fistfight", "slugfest", "pugilism", "boxing", "fisticuffs"]}, {"answer": "fives", "hint": "synonyms for fives", "clues": ["quint", "quintet", "cinque", "pentad", "five-spot", "fin", "basketball team", "quintuplet", "5", "five", "fivesome"]}, {"answer": "fivesome", "hint": "synonyms for fivesome", "clues": ["quint", "quintet", "cinque", "pentad", "fin", "quintuplet", "5", "five", "fivesome"]}, {"answer": "fix", "hint": "synonyms for fix", "clues": ["fixture", "mend", "fixing", "localisation", "locating", "repair", "reparation"]}, {"answer": "fixedness", "hint": "synonyms for fixedness", "clues": ["fastness", "fixture", "unalterability", "fixity", "secureness", "fixedness"]}, {"answer": "fixer", "hint": "synonyms for fixer", "clues": ["methadone hydrochloride", "methadon", "synthetic heroin", "fixing agent", "dolophine hydrochloride", "fixer"]}, {"answer": "fixing", "hint": "synonyms for fixing", "clues": ["fixture", "mend", "fastening", "neutering", "holdfast", "fix", "fixation", "altering", "repair", "reparation", "fastener"]}, {"answer": "fixings", "hint": "synonyms for fixings", "clues": ["reparation", "fixture", "mend", "fastening", "neutering", "fixing", "holdfast", "ingredient", "fixation", "altering", "repair", "trimmings", "fastener"]}, {"answer": "fixity", "hint": "synonyms for fixity", "clues": ["fastness", "fixedness", "fixture", "immutableness", "immutability", "secureness", "fixity"]}, {"answer": "fixture", "hint": "synonyms for fixture", "clues": ["mend", "fixing", "secureness", "fastness", "fixedness", "fixity", "repair", "reparation", "fixture"]}, {"answer": "fizgig", "hint": "synonyms for fizgig", "clues": ["spear", "lance", "fishgig", "gig", "fizgig"]}, {"answer": "fizzle", "hint": "synonyms for fizzle", "clues": ["flop", "hiss", "bust", "sibilation", "hushing", "fizzle"]}, {"answer": "flack", "hint": "synonyms for flack", "clues": ["flak", "ack-ack", "antiaircraft", "blast", "attack", "fire", "ack-ack gun", "pom-pom"]}, {"answer": "flag", "hint": "synonyms for flag", "clues": ["signal flag", "flagstone", "masthead", "pin", "flag"]}, {"answer": "flagellation", "hint": "synonyms for flagellation", "clues": ["flogging", "tanning", "lashing", "whipping", "flagellation"]}, {"answer": "flair", "hint": "synonyms for flair", "clues": ["style", "elan", "genius", "dash", "panache", "flare", "flair"]}, {"answer": "flak", "hint": "synonyms for flak", "clues": ["flack", "ack-ack", "antiaircraft", "blast", "attack", "fire", "ack-ack gun", "pom-pom"]}, {"answer": "flake", "hint": "synonyms for flake", "clues": ["scrap", "fleck", "chip", "snowflake", "bit", "flake"]}, {"answer": "flannel", "hint": "synonyms for flannel", "clues": ["face cloth", "gabardine", "white", "tweed", "washrag", "washcloth", "flannel"]}, {"answer": "flannel-cake", "hint": "synonyms for flannel-cake", "clues": ["griddlecake", "hotcake", "pancake", "flapjack", "flapcake", "battercake", "flannel cake"]}, {"answer": "flannel_cake", "hint": "synonyms for flannel cake", "clues": ["griddlecake", "hotcake", "pancake", "flapjack", "flapcake", "flannel-cake", "battercake"]}, {"answer": "flapcake", "hint": "synonyms for flapcake", "clues": ["griddlecake", "hotcake", "pancake", "flapjack", "flannel-cake", "battercake", "flapcake"]}, {"answer": "flapjack", "hint": "synonyms for flapjack", "clues": ["griddlecake", "hotcake", "pancake", "flapcake", "flannel-cake", "battercake", "flapjack"]}, {"answer": "flare", "hint": "synonyms for flare", "clues": ["flair", "solar flare", "flash", "flare pass", "flare"]}, {"answer": "flash_bulb", "hint": "synonyms for flash bulb", "clues": ["flash", "flash lamp", "flashbulb", "flashgun", "photoflash"]}, {"answer": "flash_lamp", "hint": "synonyms for flash lamp", "clues": ["flash", "flashbulb", "flashgun", "photoflash", "flash lamp"]}, {"answer": "flashbulb", "hint": "synonyms for flashbulb", "clues": ["flash", "flash lamp", "flash bulb", "flashgun", "photoflash"]}, {"answer": "flashgun", "hint": "synonyms for flashgun", "clues": ["flash", "flash lamp", "flashbulb", "photoflash", "flashgun"]}, {"answer": "flashiness", "hint": "synonyms for flashiness", "clues": ["gaudiness", "brashness", "tawdriness", "meretriciousness", "loudness", "garishness", "glitz", "flashiness"]}, {"answer": "flat_coat", "hint": "synonyms for flat coat", "clues": ["ground", "priming coat", "undercoat", "primer", "priming", "primer coat", "flat coat"]}, {"answer": "flatness", "hint": "synonyms for flatness", "clues": ["lustrelessness", "mat", "sluggishness", "two-dimensionality", "phlegm", "planeness", "matte", "lethargy", "languor", "flatness"]}, {"answer": "flats", "hint": "synonyms for flats", "clues": ["flat", "flatbed", "flatcar", "apartment", "flat tire"]}, {"answer": "flatus", "hint": "synonyms for flatus", "clues": ["breaking wind", "farting", "wind", "flatus"]}, {"answer": "flavor", "hint": "synonyms for flavor", "clues": ["flavour", "sapidity", "savor", "relish", "smack", "tang", "nip"]}, {"answer": "flavorer", "hint": "synonyms for flavorer", "clues": ["flavoring", "seasoning", "flavourer", "seasoner"]}, {"answer": "flavoring", "hint": "synonyms for flavoring", "clues": ["seasoning", "flavouring", "flavorer", "seasoner"]}, {"answer": "flavour", "hint": "synonyms for flavour", "clues": ["sapidity", "savor", "flavor", "relish", "smack", "nip", "tang"]}, {"answer": "flavourer", "hint": "synonyms for flavourer", "clues": ["flavoring", "seasoning", "flavorer", "seasoner"]}, {"answer": "flavouring", "hint": "synonyms for flavouring", "clues": ["flavoring", "seasoning", "flavorer", "seasoner"]}, {"answer": "fleck", "hint": "synonyms for fleck", "clues": ["flake", "spot", "chip", "patch", "bit", "maculation", "speckle", "scrap", "dapple", "fleck"]}, {"answer": "flexure", "hint": "synonyms for flexure", "clues": ["crease", "bend", "flexion", "fold", "crimp", "plication", "flexure"]}, {"answer": "flick", "hint": "synonyms for flick", "clues": ["movie", "moving picture", "picture", "film", "moving-picture show", "picture show", "pic", "flick"]}, {"answer": "flicker", "hint": "synonyms for flicker", "clues": ["glint", "flutter", "spark", "waver", "flicker"]}, {"answer": "flier", "hint": "synonyms for flier", "clues": ["bill", "broadsheet", "circular", "broadside", "flyer", "handbill", "throwaway", "flier"]}, {"answer": "flies", "hint": "synonyms for flies", "clues": ["fly front", "fly ball", "fly sheet", "rainfly", "tent flap", "tent-fly", "fly", "flies"]}, {"answer": "flight", "hint": "synonyms for flight", "clues": ["escape", "flight of stairs", "flying", "trajectory", "flight of steps", "flight"]}, {"answer": "flightiness", "hint": "synonyms for flightiness", "clues": ["whimsicality", "whimsy", "capriciousness", "arbitrariness", "flightiness"]}, {"answer": "flimflam", "hint": "synonyms for flimflam", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "con game", "con", "confidence trick", "flimflam"]}, {"answer": "fling", "hint": "synonyms for fling", "clues": ["crack", "go", "offer", "pass", "spree", "whirl", "fling"]}, {"answer": "flip-flop", "hint": "synonyms for flip-flop", "clues": ["thong", "reversal", "turnabout", "turnaround", "change of mind", "flip-flop"]}, {"answer": "flirt", "hint": "synonyms for flirt", "clues": ["toying", "flirtation", "flirting", "dalliance", "coquetry"]}, {"answer": "flirtation", "hint": "synonyms for flirtation", "clues": ["toying", "flirting", "dalliance", "coquetry", "flirtation"]}, {"answer": "flirting", "hint": "synonyms for flirting", "clues": ["toying", "flirtation", "dalliance", "flirt", "coquetry"]}, {"answer": "flock", "hint": "synonyms for flock", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "troop", "lot", "sight", "mickle", "stack", "plenty", "fold", "muckle", "mountain", "pile", "batch", "tidy sum", "pot", "flock"]}, {"answer": "flogging", "hint": "synonyms for flogging", "clues": ["tanning", "lashing", "flagellation", "whipping", "flogging"]}, {"answer": "flood", "hint": "synonyms for flood", "clues": ["flowage", "deluge", "torrent", "flood tide", "photoflood", "alluvion", "outpouring", "flood lamp", "inundation", "overflow", "rising tide", "floodlight", "flood"]}, {"answer": "floodgate", "hint": "synonyms for floodgate", "clues": ["penstock", "sluice valve", "sluicegate", "water gate", "head gate", "floodgate"]}, {"answer": "floor", "hint": "synonyms for floor", "clues": ["story", "level", "flooring", "base", "trading floor"]}, {"answer": "flora", "hint": "synonyms for flora", "clues": ["plant", "plant life", "botany", "vegetation", "flora"]}, {"answer": "florescence", "hint": "synonyms for florescence", "clues": ["inflorescence", "anthesis", "blossoming", "flowering", "efflorescence"]}, {"answer": "flow", "hint": "synonyms for flow", "clues": ["menses", "rate of flow", "menstruation", "menstruum", "catamenia", "stream", "period", "flow rate", "flowing", "current"]}, {"answer": "flower", "hint": "synonyms for flower", "clues": ["prime", "heyday", "bloom", "flush", "peak", "blossom", "efflorescence", "flower"]}, {"answer": "flub", "hint": "synonyms for flub", "clues": ["fuckup", "bloomer", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch", "flub"]}, {"answer": "fluency", "hint": "synonyms for fluency", "clues": ["volubility", "articulateness", "eloquence", "smoothness", "fluency"]}, {"answer": "fluidity", "hint": "synonyms for fluidity", "clues": ["fluidness", "liquidity", "runniness", "liquidness", "fluidity"]}, {"answer": "fluidness", "hint": "synonyms for fluidness", "clues": ["runniness", "fluidity", "liquidity", "liquidness", "fluidness"]}, {"answer": "flurry", "hint": "synonyms for flurry", "clues": ["snow flurry", "stir", "bustle", "ado", "fuss", "hustle", "flurry"]}, {"answer": "flute", "hint": "synonyms for flute", "clues": ["flute glass", "fluting", "champagne flute", "transverse flute", "flute"]}, {"answer": "flutter", "hint": "synonyms for flutter", "clues": ["flapping", "flicker", "flap", "fluttering", "waver"]}, {"answer": "flux", "hint": "synonyms for flux", "clues": ["fluxion", "magnetic field", "magnetic flux", "flux density", "flux"]}, {"answer": "fluxing_lime", "hint": "synonyms for fluxing lime", "clues": ["calx", "unslaked lime", "lime", "calcium oxide", "calcined lime", "burnt lime", "quicklime", "fluxing lime"]}, {"answer": "fly_sheet", "hint": "synonyms for fly sheet", "clues": ["rainfly", "tent flap", "tent-fly", "fly", "fly sheet"]}, {"answer": "flyer", "hint": "synonyms for flyer", "clues": ["bill", "flier", "broadsheet", "circular", "broadside", "handbill", "throwaway", "flyer"]}, {"answer": "flying_drainpipe", "hint": "synonyms for flying drainpipe", "clues": ["ramjet", "athodyd", "ramjet engine", "atherodyde", "flying drainpipe"]}, {"answer": "focal_point", "hint": "synonyms for focal point", "clues": ["direction", "focus", "centering", "focussing", "focal point"]}, {"answer": "focus", "hint": "synonyms for focus", "clues": ["direction", "focal point", "focusing", "centering"]}, {"answer": "focusing", "hint": "synonyms for focusing", "clues": ["focalization", "direction", "focus", "focal point", "centering", "focussing"]}, {"answer": "focussing", "hint": "synonyms for focussing", "clues": ["direction", "focus", "focal point", "centering", "focussing"]}, {"answer": "foetor", "hint": "synonyms for foetor", "clues": ["malodor", "reek", "stench", "mephitis", "fetor", "stink"]}, {"answer": "fogginess", "hint": "synonyms for fogginess", "clues": ["fuzziness", "indistinctness", "blurriness", "softness", "fogginess"]}, {"answer": "folacin", "hint": "synonyms for folacin", "clues": ["folate", "vitamin M", "pteroylglutamic acid", "folic acid", "vitamin Bc", "folacin"]}, {"answer": "folate", "hint": "synonyms for folate", "clues": ["vitamin M", "folacin", "pteroylglutamic acid", "folic acid", "vitamin Bc", "folate"]}, {"answer": "fold", "hint": "synonyms for fold", "clues": ["crease", "sheepcote", "flexure", "folding", "faithful", "sheep pen", "crimp", "bend", "plication", "sheepfold", "congregation", "flock"]}, {"answer": "folder", "hint": "synonyms for folder", "clues": ["brochure", "pamphlet", "booklet", "leaflet", "folder"]}, {"answer": "folderal", "hint": "synonyms for folderal", "clues": ["trumpery", "gimcrack", "falderol", "frill", "nonsense", "gimcrackery", "folderal"]}, {"answer": "folderol", "hint": "synonyms for folderol", "clues": ["trumpery", "trash", "codswallop", "applesauce", "rubbish", "tripe", "wish-wash", "folderol"]}, {"answer": "folic_acid", "hint": "synonyms for folic acid", "clues": ["folate", "vitamin M", "folacin", "pteroylglutamic acid", "vitamin Bc", "folic acid"]}, {"answer": "folio", "hint": "synonyms for folio", "clues": ["page number", "leaf", "pagination", "paging", "folio"]}, {"answer": "folk", "hint": "synonyms for folk", "clues": ["family line", "ethnic music", "family", "phratry", "sept", "tribe", "kinfolk", "common people", "folks", "folk music"]}, {"answer": "folks", "hint": "synonyms for folks", "clues": ["family line", "ethnic music", "family", "phratry", "sept", "tribe", "kinfolk", "common people", "folk music", "folk"]}, {"answer": "follies", "hint": "synonyms for follies", "clues": ["tomfoolery", "foolery", "stupidity", "indulgence", "folly", "lunacy", "unwiseness", "foolishness", "imbecility", "craziness", "betise", "madness", "follies"]}, {"answer": "folly", "hint": "synonyms for folly", "clues": ["tomfoolery", "foolery", "stupidity", "indulgence", "lunacy", "unwiseness", "foolishness", "imbecility", "craziness", "betise", "madness", "folly"]}, {"answer": "fondling", "hint": "synonyms for fondling", "clues": ["necking", "kissing", "snuggling", "caressing", "cuddling", "petting", "hugging", "smooching", "fondling"]}, {"answer": "fondness", "hint": "synonyms for fondness", "clues": ["partiality", "fancy", "affection", "affectionateness", "philia", "heart", "lovingness", "warmth", "warmness", "tenderness", "warmheartedness", "fondness"]}, {"answer": "font", "hint": "synonyms for font", "clues": ["case", "baptistery", "typeface", "baptismal font", "face", "fount"]}, {"answer": "food", "hint": "synonyms for food", "clues": ["solid food", "intellectual nourishment", "nutrient", "food for thought", "food"]}, {"answer": "foolery", "hint": "synonyms for foolery", "clues": ["indulgence", "folly", "lunacy", "tomfoolery", "craziness", "foolery"]}, {"answer": "foolishness", "hint": "synonyms for foolishness", "clues": ["betise", "folly", "unwiseness", "imbecility", "craziness", "stupidity", "madness", "foolishness"]}, {"answer": "foot", "hint": "synonyms for foot", "clues": ["foundation", "understructure", "ft", "base", "metrical foot", "metrical unit", "fundament", "groundwork", "infantry", "substructure", "foot"]}, {"answer": "footstep", "hint": "synonyms for footstep", "clues": ["stride", "step", "pace", "footfall", "footstep"]}, {"answer": "forage", "hint": "synonyms for forage", "clues": ["eatage", "pasture", "foraging", "grass", "forage"]}, {"answer": "forbiddance", "hint": "synonyms for forbiddance", "clues": ["prohibition", "forbidding", "banning", "inhibition", "ban", "forbiddance"]}, {"answer": "force", "hint": "synonyms for force", "clues": ["military group", "strength", "force out", "forcefulness", "violence", "effect", "force play", "military force", "military unit", "personnel", "force"]}, {"answer": "force-feed_lubricating_system", "hint": "synonyms for force-feed lubricating system", "clues": ["pressure feed", "force feed", "pressure-feed lubricating system", "lubricating system"]}, {"answer": "force_feed", "hint": "synonyms for force feed", "clues": ["pressure feed", "pressure-feed lubricating system", "lubricating system", "force feed"]}, {"answer": "force_majeure", "hint": "synonyms for force majeure", "clues": ["act of God", "vis major", "unavoidable casualty", "inevitable accident", "force majeure"]}, {"answer": "foreign_mission", "hint": "synonyms for foreign mission", "clues": ["legation", "missionary station", "mission", "missionary post", "foreign mission"]}, {"answer": "forerunner", "hint": "synonyms for forerunner", "clues": ["harbinger", "herald", "precursor", "antecedent", "predecessor", "forerunner"]}, {"answer": "foresight", "hint": "synonyms for foresight", "clues": ["prevision", "prospicience", "farsightedness", "foresightfulness", "foresight"]}, {"answer": "forest", "hint": "synonyms for forest", "clues": ["woods", "timber", "woodland", "timberland", "forest"]}, {"answer": "foretelling", "hint": "synonyms for foretelling", "clues": ["soothsaying", "forecasting", "divination", "prediction", "prognostication", "fortune telling", "foretelling"]}, {"answer": "forethought", "hint": "synonyms for forethought", "clues": ["caution", "premeditation", "care", "precaution", "forethought"]}, {"answer": "forget_me_drug", "hint": "synonyms for forget me drug", "clues": ["roofy", "rope", "roach", "circle", "rophy", "forget me drug"]}, {"answer": "fork", "hint": "synonyms for fork", "clues": ["crotch", "branching", "ramification", "forking"]}, {"answer": "forking", "hint": "synonyms for forking", "clues": ["ramification", "branching", "fork", "furcation"]}, {"answer": "form", "hint": "synonyms for form", "clues": ["word form", "contour", "strain", "kind", "cast", "configuration", "signifier", "variant", "manikin", "sort", "conformation", "var.", "variety", "class", "grade", "descriptor", "shape", "pattern", "course", "mannequin", "form"]}, {"answer": "formation", "hint": "synonyms for formation", "clues": ["geological formation", "constitution", "organization", "establishment", "shaping", "formation"]}, {"answer": "formula", "hint": "synonyms for formula", "clues": ["rule", "recipe", "chemical formula", "expression", "pattern", "convention", "normal", "formula"]}, {"answer": "formulation", "hint": "synonyms for formulation", "clues": ["preparation", "conceptualisation", "expression", "formulation"]}, {"answer": "forthrightness", "hint": "synonyms for forthrightness", "clues": ["frankness", "candour", "candidness", "directness", "forthrightness"]}, {"answer": "forties", "hint": "synonyms for forties", "clues": ["mid-forties", "forty", "1940s", "40", "forties"]}, {"answer": "forty_winks", "hint": "synonyms for forty winks", "clues": ["snooze", "cat sleep", "catnap", "short sleep", "nap", "forty winks"]}, {"answer": "forward_motion", "hint": "synonyms for forward motion", "clues": ["procession", "advancement", "onward motion", "progress", "advance"]}, {"answer": "forwardness", "hint": "synonyms for forwardness", "clues": ["bumptiousness", "cockiness", "zeal", "eagerness", "pushiness", "readiness", "forwardness"]}, {"answer": "fossil_oil", "hint": "synonyms for fossil oil", "clues": ["crude oil", "rock oil", "crude", "oil", "petroleum", "fossil oil"]}, {"answer": "fosterage", "hint": "synonyms for fosterage", "clues": ["bringing up", "upbringing", "breeding", "nurture", "raising", "rearing", "fostering", "fosterage"]}, {"answer": "fostering", "hint": "synonyms for fostering", "clues": ["bringing up", "fosterage", "upbringing", "breeding", "nurture", "raising", "rearing", "fostering"]}, {"answer": "foul-up", "hint": "synonyms for foul-up", "clues": ["fuckup", "bloomer", "flub", "pratfall", "blunder", "boo-boo", "bungle", "boner", "botch", "foul-up"]}, {"answer": "foul_shot", "hint": "synonyms for foul shot", "clues": ["penalty free throw", "charity shot", "free throw", "charity throw", "charity toss", "foul shot"]}, {"answer": "foulness", "hint": "synonyms for foulness", "clues": ["rankness", "stinkiness", "fetidness", "raininess", "malodorousness", "foulness"]}, {"answer": "foundation", "hint": "synonyms for foundation", "clues": ["foot", "foundation garment", "understructure", "innovation", "initiation", "origination", "base", "cornerstone", "introduction", "grounding", "instauration", "fundament", "groundwork", "basis", "creation", "founding", "institution", "substructure", "foundation"]}, {"answer": "founding", "hint": "synonyms for founding", "clues": ["foundation", "innovation", "initiation", "origination", "instauration", "creation", "institution", "introduction", "founding"]}, {"answer": "fount", "hint": "synonyms for fount", "clues": ["case", "typeface", "font", "face", "fountain"]}, {"answer": "fountain", "hint": "synonyms for fountain", "clues": ["natural spring", "outpouring", "outflow", "spring", "jet", "fount", "fountain"]}, {"answer": "fountainhead", "hint": "synonyms for fountainhead", "clues": ["headspring", "head", "well", "wellspring", "fountainhead"]}, {"answer": "foursome", "hint": "synonyms for foursome", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome"]}, {"answer": "fourth_part", "hint": "synonyms for fourth part", "clues": ["fourth", "quartern", "one-fourth", "twenty-five percent", "one-quarter", "fourth part"]}, {"answer": "foxiness", "hint": "synonyms for foxiness", "clues": ["wiliness", "craft", "guile", "slyness", "cunning", "craftiness", "foxiness"]}, {"answer": "foyer", "hint": "synonyms for foyer", "clues": ["anteroom", "vestibule", "hall", "antechamber", "entrance hall", "lobby", "foyer"]}, {"answer": "fracture", "hint": "synonyms for fracture", "clues": ["break", "geological fault", "fault", "shift", "crack", "fracture"]}, {"answer": "fragility", "hint": "synonyms for fragility", "clues": ["frangibility", "breakability", "frangibleness", "delicacy"]}, {"answer": "fragrance", "hint": "synonyms for fragrance", "clues": ["redolence", "perfume", "fragrancy", "bouquet", "scent", "sweetness", "aroma"]}, {"answer": "fragrancy", "hint": "synonyms for fragrancy", "clues": ["fragrance", "bouquet", "redolence", "sweetness"]}, {"answer": "frame", "hint": "synonyms for frame", "clues": ["inning", "skeletal frame", "underframe", "frame of reference", "skeleton", "framing", "frame"]}, {"answer": "frame_of_reference", "hint": "synonyms for frame of reference", "clues": ["coordinate system", "reference frame", "frame", "reference system", "frame of reference"]}, {"answer": "frankfurter", "hint": "synonyms for frankfurter", "clues": ["hotdog", "weenie", "dog", "frank", "wienerwurst", "wiener", "frankfurter"]}, {"answer": "frankness", "hint": "synonyms for frankness", "clues": ["candour", "outspokenness", "candidness", "directness", "forthrightness", "frankness"]}, {"answer": "fraud", "hint": "synonyms for fraud", "clues": ["dupery", "put-on", "humbug", "fraudulence", "hoax", "fraud"]}, {"answer": "fraudulence", "hint": "synonyms for fraudulence", "clues": ["put-on", "fraud", "dupery", "deceit", "duplicity", "humbug", "hoax", "fraudulence"]}, {"answer": "free_throw", "hint": "synonyms for free throw", "clues": ["foul shot", "penalty free throw", "charity shot", "charity throw", "charity toss", "free throw"]}, {"answer": "freeway", "hint": "synonyms for freeway", "clues": ["throughway", "state highway", "pike", "expressway", "superhighway", "motorway", "thruway", "freeway"]}, {"answer": "freight", "hint": "synonyms for freight", "clues": ["load", "consignment", "shipment", "freightage", "freight rate", "cargo", "lading", "payload", "freight"]}, {"answer": "frequency", "hint": "synonyms for frequency", "clues": ["absolute frequency", "frequence", "relative frequency", "oftenness"]}, {"answer": "freshness", "hint": "synonyms for freshness", "clues": ["insolence", "crust", "novelty", "impudence", "gall", "cheekiness", "impertinence", "freshness"]}, {"answer": "fretfulness", "hint": "synonyms for fretfulness", "clues": ["choler", "peevishness", "petulance", "fussiness", "crossness", "irritability", "fretfulness"]}, {"answer": "frigidity", "hint": "synonyms for frigidity", "clues": ["cold", "iciness", "frigidness", "coolness", "chilliness", "low temperature", "frigidity"]}, {"answer": "frigidness", "hint": "synonyms for frigidness", "clues": ["frigidity", "cold", "iciness", "coolness", "chilliness", "low temperature", "frigidness"]}, {"answer": "frill", "hint": "synonyms for frill", "clues": ["trumpery", "gimcrack", "flounce", "falderol", "furbelow", "folderal", "gimcrackery", "ruffle", "nonsense", "frill"]}, {"answer": "fringe", "hint": "synonyms for fringe", "clues": ["outer boundary", "interference fringe", "outskirt", "periphery", "fringe"]}, {"answer": "frisson", "hint": "synonyms for frisson", "clues": ["quiver", "shiver", "thrill", "shudder", "tingle", "chill", "frisson"]}, {"answer": "frivolity", "hint": "synonyms for frivolity", "clues": ["buffoonery", "prank", "bagatelle", "fluff", "frivolousness", "clowning", "frippery", "japery", "harlequinade", "frivolity"]}, {"answer": "frolic", "hint": "synonyms for frolic", "clues": ["gambol", "play", "romp", "caper", "frolic"]}, {"answer": "front_room", "hint": "synonyms for front room", "clues": ["parlour", "living room", "sitting room", "front room"]}, {"answer": "frontal_lobotomy", "hint": "synonyms for frontal lobotomy", "clues": ["prefrontal leukotomy", "leukotomy", "lobotomy", "frontal lobotomy"]}, {"answer": "frost", "hint": "synonyms for frost", "clues": ["freeze", "hoarfrost", "rime", "icing", "hoar", "frost"]}, {"answer": "frost_mist", "hint": "synonyms for frost mist", "clues": ["ice crystal", "frost snow", "diamond dust", "ice needle", "snow mist", "poudrin", "frost mist"]}, {"answer": "frost_snow", "hint": "synonyms for frost snow", "clues": ["ice crystal", "ice needle", "diamond dust", "snow mist", "poudrin", "frost mist", "frost snow"]}, {"answer": "fuck", "hint": "synonyms for fuck", "clues": ["roll in the hay", "nookie", "screw", "shtup", "piece of ass", "piece of tail", "shag", "ass", "nooky", "fucking"]}, {"answer": "fuckup", "hint": "synonyms for fuckup", "clues": ["bloomer", "flub", "pratfall", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch", "fuckup"]}, {"answer": "fuel-air_bomb", "hint": "synonyms for fuel-air bomb", "clues": ["aerosol bomb", "volume-detonation bomb", "thermobaric bomb", "vacuum bomb", "fuel-air bomb"]}, {"answer": "full_dress", "hint": "synonyms for full dress", "clues": ["white tie", "tail coat", "tails", "white tie and tails", "dress suit", "full dress"]}, {"answer": "full_point", "hint": "synonyms for full point", "clues": ["full stop", "point", "period", "stop", "full point"]}, {"answer": "full_stop", "hint": "synonyms for full stop", "clues": ["full point", "point", "period", "stop", "full stop"]}, {"answer": "fullness", "hint": "synonyms for fullness", "clues": ["voluminosity", "mellowness", "richness", "voluminousness", "fullness"]}, {"answer": "fulsomeness", "hint": "synonyms for fulsomeness", "clues": ["smarminess", "unctuousness", "unction", "oleaginousness", "smarm", "oiliness", "fulsomeness"]}, {"answer": "fumes", "hint": "synonyms for fumes", "clues": ["exhaust", "fume", "smoke", "exhaust fumes"]}, {"answer": "fun", "hint": "synonyms for fun", "clues": ["merriment", "play", "playfulness", "sport", "fun"]}, {"answer": "function", "hint": "synonyms for function", "clues": ["map", "use", "subroutine", "mathematical function", "subprogram", "purpose", "single-valued function", "mapping", "routine", "procedure", "social occasion", "office", "social function", "affair", "role", "part", "occasion", "function"]}, {"answer": "fund", "hint": "synonyms for fund", "clues": ["monetary fund", "investment firm", "investment company", "stock", "store", "investment trust", "fund"]}, {"answer": "fundament", "hint": "synonyms for fundament", "clues": ["foundation", "foot", "understructure", "base", "cornerstone", "basis", "groundwork", "substructure", "fundament"]}, {"answer": "fundamental_principle", "hint": "synonyms for fundamental principle", "clues": ["basics", "basic principle", "bedrock", "fundamentals", "fundamental principle"]}, {"answer": "fundamentals", "hint": "synonyms for fundamentals", "clues": ["basics", "fundamental principle", "fundamental", "first harmonic", "bedrock", "fundamental frequency", "basic principle"]}, {"answer": "funding", "hint": "synonyms for funding", "clues": ["support", "backing", "financial backing", "financing", "financial support", "funding"]}, {"answer": "funds", "hint": "synonyms for funds", "clues": ["fund", "monetary fund", "investment firm", "cash in hand", "store", "pecuniary resource", "finances", "monetary resource", "investment company", "stock", "investment trust"]}, {"answer": "funeral-residence", "hint": "synonyms for funeral-residence", "clues": ["funeral church", "funeral home", "funeral parlor", "funeral chapel", "funeral-residence"]}, {"answer": "funeral_chapel", "hint": "synonyms for funeral chapel", "clues": ["funeral-residence", "funeral church", "funeral home", "funeral parlor", "funeral chapel"]}, {"answer": "funeral_church", "hint": "synonyms for funeral church", "clues": ["funeral-residence", "funeral home", "funeral parlor", "funeral chapel", "funeral church"]}, {"answer": "funeral_home", "hint": "synonyms for funeral home", "clues": ["funeral-residence", "funeral church", "funeral parlor", "funeral chapel", "funeral home"]}, {"answer": "funeral_parlor", "hint": "synonyms for funeral parlor", "clues": ["funeral-residence", "funeral church", "funeral home", "funeral chapel", "funeral parlour"]}, {"answer": "funeral_parlour", "hint": "synonyms for funeral parlour", "clues": ["funeral-residence", "funeral church", "funeral home", "funeral parlor", "funeral chapel"]}, {"answer": "funfair", "hint": "synonyms for funfair", "clues": ["fair", "pleasure ground", "carnival", "amusement park", "funfair"]}, {"answer": "fungicide", "hint": "synonyms for fungicide", "clues": ["antifungal agent", "antimycotic agent", "antifungal", "antimycotic", "fungicide"]}, {"answer": "funnies", "hint": "synonyms for funnies", "clues": ["funny", "strip", "comic strip", "cartoon strip", "funny remark", "good story", "funny story", "funnies"]}, {"answer": "funny_farm", "hint": "synonyms for funny farm", "clues": ["sanatorium", "nut house", "loony bin", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "funny farm"]}, {"answer": "funny_house", "hint": "synonyms for funny house", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "funny house"]}, {"answer": "furiousness", "hint": "synonyms for furiousness", "clues": ["wildness", "fury", "ferocity", "vehemence", "violence", "fierceness", "furiousness"]}, {"answer": "furor", "hint": "synonyms for furor", "clues": ["rage", "fad", "furore", "craze", "cult"]}, {"answer": "furore", "hint": "synonyms for furore", "clues": ["furor", "rage", "fad", "craze", "cult"]}, {"answer": "furrow", "hint": "synonyms for furrow", "clues": ["line", "crease", "wrinkle", "seam", "furrow"]}, {"answer": "fury", "hint": "synonyms for fury", "clues": ["wildness", "ferocity", "violence", "fierceness", "rage", "furiousness", "vehemence", "madness", "fury"]}, {"answer": "fuse", "hint": "synonyms for fuse", "clues": ["safety fuse", "fuzee", "electrical fuse", "priming", "primer", "fusee"]}, {"answer": "fusee", "hint": "synonyms for fusee", "clues": ["fuse", "fuzee", "fusee drive", "priming", "primer"]}, {"answer": "fusion", "hint": "synonyms for fusion", "clues": ["optical fusion", "merger", "nuclear fusion", "spinal fusion", "unification", "nuclear fusion reaction", "fusion"]}, {"answer": "fuss", "hint": "synonyms for fuss", "clues": ["flurry", "stir", "ado", "hustle", "squabble", "trouble", "spat", "bickering", "pettifoggery", "tiff", "hassle", "bustle", "bother", "fuss"]}, {"answer": "fussiness", "hint": "synonyms for fussiness", "clues": ["choler", "peevishness", "petulance", "crossness", "fretfulness", "irritability", "fussiness"]}, {"answer": "fustian", "hint": "synonyms for fustian", "clues": ["rant", "bombast", "claptrap", "blah", "fustian"]}, {"answer": "fuze", "hint": "synonyms for fuze", "clues": ["fuse", "fuzee", "priming", "primer"]}, {"answer": "fuzee", "hint": "synonyms for fuzee", "clues": ["fuse", "priming", "primer", "fuze"]}, {"answer": "fuzziness", "hint": "synonyms for fuzziness", "clues": ["indistinctness", "blurriness", "fogginess", "softness", "fuzziness"]}, {"answer": "g", "hint": "synonyms for g", "clues": ["constant of gravitation", "thousand", "gigabyte", "universal gravitational constant", "thou", "chiliad", "gee", "1000", "guanine", "gramme", "gm", "grand", "one thousand", "deoxyguanosine monophosphate", "gram", "g-force", "gibibyte", "yard", "gravitational constant", "g"]}, {"answer": "gab", "hint": "synonyms for gab", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab"]}, {"answer": "gabardine", "hint": "synonyms for gabardine", "clues": ["duster", "flannel", "white", "dust coat", "tweed", "smock", "gaberdine"]}, {"answer": "gaberdine", "hint": "synonyms for gaberdine", "clues": ["smock", "duster", "gabardine", "dust coat"]}, {"answer": "gabfest", "hint": "synonyms for gabfest", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "tittle-tattle", "gab", "gabfest"]}, {"answer": "gadget", "hint": "synonyms for gadget", "clues": ["convenience", "gismo", "appliance", "gizmo", "contrivance", "contraption", "widget", "gadget"]}, {"answer": "gaffe", "hint": "synonyms for gaffe", "clues": ["gaucherie", "slip", "faux pas", "solecism", "gaffe"]}, {"answer": "gag", "hint": "synonyms for gag", "clues": ["joke", "muzzle", "jest", "jape", "laugh", "gag"]}, {"answer": "gage", "hint": "synonyms for gage", "clues": ["gauge", "dope", "green goddess", "skunk", "locoweed", "weed", "smoke", "sess", "grass", "sens", "pot"]}, {"answer": "gain", "hint": "synonyms for gain", "clues": ["addition", "increase", "amplification", "profit", "gain"]}, {"answer": "gall", "hint": "synonyms for gall", "clues": ["impudence", "rancour", "freshness", "insolence", "resentment", "bitterness", "cheekiness", "crust", "impertinence", "gall"]}, {"answer": "gallantry", "hint": "synonyms for gallantry", "clues": ["valour", "valiancy", "valorousness", "heroism", "chivalry", "politesse", "gallantry"]}, {"answer": "gallery", "hint": "synonyms for gallery", "clues": ["art gallery", "drift", "veranda", "heading", "picture gallery", "gallery"]}, {"answer": "gallimaufry", "hint": "synonyms for gallimaufry", "clues": ["oddments", "hodgepodge", "melange", "hotchpotch", "ragbag", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "gallimaufry"]}, {"answer": "galosh", "hint": "synonyms for galosh", "clues": ["golosh", "arctic", "gumshoe", "rubber", "galosh"]}, {"answer": "gambol", "hint": "synonyms for gambol", "clues": ["play", "romp", "frolic", "caper", "gambol"]}, {"answer": "gang", "hint": "synonyms for gang", "clues": ["bunch", "ring", "pack", "crew", "crowd", "mob", "work party", "gang"]}, {"answer": "gaol", "hint": "synonyms for gaol", "clues": ["clink", "jailhouse", "pokey", "jail", "slammer", "gaol"]}, {"answer": "gaolbreak", "hint": "synonyms for gaolbreak", "clues": ["break", "breakout", "prisonbreak", "jailbreak", "prison-breaking", "gaolbreak"]}, {"answer": "gap", "hint": "synonyms for gap", "clues": ["break", "interruption", "crack", "opening", "col", "disruption", "spread", "gap"]}, {"answer": "garbage", "hint": "synonyms for garbage", "clues": ["scraps", "refuse", "food waste", "drivel", "garbage"]}, {"answer": "garbage_can", "hint": "synonyms for garbage can", "clues": ["ashcan", "ash-bin", "trash barrel", "trash bin", "dustbin", "trash can", "wastebin", "garbage can"]}, {"answer": "garbage_dump", "hint": "synonyms for garbage dump", "clues": ["wasteyard", "rubbish dump", "dumpsite", "dump", "trash dump", "garbage dump"]}, {"answer": "garbage_heap", "hint": "synonyms for garbage heap", "clues": ["trash heap", "trash pile", "junk pile", "scrapheap", "refuse heap", "junk heap", "rubbish heap", "garbage heap"]}, {"answer": "garishness", "hint": "synonyms for garishness", "clues": ["gaudiness", "brashness", "tawdriness", "meretriciousness", "loudness", "flashiness", "glitz", "garishness"]}, {"answer": "garland", "hint": "synonyms for garland", "clues": ["coronal", "florilegium", "wreath", "lei", "chaplet", "miscellany", "garland"]}, {"answer": "garment_industry", "hint": "synonyms for garment industry", "clues": ["fashion industry", "apparel industry", "fashion business", "rag trade", "garment industry"]}, {"answer": "garrulity", "hint": "synonyms for garrulity", "clues": ["loquacity", "loquaciousness", "garrulousness", "talkativeness", "garrulity"]}, {"answer": "garrulousness", "hint": "synonyms for garrulousness", "clues": ["loquacity", "loquaciousness", "garrulity", "talkativeness", "garrulousness"]}, {"answer": "gas", "hint": "synonyms for gas", "clues": ["accelerator pedal", "petrol", "gasolene", "accelerator", "natural gas", "gun", "gas pedal", "throttle", "gas"]}, {"answer": "gas_pedal", "hint": "synonyms for gas pedal", "clues": ["accelerator pedal", "gun", "gas", "accelerator", "throttle", "gas pedal"]}, {"answer": "gasconade", "hint": "synonyms for gasconade", "clues": ["crow", "vaporing", "line-shooting", "bragging", "brag", "gasconade"]}, {"answer": "gaucherie", "hint": "synonyms for gaucherie", "clues": ["faux pas", "rusticity", "gaffe", "slip", "solecism", "gaucherie"]}, {"answer": "gaud", "hint": "synonyms for gaud", "clues": ["bangle", "trinket", "novelty", "fallal", "gewgaw", "bauble", "gaud"]}, {"answer": "gaudiness", "hint": "synonyms for gaudiness", "clues": ["brashness", "tawdriness", "meretriciousness", "loudness", "flashiness", "garishness", "glitz", "gaudiness"]}, {"answer": "gauge", "hint": "synonyms for gauge", "clues": ["gage", "calibre", "standard of measurement", "bore"]}, {"answer": "gauntness", "hint": "synonyms for gauntness", "clues": ["boniness", "maceration", "emaciation", "gauntness"]}, {"answer": "gayness", "hint": "synonyms for gayness", "clues": ["queerness", "homosexuality", "homosexualism", "homoeroticism", "gayness"]}, {"answer": "gb", "hint": "synonyms for gb", "clues": ["gigabyte", "gibibyte", "gilbert", "sarin", "gigabit", "gb"]}, {"answer": "gear", "hint": "synonyms for gear", "clues": ["gear wheel", "train", "paraphernalia", "geartrain", "cogwheel", "gear mechanism", "gearing", "power train", "appurtenance"]}, {"answer": "gearing", "hint": "synonyms for gearing", "clues": ["gear", "train", "geartrain", "power train"]}, {"answer": "geartrain", "hint": "synonyms for geartrain", "clues": ["gear", "train", "power train", "geartrain"]}, {"answer": "geezerhood", "hint": "synonyms for geezerhood", "clues": ["years", "age", "old age", "eld", "geezerhood"]}, {"answer": "gelt", "hint": "synonyms for gelt", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "wampum", "cabbage", "bread", "loot", "dough", "gelt"]}, {"answer": "gem", "hint": "synonyms for gem", "clues": ["treasure", "stone", "precious stone", "jewel", "gemstone", "muffin", "gem"]}, {"answer": "general_assembly", "hint": "synonyms for general assembly", "clues": ["law-makers", "legislative assembly", "legislature", "legislative body", "general assembly"]}, {"answer": "generalisation", "hint": "synonyms for generalisation", "clues": ["induction", "stimulus generalisation", "inductive reasoning", "abstraction", "generalization", "generality"]}, {"answer": "generalization", "hint": "synonyms for generalization", "clues": ["induction", "stimulus generalisation", "inductive reasoning", "abstraction", "generality", "generalisation"]}, {"answer": "generation", "hint": "synonyms for generation", "clues": ["genesis", "coevals", "multiplication", "propagation", "contemporaries", "generation"]}, {"answer": "geniality", "hint": "synonyms for geniality", "clues": ["affableness", "amiableness", "affability", "bonhomie", "amiability", "geniality"]}, {"answer": "genre", "hint": "synonyms for genre", "clues": ["musical style", "literary genre", "writing style", "music genre", "genre"]}, {"answer": "geographical_mile", "hint": "synonyms for geographical mile", "clues": ["mi", "naut mi", "nautical mile", "mile", "geographical mile"]}, {"answer": "geological_fault", "hint": "synonyms for geological fault", "clues": ["break", "fault", "shift", "fracture", "geological fault"]}, {"answer": "georgia_home_boy", "hint": "synonyms for georgia home boy", "clues": ["liquid ecstasy", "easy lay", "scoop", "grievous bodily harm", "max", "soap", "goop", "georgia home boy"]}, {"answer": "get-go", "hint": "synonyms for get-go", "clues": ["offset", "kickoff", "start", "beginning", "starting time", "outset", "showtime", "commencement", "first", "get-go"]}, {"answer": "gewgaw", "hint": "synonyms for gewgaw", "clues": ["bangle", "trinket", "novelty", "gaud", "fallal", "bauble", "gewgaw"]}, {"answer": "ghost", "hint": "synonyms for ghost", "clues": ["shade", "wraith", "spook", "touch", "spectre", "trace", "ghost"]}, {"answer": "gibbosity", "hint": "synonyms for gibbosity", "clues": ["protuberance", "hump", "jut", "swelling", "gibbousness", "bump", "prominence", "protrusion", "bulge", "excrescence", "extrusion", "gibbosity"]}, {"answer": "gibbousness", "hint": "synonyms for gibbousness", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "bump", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "gibbousness"]}, {"answer": "gibe", "hint": "synonyms for gibe", "clues": ["slam", "barb", "shot", "jibe", "dig", "shaft", "gibe"]}, {"answer": "gift", "hint": "synonyms for gift", "clues": ["endowment", "giving", "talent", "natural endowment", "gift"]}, {"answer": "gig", "hint": "synonyms for gig", "clues": ["spear", "lance", "fishgig", "fizgig", "gig"]}, {"answer": "gild", "hint": "synonyms for gild", "clues": ["social club", "society", "guild", "club", "order", "lodge"]}, {"answer": "gimcrackery", "hint": "synonyms for gimcrackery", "clues": ["trumpery", "nonsense", "gimcrack", "falderol", "frill", "folderal", "gimcrackery"]}, {"answer": "gimmick", "hint": "synonyms for gimmick", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "twist", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "catch", "device", "gimmick"]}, {"answer": "gin", "hint": "synonyms for gin", "clues": ["cotton gin", "gin rummy", "knock rummy", "snare", "noose", "gin"]}, {"answer": "gin_mill", "hint": "synonyms for gin mill", "clues": ["pothouse", "taphouse", "saloon", "pub", "public house", "gin mill"]}, {"answer": "ginmill", "hint": "synonyms for ginmill", "clues": ["barroom", "saloon", "bar", "taproom", "ginmill"]}, {"answer": "girdle", "hint": "synonyms for girdle", "clues": ["sash", "waistcloth", "stays", "corset", "cincture", "waistband", "girdle"]}, {"answer": "gismo", "hint": "synonyms for gismo", "clues": ["appliance", "gubbins", "doojigger", "contrivance", "thingummy", "thingamajig", "gimmick", "widget", "convenience", "doodad", "gizmo", "gadget", "whatchamacallit", "thingamabob", "contraption", "doohickey", "whatsis", "gismo"]}, {"answer": "gist", "hint": "synonyms for gist", "clues": ["essence", "burden", "center", "effect", "centre", "heart", "sum", "marrow", "substance", "meat", "nub", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "core", "gist"]}, {"answer": "give-and-take", "hint": "synonyms for give-and-take", "clues": ["interchange", "banter", "discussion", "reciprocation", "raillery", "backchat", "word", "give-and-take"]}, {"answer": "gizmo", "hint": "synonyms for gizmo", "clues": ["gismo", "appliance", "gubbins", "doojigger", "contrivance", "thingummy", "thingamajig", "gimmick", "widget", "convenience", "doodad", "gadget", "whatchamacallit", "thingamabob", "contraption", "doohickey", "whatsis", "gizmo"]}, {"answer": "glass", "hint": "synonyms for glass", "clues": ["ice", "chalk", "glassful", "looking glass", "trash", "field glass", "spyglass", "shabu", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "drinking glass", "glass"]}, {"answer": "glasses", "hint": "synonyms for glasses", "clues": ["glass", "field glass", "spyglass", "shabu", "methamphetamine", "eyeglasses", "chicken feed", "meth", "methamphetamine hydrochloride", "drinking glass", "ice", "chalk", "glassful", "specs", "looking glass", "trash", "spectacles", "crank", "deoxyephedrine"]}, {"answer": "gleam", "hint": "synonyms for gleam", "clues": ["gleaming", "lambency", "glimmer", "glow"]}, {"answer": "glee", "hint": "synonyms for glee", "clues": ["mirth", "hilarity", "gleefulness", "gloat", "mirthfulness", "glee"]}, {"answer": "gleefulness", "hint": "synonyms for gleefulness", "clues": ["mirth", "hilarity", "glee", "mirthfulness", "gleefulness"]}, {"answer": "glide", "hint": "synonyms for glide", "clues": ["coast", "sailing", "soaring", "slide", "sailplaning", "semivowel", "gliding", "glide"]}, {"answer": "gliding", "hint": "synonyms for gliding", "clues": ["sailing", "sailplaning", "glide", "soaring", "gliding"]}, {"answer": "glimmer", "hint": "synonyms for glimmer", "clues": ["intimation", "gleaming", "inkling", "glimmering"]}, {"answer": "glister", "hint": "synonyms for glister", "clues": ["scintillation", "sparkle", "glisten", "glitter"]}, {"answer": "glitter", "hint": "synonyms for glitter", "clues": ["glister", "scintillation", "sparkle", "coruscation"]}, {"answer": "glitz", "hint": "synonyms for glitz", "clues": ["gaudiness", "brashness", "tawdriness", "meretriciousness", "flashiness", "garishness", "loudness", "glitz"]}, {"answer": "gloam", "hint": "synonyms for gloam", "clues": ["dusk", "twilight", "fall", "crepuscule", "gloaming", "evenfall", "nightfall"]}, {"answer": "gloaming", "hint": "synonyms for gloaming", "clues": ["dusk", "twilight", "fall", "gloam", "crepuscule", "nightfall", "evenfall"]}, {"answer": "glob", "hint": "synonyms for glob", "clues": ["chunk", "clod", "ball", "lump", "glob"]}, {"answer": "globe", "hint": "synonyms for globe", "clues": ["ball", "earth", "orb", "world", "globe"]}, {"answer": "globosity", "hint": "synonyms for globosity", "clues": ["rotundness", "sphericalness", "sphericity", "globularness", "rotundity", "globosity"]}, {"answer": "globularness", "hint": "synonyms for globularness", "clues": ["rotundness", "sphericalness", "globosity", "sphericity", "rotundity", "globularness"]}, {"answer": "gloominess", "hint": "synonyms for gloominess", "clues": ["gloom", "lugubriousness", "sombreness", "sadness", "gloominess"]}, {"answer": "gloriole", "hint": "synonyms for gloriole", "clues": ["nimbus", "aureole", "aura", "glory", "halo", "gloriole"]}, {"answer": "glory", "hint": "synonyms for glory", "clues": ["nimbus", "resplendency", "aureole", "aura", "halo", "gloriole", "glory"]}, {"answer": "gloss", "hint": "synonyms for gloss", "clues": ["polish", "colour", "semblance", "glossiness", "burnish", "glossary", "rubric", "gloss"]}, {"answer": "glove", "hint": "synonyms for glove", "clues": ["baseball mitt", "boxing glove", "mitt", "baseball glove", "glove"]}, {"answer": "glow", "hint": "synonyms for glow", "clues": ["gleaming", "lambency", "luminescence", "glowing", "incandescence", "radiance"]}, {"answer": "glueyness", "hint": "synonyms for glueyness", "clues": ["ropiness", "tackiness", "gluiness", "viscidness", "viscidity", "cohesiveness", "gumminess", "glueyness"]}, {"answer": "gluiness", "hint": "synonyms for gluiness", "clues": ["ropiness", "glueyness", "tackiness", "viscidness", "viscidity", "cohesiveness", "gumminess", "gluiness"]}, {"answer": "glycol", "hint": "synonyms for glycol", "clues": ["diol", "dihydric alcohol", "ethylene glycol", "ethanediol", "glycol"]}, {"answer": "go-ahead", "hint": "synonyms for go-ahead", "clues": ["green light", "enterprise", "enterprisingness", "initiative", "go-ahead"]}, {"answer": "go-cart", "hint": "synonyms for go-cart", "clues": ["pusher", "carriage", "cart", "perambulator", "baby-walker", "handcart", "baby carriage", "pram", "pushcart", "stroller", "pushchair", "baby buggy", "walker", "go-cart"]}, {"answer": "goad", "hint": "synonyms for goad", "clues": ["prod", "spur", "spurring", "prodding", "goading", "urging"]}, {"answer": "goading", "hint": "synonyms for goading", "clues": ["prod", "goad", "spur", "spurring", "prodding", "urging"]}, {"answer": "gobs", "hint": "synonyms for gobs", "clues": ["lots", "scads", "slews", "loads", "lashings", "oodles", "wads", "tons", "rafts", "scores", "heaps", "stacks", "gob", "dozens", "piles"]}, {"answer": "godsend", "hint": "synonyms for godsend", "clues": ["gold rush", "manna from heaven", "gravy", "bonanza", "boom", "windfall", "bunce", "godsend"]}, {"answer": "goggle_box", "hint": "synonyms for goggle box", "clues": ["television set", "tv", "telly", "television receiver", "idiot box", "tv set", "television", "boob tube", "goggle box"]}, {"answer": "going-over", "hint": "synonyms for going-over", "clues": ["dressing down", "chewing out", "bawling out", "earful", "castigation", "upbraiding", "going-over"]}, {"answer": "gold_rush", "hint": "synonyms for gold rush", "clues": ["manna from heaven", "gravy", "bonanza", "boom", "windfall", "bunce", "godsend", "gold rush"]}, {"answer": "goldbricking", "hint": "synonyms for goldbricking", "clues": ["soldiering", "shirking", "goofing off", "slacking", "goldbricking"]}, {"answer": "golosh", "hint": "synonyms for golosh", "clues": ["arctic", "rubber", "gumshoe", "galosh", "golosh"]}, {"answer": "goo", "hint": "synonyms for goo", "clues": ["sludge", "guck", "goop", "gook", "slime", "ooze", "muck", "gunk"]}, {"answer": "goober", "hint": "synonyms for goober", "clues": ["earthnut", "peanut", "monkey nut", "goober pea", "groundnut", "goober"]}, {"answer": "goober_pea", "hint": "synonyms for goober pea", "clues": ["earthnut", "goober", "monkey nut", "peanut", "groundnut", "goober pea"]}, {"answer": "good-by", "hint": "synonyms for good-by", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir"]}, {"answer": "good-bye", "hint": "synonyms for good-bye", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "adieu", "bye-bye", "adios", "goodbye", "so long", "sayonara", "au revoir"]}, {"answer": "good_day", "hint": "synonyms for good day", "clues": ["bye", "auf wiedersehen", "cheerio", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir", "good day"]}, {"answer": "good_deal", "hint": "synonyms for good deal", "clues": ["slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "good deal"]}, {"answer": "good_luck", "hint": "synonyms for good luck", "clues": ["break", "fluke", "good fortune", "happy chance", "good luck"]}, {"answer": "good_sense", "hint": "synonyms for good sense", "clues": ["mother wit", "horse sense", "sense", "common sense", "gumption", "good sense"]}, {"answer": "goodby", "hint": "synonyms for goodby", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir"]}, {"answer": "goodbye", "hint": "synonyms for goodbye", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "sayonara", "au revoir"]}, {"answer": "goody", "hint": "synonyms for goody", "clues": ["treat", "kickshaw", "dainty", "delicacy", "goody"]}, {"answer": "goofing_off", "hint": "synonyms for goofing off", "clues": ["goldbricking", "soldiering", "shirking", "slacking", "goofing off"]}, {"answer": "gook", "hint": "synonyms for gook", "clues": ["sludge", "guck", "goop", "slime", "ooze", "muck", "gunk", "gook"]}, {"answer": "goop", "hint": "synonyms for goop", "clues": ["sludge", "guck", "max", "gook", "slime", "liquid ecstasy", "easy lay", "scoop", "grievous bodily harm", "ooze", "muck", "soap", "gunk", "goop"]}, {"answer": "goose_bump", "hint": "synonyms for goose bump", "clues": ["goosebump", "pilomotor reflex", "gooseflesh", "horripilation", "goose skin", "goose pimple"]}, {"answer": "goose_egg", "hint": "synonyms for goose egg", "clues": ["zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing", "goose egg"]}, {"answer": "goose_pimple", "hint": "synonyms for goose pimple", "clues": ["goose skin", "goosebump", "pilomotor reflex", "gooseflesh", "horripilation", "goose pimple"]}, {"answer": "goose_skin", "hint": "synonyms for goose skin", "clues": ["goosebump", "pilomotor reflex", "gooseflesh", "horripilation", "goose pimple", "goose skin"]}, {"answer": "goosebump", "hint": "synonyms for goosebump", "clues": ["goose skin", "pilomotor reflex", "gooseflesh", "horripilation", "goose bump", "goose pimple"]}, {"answer": "gooseflesh", "hint": "synonyms for gooseflesh", "clues": ["goose skin", "goosebump", "pilomotor reflex", "horripilation", "goose pimple", "gooseflesh"]}, {"answer": "gospel", "hint": "synonyms for gospel", "clues": ["gospel truth", "creed", "church doctrine", "evangel", "gospel singing", "religious doctrine", "gospel"]}, {"answer": "gospels", "hint": "synonyms for gospels", "clues": ["gospel truth", "creed", "church doctrine", "evangel", "gospel singing", "religious doctrine", "gospel"]}, {"answer": "gossip", "hint": "synonyms for gossip", "clues": ["small talk", "chin-wagging", "chitchat", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab", "comment", "scuttlebutt", "gossip"]}, {"answer": "governance", "hint": "synonyms for governance", "clues": ["administration", "organization", "establishment", "governing body", "governing", "brass", "government", "government activity", "governance"]}, {"answer": "governing_body", "hint": "synonyms for governing body", "clues": ["administration", "governance", "organization", "brass", "establishment", "governing body"]}, {"answer": "government", "hint": "synonyms for government", "clues": ["administration", "authorities", "governance", "governing", "political science", "politics", "regime", "government activity", "government"]}, {"answer": "government_activity", "hint": "synonyms for government activity", "clues": ["administration", "governance", "governing", "government", "government activity"]}, {"answer": "government_agency", "hint": "synonyms for government agency", "clues": ["federal agency", "office", "agency", "bureau", "authority", "government agency"]}, {"answer": "government_note", "hint": "synonyms for government note", "clues": ["bill", "banker's bill", "bank note", "note", "greenback", "bank bill", "government note"]}, {"answer": "gown", "hint": "synonyms for gown", "clues": ["night-robe", "robe", "surgical gown", "nightie", "nightdress", "nightgown", "scrubs", "gown"]}, {"answer": "grace", "hint": "synonyms for grace", "clues": ["good will", "free grace", "blessing", "gracility", "seemliness", "grace of God", "thanksgiving", "grace"]}, {"answer": "gracelessness", "hint": "synonyms for gracelessness", "clues": ["ungracefulness", "stiffness", "awkwardness", "clumsiness", "gracelessness"]}, {"answer": "grade", "hint": "synonyms for grade", "clues": ["form", "ground level", "gradation", "score", "level", "grad", "degree", "class", "mark", "course"]}, {"answer": "grading", "hint": "synonyms for grading", "clues": ["scoring", "marking", "leveling", "scaling", "grading"]}, {"answer": "graduation", "hint": "synonyms for graduation", "clues": ["gradation", "commencement exercise", "commencement", "graduation exercise", "commencement ceremony"]}, {"answer": "graduation_exercise", "hint": "synonyms for graduation exercise", "clues": ["commencement exercise", "commencement", "graduation", "commencement ceremony", "graduation exercise"]}, {"answer": "grain", "hint": "synonyms for grain", "clues": ["metric grain", "food grain", "texture", "cereal", "grain"]}, {"answer": "grandeur", "hint": "synonyms for grandeur", "clues": ["nobility", "magnanimousness", "magnificence", "brilliance", "splendor", "grandness", "nobleness", "grandeur"]}, {"answer": "grandiloquence", "hint": "synonyms for grandiloquence", "clues": ["rhetoric", "ornateness", "magniloquence", "grandiosity", "grandiloquence"]}, {"answer": "grandiosity", "hint": "synonyms for grandiosity", "clues": ["rhetoric", "ornateness", "grandiloquence", "magniloquence", "grandiosity"]}, {"answer": "grandness", "hint": "synonyms for grandness", "clues": ["wideness", "grandeur", "brilliance", "immenseness", "splendour", "vastness", "sizeableness", "richness", "impressiveness", "enormousness", "magnificence", "immensity", "greatness", "grandness"]}, {"answer": "grant", "hint": "synonyms for grant", "clues": ["concession", "subsidization", "assignment", "grant"]}, {"answer": "graphics", "hint": "synonyms for graphics", "clues": ["art", "computer graphic", "nontextual matter", "graphic", "artwork"]}, {"answer": "grapnel", "hint": "synonyms for grapnel", "clues": ["grapnel anchor", "grapple", "grappling hook", "grappling iron", "grapnel"]}, {"answer": "grapple", "hint": "synonyms for grapple", "clues": ["hand-to-hand struggle", "grappling", "grappling hook", "grappling iron", "grapnel", "wrestle", "wrestling", "clamshell", "grappler"]}, {"answer": "grappler", "hint": "synonyms for grappler", "clues": ["grappling hook", "grapnel", "grapple", "grappling iron"]}, {"answer": "grappling", "hint": "synonyms for grappling", "clues": ["wrestling", "hand-to-hand struggle", "grapple", "rassling", "wrestle", "grappling"]}, {"answer": "grappling_hook", "hint": "synonyms for grappling hook", "clues": ["grappler", "grapnel", "grappling iron", "grappling hook"]}, {"answer": "grappling_iron", "hint": "synonyms for grappling iron", "clues": ["grappler", "grappling hook", "grapnel", "grappling iron"]}, {"answer": "grasp", "hint": "synonyms for grasp", "clues": ["grip", "clutch", "compass", "reach", "clasp", "appreciation", "range", "hold", "clench", "grasp"]}, {"answer": "grass", "hint": "synonyms for grass", "clues": ["forage", "dope", "green goddess", "pasture", "skunk", "locoweed", "gage", "weed", "smoke", "eatage", "sess", "sens", "pot", "grass"]}, {"answer": "gratuity", "hint": "synonyms for gratuity", "clues": ["bakshis", "tip", "pourboire", "backsheesh", "gratuity"]}, {"answer": "graveness", "hint": "synonyms for graveness", "clues": ["gravity", "sobriety", "sombreness", "soberness", "graveness"]}, {"answer": "graveyard", "hint": "synonyms for graveyard", "clues": ["burial ground", "burying ground", "necropolis", "cemetery", "memorial park", "burial site", "graveyard"]}, {"answer": "gravity", "hint": "synonyms for gravity", "clues": ["graveness", "gravitational force", "gravitational attraction", "sombreness", "soberness", "solemnity", "sobriety", "gravitation", "gravity"]}, {"answer": "gravure", "hint": "synonyms for gravure", "clues": ["intaglio printing", "intaglio", "heliogravure", "photogravure", "gravure"]}, {"answer": "gravy", "hint": "synonyms for gravy", "clues": ["manna from heaven", "bonanza", "godsend", "pan gravy", "windfall", "gold rush", "boom", "bunce", "gravy"]}, {"answer": "grazing_land", "hint": "synonyms for grazing land", "clues": ["lea", "pastureland", "ley", "pasture", "grazing land"]}, {"answer": "great_deal", "hint": "synonyms for great deal", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "great deal"]}, {"answer": "great_power", "hint": "synonyms for great power", "clues": ["world power", "power", "major power", "superpower", "great power"]}, {"answer": "greatness", "hint": "synonyms for greatness", "clues": ["wideness", "immenseness", "illustriousness", "grandness", "sizeableness", "vastness", "enormousness", "immensity", "greatness"]}, {"answer": "greed", "hint": "synonyms for greed", "clues": ["covetousness", "avaritia", "avarice", "rapacity", "greed"]}, {"answer": "greediness", "hint": "synonyms for greediness", "clues": ["voraciousness", "piggishness", "hoggishness", "rapaciousness", "greediness"]}, {"answer": "green_goddess", "hint": "synonyms for green goddess", "clues": ["dope", "skunk", "locoweed", "gage", "weed", "smoke", "sess", "grass", "sens", "pot", "green goddess"]}, {"answer": "greenback", "hint": "synonyms for greenback", "clues": ["bill", "banker's bill", "bank note", "note", "bank bill", "government note", "greenback"]}, {"answer": "greenish_blue", "hint": "synonyms for greenish blue", "clues": ["aqua", "cobalt blue", "peacock blue", "turquoise", "aquamarine", "greenish blue"]}, {"answer": "greenness", "hint": "synonyms for greenness", "clues": ["green", "viridity", "verdancy", "verdure", "greenness"]}, {"answer": "greens", "hint": "synonyms for greens", "clues": ["jet", "green", "super C", "super acid", "commons", "leafy vegetable", "putting green", "viridity", "park", "putting surface", "greenness", "special K", "cat valium", "honey oil"]}, {"answer": "grid", "hint": "synonyms for grid", "clues": ["power grid", "power system", "control grid", "storage-battery grid", "gridiron", "grid"]}, {"answer": "griddlecake", "hint": "synonyms for griddlecake", "clues": ["hotcake", "pancake", "flapjack", "flapcake", "flannel-cake", "drop scone", "battercake", "griddlecake"]}, {"answer": "grief", "hint": "synonyms for grief", "clues": ["sorrow", "heartbreak", "heartache", "brokenheartedness", "grief"]}, {"answer": "grievous_bodily_harm", "hint": "synonyms for grievous bodily harm", "clues": ["liquid ecstasy", "easy lay", "scoop", "max", "soap", "goop", "grievous bodily harm"]}, {"answer": "grille", "hint": "synonyms for grille", "clues": ["lattice", "radiator grille", "wicket", "grillwork", "grill"]}, {"answer": "grimness", "hint": "synonyms for grimness", "clues": ["hardship", "rigor", "luridness", "rigourousness", "ghastliness", "severeness", "severity", "gruesomeness", "asperity", "grimness"]}, {"answer": "grind", "hint": "synonyms for grind", "clues": ["plodding", "mill", "pulverization", "donkeywork", "drudgery", "grind"]}, {"answer": "grind_organ", "hint": "synonyms for grind organ", "clues": ["street organ", "hurdy-gurdy", "barrel organ", "hand organ", "grind organ"]}, {"answer": "grinder", "hint": "synonyms for grinder", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "milling machinery", "mill", "poor boy", "submarine", "bomber", "submarine sandwich", "hero", "hero sandwich", "sub", "grinder"]}, {"answer": "grip", "hint": "synonyms for grip", "clues": ["handgrip", "clutch", "handle", "travelling bag", "bag", "suitcase", "traction", "clasp", "hairgrip", "adhesive friction", "grasp", "hold", "clench", "bobby pin", "grip"]}, {"answer": "gripe", "hint": "synonyms for gripe", "clues": ["kick", "bitch", "squawk", "beef", "gripe"]}, {"answer": "gripes", "hint": "synonyms for gripes", "clues": ["kick", "squawk", "beef", "bitch", "gripe"]}, {"answer": "grit", "hint": "synonyms for grit", "clues": ["sand", "gritstone", "backbone", "moxie", "guts", "gumption", "gritrock", "grit"]}, {"answer": "grits", "hint": "synonyms for grits", "clues": ["hominy grits", "backbone", "moxie", "grit", "guts", "gumption", "sand", "gritstone", "gritrock"]}, {"answer": "grocery", "hint": "synonyms for grocery", "clues": ["food market", "market", "foodstuff", "grocery store", "grocery"]}, {"answer": "groin", "hint": "synonyms for groin", "clues": ["bulwark", "breakwater", "groyne", "mole", "seawall", "jetty", "groin"]}, {"answer": "grommet", "hint": "synonyms for grommet", "clues": ["eyelet", "loop", "cringle", "grummet"]}, {"answer": "grossness", "hint": "synonyms for grossness", "clues": ["vulgarity", "commonness", "raunch", "vulgarism", "coarseness", "grossness"]}, {"answer": "ground", "hint": "synonyms for ground", "clues": ["priming coat", "soil", "primer", "footing", "priming", "background", "flat coat", "terra firma", "dry land", "earth", "reason", "undercoat", "basis", "land", "primer coat", "solid ground", "ground"]}, {"answer": "groundnut", "hint": "synonyms for groundnut", "clues": ["wild bean", "earthnut", "peanut", "goober", "monkey nut", "goober pea", "potato bean", "groundnut"]}, {"answer": "grounds", "hint": "synonyms for grounds", "clues": ["primer", "priming", "background", "cause", "terra firma", "earth", "undercoat", "flat coat", "ground", "soil", "priming coat", "footing", "evidence", "curtilage", "reason", "dry land", "basis", "land", "yard", "primer coat", "solid ground"]}, {"answer": "groundwork", "hint": "synonyms for groundwork", "clues": ["foundation", "foot", "understructure", "base", "cornerstone", "fundament", "basis", "substructure", "groundwork"]}, {"answer": "group", "hint": "synonyms for group", "clues": ["mathematical group", "radical", "grouping", "chemical group"]}, {"answer": "groves", "hint": "synonyms for groves", "clues": ["orchard", "woodlet", "plantation", "grove"]}, {"answer": "growth", "hint": "synonyms for growth", "clues": ["ontogeny", "maturation", "growing", "emergence", "ontogenesis", "outgrowth", "increase", "development", "increment", "growth"]}, {"answer": "groyne", "hint": "synonyms for groyne", "clues": ["bulwark", "breakwater", "groin", "mole", "seawall", "jetty", "groyne"]}, {"answer": "gruffness", "hint": "synonyms for gruffness", "clues": ["abruptness", "hoarseness", "brusqueness", "shortness", "curtness", "huskiness", "gruffness"]}, {"answer": "grumble", "hint": "synonyms for grumble", "clues": ["rumble", "grumbling", "murmuring", "muttering"]}, {"answer": "grummet", "hint": "synonyms for grummet", "clues": ["grommet", "eyelet", "loop", "cringle"]}, {"answer": "gsr", "hint": "synonyms for gsr", "clues": ["psychogalvanic response", "galvanic skin response", "electrodermal response", "electrical skin response", "gsr"]}, {"answer": "guarantee", "hint": "synonyms for guarantee", "clues": ["warranty", "guaranty", "warrantee", "guarantee"]}, {"answer": "guard", "hint": "synonyms for guard", "clues": ["precaution", "sentry duty", "sentry go", "safety device", "guard duty", "safeguard", "safety", "guard"]}, {"answer": "guardianship", "hint": "synonyms for guardianship", "clues": ["tutelage", "charge", "keeping", "care", "safekeeping", "guardianship"]}, {"answer": "gubbins", "hint": "synonyms for gubbins", "clues": ["gismo", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "gubbins"]}, {"answer": "guck", "hint": "synonyms for guck", "clues": ["sludge", "goop", "gook", "slime", "ooze", "muck", "gunk", "guck"]}, {"answer": "guess", "hint": "synonyms for guess", "clues": ["hypothesis", "dead reckoning", "speculation", "surmise", "guesswork", "conjecture", "shot", "guessing", "surmisal", "supposition"]}, {"answer": "guessing", "hint": "synonyms for guessing", "clues": ["dead reckoning", "guess", "shot", "guesswork"]}, {"answer": "guesswork", "hint": "synonyms for guesswork", "clues": ["dead reckoning", "guess", "shot", "guesswork"]}, {"answer": "guff", "hint": "synonyms for guff", "clues": ["rot", "buncombe", "bunk", "hogwash", "bunkum", "guff"]}, {"answer": "guidance", "hint": "synonyms for guidance", "clues": ["direction", "counseling", "steering", "guidance"]}, {"answer": "guild", "hint": "synonyms for guild", "clues": ["social club", "society", "gild", "club", "order", "lodge"]}, {"answer": "guile", "hint": "synonyms for guile", "clues": ["craft", "deceitfulness", "slyness", "trickery", "craftiness", "wile", "chicanery", "wiliness", "shenanigan", "cunning", "foxiness", "guile"]}, {"answer": "gulp", "hint": "synonyms for gulp", "clues": ["swig", "draught", "gulping", "draft"]}, {"answer": "gum_accroides", "hint": "synonyms for gum accroides", "clues": ["acaroid resin", "accroides gum", "accroides", "gum accroides"]}, {"answer": "gum_benjamin", "hint": "synonyms for gum benjamin", "clues": ["benjamin", "gum benzoin", "asa dulcis", "benzoin", "gum benjamin"]}, {"answer": "gum_benzoin", "hint": "synonyms for gum benzoin", "clues": ["benjamin", "gum benjamin", "asa dulcis", "benzoin", "gum benzoin"]}, {"answer": "gumminess", "hint": "synonyms for gumminess", "clues": ["ropiness", "glueyness", "tackiness", "gluiness", "viscidness", "viscidity", "cohesiveness", "gumminess"]}, {"answer": "gumption", "hint": "synonyms for gumption", "clues": ["mother wit", "good sense", "horse sense", "backbone", "moxie", "grit", "guts", "sand", "sense", "common sense", "gumption"]}, {"answer": "gumshoe", "hint": "synonyms for gumshoe", "clues": ["golosh", "arctic", "rubber", "galosh", "gumshoe"]}, {"answer": "gun", "hint": "synonyms for gun", "clues": ["heavy weapon", "artillery", "accelerator pedal", "gas", "ordnance", "grease-gun", "accelerator", "gas pedal", "throttle", "gun"]}, {"answer": "gunk", "hint": "synonyms for gunk", "clues": ["sludge", "guck", "goop", "gook", "slime", "ooze", "muck", "gunk"]}, {"answer": "gush", "hint": "synonyms for gush", "clues": ["effusion", "outpouring", "outburst", "blowup", "flush", "ebullition", "gush"]}, {"answer": "gustatory_perception", "hint": "synonyms for gustatory perception", "clues": ["taste sensation", "taste", "taste perception", "gustatory sensation", "gustatory perception"]}, {"answer": "gustatory_sensation", "hint": "synonyms for gustatory sensation", "clues": ["taste sensation", "taste", "taste perception", "gustatory perception", "gustatory sensation"]}, {"answer": "guts", "hint": "synonyms for guts", "clues": ["sand", "gut", "backbone", "moxie", "catgut", "grit", "gumption"]}, {"answer": "gymnasium", "hint": "synonyms for gymnasium", "clues": ["lycee", "gym", "secondary school", "lyceum", "middle school", "gymnasium"]}, {"answer": "gyp", "hint": "synonyms for gyp", "clues": ["bunco", "bunko game", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick", "gyp"]}, {"answer": "gyps", "hint": "synonyms for gyps", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "sting", "flimflam", "con game", "con", "confidence trick"]}, {"answer": "gyre", "hint": "synonyms for gyre", "clues": ["coil", "curlicue", "scroll", "curl", "whorl", "ringlet", "roll", "gyre"]}, {"answer": "h", "hint": "synonyms for h", "clues": ["hydrogen", "atomic number 1", "heat content", "total heat", "enthalpy", "henry", "h"]}, {"answer": "ha-ha", "hint": "synonyms for ha-ha", "clues": ["sunk fence", "haw-haw", "hee-haw", "horselaugh", "ha-ha"]}, {"answer": "haberdashery", "hint": "synonyms for haberdashery", "clues": ["men's furnishings", "mens store", "haberdashery store", "clothing store", "haberdashery"]}, {"answer": "habiliment", "hint": "synonyms for habiliment", "clues": ["article of clothing", "vesture", "wear", "clothing", "wearable", "habiliment"]}, {"answer": "habit", "hint": "synonyms for habit", "clues": ["drug abuse", "riding habit", "use", "substance abuse", "wont", "habit"]}, {"answer": "habitation", "hint": "synonyms for habitation", "clues": ["dwelling", "abode", "dwelling house", "inhabitation", "domicile", "home", "inhabitancy"]}, {"answer": "haem", "hint": "synonyms for haem", "clues": ["haemitin", "hematin", "heme", "protoheme", "haem"]}, {"answer": "haemitin", "hint": "synonyms for haemitin", "clues": ["haem", "hematin", "heme", "protoheme", "haemitin"]}, {"answer": "hair", "hint": "synonyms for hair", "clues": ["haircloth", "whisker", "hairsbreadth", "hair"]}, {"answer": "hairdressing", "hint": "synonyms for hairdressing", "clues": ["hair oil", "haircare", "hair tonic", "hair grease", "hairdressing"]}, {"answer": "half_a_dozen", "hint": "synonyms for half a dozen", "clues": ["six", "6", "sestet", "sextet", "sise", "hexad", "sixer", "sextuplet", "half a dozen"]}, {"answer": "half_boot", "hint": "synonyms for half boot", "clues": ["buskin", "combat boot", "desert boot", "top boot", "half boot"]}, {"answer": "hall", "hint": "synonyms for hall", "clues": ["student residence", "anteroom", "hallway", "foyer", "lobby", "dorm", "dormitory", "manse", "mansion", "residence", "vestibule", "mansion house", "antechamber", "entrance hall", "residence hall", "manor hall", "hall"]}, {"answer": "hallmark", "hint": "synonyms for hallmark", "clues": ["trademark", "assay-mark", "authentication", "earmark", "stylemark", "hallmark"]}, {"answer": "halo", "hint": "synonyms for halo", "clues": ["nimbus", "aura", "glory", "ring", "doughnut", "annulus", "aureole", "anchor ring", "gloriole", "halo"]}, {"answer": "halter", "hint": "synonyms for halter", "clues": ["hempen necktie", "hemp", "hackamore", "hangman's rope", "hangman's halter", "halter"]}, {"answer": "hamburger_steak", "hint": "synonyms for hamburger steak", "clues": ["beef patty", "chopped steak", "chopsteak", "hamburger steak"]}, {"answer": "hammer", "hint": "synonyms for hammer", "clues": ["power hammer", "cock", "mallet", "pounding", "hammering"]}, {"answer": "hammock", "hint": "synonyms for hammock", "clues": ["knoll", "sack", "hummock", "mound", "hillock"]}, {"answer": "hand", "hint": "synonyms for hand", "clues": ["script", "handwriting", "deal", "helping hand", "hand"]}, {"answer": "hand-to-hand_struggle", "hint": "synonyms for hand-to-hand struggle", "clues": ["wrestling", "wrestle", "grappling", "grapple", "hand-to-hand struggle"]}, {"answer": "hand_organ", "hint": "synonyms for hand organ", "clues": ["grind organ", "street organ", "hurdy-gurdy", "barrel organ", "hand organ"]}, {"answer": "handbasin", "hint": "synonyms for handbasin", "clues": ["lavabo", "wash-hand basin", "washbasin", "washbowl", "handbasin"]}, {"answer": "handbill", "hint": "synonyms for handbill", "clues": ["bill", "flier", "broadsheet", "circular", "broadside", "flyer", "throwaway", "handbill"]}, {"answer": "handicap", "hint": "synonyms for handicap", "clues": ["baulk", "hindrance", "impediment", "check", "deterrent", "handicap"]}, {"answer": "handrail", "hint": "synonyms for handrail", "clues": ["balustrade", "bannister", "balusters", "handrail"]}, {"answer": "hands", "hint": "synonyms for hands", "clues": ["custody", "deal", "work force", "helping hand", "handwriting", "hand", "script", "manpower"]}, {"answer": "hangman's_halter", "hint": "synonyms for hangman's halter", "clues": ["hempen necktie", "hangman's rope", "hemp", "halter", "hangman's halter"]}, {"answer": "hangman's_rope", "hint": "synonyms for hangman's rope", "clues": ["hempen necktie", "hemp", "hangman's halter", "halter", "hangman's rope"]}, {"answer": "hangout", "hint": "synonyms for hangout", "clues": ["stamping ground", "repair", "haunt", "resort", "hangout"]}, {"answer": "hanky_panky", "hint": "synonyms for hanky panky", "clues": ["slickness", "skullduggery", "trickery", "hocus-pocus", "jiggery-pokery", "hanky panky"]}, {"answer": "harbinger", "hint": "synonyms for harbinger", "clues": ["predecessor", "herald", "forerunner", "precursor", "harbinger"]}, {"answer": "hard_drink", "hint": "synonyms for hard drink", "clues": ["liquor", "strong drink", "booze", "hard liquor", "spirits", "hard drink"]}, {"answer": "hard_liquor", "hint": "synonyms for hard liquor", "clues": ["liquor", "strong drink", "booze", "hard drink", "spirits", "hard liquor"]}, {"answer": "hardening", "hint": "synonyms for hardening", "clues": ["solidifying", "curing", "set", "solidification", "hardening"]}, {"answer": "hardiness", "hint": "synonyms for hardiness", "clues": ["boldness", "validity", "lustiness", "robustness", "hardihood", "daring", "hardiness"]}, {"answer": "hardness", "hint": "synonyms for hardness", "clues": ["ruggedness", "harshness", "callousness", "rigor", "rigourousness", "callosity", "severeness", "inclemency", "severity", "unfeelingness", "insensibility", "stiffness", "hardness"]}, {"answer": "hardship", "hint": "synonyms for hardship", "clues": ["rigor", "grimness", "rigourousness", "severeness", "severity", "asperity", "hardship"]}, {"answer": "hardtack", "hint": "synonyms for hardtack", "clues": ["pilot biscuit", "sea biscuit", "ship biscuit", "pilot bread", "hardtack"]}, {"answer": "harlequinade", "hint": "synonyms for harlequinade", "clues": ["clowning", "frivolity", "japery", "buffoonery", "prank", "harlequinade"]}, {"answer": "harm", "hint": "synonyms for harm", "clues": ["impairment", "scathe", "hurt", "damage", "harm"]}, {"answer": "harmony", "hint": "synonyms for harmony", "clues": ["concord", "musical harmony", "harmoniousness", "concordance", "harmony"]}, {"answer": "harshness", "hint": "synonyms for harshness", "clues": ["hardness", "cruelness", "cruelty", "rigor", "rigourousness", "severeness", "inclemency", "severity", "scratchiness", "stiffness", "roughness", "abrasiveness", "harshness"]}, {"answer": "hassle", "hint": "synonyms for hassle", "clues": ["trouble", "scuffle", "tussle", "rough-and-tumble", "dogfight", "fuss", "bother", "hassle"]}, {"answer": "hassock", "hint": "synonyms for hassock", "clues": ["puff", "pouf", "ottoman", "pouffe", "hassock"]}, {"answer": "haste", "hint": "synonyms for haste", "clues": ["rushing", "hurriedness", "hastiness", "precipitation", "hurry", "haste"]}, {"answer": "hastiness", "hint": "synonyms for hastiness", "clues": ["precipitation", "haste", "hurriedness", "hurry", "hastiness"]}, {"answer": "hatchet_job", "hint": "synonyms for hatchet job", "clues": ["traducement", "calumniation", "defamation", "obloquy", "calumny", "hatchet job"]}, {"answer": "hatful", "hint": "synonyms for hatful", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "hatful"]}, {"answer": "haughtiness", "hint": "synonyms for haughtiness", "clues": ["hauteur", "high-handedness", "arrogance", "lordliness", "haughtiness"]}, {"answer": "haunt", "hint": "synonyms for haunt", "clues": ["stamping ground", "repair", "hangout", "resort", "haunt"]}, {"answer": "hauteur", "hint": "synonyms for hauteur", "clues": ["lordliness", "high-handedness", "haughtiness", "arrogance", "hauteur"]}, {"answer": "haven", "hint": "synonyms for haven", "clues": ["oasis", "harbor", "seaport", "haven"]}, {"answer": "haversack", "hint": "synonyms for haversack", "clues": ["knapsack", "back pack", "rucksack", "packsack", "haversack"]}, {"answer": "haw-haw", "hint": "synonyms for haw-haw", "clues": ["ha-ha", "sunk fence", "hee-haw", "horselaugh", "haw-haw"]}, {"answer": "haziness", "hint": "synonyms for haziness", "clues": ["vaporousness", "mistiness", "steaminess", "haziness"]}, {"answer": "head", "hint": "synonyms for head", "clues": ["fountainhead", "head word", "mind", "brain", "headland", "promontory", "headspring", "psyche", "drumhead", "straits", "headway", "point", "oral sex", "heading", "question", "read/write head", "header", "forefront", "nous", "foreland", "pass"]}, {"answer": "head_gate", "hint": "synonyms for head gate", "clues": ["penstock", "sluice valve", "floodgate", "sluicegate", "water gate", "head gate"]}, {"answer": "header", "hint": "synonyms for header", "clues": ["heading", "lintel", "cope", "coping", "header"]}, {"answer": "heading", "hint": "synonyms for heading", "clues": ["header", "drift", "bearing", "aim", "gallery", "head"]}, {"answer": "headquarters", "hint": "synonyms for headquarters", "clues": ["home base", "home office", "military headquarters", "main office", "central office", "headquarters"]}, {"answer": "headstone", "hint": "synonyms for headstone", "clues": ["gravestone", "key", "keystone", "tombstone", "headstone"]}, {"answer": "health_check", "hint": "synonyms for health check", "clues": ["medical checkup", "medical", "medical exam", "checkup", "medical examination", "health check"]}, {"answer": "heap", "hint": "synonyms for heap", "clues": ["cumulation", "good deal", "slew", "mint", "deal", "peck", "quite a little", "agglomerate", "wad", "mass", "raft", "mess", "mound", "spate", "cumulus", "passel", "great deal", "hatful", "jalopy", "bus", "lot", "sight", "mickle", "stack", "plenty", "muckle", "pile", "mountain", "batch", "flock", "tidy sum", "pot", "heap"]}, {"answer": "heart", "hint": "synonyms for heart", "clues": ["warmness", "essence", "eye", "affectionateness", "center", "bosom", "centre", "sum", "gist", "marrow", "middle", "substance", "meat", "fondness", "spunk", "nub", "nitty-gritty", "affection", "mettle", "philia", "nerve", "pith", "inwardness", "heart and soul", "spirit", "kernel", "tenderness", "core", "warmheartedness", "heart"]}, {"answer": "heartbeat", "hint": "synonyms for heartbeat", "clues": ["twinkling", "jiffy", "instant", "flash", "wink", "split second", "pulse", "blink of an eye", "trice", "pulsation", "beat", "heartbeat"]}, {"answer": "heartiness", "hint": "synonyms for heartiness", "clues": ["vigor", "wholeheartedness", "dynamism", "heartiness"]}, {"answer": "hearts", "hint": "synonyms for hearts", "clues": ["warmness", "essence", "eye", "affectionateness", "center", "bosom", "centre", "heart", "sum", "gist", "marrow", "middle", "substance", "meat", "fondness", "spunk", "nub", "nitty-gritty", "affection", "mettle", "philia", "nerve", "pith", "inwardness", "heart and soul", "spirit", "kernel", "tenderness", "core", "warmheartedness"]}, {"answer": "heartsease", "hint": "synonyms for heartsease", "clues": ["ataraxis", "peace of mind", "peace", "repose", "serenity", "peacefulness", "heartsease"]}, {"answer": "heat", "hint": "synonyms for heat", "clues": ["high temperature", "hotness", "heating", "warmth", "heating system", "passion", "heat energy", "heating plant"]}, {"answer": "heater", "hint": "synonyms for heater", "clues": ["warmer", "smoke", "bullet", "fastball", "hummer", "heater"]}, {"answer": "heating", "hint": "synonyms for heating", "clues": ["warming", "heating system", "heating plant", "heat"]}, {"answer": "heave", "hint": "synonyms for heave", "clues": ["retch", "heaving", "raise", "lift", "heave"]}, {"answer": "heavens", "hint": "synonyms for heavens", "clues": ["firmament", "welkin", "paradise", "heaven", "celestial sphere", "promised land", "empyrean", "sphere", "vault of heaven", "nirvana"]}, {"answer": "heaves", "hint": "synonyms for heaves", "clues": ["retch", "heaving", "raise", "heave", "lift"]}, {"answer": "heaviness", "hint": "synonyms for heaviness", "clues": ["thickness", "onerousness", "burdensomeness", "oppressiveness", "weightiness", "heaviness"]}, {"answer": "heedlessness", "hint": "synonyms for heedlessness", "clues": ["inadvertency", "mindlessness", "unmindfulness", "rashness", "inattentiveness", "heedlessness"]}, {"answer": "heft", "hint": "synonyms for heft", "clues": ["ponderousness", "ponderosity", "massiveness", "heftiness", "heft"]}, {"answer": "heftiness", "hint": "synonyms for heftiness", "clues": ["muscle", "brawn", "massiveness", "brawniness", "ponderosity", "heft", "sinew", "ponderousness", "muscularity", "heftiness"]}, {"answer": "heights", "hint": "synonyms for heights", "clues": ["tallness", "stature", "height", "altitude", "high"]}, {"answer": "heinousness", "hint": "synonyms for heinousness", "clues": ["atrocity", "barbarousness", "barbarity", "atrociousness", "heinousness"]}, {"answer": "heist", "hint": "synonyms for heist", "clues": ["rip-off", "stickup", "armed robbery", "holdup", "heist"]}, {"answer": "helix", "hint": "synonyms for helix", "clues": ["volute", "coil", "spiral", "whorl", "helix"]}, {"answer": "hell", "hint": "synonyms for hell", "clues": ["netherworld", "hellhole", "pit", "infernal region", "sin", "perdition", "hell on earth", "inferno", "nether region", "snake pit", "underworld", "the pits", "blaze", "hell"]}, {"answer": "hell_dust", "hint": "synonyms for hell dust", "clues": ["big H", "smack", "thunder", "scag", "skag", "nose drops", "hell dust"]}, {"answer": "hell_on_earth", "hint": "synonyms for hell on earth", "clues": ["hellhole", "inferno", "snake pit", "hell", "the pits", "hell on earth"]}, {"answer": "hellhole", "hint": "synonyms for hellhole", "clues": ["inferno", "snake pit", "hell", "the pits", "hell on earth", "hellhole"]}, {"answer": "hello", "hint": "synonyms for hello", "clues": ["how-do-you-do", "howdy", "hullo", "hi", "hello"]}, {"answer": "help", "hint": "synonyms for help", "clues": ["aid", "assist", "service", "avail", "assistance", "help"]}, {"answer": "hematin", "hint": "synonyms for hematin", "clues": ["haem", "haemitin", "heme", "protoheme", "hematin"]}, {"answer": "heme", "hint": "synonyms for heme", "clues": ["haem", "haemitin", "hematin", "protoheme", "heme"]}, {"answer": "hemofil", "hint": "synonyms for hemofil", "clues": ["factor VIII", "antihaemophilic factor", "antihaemophilic globulin", "hemofil"]}, {"answer": "hemp", "hint": "synonyms for hemp", "clues": ["hempen necktie", "hangman's rope", "hangman's halter", "halter", "hemp"]}, {"answer": "hempen_necktie", "hint": "synonyms for hempen necktie", "clues": ["hangman's rope", "hemp", "hangman's halter", "halter", "hempen necktie"]}, {"answer": "hepatoflavin", "hint": "synonyms for hepatoflavin", "clues": ["ovoflavin", "lactoflavin", "vitamin G", "vitamin B2", "riboflavin", "hepatoflavin"]}, {"answer": "heptad", "hint": "synonyms for heptad", "clues": ["seven", "sevener", "7", "septenary", "septet", "heptad"]}, {"answer": "herald", "hint": "synonyms for herald", "clues": ["harbinger", "precursor", "forerunner", "predecessor", "herald"]}, {"answer": "hero", "hint": "synonyms for hero", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "poor boy", "bomber", "grinder", "submarine sandwich", "submarine", "hero sandwich", "sub", "hero"]}, {"answer": "hero_sandwich", "hint": "synonyms for hero sandwich", "clues": ["hoagie", "wedge", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "zep", "sub", "hero sandwich"]}, {"answer": "heroism", "hint": "synonyms for heroism", "clues": ["valour", "valiancy", "valorousness", "gallantry", "heroism"]}, {"answer": "hertz", "hint": "synonyms for hertz", "clues": ["cps", "cycles/second", "cycle", "cycle per second", "hertz"]}, {"answer": "hesitancy", "hint": "synonyms for hesitancy", "clues": ["disinclination", "hesitation", "indisposition", "hesitance", "reluctance"]}, {"answer": "hesitation", "hint": "synonyms for hesitation", "clues": ["indisposition", "vacillation", "waver", "reluctance", "disinclination", "falter", "hesitancy", "hesitation"]}, {"answer": "hexad", "hint": "synonyms for hexad", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "sise", "sixer", "sextuplet", "hexad"]}, {"answer": "heyday", "hint": "synonyms for heyday", "clues": ["flower", "prime", "bloom", "flush", "peak", "blossom", "efflorescence", "heyday"]}, {"answer": "hg", "hint": "synonyms for hg", "clues": ["hydrargyrum", "mercury", "atomic number 80", "hectogram", "quicksilver", "hg"]}, {"answer": "hi", "hint": "synonyms for hi", "clues": ["how-do-you-do", "howdy", "hello", "hullo", "hi"]}, {"answer": "hiatus", "hint": "synonyms for hiatus", "clues": ["respite", "suspension", "abatement", "reprieve", "hiatus"]}, {"answer": "hidrosis", "hint": "synonyms for hidrosis", "clues": ["diaphoresis", "sweating", "perspiration", "sudation", "hidrosis"]}, {"answer": "high-handedness", "hint": "synonyms for high-handedness", "clues": ["hauteur", "haughtiness", "arrogance", "lordliness", "high-handedness"]}, {"answer": "high_hat", "hint": "synonyms for high hat", "clues": ["silk hat", "stovepipe", "dress hat", "high-hat cymbal", "opera hat", "beaver", "topper", "top hat", "high hat"]}, {"answer": "high_life", "hint": "synonyms for high life", "clues": ["lavishness", "extravagance", "prodigality", "highlife"]}, {"answer": "high_noon", "hint": "synonyms for high noon", "clues": ["twelve noon", "noontide", "noon", "noonday", "midday", "high noon"]}, {"answer": "high_school", "hint": "synonyms for high school", "clues": ["senior high school", "high", "senior high", "highschool"]}, {"answer": "high_society", "hint": "synonyms for high society", "clues": ["smart set", "beau monde", "bon ton", "society", "high society"]}, {"answer": "highlife", "hint": "synonyms for highlife", "clues": ["lavishness", "high life", "extravagance", "prodigality"]}, {"answer": "highschool", "hint": "synonyms for highschool", "clues": ["senior high school", "high", "high school", "senior high"]}, {"answer": "hike", "hint": "synonyms for hike", "clues": ["hiking", "salary increase", "wage hike", "rise", "wage increase", "tramp", "boost", "cost increase", "hike"]}, {"answer": "hilarity", "hint": "synonyms for hilarity", "clues": ["mirth", "glee", "gleefulness", "mirthfulness", "hilarity"]}, {"answer": "hillock", "hint": "synonyms for hillock", "clues": ["knoll", "mound", "hummock", "hillock"]}, {"answer": "hinderance", "hint": "synonyms for hinderance", "clues": ["interference", "hitch", "check", "deterrent", "handicap", "baulk", "encumbrance", "preventive", "hindrance", "impediment"]}, {"answer": "hindrance", "hint": "synonyms for hindrance", "clues": ["interference", "hitch", "check", "deterrent", "handicap", "baulk", "incumbrance", "preventive", "impediment", "hinderance"]}, {"answer": "hint", "hint": "synonyms for hint", "clues": ["confidential information", "steer", "wind", "clue", "jot", "tinge", "breath", "trace", "touch", "intimation", "tip", "soupcon", "mite", "lead", "pinch", "suggestion", "speck", "hint"]}, {"answer": "hire_car", "hint": "synonyms for hire car", "clues": ["u-drive", "self-drive", "rent-a-car", "car rental", "hire car"]}, {"answer": "hiss", "hint": "synonyms for hiss", "clues": ["fizzle", "bird", "sibilation", "razz", "boo", "raspberry", "hoot", "hissing", "snort", "hushing"]}, {"answer": "hissing", "hint": "synonyms for hissing", "clues": ["hiss", "fizzle", "sibilation", "hushing"]}, {"answer": "hit", "hint": "synonyms for hit", "clues": ["striking", "smasher", "strike", "smash", "collision", "hitting", "bang", "hit"]}, {"answer": "hitch", "hint": "synonyms for hitch", "clues": ["interference", "snag", "duty tour", "rub", "encumbrance", "preventive", "hinderance", "tour", "enlistment", "term of enlistment", "tour of duty", "limp", "hang-up", "hobble", "hitch"]}, {"answer": "hoagie", "hint": "synonyms for hoagie", "clues": ["wedge", "zep", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "hoagie"]}, {"answer": "hoagy", "hint": "synonyms for hoagy", "clues": ["hoagie", "wedge", "zep", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "hoagy"]}, {"answer": "hoax", "hint": "synonyms for hoax", "clues": ["dupery", "put-on", "fraud", "humbug", "fraudulence", "hoax"]}, {"answer": "hobby", "hint": "synonyms for hobby", "clues": ["avocation", "pursuit", "hobbyhorse", "rocking horse", "spare-time activity", "by-line", "sideline", "hobby"]}, {"answer": "hocus-pocus", "hint": "synonyms for hocus-pocus", "clues": ["slickness", "skullduggery", "trickery", "jiggery-pokery", "hanky panky", "hocus-pocus"]}, {"answer": "hodgepodge", "hint": "synonyms for hodgepodge", "clues": ["oddments", "melange", "gallimaufry", "hotchpotch", "jumble", "ragbag", "patchwork", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "hodgepodge"]}, {"answer": "hogwash", "hint": "synonyms for hogwash", "clues": ["buncombe", "bunk", "guff", "rot", "bunkum", "hogwash"]}, {"answer": "hoi_polloi", "hint": "synonyms for hoi polloi", "clues": ["people", "mass", "multitude", "the great unwashed", "hoi polloi"]}, {"answer": "hokum", "hint": "synonyms for hokum", "clues": ["nonsensicality", "bunk", "meaninglessness", "nonsense", "hokum"]}, {"answer": "hold", "hint": "synonyms for hold", "clues": ["handgrip", "delay", "keep", "grip", "clutch", "handle", "time lag", "clasp", "postponement", "cargo deck", "appreciation", "cargo hold", "storage area", "grasp", "wait", "clench", "cargo area", "hold"]}, {"answer": "holding", "hint": "synonyms for holding", "clues": ["belongings", "retention", "property", "keeping", "holding"]}, {"answer": "holdup", "hint": "synonyms for holdup", "clues": ["heist", "stickup", "delay", "armed robbery", "holdup"]}, {"answer": "holla", "hint": "synonyms for holla", "clues": ["holler", "yowl", "bellowing", "roaring", "holloa"]}, {"answer": "holler", "hint": "synonyms for holler", "clues": ["hollow", "holla", "yowl", "hollering", "bellowing", "roaring"]}, {"answer": "hollering", "hint": "synonyms for hollering", "clues": ["holler", "holla", "yowl", "bellowing", "roaring", "hollo"]}, {"answer": "hollo", "hint": "synonyms for hollo", "clues": ["holler", "holla", "yowl", "bellowing", "roaring", "hollo"]}, {"answer": "holloa", "hint": "synonyms for holloa", "clues": ["holler", "holla", "yowl", "bellowing", "roaring", "hollo"]}, {"answer": "home_base", "hint": "synonyms for home base", "clues": ["plate", "home office", "headquarters", "home plate", "home", "main office", "central office", "home base"]}, {"answer": "home_office", "hint": "synonyms for home office", "clues": ["home base", "headquarters", "main office", "central office", "home office"]}, {"answer": "home_run", "hint": "synonyms for home run", "clues": ["homer", "bull's eye", "bell ringer", "mark", "home run"]}, {"answer": "homeland", "hint": "synonyms for homeland", "clues": ["mother country", "native land", "fatherland", "motherland", "country of origin", "homeland"]}, {"answer": "homoeroticism", "hint": "synonyms for homoeroticism", "clues": ["queerness", "gayness", "homosexuality", "homosexualism", "homoeroticism"]}, {"answer": "homosexualism", "hint": "synonyms for homosexualism", "clues": ["queerness", "gayness", "homosexuality", "homoeroticism", "homosexualism"]}, {"answer": "homosexuality", "hint": "synonyms for homosexuality", "clues": ["queerness", "gayness", "homosexualism", "homoeroticism", "homosexuality"]}, {"answer": "honey_oil", "hint": "synonyms for honey oil", "clues": ["jet", "green", "special K", "super C", "super acid", "cat valium", "honey oil"]}, {"answer": "honor", "hint": "synonyms for honor", "clues": ["accolade", "award", "honour", "laurels", "purity", "pureness"]}, {"answer": "honour", "hint": "synonyms for honour", "clues": ["accolade", "award", "honor", "laurels", "purity", "pureness"]}, {"answer": "honours", "hint": "synonyms for honours", "clues": ["honor", "pureness", "accolade", "award", "laurels", "purity", "honours degree", "honours"]}, {"answer": "hood", "hint": "synonyms for hood", "clues": ["bonnet", "exhaust hood", "cowl", "lens hood", "cap", "hood"]}, {"answer": "hoodoo", "hint": "synonyms for hoodoo", "clues": ["fetish", "fetich", "juju", "voodoo", "hoodoo"]}, {"answer": "hook", "hint": "synonyms for hook", "clues": ["hooking", "draw", "lure", "claw", "sweetener", "crotchet", "bait", "hook shot", "come-on"]}, {"answer": "hookah", "hint": "synonyms for hookah", "clues": ["narghile", "sheesha", "kalian", "calean", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble", "hookah"]}, {"answer": "hooks", "hint": "synonyms for hooks", "clues": ["hooking", "draw", "lure", "claw", "sweetener", "crotchet", "bait", "hook shot", "come-on", "hooks"]}, {"answer": "hoop", "hint": "synonyms for hoop", "clues": ["basketball hoop", "wicket", "basket", "ring", "hoop"]}, {"answer": "hoops", "hint": "synonyms for hoops", "clues": ["basketball", "basketball hoop", "basketball game", "basket", "ring", "hoop", "wicket"]}, {"answer": "hoot", "hint": "synonyms for hoot", "clues": ["damn", "shit", "bird", "darn", "shucks", "tinker's damn", "razz", "hiss", "boo", "raspberry", "red cent", "snort", "hoot"]}, {"answer": "hooter", "hint": "synonyms for hooter", "clues": ["horn", "automobile horn", "motor horn", "car horn", "hooter"]}, {"answer": "hopper", "hint": "synonyms for hopper", "clues": ["hop-picker", "grounder", "ground ball", "hopper"]}, {"answer": "horde", "hint": "synonyms for horde", "clues": ["host", "drove", "legion", "swarm", "horde"]}, {"answer": "horizon", "hint": "synonyms for horizon", "clues": ["sensible horizon", "view", "apparent horizon", "celestial horizon", "visible horizon", "purview", "skyline", "horizon"]}, {"answer": "horn", "hint": "synonyms for horn", "clues": ["saddle horn", "cornet", "trump", "car horn", "hooter", "motor horn", "trumpet", "automobile horn", "horn"]}, {"answer": "horripilation", "hint": "synonyms for horripilation", "clues": ["goose skin", "goosebump", "pilomotor reflex", "gooseflesh", "goose pimple", "horripilation"]}, {"answer": "horse", "hint": "synonyms for horse", "clues": ["gymnastic horse", "horse cavalry", "buck", "sawhorse", "cavalry", "knight", "sawbuck", "horse"]}, {"answer": "horse_sense", "hint": "synonyms for horse sense", "clues": ["mother wit", "good sense", "sense", "common sense", "gumption", "horse sense"]}, {"answer": "horseshit", "hint": "synonyms for horseshit", "clues": ["shit", "dogshit", "bull", "bullshit", "crap", "horseshit"]}, {"answer": "hostel", "hint": "synonyms for hostel", "clues": ["hostelry", "student lodging", "youth hostel", "inn", "auberge", "lodge"]}, {"answer": "hostelry", "hint": "synonyms for hostelry", "clues": ["hostel", "auberge", "lodge", "inn"]}, {"answer": "hostilities", "hint": "synonyms for hostilities", "clues": ["hostility", "belligerency", "aggression", "enmity", "ill will", "hostilities"]}, {"answer": "hot_air", "hint": "synonyms for hot air", "clues": ["rhetoric", "empty words", "palaver", "empty talk", "hot air"]}, {"answer": "hot_cake", "hint": "synonyms for hot cake", "clues": ["griddlecake", "hotcake", "pancake", "flapjack", "flapcake", "flannel-cake", "battercake"]}, {"answer": "hot_dog", "hint": "synonyms for hot dog", "clues": ["hotdog", "dog", "frank", "wiener", "frankfurter", "weenie", "wienerwurst", "red hot"]}, {"answer": "hotcake", "hint": "synonyms for hotcake", "clues": ["griddlecake", "pancake", "flapjack", "flapcake", "flannel-cake", "battercake", "hot cake"]}, {"answer": "hotchpotch", "hint": "synonyms for hotchpotch", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "ragbag", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "hotchpotch"]}, {"answer": "hotdog", "hint": "synonyms for hotdog", "clues": ["dog", "frank", "hot dog", "wiener", "frankfurter", "weenie", "wienerwurst", "red hot"]}, {"answer": "hour", "hint": "synonyms for hour", "clues": ["60 minutes", "minute", "time of day", "hr", "hour"]}, {"answer": "hours", "hint": "synonyms for hours", "clues": ["60 minutes", "hour", "hr", "time of day", "minute"]}, {"answer": "house", "hint": "synonyms for house", "clues": ["theatre", "menage", "family", "star sign", "home", "sign", "household", "mansion", "sign of the zodiac", "business firm", "planetary house", "firm", "house"]}, {"answer": "house_of_cards", "hint": "synonyms for house of cards", "clues": ["card-house", "bubble", "cardcastle", "house of cards"]}, {"answer": "house_of_god", "hint": "synonyms for house of god", "clues": ["house of worship", "house of God", "house of prayer", "place of worship"]}, {"answer": "house_of_ill_repute", "hint": "synonyms for house of ill repute", "clues": ["bagnio", "house of prostitution", "brothel", "cathouse", "bawdyhouse", "whorehouse", "bordello", "sporting house", "house of ill repute"]}, {"answer": "house_of_prostitution", "hint": "synonyms for house of prostitution", "clues": ["bagnio", "house of ill repute", "brothel", "cathouse", "bawdyhouse", "whorehouse", "bordello", "sporting house", "house of prostitution"]}, {"answer": "housecoat", "hint": "synonyms for housecoat", "clues": ["neglige", "wrapper", "peignoir", "housecoat"]}, {"answer": "household", "hint": "synonyms for household", "clues": ["house", "home", "family", "menage", "household"]}, {"answer": "housing", "hint": "synonyms for housing", "clues": ["living accommodations", "lodging", "caparison", "trapping", "housing"]}, {"answer": "hovel", "hint": "synonyms for hovel", "clues": ["shack", "hutch", "hut", "shanty", "hovel"]}, {"answer": "how-do-you-do", "hint": "synonyms for how-do-you-do", "clues": ["howdy", "hello", "hullo", "hi", "how-do-you-do"]}, {"answer": "howdy", "hint": "synonyms for howdy", "clues": ["how-do-you-do", "hello", "hullo", "hi", "howdy"]}, {"answer": "howler", "hint": "synonyms for howler", "clues": ["sidesplitter", "riot", "wow", "belly laugh", "thigh-slapper", "scream", "howler"]}, {"answer": "hs", "hint": "synonyms for hs", "clues": ["atomic number 108", "hassium", "h", "hydrogen", "element 108", "heat content", "total heat", "enthalpy", "henry"]}, {"answer": "hubble-bubble", "hint": "synonyms for hubble-bubble", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble"]}, {"answer": "hubbly-bubbly", "hint": "synonyms for hubbly-bubbly", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "chicha", "shisha", "water pipe", "hubble-bubble", "hubbly-bubbly"]}, {"answer": "hug_drug", "hint": "synonyms for hug drug", "clues": ["cristal", "disco biscuit", "go", "ecstasy", "hug drug"]}, {"answer": "hugging", "hint": "synonyms for hugging", "clues": ["fondling", "necking", "kissing", "snuggling", "caressing", "cuddling", "petting", "smooching", "hugging"]}, {"answer": "hullabaloo", "hint": "synonyms for hullabaloo", "clues": ["turmoil", "agitation", "excitement", "upheaval", "hullabaloo"]}, {"answer": "hullo", "hint": "synonyms for hullo", "clues": ["how-do-you-do", "howdy", "hello", "hi", "hullo"]}, {"answer": "humanities", "hint": "synonyms for humanities", "clues": ["humanistic discipline", "humanity", "arts", "manhood", "liberal arts", "humanness", "humanities"]}, {"answer": "humbug", "hint": "synonyms for humbug", "clues": ["tarradiddle", "bosh", "drool", "baloney", "dupery", "put-on", "tommyrot", "fraud", "tosh", "fraudulence", "twaddle", "snake oil", "hoax", "bilgewater", "humbug"]}, {"answer": "hummer", "hint": "synonyms for hummer", "clues": ["bullet", "heater", "fastball", "smoke", "hummer"]}, {"answer": "hummock", "hint": "synonyms for hummock", "clues": ["knoll", "mound", "hillock", "hammock"]}, {"answer": "humor", "hint": "synonyms for humor", "clues": ["temper", "wit", "sense of humour", "humour", "mood", "witticism", "wittiness"]}, {"answer": "humour", "hint": "synonyms for humour", "clues": ["temper", "wit", "mood", "sense of humour", "witticism", "wittiness", "humor"]}, {"answer": "hump", "hint": "synonyms for hump", "clues": ["protuberance", "jut", "swelling", "extrusion", "gibbousness", "bump", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "hump"]}, {"answer": "hundredweight", "hint": "synonyms for hundredweight", "clues": ["centner", "cental", "cwt", "doppelzentner", "short hundredweight", "long hundredweight", "metric hundredweight", "quintal", "hundredweight"]}, {"answer": "hungriness", "hint": "synonyms for hungriness", "clues": ["thirstiness", "hunger", "thirst", "longing", "yearning", "hungriness"]}, {"answer": "hurdles", "hint": "synonyms for hurdles", "clues": ["hurdle", "vault", "hurdle race", "hurdling"]}, {"answer": "hurdy-gurdy", "hint": "synonyms for hurdy-gurdy", "clues": ["grind organ", "street organ", "hurdy gurdy", "barrel organ", "hand organ"]}, {"answer": "hurdy_gurdy", "hint": "synonyms for hurdy gurdy", "clues": ["grind organ", "street organ", "hurdy-gurdy", "barrel organ", "hand organ"]}, {"answer": "hurricane_lamp", "hint": "synonyms for hurricane lamp", "clues": ["storm lamp", "storm lantern", "hurricane lantern", "tornado lantern", "hurricane lamp"]}, {"answer": "hurricane_lantern", "hint": "synonyms for hurricane lantern", "clues": ["storm lamp", "hurricane lamp", "storm lantern", "tornado lantern", "hurricane lantern"]}, {"answer": "hurriedness", "hint": "synonyms for hurriedness", "clues": ["precipitation", "hurry", "haste", "hastiness", "hurriedness"]}, {"answer": "hurry", "hint": "synonyms for hurry", "clues": ["haste", "hurriedness", "hastiness", "precipitation", "rush", "hurry"]}, {"answer": "hushing", "hint": "synonyms for hushing", "clues": ["hiss", "fizzle", "sibilation", "hushing"]}, {"answer": "husk", "hint": "synonyms for husk", "clues": ["straw", "stubble", "chaff", "stalk", "shuck", "husk"]}, {"answer": "huskiness", "hint": "synonyms for huskiness", "clues": ["ruggedness", "hoarseness", "gruffness", "toughness", "huskiness"]}, {"answer": "husking", "hint": "synonyms for husking", "clues": ["denudation", "uncovering", "stripping", "baring", "husking"]}, {"answer": "hustle", "hint": "synonyms for hustle", "clues": ["flurry", "stir", "bunco", "bunko game", "gyp", "confidence game", "bunko", "ado", "fuss", "sting", "flimflam", "con game", "bustle", "con", "confidence trick", "hustle"]}, {"answer": "hut", "hint": "synonyms for hut", "clues": ["hovel", "hutch", "field hut", "shack", "army hut", "shanty", "hut"]}, {"answer": "hutch", "hint": "synonyms for hutch", "clues": ["shanty", "hovel", "hut", "shack", "hutch"]}, {"answer": "hybridisation", "hint": "synonyms for hybridisation", "clues": ["hybridizing", "cross", "crossbreeding", "interbreeding", "hybridization"]}, {"answer": "hybridization", "hint": "synonyms for hybridization", "clues": ["hybridizing", "cross", "crossbreeding", "interbreeding", "hybridisation"]}, {"answer": "hybridizing", "hint": "synonyms for hybridizing", "clues": ["cross", "crossbreeding", "interbreeding", "hybridisation", "hybridizing"]}, {"answer": "hydrated_lime", "hint": "synonyms for hydrated lime", "clues": ["lime", "lime hydrate", "caustic lime", "calcium hydrate", "calcium hydroxide", "slaked lime", "hydrated lime"]}, {"answer": "hydroxybenzene", "hint": "synonyms for hydroxybenzene", "clues": ["phenylic acid", "carbolic acid", "oxybenzene", "phenol", "hydroxybenzene"]}, {"answer": "hymeneals", "hint": "synonyms for hymeneals", "clues": ["wedding ceremony", "nuptials", "wedding", "hymeneal"]}, {"answer": "hypo", "hint": "synonyms for hypo", "clues": ["hypodermic syringe", "hypodermic", "sodium thiosulfate", "hypo"]}, {"answer": "hypothesis", "hint": "synonyms for hypothesis", "clues": ["speculation", "surmise", "conjecture", "guess", "theory", "surmisal", "supposition", "possibility", "hypothesis"]}, {"answer": "hz", "hint": "synonyms for hz", "clues": ["cps", "cycle", "cycle per second", "hertz", "cycles/second", "hz"]}, {"answer": "ice", "hint": "synonyms for ice", "clues": ["chalk", "glass", "ice-skating rink", "trash", "icing", "frosting", "shabu", "water ice", "methamphetamine", "crank", "internal-combustion engine", "frappe", "deoxyephedrine", "ice rink", "chicken feed", "meth", "sparkler", "methamphetamine hydrochloride", "ice"]}, {"answer": "ice_crystal", "hint": "synonyms for ice crystal", "clues": ["frost snow", "diamond dust", "ice needle", "snow mist", "poudrin", "frost mist", "ice crystal"]}, {"answer": "ice_needle", "hint": "synonyms for ice needle", "clues": ["ice crystal", "frost snow", "diamond dust", "snow mist", "poudrin", "frost mist", "ice needle"]}, {"answer": "iciness", "hint": "synonyms for iciness", "clues": ["frigidness", "coolness", "gelidity", "chilliness", "frigidity", "chill", "iciness"]}, {"answer": "icing", "hint": "synonyms for icing", "clues": ["frost", "icing the puck", "ice", "icing"]}, {"answer": "idea", "hint": "synonyms for idea", "clues": ["approximation", "estimate", "mind", "melodic theme", "estimation", "musical theme", "theme", "thought", "idea"]}, {"answer": "identity", "hint": "synonyms for identity", "clues": ["personal identity", "indistinguishability", "identity operator", "individuality", "identicalness", "identity element", "identity"]}, {"answer": "idiom", "hint": "synonyms for idiom", "clues": ["artistic style", "phrasal idiom", "dialect", "phrase", "parlance", "set phrase", "idiomatic expression", "accent", "idiom"]}, {"answer": "idiomatic_expression", "hint": "synonyms for idiomatic expression", "clues": ["phrase", "idiom", "phrasal idiom", "set phrase", "idiomatic expression"]}, {"answer": "idiot_box", "hint": "synonyms for idiot box", "clues": ["television set", "tv", "telly", "television receiver", "goggle box", "tv set", "television", "boob tube", "idiot box"]}, {"answer": "idle_talk", "hint": "synonyms for idle talk", "clues": ["blether", "prattle", "chin music", "prate", "idle talk"]}, {"answer": "idle_words", "hint": "synonyms for idle words", "clues": ["malarkey", "wind", "nothingness", "jazz", "idle words"]}, {"answer": "idleness", "hint": "synonyms for idleness", "clues": ["faineance", "loafing", "idling", "groundlessness", "idleness"]}, {"answer": "idol", "hint": "synonyms for idol", "clues": ["paragon", "god", "graven image", "beau ideal", "perfection", "idol"]}, {"answer": "idolatry", "hint": "synonyms for idolatry", "clues": ["devotion", "veneration", "cultism", "idol worship", "idolatry"]}, {"answer": "idyl", "hint": "synonyms for idyl", "clues": ["bucolic", "pastoral", "idyll", "eclogue"]}, {"answer": "idyll", "hint": "synonyms for idyll", "clues": ["bucolic", "pastoral", "idyl", "eclogue"]}, {"answer": "ig", "hint": "synonyms for ig", "clues": ["immune globulin", "immune gamma globulin", "immune serum globulin", "ig"]}, {"answer": "ignition", "hint": "synonyms for ignition", "clues": ["inflammation", "ignition system", "kindling", "lighting", "firing", "ignition"]}, {"answer": "illumination", "hint": "synonyms for illumination", "clues": ["miniature", "illuminance", "elucidation", "clarification", "illumination"]}, {"answer": "illusion", "hint": "synonyms for illusion", "clues": ["legerdemain", "magic trick", "delusion", "head game", "fancy", "thaumaturgy", "trick", "deception", "magic", "fantasy", "semblance", "phantasy", "conjuration", "conjuring trick", "illusion"]}, {"answer": "illustration", "hint": "synonyms for illustration", "clues": ["representative", "example", "instance", "exemplification", "illustration"]}, {"answer": "image", "hint": "synonyms for image", "clues": ["figure", "picture", "range of a function", "prototype", "icon", "paradigm", "persona", "simulacrum", "epitome", "range", "trope", "figure of speech", "mental image", "effigy", "ikon", "image"]}, {"answer": "imagination", "hint": "synonyms for imagination", "clues": ["imaginativeness", "resource", "vision", "imagery", "imaging", "mental imagery", "resourcefulness", "imagination"]}, {"answer": "imaging", "hint": "synonyms for imaging", "clues": ["imagery", "imagination", "mental imagery", "tomography", "imaging"]}, {"answer": "imbecility", "hint": "synonyms for imbecility", "clues": ["folly", "stupidity", "betise", "foolishness", "imbecility"]}, {"answer": "immediacy", "hint": "synonyms for immediacy", "clues": ["instancy", "immediate apprehension", "instantaneousness", "immediateness", "immediacy"]}, {"answer": "immenseness", "hint": "synonyms for immenseness", "clues": ["wideness", "vastness", "enormousness", "immensity", "grandness", "sizeableness", "greatness", "immenseness"]}, {"answer": "immensity", "hint": "synonyms for immensity", "clues": ["wideness", "vastness", "enormousness", "immenseness", "grandness", "sizeableness", "greatness", "immensity"]}, {"answer": "immersion", "hint": "synonyms for immersion", "clues": ["absorption", "submersion", "submergence", "submerging", "dousing", "concentration", "ducking", "ingress", "engrossment", "immersion"]}, {"answer": "immune_suppressant_drug", "hint": "synonyms for immune suppressant drug", "clues": ["immunosuppressor", "immunosuppressive drug", "immunosuppressant", "immune suppressant drug"]}, {"answer": "immunosuppressant", "hint": "synonyms for immunosuppressant", "clues": ["immunosuppressor", "immunosuppressive drug", "immune suppressant drug", "immunosuppressant"]}, {"answer": "immunosuppressive_drug", "hint": "synonyms for immunosuppressive drug", "clues": ["immunosuppressant", "immunosuppressor", "immune suppressant drug", "immunosuppressive"]}, {"answer": "immunosuppressor", "hint": "synonyms for immunosuppressor", "clues": ["immunosuppressant", "immunosuppressive drug", "immune suppressant drug", "immunosuppressor"]}, {"answer": "impact", "hint": "synonyms for impact", "clues": ["shock", "impingement", "wallop", "encroachment", "impact"]}, {"answer": "impairment", "hint": "synonyms for impairment", "clues": ["constipation", "harm", "deadening", "damage", "stultification", "impairment"]}, {"answer": "impassiveness", "hint": "synonyms for impassiveness", "clues": ["indifference", "phlegm", "unemotionality", "emotionlessness", "stolidity", "impassivity", "impassiveness"]}, {"answer": "impassivity", "hint": "synonyms for impassivity", "clues": ["indifference", "phlegm", "unemotionality", "emotionlessness", "impassiveness", "stolidity", "impassivity"]}, {"answer": "impedance", "hint": "synonyms for impedance", "clues": ["electrical resistance", "resistance", "ohmic resistance", "resistivity", "impedance"]}, {"answer": "impediment", "hint": "synonyms for impediment", "clues": ["impedimenta", "check", "deterrent", "handicap", "baulk", "obstructor", "hindrance"]}, {"answer": "imperfect_tense", "hint": "synonyms for imperfect tense", "clues": ["continuous tense", "progressive tense", "progressive", "imperfect", "imperfect tense"]}, {"answer": "impersonation", "hint": "synonyms for impersonation", "clues": ["imposture", "imitation", "personation", "caricature"]}, {"answer": "impertinence", "hint": "synonyms for impertinence", "clues": ["pertness", "archness", "impudence", "perkiness", "freshness", "sauciness", "insolence", "crust", "cheek", "gall", "cheekiness", "impertinence"]}, {"answer": "implements_of_war", "hint": "synonyms for implements of war", "clues": ["weapons system", "arms", "weaponry", "munition", "implements of war"]}, {"answer": "implication", "hint": "synonyms for implication", "clues": ["significance", "conditional relation", "import", "entailment", "deduction", "logical implication", "implication"]}, {"answer": "import", "hint": "synonyms for import", "clues": ["importation", "moment", "implication", "significance", "meaning", "signification", "consequence", "import"]}, {"answer": "impost", "hint": "synonyms for impost", "clues": ["customs duty", "springer", "custom", "impost"]}, {"answer": "impregnation", "hint": "synonyms for impregnation", "clues": ["fertilization", "saturation", "fecundation", "impregnation"]}, {"answer": "impression", "hint": "synonyms for impression", "clues": ["depression", "imprint", "picture", "notion", "effect", "printing", "stamp", "mental picture", "opinion", "feeling", "belief", "impression"]}, {"answer": "imprimatur", "hint": "synonyms for imprimatur", "clues": ["countenance", "indorsement", "warrant", "sanction", "imprimatur"]}, {"answer": "impropriety", "hint": "synonyms for impropriety", "clues": ["improperness", "liberty", "familiarity", "indecorum", "indecency", "impropriety"]}, {"answer": "impudence", "hint": "synonyms for impudence", "clues": ["freshness", "insolence", "crust", "cheek", "gall", "cheekiness", "impertinence", "impudence"]}, {"answer": "impulse", "hint": "synonyms for impulse", "clues": ["whim", "nervous impulse", "neural impulse", "pulsing", "impetus", "impulsion", "pulse", "momentum", "urge", "caprice", "pulsation", "impulse"]}, {"answer": "inadvertence", "hint": "synonyms for inadvertence", "clues": ["inadvertency", "oversight", "unmindfulness", "heedlessness"]}, {"answer": "inanity", "hint": "synonyms for inanity", "clues": ["vacuity", "senselessness", "mindlessness", "pointlessness", "inanity"]}, {"answer": "inborn_reflex", "hint": "synonyms for inborn reflex", "clues": ["reflex action", "instinctive reflex", "reflex response", "physiological reaction", "reflex", "unconditioned reflex", "innate reflex", "inborn reflex"]}, {"answer": "incandescent_lamp", "hint": "synonyms for incandescent lamp", "clues": ["electric-light bulb", "lightbulb", "electric light", "bulb", "incandescent lamp"]}, {"answer": "incertitude", "hint": "synonyms for incertitude", "clues": ["uncertainty", "doubtfulness", "doubt", "dubiety", "dubiousness", "incertitude"]}, {"answer": "incision", "hint": "synonyms for incision", "clues": ["section", "dent", "surgical incision", "prick", "slit", "scratch", "incision"]}, {"answer": "inclemency", "hint": "synonyms for inclemency", "clues": ["hardness", "rigor", "rigourousness", "severeness", "severity", "harshness", "stiffness", "inclemency"]}, {"answer": "inclination", "hint": "synonyms for inclination", "clues": ["tendency", "lean", "inclination of an orbit", "magnetic dip", "list", "disposition", "inclining", "angle of inclination", "dip", "angle of dip", "tilt", "magnetic inclination", "inclination"]}, {"answer": "inconstancy", "hint": "synonyms for inconstancy", "clues": ["faithlessness", "changefulness", "falseness", "fickleness", "inconstancy"]}, {"answer": "increase", "hint": "synonyms for increase", "clues": ["step-up", "addition", "gain", "growth", "increment", "increase"]}, {"answer": "incumbrance", "hint": "synonyms for incumbrance", "clues": ["load", "onus", "burden", "interference", "hitch", "encumbrance", "preventive", "hindrance"]}, {"answer": "indecorum", "hint": "synonyms for indecorum", "clues": ["indecorousness", "liberty", "familiarity", "impropriety", "indecorum"]}, {"answer": "indefiniteness", "hint": "synonyms for indefiniteness", "clues": ["indeterminateness", "indetermination", "indeterminacy", "indefinity", "indefiniteness"]}, {"answer": "indefinity", "hint": "synonyms for indefinity", "clues": ["indefiniteness", "indetermination", "indeterminacy", "indeterminateness", "indefinity"]}, {"answer": "indemnification", "hint": "synonyms for indemnification", "clues": ["amends", "redress", "restitution", "damages", "indemnity", "indemnification"]}, {"answer": "indemnity", "hint": "synonyms for indemnity", "clues": ["amends", "redress", "restitution", "damages", "indemnification", "indemnity"]}, {"answer": "indentation", "hint": "synonyms for indentation", "clues": ["pitting", "indenture", "roughness", "indention", "indent"]}, {"answer": "indeterminacy", "hint": "synonyms for indeterminacy", "clues": ["indeterminateness", "indefiniteness", "indetermination", "indefinity", "indeterminacy"]}, {"answer": "indeterminateness", "hint": "synonyms for indeterminateness", "clues": ["indefiniteness", "indetermination", "indeterminacy", "indefinity", "indeterminateness"]}, {"answer": "indetermination", "hint": "synonyms for indetermination", "clues": ["indeterminateness", "indefiniteness", "indeterminacy", "indefinity", "indetermination"]}, {"answer": "index", "hint": "synonyms for index", "clues": ["indicator", "power", "index number", "exponent", "indicant", "index"]}, {"answer": "india_rubber", "hint": "synonyms for india rubber", "clues": ["natural rubber", "caoutchouc", "gum elastic", "rubber", "india rubber"]}, {"answer": "indicant", "hint": "synonyms for indicant", "clues": ["indicator", "indication", "index number", "index", "indicant"]}, {"answer": "indication", "hint": "synonyms for indication", "clues": ["denotation", "indicant", "reading", "meter reading", "indication"]}, {"answer": "indicative_mood", "hint": "synonyms for indicative mood", "clues": ["common mood", "indicative", "declarative", "declarative mood", "fact mood", "indicative mood"]}, {"answer": "indifference", "hint": "synonyms for indifference", "clues": ["numbness", "unconcern", "emotionlessness", "impassiveness", "impassivity", "phlegm", "unemotionality", "nonchalance", "spiritlessness", "apathy", "stolidity", "indifference"]}, {"answer": "indisposition", "hint": "synonyms for indisposition", "clues": ["disinclination", "hesitation", "hesitancy", "reluctance", "indisposition"]}, {"answer": "indistinctness", "hint": "synonyms for indistinctness", "clues": ["fuzziness", "blurriness", "fogginess", "softness", "indistinctness"]}, {"answer": "individuality", "hint": "synonyms for individuality", "clues": ["identity", "individualism", "personal identity", "individuation", "individuality"]}, {"answer": "indorsement", "hint": "synonyms for indorsement", "clues": ["countenance", "secondment", "warrant", "second", "imprimatur", "endorsement", "sanction", "blurb"]}, {"answer": "induction", "hint": "synonyms for induction", "clues": ["trigger", "generalization", "initiation", "evocation", "inductance", "inductive reasoning", "installation", "elicitation", "induction"]}, {"answer": "indulgence", "hint": "synonyms for indulgence", "clues": ["self-indulgence", "lenience", "humoring", "tomfoolery", "foolery", "pampering", "indulging", "folly", "lunacy", "craziness", "indulgence"]}, {"answer": "inebriant", "hint": "synonyms for inebriant", "clues": ["alcoholic drink", "alcoholic beverage", "alcohol", "intoxicant", "inebriant"]}, {"answer": "ineptitude", "hint": "synonyms for ineptitude", "clues": ["maladroitness", "slowness", "clumsiness", "awkwardness", "ineptness", "worthlessness", "ineptitude"]}, {"answer": "ineptness", "hint": "synonyms for ineptness", "clues": ["maladroitness", "slowness", "unsuitability", "unsuitableness", "ineptitude", "clumsiness", "awkwardness", "ineptness"]}, {"answer": "inevitable_accident", "hint": "synonyms for inevitable accident", "clues": ["act of God", "force majeure", "vis major", "unavoidable casualty", "inevitable accident"]}, {"answer": "infernal_region", "hint": "synonyms for infernal region", "clues": ["netherworld", "pit", "perdition", "underworld", "nether region", "infernal region"]}, {"answer": "inferno", "hint": "synonyms for inferno", "clues": ["conflagration", "hellhole", "pit", "infernal region", "perdition", "hell", "hell on earth", "nether region", "snake pit", "the pits", "inferno"]}, {"answer": "infiniteness", "hint": "synonyms for infiniteness", "clues": ["infinitude", "limitlessness", "unboundedness", "boundlessness", "infiniteness"]}, {"answer": "infinitude", "hint": "synonyms for infinitude", "clues": ["infiniteness", "limitlessness", "unboundedness", "boundlessness", "infinitude"]}, {"answer": "inflammation", "hint": "synonyms for inflammation", "clues": ["ignition", "kindling", "lighting", "inflaming", "firing", "inflammation"]}, {"answer": "inflation", "hint": "synonyms for inflation", "clues": ["ostentatiousness", "puffiness", "pretentiousness", "ostentation", "pomposity", "pompousness", "splashiness", "rising prices", "inflation"]}, {"answer": "inflection", "hint": "synonyms for inflection", "clues": ["modulation", "flexion", "prosody", "flection"]}, {"answer": "infliction", "hint": "synonyms for infliction", "clues": ["pain in the neck", "annoyance", "imposition", "botheration", "pain", "pain in the ass", "bother", "infliction"]}, {"answer": "inflorescence", "hint": "synonyms for inflorescence", "clues": ["florescence", "anthesis", "blossoming", "flowering"]}, {"answer": "information", "hint": "synonyms for information", "clues": ["data", "info", "entropy", "selective information", "information"]}, {"answer": "information_processing_system", "hint": "synonyms for information processing system", "clues": ["electronic computer", "computing device", "data processor", "computing machine", "computer", "information processing system"]}, {"answer": "informational_rna", "hint": "synonyms for informational rna", "clues": ["template RNA", "mRNA", "informational RNA", "messenger RNA"]}, {"answer": "infraction", "hint": "synonyms for infraction", "clues": ["infringement", "misdemeanor", "violation", "infraction"]}, {"answer": "infringement", "hint": "synonyms for infringement", "clues": ["misdemeanor", "infraction", "violation", "infringement"]}, {"answer": "ingredient", "hint": "synonyms for ingredient", "clues": ["constituent", "fixings", "factor", "component", "element", "ingredient"]}, {"answer": "ingress", "hint": "synonyms for ingress", "clues": ["entering", "entry", "incoming", "entrance", "immersion", "ingress"]}, {"answer": "ingroup", "hint": "synonyms for ingroup", "clues": ["inner circle", "clique", "pack", "coterie", "camp", "ingroup"]}, {"answer": "inhalation", "hint": "synonyms for inhalation", "clues": ["breathing in", "intake", "inhalant", "aspiration", "inhalation"]}, {"answer": "inhumation", "hint": "synonyms for inhumation", "clues": ["entombment", "sepulture", "interment", "burial", "inhumation"]}, {"answer": "iniquity", "hint": "synonyms for iniquity", "clues": ["injustice", "immorality", "evil", "shabbiness", "unfairness", "wickedness", "iniquity"]}, {"answer": "initiation", "hint": "synonyms for initiation", "clues": ["foundation", "knowledgeability", "trigger", "innovation", "origination", "knowledgeableness", "induction", "instauration", "creation", "installation", "founding", "institution", "initiation"]}, {"answer": "injustice", "hint": "synonyms for injustice", "clues": ["unjustness", "iniquity", "shabbiness", "unfairness", "injustice"]}, {"answer": "inn", "hint": "synonyms for inn", "clues": ["hostelry", "auberge", "lodge", "inn"]}, {"answer": "innate_reflex", "hint": "synonyms for innate reflex", "clues": ["reflex action", "instinctive reflex", "inborn reflex", "reflex response", "physiological reaction", "reflex", "unconditioned reflex", "innate reflex"]}, {"answer": "inner_circle", "hint": "synonyms for inner circle", "clues": ["ingroup", "clique", "pack", "coterie", "camp", "inner circle"]}, {"answer": "innovation", "hint": "synonyms for innovation", "clues": ["foundation", "conception", "institution", "initiation", "invention", "excogitation", "origination", "instauration", "creation", "founding", "design", "introduction", "innovation"]}, {"answer": "input", "hint": "synonyms for input", "clues": ["comment", "remark", "stimulus", "stimulation", "input signal", "stimulant", "input"]}, {"answer": "inquiry", "hint": "synonyms for inquiry", "clues": ["interrogation", "enquiry", "query", "question", "research"]}, {"answer": "ins", "hint": "synonyms for ins", "clues": ["in", "atomic number 49", "inch", "indium"]}, {"answer": "insane_asylum", "hint": "synonyms for insane asylum", "clues": ["mental institution", "mental home", "mental hospital", "psychiatric hospital", "institution", "asylum", "insane asylum"]}, {"answer": "insensibility", "hint": "synonyms for insensibility", "clues": ["unfeelingness", "hardness", "callousness", "callosity", "insensibility"]}, {"answer": "insight", "hint": "synonyms for insight", "clues": ["penetration", "sixth sense", "perceptiveness", "brainwave", "brainstorm", "perceptivity", "insight"]}, {"answer": "insipidity", "hint": "synonyms for insipidity", "clues": ["insipidness", "dreariness", "boringness", "blandness", "insipidity"]}, {"answer": "insipidness", "hint": "synonyms for insipidness", "clues": ["dreariness", "insipidity", "boringness", "blandness", "insipidness"]}, {"answer": "insolence", "hint": "synonyms for insolence", "clues": ["crust", "impertinence", "impudence", "gall", "cheekiness", "freshness", "insolence"]}, {"answer": "inspiration", "hint": "synonyms for inspiration", "clues": ["breathing in", "intake", "divine guidance", "brainchild", "aspiration", "stirring", "inhalation"]}, {"answer": "installation", "hint": "synonyms for installation", "clues": ["induction", "facility", "installment", "initiation", "installing", "installation"]}, {"answer": "installment", "hint": "synonyms for installment", "clues": ["instalment", "installation", "installing", "episode"]}, {"answer": "instalment", "hint": "synonyms for instalment", "clues": ["installment", "installation", "installing", "episode"]}, {"answer": "instance", "hint": "synonyms for instance", "clues": ["case", "illustration", "example", "representative", "instance"]}, {"answer": "instancy", "hint": "synonyms for instancy", "clues": ["imperativeness", "immediacy", "instantaneousness", "immediateness", "instancy"]}, {"answer": "instauration", "hint": "synonyms for instauration", "clues": ["foundation", "innovation", "initiation", "origination", "creation", "founding", "institution", "introduction", "instauration"]}, {"answer": "instinctive_reflex", "hint": "synonyms for instinctive reflex", "clues": ["reflex action", "inborn reflex", "reflex response", "physiological reaction", "reflex", "unconditioned reflex", "innate reflex", "instinctive reflex"]}, {"answer": "institution", "hint": "synonyms for institution", "clues": ["foundation", "mental institution", "innovation", "initiation", "establishment", "origination", "insane asylum", "asylum", "instauration", "mental home", "creation", "founding", "mental hospital", "psychiatric hospital", "introduction", "institution"]}, {"answer": "instruction", "hint": "synonyms for instruction", "clues": ["direction", "command", "education", "statement", "program line", "pedagogy", "teaching", "educational activity", "didactics", "instruction"]}, {"answer": "instructions", "hint": "synonyms for instructions", "clues": ["book of instructions", "operating instructions", "direction", "instruction", "command", "education", "instruction manual", "statement", "program line", "pedagogy", "teaching", "educational activity", "didactics"]}, {"answer": "instrument", "hint": "synonyms for instrument", "clues": ["instrumental role", "musical instrument", "legal instrument", "legal document", "official document", "tool", "instrument"]}, {"answer": "instrument_panel", "hint": "synonyms for instrument panel", "clues": ["control panel", "board", "panel", "control board", "instrument panel"]}, {"answer": "insult", "hint": "synonyms for insult", "clues": ["abuse", "contumely", "affront", "vilification", "revilement", "insult"]}, {"answer": "insurance_company", "hint": "synonyms for insurance company", "clues": ["underwriter", "insurance underwriter", "insurance firm", "insurer", "insurance company"]}, {"answer": "insurance_firm", "hint": "synonyms for insurance firm", "clues": ["insurance company", "underwriter", "insurance underwriter", "insurer", "insurance firm"]}, {"answer": "insurance_underwriter", "hint": "synonyms for insurance underwriter", "clues": ["insurance company", "underwriter", "insurance firm", "insurer", "insurance underwriter"]}, {"answer": "insurer", "hint": "synonyms for insurer", "clues": ["underwriter", "insurance company", "insurance underwriter", "insurance firm", "insurer"]}, {"answer": "insurrection", "hint": "synonyms for insurrection", "clues": ["rising", "revolt", "rebellion", "insurrection"]}, {"answer": "intake", "hint": "synonyms for intake", "clues": ["breathing in", "uptake", "aspiration", "consumption", "inlet", "ingestion", "inhalation", "intake"]}, {"answer": "intellection", "hint": "synonyms for intellection", "clues": ["mentation", "thought", "thinking", "thought process", "cerebration", "intellection"]}, {"answer": "intelligence", "hint": "synonyms for intelligence", "clues": ["word", "intelligence activity", "intelligence service", "tidings", "intelligence information", "news", "intelligence agency", "intelligence"]}, {"answer": "intensity", "hint": "synonyms for intensity", "clues": ["intensiveness", "chroma", "strength", "volume", "intensity level", "saturation", "vividness", "loudness", "intensity"]}, {"answer": "intention", "hint": "synonyms for intention", "clues": ["purpose", "intent", "aim", "design", "intention"]}, {"answer": "interbreeding", "hint": "synonyms for interbreeding", "clues": ["cross", "crossbreeding", "hybridizing", "miscegenation", "hybridisation", "interbreeding"]}, {"answer": "intercourse", "hint": "synonyms for intercourse", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "sexual relation", "relation", "social intercourse", "intercourse"]}, {"answer": "interest", "hint": "synonyms for interest", "clues": ["involvement", "pursuit", "sake", "interestingness", "pastime", "interest group", "interest"]}, {"answer": "interference", "hint": "synonyms for interference", "clues": ["disturbance", "hitch", "incumbrance", "preventive", "hindrance", "intervention", "noise", "interference"]}, {"answer": "interjection", "hint": "synonyms for interjection", "clues": ["ejaculation", "interpellation", "interposition", "interjection"]}, {"answer": "interment", "hint": "synonyms for interment", "clues": ["inhumation", "entombment", "sepulture", "burial", "interment"]}, {"answer": "intermission", "hint": "synonyms for intermission", "clues": ["break", "interruption", "suspension", "pause", "intermission"]}, {"answer": "intermixture", "hint": "synonyms for intermixture", "clues": ["mix", "admixture", "concoction", "commixture", "intermixture"]}, {"answer": "international_mile", "hint": "synonyms for international mile", "clues": ["mi", "land mile", "statute mile", "stat mi", "mile", "international mile"]}, {"answer": "international_nautical_mile", "hint": "synonyms for international nautical mile", "clues": ["mi", "naut mi", "knot", "air mile", "nautical mile", "mile", "international nautical mile"]}, {"answer": "internment", "hint": "synonyms for internment", "clues": ["imprisonment", "impoundment", "poundage", "impounding", "internment"]}, {"answer": "interpolation", "hint": "synonyms for interpolation", "clues": ["interposition", "interpellation", "insertion", "interjection"]}, {"answer": "interposition", "hint": "synonyms for interposition", "clues": ["intervention", "interpolation", "interjection", "interposition"]}, {"answer": "interpretation", "hint": "synonyms for interpretation", "clues": ["reading", "rendition", "version", "rendering", "interpreting", "interpretation"]}, {"answer": "interrogation", "hint": "synonyms for interrogation", "clues": ["inquiry", "question", "interrogative", "interrogative sentence", "query", "interrogatory", "examination", "interrogation"]}, {"answer": "interruption", "hint": "synonyms for interruption", "clues": ["break", "intermission", "suspension", "disruption", "gap", "pause", "interruption"]}, {"answer": "intersection", "hint": "synonyms for intersection", "clues": ["intersection point", "crossroad", "point of intersection", "crossing", "carrefour", "product", "overlap", "convergence", "crossway", "intersection"]}, {"answer": "intervention", "hint": "synonyms for intervention", "clues": ["intercession", "interposition", "interference", "treatment", "intervention"]}, {"answer": "intimation", "hint": "synonyms for intimation", "clues": ["hint", "inkling", "glimmer", "breath", "intimation"]}, {"answer": "introduction", "hint": "synonyms for introduction", "clues": ["intromission", "foundation", "first appearance", "launching", "innovation", "intro", "initiation", "origination", "insertion", "debut", "instauration", "creation", "unveiling", "entry", "founding", "presentation", "institution", "introduction"]}, {"answer": "intrusion", "hint": "synonyms for intrusion", "clues": ["invasion", "usurpation", "trespass", "violation", "encroachment", "intrusion"]}, {"answer": "inundation", "hint": "synonyms for inundation", "clues": ["alluvion", "flood", "deluge", "torrent", "inundation"]}, {"answer": "invention", "hint": "synonyms for invention", "clues": ["innovation", "conception", "excogitation", "design", "invention"]}, {"answer": "inventory", "hint": "synonyms for inventory", "clues": ["inventorying", "stock list", "stocktaking", "stock", "armory"]}, {"answer": "inversion", "hint": "synonyms for inversion", "clues": ["everting", "sexual inversion", "eversion", "upending", "anastrophe", "inversion"]}, {"answer": "investiture", "hint": "synonyms for investiture", "clues": ["enthronement", "enthronisation", "investment", "coronation", "investiture"]}, {"answer": "invigoration", "hint": "synonyms for invigoration", "clues": ["vivification", "animation", "spiritedness", "brio", "invigoration"]}, {"answer": "invocation", "hint": "synonyms for invocation", "clues": ["conjury", "supplication", "conjuration", "conjuring", "invocation"]}, {"answer": "involution", "hint": "synonyms for involution", "clues": ["elaborateness", "involvement", "exponentiation", "engagement", "participation", "enfolding", "elaboration", "intricacy", "involution"]}, {"answer": "involvement", "hint": "synonyms for involvement", "clues": ["engagement", "involution", "participation", "interest", "involvement"]}, {"answer": "inwardness", "hint": "synonyms for inwardness", "clues": ["meat", "essence", "nub", "marrow", "center", "nitty-gritty", "centre", "heart", "pith", "sum", "gist", "heart and soul", "internality", "kernel", "substance", "core", "inwardness"]}, {"answer": "iota", "hint": "synonyms for iota", "clues": ["tittle", "smidgen", "scintilla", "whit", "shred", "iota"]}, {"answer": "ira", "hint": "synonyms for ira", "clues": ["individual retirement account", "ire", "wrath", "anger", "ira"]}, {"answer": "ire", "hint": "synonyms for ire", "clues": ["choler", "anger", "wrath", "ira", "ire"]}, {"answer": "irish_bull", "hint": "synonyms for irish bull", "clues": ["shit", "dogshit", "bull", "horseshit", "bullshit", "crap", "irish bull"]}, {"answer": "irish_potato", "hint": "synonyms for irish potato", "clues": ["spud", "murphy", "potato", "white potato", "tater", "irish potato"]}, {"answer": "irons", "hint": "synonyms for irons", "clues": ["branding iron", "atomic number 26", "chains", "smoothing iron", "iron"]}, {"answer": "irradiation", "hint": "synonyms for irradiation", "clues": ["beam", "actinotherapy", "radiation therapy", "shaft", "beam of light", "shaft of light", "ray of light", "light beam", "radiotherapy", "ray", "radiation"]}, {"answer": "irritability", "hint": "synonyms for irritability", "clues": ["peevishness", "temper", "fussiness", "excitability", "surliness", "fretfulness", "choler", "petulance", "biliousness", "crossness", "pettishness", "snappishness", "irritability"]}, {"answer": "irritation", "hint": "synonyms for irritation", "clues": ["temper", "discomfort", "provocation", "annoying", "aggravation", "annoyance", "soreness", "pique", "vexation", "irritation"]}, {"answer": "ism", "hint": "synonyms for ism", "clues": ["philosophical system", "school of thought", "philosophy", "doctrine", "ism"]}, {"answer": "issue", "hint": "synonyms for issue", "clues": ["outlet", "issuance", "effect", "emergence", "issuing", "number", "way out", "return", "upshot", "result", "topic", "yield", "subject", "egress", "government issue", "publication", "takings", "military issue", "event", "consequence", "take", "exit", "proceeds", "payoff", "matter", "outcome", "issue"]}, {"answer": "italian_sandwich", "hint": "synonyms for italian sandwich", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "italian sandwich"]}, {"answer": "itinerary", "hint": "synonyms for itinerary", "clues": ["travel plan", "route", "path", "travel guidebook", "itinerary"]}, {"answer": "ivory", "hint": "synonyms for ivory", "clues": ["pearl", "tusk", "off-white", "bone", "ivory"]}, {"answer": "izzard", "hint": "synonyms for izzard", "clues": ["ezed", "z", "zee", "izzard"]}, {"answer": "jab", "hint": "synonyms for jab", "clues": ["jabbing", "thrusting", "poke", "dig", "poking", "jab"]}, {"answer": "jabbing", "hint": "synonyms for jabbing", "clues": ["thrusting", "jab", "poke", "poking", "jabbing"]}, {"answer": "jack", "hint": "synonyms for jack", "clues": ["shit", "diddlysquat", "squat", "diddlyshit", "jackstones", "knave", "diddly", "doodly-squat", "jackfruit", "jak"]}, {"answer": "jacket", "hint": "synonyms for jacket", "clues": ["cap", "jacket crown", "crown", "crownwork", "jacket"]}, {"answer": "jacket_crown", "hint": "synonyms for jacket crown", "clues": ["cap", "crown", "crownwork", "jacket", "jacket crown"]}, {"answer": "jacks", "hint": "synonyms for jacks", "clues": ["shit", "diddlysquat", "squat", "jackstones", "diddlyshit", "knave", "diddly", "doodly-squat", "jack", "jackfruit", "knucklebones"]}, {"answer": "jail", "hint": "synonyms for jail", "clues": ["clink", "jailhouse", "pokey", "gaol", "slammer", "jail"]}, {"answer": "jailbreak", "hint": "synonyms for jailbreak", "clues": ["break", "breakout", "gaolbreak", "prisonbreak", "prison-breaking", "jailbreak"]}, {"answer": "jailhouse", "hint": "synonyms for jailhouse", "clues": ["clink", "pokey", "gaol", "jail", "slammer", "jailhouse"]}, {"answer": "jam", "hint": "synonyms for jam", "clues": ["press", "crush", "electronic jamming", "jamming", "jam"]}, {"answer": "jape", "hint": "synonyms for jape", "clues": ["gag", "joke", "laugh", "jest", "jape"]}, {"answer": "japery", "hint": "synonyms for japery", "clues": ["clowning", "frivolity", "harlequinade", "buffoonery", "prank", "japery"]}, {"answer": "jar", "hint": "synonyms for jar", "clues": ["jarful", "shock", "jolt", "jounce", "jar"]}, {"answer": "jargon", "hint": "synonyms for jargon", "clues": ["argot", "cant", "slang", "lingo", "jargoon", "patois", "vernacular"]}, {"answer": "jaundice", "hint": "synonyms for jaundice", "clues": ["tartness", "bitterness", "acerbity", "acrimony", "thorniness", "jaundice"]}, {"answer": "jaunt", "hint": "synonyms for jaunt", "clues": ["outing", "pleasure trip", "junket", "sashay", "expedition", "excursion", "jaunt"]}, {"answer": "jauntiness", "hint": "synonyms for jauntiness", "clues": ["breeziness", "dapperness", "rakishness", "nattiness", "jauntiness"]}, {"answer": "jazz", "hint": "synonyms for jazz", "clues": ["idle words", "malarkey", "wind", "nothingness", "jazz"]}, {"answer": "jejuneness", "hint": "synonyms for jejuneness", "clues": ["tameness", "vapidness", "jejunity", "vapidity", "jejuneness"]}, {"answer": "jejunity", "hint": "synonyms for jejunity", "clues": ["tameness", "vapidness", "jejuneness", "vapidity", "jejunity"]}, {"answer": "jerk", "hint": "synonyms for jerk", "clues": ["jerked meat", "jolt", "jerking", "saccade", "jerky", "tug"]}, {"answer": "jest", "hint": "synonyms for jest", "clues": ["gag", "jocularity", "joke", "jape", "laugh", "jest"]}, {"answer": "jet_black", "hint": "synonyms for jet black", "clues": ["ebony", "coal black", "sable", "pitch black", "soot black", "jet black"]}, {"answer": "jetty", "hint": "synonyms for jetty", "clues": ["bulwark", "groin", "breakwater", "groyne", "mole", "seawall", "jetty"]}, {"answer": "jibe", "hint": "synonyms for jibe", "clues": ["slam", "barb", "shot", "gibe", "dig", "shaft", "jibe"]}, {"answer": "jiffy", "hint": "synonyms for jiffy", "clues": ["twinkling", "instant", "flash", "wink", "split second", "heartbeat", "blink of an eye", "trice", "jiffy"]}, {"answer": "jiggery-pokery", "hint": "synonyms for jiggery-pokery", "clues": ["slickness", "skullduggery", "trickery", "hocus-pocus", "hanky panky", "jiggery-pokery"]}, {"answer": "jigsaw", "hint": "synonyms for jigsaw", "clues": ["fretsaw", "reciprocating saw", "scroll saw", "saber saw", "jigsaw"]}, {"answer": "jingoism", "hint": "synonyms for jingoism", "clues": ["superpatriotism", "chauvinism", "flag waving", "ultranationalism", "jingoism"]}, {"answer": "jitney", "hint": "synonyms for jitney", "clues": ["passenger vehicle", "double-decker", "motorcoach", "bus", "charabanc", "omnibus", "autobus", "motorbus", "coach", "jitney"]}, {"answer": "job", "hint": "synonyms for job", "clues": ["line", "chore", "business", "caper", "line of work", "task", "occupation", "job"]}, {"answer": "jock", "hint": "synonyms for jock", "clues": ["supporter", "jockstrap", "athletic supporter", "suspensor", "jock"]}, {"answer": "jockstrap", "hint": "synonyms for jockstrap", "clues": ["supporter", "suspensor", "athletic supporter", "jock", "jockstrap"]}, {"answer": "jocosity", "hint": "synonyms for jocosity", "clues": ["jocoseness", "jocularity", "merriness", "humorousness", "jocosity"]}, {"answer": "jocularity", "hint": "synonyms for jocularity", "clues": ["jocosity", "joke", "jest", "jocundity", "jocularity"]}, {"answer": "jodhpurs", "hint": "synonyms for jodhpurs", "clues": ["jodhpur", "jodhpur boot", "jodhpur shoe", "jodhpur breeches", "riding breeches"]}, {"answer": "john", "hint": "synonyms for john", "clues": ["toilet", "can", "privy", "lavatory", "bathroom", "lav", "john"]}, {"answer": "john_barleycorn", "hint": "synonyms for john barleycorn", "clues": ["liquor", "strong drink", "booze", "hard drink", "hard liquor", "spirits", "john barleycorn"]}, {"answer": "johns", "hint": "synonyms for johns", "clues": ["john", "toilet", "can", "privy", "lavatory", "bathroom", "lav"]}, {"answer": "join", "hint": "synonyms for join", "clues": ["juncture", "union", "sum", "junction", "articulation", "joint"]}, {"answer": "jointure", "hint": "synonyms for jointure", "clues": ["uniting", "union", "conjugation", "unification", "legal jointure", "jointure"]}, {"answer": "joke", "hint": "synonyms for joke", "clues": ["gag", "caper", "jest", "trick", "put-on", "antic", "prank", "jocularity", "jape", "laugh", "joke"]}, {"answer": "jolt", "hint": "synonyms for jolt", "clues": ["jar", "jounce", "saccade", "jerking", "shock", "jolt"]}, {"answer": "jook", "hint": "synonyms for jook", "clues": ["juke joint", "jook joint", "juke house", "juke", "congee", "jook house", "jook"]}, {"answer": "jook_house", "hint": "synonyms for jook house", "clues": ["juke joint", "jook joint", "juke house", "juke", "jook", "jook house"]}, {"answer": "jook_joint", "hint": "synonyms for jook joint", "clues": ["juke joint", "juke house", "juke", "jook house", "jook", "jook joint"]}, {"answer": "jot", "hint": "synonyms for jot", "clues": ["hint", "jotting", "tinge", "touch", "soupcon", "mite", "pinch", "speck", "jot"]}, {"answer": "joy", "hint": "synonyms for joy", "clues": ["delight", "pleasure", "joyousness", "joyfulness", "joy"]}, {"answer": "jubilation", "hint": "synonyms for jubilation", "clues": ["jubilancy", "celebration", "rejoicing", "exultation", "jubilation"]}, {"answer": "judgement", "hint": "synonyms for judgement", "clues": ["mind", "sound judgment", "perspicacity", "legal opinion", "judging", "judgment", "discernment", "judicial decision", "opinion", "assessment", "sagacity", "sagaciousness"]}, {"answer": "judgement_day", "hint": "synonyms for judgement day", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "judgement day"]}, {"answer": "judgment", "hint": "synonyms for judgment", "clues": ["sagaciousness", "mind", "sound judgment", "legal opinion", "judging", "discernment", "judicial decision", "opinion", "judgement", "assessment", "sagacity", "perspicacity"]}, {"answer": "judgment_day", "hint": "synonyms for judgment day", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "judgment day"]}, {"answer": "judicature", "hint": "synonyms for judicature", "clues": ["administration", "judiciary", "judicial system", "judicatory", "judgeship", "tribunal", "court", "judicature"]}, {"answer": "judiciary", "hint": "synonyms for judiciary", "clues": ["bench", "judicatory", "judicature", "judicial system", "judiciary"]}, {"answer": "juju", "hint": "synonyms for juju", "clues": ["hoodoo", "fetish", "fetich", "voodoo", "juju"]}, {"answer": "juke", "hint": "synonyms for juke", "clues": ["juke joint", "jook joint", "juke house", "fake", "jook house", "jook", "juke"]}, {"answer": "juke_house", "hint": "synonyms for juke house", "clues": ["juke joint", "jook joint", "juke", "jook house", "jook", "juke house"]}, {"answer": "juke_joint", "hint": "synonyms for juke joint", "clues": ["jook joint", "juke house", "juke", "jook house", "jook", "juke joint"]}, {"answer": "jump", "hint": "synonyms for jump", "clues": ["leap", "startle", "start", "jumping", "parachuting", "saltation"]}, {"answer": "jumper", "hint": "synonyms for jumper", "clues": ["sweater", "pinafore", "pinny", "jump shot", "jumper"]}, {"answer": "junction", "hint": "synonyms for junction", "clues": ["juncture", "join", "conjunction", "adjunction", "articulation"]}, {"answer": "juncture", "hint": "synonyms for juncture", "clues": ["join", "junction", "articulation", "occasion", "juncture"]}, {"answer": "junk", "hint": "synonyms for junk", "clues": ["rubble", "dust", "debris", "detritus", "junk"]}, {"answer": "junk_heap", "hint": "synonyms for junk heap", "clues": ["trash heap", "trash pile", "junk pile", "scrapheap", "refuse heap", "garbage heap", "rubbish heap", "junk heap"]}, {"answer": "junk_pile", "hint": "synonyms for junk pile", "clues": ["trash heap", "trash pile", "scrapheap", "refuse heap", "junk heap", "garbage heap", "rubbish heap", "junk pile"]}, {"answer": "junket", "hint": "synonyms for junket", "clues": ["outing", "jaunt", "pleasure trip", "sashay", "expedition", "excursion", "junket"]}, {"answer": "jut", "hint": "synonyms for jut", "clues": ["protuberance", "hump", "swelling", "extrusion", "gibbousness", "bump", "jutting", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "projection", "jut"]}, {"answer": "kale", "hint": "synonyms for kale", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "kail", "moolah", "boodle", "lolly", "shekels", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "cole", "kale"]}, {"answer": "kalian", "hint": "synonyms for kalian", "clues": ["narghile", "sheesha", "hookah", "calean", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble", "kalian"]}, {"answer": "kaolin", "hint": "synonyms for kaolin", "clues": ["china stone", "terra alba", "china clay", "porcelain clay", "kaoline"]}, {"answer": "kaoline", "hint": "synonyms for kaoline", "clues": ["china stone", "terra alba", "kaolin", "china clay", "porcelain clay"]}, {"answer": "kb", "hint": "synonyms for kb", "clues": ["kilobit", "kibibyte", "kB", "kbit", "kilobyte"]}, {"answer": "kc", "hint": "synonyms for kc", "clues": ["kilocycle", "kilocycle per second", "kilohertz", "kHz", "kc"]}, {"answer": "keenness", "hint": "synonyms for keenness", "clues": ["acuity", "acuteness", "avidness", "eagerness", "sharpness", "avidity", "keenness"]}, {"answer": "keep", "hint": "synonyms for keep", "clues": ["support", "donjon", "living", "bread and butter", "sustenance", "dungeon", "livelihood", "hold", "keep"]}, {"answer": "keeping", "hint": "synonyms for keeping", "clues": ["holding", "retention", "guardianship", "safekeeping", "keeping"]}, {"answer": "kernel", "hint": "synonyms for kernel", "clues": ["meat", "essence", "nub", "marrow", "center", "nitty-gritty", "centre", "heart", "pith", "inwardness", "gist", "sum", "heart and soul", "substance", "core", "kernel"]}, {"answer": "kettle", "hint": "synonyms for kettle", "clues": ["timpani", "tympanum", "kettle hole", "kettledrum", "boiler", "kettleful", "kettle"]}, {"answer": "kettledrum", "hint": "synonyms for kettledrum", "clues": ["timpani", "kettle", "tympanum", "kettledrum"]}, {"answer": "keystone", "hint": "synonyms for keystone", "clues": ["linchpin", "headstone", "backbone", "mainstay", "anchor", "key", "keystone"]}, {"answer": "khz", "hint": "synonyms for khz", "clues": ["kc", "kilohertz", "kilocycle", "kilocycle per second", "kHz"]}, {"answer": "kick", "hint": "synonyms for kick", "clues": ["squawk", "flush", "rush", "recoil", "beef", "kicking", "charge", "gripe", "bitch", "thrill", "boot", "bang"]}, {"answer": "kickoff", "hint": "synonyms for kickoff", "clues": ["offset", "start", "send-off", "beginning", "starting time", "outset", "showtime", "start-off", "get-go", "commencement", "first", "kickoff"]}, {"answer": "kickshaw", "hint": "synonyms for kickshaw", "clues": ["goody", "treat", "dainty", "delicacy", "kickshaw"]}, {"answer": "kilocycle", "hint": "synonyms for kilocycle", "clues": ["kc", "kilocycle per second", "kilohertz", "kHz", "kilocycle"]}, {"answer": "kilocycle_per_second", "hint": "synonyms for kilocycle per second", "clues": ["kilocycle", "kc", "kilohertz", "kHz", "kilocycle per second"]}, {"answer": "kilohertz", "hint": "synonyms for kilohertz", "clues": ["kilocycle", "kc", "kilocycle per second", "kHz", "kilohertz"]}, {"answer": "kin_group", "hint": "synonyms for kin group", "clues": ["kinship group", "kin", "kindred", "tribe", "clan", "kin group"]}, {"answer": "kinaesthesia", "hint": "synonyms for kinaesthesia", "clues": ["kinesthesia", "feeling of movement", "sense of movement", "kinesthetics", "muscle sense"]}, {"answer": "kindling", "hint": "synonyms for kindling", "clues": ["tinder", "inflammation", "lighting", "spunk", "touchwood", "firing", "ignition", "kindling"]}, {"answer": "kinesthesia", "hint": "synonyms for kinesthesia", "clues": ["kinaesthesia", "feeling of movement", "sense of movement", "kinesthetics", "muscle sense"]}, {"answer": "kinesthesis", "hint": "synonyms for kinesthesis", "clues": ["kinesthesia", "kinesthetics", "muscle sense", "sense of movement"]}, {"answer": "kinfolk", "hint": "synonyms for kinfolk", "clues": ["family line", "family", "phratry", "kinsfolk", "sept", "folk"]}, {"answer": "kinsfolk", "hint": "synonyms for kinsfolk", "clues": ["family line", "family", "phratry", "sept", "kinfolk", "folk"]}, {"answer": "kinship_group", "hint": "synonyms for kinship group", "clues": ["kin group", "kin", "kindred", "tribe", "clan", "kinship group"]}, {"answer": "kissing", "hint": "synonyms for kissing", "clues": ["fondling", "necking", "snuggling", "caressing", "cuddling", "petting", "hugging", "smooching", "kissing"]}, {"answer": "kitchen_range", "hint": "synonyms for kitchen range", "clues": ["kitchen stove", "cooking stove", "range", "stove", "kitchen range"]}, {"answer": "kitchen_stove", "hint": "synonyms for kitchen stove", "clues": ["cooking stove", "range", "kitchen range", "stove", "kitchen stove"]}, {"answer": "knapsack", "hint": "synonyms for knapsack", "clues": ["rucksack", "back pack", "haversack", "packsack", "knapsack"]}, {"answer": "knee_breeches", "hint": "synonyms for knee breeches", "clues": ["breeches", "knickers", "knee pants", "knickerbockers", "knee breeches"]}, {"answer": "knee_pants", "hint": "synonyms for knee pants", "clues": ["breeches", "knickers", "knee breeches", "knickerbockers", "knee pants"]}, {"answer": "knickerbockers", "hint": "synonyms for knickerbockers", "clues": ["breeches", "knee pants", "knickers", "knee breeches", "knickerbockers"]}, {"answer": "knickers", "hint": "synonyms for knickers", "clues": ["knee breeches", "bloomers", "pants", "knickerbockers", "breeches", "knee pants", "drawers", "knickers"]}, {"answer": "knickknack", "hint": "synonyms for knickknack", "clues": ["whatnot", "novelty", "knickknackery", "bric-a-brac", "nicknack"]}, {"answer": "knickknackery", "hint": "synonyms for knickknackery", "clues": ["nicknack", "whatnot", "bric-a-brac", "knickknackery"]}, {"answer": "knit", "hint": "synonyms for knit", "clues": ["knitwork", "knitting", "plain stitch", "knit stitch", "plain", "knit"]}, {"answer": "knob", "hint": "synonyms for knob", "clues": ["pommel", "thickening", "node", "boss", "knob"]}, {"answer": "knock", "hint": "synonyms for knock", "clues": ["knocking", "belt", "smash", "bash", "roast", "whack", "rap", "whang", "bang"]}, {"answer": "knoll", "hint": "synonyms for knoll", "clues": ["hummock", "mound", "hillock", "knoll"]}, {"answer": "knot", "hint": "synonyms for knot", "clues": ["mi", "gnarl", "burl", "air mile", "nautical mile", "international nautical mile", "slub", "naut mi", "mile", "knot"]}, {"answer": "knowingness", "hint": "synonyms for knowingness", "clues": ["cognizance", "consciousness", "awareness", "knowingness"]}, {"answer": "ks", "hint": "synonyms for ks", "clues": ["green", "kB", "super C", "kilobyte", "thousand", "atomic number 19", "special K", "kibibyte", "cat valium", "thou", "chiliad", "jet", "1000", "super acid", "grand", "one thousand", "k", "kelvin", "yard", "honey oil", "potassium"]}, {"answer": "lab", "hint": "synonyms for lab", "clues": ["research laboratory", "science lab", "research lab", "laboratory", "science laboratory", "lab"]}, {"answer": "labor", "hint": "synonyms for labor", "clues": ["working class", "labor movement", "trade union movement", "proletariat", "undertaking", "toil", "labour", "project", "task"]}, {"answer": "labor_union", "hint": "synonyms for labor union", "clues": ["trades union", "union", "brotherhood", "labor union"]}, {"answer": "laboratory", "hint": "synonyms for laboratory", "clues": ["research laboratory", "science lab", "testing ground", "lab", "research lab", "science laboratory", "laboratory"]}, {"answer": "labour", "hint": "synonyms for labour", "clues": ["toil", "labor", "working class", "proletariat"]}, {"answer": "labyrinthine_sense", "hint": "synonyms for labyrinthine sense", "clues": ["equilibrium", "vestibular sense", "sense of equilibrium", "sense of balance", "labyrinthine sense"]}, {"answer": "lacing", "hint": "synonyms for lacing", "clues": ["licking", "whacking", "trouncing", "lace", "beating", "drubbing", "thrashing", "lacing"]}, {"answer": "lactoflavin", "hint": "synonyms for lactoflavin", "clues": ["ovoflavin", "hepatoflavin", "vitamin G", "vitamin B2", "riboflavin", "lactoflavin"]}, {"answer": "lading", "hint": "synonyms for lading", "clues": ["load", "consignment", "shipment", "cargo", "payload", "freight", "lading"]}, {"answer": "lag", "hint": "synonyms for lag", "clues": ["slowdown", "meantime", "interim", "meanwhile", "stave", "retardation", "lag"]}, {"answer": "lament", "hint": "synonyms for lament", "clues": ["lamentation", "coronach", "dirge", "threnody", "requiem", "elegy", "wail", "plaint", "lament"]}, {"answer": "lamentation", "hint": "synonyms for lamentation", "clues": ["lament", "mourning", "wail", "plaint", "lamentation"]}, {"answer": "lamentations", "hint": "synonyms for lamentations", "clues": ["lamentation", "lament", "mourning", "wail", "plaint"]}, {"answer": "lampblack", "hint": "synonyms for lampblack", "clues": ["crock", "soot", "carbon black", "smut", "lampblack"]}, {"answer": "lampoon", "hint": "synonyms for lampoon", "clues": ["burlesque", "travesty", "spoof", "put-on", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff", "lampoon"]}, {"answer": "lance", "hint": "synonyms for lance", "clues": ["spear", "fishgig", "gig", "shaft", "lancet", "fizgig"]}, {"answer": "land", "hint": "synonyms for land", "clues": ["demesne", "farming", "terra firma", "earth", "commonwealth", "landed estate", "res publica", "nation", "domain", "acres", "ground", "soil", "state", "country", "dry land", "body politic", "solid ground", "land"]}, {"answer": "land_mile", "hint": "synonyms for land mile", "clues": ["mi", "international mile", "statute mile", "stat mi", "mile", "land mile"]}, {"answer": "landed_estate", "hint": "synonyms for landed estate", "clues": ["land", "estate", "acres", "demesne", "landed estate"]}, {"answer": "language", "hint": "synonyms for language", "clues": ["linguistic process", "speech communication", "voice communication", "lyric", "words", "linguistic communication", "nomenclature", "speech", "oral communication", "terminology", "spoken language", "language"]}, {"answer": "languor", "hint": "synonyms for languor", "clues": ["flatness", "phlegm", "dreaminess", "lassitude", "lethargy", "listlessness", "sluggishness", "languor"]}, {"answer": "lanthanide", "hint": "synonyms for lanthanide", "clues": ["rare earth", "lanthanon", "rare-earth element", "lanthanoid"]}, {"answer": "lanthanoid", "hint": "synonyms for lanthanoid", "clues": ["rare earth", "lanthanon", "rare-earth element", "lanthanide"]}, {"answer": "lanthanon", "hint": "synonyms for lanthanon", "clues": ["lanthanoid", "rare earth", "rare-earth element", "lanthanon"]}, {"answer": "lap", "hint": "synonyms for lap", "clues": ["lap covering", "overlap", "circuit", "lick", "circle", "lap"]}, {"answer": "lapse", "hint": "synonyms for lapse", "clues": ["reversion", "reverting", "relapse", "oversight", "backsliding", "lapsing", "lapse"]}, {"answer": "lapsing", "hint": "synonyms for lapsing", "clues": ["lapse", "reversion", "reverting", "backsliding", "relapse", "relapsing"]}, {"answer": "larceny", "hint": "synonyms for larceny", "clues": ["thieving", "theft", "stealing", "thievery", "larceny"]}, {"answer": "large_number", "hint": "synonyms for large number", "clues": ["battalion", "plurality", "pack", "multitude", "large number"]}, {"answer": "largeness", "hint": "synonyms for largeness", "clues": ["extensiveness", "pretension", "bigness", "comprehensiveness", "breadth", "pretentiousness", "largeness"]}, {"answer": "largess", "hint": "synonyms for largess", "clues": ["munificence", "largesse", "magnanimity", "openhandedness"]}, {"answer": "largesse", "hint": "synonyms for largesse", "clues": ["munificence", "largess", "magnanimity", "openhandedness"]}, {"answer": "lasciviousness", "hint": "synonyms for lasciviousness", "clues": ["prurience", "lubricity", "carnality", "lasciviousness"]}, {"answer": "lashings", "hint": "synonyms for lashings", "clues": ["lots", "lashing", "loads", "tanning", "oodles", "whipping", "wads", "tons", "gobs", "rafts", "heaps", "piles", "flogging", "scads", "slews", "flagellation", "stacks", "dozens", "scores"]}, {"answer": "lassitude", "hint": "synonyms for lassitude", "clues": ["slackness", "lethargy", "listlessness", "inanition", "languor", "lassitude"]}, {"answer": "last_day", "hint": "synonyms for last day", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "last day"]}, {"answer": "last_judgement", "hint": "synonyms for last judgement", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "last judgement"]}, {"answer": "last_judgment", "hint": "synonyms for last judgment", "clues": ["eschaton", "crack of doom", "doomsday", "day of reckoning", "end of the world", "last judgment"]}, {"answer": "last_word", "hint": "synonyms for last word", "clues": ["chichi", "smartness", "chicness", "chic", "stylishness", "swank", "modishness", "last word"]}, {"answer": "latency", "hint": "synonyms for latency", "clues": ["reaction time", "rotational latency", "response time", "latent period", "latency"]}, {"answer": "laterality", "hint": "synonyms for laterality", "clues": ["handedness", "lateralisation", "dominance", "laterality"]}, {"answer": "lattice", "hint": "synonyms for lattice", "clues": ["latticework", "grille", "fretwork", "wicket", "lattice"]}, {"answer": "laugh", "hint": "synonyms for laugh", "clues": ["gag", "joke", "jest", "jape", "laughter", "laugh"]}, {"answer": "laugh_line", "hint": "synonyms for laugh line", "clues": ["crow's feet", "punch line", "tag line", "crow's foot", "laugh line"]}, {"answer": "laugher", "hint": "synonyms for laugher", "clues": ["blowout", "walkaway", "shoo-in", "runaway", "romp", "laugher"]}, {"answer": "launch_pad", "hint": "synonyms for launch pad", "clues": ["pad", "launch area", "launchpad", "launching pad"]}, {"answer": "launching", "hint": "synonyms for launching", "clues": ["launch", "first appearance", "unveiling", "entry", "debut", "introduction"]}, {"answer": "laurel_wreath", "hint": "synonyms for laurel wreath", "clues": ["medallion", "medal", "palm", "ribbon", "decoration", "bay wreath", "laurel", "laurel wreath"]}, {"answer": "laurels", "hint": "synonyms for laurels", "clues": ["accolade", "award", "honor", "bay wreath", "laurel wreath", "laurel"]}, {"answer": "lav", "hint": "synonyms for lav", "clues": ["john", "toilet", "can", "privy", "lavatory", "bathroom", "lav"]}, {"answer": "lavabo", "hint": "synonyms for lavabo", "clues": ["handbasin", "wash-hand basin", "washbasin", "washbowl", "lavabo"]}, {"answer": "lavatory", "hint": "synonyms for lavatory", "clues": ["toilet", "can", "basin", "washstand", "john", "washbowl", "flush toilet", "privy", "washbasin", "bathroom", "lav", "lavatory"]}, {"answer": "lavishness", "hint": "synonyms for lavishness", "clues": ["sumptuousness", "luxury", "highlife", "prodigality", "sumptuosity", "extravagance", "lavishness"]}, {"answer": "law", "hint": "synonyms for law", "clues": ["law of nature", "natural law", "police", "police force", "jurisprudence", "legal philosophy", "constabulary", "practice of law", "law"]}, {"answer": "law-breaking", "hint": "synonyms for law-breaking", "clues": ["criminal offence", "offence", "crime", "law-breaking"]}, {"answer": "law-makers", "hint": "synonyms for law-makers", "clues": ["legislative body", "legislative assembly", "legislature", "general assembly", "law-makers"]}, {"answer": "laws", "hint": "synonyms for laws", "clues": ["law of nature", "law", "natural law", "police", "constabulary", "police force", "jurisprudence", "legal philosophy", "practice of law"]}, {"answer": "lawsuit", "hint": "synonyms for lawsuit", "clues": ["case", "suit", "causa", "lawsuit"]}, {"answer": "lay-by", "hint": "synonyms for lay-by", "clues": ["rest stop", "pull-off", "rest area", "layby"]}, {"answer": "layby", "hint": "synonyms for layby", "clues": ["rest stop", "lay-by", "pull-off", "rest area"]}, {"answer": "laying_waste", "hint": "synonyms for laying waste", "clues": ["ruining", "wrecking", "ruination", "laying waste"]}, {"answer": "lazaretto", "hint": "synonyms for lazaretto", "clues": ["glory hole", "lazarette", "lazar house", "pesthouse"]}, {"answer": "lazuline", "hint": "synonyms for lazuline", "clues": ["cerulean", "sky-blue", "azure", "sapphire", "lazuline"]}, {"answer": "lea", "hint": "synonyms for lea", "clues": ["pastureland", "ley", "grazing land", "pasture", "lea"]}, {"answer": "lead", "hint": "synonyms for lead", "clues": ["confidential information", "hint", "steer", "wind", "leading", "lead story", "pencil lead", "spark advance", "atomic number 82", "trail", "leash", "lede", "track", "booster cable", "jumper cable", "tether", "tip", "jumper lead"]}, {"answer": "leaders", "hint": "synonyms for leaders", "clues": ["loss leader", "drawing card", "leadership", "leader"]}, {"answer": "leaflet", "hint": "synonyms for leaflet", "clues": ["brochure", "pamphlet", "folder", "booklet", "leaflet"]}, {"answer": "leak", "hint": "synonyms for leak", "clues": ["news leak", "wetting", "escape", "leakage", "outflow", "passing water", "making water", "leak"]}, {"answer": "leanness", "hint": "synonyms for leanness", "clues": ["meagerness", "scantiness", "thinness", "poorness", "spareness", "exiguity", "leanness"]}, {"answer": "leap", "hint": "synonyms for leap", "clues": ["jump", "leaping", "bound", "spring", "bounce", "saltation"]}, {"answer": "leaping", "hint": "synonyms for leaping", "clues": ["leap", "bound", "spring", "bounce", "saltation"]}, {"answer": "learnedness", "hint": "synonyms for learnedness", "clues": ["eruditeness", "learning", "encyclopedism", "scholarship", "erudition", "learnedness"]}, {"answer": "learning", "hint": "synonyms for learning", "clues": ["eruditeness", "encyclopedism", "scholarship", "learnedness", "acquisition", "erudition", "learning"]}, {"answer": "learning_ability", "hint": "synonyms for learning ability", "clues": ["brain", "mentality", "mental capacity", "wit", "brainpower", "learning ability"]}, {"answer": "leash", "hint": "synonyms for leash", "clues": ["threesome", "tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "collar", "three", "tercet", "tether", "terzetto", "trine", "deuce-ace", "3", "lead", "trey", "trio", "leash"]}, {"answer": "leave", "hint": "synonyms for leave", "clues": ["farewell", "leave-taking", "leave of absence", "parting", "leave"]}, {"answer": "lechatelierite", "hint": "synonyms for lechatelierite", "clues": ["quartz glass", "vitreous silica", "quartz", "crystal", "lechatelierite"]}, {"answer": "lecture", "hint": "synonyms for lecture", "clues": ["public lecture", "speech", "lecturing", "talking to", "talk", "lecture"]}, {"answer": "ledger", "hint": "synonyms for ledger", "clues": ["account book", "leger", "book of account", "daybook", "book"]}, {"answer": "leechee", "hint": "synonyms for leechee", "clues": ["lichi", "litchi nut", "lichee", "lychee", "leechee"]}, {"answer": "leg", "hint": "synonyms for leg", "clues": ["wooden leg", "branch", "stage", "ramification", "pegleg", "peg", "leg"]}, {"answer": "leger", "hint": "synonyms for leger", "clues": ["book of account", "account book", "ledger", "book"]}, {"answer": "legerdemain", "hint": "synonyms for legerdemain", "clues": ["magic trick", "thaumaturgy", "trick", "deception", "illusion", "magic", "conjuration", "conjuring trick", "legerdemain"]}, {"answer": "legerity", "hint": "synonyms for legerity", "clues": ["agility", "lightness", "lightsomeness", "nimbleness", "legerity"]}, {"answer": "leghorn", "hint": "synonyms for leghorn", "clues": ["straw hat", "skimmer", "sailor", "boater", "leghorn"]}, {"answer": "legislative_assembly", "hint": "synonyms for legislative assembly", "clues": ["law-makers", "legislature", "general assembly", "legislative body", "legislative assembly"]}, {"answer": "legislative_body", "hint": "synonyms for legislative body", "clues": ["law-makers", "legislative assembly", "legislature", "general assembly", "legislative body"]}, {"answer": "legislature", "hint": "synonyms for legislature", "clues": ["law-makers", "legislative assembly", "general assembly", "legislative body", "legislature"]}, {"answer": "legs", "hint": "synonyms for legs", "clues": ["wooden leg", "branch", "stage", "ramification", "leg", "pegleg", "peg"]}, {"answer": "lei", "hint": "synonyms for lei", "clues": ["coronal", "garland", "wreath", "chaplet", "leu", "lei"]}, {"answer": "lemon", "hint": "synonyms for lemon", "clues": ["gamboge", "maize", "stinker", "lemon yellow", "lemon"]}, {"answer": "lengthiness", "hint": "synonyms for lengthiness", "clues": ["extension", "continuation", "protraction", "prolongation", "lengthiness"]}, {"answer": "lenience", "hint": "synonyms for lenience", "clues": ["leniency", "indulgence", "lenity", "mildness"]}, {"answer": "leniency", "hint": "synonyms for leniency", "clues": ["lenience", "indulgence", "lenity", "mildness"]}, {"answer": "leotards", "hint": "synonyms for leotards", "clues": ["cat suit", "unitard", "leotard", "tights", "body suit"]}, {"answer": "lesson", "hint": "synonyms for lesson", "clues": ["deterrent example", "moral", "object lesson", "example", "lesson"]}, {"answer": "lethargy", "hint": "synonyms for lethargy", "clues": ["flatness", "phlegm", "lassitude", "slackness", "sluggishness", "inanition", "languor", "lethargy"]}, {"answer": "letter", "hint": "synonyms for letter", "clues": ["alphabetic character", "varsity letter", "missive", "letter of the alphabet", "letter"]}, {"answer": "letters", "hint": "synonyms for letters", "clues": ["alphabetic character", "letter of the alphabet", "varsity letter", "missive", "letter"]}, {"answer": "lettuce", "hint": "synonyms for lettuce", "clues": ["lucre", "sugar", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "lettuce"]}, {"answer": "leucotomy", "hint": "synonyms for leucotomy", "clues": ["prefrontal leukotomy", "leukotomy", "lobotomy", "frontal lobotomy"]}, {"answer": "leukotomy", "hint": "synonyms for leukotomy", "clues": ["prefrontal leukotomy", "lobotomy", "leucotomy", "frontal lobotomy"]}, {"answer": "leveling", "hint": "synonyms for leveling", "clues": ["tearing down", "equalization", "demolishing", "grading", "razing", "leveling"]}, {"answer": "lewdness", "hint": "synonyms for lewdness", "clues": ["bawdiness", "salacity", "salaciousness", "obscenity", "lewdness"]}, {"answer": "ley", "hint": "synonyms for ley", "clues": ["lea", "pastureland", "grazing land", "pasture", "ley"]}, {"answer": "liberation", "hint": "synonyms for liberation", "clues": ["sack", "freeing", "dismissal", "release", "discharge", "firing", "dismission", "liberation"]}, {"answer": "liberty", "hint": "synonyms for liberty", "clues": ["familiarity", "shore leave", "indecorum", "impropriety", "liberty"]}, {"answer": "licentiousness", "hint": "synonyms for licentiousness", "clues": ["wantonness", "profligacy", "dissolution", "looseness", "dissipation", "licentiousness"]}, {"answer": "lichee", "hint": "synonyms for lichee", "clues": ["leechee", "lichi", "litchi nut", "lychee", "litchee"]}, {"answer": "lichi", "hint": "synonyms for lichi", "clues": ["leechee", "litchi nut", "lichee", "lychee", "litchi"]}, {"answer": "lick", "hint": "synonyms for lick", "clues": ["slug", "salt lick", "clout", "poke", "lap", "biff", "punch", "lick"]}, {"answer": "licking", "hint": "synonyms for licking", "clues": ["whacking", "defeat", "trouncing", "beating", "drubbing", "thrashing", "lacing", "licking"]}, {"answer": "life", "hint": "synonyms for life", "clues": ["lifespan", "living", "life-time", "life story", "liveliness", "spirit", "sprightliness", "life sentence", "biography", "life"]}, {"answer": "life_belt", "hint": "synonyms for life belt", "clues": ["life buoy", "lifesaver", "life ring", "safety belt", "safety harness", "life belt"]}, {"answer": "life_history", "hint": "synonyms for life history", "clues": ["life", "career", "life story", "biography"]}, {"answer": "lift", "hint": "synonyms for lift", "clues": ["aerodynamic lift", "ski tow", "face lifting", "facelift", "elevator", "elevation", "rise", "ski lift", "nip and tuck", "airlift", "heave", "cosmetic surgery", "raising", "rhytidectomy", "rhytidoplasty", "lift"]}, {"answer": "light_beam", "hint": "synonyms for light beam", "clues": ["shaft of light", "irradiation", "ray of light", "beam", "shaft", "beam of light", "ray", "light beam"]}, {"answer": "light_bulb", "hint": "synonyms for light bulb", "clues": ["bulb", "electric-light bulb", "lightbulb", "electric light", "incandescent lamp"]}, {"answer": "lightbulb", "hint": "synonyms for lightbulb", "clues": ["bulb", "electric-light bulb", "electric light", "light bulb", "incandescent lamp"]}, {"answer": "lighter", "hint": "synonyms for lighter", "clues": ["hoy", "light", "barge", "igniter", "flatboat", "lighter"]}, {"answer": "lighting", "hint": "synonyms for lighting", "clues": ["ignition", "inflammation", "kindling", "firing", "lighting"]}, {"answer": "lightness", "hint": "synonyms for lightness", "clues": ["light", "lightsomeness", "nimbleness", "weightlessness", "legerity", "agility", "elation", "high spirits", "lightness"]}, {"answer": "lightning_arrester", "hint": "synonyms for lightning arrester", "clues": ["surge suppressor", "spike arrester", "spike suppressor", "surge protector", "lightning arrester"]}, {"answer": "lightsomeness", "hint": "synonyms for lightsomeness", "clues": ["legerity", "agility", "lightness", "carefreeness", "nimbleness", "insouciance", "lightheartedness", "lightsomeness"]}, {"answer": "lime", "hint": "synonyms for lime", "clues": ["birdlime", "calx", "lime hydrate", "calcium hydrate", "hydrated lime", "calcium hydroxide", "unslaked lime", "caustic lime", "calcined lime", "burnt lime", "fluxing lime", "quicklime", "lime"]}, {"answer": "lime_hydrate", "hint": "synonyms for lime hydrate", "clues": ["lime", "caustic lime", "calcium hydrate", "hydrated lime", "calcium hydroxide", "slaked lime", "lime hydrate"]}, {"answer": "limit", "hint": "synonyms for limit", "clues": ["terminal point", "limit point", "terminus ad quem", "point of accumulation", "boundary", "limitation", "demarcation", "bound", "demarcation line", "limit"]}, {"answer": "limitlessness", "hint": "synonyms for limitlessness", "clues": ["infiniteness", "unboundedness", "infinitude", "boundlessness", "limitlessness"]}, {"answer": "limpidity", "hint": "synonyms for limpidity", "clues": ["pellucidity", "lucidness", "lucidity", "clearness", "clarity", "limpidity"]}, {"answer": "linchpin", "hint": "synonyms for linchpin", "clues": ["keystone", "backbone", "mainstay", "anchor", "lynchpin"]}, {"answer": "line", "hint": "synonyms for line", "clues": ["billet", "melodic phrase", "crease", "blood", "ancestry", "seam", "telephone line", "line of work", "personal line of credit", "melody", "demarcation", "telephone circuit", "product line", "crinkle", "line of merchandise", "short letter", "stemma", "contrast", "melodic line", "note", "line of products", "communication channel", "business line", "credit line", "dividing line", "tune", "agate line", "rail line", "phone line", "course", "origin", "job", "lineage", "personal credit line", "parentage", "line of descent", "descent", "strain", "assembly line", "argumentation", "argument", "subscriber line", "stock", "pedigree", "air", "business", "line of business", "bloodline", "pipeline", "channel", "cable", "occupation", "bank line", "transmission line", "line of credit", "logical argument", "furrow", "line of reasoning", "line"]}, {"answer": "line-shooting", "hint": "synonyms for line-shooting", "clues": ["gasconade", "crow", "vaporing", "bragging", "brag", "line-shooting"]}, {"answer": "line_of_business", "hint": "synonyms for line of business", "clues": ["line", "field", "line of products", "product line", "line of merchandise", "business line", "field of operation", "line of business"]}, {"answer": "line_of_credit", "hint": "synonyms for line of credit", "clues": ["line", "bank line", "personal line of credit", "personal credit line", "credit line", "line of credit"]}, {"answer": "line_of_descent", "hint": "synonyms for line of descent", "clues": ["filiation", "line", "bloodline", "blood", "lineage", "parentage", "descent", "ancestry", "pedigree", "stock", "origin", "stemma", "line of descent"]}, {"answer": "line_of_merchandise", "hint": "synonyms for line of merchandise", "clues": ["line", "line of business", "line of products", "product line", "business line", "line of merchandise"]}, {"answer": "line_of_products", "hint": "synonyms for line of products", "clues": ["line", "line of business", "product line", "line of merchandise", "business line", "line of products"]}, {"answer": "line_of_reasoning", "hint": "synonyms for line of reasoning", "clues": ["line", "argument", "argumentation", "logical argument", "line of reasoning"]}, {"answer": "line_of_work", "hint": "synonyms for line of work", "clues": ["line", "business", "job", "occupation", "line of work"]}, {"answer": "lineage", "hint": "synonyms for lineage", "clues": ["line", "filiation", "linage", "bloodline", "blood", "parentage", "line of descent", "descent", "ancestry", "stock", "pedigree", "derivation", "origin", "stemma"]}, {"answer": "lingo", "hint": "synonyms for lingo", "clues": ["vernacular", "argot", "cant", "slang", "patois", "jargon", "lingo"]}, {"answer": "link", "hint": "synonyms for link", "clues": ["tie-in", "connexion", "radio link", "nexus", "contact", "connection", "liaison", "data link", "linkup", "inter-group communication", "tie", "link"]}, {"answer": "links", "hint": "synonyms for links", "clues": ["link", "tie-in", "connexion", "radio link", "nexus", "contact", "connection", "liaison", "data link", "linkup", "inter-group communication", "tie", "golf links"]}, {"answer": "lip", "hint": "synonyms for lip", "clues": ["mouth", "sass", "rim", "backtalk", "lip"]}, {"answer": "liquid_ecstasy", "hint": "synonyms for liquid ecstasy", "clues": ["easy lay", "scoop", "grievous bodily harm", "max", "soap", "goop", "liquid ecstasy"]}, {"answer": "liquidity", "hint": "synonyms for liquidity", "clues": ["fluidity", "fluidness", "runniness", "liquidness", "liquidity"]}, {"answer": "liquidness", "hint": "synonyms for liquidness", "clues": ["fluidity", "fluidness", "runniness", "liquidity", "liquidness"]}, {"answer": "liquor", "hint": "synonyms for liquor", "clues": ["strong drink", "booze", "hard drink", "pot liquor", "pot likker", "hard liquor", "spirits", "liquor"]}, {"answer": "list", "hint": "synonyms for list", "clues": ["inclination", "lean", "listing", "tilt"]}, {"answer": "lister", "hint": "synonyms for lister", "clues": ["middle buster", "lister plow", "lister plough", "middlebreaker", "lister"]}, {"answer": "lister_plough", "hint": "synonyms for lister plough", "clues": ["middle buster", "lister plow", "lister", "middlebreaker", "lister plough"]}, {"answer": "lister_plow", "hint": "synonyms for lister plow", "clues": ["lister plough", "middle buster", "lister", "middlebreaker", "lister plow"]}, {"answer": "listlessness", "hint": "synonyms for listlessness", "clues": ["lassitude", "torpidness", "torpidity", "torpor", "languor", "listlessness"]}, {"answer": "litchee", "hint": "synonyms for litchee", "clues": ["leechee", "lichi", "litchi nut", "lichee", "lychee"]}, {"answer": "litchi", "hint": "synonyms for litchi", "clues": ["leechee", "lichi", "litchi nut", "lichee", "lychee"]}, {"answer": "litchi_nut", "hint": "synonyms for litchi nut", "clues": ["leechee", "lichi", "litchee", "lychee", "litchi nut"]}, {"answer": "liter", "hint": "synonyms for liter", "clues": ["litre", "cubic decimetre", "l", "liter"]}, {"answer": "literal_error", "hint": "synonyms for literal error", "clues": ["erratum", "typo", "literal", "misprint", "typographical error", "literal error"]}, {"answer": "litre", "hint": "synonyms for litre", "clues": ["cubic decimetre", "l", "liter", "litre"]}, {"answer": "little_joe", "hint": "synonyms for little joe", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome", "little joe"]}, {"answer": "little_phoebe", "hint": "synonyms for little phoebe", "clues": ["quint", "quintet", "cinque", "pentad", "fin", "quintuplet", "5", "five", "fivesome", "little phoebe"]}, {"answer": "livelihood", "hint": "synonyms for livelihood", "clues": ["support", "keep", "living", "bread and butter", "sustenance", "livelihood"]}, {"answer": "liveliness", "hint": "synonyms for liveliness", "clues": ["spirit", "sprightliness", "animation", "life", "liveliness"]}, {"answer": "lividity", "hint": "synonyms for lividity", "clues": ["lividness", "paleness", "wanness", "pallor", "luridness", "achromasia", "pallidness", "lividity"]}, {"answer": "lividness", "hint": "synonyms for lividness", "clues": ["paleness", "wanness", "pallor", "lividity", "luridness", "achromasia", "pallidness", "lividness"]}, {"answer": "living-room", "hint": "synonyms for living-room", "clues": ["front room", "parlour", "living room", "sitting room"]}, {"answer": "living_room", "hint": "synonyms for living room", "clues": ["front room", "parlour", "living-room", "sitting room"]}, {"answer": "load", "hint": "synonyms for load", "clues": ["consignment", "lode", "shipment", "burden", "onus", "warhead", "freight", "cargo", "lading", "encumbrance", "payload", "load"]}, {"answer": "loading", "hint": "synonyms for loading", "clues": ["load", "consignment", "shipment", "burden", "freight", "cargo", "lading", "payload"]}, {"answer": "loads", "hint": "synonyms for loads", "clues": ["lots", "burden", "dozens", "lashings", "oodles", "wads", "tons", "cargo", "gobs", "lading", "encumbrance", "rafts", "heaps", "piles", "load", "consignment", "scads", "shipment", "slews", "onus", "lode", "warhead", "freight", "stacks", "payload", "scores"]}, {"answer": "loathing", "hint": "synonyms for loathing", "clues": ["abhorrence", "odium", "abomination", "execration", "detestation", "loathing"]}, {"answer": "loathsomeness", "hint": "synonyms for loathsomeness", "clues": ["sliminess", "repulsiveness", "lousiness", "wickedness", "vileness", "loathsomeness"]}, {"answer": "lobby", "hint": "synonyms for lobby", "clues": ["anteroom", "vestibule", "pressure group", "hall", "antechamber", "third house", "entrance hall", "foyer", "lobby"]}, {"answer": "lobotomy", "hint": "synonyms for lobotomy", "clues": ["prefrontal leukotomy", "leukotomy", "frontal lobotomy", "lobotomy"]}, {"answer": "localisation", "hint": "synonyms for localisation", "clues": ["localization principle", "localization of function", "localization", "fix", "locating"]}, {"answer": "locality", "hint": "synonyms for locality", "clues": ["neck of the woods", "vicinity", "neighborhood", "locality"]}, {"answer": "localization", "hint": "synonyms for localization", "clues": ["localization principle", "localization of function", "localisation", "fix", "locating"]}, {"answer": "locating", "hint": "synonyms for locating", "clues": ["positioning", "placement", "localisation", "fix", "location"]}, {"answer": "location", "hint": "synonyms for location", "clues": ["positioning", "placement", "localisation", "locating", "fix"]}, {"answer": "lockbox", "hint": "synonyms for lockbox", "clues": ["safety deposit box", "safety-deposit", "deposit box", "lockbox"]}, {"answer": "locoweed", "hint": "synonyms for locoweed", "clues": ["dope", "green goddess", "skunk", "gage", "weed", "smoke", "sess", "grass", "sens", "pot", "locoweed"]}, {"answer": "lodge", "hint": "synonyms for lodge", "clues": ["indian lodge", "society", "guild", "hostelry", "hunting lodge", "inn", "order", "social club", "club", "auberge", "lodge"]}, {"answer": "lodging", "hint": "synonyms for lodging", "clues": ["living accommodations", "lodgment", "housing", "lodging"]}, {"answer": "lodgings", "hint": "synonyms for lodgings", "clues": ["lodgment", "housing", "living accommodations", "domiciliation", "digs", "pad", "lodging", "diggings"]}, {"answer": "logical_argument", "hint": "synonyms for logical argument", "clues": ["line", "argument", "argumentation", "line of reasoning", "logical argument"]}, {"answer": "lollipop", "hint": "synonyms for lollipop", "clues": ["sucker", "popsicle", "all-day sucker", "ice lolly", "lolly", "lollipop"]}, {"answer": "lolly", "hint": "synonyms for lolly", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "popsicle", "moolah", "boodle", "shekels", "kale", "scratch", "lollipop", "clams", "dinero", "gelt", "ice lolly", "wampum", "cabbage", "bread", "loot", "dough", "lolly"]}, {"answer": "loneliness", "hint": "synonyms for loneliness", "clues": ["aloneness", "desolation", "forlornness", "solitariness", "lonesomeness", "loneliness"]}, {"answer": "long-windedness", "hint": "synonyms for long-windedness", "clues": ["windiness", "prolixity", "prolixness", "wordiness", "long-windedness"]}, {"answer": "long_suit", "hint": "synonyms for long suit", "clues": ["forte", "specialty", "strength", "strong point", "metier", "strong suit", "long suit"]}, {"answer": "look", "hint": "synonyms for look", "clues": ["looking at", "expression", "aspect", "looking", "facial expression", "face"]}, {"answer": "lookout", "hint": "synonyms for lookout", "clues": ["observation tower", "lookout station", "observatory", "outlook", "observation post", "lookout"]}, {"answer": "loony_bin", "hint": "synonyms for loony bin", "clues": ["sanatorium", "nut house", "funny farm", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "loony bin"]}, {"answer": "loony_toons", "hint": "synonyms for loony toons", "clues": ["dot", "dose", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid", "loony toons"]}, {"answer": "loop", "hint": "synonyms for loop", "clues": ["loop topology", "loop-the-loop", "grummet", "eyelet", "closed circuit", "cringle", "iteration", "loop"]}, {"answer": "looseness", "hint": "synonyms for looseness", "clues": ["profligacy", "dissolution", "play", "licentiousness", "dissipation", "looseness"]}, {"answer": "loot", "hint": "synonyms for loot", "clues": ["lucre", "sugar", "lettuce", "pillage", "pelf", "simoleons", "plunder", "swag", "dirty money", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "dough", "prize", "booty", "loot"]}, {"answer": "loquaciousness", "hint": "synonyms for loquaciousness", "clues": ["loquacity", "garrulity", "talkativeness", "garrulousness", "loquaciousness"]}, {"answer": "loquacity", "hint": "synonyms for loquacity", "clues": ["loquaciousness", "garrulity", "talkativeness", "garrulousness", "loquacity"]}, {"answer": "lordliness", "hint": "synonyms for lordliness", "clues": ["hauteur", "dignity", "gravitas", "arrogance", "high-handedness", "haughtiness", "lordliness"]}, {"answer": "loss", "hint": "synonyms for loss", "clues": ["red", "personnel casualty", "red ink", "departure", "passing", "going", "release", "expiration", "exit", "deprivation", "loss"]}, {"answer": "losses", "hint": "synonyms for losses", "clues": ["red", "red ink", "personnel casualty", "departure", "going", "passing", "release", "expiration", "exit", "deprivation", "loss", "losings"]}, {"answer": "lot", "hint": "synonyms for lot", "clues": ["good deal", "slew", "draw", "caboodle", "mint", "heap", "deal", "peck", "quite a little", "band", "wad", "mass", "raft", "mess", "spate", "set", "passel", "great deal", "hatful", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "bunch", "flock", "tidy sum", "circle", "pot", "lot"]}, {"answer": "loudness", "hint": "synonyms for loudness", "clues": ["tawdriness", "flashiness", "garishness", "glitz", "intensity", "gaudiness", "brashness", "meretriciousness", "volume", "loudness"]}, {"answer": "loudspeaker", "hint": "synonyms for loudspeaker", "clues": ["speaker system", "speaker unit", "speaker", "loudspeaker"]}, {"answer": "loudspeaker_system", "hint": "synonyms for loudspeaker system", "clues": ["loudspeaker", "speaker system", "speaker unit", "speaker"]}, {"answer": "lounge", "hint": "synonyms for lounge", "clues": ["sofa", "waiting room", "couch", "waiting area", "lounge"]}, {"answer": "lousiness", "hint": "synonyms for lousiness", "clues": ["sliminess", "repulsiveness", "loathsomeness", "wickedness", "vileness", "lousiness"]}, {"answer": "love", "hint": "synonyms for love", "clues": ["love life", "sexual love", "passion", "lovemaking", "erotic love", "making love", "love"]}, {"answer": "love_life", "hint": "synonyms for love life", "clues": ["love", "sexual love", "lovemaking", "making love", "love life"]}, {"answer": "lovemaking", "hint": "synonyms for lovemaking", "clues": ["love life", "love", "sexual love", "making love", "lovemaking"]}, {"answer": "lovingness", "hint": "synonyms for lovingness", "clues": ["caring", "affectionateness", "fondness", "warmth", "lovingness"]}, {"answer": "low-spiritedness", "hint": "synonyms for low-spiritedness", "clues": ["dispiritedness", "lowness", "dejectedness", "downheartedness", "low-spiritedness"]}, {"answer": "low_temperature", "hint": "synonyms for low temperature", "clues": ["cold", "frigidness", "frigidity", "coldness", "low temperature"]}, {"answer": "lowness", "hint": "synonyms for lowness", "clues": ["dispiritedness", "dejectedness", "low-spiritedness", "downheartedness", "lowness"]}, {"answer": "loyalty", "hint": "synonyms for loyalty", "clues": ["trueness", "commitment", "allegiance", "dedication", "loyalty"]}, {"answer": "lubricating_system", "hint": "synonyms for lubricating system", "clues": ["force feed", "pressure-feed lubricating system", "pressure feed", "lubricating system"]}, {"answer": "lubricity", "hint": "synonyms for lubricity", "clues": ["prurience", "carnality", "lasciviousness", "lubricity"]}, {"answer": "lucidity", "hint": "synonyms for lucidity", "clues": ["pellucidity", "clearness", "limpidity", "lucidness", "clarity", "lucidity"]}, {"answer": "lucidness", "hint": "synonyms for lucidness", "clues": ["pellucidity", "lucidity", "limpidity", "clearness", "clarity", "lucidness"]}, {"answer": "lucifer", "hint": "synonyms for lucifer", "clues": ["morning star", "daystar", "match", "friction match", "lucifer"]}, {"answer": "lucre", "hint": "synonyms for lucre", "clues": ["sugar", "lettuce", "pelf", "simoleons", "earnings", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "net profit", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "profit", "dough", "net", "net income", "lucre"]}, {"answer": "lucy_in_the_sky_with_diamonds", "hint": "synonyms for lucy in the sky with diamonds", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid", "lucy in the sky with diamonds"]}, {"answer": "luminal", "hint": "synonyms for luminal", "clues": ["purple heart", "sodium thiopental", "phenobarbitone", "phenobarbital", "luminal"]}, {"answer": "luminance", "hint": "synonyms for luminance", "clues": ["light", "luminosity", "luminousness", "brightness", "brightness level", "luminance"]}, {"answer": "luminosity", "hint": "synonyms for luminosity", "clues": ["light", "luminousness", "brightness", "brightness level", "luminance", "luminosity"]}, {"answer": "luminousness", "hint": "synonyms for luminousness", "clues": ["light", "luminosity", "brightness", "brightness level", "luminance", "luminousness"]}, {"answer": "lump", "hint": "synonyms for lump", "clues": ["chunk", "clod", "ball", "clump", "glob"]}, {"answer": "lunacy", "hint": "synonyms for lunacy", "clues": ["indulgence", "folly", "tomfoolery", "craziness", "foolery", "lunacy"]}, {"answer": "lurch", "hint": "synonyms for lurch", "clues": ["pitching", "lunge", "stumble", "stagger", "lurch"]}, {"answer": "lure", "hint": "synonyms for lure", "clues": ["bait", "come-on", "hook", "decoy", "enticement", "sweetener", "lure"]}, {"answer": "luridness", "hint": "synonyms for luridness", "clues": ["paleness", "pallor", "lividity", "grimness", "pallidness", "ghastliness", "sensationalism", "lividness", "gruesomeness", "wanness", "achromasia", "luridness"]}, {"answer": "luster", "hint": "synonyms for luster", "clues": ["brilliancy", "sheen", "splendour", "lustre", "shininess", "luster"]}, {"answer": "lustre", "hint": "synonyms for lustre", "clues": ["brilliancy", "sheen", "splendor", "luster", "shininess", "lustre"]}, {"answer": "lychee", "hint": "synonyms for lychee", "clues": ["leechee", "lichi", "litchi nut", "lichee", "lychee"]}, {"answer": "lynchpin", "hint": "synonyms for lynchpin", "clues": ["linchpin", "keystone", "backbone", "mainstay", "anchor"]}, {"answer": "maceration", "hint": "synonyms for maceration", "clues": ["boniness", "gauntness", "emaciation", "maceration"]}, {"answer": "machine", "hint": "synonyms for machine", "clues": ["auto", "political machine", "motorcar", "car", "automobile", "simple machine", "machine"]}, {"answer": "machine_language", "hint": "synonyms for machine language", "clues": ["computer language", "computer-oriented language", "machine-oriented language", "machine code", "machine language"]}, {"answer": "macrocosm", "hint": "synonyms for macrocosm", "clues": ["cosmos", "creation", "existence", "world", "universe", "macrocosm"]}, {"answer": "maculation", "hint": "synonyms for maculation", "clues": ["spot", "patch", "fleck", "staining", "dapple", "spotting", "speckle", "maculation"]}, {"answer": "madhouse", "hint": "synonyms for madhouse", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "snake pit", "madhouse"]}, {"answer": "madness", "hint": "synonyms for madness", "clues": ["rage", "folly", "rabidness", "foolishness", "craziness", "rabidity", "fury", "madness"]}, {"answer": "magazine", "hint": "synonyms for magazine", "clues": ["cartridge", "cartridge holder", "cartridge clip", "powder magazine", "mag", "powder store", "clip", "magazine publisher", "magazine"]}, {"answer": "magic_eye", "hint": "synonyms for magic eye", "clues": ["photoconductive cell", "photocell", "photoelectric cell", "electric eye", "magic eye"]}, {"answer": "magic_trick", "hint": "synonyms for magic trick", "clues": ["legerdemain", "thaumaturgy", "trick", "deception", "illusion", "magic", "conjuration", "conjuring trick", "magic trick"]}, {"answer": "magnanimity", "hint": "synonyms for magnanimity", "clues": ["largess", "openhandedness", "munificence", "magnanimity"]}, {"answer": "magnet", "hint": "synonyms for magnet", "clues": ["attracter", "attractive feature", "attraction", "magnet"]}, {"answer": "magnetic_dip", "hint": "synonyms for magnetic dip", "clues": ["dip", "magnetic inclination", "inclination", "angle of dip", "magnetic dip"]}, {"answer": "magnetic_inclination", "hint": "synonyms for magnetic inclination", "clues": ["magnetic dip", "dip", "inclination", "angle of dip", "magnetic inclination"]}, {"answer": "magnetic_induction", "hint": "synonyms for magnetic induction", "clues": ["magnetisation", "magnetic intensity", "magnetic flux density", "magnetic field strength", "magnetic induction"]}, {"answer": "magnification", "hint": "synonyms for magnification", "clues": ["exaggeration", "overstatement", "enlargement", "blowup", "magnification"]}, {"answer": "magnificence", "hint": "synonyms for magnificence", "clues": ["grandeur", "brilliance", "grandness", "richness", "impressiveness", "splendor", "magnificence"]}, {"answer": "magniloquence", "hint": "synonyms for magniloquence", "clues": ["rhetoric", "ornateness", "grandiloquence", "grandiosity", "magniloquence"]}, {"answer": "mail", "hint": "synonyms for mail", "clues": ["postal service", "post", "mail service", "chain armor", "ring armour", "ring mail", "chain mail", "mail"]}, {"answer": "main_office", "hint": "synonyms for main office", "clues": ["home base", "headquarters", "home office", "central office", "main office"]}, {"answer": "mainframe", "hint": "synonyms for mainframe", "clues": ["central processor", "processor", "central processing unit", "mainframe computer", "mainframe"]}, {"answer": "mainsheet", "hint": "synonyms for mainsheet", "clues": ["shroud", "tack", "weather sheet", "sheet", "mainsheet"]}, {"answer": "mainstay", "hint": "synonyms for mainstay", "clues": ["linchpin", "keystone", "backbone", "anchor", "mainstay"]}, {"answer": "maintenance", "hint": "synonyms for maintenance", "clues": ["sustainment", "alimony", "sustenance", "upkeep", "sustentation", "care", "criminal maintenance", "maintenance"]}, {"answer": "major_power", "hint": "synonyms for major power", "clues": ["great power", "power", "superpower", "world power", "major power"]}, {"answer": "major_tranquilizer", "hint": "synonyms for major tranquilizer", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic"]}, {"answer": "major_tranquilliser", "hint": "synonyms for major tranquilliser", "clues": ["neuroleptic agent", "antipsychotic agent", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic", "major tranquilizer"]}, {"answer": "major_tranquillizer", "hint": "synonyms for major tranquillizer", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic"]}, {"answer": "make-up", "hint": "synonyms for make-up", "clues": ["war paint", "constitution", "physical composition", "makeup", "composition"]}, {"answer": "makeup", "hint": "synonyms for makeup", "clues": ["war paint", "constitution", "physical composition", "make-up", "composition"]}, {"answer": "making_love", "hint": "synonyms for making love", "clues": ["love life", "love", "sexual love", "lovemaking", "making love"]}, {"answer": "maladroitness", "hint": "synonyms for maladroitness", "clues": ["slowness", "ineptitude", "clumsiness", "awkwardness", "ineptness", "maladroitness"]}, {"answer": "malarkey", "hint": "synonyms for malarkey", "clues": ["idle words", "wind", "nothingness", "jazz", "malarky"]}, {"answer": "malarky", "hint": "synonyms for malarky", "clues": ["idle words", "malarkey", "wind", "nothingness", "jazz"]}, {"answer": "malice", "hint": "synonyms for malice", "clues": ["spite", "spitefulness", "maliciousness", "malevolence", "venom", "malice"]}, {"answer": "maliciousness", "hint": "synonyms for maliciousness", "clues": ["malice", "venom", "spite", "spitefulness", "maliciousness"]}, {"answer": "mall", "hint": "synonyms for mall", "clues": ["shopping centre", "promenade", "plaza", "shopping mall", "center", "mall"]}, {"answer": "malodor", "hint": "synonyms for malodor", "clues": ["reek", "stench", "mephitis", "malodour", "foetor", "stink"]}, {"answer": "malodorousness", "hint": "synonyms for malodorousness", "clues": ["fetidness", "foulness", "rankness", "stinkiness", "malodorousness"]}, {"answer": "malodour", "hint": "synonyms for malodour", "clues": ["malodor", "reek", "stench", "mephitis", "foetor", "stink"]}, {"answer": "mammee", "hint": "synonyms for mammee", "clues": ["mamey", "mammee apple", "marmalade plum", "sapote", "mammee"]}, {"answer": "manduction", "hint": "synonyms for manduction", "clues": ["mastication", "chew", "sacramental manduction", "manduction"]}, {"answer": "maneuver", "hint": "synonyms for maneuver", "clues": ["tactical manoeuvre", "tactic", "evasive action", "manoeuvre", "play", "simulated military operation", "maneuver"]}, {"answer": "mangonel", "hint": "synonyms for mangonel", "clues": ["onager", "arbalest", "trebuchet", "catapult", "bricole", "ballista", "mangonel"]}, {"answer": "manifestation", "hint": "synonyms for manifestation", "clues": ["materialisation", "reflexion", "reflection", "expression", "demonstration", "manifestation"]}, {"answer": "manikin", "hint": "synonyms for manikin", "clues": ["mannikin", "form", "manakin", "mannequin"]}, {"answer": "manna_from_heaven", "hint": "synonyms for manna from heaven", "clues": ["miraculous food", "bonanza", "godsend", "windfall", "gold rush", "manna", "boom", "gravy", "bunce", "manna from heaven"]}, {"answer": "mannequin", "hint": "synonyms for mannequin", "clues": ["mannikin", "form", "manakin", "mannequin"]}, {"answer": "manner", "hint": "synonyms for manner", "clues": ["style", "personal manner", "mode", "fashion", "way", "manner"]}, {"answer": "mannerism", "hint": "synonyms for mannerism", "clues": ["affectedness", "foible", "affectation", "pose", "idiosyncrasy", "mannerism"]}, {"answer": "manners", "hint": "synonyms for manners", "clues": ["style", "manner", "personal manner", "mode", "fashion", "way"]}, {"answer": "manoeuvre", "hint": "synonyms for manoeuvre", "clues": ["tactical manoeuvre", "tactic", "maneuver", "evasive action", "play", "simulated military operation", "manoeuvre"]}, {"answer": "manse", "hint": "synonyms for manse", "clues": ["mansion house", "mansion", "residence", "hall", "manse"]}, {"answer": "mansion", "hint": "synonyms for mansion", "clues": ["hall", "star sign", "house", "manse", "sign", "sign of the zodiac", "residence", "mansion house", "planetary house", "mansion"]}, {"answer": "mansion_house", "hint": "synonyms for mansion house", "clues": ["mansion", "residence", "manse", "hall", "mansion house"]}, {"answer": "mantel", "hint": "synonyms for mantel", "clues": ["chimneypiece", "mantle", "mantlepiece", "mantel"]}, {"answer": "mantelpiece", "hint": "synonyms for mantelpiece", "clues": ["chimneypiece", "mantle", "mantlepiece", "mantel"]}, {"answer": "mantle", "hint": "synonyms for mantle", "clues": ["chimneypiece", "drapery", "drape", "mantelpiece", "curtain", "mantel", "pall", "blanket", "cape", "mantle"]}, {"answer": "mantlepiece", "hint": "synonyms for mantlepiece", "clues": ["mantelpiece", "chimneypiece", "mantle", "mantel"]}, {"answer": "map", "hint": "synonyms for map", "clues": ["single-valued function", "mapping", "function", "mathematical function", "map"]}, {"answer": "mapping", "hint": "synonyms for mapping", "clues": ["map", "mathematical function", "single-valued function", "chromosome mapping", "function", "mapping"]}, {"answer": "march", "hint": "synonyms for march", "clues": ["border district", "marching music", "borderland", "marching", "marchland"]}, {"answer": "marches", "hint": "synonyms for marches", "clues": ["march", "border district", "marching music", "borderland", "marchland"]}, {"answer": "margarin", "hint": "synonyms for margarin", "clues": ["glycerol trimargarate", "margarine", "oleomargarine", "marge", "oleo"]}, {"answer": "margarine", "hint": "synonyms for margarine", "clues": ["margarin", "marge", "oleo", "oleomargarine"]}, {"answer": "marge", "hint": "synonyms for marge", "clues": ["margarin", "oleo", "oleomargarine", "marge"]}, {"answer": "margin", "hint": "synonyms for margin", "clues": ["leeway", "tolerance", "gross profit margin", "gross profit", "border", "security deposit", "allowance", "perimeter", "margin"]}, {"answer": "marijuana_cigarette", "hint": "synonyms for marijuana cigarette", "clues": ["reefer", "spliff", "stick", "joint", "marijuana cigarette"]}, {"answer": "mark", "hint": "synonyms for mark", "clues": ["stain", "scrape", "cross", "crisscross", "bull's eye", "marker", "score", "sign", "scar", "home run", "grade", "bell ringer", "print", "stigma", "marking", "brand", "target", "scratch"]}, {"answer": "market", "hint": "synonyms for market", "clues": ["market place", "securities industry", "mart", "grocery store", "grocery", "food market", "market"]}, {"answer": "marking", "hint": "synonyms for marking", "clues": ["marker", "scoring", "grading", "mark"]}, {"answer": "marks", "hint": "synonyms for marks", "clues": ["cross", "bull's eye", "marker", "scar", "bell ringer", "mark", "print", "stigma", "scrape", "brand", "target", "scratch", "stain", "crisscross", "score", "sign", "home run", "grade"]}, {"answer": "marriage", "hint": "synonyms for marriage", "clues": ["wedding", "man and wife", "married couple", "marriage ceremony", "marriage"]}, {"answer": "marrow", "hint": "synonyms for marrow", "clues": ["essence", "vegetable marrow", "center", "centre", "heart", "sum", "gist", "substance", "meat", "bone marrow", "nub", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "core", "marrow"]}, {"answer": "mary_jane", "hint": "synonyms for mary jane", "clues": ["dope", "green goddess", "skunk", "locoweed", "gage", "weed", "smoke", "sess", "grass", "sens", "pot", "mary jane"]}, {"answer": "masking", "hint": "synonyms for masking", "clues": ["screening", "masking piece", "covering", "masking"]}, {"answer": "masquerade", "hint": "synonyms for masquerade", "clues": ["fancy dress", "mask", "masquerade costume", "masque", "masquerade party", "masquerade"]}, {"answer": "mass_murder", "hint": "synonyms for mass murder", "clues": ["massacre", "slaughter", "butchery", "carnage", "mass murder"]}, {"answer": "massacre", "hint": "synonyms for massacre", "clues": ["mass murder", "butchery", "slaughter", "carnage", "massacre"]}, {"answer": "masses", "hint": "synonyms for masses", "clues": ["good deal", "slew", "mint", "bulk", "heap", "deal", "peck", "quite a little", "masse shot", "wad", "mass", "mess", "passel", "great deal", "hoi polloi", "people", "the great unwashed", "plenty", "mountain", "tidy sum", "volume", "raft", "spate", "hatful", "lot", "sight", "mickle", "stack", "muckle", "pile", "batch", "flock", "multitude", "pot"]}, {"answer": "massiveness", "hint": "synonyms for massiveness", "clues": ["ponderosity", "heft", "bulkiness", "ponderousness", "heftiness", "massiveness"]}, {"answer": "masters", "hint": "synonyms for masters", "clues": ["passkey", "original", "master key", "master copy", "master", "passe-partout"]}, {"answer": "match", "hint": "synonyms for match", "clues": ["mate", "friction match", "couple", "lucifer", "match"]}, {"answer": "maternity", "hint": "synonyms for maternity", "clues": ["maternal quality", "maternalism", "motherliness", "motherhood", "maternity"]}, {"answer": "mates", "hint": "synonyms for mates", "clues": ["mate", "checkmate", "match", "fellow", "couple"]}, {"answer": "mathematical_function", "hint": "synonyms for mathematical function", "clues": ["single-valued function", "map", "function", "mapping", "mathematical function"]}, {"answer": "mating", "hint": "synonyms for mating", "clues": ["union", "conjugation", "coupling", "pairing", "sexual union", "mating"]}, {"answer": "matter", "hint": "synonyms for matter", "clues": ["thing", "subject", "topic", "affair", "issue", "matter"]}, {"answer": "maturation", "hint": "synonyms for maturation", "clues": ["ontogeny", "suppuration", "festering", "growing", "ontogenesis", "ripening", "development", "growth", "maturement", "maturation"]}, {"answer": "mawkishness", "hint": "synonyms for mawkishness", "clues": ["sentimentality", "bathos", "sloppiness", "drippiness", "mushiness", "soupiness", "mawkishness"]}, {"answer": "max", "hint": "synonyms for max", "clues": ["liquid ecstasy", "easy lay", "scoop", "grievous bodily harm", "soap", "goop", "max"]}, {"answer": "meagerness", "hint": "synonyms for meagerness", "clues": ["scantiness", "poorness", "leanness", "meagreness", "exiguity"]}, {"answer": "meagreness", "hint": "synonyms for meagreness", "clues": ["meagerness", "scantiness", "poorness", "leanness", "exiguity"]}, {"answer": "mean_solar_day", "hint": "synonyms for mean solar day", "clues": ["24-hour interval", "solar day", "twenty-four hours", "twenty-four hour period", "day", "mean solar day"]}, {"answer": "meaninglessness", "hint": "synonyms for meaninglessness", "clues": ["nonsensicality", "bunk", "hokum", "nonsense", "meaninglessness"]}, {"answer": "meanness", "hint": "synonyms for meanness", "clues": ["closeness", "beastliness", "tightness", "minginess", "niggardness", "parsimoniousness", "parsimony", "tightfistedness", "meanness"]}, {"answer": "means", "hint": "synonyms for means", "clues": ["mean", "mean value", "agency", "way", "substance"]}, {"answer": "measure", "hint": "synonyms for measure", "clues": ["step", "measuring rod", "cadence", "standard", "amount", "metre", "bar", "criterion", "meter", "bill", "measurement", "measuring stick", "mensuration", "touchstone", "beat", "measuring", "quantity", "measure"]}, {"answer": "meat", "hint": "synonyms for meat", "clues": ["essence", "nub", "marrow", "center", "nitty-gritty", "centre", "heart", "pith", "inwardness", "gist", "sum", "heart and soul", "kernel", "substance", "core", "meat"]}, {"answer": "medal", "hint": "synonyms for medal", "clues": ["medallion", "palm", "ribbon", "decoration", "laurel wreath", "medal"]}, {"answer": "medallion", "hint": "synonyms for medallion", "clues": ["medal", "palm", "ribbon", "decoration", "laurel wreath", "medallion"]}, {"answer": "medical_checkup", "hint": "synonyms for medical checkup", "clues": ["medical examination", "medical", "medical exam", "checkup", "health check", "medical checkup"]}, {"answer": "medical_exam", "hint": "synonyms for medical exam", "clues": ["medical checkup", "medical examination", "medical", "checkup", "health check", "medical exam"]}, {"answer": "medical_examination", "hint": "synonyms for medical examination", "clues": ["medical checkup", "medical", "medical exam", "checkup", "health check", "medical examination"]}, {"answer": "medicine", "hint": "synonyms for medicine", "clues": ["practice of medicine", "medicinal drug", "medical specialty", "music", "medication", "medicament", "medicine"]}, {"answer": "meeting", "hint": "synonyms for meeting", "clues": ["coming together", "encounter", "merging", "group meeting", "confluence", "get together", "meeting"]}, {"answer": "megabucks", "hint": "synonyms for megabucks", "clues": ["bundle", "pile", "big bucks", "big money", "megabucks"]}, {"answer": "melange", "hint": "synonyms for melange", "clues": ["oddments", "hodgepodge", "gallimaufry", "hotchpotch", "ragbag", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "melange"]}, {"answer": "melodic_line", "hint": "synonyms for melodic line", "clues": ["line", "melodic phrase", "melody", "air", "strain", "tune", "melodic line"]}, {"answer": "melodic_phrase", "hint": "synonyms for melodic phrase", "clues": ["line", "melody", "melodic line", "air", "strain", "tune", "melodic phrase"]}, {"answer": "melody", "hint": "synonyms for melody", "clues": ["line", "melodic phrase", "tonal pattern", "melodic line", "air", "strain", "tune", "melody"]}, {"answer": "memorial_park", "hint": "synonyms for memorial park", "clues": ["burial ground", "burying ground", "graveyard", "necropolis", "cemetery", "burial site", "memorial park"]}, {"answer": "memory", "hint": "synonyms for memory", "clues": ["computer memory", "remembering", "store", "storage", "memory board", "computer storage", "retentivity", "retentiveness", "retention", "memory"]}, {"answer": "memory_board", "hint": "synonyms for memory board", "clues": ["computer storage", "memory", "computer memory", "store", "storage", "memory board"]}, {"answer": "men", "hint": "synonyms for men", "clues": ["hands", "workforce", "piece", "manpower"]}, {"answer": "menage", "hint": "synonyms for menage", "clues": ["house", "home", "family", "household", "menage"]}, {"answer": "mend", "hint": "synonyms for mend", "clues": ["fixture", "patch", "darn", "fixing", "mending", "repair", "reparation"]}, {"answer": "mending", "hint": "synonyms for mending", "clues": ["fixture", "fix", "mend", "repair", "reparation"]}, {"answer": "menses", "hint": "synonyms for menses", "clues": ["menstruum", "catamenia", "period", "flow", "menstruation", "menses"]}, {"answer": "menstruation", "hint": "synonyms for menstruation", "clues": ["menstruum", "menses", "catamenia", "period", "flow", "menstruation"]}, {"answer": "menstruum", "hint": "synonyms for menstruum", "clues": ["menses", "catamenia", "period", "flow", "menstruation", "menstruum"]}, {"answer": "mental_capacity", "hint": "synonyms for mental capacity", "clues": ["brain", "learning ability", "mentality", "wit", "brainpower", "mental capacity"]}, {"answer": "mental_confusion", "hint": "synonyms for mental confusion", "clues": ["confusedness", "muddiness", "disarray", "confusion", "mental confusion"]}, {"answer": "mental_home", "hint": "synonyms for mental home", "clues": ["mental institution", "mental hospital", "psychiatric hospital", "institution", "insane asylum", "asylum", "mental home"]}, {"answer": "mental_hospital", "hint": "synonyms for mental hospital", "clues": ["mental institution", "mental home", "psychiatric hospital", "institution", "insane asylum", "asylum", "mental hospital"]}, {"answer": "mental_institution", "hint": "synonyms for mental institution", "clues": ["mental home", "mental hospital", "psychiatric hospital", "institution", "insane asylum", "asylum", "mental institution"]}, {"answer": "mental_process", "hint": "synonyms for mental process", "clues": ["cognitive process", "operation", "process", "cognitive operation", "mental process"]}, {"answer": "mental_retardation", "hint": "synonyms for mental retardation", "clues": ["retardation", "slowness", "backwardness", "subnormality", "mental retardation"]}, {"answer": "mentality", "hint": "synonyms for mentality", "clues": ["brain", "wit", "brainpower", "mind-set", "learning ability", "mental capacity", "outlook", "mentality"]}, {"answer": "mentation", "hint": "synonyms for mentation", "clues": ["intellection", "thought", "thinking", "thought process", "cerebration", "mentation"]}, {"answer": "mention", "hint": "synonyms for mention", "clues": ["citation", "reference", "honorable mention", "quotation", "cite", "credit", "acknowledgment", "mention"]}, {"answer": "menu", "hint": "synonyms for menu", "clues": ["bill of fare", "card", "computer menu", "fare", "carte", "carte du jour", "menu"]}, {"answer": "meow", "hint": "synonyms for meow", "clues": ["miaow", "miaou", "mew", "miaul"]}, {"answer": "mephitis", "hint": "synonyms for mephitis", "clues": ["malodor", "reek", "stench", "foetor", "stink", "mephitis"]}, {"answer": "mercilessness", "hint": "synonyms for mercilessness", "clues": ["pitilessness", "cruelty", "ruthlessness", "unmercifulness", "mercilessness"]}, {"answer": "meretriciousness", "hint": "synonyms for meretriciousness", "clues": ["tawdriness", "flashiness", "garishness", "glitz", "gaudiness", "brashness", "speciousness", "loudness", "meretriciousness"]}, {"answer": "merger", "hint": "synonyms for merger", "clues": ["fusion", "unification", "amalgamation", "uniting", "merger"]}, {"answer": "merry-go-round", "hint": "synonyms for merry-go-round", "clues": ["whirligig", "carrousel", "roundabout", "merry-go-round"]}, {"answer": "mesh", "hint": "synonyms for mesh", "clues": ["net", "engagement", "mesh topology", "meshwork", "interlock", "meshing", "network"]}, {"answer": "meshing", "hint": "synonyms for meshing", "clues": ["interlocking", "engagement", "meshwork", "net", "mesh", "network"]}, {"answer": "meshwork", "hint": "synonyms for meshwork", "clues": ["net", "mesh", "network", "meshwork"]}, {"answer": "mess", "hint": "synonyms for mess", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mess hall", "mass", "raft", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "mess"]}, {"answer": "messenger_rna", "hint": "synonyms for messenger rna", "clues": ["template RNA", "mRNA", "informational RNA", "messenger RNA"]}, {"answer": "mete", "hint": "synonyms for mete", "clues": ["border", "borderline", "boundary line", "delimitation", "mete"]}, {"answer": "meter", "hint": "synonyms for meter", "clues": ["cadence", "beat", "metre", "measure", "m", "time", "meter"]}, {"answer": "meth", "hint": "synonyms for meth", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "methamphetamine hydrochloride", "meth"]}, {"answer": "methadon", "hint": "synonyms for methadon", "clues": ["methadone hydrochloride", "synthetic heroin", "fixer", "methadone", "dolophine hydrochloride"]}, {"answer": "methadone", "hint": "synonyms for methadone", "clues": ["methadone hydrochloride", "methadon", "synthetic heroin", "fixer", "dolophine hydrochloride"]}, {"answer": "methadone_hydrochloride", "hint": "synonyms for methadone hydrochloride", "clues": ["methadon", "synthetic heroin", "fixer", "dolophine hydrochloride", "methadone hydrochloride"]}, {"answer": "methamphetamine", "hint": "synonyms for methamphetamine", "clues": ["ice", "chalk", "glass", "trash", "shabu", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "methamphetamine"]}, {"answer": "methamphetamine_hydrochloride", "hint": "synonyms for methamphetamine hydrochloride", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride"]}, {"answer": "methane_series", "hint": "synonyms for methane series", "clues": ["alkane", "paraffin series", "paraffin", "alkane series", "methane series"]}, {"answer": "methedrine", "hint": "synonyms for methedrine", "clues": ["ice", "chalk", "glass", "trash", "shabu", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "methedrine"]}, {"answer": "metier", "hint": "synonyms for metier", "clues": ["forte", "specialty", "medium", "strength", "strong point", "long suit", "strong suit", "metier"]}, {"answer": "metre", "hint": "synonyms for metre", "clues": ["meter", "cadence", "beat", "measure", "m", "time", "metre"]}, {"answer": "metrics", "hint": "synonyms for metrics", "clues": ["metric function", "metric unit", "system of measurement", "metric", "prosody"]}, {"answer": "metro", "hint": "synonyms for metro", "clues": ["subway", "subway system", "underground", "tube", "metro"]}, {"answer": "mew", "hint": "synonyms for mew", "clues": ["meow", "miaow", "miaou", "miaul"]}, {"answer": "mews", "hint": "synonyms for mews", "clues": ["miaul", "meow", "miaow", "miaou", "mews"]}, {"answer": "mexican_valium", "hint": "synonyms for mexican valium", "clues": ["roofy", "rope", "roach", "forget me drug", "circle", "rophy", "mexican valium"]}, {"answer": "mi", "hint": "synonyms for mi", "clues": ["geographical mile", "international mile", "statute mile", "knot", "stat mi", "air mile", "nautical mile", "international nautical mile", "land mile", "naut mi", "mile", "mi"]}, {"answer": "miaou", "hint": "synonyms for miaou", "clues": ["meow", "miaow", "miaul", "miaou"]}, {"answer": "miaow", "hint": "synonyms for miaow", "clues": ["meow", "miaul", "miaou", "miaow"]}, {"answer": "miaul", "hint": "synonyms for miaul", "clues": ["meow", "miaow", "miaou", "miaul"]}, {"answer": "mickle", "hint": "synonyms for mickle", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "mickle"]}, {"answer": "micro_chip", "hint": "synonyms for micro chip", "clues": ["microchip", "microprocessor chip", "chip", "silicon chip"]}, {"answer": "microchip", "hint": "synonyms for microchip", "clues": ["microprocessor chip", "silicon chip", "chip", "micro chip"]}, {"answer": "micromillimeter", "hint": "synonyms for micromillimeter", "clues": ["nm", "micromillimetre", "nanometre", "millimicron"]}, {"answer": "micromillimetre", "hint": "synonyms for micromillimetre", "clues": ["micromillimeter", "nm", "nanometre", "millimicron"]}, {"answer": "microprocessor_chip", "hint": "synonyms for microprocessor chip", "clues": ["microchip", "silicon chip", "chip", "microprocessor chip"]}, {"answer": "midday", "hint": "synonyms for midday", "clues": ["twelve noon", "noontide", "noon", "noonday", "high noon", "midday"]}, {"answer": "midden", "hint": "synonyms for midden", "clues": ["kitchen midden", "muckhill", "dunghill", "muckheap", "midden"]}, {"answer": "middle_buster", "hint": "synonyms for middle buster", "clues": ["lister plough", "lister plow", "lister", "middlebreaker", "middle buster"]}, {"answer": "middlebreaker", "hint": "synonyms for middlebreaker", "clues": ["lister plough", "middle buster", "lister plow", "lister", "middlebreaker"]}, {"answer": "mil", "hint": "synonyms for mil", "clues": ["cc", "ml", "cubic centimeter", "milliliter", "mile"]}, {"answer": "mildness", "hint": "synonyms for mildness", "clues": ["leniency", "gentleness", "lenity", "softness", "mildness"]}, {"answer": "mile", "hint": "synonyms for mile", "clues": ["mi", "international mile", "sea mile", "geographical mile", "statute mile", "knot", "stat mi", "air mile", "nautical mile", "land mile", "international nautical mile", "naut mi", "mil"]}, {"answer": "mileage", "hint": "synonyms for mileage", "clues": ["gasoline mileage", "gas mileage", "fuel consumption rate", "milage"]}, {"answer": "military_capability", "hint": "synonyms for military capability", "clues": ["posture", "strength", "military posture", "military strength", "military capability"]}, {"answer": "military_machine", "hint": "synonyms for military machine", "clues": ["armed forces", "armed services", "military", "war machine", "military machine"]}, {"answer": "military_posture", "hint": "synonyms for military posture", "clues": ["posture", "military strength", "strength", "military capability", "military posture"]}, {"answer": "military_strength", "hint": "synonyms for military strength", "clues": ["posture", "strength", "military posture", "military capability", "military strength"]}, {"answer": "mill", "hint": "synonyms for mill", "clues": ["grind", "pulverization", "manufacturing plant", "grinder", "milling machinery", "manufactory", "factory", "mill"]}, {"answer": "milliliter", "hint": "synonyms for milliliter", "clues": ["cc", "ml", "cubic centimeter", "millilitre", "mil"]}, {"answer": "millilitre", "hint": "synonyms for millilitre", "clues": ["cc", "ml", "cubic centimeter", "milliliter", "mil"]}, {"answer": "millimicron", "hint": "synonyms for millimicron", "clues": ["micromillimeter", "nm", "nanometre", "millimicron"]}, {"answer": "mills", "hint": "synonyms for mills", "clues": ["grind", "pulverization", "milling machinery", "mill", "manufacturing plant", "grinder", "manufactory", "factory"]}, {"answer": "mind", "hint": "synonyms for mind", "clues": ["psyche", "brain", "idea", "nous", "intellect", "judgement", "head", "mind"]}, {"answer": "mindlessness", "hint": "synonyms for mindlessness", "clues": ["vacuity", "rashness", "inanity", "senselessness", "pointlessness", "heedlessness", "mindlessness"]}, {"answer": "mineral_dressing", "hint": "synonyms for mineral dressing", "clues": ["mineral extraction", "beneficiation", "ore processing", "mineral processing", "ore dressing"]}, {"answer": "mineral_extraction", "hint": "synonyms for mineral extraction", "clues": ["beneficiation", "ore processing", "mineral processing", "ore dressing", "mineral extraction"]}, {"answer": "mineral_processing", "hint": "synonyms for mineral processing", "clues": ["mineral extraction", "ore processing", "beneficiation", "mineral dressing", "ore dressing"]}, {"answer": "mineral_wax", "hint": "synonyms for mineral wax", "clues": ["earth wax", "ader wax", "ozocerite", "mineral wax"]}, {"answer": "minginess", "hint": "synonyms for minginess", "clues": ["closeness", "tightness", "niggardness", "meanness", "parsimoniousness", "parsimony", "tightfistedness", "minginess"]}, {"answer": "mingle-mangle", "hint": "synonyms for mingle-mangle", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "ragbag", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "mingle-mangle"]}, {"answer": "minor_tranquilizer", "hint": "synonyms for minor tranquilizer", "clues": ["antianxiety drug", "minor tranquilliser", "anxiolytic", "anxiolytic drug"]}, {"answer": "minor_tranquilliser", "hint": "synonyms for minor tranquilliser", "clues": ["antianxiety drug", "minor tranquilizer", "anxiolytic", "anxiolytic drug"]}, {"answer": "minor_tranquillizer", "hint": "synonyms for minor tranquillizer", "clues": ["antianxiety drug", "minor tranquilliser", "anxiolytic", "anxiolytic drug"]}, {"answer": "minuteness", "hint": "synonyms for minuteness", "clues": ["tininess", "diminutiveness", "weeness", "petiteness", "minuteness"]}, {"answer": "minutes", "hint": "synonyms for minutes", "clues": ["moment", "instant", "arcminute", "proceedings", "bit", "minute", "minute of arc", "transactions", "min", "second", "hour", "mo"]}, {"answer": "miosis", "hint": "synonyms for miosis", "clues": ["meiosis", "myosis", "light reflex", "reduction division", "pupillary reflex"]}, {"answer": "mire", "hint": "synonyms for mire", "clues": ["quag", "morass", "slop", "slack", "quagmire", "mire"]}, {"answer": "mirth", "hint": "synonyms for mirth", "clues": ["hilarity", "glee", "gleefulness", "mirthfulness", "mirth"]}, {"answer": "mirthfulness", "hint": "synonyms for mirthfulness", "clues": ["mirth", "hilarity", "glee", "gleefulness", "mirthfulness"]}, {"answer": "misapplication", "hint": "synonyms for misapplication", "clues": ["defalcation", "peculation", "misappropriation", "embezzlement", "misapplication"]}, {"answer": "misappropriation", "hint": "synonyms for misappropriation", "clues": ["misapplication", "defalcation", "peculation", "embezzlement", "misappropriation"]}, {"answer": "miscellanea", "hint": "synonyms for miscellanea", "clues": ["potpourri", "smorgasbord", "miscellany", "variety", "mixture", "mixed bag", "assortment", "motley", "salmagundi"]}, {"answer": "miscellany", "hint": "synonyms for miscellany", "clues": ["potpourri", "smorgasbord", "variety", "florilegium", "mixture", "garland", "assortment", "mixed bag", "miscellanea", "motley", "salmagundi"]}, {"answer": "mischief", "hint": "synonyms for mischief", "clues": ["mischievousness", "roguery", "deviltry", "maleficence", "mischief-making", "balefulness", "rascality", "devilment", "roguishness", "shenanigan", "mischief"]}, {"answer": "mischief-making", "hint": "synonyms for mischief-making", "clues": ["mischievousness", "roguery", "deviltry", "rascality", "devilment", "roguishness", "shenanigan", "mischief", "mischief-making"]}, {"answer": "mischievousness", "hint": "synonyms for mischievousness", "clues": ["whimsicality", "naughtiness", "roguery", "badness", "deviltry", "mischief-making", "rascality", "devilment", "roguishness", "shenanigan", "mischief", "puckishness", "impishness", "mischievousness"]}, {"answer": "misdemeanor", "hint": "synonyms for misdemeanor", "clues": ["infringement", "violation", "misdemeanour", "infraction"]}, {"answer": "misdemeanour", "hint": "synonyms for misdemeanour", "clues": ["infringement", "misdemeanor", "violation", "infraction"]}, {"answer": "misgiving", "hint": "synonyms for misgiving", "clues": ["scruple", "suspicion", "distrust", "apprehension", "qualm", "misgiving"]}, {"answer": "mishmash", "hint": "synonyms for mishmash", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "ragbag", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash"]}, {"answer": "misprint", "hint": "synonyms for misprint", "clues": ["literal error", "erratum", "typo", "literal", "typographical error", "misprint"]}, {"answer": "mission", "hint": "synonyms for mission", "clues": ["missionary station", "delegacy", "commission", "missionary post", "missionary work", "foreign mission", "deputation", "charge", "delegation", "military mission", "mission"]}, {"answer": "mistake", "hint": "synonyms for mistake", "clues": ["fault", "error", "misunderstanding", "misapprehension", "mistake"]}, {"answer": "mistiness", "hint": "synonyms for mistiness", "clues": ["vaporousness", "haziness", "steaminess", "mistiness"]}, {"answer": "mistrust", "hint": "synonyms for mistrust", "clues": ["suspicion", "distrustfulness", "distrust", "misgiving"]}, {"answer": "misunderstanding", "hint": "synonyms for misunderstanding", "clues": ["mistake", "mistaking", "misinterpretation", "misapprehension", "misunderstanding"]}, {"answer": "mite", "hint": "synonyms for mite", "clues": ["touch", "hint", "soupcon", "jot", "tinge", "pinch", "speck", "mite"]}, {"answer": "mix", "hint": "synonyms for mix", "clues": ["intermixture", "mixture", "commixture", "premix", "mixing"]}, {"answer": "mixed_bag", "hint": "synonyms for mixed bag", "clues": ["potpourri", "smorgasbord", "miscellany", "variety", "mixture", "assortment", "motley", "salmagundi", "mixed bag"]}, {"answer": "mixing", "hint": "synonyms for mixing", "clues": ["intermixture", "commixture", "mixture", "mix"]}, {"answer": "mixture", "hint": "synonyms for mixture", "clues": ["mix", "potpourri", "admixture", "concoction", "miscellany", "intermixture", "variety", "salmagundi", "commixture", "mixed bag", "assortment", "motley", "smorgasbord"]}, {"answer": "ml", "hint": "synonyms for ml", "clues": ["cc", "cubic centimeter", "milliliter", "mil", "ml"]}, {"answer": "mls", "hint": "synonyms for mls", "clues": ["cc", "ml", "cubic centimeter", "milliliter", "mil"]}, {"answer": "mo", "hint": "synonyms for mo", "clues": ["moment", "second", "bit", "minute", "molybdenum", "atomic number 42", "mo"]}, {"answer": "mob", "hint": "synonyms for mob", "clues": ["rout", "gang", "crime syndicate", "family", "pack", "ring", "rabble", "syndicate", "mob"]}, {"answer": "mobile_phone", "hint": "synonyms for mobile phone", "clues": ["cell", "cellular phone", "cellphone", "mobile phone"]}, {"answer": "mockery", "hint": "synonyms for mockery", "clues": ["jeer", "scoff", "burlesque", "travesty", "lampoon", "spoof", "put-on", "sendup", "takeoff", "charade", "pasquinade", "parody", "mockery"]}, {"answer": "modality", "hint": "synonyms for modality", "clues": ["mood", "sense modality", "mode", "sensory system", "modality"]}, {"answer": "mode", "hint": "synonyms for mode", "clues": ["style", "modal value", "manner", "modality", "mood", "musical mode", "fashion", "way", "mode"]}, {"answer": "modeling", "hint": "synonyms for modeling", "clues": ["molding", "mould", "modelling", "model", "clay sculpture"]}, {"answer": "moderation", "hint": "synonyms for moderation", "clues": ["moderateness", "temperance", "relief", "mitigation", "easing", "moderation"]}, {"answer": "modernism", "hint": "synonyms for modernism", "clues": ["contemporaneity", "modernness", "modernity", "contemporaneousness", "modernism"]}, {"answer": "modernity", "hint": "synonyms for modernity", "clues": ["contemporaneity", "modernness", "modernism", "contemporaneousness", "modernity"]}, {"answer": "modernness", "hint": "synonyms for modernness", "clues": ["contemporaneity", "modernism", "modernity", "contemporaneousness", "modernness"]}, {"answer": "modification", "hint": "synonyms for modification", "clues": ["change", "limiting", "alteration", "qualifying", "adjustment", "modification"]}, {"answer": "modishness", "hint": "synonyms for modishness", "clues": ["chic", "chichi", "smartness", "chicness", "last word", "stylishness", "swank", "modishness"]}, {"answer": "modulation", "hint": "synonyms for modulation", "clues": ["inflection", "transition", "pitch contour", "intonation", "modulation"]}, {"answer": "mold", "hint": "synonyms for mold", "clues": ["clay sculpture", "modeling", "stamp", "cast", "molding", "mould", "mildew"]}, {"answer": "molding", "hint": "synonyms for molding", "clues": ["casting", "modelling", "border", "clay sculpture", "mould", "molding"]}, {"answer": "mole", "hint": "synonyms for mole", "clues": ["bulwark", "breakwater", "groyne", "jetty", "gram molecule", "groin", "seawall", "mol"]}, {"answer": "molecule", "hint": "synonyms for molecule", "clues": ["corpuscle", "mote", "particle", "atom", "speck", "molecule"]}, {"answer": "moment", "hint": "synonyms for moment", "clues": ["instant", "present moment", "bit", "consequence", "minute", "here and now", "second", "import", "mo", "moment"]}, {"answer": "monetary_resource", "hint": "synonyms for monetary resource", "clues": ["finances", "funds", "pecuniary resource", "cash in hand", "monetary resource"]}, {"answer": "money_box", "hint": "synonyms for money box", "clues": ["bank", "cashbox", "till", "savings bank", "coin bank", "money box"]}, {"answer": "moniker", "hint": "synonyms for moniker", "clues": ["soubriquet", "byname", "cognomen", "nickname", "moniker"]}, {"answer": "monition", "hint": "synonyms for monition", "clues": ["process of monition", "word of advice", "warning", "admonition", "admonishment"]}, {"answer": "monkey_nut", "hint": "synonyms for monkey nut", "clues": ["earthnut", "peanut", "goober", "goober pea", "groundnut", "monkey nut"]}, {"answer": "monocracy", "hint": "synonyms for monocracy", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "authoritarianism", "totalitarianism", "absolutism", "monocracy"]}, {"answer": "mood", "hint": "synonyms for mood", "clues": ["temper", "mode", "modality", "humor", "mood"]}, {"answer": "moolah", "hint": "synonyms for moolah", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "moolah"]}, {"answer": "moon", "hint": "synonyms for moon", "clues": ["moonlight", "lunar month", "lunation", "synodic month", "moonshine", "moon"]}, {"answer": "moorage", "hint": "synonyms for moorage", "clues": ["docking", "slip", "tying up", "dockage", "mooring", "berth", "moorage"]}, {"answer": "mooring", "hint": "synonyms for mooring", "clues": ["mooring line", "slip", "moorage", "berth", "mooring"]}, {"answer": "mop_up", "hint": "synonyms for mop up", "clues": ["culmination", "closing", "completion", "windup", "mop up"]}, {"answer": "morals", "hint": "synonyms for morals", "clues": ["moral", "ethics", "ethical motive", "lesson", "morality"]}, {"answer": "morass", "hint": "synonyms for morass", "clues": ["quagmire", "slack", "quag", "mire", "morass"]}, {"answer": "morning", "hint": "synonyms for morning", "clues": ["dawn", "dayspring", "break of day", "forenoon", "first light", "sunrise", "good morning", "morning time", "daybreak", "sunup", "morn", "aurora", "cockcrow"]}, {"answer": "moroseness", "hint": "synonyms for moroseness", "clues": ["sourness", "sulkiness", "glumness", "sullenness", "moroseness"]}, {"answer": "morphology", "hint": "synonyms for morphology", "clues": ["geomorphology", "sound structure", "syllable structure", "word structure"]}, {"answer": "mortality", "hint": "synonyms for mortality", "clues": ["mortality rate", "death rate", "fatality rate", "mortality"]}, {"answer": "mortality_rate", "hint": "synonyms for mortality rate", "clues": ["death rate", "mortality", "fatality rate", "mortality rate"]}, {"answer": "mortification", "hint": "synonyms for mortification", "clues": ["humiliation", "sphacelus", "necrosis", "chagrin", "gangrene", "mortification"]}, {"answer": "mote", "hint": "synonyms for mote", "clues": ["speck", "corpuscle", "molecule", "atom", "particle", "mote"]}, {"answer": "mother_country", "hint": "synonyms for mother country", "clues": ["homeland", "native land", "fatherland", "motherland", "country of origin", "mother country"]}, {"answer": "mother_wit", "hint": "synonyms for mother wit", "clues": ["good sense", "horse sense", "sense", "common sense", "gumption", "mother wit"]}, {"answer": "motherland", "hint": "synonyms for motherland", "clues": ["homeland", "mother country", "native land", "fatherland", "country of origin", "motherland"]}, {"answer": "motion", "hint": "synonyms for motion", "clues": ["movement", "question", "motility", "apparent movement", "apparent motion", "move", "gesture", "motion"]}, {"answer": "motion-picture_show", "hint": "synonyms for motion-picture show", "clues": ["movie", "moving picture", "picture", "film", "flick", "moving-picture show", "picture show", "pic"]}, {"answer": "motion_picture", "hint": "synonyms for motion picture", "clues": ["movie", "moving picture", "picture", "film", "flick", "moving-picture show", "picture show", "pic"]}, {"answer": "motion_study", "hint": "synonyms for motion study", "clues": ["time-and-motion study", "time study", "work study", "motion study"]}, {"answer": "motor_horn", "hint": "synonyms for motor horn", "clues": ["hooter", "horn", "automobile horn", "car horn", "motor horn"]}, {"answer": "motor_hotel", "hint": "synonyms for motor hotel", "clues": ["tourist court", "motor lodge", "court", "motor inn", "motor hotel"]}, {"answer": "motor_inn", "hint": "synonyms for motor inn", "clues": ["motor hotel", "tourist court", "motor lodge", "court", "motor inn"]}, {"answer": "motor_lodge", "hint": "synonyms for motor lodge", "clues": ["motor hotel", "tourist court", "court", "motor inn", "motor lodge"]}, {"answer": "motorbus", "hint": "synonyms for motorbus", "clues": ["passenger vehicle", "double-decker", "motorcoach", "bus", "charabanc", "omnibus", "autobus", "coach", "jitney", "motorbus"]}, {"answer": "motorcar", "hint": "synonyms for motorcar", "clues": ["auto", "car", "automobile", "machine", "motorcar"]}, {"answer": "motorcoach", "hint": "synonyms for motorcoach", "clues": ["passenger vehicle", "double-decker", "bus", "charabanc", "omnibus", "autobus", "motorbus", "coach", "jitney", "motorcoach"]}, {"answer": "motorway", "hint": "synonyms for motorway", "clues": ["throughway", "state highway", "superhighway", "pike", "expressway", "freeway", "thruway", "motorway"]}, {"answer": "mould", "hint": "synonyms for mould", "clues": ["clay sculpture", "modeling", "stamp", "cast", "molding", "mildew", "mould"]}, {"answer": "moulding", "hint": "synonyms for moulding", "clues": ["modelling", "border", "clay sculpture", "molding", "mould"]}, {"answer": "mound", "hint": "synonyms for mound", "clues": ["pitcher", "cumulation", "hammock", "hill", "cumulus", "heap", "hillock", "agglomerate", "knoll", "pile", "pitcher's mound", "mound"]}, {"answer": "mount", "hint": "synonyms for mount", "clues": ["mountain", "climb", "setting", "backing", "mount"]}, {"answer": "mountain", "hint": "synonyms for mountain", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "mount", "lot", "sight", "mickle", "stack", "plenty", "muckle", "pile", "batch", "flock", "tidy sum", "pot", "mountain"]}, {"answer": "mountain_chain", "hint": "synonyms for mountain chain", "clues": ["range", "mountain range", "range of mountains", "chain", "chain of mountains", "mountain chain"]}, {"answer": "mountain_range", "hint": "synonyms for mountain range", "clues": ["range", "mountain chain", "range of mountains", "chain", "chain of mountains", "mountain range"]}, {"answer": "mouth", "hint": "synonyms for mouth", "clues": ["sass", "backtalk", "lip", "mouth"]}, {"answer": "move", "hint": "synonyms for move", "clues": ["movement", "relocation", "motility", "motion", "move"]}, {"answer": "movement", "hint": "synonyms for movement", "clues": ["motility", "apparent motion", "motion", "effort", "apparent movement", "front", "cause", "campaign", "bowel movement", "trend", "drift", "crusade", "drive", "social movement", "move", "bm", "movement"]}, {"answer": "mover", "hint": "synonyms for mover", "clues": ["moving company", "removal company", "public mover", "removal firm", "mover"]}, {"answer": "movie", "hint": "synonyms for movie", "clues": ["moving picture", "picture", "film", "flick", "moving-picture show", "picture show", "pic", "movie"]}, {"answer": "movie_house", "hint": "synonyms for movie house", "clues": ["picture palace", "movie theater", "cinema", "movie house"]}, {"answer": "movie_theater", "hint": "synonyms for movie theater", "clues": ["movie house", "movie theatre", "cinema", "picture palace"]}, {"answer": "movie_theatre", "hint": "synonyms for movie theatre", "clues": ["movie house", "movie theater", "cinema", "picture palace"]}, {"answer": "moving-picture_show", "hint": "synonyms for moving-picture show", "clues": ["movie", "moving picture", "picture", "film", "flick", "picture show", "motion-picture show", "pic"]}, {"answer": "moving_company", "hint": "synonyms for moving company", "clues": ["removal firm", "removal company", "public mover", "mover", "moving company"]}, {"answer": "moving_picture", "hint": "synonyms for moving picture", "clues": ["movie", "picture", "film", "flick", "moving-picture show", "motion picture", "picture show", "pic"]}, {"answer": "moxie", "hint": "synonyms for moxie", "clues": ["sand", "backbone", "grit", "guts", "gumption", "moxie"]}, {"answer": "mrna", "hint": "synonyms for mrna", "clues": ["template RNA", "mRNA", "informational RNA", "messenger RNA"]}, {"answer": "ms", "hint": "synonyms for ms", "clues": ["1000", "molarity", "thou", "grand", "metre", "one thousand", "m", "thousand", "meter", "mebibyte", "megabyte", "manuscript", "yard", "chiliad", "molar concentration"]}, {"answer": "mt", "hint": "synonyms for mt", "clues": ["atomic number 109", "tonne", "t", "metric ton", "machine translation", "meitnerium", "element 109", "mt"]}, {"answer": "muck", "hint": "synonyms for muck", "clues": ["dung", "sludge", "guck", "goop", "gook", "slime", "ooze", "droppings", "gunk", "muck"]}, {"answer": "muckle", "hint": "synonyms for muckle", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "muckle"]}, {"answer": "muddiness", "hint": "synonyms for muddiness", "clues": ["confusedness", "murkiness", "cloudiness", "confusion", "mental confusion", "disarray", "muddiness"]}, {"answer": "multitude", "hint": "synonyms for multitude", "clues": ["hoi polloi", "people", "large number", "pack", "the great unwashed", "battalion", "mass", "throng", "concourse", "plurality", "multitude"]}, {"answer": "mundaneness", "hint": "synonyms for mundaneness", "clues": ["sophistication", "mundanity", "worldliness", "ordinariness", "mundaneness"]}, {"answer": "mundanity", "hint": "synonyms for mundanity", "clues": ["sophistication", "worldliness", "ordinariness", "mundaneness", "mundanity"]}, {"answer": "munificence", "hint": "synonyms for munificence", "clues": ["largess", "magnanimity", "openhandedness", "munificence"]}, {"answer": "munition", "hint": "synonyms for munition", "clues": ["arms", "weaponry", "fortification", "ordnance store", "ordnance", "weapons system", "implements of war", "munition"]}, {"answer": "murmur", "hint": "synonyms for murmur", "clues": ["grumbling", "murmuration", "mussitation", "murmur vowel", "murmuring", "mutter", "grumble"]}, {"answer": "murmuration", "hint": "synonyms for murmuration", "clues": ["mutter", "murmur", "mussitation", "murmuration"]}, {"answer": "murphy", "hint": "synonyms for murphy", "clues": ["white potato", "spud", "potato", "tater", "murphy"]}, {"answer": "muscat", "hint": "synonyms for muscat", "clues": ["muscat grape", "muscadel", "capital of Oman", "muscat"]}, {"answer": "muscle", "hint": "synonyms for muscle", "clues": ["brawn", "sinew", "brawniness", "heftiness", "muscularity", "muscle"]}, {"answer": "muscularity", "hint": "synonyms for muscularity", "clues": ["muscle", "brawn", "vigour", "brawniness", "vim", "energy", "sinew", "heftiness", "muscularity"]}, {"answer": "mush", "hint": "synonyms for mush", "clues": ["glop", "cornmeal mush", "pulp", "treacle", "slop", "mush"]}, {"answer": "mushiness", "hint": "synonyms for mushiness", "clues": ["sentimentality", "sloppiness", "drippiness", "pulpiness", "mawkishness", "soupiness", "mushiness"]}, {"answer": "musical_composition", "hint": "synonyms for musical composition", "clues": ["piece of music", "piece", "opus", "composition", "musical composition"]}, {"answer": "mussitation", "hint": "synonyms for mussitation", "clues": ["mutter", "murmur", "murmuration", "mussitation"]}, {"answer": "mustard_agent", "hint": "synonyms for mustard agent", "clues": ["blistering agent", "mustard gas", "sulfur mustard", "dichloroethyl sulfide", "mustard agent"]}, {"answer": "mustard_gas", "hint": "synonyms for mustard gas", "clues": ["mustard agent", "blistering agent", "sulfur mustard", "dichloroethyl sulfide", "mustard gas"]}, {"answer": "mutter", "hint": "synonyms for mutter", "clues": ["grumbling", "murmuration", "mussitation", "murmuring", "muttering", "grumble"]}, {"answer": "muttering", "hint": "synonyms for muttering", "clues": ["grumbling", "murmuration", "mussitation", "murmuring", "mutter", "grumble"]}, {"answer": "mv", "hint": "synonyms for mv", "clues": ["millivolt", "atomic number 101", "mendelevium", "mV"]}, {"answer": "mystery", "hint": "synonyms for mystery", "clues": ["mystery story", "closed book", "whodunit", "secret", "enigma", "mystery"]}, {"answer": "mystification", "hint": "synonyms for mystification", "clues": ["obfuscation", "puzzlement", "bemusement", "bewilderment", "bafflement", "befuddlement", "mystification"]}, {"answer": "n", "hint": "synonyms for n", "clues": ["atomic number 7", "north", "nitrogen", "northward", "newton", "due north", "normality", "n"]}, {"answer": "nada", "hint": "synonyms for nada", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nix", "nothing", "nada"]}, {"answer": "naive_art", "hint": "synonyms for naive art", "clues": ["vernacular art", "primitive art", "self-taught art", "outsider art", "naive art"]}, {"answer": "names", "hint": "synonyms for names", "clues": ["epithet", "name", "gens", "name calling"]}, {"answer": "nanometer", "hint": "synonyms for nanometer", "clues": ["micromillimeter", "nm", "nanometre", "millimicron"]}, {"answer": "nanometre", "hint": "synonyms for nanometre", "clues": ["micromillimeter", "nm", "millimicron", "nanometer"]}, {"answer": "nap", "hint": "synonyms for nap", "clues": ["forty winks", "pile", "snooze", "cat sleep", "catnap", "short sleep", "sleep", "nap"]}, {"answer": "napkin", "hint": "synonyms for napkin", "clues": ["nappy", "serviette", "table napkin", "diaper", "napkin"]}, {"answer": "narghile", "hint": "synonyms for narghile", "clues": ["sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "nargileh", "shisha", "water pipe", "hubble-bubble"]}, {"answer": "nargileh", "hint": "synonyms for nargileh", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble"]}, {"answer": "narration", "hint": "synonyms for narration", "clues": ["story", "recital", "tale", "narrative", "yarn", "narration"]}, {"answer": "narrow_escape", "hint": "synonyms for narrow escape", "clues": ["squeak", "close call", "close shave", "narrow escape"]}, {"answer": "nastiness", "hint": "synonyms for nastiness", "clues": ["spite", "cattiness", "spitefulness", "bitchiness", "nastiness"]}, {"answer": "natality", "hint": "synonyms for natality", "clues": ["birth rate", "fertility rate", "fertility", "natality"]}, {"answer": "nation", "hint": "synonyms for nation", "clues": ["commonwealth", "country", "state", "res publica", "land", "body politic", "nation"]}, {"answer": "native_land", "hint": "synonyms for native land", "clues": ["homeland", "mother country", "fatherland", "motherland", "country of origin", "native land"]}, {"answer": "natural_spring", "hint": "synonyms for natural spring", "clues": ["spring", "outpouring", "outflow", "fountain", "natural spring"]}, {"answer": "naught", "hint": "synonyms for naught", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing"]}, {"answer": "nauseatingness", "hint": "synonyms for nauseatingness", "clues": ["sickeningness", "disgustingness", "unsavoriness", "distastefulness", "nauseatingness"]}, {"answer": "naut_mi", "hint": "synonyms for naut mi", "clues": ["mi", "geographical mile", "knot", "air mile", "nautical mile", "international nautical mile", "mile", "naut mi"]}, {"answer": "nautical_mile", "hint": "synonyms for nautical mile", "clues": ["mi", "geographical mile", "knot", "air mile", "international nautical mile", "naut mi", "mile", "nautical mile"]}, {"answer": "navigation", "hint": "synonyms for navigation", "clues": ["sailing", "piloting", "pilotage", "seafaring", "navigation"]}, {"answer": "ne", "hint": "synonyms for ne", "clues": ["atomic number 10", "northeastward", "neon", "northeast", "nor'-east", "ne"]}, {"answer": "nebuliser", "hint": "synonyms for nebuliser", "clues": ["spray", "nebulizer", "atomiser", "sprayer"]}, {"answer": "nebulizer", "hint": "synonyms for nebulizer", "clues": ["spray", "atomiser", "sprayer", "nebuliser"]}, {"answer": "necessity", "hint": "synonyms for necessity", "clues": ["essential", "requisite", "necessary", "requirement", "necessity"]}, {"answer": "neck_of_the_woods", "hint": "synonyms for neck of the woods", "clues": ["vicinity", "neighborhood", "locality", "neck of the woods"]}, {"answer": "necking", "hint": "synonyms for necking", "clues": ["fondling", "smooching", "kissing", "snuggling", "caressing", "cuddling", "petting", "hugging", "gorgerin", "necking"]}, {"answer": "necropolis", "hint": "synonyms for necropolis", "clues": ["burial ground", "burying ground", "graveyard", "cemetery", "memorial park", "burial site", "necropolis"]}, {"answer": "necropsy", "hint": "synonyms for necropsy", "clues": ["postmortem examination", "autopsy", "post-mortem", "necropsy"]}, {"answer": "neglect", "hint": "synonyms for neglect", "clues": ["disregard", "carelessness", "negligence", "neglectfulness", "nonperformance", "neglect"]}, {"answer": "neglige", "hint": "synonyms for neglige", "clues": ["peignoir", "wrapper", "negligee", "housecoat"]}, {"answer": "negligee", "hint": "synonyms for negligee", "clues": ["neglige", "wrapper", "peignoir", "housecoat"]}, {"answer": "negligence", "hint": "synonyms for negligence", "clues": ["carelessness", "neglectfulness", "neglect", "nonperformance", "negligence"]}, {"answer": "neighborhood", "hint": "synonyms for neighborhood", "clues": ["neck of the woods", "locality", "region", "vicinity", "neighbourhood"]}, {"answer": "neighbourhood", "hint": "synonyms for neighbourhood", "clues": ["neck of the woods", "locality", "vicinity", "neighborhood"]}, {"answer": "nerve", "hint": "synonyms for nerve", "clues": ["heart", "boldness", "brass", "cheek", "spunk", "mettle", "face", "nerve"]}, {"answer": "nerves", "hint": "synonyms for nerves", "clues": ["boldness", "spunk", "mettle", "face", "nerve", "heart", "brass", "cheek"]}, {"answer": "net_income", "hint": "synonyms for net income", "clues": ["lucre", "profit", "earnings", "net", "net profit", "net income"]}, {"answer": "net_profit", "hint": "synonyms for net profit", "clues": ["lucre", "profit", "earnings", "net", "net income", "net profit"]}, {"answer": "network", "hint": "synonyms for network", "clues": ["mesh", "electronic network", "net", "meshwork", "web", "network"]}, {"answer": "neuroleptic", "hint": "synonyms for neuroleptic", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic drug", "antipsychotic drug", "antipsychotic", "neuroleptic"]}, {"answer": "neuroleptic_agent", "hint": "synonyms for neuroleptic agent", "clues": ["antipsychotic agent", "major tranquilliser", "neuroleptic drug", "neuroleptic", "antipsychotic drug", "antipsychotic", "neuroleptic agent"]}, {"answer": "neuroleptic_drug", "hint": "synonyms for neuroleptic drug", "clues": ["neuroleptic agent", "antipsychotic agent", "major tranquilliser", "neuroleptic", "antipsychotic drug", "antipsychotic", "neuroleptic drug"]}, {"answer": "new_york_minute", "hint": "synonyms for new york minute", "clues": ["twinkling", "jiffy", "instant", "flash", "wink", "split second", "heartbeat", "blink of an eye", "trice", "new york minute"]}, {"answer": "news", "hint": "synonyms for news", "clues": ["news program", "tidings", "news show", "intelligence", "newsworthiness", "word", "news"]}, {"answer": "news_agency", "hint": "synonyms for news agency", "clues": ["wire service", "press association", "news organisation", "press agency", "news agency"]}, {"answer": "news_organisation", "hint": "synonyms for news organisation", "clues": ["wire service", "news agency", "press association", "press agency", "news organization"]}, {"answer": "news_organization", "hint": "synonyms for news organization", "clues": ["wire service", "news agency", "press association", "news organisation", "press agency"]}, {"answer": "news_report", "hint": "synonyms for news report", "clues": ["story", "report", "account", "write up", "news report"]}, {"answer": "newspaper_clipping", "hint": "synonyms for newspaper clipping", "clues": ["clipping", "press clipping", "press cutting", "cutting", "newspaper clipping"]}, {"answer": "nicety", "hint": "synonyms for nicety", "clues": ["shade", "subtlety", "justness", "rightness", "refinement", "nuance", "nicety"]}, {"answer": "nick", "hint": "synonyms for nick", "clues": ["notch", "gouge", "ding", "dent", "snick"]}, {"answer": "nicknack", "hint": "synonyms for nicknack", "clues": ["knickknackery", "whatnot", "bric-a-brac", "nicknack"]}, {"answer": "nickname", "hint": "synonyms for nickname", "clues": ["soubriquet", "byname", "cognomen", "moniker", "nickname"]}, {"answer": "nictation", "hint": "synonyms for nictation", "clues": ["wink", "blink", "nictitation", "eye blink"]}, {"answer": "nictitation", "hint": "synonyms for nictitation", "clues": ["wink", "blink", "nictation", "eye blink"]}, {"answer": "niggardliness", "hint": "synonyms for niggardliness", "clues": ["closeness", "tightness", "minginess", "niggardness", "meanness", "parsimoniousness", "parsimony", "tightfistedness"]}, {"answer": "niggardness", "hint": "synonyms for niggardness", "clues": ["closeness", "tightness", "minginess", "meanness", "parsimoniousness", "parsimony", "tightfistedness", "niggardliness"]}, {"answer": "night-robe", "hint": "synonyms for night-robe", "clues": ["nightgown", "nightdress", "gown", "nightie", "night-robe"]}, {"answer": "night_club", "hint": "synonyms for night club", "clues": ["nightspot", "club", "nightclub", "cabaret"]}, {"answer": "nightclub", "hint": "synonyms for nightclub", "clues": ["nightspot", "night club", "club", "cabaret"]}, {"answer": "nightdress", "hint": "synonyms for nightdress", "clues": ["night-robe", "gown", "nightgown", "nightie", "nightdress"]}, {"answer": "nightfall", "hint": "synonyms for nightfall", "clues": ["dusk", "twilight", "fall", "gloam", "crepuscule", "evenfall", "nightfall"]}, {"answer": "nightgown", "hint": "synonyms for nightgown", "clues": ["night-robe", "nightdress", "gown", "nightie", "nightgown"]}, {"answer": "nightie", "hint": "synonyms for nightie", "clues": ["night-robe", "nightdress", "gown", "nightgown", "nightie"]}, {"answer": "nightspot", "hint": "synonyms for nightspot", "clues": ["night club", "club", "cabaret", "nightspot"]}, {"answer": "nightstick", "hint": "synonyms for nightstick", "clues": ["billystick", "baton", "truncheon", "billy", "billy club", "nightstick"]}, {"answer": "nil", "hint": "synonyms for nil", "clues": ["goose egg", "zippo", "zero", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing", "nil"]}, {"answer": "nimbleness", "hint": "synonyms for nimbleness", "clues": ["legerity", "agility", "lightness", "lightsomeness", "mental dexterity", "nimbleness"]}, {"answer": "nimbus", "hint": "synonyms for nimbus", "clues": ["rain cloud", "aureole", "aura", "glory", "nimbus cloud", "halo", "gloriole", "nimbus"]}, {"answer": "nina_from_carolina", "hint": "synonyms for nina from carolina", "clues": ["nine", "9", "ennead", "nina from carolina"]}, {"answer": "nineties", "hint": "synonyms for nineties", "clues": ["ninety", "90", "1990s", "mid-nineties", "1890s", "nineties"]}, {"answer": "nip", "hint": "synonyms for nip", "clues": ["piquance", "flavour", "sapidity", "savor", "piquantness", "relish", "tanginess", "smack", "shot", "coolness", "zest", "chilliness", "pinch", "tang", "nip"]}, {"answer": "niter", "hint": "synonyms for niter", "clues": ["saltpetre", "potassium nitrate", "nitre", "niter"]}, {"answer": "nitre", "hint": "synonyms for nitre", "clues": ["potassium nitrate", "niter", "saltpeter", "nitre"]}, {"answer": "nitty-gritty", "hint": "synonyms for nitty-gritty", "clues": ["meat", "essence", "nub", "marrow", "center", "centre", "heart", "pith", "inwardness", "gist", "sum", "heart and soul", "kernel", "substance", "core", "nitty-gritty"]}, {"answer": "nix", "hint": "synonyms for nix", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "nada", "zip", "nothing", "nix"]}, {"answer": "nm", "hint": "synonyms for nm", "clues": ["micromillimeter", "nanometre", "millimicron", "nm"]}, {"answer": "nobility", "hint": "synonyms for nobility", "clues": ["grandeur", "aristocracy", "magnanimousness", "nobleness", "nobility"]}, {"answer": "noctambulation", "hint": "synonyms for noctambulation", "clues": ["noctambulism", "somnambulism", "sleepwalking", "somnambulation", "noctambulation"]}, {"answer": "noctambulism", "hint": "synonyms for noctambulism", "clues": ["sleepwalking", "somnambulation", "somnambulism", "noctambulation", "noctambulism"]}, {"answer": "node", "hint": "synonyms for node", "clues": ["guest", "thickening", "client", "knob", "node"]}, {"answer": "noise", "hint": "synonyms for noise", "clues": ["randomness", "disturbance", "interference", "stochasticity", "haphazardness", "racket", "dissonance", "noise"]}, {"answer": "nonsensicality", "hint": "synonyms for nonsensicality", "clues": ["bunk", "hokum", "meaninglessness", "nonsense", "nonsensicality"]}, {"answer": "nookie", "hint": "synonyms for nookie", "clues": ["roll in the hay", "screw", "shtup", "piece of ass", "piece of tail", "shag", "nooky", "ass", "fuck", "nookie"]}, {"answer": "nooky", "hint": "synonyms for nooky", "clues": ["roll in the hay", "nookie", "screw", "shtup", "piece of ass", "piece of tail", "shag", "ass", "fuck", "nooky"]}, {"answer": "noon", "hint": "synonyms for noon", "clues": ["twelve noon", "noontide", "noonday", "high noon", "midday", "noon"]}, {"answer": "noonday", "hint": "synonyms for noonday", "clues": ["twelve noon", "noontide", "noon", "high noon", "midday", "noonday"]}, {"answer": "noontide", "hint": "synonyms for noontide", "clues": ["twelve noon", "noon", "noonday", "high noon", "midday", "noontide"]}, {"answer": "noose", "hint": "synonyms for noose", "clues": ["gin", "snare", "slip noose", "running noose", "noose"]}, {"answer": "nose_drops", "hint": "synonyms for nose drops", "clues": ["big H", "hell dust", "smack", "thunder", "scag", "skag", "nose drops"]}, {"answer": "notch", "hint": "synonyms for notch", "clues": ["pass", "nick", "mountain pass", "notch"]}, {"answer": "note", "hint": "synonyms for note", "clues": ["billet", "line", "tone", "banker's bill", "bank note", "annotation", "bank bill", "musical note", "government note", "bill", "promissory note", "greenback", "note of hand", "short letter", "note"]}, {"answer": "nothingness", "hint": "synonyms for nothingness", "clues": ["idle words", "malarkey", "wind", "jazz", "nothingness"]}, {"answer": "nothings", "hint": "synonyms for nothings", "clues": ["goose egg", "zippo", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing"]}, {"answer": "notice", "hint": "synonyms for notice", "clues": ["card", "posting", "observance", "placard", "observation", "notification", "poster", "bill", "notice"]}, {"answer": "notification", "hint": "synonyms for notification", "clues": ["presentment", "apprisal", "telling", "notice", "notification"]}, {"answer": "notion", "hint": "synonyms for notion", "clues": ["impression", "whim", "whimsy", "opinion", "feeling", "belief", "notion"]}, {"answer": "nought", "hint": "synonyms for nought", "clues": ["cipher", "0", "cypher", "zero", "nought"]}, {"answer": "noughts_and_crosses", "hint": "synonyms for noughts and crosses", "clues": ["ticktacktoo", "tit-tat-toe", "tick-tack-toe", "noughts and crosses"]}, {"answer": "nourishment", "hint": "synonyms for nourishment", "clues": ["nutriment", "nutrition", "victuals", "alimentation", "sustenance", "aliment", "nourishment"]}, {"answer": "nous", "hint": "synonyms for nous", "clues": ["psyche", "mind", "brain", "head", "nous"]}, {"answer": "novelty", "hint": "synonyms for novelty", "clues": ["bangle", "trinket", "fallal", "bauble", "knickknack", "freshness", "gaud", "gewgaw", "novelty"]}, {"answer": "nuance", "hint": "synonyms for nuance", "clues": ["shade", "nicety", "refinement", "subtlety", "nuance"]}, {"answer": "nub", "hint": "synonyms for nub", "clues": ["nubble", "essence", "center", "centre", "heart", "sum", "gist", "marrow", "substance", "meat", "core", "nitty-gritty", "pith", "inwardness", "heart and soul", "kernel", "stub", "nub"]}, {"answer": "number", "hint": "synonyms for number", "clues": ["figure", "act", "phone number", "bit", "issue", "numeral", "turn", "identification number", "routine", "number"]}, {"answer": "numbers", "hint": "synonyms for numbers", "clues": ["figure", "act", "numbers racket", "numbers pool", "phone number", "bit", "numbers game", "issue", "numeral", "number", "turn", "identification number", "routine"]}, {"answer": "numeration", "hint": "synonyms for numeration", "clues": ["counting", "enumeration", "tally", "reckoning"]}, {"answer": "nurture", "hint": "synonyms for nurture", "clues": ["bringing up", "fosterage", "upbringing", "breeding", "raising", "rearing", "fostering", "nurture"]}, {"answer": "nut_house", "hint": "synonyms for nut house", "clues": ["sanatorium", "funny farm", "loony bin", "funny house", "crazy house", "nuthouse", "cuckoo's nest", "booby hatch", "madhouse", "snake pit"]}, {"answer": "nuthouse", "hint": "synonyms for nuthouse", "clues": ["sanatorium", "nut house", "funny farm", "loony bin", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit"]}, {"answer": "nutriment", "hint": "synonyms for nutriment", "clues": ["nourishment", "nutrition", "victuals", "alimentation", "sustenance", "aliment", "nutriment"]}, {"answer": "nutrition", "hint": "synonyms for nutrition", "clues": ["nutriment", "nourishment", "victuals", "alimentation", "sustenance", "aliment", "nutrition"]}, {"answer": "nylon_stocking", "hint": "synonyms for nylon stocking", "clues": ["nylons", "rayons", "rayon stocking", "silk stocking"]}, {"answer": "nylons", "hint": "synonyms for nylons", "clues": ["rayon stocking", "nylon", "rayons", "silk stocking"]}, {"answer": "oarlock", "hint": "synonyms for oarlock", "clues": ["tholepin", "thole", "rowlock", "pin", "peg", "oarlock"]}, {"answer": "oath", "hint": "synonyms for oath", "clues": ["expletive", "swearword", "swearing", "curse", "curse word", "cuss", "oath"]}, {"answer": "obfuscation", "hint": "synonyms for obfuscation", "clues": ["mystification", "puzzlement", "bemusement", "bewilderment", "bafflement", "befuddlement", "obfuscation"]}, {"answer": "object", "hint": "synonyms for object", "clues": ["physical object", "aim", "objective", "target", "object"]}, {"answer": "objection", "hint": "synonyms for objection", "clues": ["remonstrance", "expostulation", "dissent", "remonstration", "protest", "objection"]}, {"answer": "obligation", "hint": "synonyms for obligation", "clues": ["debt instrument", "indebtedness", "responsibility", "certificate of indebtedness", "duty", "obligation"]}, {"answer": "obligingness", "hint": "synonyms for obligingness", "clues": ["compliancy", "complaisance", "deference", "obligingness"]}, {"answer": "obloquy", "hint": "synonyms for obloquy", "clues": ["traducement", "calumniation", "hatchet job", "defamation", "calumny", "obloquy"]}, {"answer": "obscenity", "hint": "synonyms for obscenity", "clues": ["filth", "bawdiness", "dirty word", "smut", "vulgarism", "salaciousness", "salacity", "lewdness", "obscenity"]}, {"answer": "observance", "hint": "synonyms for observance", "clues": ["honoring", "ceremonial", "notice", "watching", "ceremony", "observation", "ceremonial occasion", "observance"]}, {"answer": "observation", "hint": "synonyms for observation", "clues": ["notice", "observance", "reflection", "reflexion", "watching", "observation"]}, {"answer": "obstinacy", "hint": "synonyms for obstinacy", "clues": ["obstinance", "bullheadedness", "self-will", "stubbornness", "mulishness", "pigheadedness", "obstinacy"]}, {"answer": "obstinance", "hint": "synonyms for obstinance", "clues": ["obstinacy", "bullheadedness", "self-will", "stubbornness", "mulishness", "pigheadedness", "obstinance"]}, {"answer": "occasion", "hint": "synonyms for occasion", "clues": ["social occasion", "affair", "social function", "juncture", "function", "occasion"]}, {"answer": "occasions", "hint": "synonyms for occasions", "clues": ["social occasion", "affair", "social function", "juncture", "function", "occasion"]}, {"answer": "occlusion", "hint": "synonyms for occlusion", "clues": ["occluded front", "blockage", "stoppage", "closure", "block", "stop", "occlusion"]}, {"answer": "occupation", "hint": "synonyms for occupation", "clues": ["line", "business", "job", "military control", "occupancy", "moving in", "line of work", "occupation"]}, {"answer": "ocean_bottom", "hint": "synonyms for ocean bottom", "clues": ["sea floor", "seabed", "sea bottom", "ocean floor", "ocean bottom"]}, {"answer": "ocean_floor", "hint": "synonyms for ocean floor", "clues": ["sea floor", "seabed", "sea bottom", "ocean bottom", "ocean floor"]}, {"answer": "octad", "hint": "synonyms for octad", "clues": ["eighter", "eighter from Decatur", "octonary", "ogdoad", "octet", "8", "eight", "octad"]}, {"answer": "octet", "hint": "synonyms for octet", "clues": ["eightsome", "8", "eighter from Decatur", "octonary", "octette", "octad", "ogdoad", "eighter", "eight", "octet"]}, {"answer": "octonary", "hint": "synonyms for octonary", "clues": ["eighter", "eighter from Decatur", "octad", "ogdoad", "octet", "8", "eight", "octonary"]}, {"answer": "oddity", "hint": "synonyms for oddity", "clues": ["queerness", "curio", "oddment", "curiosity", "rarity", "quirkiness", "oddness", "crotchet", "peculiarity", "quirk", "oddity"]}, {"answer": "oddment", "hint": "synonyms for oddment", "clues": ["oddity", "curio", "end", "curiosity", "rarity", "peculiarity", "remainder", "remnant", "oddment"]}, {"answer": "oddments", "hint": "synonyms for oddments", "clues": ["hodgepodge", "melange", "ragbag", "curio", "farrago", "curiosity", "rarity", "remainder", "remnant", "oddity", "gallimaufry", "hotchpotch", "mingle-mangle", "oddment", "end", "odds and ends", "peculiarity", "omnium-gatherum", "mishmash"]}, {"answer": "odds_and_ends", "hint": "synonyms for odds and ends", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "ragbag", "mingle-mangle", "farrago", "omnium-gatherum", "mishmash", "odds and ends"]}, {"answer": "odium", "hint": "synonyms for odium", "clues": ["abhorrence", "loathing", "abomination", "execration", "detestation", "odium"]}, {"answer": "odor", "hint": "synonyms for odor", "clues": ["olfactory sensation", "olfactory property", "olfactory perception", "odour", "smell", "scent", "aroma"]}, {"answer": "odour", "hint": "synonyms for odour", "clues": ["olfactory sensation", "olfactory property", "olfactory perception", "smell", "scent", "odor", "aroma"]}, {"answer": "offence", "hint": "synonyms for offence", "clues": ["discourtesy", "offensive activity", "criminal offence", "umbrage", "law-breaking", "crime", "offense"]}, {"answer": "offense", "hint": "synonyms for offense", "clues": ["discourtesy", "offensive activity", "criminal offence", "umbrage", "law-breaking", "crime", "offence", "offensive"]}, {"answer": "offer", "hint": "synonyms for offer", "clues": ["whirl", "crack", "go", "pass", "fling", "offering"]}, {"answer": "office", "hint": "synonyms for office", "clues": ["billet", "post", "federal agency", "situation", "place", "agency", "bureau", "spot", "function", "authority", "office staff", "position", "business office", "government agency", "role", "part", "berth", "office"]}, {"answer": "offset", "hint": "synonyms for offset", "clues": ["set-back", "start", "kickoff", "offshoot", "beginning", "starting time", "setoff", "outset", "outgrowth", "branch", "counterbalance", "showtime", "offset printing", "get-go", "commencement", "first", "offset"]}, {"answer": "ogdoad", "hint": "synonyms for ogdoad", "clues": ["eighter", "eighter from Decatur", "octonary", "octad", "octet", "8", "eight", "ogdoad"]}, {"answer": "ohmic_resistance", "hint": "synonyms for ohmic resistance", "clues": ["electrical resistance", "impedance", "resistance", "resistivity", "ohmic resistance"]}, {"answer": "oil", "hint": "synonyms for oil", "clues": ["oil color", "vegetable oil", "rock oil", "fossil oil", "crude", "crude oil", "petroleum", "oil"]}, {"answer": "oiler", "hint": "synonyms for oiler", "clues": ["oil well", "tanker", "tank ship", "oil tanker", "oiler"]}, {"answer": "oiliness", "hint": "synonyms for oiliness", "clues": ["fulsomeness", "smarminess", "unctuousness", "greasiness", "unction", "oleaginousness", "oiliness"]}, {"answer": "ointment", "hint": "synonyms for ointment", "clues": ["unguent", "cream", "emollient", "unction", "balm", "salve", "ointment"]}, {"answer": "old-age_pension", "hint": "synonyms for old-age pension", "clues": ["retirement check", "retirement benefit", "superannuation", "retirement pension", "retirement fund", "old-age pension"]}, {"answer": "old_age", "hint": "synonyms for old age", "clues": ["geezerhood", "years", "age", "eld", "old age"]}, {"answer": "oleaginousness", "hint": "synonyms for oleaginousness", "clues": ["fulsomeness", "smarminess", "unctuousness", "greasiness", "unction", "oiliness", "oleaginousness"]}, {"answer": "oleo", "hint": "synonyms for oleo", "clues": ["margarin", "marge", "oleomargarine", "oleo"]}, {"answer": "oleomargarine", "hint": "synonyms for oleomargarine", "clues": ["margarin", "marge", "oleo", "oleomargarine"]}, {"answer": "olfactory_perception", "hint": "synonyms for olfactory perception", "clues": ["smell", "odor", "olfactory sensation", "olfactory perception"]}, {"answer": "olfactory_property", "hint": "synonyms for olfactory property", "clues": ["smell", "scent", "odor", "aroma", "olfactory property"]}, {"answer": "olfactory_sensation", "hint": "synonyms for olfactory sensation", "clues": ["smell", "odor", "olfactory perception", "olfactory sensation"]}, {"answer": "omen", "hint": "synonyms for omen", "clues": ["portent", "presage", "prodigy", "prognostication", "prognostic", "omen"]}, {"answer": "omnium-gatherum", "hint": "synonyms for omnium-gatherum", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "ragbag", "mingle-mangle", "farrago", "odds and ends", "mishmash", "omnium-gatherum"]}, {"answer": "onager", "hint": "synonyms for onager", "clues": ["trebuchet", "arbalest", "mangonel", "catapult", "bricole", "ballista", "onager"]}, {"answer": "onanism", "hint": "synonyms for onanism", "clues": ["withdrawal method", "pulling out", "coitus interruptus", "masturbation", "withdrawal", "onanism"]}, {"answer": "one-fourth", "hint": "synonyms for one-fourth", "clues": ["fourth", "quartern", "fourth part", "twenty-five percent", "one-quarter", "one-fourth"]}, {"answer": "one-man_rule", "hint": "synonyms for one-man rule", "clues": ["tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "one-man rule"]}, {"answer": "one-quarter", "hint": "synonyms for one-quarter", "clues": ["fourth", "quartern", "one-fourth", "fourth part", "twenty-five percent", "one-quarter"]}, {"answer": "one_c", "hint": "synonyms for one c", "clues": ["100", "century", "hundred", "one C"]}, {"answer": "one_dollar_bill", "hint": "synonyms for one dollar bill", "clues": ["dollar bill", "dollar", "buck", "clam", "one dollar bill"]}, {"answer": "oneirism", "hint": "synonyms for oneirism", "clues": ["castle in the air", "revery", "daydreaming", "air castle", "castle in Spain", "reverie", "oneirism"]}, {"answer": "onset", "hint": "synonyms for onset", "clues": ["onslaught", "onrush", "oncoming", "attack", "onset"]}, {"answer": "onslaught", "hint": "synonyms for onslaught", "clues": ["bombardment", "outpouring", "onset", "onrush", "barrage", "attack", "onslaught"]}, {"answer": "ontogenesis", "hint": "synonyms for ontogenesis", "clues": ["ontogeny", "maturation", "development", "growing", "growth", "ontogenesis"]}, {"answer": "ontogeny", "hint": "synonyms for ontogeny", "clues": ["maturation", "development", "growing", "growth", "ontogenesis", "ontogeny"]}, {"answer": "onus", "hint": "synonyms for onus", "clues": ["encumbrance", "load", "burden", "onus"]}, {"answer": "onward_motion", "hint": "synonyms for onward motion", "clues": ["procession", "advancement", "progress", "advance", "forward motion"]}, {"answer": "oodles", "hint": "synonyms for oodles", "clues": ["lots", "scads", "slews", "loads", "lashings", "wads", "tons", "gobs", "rafts", "scores", "heaps", "stacks", "dozens", "piles", "oodles"]}, {"answer": "oomph", "hint": "synonyms for oomph", "clues": ["desirability", "zing", "dynamism", "sex appeal", "pizzazz", "desirableness", "oomph"]}, {"answer": "ooze", "hint": "synonyms for ooze", "clues": ["seepage", "oozing", "sludge", "guck", "goop", "gook", "slime", "muck", "gunk", "ooze"]}, {"answer": "openhandedness", "hint": "synonyms for openhandedness", "clues": ["largess", "magnanimity", "munificence", "openhandedness"]}, {"answer": "opera_hat", "hint": "synonyms for opera hat", "clues": ["beaver", "high hat", "topper", "silk hat", "stovepipe", "dress hat", "top hat", "opera hat"]}, {"answer": "operation", "hint": "synonyms for operation", "clues": ["military operation", "cognitive operation", "performance", "surgery", "procedure", "surgical operation", "process", "mental process", "mathematical operation", "surgical procedure", "mathematical process", "cognitive process", "functioning", "surgical process", "operation"]}, {"answer": "operations", "hint": "synonyms for operations", "clues": ["trading operations", "military operation", "cognitive operation", "operation", "performance", "surgery", "procedure", "surgical operation", "process", "mental process", "mathematical operation", "surgical procedure", "mathematical process", "cognitive process", "functioning", "surgical process"]}, {"answer": "opinion", "hint": "synonyms for opinion", "clues": ["impression", "sentiment", "notion", "vox populi", "thought", "public opinion", "legal opinion", "ruling", "judgment", "persuasion", "view", "feeling", "popular opinion", "belief", "opinion"]}, {"answer": "oppressiveness", "hint": "synonyms for oppressiveness", "clues": ["heaviness", "burdensomeness", "oppression", "onerousness", "oppressiveness"]}, {"answer": "option", "hint": "synonyms for option", "clues": ["pick", "choice", "selection", "alternative", "option"]}, {"answer": "opus", "hint": "synonyms for opus", "clues": ["musical composition", "piece of music", "piece", "composition", "opus"]}, {"answer": "or", "hint": "synonyms for or", "clues": ["operating room", "surgery", "operating theater", "or"]}, {"answer": "oral_communication", "hint": "synonyms for oral communication", "clues": ["speech communication", "voice communication", "speech", "language", "spoken language", "oral communication"]}, {"answer": "oral_contraceptive", "hint": "synonyms for oral contraceptive", "clues": ["pill", "contraceptive pill", "anovulant", "birth control pill", "anovulatory drug", "oral contraceptive"]}, {"answer": "oral_contraceptive_pill", "hint": "synonyms for oral contraceptive pill", "clues": ["pill", "contraceptive pill", "oral contraceptive", "birth control pill", "anovulatory drug", "anovulant"]}, {"answer": "oral_exam", "hint": "synonyms for oral exam", "clues": ["oral", "viva voce", "viva", "oral examination", "oral exam"]}, {"answer": "oral_examination", "hint": "synonyms for oral examination", "clues": ["oral", "viva voce", "viva", "oral exam", "oral examination"]}, {"answer": "orbit", "hint": "synonyms for orbit", "clues": ["reach", "ambit", "range", "electron orbit", "scope", "celestial orbit", "compass", "orbit"]}, {"answer": "order", "hint": "synonyms for order", "clues": ["fiat", "ordering", "society", "gild", "lodge", "parliamentary law", "parliamentary procedure", "order of magnitude", "monastic order", "ordination", "edict", "rules of order", "social club", "purchase order", "club", "rescript", "decree"]}, {"answer": "ordnance", "hint": "synonyms for ordnance", "clues": ["heavy weapon", "artillery", "munition", "gun", "ordnance store", "ordnance"]}, {"answer": "ordure", "hint": "synonyms for ordure", "clues": ["fecal matter", "feces", "dejection", "stool", "ordure"]}, {"answer": "ore_dressing", "hint": "synonyms for ore dressing", "clues": ["mineral extraction", "beneficiation", "ore processing", "mineral processing", "ore dressing"]}, {"answer": "ore_processing", "hint": "synonyms for ore processing", "clues": ["mineral extraction", "beneficiation", "mineral processing", "ore dressing", "ore processing"]}, {"answer": "organ", "hint": "synonyms for organ", "clues": ["pipe organ", "electric organ", "harmonium", "reed organ", "organ"]}, {"answer": "organisation", "hint": "synonyms for organisation", "clues": ["administration", "arrangement", "organization", "establishment", "governing body", "formation", "governance", "constitution", "brass", "system"]}, {"answer": "organization", "hint": "synonyms for organization", "clues": ["administration", "arrangement", "establishment", "governing body", "formation", "governance", "constitution", "brass", "system", "organisation"]}, {"answer": "organs", "hint": "synonyms for organs", "clues": ["pipe organ", "electric organ", "variety meat", "harmonium", "organ", "reed organ"]}, {"answer": "orgy", "hint": "synonyms for orgy", "clues": ["riot", "splurge", "binge", "drunken revelry", "saturnalia", "debauchery", "debauch", "bacchanalia", "orgy"]}, {"answer": "origin", "hint": "synonyms for origin", "clues": ["blood", "lineage", "beginning", "parentage", "origination", "descent", "line of descent", "rootage", "ancestry", "stock", "pedigree", "stemma", "line", "inception", "bloodline", "extraction", "root", "source", "origin"]}, {"answer": "origination", "hint": "synonyms for origination", "clues": ["foundation", "inception", "innovation", "institution", "initiation", "instauration", "creation", "founding", "origin", "introduction", "origination"]}, {"answer": "ornateness", "hint": "synonyms for ornateness", "clues": ["elaborateness", "grandiloquence", "grandiosity", "rhetoric", "magniloquence", "ornateness"]}, {"answer": "os", "hint": "synonyms for os", "clues": ["operating system", "osmium", "o", "atomic number 76", "oxygen"]}, {"answer": "ostentation", "hint": "synonyms for ostentation", "clues": ["flash", "ostentatiousness", "puffiness", "pretentiousness", "pomposity", "inflation", "pompousness", "splashiness", "fanfare", "ostentation"]}, {"answer": "ostentatiousness", "hint": "synonyms for ostentatiousness", "clues": ["ostentation", "pompousness", "pomposity", "inflation", "splashiness", "puffiness", "pretentiousness", "ostentatiousness"]}, {"answer": "outburst", "hint": "synonyms for outburst", "clues": ["effusion", "blowup", "burst", "flare-up", "tumultuous disturbance", "gush", "ebullition", "outburst"]}, {"answer": "outcome", "hint": "synonyms for outcome", "clues": ["event", "resultant", "consequence", "effect", "issue", "termination", "upshot", "result", "final result", "outcome"]}, {"answer": "outcry", "hint": "synonyms for outcry", "clues": ["yell", "vociferation", "call", "cry", "shout", "outcry"]}, {"answer": "outfit", "hint": "synonyms for outfit", "clues": ["turnout", "kit", "getup", "rig", "outfit"]}, {"answer": "outflow", "hint": "synonyms for outflow", "clues": ["effluence", "escape", "leakage", "efflux", "natural spring", "outpouring", "spring", "fountain", "leak", "outflow"]}, {"answer": "outgrowth", "hint": "synonyms for outgrowth", "clues": ["branch", "offset", "offshoot", "growth", "emergence", "outgrowth"]}, {"answer": "outing", "hint": "synonyms for outing", "clues": ["jaunt", "pleasure trip", "field day", "picnic", "junket", "sashay", "expedition", "excursion", "outing"]}, {"answer": "outlay", "hint": "synonyms for outlay", "clues": ["spending", "expenditure", "disbursement", "disbursal", "outgo", "outlay"]}, {"answer": "outlet", "hint": "synonyms for outlet", "clues": ["wall socket", "mercantile establishment", "sales outlet", "wall plug", "release", "retail store", "issue", "exit", "way out", "vent", "electrical outlet", "electric receptacle", "outlet"]}, {"answer": "outline", "hint": "synonyms for outline", "clues": ["synopsis", "schema", "scheme", "abstract", "precis", "lineation", "outline"]}, {"answer": "outlook", "hint": "synonyms for outlook", "clues": ["mindset", "lookout", "prospect", "expectation", "mentality", "outlook"]}, {"answer": "outpouring", "hint": "synonyms for outpouring", "clues": ["flood", "flush", "discharge", "run", "natural spring", "bombardment", "outflow", "overflow", "onslaught", "spring", "barrage", "gush", "fountain", "outpouring"]}, {"answer": "output", "hint": "synonyms for output", "clues": ["turnout", "outturn", "end product", "production", "yield", "output signal", "output"]}, {"answer": "outrage", "hint": "synonyms for outrage", "clues": ["scandalization", "scandal", "indignation", "outrage"]}, {"answer": "outset", "hint": "synonyms for outset", "clues": ["offset", "kickoff", "start", "beginning", "starting time", "showtime", "get-go", "commencement", "first", "outset"]}, {"answer": "outsider_art", "hint": "synonyms for outsider art", "clues": ["vernacular art", "primitive art", "self-taught art", "naive art", "outsider art"]}, {"answer": "overestimate", "hint": "synonyms for overestimate", "clues": ["overvaluation", "overrating", "overreckoning", "overestimation", "overappraisal", "overestimate"]}, {"answer": "overestimation", "hint": "synonyms for overestimation", "clues": ["overvaluation", "overrating", "overreckoning", "overestimate", "overappraisal", "overestimation"]}, {"answer": "overflow", "hint": "synonyms for overflow", "clues": ["outpouring", "flood", "overspill", "runoff", "overflow"]}, {"answer": "overhaul", "hint": "synonyms for overhaul", "clues": ["service", "inspection and repair", "renovation", "redevelopment", "overhaul"]}, {"answer": "overhead_railway", "hint": "synonyms for overhead railway", "clues": ["elevated railroad", "elevated", "elevated railway", "el", "overhead railway"]}, {"answer": "overrefinement", "hint": "synonyms for overrefinement", "clues": ["distortion", "torture", "twisting", "straining", "overrefinement"]}, {"answer": "oversight", "hint": "synonyms for oversight", "clues": ["lapse", "supervising", "superintendence", "inadvertence", "oversight"]}, {"answer": "overture", "hint": "synonyms for overture", "clues": ["feeler", "advance", "preliminary", "approach", "prelude", "overture"]}, {"answer": "ovoflavin", "hint": "synonyms for ovoflavin", "clues": ["lactoflavin", "hepatoflavin", "vitamin G", "vitamin B2", "riboflavin", "ovoflavin"]}, {"answer": "oxybenzene", "hint": "synonyms for oxybenzene", "clues": ["carbolic acid", "hydroxybenzene", "phenylic acid", "phenol", "oxybenzene"]}, {"answer": "ozocerite", "hint": "synonyms for ozocerite", "clues": ["mineral wax", "earth wax", "ader wax", "ozokerite"]}, {"answer": "ozokerite", "hint": "synonyms for ozokerite", "clues": ["mineral wax", "earth wax", "ader wax", "ozocerite"]}, {"answer": "pa", "hint": "synonyms for pa", "clues": ["pascal", "protactinium", "atomic number 91", "public address system", "pa"]}, {"answer": "pabulum", "hint": "synonyms for pabulum", "clues": ["comestible", "victual", "edible", "eatable", "pabulum"]}, {"answer": "pace", "hint": "synonyms for pace", "clues": ["rate", "stride", "footstep", "step", "tread", "tempo", "yard", "gait", "pace"]}, {"answer": "pacification", "hint": "synonyms for pacification", "clues": ["counterinsurgency", "mollification", "peace", "peace treaty", "pacification"]}, {"answer": "pack", "hint": "synonyms for pack", "clues": ["gang", "clique", "ring", "large number", "coterie", "mob", "battalion", "ingroup", "inner circle", "multitude", "face pack", "camp", "plurality", "pack"]}, {"answer": "package", "hint": "synonyms for package", "clues": ["bundle", "software system", "software program", "software package", "parcel", "packet", "computer software", "software", "package"]}, {"answer": "packet", "hint": "synonyms for packet", "clues": ["package", "bundle", "mail boat", "parcel", "packet boat", "packet"]}, {"answer": "packing", "hint": "synonyms for packing", "clues": ["boxing", "wadding", "backpacking", "packing material", "packing"]}, {"answer": "packsack", "hint": "synonyms for packsack", "clues": ["rucksack", "knapsack", "back pack", "haversack", "packsack"]}, {"answer": "pad", "hint": "synonyms for pad", "clues": ["tablet", "launchpad", "inking pad", "stamp pad", "inkpad", "launch area", "lodgings", "domiciliation", "launching pad", "pad of paper", "diggings", "digs", "pad"]}, {"answer": "paddy_wagon", "hint": "synonyms for paddy wagon", "clues": ["patrol wagon", "wagon", "black Maria", "police van", "police wagon", "paddy wagon"]}, {"answer": "paean", "hint": "synonyms for paean", "clues": ["encomium", "eulogy", "pean", "panegyric"]}, {"answer": "pain", "hint": "synonyms for pain", "clues": ["painful sensation", "painfulness", "infliction", "botheration", "pain in the ass", "pain in the neck", "annoyance", "bother", "pain"]}, {"answer": "pain_in_the_ass", "hint": "synonyms for pain in the ass", "clues": ["pain in the neck", "annoyance", "infliction", "botheration", "pain", "bother", "pain in the ass"]}, {"answer": "pain_in_the_neck", "hint": "synonyms for pain in the neck", "clues": ["annoyance", "infliction", "botheration", "pain", "pain in the ass", "bother", "pain in the neck"]}, {"answer": "pains", "hint": "synonyms for pains", "clues": ["nisus", "painfulness", "pain sensation", "infliction", "botheration", "strain", "pain", "pain in the ass", "pain in the neck", "annoyance", "striving", "bother"]}, {"answer": "paint", "hint": "synonyms for paint", "clues": ["blusher", "rouge", "key", "pigment", "paint"]}, {"answer": "pair", "hint": "synonyms for pair", "clues": ["yoke", "duet", "twain", "dyad", "couplet", "distich", "brace", "twosome", "duad", "duo", "span", "pair"]}, {"answer": "pairing", "hint": "synonyms for pairing", "clues": ["union", "coupling", "conjugation", "sexual union", "mating", "pairing"]}, {"answer": "palace_car", "hint": "synonyms for palace car", "clues": ["parlour car", "drawing-room car", "chair car", "palace car"]}, {"answer": "palaver", "hint": "synonyms for palaver", "clues": ["cajolery", "empty words", "hot air", "rhetoric", "blandishment", "empty talk", "palaver"]}, {"answer": "paleness", "hint": "synonyms for paleness", "clues": ["blondness", "pallor", "fairness", "lividity", "luridness", "pallidity", "pallidness", "lividness", "wanness", "achromasia", "paleness"]}, {"answer": "pall", "hint": "synonyms for pall", "clues": ["winding-sheet", "drapery", "mantle", "drape", "cerement", "shroud", "curtain", "winding-clothes", "chill", "pall"]}, {"answer": "pallidness", "hint": "synonyms for pallidness", "clues": ["lividness", "paleness", "wanness", "pallor", "lividity", "luridness", "achromasia", "pallidness"]}, {"answer": "pallor", "hint": "synonyms for pallor", "clues": ["lividness", "paleness", "wanness", "lividity", "luridness", "achromasia", "pallidness", "pallor"]}, {"answer": "palm", "hint": "synonyms for palm", "clues": ["medallion", "medal", "ribbon", "decoration", "laurel wreath", "palm"]}, {"answer": "pamphlet", "hint": "synonyms for pamphlet", "clues": ["brochure", "folder", "tract", "booklet", "leaflet", "pamphlet"]}, {"answer": "panache", "hint": "synonyms for panache", "clues": ["dash", "flair", "style", "elan", "panache"]}, {"answer": "panama", "hint": "synonyms for panama", "clues": ["skimmer", "leghorn", "straw hat", "sailor", "boater", "panama"]}, {"answer": "panama_hat", "hint": "synonyms for panama hat", "clues": ["skimmer", "leghorn", "straw hat", "sailor", "boater", "panama hat"]}, {"answer": "pancake", "hint": "synonyms for pancake", "clues": ["griddlecake", "hotcake", "flapjack", "flapcake", "flannel-cake", "battercake", "pancake"]}, {"answer": "pane", "hint": "synonyms for pane", "clues": ["panelling", "dot", "dose", "pane of glass", "loony toons", "window glass", "window pane", "superman", "back breaker", "acid", "battery-acid", "pane"]}, {"answer": "panel", "hint": "synonyms for panel", "clues": ["jury", "control board", "control panel", "venire", "dialog box", "instrument panel", "board", "gore", "panel"]}, {"answer": "panorama", "hint": "synonyms for panorama", "clues": ["scene", "cyclorama", "prospect", "vista", "aspect", "view", "diorama", "panorama"]}, {"answer": "pants", "hint": "synonyms for pants", "clues": ["pant", "gasp", "bloomers", "knickers", "trouser", "drawers"]}, {"answer": "paper", "hint": "synonyms for paper", "clues": ["newspaper", "theme", "report", "newspaper publisher", "composition", "paper"]}, {"answer": "paper-back_book", "hint": "synonyms for paper-back book", "clues": ["paperback book", "paperback", "soft-cover book", "softback", "softback book", "soft-cover"]}, {"answer": "paperback_book", "hint": "synonyms for paperback book", "clues": ["paper-back book", "paperback", "soft-cover book", "softback", "softback book", "soft-cover"]}, {"answer": "papers", "hint": "synonyms for papers", "clues": ["report", "paper", "newspaper", "document", "theme", "written document", "newspaper publisher", "composition"]}, {"answer": "paradigm", "hint": "synonyms for paradigm", "clues": ["image", "epitome", "substitution class", "prototype", "paradigm"]}, {"answer": "paraffin", "hint": "synonyms for paraffin", "clues": ["paraffin series", "paraffin oil", "alkane series", "alkane", "paraffin wax", "methane series", "paraffin"]}, {"answer": "paraffin_series", "hint": "synonyms for paraffin series", "clues": ["alkane", "paraffin", "methane series", "alkane series", "paraffin series"]}, {"answer": "paramilitary_force", "hint": "synonyms for paramilitary force", "clues": ["paramilitary organization", "paramilitary", "paramilitary unit", "paramilitary force"]}, {"answer": "paramilitary_organisation", "hint": "synonyms for paramilitary organisation", "clues": ["paramilitary organization", "paramilitary", "paramilitary force", "paramilitary unit"]}, {"answer": "paramilitary_organization", "hint": "synonyms for paramilitary organization", "clues": ["paramilitary organisation", "paramilitary", "paramilitary force", "paramilitary unit"]}, {"answer": "paramilitary_unit", "hint": "synonyms for paramilitary unit", "clues": ["paramilitary organization", "paramilitary", "paramilitary force", "paramilitary unit"]}, {"answer": "parcel", "hint": "synonyms for parcel", "clues": ["package", "bundle", "piece of land", "share", "tract", "portion", "packet", "piece of ground", "parcel of land", "parcel"]}, {"answer": "parcel_of_land", "hint": "synonyms for parcel of land", "clues": ["parcel", "piece of ground", "piece of land", "tract", "parcel of land"]}, {"answer": "parceling", "hint": "synonyms for parceling", "clues": ["assignation", "parcelling", "apportioning", "allotment", "apportionment", "allocation"]}, {"answer": "parcelling", "hint": "synonyms for parcelling", "clues": ["assignation", "parceling", "apportioning", "allotment", "apportionment", "allocation"]}, {"answer": "parentage", "hint": "synonyms for parentage", "clues": ["line", "bloodline", "birth", "blood", "lineage", "line of descent", "descent", "ancestry", "pedigree", "stock", "origin", "stemma", "parentage"]}, {"answer": "parenthesis", "hint": "synonyms for parenthesis", "clues": ["aside", "excursus", "digression", "divagation", "parenthesis"]}, {"answer": "paris_green", "hint": "synonyms for paris green", "clues": ["chartreuse", "yellow green", "pea green", "paris green"]}, {"answer": "parity", "hint": "synonyms for parity", "clues": ["mirror symmetry", "space-reflection symmetry", "parity bit", "check bit", "conservation of parity", "parity"]}, {"answer": "park", "hint": "synonyms for park", "clues": ["parking area", "parkland", "green", "common", "ballpark", "parking lot", "car park", "park"]}, {"answer": "parks", "hint": "synonyms for parks", "clues": ["parkland", "green", "car park", "parking lot", "commons", "parking area", "park", "ballpark"]}, {"answer": "parlor", "hint": "synonyms for parlor", "clues": ["living room", "front room", "parlour", "sitting room"]}, {"answer": "parlor_car", "hint": "synonyms for parlor car", "clues": ["drawing-room car", "parlour car", "palace car", "chair car"]}, {"answer": "parlor_grand", "hint": "synonyms for parlor grand", "clues": ["baby grand piano", "parlour grand piano", "baby grand", "parlour grand"]}, {"answer": "parlor_grand_piano", "hint": "synonyms for parlor grand piano", "clues": ["baby grand piano", "parlour grand piano", "parlor grand", "baby grand"]}, {"answer": "parlour", "hint": "synonyms for parlour", "clues": ["front room", "living room", "parlor", "sitting room"]}, {"answer": "parlour_car", "hint": "synonyms for parlour car", "clues": ["drawing-room car", "parlor car", "palace car", "chair car"]}, {"answer": "parlour_grand", "hint": "synonyms for parlour grand", "clues": ["baby grand piano", "parlour grand piano", "parlor grand", "baby grand"]}, {"answer": "parlour_grand_piano", "hint": "synonyms for parlour grand piano", "clues": ["baby grand piano", "parlor grand", "baby grand", "parlor grand piano"]}, {"answer": "parody", "hint": "synonyms for parody", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "charade", "pasquinade", "takeoff", "parody"]}, {"answer": "parole", "hint": "synonyms for parole", "clues": ["watchword", "word of honor", "countersign", "password", "word", "parole"]}, {"answer": "parsimoniousness", "hint": "synonyms for parsimoniousness", "clues": ["closeness", "tightness", "minginess", "niggardness", "penny-pinching", "meanness", "parsimony", "tightfistedness", "thrift", "parsimoniousness"]}, {"answer": "parsimony", "hint": "synonyms for parsimony", "clues": ["closeness", "tightness", "minginess", "niggardness", "penny-pinching", "meanness", "parsimoniousness", "tightfistedness", "thrift", "parsimony"]}, {"answer": "parti_pris", "hint": "synonyms for parti pris", "clues": ["preconceived notion", "preconceived idea", "preconception", "prepossession", "parti pris"]}, {"answer": "particle", "hint": "synonyms for particle", "clues": ["subatomic particle", "corpuscle", "mote", "molecule", "atom", "speck", "particle"]}, {"answer": "partition", "hint": "synonyms for partition", "clues": ["divider", "division", "segmentation", "partitioning", "sectionalization"]}, {"answer": "partitioning", "hint": "synonyms for partitioning", "clues": ["breakdown", "segmentation", "division", "partition", "sectionalisation"]}, {"answer": "parts", "hint": "synonyms for parts", "clues": ["voice", "region", "percentage", "section", "part", "share", "function", "persona", "portion", "component part", "office", "contribution", "character", "division", "theatrical role", "constituent", "piece", "role", "component"]}, {"answer": "pas", "hint": "synonyms for pas", "clues": ["pascal", "protactinium", "atomic number 91", "public address system", "pas"]}, {"answer": "pasquinade", "hint": "synonyms for pasquinade", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "charade", "parody", "takeoff", "pasquinade"]}, {"answer": "passage", "hint": "synonyms for passage", "clues": ["handing over", "transition", "transit", "passing", "musical passage", "enactment", "passage"]}, {"answer": "passel", "hint": "synonyms for passel", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "passel"]}, {"answer": "passenger_vehicle", "hint": "synonyms for passenger vehicle", "clues": ["double-decker", "motorcoach", "bus", "charabanc", "omnibus", "autobus", "motorbus", "coach", "jitney", "passenger vehicle"]}, {"answer": "passion", "hint": "synonyms for passion", "clues": ["cacoethes", "love", "passionateness", "heat", "warmth", "mania", "passion"]}, {"answer": "password", "hint": "synonyms for password", "clues": ["watchword", "countersign", "parole", "word", "password"]}, {"answer": "pasturage", "hint": "synonyms for pasturage", "clues": ["forage", "grass", "pasture", "eatage"]}, {"answer": "pasture", "hint": "synonyms for pasture", "clues": ["lea", "forage", "pastureland", "ley", "eatage", "grass", "pasturage", "grazing land"]}, {"answer": "pastureland", "hint": "synonyms for pastureland", "clues": ["lea", "ley", "grazing land", "pasture", "pastureland"]}, {"answer": "patch", "hint": "synonyms for patch", "clues": ["spot", "fleck", "plot", "darn", "mend", "while", "bandage", "temporary hookup", "maculation", "piece", "speckle", "plot of ground", "dapple", "spell", "plot of land", "eyepatch", "patch"]}, {"answer": "path", "hint": "synonyms for path", "clues": ["route", "way of life", "course", "way", "itinerary", "track", "path"]}, {"answer": "pathos", "hint": "synonyms for pathos", "clues": ["pity", "ruth", "poignancy", "commiseration", "pathos"]}, {"answer": "patois", "hint": "synonyms for patois", "clues": ["vernacular", "argot", "cant", "slang", "lingo", "jargon", "patois"]}, {"answer": "patrol_car", "hint": "synonyms for patrol car", "clues": ["squad car", "police cruiser", "prowl car", "cruiser", "police car", "patrol car"]}, {"answer": "patrol_wagon", "hint": "synonyms for patrol wagon", "clues": ["wagon", "paddy wagon", "black Maria", "police van", "police wagon", "patrol wagon"]}, {"answer": "patronage", "hint": "synonyms for patronage", "clues": ["business", "backing", "disdain", "condescension", "trade", "backup", "championship", "clientele", "patronage"]}, {"answer": "pattern", "hint": "synonyms for pattern", "clues": ["normal", "figure", "radiation diagram", "form", "blueprint", "practice", "convention", "formula", "rule", "traffic pattern", "shape", "approach pattern", "radiation pattern", "design", "pattern"]}, {"answer": "pause", "hint": "synonyms for pause", "clues": ["break", "interruption", "intermission", "suspension", "pause"]}, {"answer": "pay", "hint": "synonyms for pay", "clues": ["salary", "earnings", "wage", "remuneration", "pay"]}, {"answer": "payload", "hint": "synonyms for payload", "clues": ["load", "consignment", "shipment", "warhead", "freight", "cargo", "lading", "payload"]}, {"answer": "payoff", "hint": "synonyms for payoff", "clues": ["takings", "bribe", "reward", "final payment", "take", "issue", "wages", "return", "proceeds", "yield", "payoff"]}, {"answer": "pb", "hint": "synonyms for pb", "clues": ["petabit", "atomic number 82", "lead", "petabyte", "pebibyte", "pb"]}, {"answer": "pbs", "hint": "synonyms for pbs", "clues": ["petabit", "atomic number 82", "lead", "phosphate buffer solution", "petabyte", "pebibyte", "pbs"]}, {"answer": "pda", "hint": "synonyms for pda", "clues": ["personal digital assistant", "organiser", "personal organiser", "pda"]}, {"answer": "peace", "hint": "synonyms for peace", "clues": ["ataraxis", "peace of mind", "peace treaty", "repose", "heartsease", "serenity", "pacification", "peacefulness", "peace"]}, {"answer": "peace_of_mind", "hint": "synonyms for peace of mind", "clues": ["ataraxis", "peace", "repose", "heartsease", "serenity", "peacefulness", "peace of mind"]}, {"answer": "peacefulness", "hint": "synonyms for peacefulness", "clues": ["ataraxis", "peace of mind", "peace", "repose", "heartsease", "serenity", "peacefulness"]}, {"answer": "peacock_blue", "hint": "synonyms for peacock blue", "clues": ["aqua", "cobalt blue", "turquoise", "greenish blue", "aquamarine", "peacock blue"]}, {"answer": "peak", "hint": "synonyms for peak", "clues": ["eyeshade", "extremum", "visor", "summit", "top", "efflorescence", "bill", "flower", "acme", "crest", "point", "vizor", "apex", "prime", "flush", "bloom", "blossom", "crown", "heyday", "tip", "vertex", "peak"]}, {"answer": "pean", "hint": "synonyms for pean", "clues": ["encomium", "paean", "eulogy", "panegyric"]}, {"answer": "peanuts", "hint": "synonyms for peanuts", "clues": ["earthnut", "peanut", "goober", "monkey nut", "goober pea", "groundnut"]}, {"answer": "pearl", "hint": "synonyms for pearl", "clues": ["off-white", "bone", "drop", "ivory", "bead", "pearl"]}, {"answer": "peck", "hint": "synonyms for peck", "clues": ["good deal", "slew", "mint", "heap", "deal", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "peck"]}, {"answer": "peculation", "hint": "synonyms for peculation", "clues": ["misapplication", "defalcation", "misappropriation", "embezzlement", "peculation"]}, {"answer": "peculiarity", "hint": "synonyms for peculiarity", "clues": ["oddity", "distinctive feature", "specialness", "curio", "oddment", "speciality", "curiosity", "rarity", "distinguishing characteristic", "distinctiveness", "peculiarity"]}, {"answer": "pecuniary_resource", "hint": "synonyms for pecuniary resource", "clues": ["finances", "monetary resource", "funds", "cash in hand", "pecuniary resource"]}, {"answer": "pedagogy", "hint": "synonyms for pedagogy", "clues": ["teaching method", "instruction", "education", "pedagogics", "teaching", "educational activity", "didactics", "pedagogy"]}, {"answer": "pedestal", "hint": "synonyms for pedestal", "clues": ["stand", "base", "plinth", "footstall", "pedestal"]}, {"answer": "pee", "hint": "synonyms for pee", "clues": ["peeing", "urine", "water", "piddle", "weewee", "piss"]}, {"answer": "peevishness", "hint": "synonyms for peevishness", "clues": ["temper", "fussiness", "surliness", "fretfulness", "choler", "petulance", "biliousness", "crossness", "snappishness", "pettishness", "irritability", "peevishness"]}, {"answer": "peg", "hint": "synonyms for peg", "clues": ["nog", "wooden leg", "tholepin", "thole", "leg", "pegleg", "oarlock", "rowlock", "pin", "peg"]}, {"answer": "peignoir", "hint": "synonyms for peignoir", "clues": ["neglige", "wrapper", "housecoat", "peignoir"]}, {"answer": "pelf", "hint": "synonyms for pelf", "clues": ["lucre", "sugar", "lettuce", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "pelf"]}, {"answer": "pellucidity", "hint": "synonyms for pellucidity", "clues": ["lucidness", "lucidity", "limpidity", "clearness", "clarity", "pellucidity"]}, {"answer": "pelter", "hint": "synonyms for pelter", "clues": ["cloudburst", "downpour", "deluge", "torrent", "soaker", "waterspout", "pelter"]}, {"answer": "penalty_free_throw", "hint": "synonyms for penalty free throw", "clues": ["foul shot", "charity shot", "free throw", "charity throw", "charity toss", "penalty free throw"]}, {"answer": "penance", "hint": "synonyms for penance", "clues": ["self-abasement", "repentance", "self-mortification", "penitence", "penance"]}, {"answer": "pennant", "hint": "synonyms for pennant", "clues": ["pennon", "crown", "streamer", "waft", "pennant"]}, {"answer": "pension_account", "hint": "synonyms for pension account", "clues": ["retirement savings plan", "retirement account", "retirement plan", "retirement program", "pension plan", "pension account"]}, {"answer": "pension_plan", "hint": "synonyms for pension plan", "clues": ["retirement savings plan", "retirement program", "retirement account", "retirement plan", "pension account", "pension plan"]}, {"answer": "penstock", "hint": "synonyms for penstock", "clues": ["sluice", "sluiceway", "sluice valve", "floodgate", "sluicegate", "water gate", "head gate", "penstock"]}, {"answer": "pentad", "hint": "synonyms for pentad", "clues": ["quint", "quintet", "cinque", "fin", "quintuplet", "5", "five", "fivesome", "pentad"]}, {"answer": "people", "hint": "synonyms for people", "clues": ["hoi polloi", "mass", "multitude", "citizenry", "the great unwashed", "people"]}, {"answer": "peoples", "hint": "synonyms for peoples", "clues": ["hoi polloi", "people", "citizenry", "the great unwashed", "mass", "multitude"]}, {"answer": "perambulation", "hint": "synonyms for perambulation", "clues": ["stroll", "amble", "saunter", "promenade", "perambulation"]}, {"answer": "perambulator", "hint": "synonyms for perambulator", "clues": ["pusher", "carriage", "baby carriage", "pram", "stroller", "go-cart", "pushchair", "baby buggy", "perambulator"]}, {"answer": "percentage", "hint": "synonyms for percentage", "clues": ["per centum", "percent", "portion", "pct", "share", "part", "percentage"]}, {"answer": "perceptiveness", "hint": "synonyms for perceptiveness", "clues": ["discernment", "insight", "appreciation", "taste", "perceptivity", "perceptiveness"]}, {"answer": "perfective", "hint": "synonyms for perfective", "clues": ["perfective tense", "perfect", "perfective aspect", "perfective"]}, {"answer": "perfidy", "hint": "synonyms for perfidy", "clues": ["treachery", "treason", "perfidiousness", "betrayal", "perfidy"]}, {"answer": "performance", "hint": "synonyms for performance", "clues": ["operation", "execution", "carrying into action", "public presentation", "functioning", "carrying out", "performance"]}, {"answer": "perfume", "hint": "synonyms for perfume", "clues": ["fragrance", "aroma", "scent", "essence", "perfume"]}, {"answer": "period", "hint": "synonyms for period", "clues": ["time period", "period of time", "menses", "flow", "full stop", "menstruation", "stop", "full point", "geological period", "catamenia", "point", "menstruum", "period"]}, {"answer": "perkiness", "hint": "synonyms for perkiness", "clues": ["sauciness", "buoyancy", "pertness", "archness", "impertinence", "perkiness"]}, {"answer": "permutation", "hint": "synonyms for permutation", "clues": ["switch", "replacement", "transposition", "substitution", "permutation"]}, {"answer": "perquisite", "hint": "synonyms for perquisite", "clues": ["perk", "fringe benefit", "prerogative", "privilege", "exclusive right", "perquisite"]}, {"answer": "perseverance", "hint": "synonyms for perseverance", "clues": ["persistency", "perseveration", "tenaciousness", "doggedness", "pertinacity", "tenacity", "perseverance"]}, {"answer": "persistence", "hint": "synonyms for persistence", "clues": ["tenaciousness", "perseverance", "perseveration", "continuity", "persistency", "doggedness", "pertinacity", "tenacity"]}, {"answer": "persistency", "hint": "synonyms for persistency", "clues": ["persistence", "tenaciousness", "perseverance", "doggedness", "pertinacity", "tenacity"]}, {"answer": "person", "hint": "synonyms for person", "clues": ["mortal", "soul", "individual", "somebody", "someone", "person"]}, {"answer": "persona", "hint": "synonyms for persona", "clues": ["image", "theatrical role", "character", "role", "part", "persona"]}, {"answer": "personal_credit_line", "hint": "synonyms for personal credit line", "clues": ["line", "bank line", "personal line of credit", "line of credit", "credit line", "personal credit line"]}, {"answer": "personal_line_of_credit", "hint": "synonyms for personal line of credit", "clues": ["line", "bank line", "line of credit", "personal credit line", "credit line", "personal line of credit"]}, {"answer": "personation", "hint": "synonyms for personation", "clues": ["impersonation", "characterization", "enactment", "portrayal"]}, {"answer": "personnel", "hint": "synonyms for personnel", "clues": ["personnel department", "personnel office", "staff office", "force", "personnel"]}, {"answer": "perspicacity", "hint": "synonyms for perspicacity", "clues": ["sound judgment", "perspicaciousness", "shrewdness", "judgement", "astuteness", "perspicacity"]}, {"answer": "perspiration", "hint": "synonyms for perspiration", "clues": ["diaphoresis", "sweating", "sudation", "hidrosis", "perspiration"]}, {"answer": "persuasion", "hint": "synonyms for persuasion", "clues": ["suasion", "sentiment", "opinion", "view", "thought", "persuasion"]}, {"answer": "pertinacity", "hint": "synonyms for pertinacity", "clues": ["persistency", "tenaciousness", "perseverance", "doggedness", "tenacity", "pertinacity"]}, {"answer": "pertness", "hint": "synonyms for pertness", "clues": ["sauciness", "archness", "perkiness", "impertinence", "pertness"]}, {"answer": "petiteness", "hint": "synonyms for petiteness", "clues": ["diminutiveness", "minuteness", "weeness", "tininess", "petiteness"]}, {"answer": "petition", "hint": "synonyms for petition", "clues": ["prayer", "request", "orison", "postulation", "petition"]}, {"answer": "petroleum", "hint": "synonyms for petroleum", "clues": ["crude oil", "rock oil", "fossil oil", "crude", "oil", "petroleum"]}, {"answer": "pettifoggery", "hint": "synonyms for pettifoggery", "clues": ["spat", "bickering", "tiff", "fuss", "squabble", "pettifoggery"]}, {"answer": "pettiness", "hint": "synonyms for pettiness", "clues": ["slightness", "puniness", "littleness", "triviality", "smallness", "pettiness"]}, {"answer": "petting", "hint": "synonyms for petting", "clues": ["fondling", "necking", "kissing", "snuggling", "caressing", "cuddling", "hugging", "smooching", "petting"]}, {"answer": "pettishness", "hint": "synonyms for pettishness", "clues": ["peevishness", "temper", "biliousness", "surliness", "irritability", "snappishness", "pettishness"]}, {"answer": "petulance", "hint": "synonyms for petulance", "clues": ["choler", "peevishness", "fussiness", "crossness", "fretfulness", "irritability", "petulance"]}, {"answer": "phantasm", "hint": "synonyms for phantasm", "clues": ["shadow", "phantasma", "apparition", "phantom", "fantasm"]}, {"answer": "phantasma", "hint": "synonyms for phantasma", "clues": ["shadow", "apparition", "phantasm", "phantom", "fantasm"]}, {"answer": "pharmacy", "hint": "synonyms for pharmacy", "clues": ["chemist's", "chemist's shop", "drugstore", "pharmaceutics", "apothecary's shop", "pharmacy"]}, {"answer": "phenol", "hint": "synonyms for phenol", "clues": ["phenylic acid", "carbolic acid", "hydroxybenzene", "oxybenzene", "phenol"]}, {"answer": "phenylic_acid", "hint": "synonyms for phenylic acid", "clues": ["carbolic acid", "hydroxybenzene", "oxybenzene", "phenol", "phenylic acid"]}, {"answer": "philia", "hint": "synonyms for philia", "clues": ["heart", "warmness", "fondness", "affection", "affectionateness", "tenderness", "warmheartedness", "philia"]}, {"answer": "philosophical_system", "hint": "synonyms for philosophical system", "clues": ["ism", "school of thought", "philosophy", "doctrine", "philosophical system"]}, {"answer": "philosophy", "hint": "synonyms for philosophy", "clues": ["ism", "school of thought", "doctrine", "philosophical system", "philosophy"]}, {"answer": "phlegm", "hint": "synonyms for phlegm", "clues": ["indifference", "emotionlessness", "impassiveness", "impassivity", "flatness", "sluggishness", "unemotionality", "lethargy", "stolidity", "languor", "phlegm"]}, {"answer": "phoebe", "hint": "synonyms for phoebe", "clues": ["quint", "quintet", "cinque", "pentad", "fin", "quintuplet", "5", "five", "fivesome", "phoebe"]}, {"answer": "phonation", "hint": "synonyms for phonation", "clues": ["voice", "vocalization", "vocalism", "vox", "phonation"]}, {"answer": "phone", "hint": "synonyms for phone", "clues": ["earpiece", "speech sound", "telephone", "earphone", "telephone set", "headphone", "sound", "phone"]}, {"answer": "phone_booth", "hint": "synonyms for phone booth", "clues": ["telephone booth", "telephone kiosk", "call box", "phone booth"]}, {"answer": "phone_line", "hint": "synonyms for phone line", "clues": ["line", "subscriber line", "telephone line", "telephone circuit", "phone line"]}, {"answer": "phonograph_record", "hint": "synonyms for phonograph record", "clues": ["platter", "disk", "record", "disc", "phonograph recording"]}, {"answer": "phonograph_recording", "hint": "synonyms for phonograph recording", "clues": ["platter", "disk", "phonograph record", "record", "disc"]}, {"answer": "photo", "hint": "synonyms for photo", "clues": ["exposure", "picture", "photograph", "pic", "photo"]}, {"answer": "photocell", "hint": "synonyms for photocell", "clues": ["magic eye", "photoconductive cell", "photoelectric cell", "electric eye", "photocell"]}, {"answer": "photoconductive_cell", "hint": "synonyms for photoconductive cell", "clues": ["magic eye", "photocell", "photoelectric cell", "electric eye", "photoconductive cell"]}, {"answer": "photoelectric_cell", "hint": "synonyms for photoelectric cell", "clues": ["magic eye", "photocell", "photoconductive cell", "electric eye", "photoelectric cell"]}, {"answer": "photoflash", "hint": "synonyms for photoflash", "clues": ["flash", "flash lamp", "flashbulb", "flashgun", "photoflash"]}, {"answer": "photograph", "hint": "synonyms for photograph", "clues": ["exposure", "picture", "pic", "photo", "photograph"]}, {"answer": "phrasal_idiom", "hint": "synonyms for phrasal idiom", "clues": ["phrase", "idiom", "idiomatic expression", "set phrase", "phrasal idiom"]}, {"answer": "phrase", "hint": "synonyms for phrase", "clues": ["set phrase", "phrasal idiom", "musical phrase", "idiomatic expression", "idiom", "phrase"]}, {"answer": "phraseology", "hint": "synonyms for phraseology", "clues": ["choice of words", "verbiage", "wording", "diction", "phrasing", "phraseology"]}, {"answer": "phrasing", "hint": "synonyms for phrasing", "clues": ["choice of words", "verbiage", "phraseology", "wording", "diction", "phrasing"]}, {"answer": "phratry", "hint": "synonyms for phratry", "clues": ["family line", "family", "kinsfolk", "sept", "folk", "phratry"]}, {"answer": "physical_composition", "hint": "synonyms for physical composition", "clues": ["constitution", "make-up", "composition", "physical composition"]}, {"answer": "physical_exercise", "hint": "synonyms for physical exercise", "clues": ["exercising", "exercise", "physical exertion", "workout", "physical exercise"]}, {"answer": "physical_exertion", "hint": "synonyms for physical exertion", "clues": ["physical exercise", "exercising", "exercise", "workout", "physical exertion"]}, {"answer": "physics", "hint": "synonyms for physics", "clues": ["cathartic", "natural philosophy", "purgative", "aperient", "physical science", "physic"]}, {"answer": "physiological_reaction", "hint": "synonyms for physiological reaction", "clues": ["reflex action", "instinctive reflex", "inborn reflex", "reflex response", "reflex", "unconditioned reflex", "innate reflex", "physiological reaction"]}, {"answer": "pic", "hint": "synonyms for pic", "clues": ["movie", "moving picture", "picture", "photograph", "film", "flick", "exposure", "moving-picture show", "picture show", "photo", "pic"]}, {"answer": "pick", "hint": "synonyms for pick", "clues": ["filling", "picking", "choice", "plectrum", "pickax", "plectron", "option", "selection", "woof", "cream", "weft"]}, {"answer": "pickup", "hint": "synonyms for pickup", "clues": ["pick-me-up", "cartridge", "tone arm", "pickup arm", "pickup truck", "getaway", "pickup"]}, {"answer": "picnic", "hint": "synonyms for picnic", "clues": ["field day", "snap", "pushover", "cinch", "outing", "child's play", "piece of cake", "duck soup", "breeze", "walkover", "picnic"]}, {"answer": "picture", "hint": "synonyms for picture", "clues": ["movie", "impression", "photograph", "film", "depiction", "exposure", "mental picture", "motion-picture show", "painting", "word-painting", "characterization", "pic", "ikon", "image", "photo", "moving picture", "pictorial matter", "icon", "video", "flick", "word picture", "picture show", "delineation", "picture"]}, {"answer": "picture_palace", "hint": "synonyms for picture palace", "clues": ["movie house", "movie theater", "cinema", "picture palace"]}, {"answer": "picture_show", "hint": "synonyms for picture show", "clues": ["movie", "moving picture", "picture", "film", "flick", "moving-picture show", "pic", "picture show"]}, {"answer": "piddle", "hint": "synonyms for piddle", "clues": ["urine", "water", "weewee", "piss", "pee", "piddle"]}, {"answer": "piece", "hint": "synonyms for piece", "clues": ["patch", "art object", "while", "bit", "piece of music", "slice", "spell", "firearm", "small-arm", "objet d'art", "opus", "musical composition", "part", "composition", "piece"]}, {"answer": "piece_of_ass", "hint": "synonyms for piece of ass", "clues": ["roll in the hay", "nookie", "screw", "fuck", "shtup", "piece of tail", "shag", "ass", "nooky", "piece of ass"]}, {"answer": "piece_of_cake", "hint": "synonyms for piece of cake", "clues": ["picnic", "snap", "pushover", "cinch", "child's play", "walkover", "duck soup", "breeze", "piece of cake"]}, {"answer": "piece_of_ground", "hint": "synonyms for piece of ground", "clues": ["parcel", "tract", "piece of land", "parcel of land", "piece of ground"]}, {"answer": "piece_of_land", "hint": "synonyms for piece of land", "clues": ["parcel", "piece of ground", "tract", "parcel of land", "piece of land"]}, {"answer": "piece_of_music", "hint": "synonyms for piece of music", "clues": ["musical composition", "piece", "opus", "composition", "piece of music"]}, {"answer": "piece_of_tail", "hint": "synonyms for piece of tail", "clues": ["roll in the hay", "nookie", "screw", "fuck", "shtup", "piece of ass", "shag", "ass", "nooky", "piece of tail"]}, {"answer": "pigheadedness", "hint": "synonyms for pigheadedness", "clues": ["obstinance", "stubbornness", "obstinacy", "bullheadedness", "self-will", "pigheadedness"]}, {"answer": "pigswill", "hint": "synonyms for pigswill", "clues": ["slops", "pigwash", "swill", "pigswill"]}, {"answer": "pigwash", "hint": "synonyms for pigwash", "clues": ["slops", "pigswill", "swill", "pigwash"]}, {"answer": "pike", "hint": "synonyms for pike", "clues": ["throughway", "state highway", "superhighway", "expressway", "freeway", "motorway", "thruway", "pike"]}, {"answer": "pile", "hint": "synonyms for pile", "clues": ["bundle", "good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "agglomerate", "voltaic pile", "atomic pile", "atomic reactor", "wad", "mass", "mess", "cumulus", "passel", "great deal", "piling", "nap", "stilt", "megabucks", "plenty", "mountain", "tidy sum", "galvanic pile", "cumulation", "spile", "raft", "mound", "spate", "hatful", "big money", "chain reactor", "lot", "sight", "mickle", "stack", "big bucks", "muckle", "batch", "flock", "pot"]}, {"answer": "piles", "hint": "synonyms for piles", "clues": ["bundle", "good deal", "lots", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "agglomerate", "voltaic pile", "atomic pile", "atomic reactor", "wad", "mass", "mess", "cumulus", "passel", "great deal", "piling", "nap", "stilt", "megabucks", "plenty", "mountain", "tidy sum", "dozens", "galvanic pile", "cumulation", "lashings", "pot", "tons", "spile", "gobs", "raft", "mound", "spate", "hatful", "big money", "chain reactor", "scads", "sight", "mickle", "stack", "big bucks", "muckle", "batch", "flock", "scores", "piles"]}, {"answer": "pill", "hint": "synonyms for pill", "clues": ["tablet", "oral contraceptive pill", "birth control pill", "tab", "lozenge", "anovulant", "anovulatory drug", "pill"]}, {"answer": "pillage", "hint": "synonyms for pillage", "clues": ["pillaging", "dirty money", "plundering", "loot", "booty", "prize", "swag", "pillage"]}, {"answer": "pilomotor_reflex", "hint": "synonyms for pilomotor reflex", "clues": ["goose skin", "goosebump", "gooseflesh", "horripilation", "goose pimple", "pilomotor reflex"]}, {"answer": "pilot", "hint": "synonyms for pilot", "clues": ["fender", "pilot light", "buffer", "original", "pilot burner", "cowcatcher", "pilot program", "pilot film", "archetype", "pilot"]}, {"answer": "pilot_biscuit", "hint": "synonyms for pilot biscuit", "clues": ["hardtack", "sea biscuit", "ship biscuit", "pilot bread", "pilot biscuit"]}, {"answer": "pilot_bread", "hint": "synonyms for pilot bread", "clues": ["hardtack", "sea biscuit", "pilot biscuit", "ship biscuit", "pilot bread"]}, {"answer": "pilot_light", "hint": "synonyms for pilot light", "clues": ["pilot lamp", "indicator lamp", "pilot burner", "pilot", "pilot light"]}, {"answer": "pin", "hint": "synonyms for pin", "clues": ["personal identification number", "fall", "thole", "tholepin", "rowlock", "oarlock", "pin tumbler", "bowling pin", "pivot", "flag", "peg", "pin"]}, {"answer": "pinch", "hint": "synonyms for pinch", "clues": ["hint", "collar", "jot", "apprehension", "tinge", "emergency", "arrest", "touch", "tweak", "soupcon", "catch", "mite", "exigency", "taking into custody", "nip", "speck", "pinch"]}, {"answer": "pipe", "hint": "synonyms for pipe", "clues": ["pipework", "tobacco pipe", "organ pipe", "pipage", "piping", "tube", "pipe"]}, {"answer": "piquance", "hint": "synonyms for piquance", "clues": ["tang", "nip", "zest", "piquancy", "piquantness", "tanginess"]}, {"answer": "piquancy", "hint": "synonyms for piquancy", "clues": ["piquance", "tang", "zest", "piquantness", "nip", "tanginess"]}, {"answer": "piquantness", "hint": "synonyms for piquantness", "clues": ["piquance", "tang", "zest", "nip", "tanginess", "piquantness"]}, {"answer": "piracy", "hint": "synonyms for piracy", "clues": ["plagiarism", "plagiarization", "buccaneering", "piracy"]}, {"answer": "piss", "hint": "synonyms for piss", "clues": ["peeing", "urine", "water", "piddle", "weewee", "pissing"]}, {"answer": "pit", "hint": "synonyms for pit", "clues": ["stone pit", "infernal region", "pitfall", "fossa", "quarry", "perdition", "colliery", "cavity", "orchestra pit", "nether region", "pit"]}, {"answer": "pitch", "hint": "synonyms for pitch", "clues": ["slant", "pitch shot", "lurch", "delivery", "sales pitch", "rake", "tar", "pitching", "auction pitch", "sales talk"]}, {"answer": "pitch_black", "hint": "synonyms for pitch black", "clues": ["ebony", "coal black", "jet black", "sable", "soot black", "pitch black"]}, {"answer": "pith", "hint": "synonyms for pith", "clues": ["meat", "essence", "nub", "marrow", "center", "nitty-gritty", "centre", "heart", "inwardness", "gist", "sum", "heart and soul", "kernel", "substance", "core", "pith"]}, {"answer": "pith_hat", "hint": "synonyms for pith hat", "clues": ["sun helmet", "topi", "topee", "pith helmet", "pith hat"]}, {"answer": "pith_helmet", "hint": "synonyms for pith helmet", "clues": ["sun helmet", "topi", "pith hat", "topee", "pith helmet"]}, {"answer": "pity", "hint": "synonyms for pity", "clues": ["pathos", "compassion", "shame", "ruth", "commiseration", "pity"]}, {"answer": "pizzaz", "hint": "synonyms for pizzaz", "clues": ["oomph", "zing", "pizzazz", "dynamism"]}, {"answer": "pizzazz", "hint": "synonyms for pizzazz", "clues": ["oomph", "zing", "pizzaz", "dynamism"]}, {"answer": "placard", "hint": "synonyms for placard", "clues": ["card", "poster", "posting", "bill", "notice", "placard"]}, {"answer": "place", "hint": "synonyms for place", "clues": ["billet", "topographic point", "post", "spot", "situation", "stead", "berth", "lieu", "plaza", "seat", "home", "piazza", "office", "position", "space", "blank space", "property", "place"]}, {"answer": "place_of_origin", "hint": "synonyms for place of origin", "clues": ["provenance", "cradle", "birthplace", "place of origin"]}, {"answer": "placement", "hint": "synonyms for placement", "clues": ["positioning", "arrangement", "locating", "emplacement"]}, {"answer": "placidity", "hint": "synonyms for placidity", "clues": ["quiet", "serenity", "repose", "tranquility", "placidness", "placidity"]}, {"answer": "plan", "hint": "synonyms for plan", "clues": ["program", "design", "architectural plan", "plan"]}, {"answer": "planetary_house", "hint": "synonyms for planetary house", "clues": ["mansion", "sign of the zodiac", "star sign", "house", "sign", "planetary house"]}, {"answer": "plangency", "hint": "synonyms for plangency", "clues": ["reverberance", "resonance", "vibrancy", "ringing", "sonority", "sonorousness", "plangency"]}, {"answer": "plant", "hint": "synonyms for plant", "clues": ["works", "industrial plant", "flora", "plant life", "plant"]}, {"answer": "plaster", "hint": "synonyms for plaster", "clues": ["plaster of Paris", "sticking plaster", "adhesive plaster", "poultice", "plasterwork", "cataplasm", "plaster"]}, {"answer": "plate", "hint": "synonyms for plate", "clues": ["collection plate", "home plate", "photographic plate", "home", "home base", "plateful", "crustal plate", "shell", "denture", "scale", "dental plate", "plate"]}, {"answer": "platform", "hint": "synonyms for platform", "clues": ["political program", "chopine", "program", "weapons platform", "political platform", "platform"]}, {"answer": "platitude", "hint": "synonyms for platitude", "clues": ["bromide", "cliche", "banality", "commonplace", "platitude"]}, {"answer": "platonic_body", "hint": "synonyms for platonic body", "clues": ["ideal solid", "regular convex polyhedron", "regular polyhedron", "regular convex solid", "platonic body"]}, {"answer": "platonic_solid", "hint": "synonyms for platonic solid", "clues": ["ideal solid", "regular convex polyhedron", "regular polyhedron", "regular convex solid", "platonic solid"]}, {"answer": "platter", "hint": "synonyms for platter", "clues": ["disk", "phonograph record", "record", "disc", "platter"]}, {"answer": "plaudit", "hint": "synonyms for plaudit", "clues": ["acclaim", "acclamation", "plaudits", "eclat"]}, {"answer": "plaudits", "hint": "synonyms for plaudits", "clues": ["acclaim", "acclamation", "plaudit", "eclat"]}, {"answer": "play", "hint": "synonyms for play", "clues": ["period of play", "dramatic play", "fun", "sport", "child's play", "turn", "maneuver", "bid", "playing period", "gaming", "swordplay", "gambol", "shimmer", "caper", "frolic", "drama", "manoeuvre", "romp", "looseness", "play"]}, {"answer": "plaza", "hint": "synonyms for plaza", "clues": ["piazza", "shopping centre", "place", "shopping mall", "center", "mall", "plaza"]}, {"answer": "pleasure_trip", "hint": "synonyms for pleasure trip", "clues": ["outing", "jaunt", "junket", "sashay", "expedition", "excursion", "pleasure trip"]}, {"answer": "plenitude", "hint": "synonyms for plenitude", "clues": ["plenteousness", "plentifulness", "plentitude", "plenty"]}, {"answer": "plenteousness", "hint": "synonyms for plenteousness", "clues": ["plenty", "plentifulness", "plentitude", "plenteousness"]}, {"answer": "plentifulness", "hint": "synonyms for plentifulness", "clues": ["plenteousness", "plenty", "plentitude", "plentifulness"]}, {"answer": "plentitude", "hint": "synonyms for plentitude", "clues": ["plenteousness", "plentifulness", "plenty", "plenitude"]}, {"answer": "pliability", "hint": "synonyms for pliability", "clues": ["pliancy", "suppleness", "pliantness", "bendability", "pliability"]}, {"answer": "plication", "hint": "synonyms for plication", "clues": ["crease", "flexure", "fold", "crimp", "bend", "pleating", "plication"]}, {"answer": "plosive", "hint": "synonyms for plosive", "clues": ["plosive speech sound", "plosive consonant", "stop consonant", "occlusive", "stop", "plosive"]}, {"answer": "plosive_consonant", "hint": "synonyms for plosive consonant", "clues": ["plosive speech sound", "stop consonant", "occlusive", "plosive", "stop", "plosive consonant"]}, {"answer": "plosive_speech_sound", "hint": "synonyms for plosive speech sound", "clues": ["plosive consonant", "stop consonant", "occlusive", "plosive", "stop", "plosive speech sound"]}, {"answer": "plot", "hint": "synonyms for plot", "clues": ["game", "patch", "secret plan", "plot of ground", "plot of land", "plot"]}, {"answer": "ploughland", "hint": "synonyms for ploughland", "clues": ["tilth", "tillage", "farmland", "plowland", "cultivated land", "tilled land", "ploughland"]}, {"answer": "plowland", "hint": "synonyms for plowland", "clues": ["tilth", "tillage", "farmland", "ploughland", "cultivated land", "tilled land", "plowland"]}, {"answer": "plug", "hint": "synonyms for plug", "clues": ["spark plug", "quid", "fire hydrant", "fireplug", "stopple", "ballyhoo", "cud", "wad", "hoopla", "male plug", "chew", "hype", "chaw", "plug"]}, {"answer": "plug-in", "hint": "synonyms for plug-in", "clues": ["card", "add-in", "board", "circuit card", "plug-in"]}, {"answer": "plug_hat", "hint": "synonyms for plug hat", "clues": ["derby", "derby hat", "bowler", "bowler hat", "plug hat"]}, {"answer": "plunder", "hint": "synonyms for plunder", "clues": ["dirty money", "loot", "pillage", "prize", "booty", "swag", "plunder"]}, {"answer": "plurality", "hint": "synonyms for plurality", "clues": ["battalion", "large number", "multitude", "pack", "relative majority", "plurality"]}, {"answer": "pm", "hint": "synonyms for pm", "clues": ["atomic number 61", "postmortem", "autopsy", "phase modulation", "postmortem examination", "necropsy", "promethium", "pm"]}, {"answer": "pms", "hint": "synonyms for pms", "clues": ["atomic number 61", "postmortem", "autopsy", "phase modulation", "postmortem examination", "necropsy", "promethium", "pms"]}, {"answer": "pocket", "hint": "synonyms for pocket", "clues": ["sack", "air hole", "scoop", "pouch", "air pocket", "pocket"]}, {"answer": "pocketbook", "hint": "synonyms for pocketbook", "clues": ["wallet", "notecase", "pocket edition", "bag", "handbag", "pocket book", "billfold", "purse"]}, {"answer": "podium", "hint": "synonyms for podium", "clues": ["rostrum", "soapbox", "pulpit", "ambo", "stump", "dais", "podium"]}, {"answer": "podsol", "hint": "synonyms for podsol", "clues": ["podsolic soil", "podzol", "podzol soil", "podsol"]}, {"answer": "podsol_soil", "hint": "synonyms for podsol soil", "clues": ["podsol", "podsolic soil", "podzol", "podzol soil"]}, {"answer": "podzol", "hint": "synonyms for podzol", "clues": ["podsol", "podsolic soil", "podzol soil", "podzol"]}, {"answer": "podzol_soil", "hint": "synonyms for podzol soil", "clues": ["podsol", "podsolic soil", "podzol", "podzol soil"]}, {"answer": "point", "hint": "synonyms for point", "clues": ["compass point", "spot", "breaker point", "full stop", "pointedness", "head", "decimal point", "stop", "period", "point in time", "dot", "power point", "peak", "distributor point", "full point", "gunpoint", "percentage point", "tip", "detail", "item", "point"]}, {"answer": "pointlessness", "hint": "synonyms for pointlessness", "clues": ["inanity", "vacuity", "senselessness", "mindlessness", "pointlessness"]}, {"answer": "poise", "hint": "synonyms for poise", "clues": ["aplomb", "cool", "assuredness", "sang-froid", "poise"]}, {"answer": "poke", "hint": "synonyms for poke", "clues": ["jabbing", "sack", "jab", "lick", "clout", "paper bag", "carrier bag", "poking", "slug", "thrusting", "biff", "punch", "poke"]}, {"answer": "poker", "hint": "synonyms for poker", "clues": ["stove poker", "poker game", "salamander", "fire hook", "poker"]}, {"answer": "poking", "hint": "synonyms for poking", "clues": ["jabbing", "thrusting", "jab", "poke", "poking"]}, {"answer": "pole", "hint": "synonyms for pole", "clues": ["magnetic pole", "celestial pole", "perch", "rod", "terminal", "pole"]}, {"answer": "police_blotter", "hint": "synonyms for police blotter", "clues": ["rap sheet", "charge sheet", "blotter", "day book", "police blotter"]}, {"answer": "police_car", "hint": "synonyms for police car", "clues": ["squad car", "police cruiser", "prowl car", "cruiser", "patrol car", "police car"]}, {"answer": "police_cruiser", "hint": "synonyms for police cruiser", "clues": ["squad car", "prowl car", "cruiser", "police car", "patrol car", "police cruiser"]}, {"answer": "police_van", "hint": "synonyms for police van", "clues": ["wagon", "patrol wagon", "paddy wagon", "black Maria", "police wagon", "police van"]}, {"answer": "police_wagon", "hint": "synonyms for police wagon", "clues": ["wagon", "patrol wagon", "paddy wagon", "black Maria", "police van", "police wagon"]}, {"answer": "political_campaign", "hint": "synonyms for political campaign", "clues": ["electioneering", "campaigning", "candidacy", "run", "candidature", "political campaign"]}, {"answer": "politics", "hint": "synonyms for politics", "clues": ["political relation", "government", "political science", "political sympathies", "politics"]}, {"answer": "polls", "hint": "synonyms for polls", "clues": ["opinion poll", "public opinion poll", "canvass", "poll"]}, {"answer": "pom-pom", "hint": "synonyms for pom-pom", "clues": ["pompon", "flak", "ack-ack", "ack-ack gun", "antiaircraft gun", "pom-pom"]}, {"answer": "pomposity", "hint": "synonyms for pomposity", "clues": ["ostentation", "pompousness", "puffiness", "inflation", "splashiness", "ostentatiousness", "pretentiousness", "pomposity"]}, {"answer": "pompousness", "hint": "synonyms for pompousness", "clues": ["ostentation", "pomposity", "puffiness", "inflation", "splashiness", "ostentatiousness", "pretentiousness", "pompousness"]}, {"answer": "ponderosity", "hint": "synonyms for ponderosity", "clues": ["ponderousness", "heft", "massiveness", "heftiness", "ponderosity"]}, {"answer": "ponderousness", "hint": "synonyms for ponderousness", "clues": ["ponderosity", "heft", "massiveness", "heftiness", "heaviness", "ponderousness"]}, {"answer": "pony", "hint": "synonyms for pony", "clues": ["crib", "trot", "shot glass", "jigger", "pony"]}, {"answer": "pool", "hint": "synonyms for pool", "clues": ["pond", "puddle", "consortium", "kitty", "syndicate", "pocket billiards", "pool"]}, {"answer": "poop", "hint": "synonyms for poop", "clues": ["shit", "the skinny", "dope", "after part", "tail", "dirt", "turd", "crap", "quarter", "stern", "low-down", "poop"]}, {"answer": "poor_boy", "hint": "synonyms for poor boy", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "poor boy"]}, {"answer": "poorness", "hint": "synonyms for poorness", "clues": ["meagerness", "scantiness", "leanness", "exiguity", "poorness"]}, {"answer": "porcelain_clay", "hint": "synonyms for porcelain clay", "clues": ["china stone", "terra alba", "kaolin", "china clay", "porcelain clay"]}, {"answer": "porn", "hint": "synonyms for porn", "clues": ["pornography", "smut", "porno", "erotica"]}, {"answer": "porno", "hint": "synonyms for porno", "clues": ["porn", "pornography", "smut", "erotica"]}, {"answer": "pornography", "hint": "synonyms for pornography", "clues": ["porn", "smut", "erotica", "pornography"]}, {"answer": "portent", "hint": "synonyms for portent", "clues": ["presage", "prodigy", "prognostication", "omen", "prognostic", "portent"]}, {"answer": "portion", "hint": "synonyms for portion", "clues": ["dower", "constituent", "percentage", "part", "parcel", "share", "serving", "helping", "dowry", "component part", "component", "portion"]}, {"answer": "portrayal", "hint": "synonyms for portrayal", "clues": ["portraying", "portrait", "personation", "depiction", "portraiture", "enactment", "characterization", "delineation", "portrayal"]}, {"answer": "pose", "hint": "synonyms for pose", "clues": ["affectation", "affectedness", "mannerism", "airs", "pose"]}, {"answer": "position", "hint": "synonyms for position", "clues": ["billet", "military position", "post", "situation", "spot", "lieu", "spatial relation", "office", "locating", "view", "posture", "side", "positioning", "perspective", "place", "stead", "placement", "stance", "attitude", "berth"]}, {"answer": "positiveness", "hint": "synonyms for positiveness", "clues": ["advantageousness", "incontrovertibleness", "positivism", "profitableness", "incontrovertibility", "positivity", "favourableness", "positiveness"]}, {"answer": "positivity", "hint": "synonyms for positivity", "clues": ["advantageousness", "incontrovertibleness", "positivism", "profitableness", "incontrovertibility", "positiveness", "favourableness", "positivity"]}, {"answer": "possession", "hint": "synonyms for possession", "clues": ["will power", "self-possession", "monomania", "self-will", "self-command", "self-control", "ownership", "possession"]}, {"answer": "possibility", "hint": "synonyms for possibility", "clues": ["possible action", "hypothesis", "opening", "theory", "possibility"]}, {"answer": "post", "hint": "synonyms for post", "clues": ["billet", "postal service", "situation", "place", "spot", "mail service", "military post", "office", "mail", "position", "stake", "berth", "post"]}, {"answer": "post-mortem", "hint": "synonyms for post-mortem", "clues": ["postmortem examination", "necropsy", "autopsy", "postmortem"]}, {"answer": "post-mortem_examination", "hint": "synonyms for post-mortem examination", "clues": ["postmortem examination", "necropsy", "autopsy", "post-mortem"]}, {"answer": "poster", "hint": "synonyms for poster", "clues": ["card", "bill", "posting", "notice", "placard", "poster"]}, {"answer": "postiche", "hint": "synonyms for postiche", "clues": ["hairpiece", "false hair", "sham", "fake", "postiche"]}, {"answer": "posting", "hint": "synonyms for posting", "clues": ["card", "poster", "bill", "notice", "placard", "mailing", "posting"]}, {"answer": "postmortem_examination", "hint": "synonyms for postmortem examination", "clues": ["necropsy", "post-mortem examination", "autopsy", "post-mortem"]}, {"answer": "postponement", "hint": "synonyms for postponement", "clues": ["deferment", "wait", "delay", "hold", "deferral", "time lag", "postponement"]}, {"answer": "posture", "hint": "synonyms for posture", "clues": ["carriage", "bearing", "strength", "military capability", "stance", "position", "military strength", "military posture", "attitude", "posture"]}, {"answer": "pot", "hint": "synonyms for pot", "clues": ["toilet", "potty", "good deal", "slew", "mint", "heap", "deal", "peck", "potful", "stool", "quite a little", "jackpot", "locoweed", "wad", "mass", "mess", "passel", "great deal", "sens", "green goddess", "commode", "plenty", "grass", "throne", "mountain", "tidy sum", "sess", "can", "dope", "skunk", "gage", "kitty", "raft", "smoke", "spate", "potentiometer", "hatful", "lot", "sight", "mickle", "stack", "muckle", "flowerpot", "pile", "batch", "weed", "flock", "crapper", "pot"]}, {"answer": "potassium_nitrate", "hint": "synonyms for potassium nitrate", "clues": ["saltpetre", "niter", "nitre", "potassium nitrate"]}, {"answer": "potato", "hint": "synonyms for potato", "clues": ["spud", "white potato", "murphy", "tater", "potato"]}, {"answer": "potency", "hint": "synonyms for potency", "clues": ["effectiveness", "say-so", "authorization", "strength", "authority", "dominance", "potency"]}, {"answer": "potential_difference", "hint": "synonyms for potential difference", "clues": ["electric potential", "potential", "voltage", "potential drop", "potential difference"]}, {"answer": "potential_drop", "hint": "synonyms for potential drop", "clues": ["potential difference", "electric potential", "potential", "voltage", "potential drop"]}, {"answer": "pothouse", "hint": "synonyms for pothouse", "clues": ["gin mill", "taphouse", "saloon", "pub", "public house", "pothouse"]}, {"answer": "potpourri", "hint": "synonyms for potpourri", "clues": ["medley", "smorgasbord", "miscellany", "variety", "mixture", "pastiche", "mixed bag", "assortment", "motley", "salmagundi", "potpourri"]}, {"answer": "poudrin", "hint": "synonyms for poudrin", "clues": ["ice crystal", "frost snow", "diamond dust", "ice needle", "snow mist", "frost mist", "poudrin"]}, {"answer": "pouf", "hint": "synonyms for pouf", "clues": ["hassock", "puff", "ottoman", "pouffe", "pouf"]}, {"answer": "pouffe", "hint": "synonyms for pouffe", "clues": ["hassock", "puff", "pouf", "ottoman", "pouffe"]}, {"answer": "pound", "hint": "synonyms for pound", "clues": ["quid", "punt", "dog pound", "hammering", "pound sterling", "lbf.", "pound sign", "pounding", "lb"]}, {"answer": "pounding", "hint": "synonyms for pounding", "clues": ["hammer", "throbbing", "buffeting", "throb", "pound"]}, {"answer": "pourboire", "hint": "synonyms for pourboire", "clues": ["bakshis", "gratuity", "tip", "backsheesh", "pourboire"]}, {"answer": "power", "hint": "synonyms for power", "clues": ["great power", "exponent", "powerfulness", "mightiness", "index", "superpower", "world power", "major power", "ability", "might", "power"]}, {"answer": "power_train", "hint": "synonyms for power train", "clues": ["gear", "train", "geartrain", "power train"]}, {"answer": "practice", "hint": "synonyms for practice", "clues": ["drill", "exercise", "practice session", "recitation", "pattern", "praxis", "practice"]}, {"answer": "practice_session", "hint": "synonyms for practice session", "clues": ["drill", "exercise", "recitation", "practice", "practice session"]}, {"answer": "pram", "hint": "synonyms for pram", "clues": ["pusher", "stroller", "carriage", "baby carriage", "perambulator", "go-cart", "pushchair", "baby buggy", "pram"]}, {"answer": "prank", "hint": "synonyms for prank", "clues": ["joke", "caper", "trick", "buffoonery", "put-on", "antic", "clowning", "frivolity", "japery", "harlequinade", "prank"]}, {"answer": "prate", "hint": "synonyms for prate", "clues": ["blether", "prattle", "chin music", "idle talk", "prate"]}, {"answer": "pratfall", "hint": "synonyms for pratfall", "clues": ["fuckup", "bloomer", "flub", "blunder", "foul-up", "boo-boo", "bungle", "boner", "botch", "pratfall"]}, {"answer": "prattle", "hint": "synonyms for prattle", "clues": ["blether", "chin music", "idle talk", "prate", "prattle"]}, {"answer": "prayer", "hint": "synonyms for prayer", "clues": ["supplication", "appeal", "orison", "petition", "entreaty", "prayer"]}, {"answer": "precaution", "hint": "synonyms for precaution", "clues": ["caution", "guard", "safeguard", "care", "forethought", "precaution"]}, {"answer": "precedence", "hint": "synonyms for precedence", "clues": ["priority", "precedency", "antecedency", "precession", "anteriority"]}, {"answer": "precedency", "hint": "synonyms for precedency", "clues": ["priority", "antecedency", "precession", "precedence", "anteriority"]}, {"answer": "preciousness", "hint": "synonyms for preciousness", "clues": ["pricelessness", "costliness", "preciosity", "invaluableness", "dearness", "preciousness"]}, {"answer": "precipitance", "hint": "synonyms for precipitance", "clues": ["abruptness", "precipitateness", "precipitousness", "suddenness", "precipitancy"]}, {"answer": "precipitancy", "hint": "synonyms for precipitancy", "clues": ["abruptness", "precipitateness", "precipitousness", "precipitance", "suddenness"]}, {"answer": "precipitateness", "hint": "synonyms for precipitateness", "clues": ["abruptness", "precipitousness", "precipitance", "suddenness", "precipitateness"]}, {"answer": "precipitation", "hint": "synonyms for precipitation", "clues": ["haste", "hurriedness", "hastiness", "downfall", "hurry", "precipitation"]}, {"answer": "precipitousness", "hint": "synonyms for precipitousness", "clues": ["abruptness", "precipitance", "precipitateness", "steepness", "suddenness", "precipitousness"]}, {"answer": "preconceived_idea", "hint": "synonyms for preconceived idea", "clues": ["preconceived notion", "preconception", "prepossession", "parti pris", "preconceived idea"]}, {"answer": "preconceived_notion", "hint": "synonyms for preconceived notion", "clues": ["preconception", "preconceived idea", "preconceived opinion", "prepossession", "parti pris"]}, {"answer": "preconceived_opinion", "hint": "synonyms for preconceived opinion", "clues": ["preconceived notion", "preconceived idea", "preconception", "prepossession", "parti pris"]}, {"answer": "preconception", "hint": "synonyms for preconception", "clues": ["preconceived notion", "preconceived idea", "prepossession", "prejudice", "parti pris", "bias", "preconception"]}, {"answer": "precondition", "hint": "synonyms for precondition", "clues": ["stipulation", "given", "presumption", "condition"]}, {"answer": "precursor", "hint": "synonyms for precursor", "clues": ["harbinger", "herald", "forerunner", "predecessor", "precursor"]}, {"answer": "predecessor", "hint": "synonyms for predecessor", "clues": ["harbinger", "herald", "forerunner", "precursor", "predecessor"]}, {"answer": "prediction", "hint": "synonyms for prediction", "clues": ["foretelling", "prevision", "forecasting", "prognostication", "anticipation", "prediction"]}, {"answer": "predilection", "hint": "synonyms for predilection", "clues": ["orientation", "preference", "taste", "penchant", "predilection"]}, {"answer": "preference", "hint": "synonyms for preference", "clues": ["orientation", "predilection", "druthers", "taste", "penchant", "preference"]}, {"answer": "prefrontal_leucotomy", "hint": "synonyms for prefrontal leucotomy", "clues": ["prefrontal leukotomy", "leukotomy", "lobotomy", "frontal lobotomy"]}, {"answer": "prefrontal_leukotomy", "hint": "synonyms for prefrontal leukotomy", "clues": ["leukotomy", "prefrontal leucotomy", "lobotomy", "frontal lobotomy"]}, {"answer": "prefrontal_lobotomy", "hint": "synonyms for prefrontal lobotomy", "clues": ["prefrontal leukotomy", "leukotomy", "lobotomy", "frontal lobotomy"]}, {"answer": "prelims", "hint": "synonyms for prelims", "clues": ["preliminary examination", "prelim", "preliminary", "preliminary exam", "front matter"]}, {"answer": "premonition", "hint": "synonyms for premonition", "clues": ["forewarning", "presentiment", "boding", "foreboding", "premonition"]}, {"answer": "preparation", "hint": "synonyms for preparation", "clues": ["provision", "planning", "homework", "grooming", "cooking", "readying", "prep", "formulation", "cookery", "training", "preparation"]}, {"answer": "prepossession", "hint": "synonyms for prepossession", "clues": ["preconceived notion", "preconceived idea", "preconception", "parti pris", "prepossession"]}, {"answer": "presage", "hint": "synonyms for presage", "clues": ["portent", "prodigy", "prognostication", "omen", "prognostic", "presage"]}, {"answer": "presence", "hint": "synonyms for presence", "clues": ["bearing", "front", "mien", "comportment", "presence"]}, {"answer": "presentation", "hint": "synonyms for presentation", "clues": ["presentment", "intro", "display", "demonstration", "introduction", "presentation"]}, {"answer": "press", "hint": "synonyms for press", "clues": ["printing press", "mechanical press", "military press", "wardrobe", "pressing", "closet", "pressure", "jam", "crush", "public press"]}, {"answer": "press_agency", "hint": "synonyms for press agency", "clues": ["wire service", "news agency", "press association", "news organisation", "press agency"]}, {"answer": "press_association", "hint": "synonyms for press association", "clues": ["wire service", "news agency", "news organisation", "press agency", "press association"]}, {"answer": "press_clipping", "hint": "synonyms for press clipping", "clues": ["clipping", "press cutting", "newspaper clipping", "cutting", "press clipping"]}, {"answer": "press_cutting", "hint": "synonyms for press cutting", "clues": ["clipping", "press clipping", "newspaper clipping", "cutting", "press cutting"]}, {"answer": "pressure", "hint": "synonyms for pressure", "clues": ["force per unit area", "atmospheric pressure", "press", "air pressure", "pressure sensation", "pressure level", "pressure"]}, {"answer": "pressure-feed_lubricating_system", "hint": "synonyms for pressure-feed lubricating system", "clues": ["pressure feed", "force feed", "force-feed lubricating system", "lubricating system"]}, {"answer": "pressure_feed", "hint": "synonyms for pressure feed", "clues": ["force feed", "pressure-feed lubricating system", "lubricating system", "pressure feed"]}, {"answer": "presumption", "hint": "synonyms for presumption", "clues": ["precondition", "effrontery", "assumption", "given", "presumptuousness", "presumption"]}, {"answer": "pretence", "hint": "synonyms for pretence", "clues": ["make-believe", "pretension", "pretense", "simulation", "pretending", "guise", "feigning", "pretext", "dissembling"]}, {"answer": "pretending", "hint": "synonyms for pretending", "clues": ["pretence", "feigning", "simulation", "pretending"]}, {"answer": "pretense", "hint": "synonyms for pretense", "clues": ["pretence", "make-believe", "pretension", "simulation", "pretending", "guise", "feigning", "pretext", "dissembling"]}, {"answer": "pretension", "hint": "synonyms for pretension", "clues": ["largeness", "pretence", "pretentiousness", "pretension"]}, {"answer": "pretentiousness", "hint": "synonyms for pretentiousness", "clues": ["pretension", "largeness", "puffiness", "ostentatiousness", "ostentation", "pomposity", "inflation", "pompousness", "splashiness", "pretentiousness"]}, {"answer": "pretext", "hint": "synonyms for pretext", "clues": ["guise", "pretense", "stalking-horse", "pretext"]}, {"answer": "prevarication", "hint": "synonyms for prevarication", "clues": ["lie", "fabrication", "lying", "evasiveness", "equivocation", "prevarication"]}, {"answer": "prevision", "hint": "synonyms for prevision", "clues": ["prospicience", "prediction", "prescience", "foresight", "anticipation", "farsightedness", "prevision"]}, {"answer": "price", "hint": "synonyms for price", "clues": ["toll", "monetary value", "damage", "terms", "cost", "price"]}, {"answer": "price_of_admission", "hint": "synonyms for price of admission", "clues": ["admission", "entrance money", "admission fee", "entrance fee", "admission price", "admission charge", "price of admission"]}, {"answer": "prick", "hint": "synonyms for prick", "clues": ["pricking", "dent", "incision", "slit", "scratch"]}, {"answer": "primer", "hint": "synonyms for primer", "clues": ["ground", "priming coat", "priming", "flat coat", "fusee", "fuzee", "undercoat", "primer coat", "primer"]}, {"answer": "primer_coat", "hint": "synonyms for primer coat", "clues": ["ground", "priming coat", "undercoat", "priming", "flat coat", "primer", "primer coat"]}, {"answer": "priming", "hint": "synonyms for priming", "clues": ["ground", "priming coat", "flat coat", "fusee", "fuzee", "primer coat", "undercoat", "primer", "priming"]}, {"answer": "priming_coat", "hint": "synonyms for priming coat", "clues": ["ground", "undercoat", "primer", "priming", "flat coat", "primer coat", "priming coat"]}, {"answer": "primitive_art", "hint": "synonyms for primitive art", "clues": ["vernacular art", "self-taught art", "outsider art", "naive art", "primitive art"]}, {"answer": "priority", "hint": "synonyms for priority", "clues": ["precedency", "antecedency", "anteriority", "priority"]}, {"answer": "prison-breaking", "hint": "synonyms for prison-breaking", "clues": ["break", "breakout", "gaolbreak", "prisonbreak", "jailbreak", "prison-breaking"]}, {"answer": "prison_camp", "hint": "synonyms for prison camp", "clues": ["internment camp", "work camp", "prisoner of war camp", "prison farm", "prison camp"]}, {"answer": "prisonbreak", "hint": "synonyms for prisonbreak", "clues": ["break", "breakout", "gaolbreak", "jailbreak", "prison-breaking", "prisonbreak"]}, {"answer": "procedure", "hint": "synonyms for procedure", "clues": ["process", "subprogram", "subroutine", "operation", "routine", "function", "procedure"]}, {"answer": "proceedings", "hint": "synonyms for proceedings", "clues": ["transactions", "proceeding", "minutes", "legal proceeding"]}, {"answer": "proceeds", "hint": "synonyms for proceeds", "clues": ["return", "takings", "yield", "payoff", "take", "issue", "proceeds"]}, {"answer": "process", "hint": "synonyms for process", "clues": ["unconscious process", "physical process", "mental process", "operation", "cognitive operation", "summons", "cognitive process", "procedure", "process"]}, {"answer": "procession", "hint": "synonyms for procession", "clues": ["advancement", "onward motion", "progress", "progression", "rise", "advance", "emanation"]}, {"answer": "proclamation", "hint": "synonyms for proclamation", "clues": ["announcement", "annunciation", "declaration", "promulgation", "proclamation"]}, {"answer": "prod", "hint": "synonyms for prod", "clues": ["goad", "spur", "spurring", "prodding", "urging", "prod"]}, {"answer": "prodding", "hint": "synonyms for prodding", "clues": ["prod", "goad", "spur", "spurring", "urging", "prodding"]}, {"answer": "prodigality", "hint": "synonyms for prodigality", "clues": ["profligacy", "highlife", "lavishness", "extravagance", "prodigality"]}, {"answer": "prodigy", "hint": "synonyms for prodigy", "clues": ["portent", "presage", "prognostication", "omen", "prognostic", "prodigy"]}, {"answer": "product", "hint": "synonyms for product", "clues": ["intersection", "mathematical product", "merchandise", "production", "ware", "product"]}, {"answer": "product_line", "hint": "synonyms for product line", "clues": ["line", "line of business", "line of products", "line of merchandise", "business line", "product line"]}, {"answer": "profit", "hint": "synonyms for profit", "clues": ["lucre", "gain", "earnings", "net", "net income", "net profit", "profits"]}, {"answer": "profitableness", "hint": "synonyms for profitableness", "clues": ["advantageousness", "gainfulness", "lucrativeness", "profitability", "positiveness", "positivity", "favourableness", "profitableness"]}, {"answer": "profits", "hint": "synonyms for profits", "clues": ["lucre", "gain", "winnings", "win", "profit", "earnings", "net", "net income", "net profit"]}, {"answer": "profligacy", "hint": "synonyms for profligacy", "clues": ["prodigality", "dissolution", "extravagance", "looseness", "licentiousness", "dissipation", "profligacy"]}, {"answer": "profoundness", "hint": "synonyms for profoundness", "clues": ["depth", "deepness", "reconditeness", "abstruseness", "profundity", "astuteness", "abstrusity", "profoundness"]}, {"answer": "profundity", "hint": "synonyms for profundity", "clues": ["depth", "deepness", "reconditeness", "abstruseness", "astuteness", "abstrusity", "profoundness", "profundity"]}, {"answer": "prognostication", "hint": "synonyms for prognostication", "clues": ["prophecy", "portent", "presage", "prodigy", "vaticination", "omen", "prognostic", "foretelling", "forecasting", "prediction", "prognostication"]}, {"answer": "program", "hint": "synonyms for program", "clues": ["computer program", "course of study", "platform", "programme", "broadcast", "political program", "curriculum", "plan", "political platform", "syllabus"]}, {"answer": "programme", "hint": "synonyms for programme", "clues": ["computer program", "program", "course of study", "broadcast", "curriculum", "plan", "syllabus"]}, {"answer": "progress", "hint": "synonyms for progress", "clues": ["procession", "advancement", "onward motion", "advance", "progress"]}, {"answer": "progression", "hint": "synonyms for progression", "clues": ["procession", "advancement", "onward motion", "progress", "patterned advance", "advance"]}, {"answer": "progressive_tense", "hint": "synonyms for progressive tense", "clues": ["imperfect tense", "continuous tense", "progressive", "imperfect", "progressive tense"]}, {"answer": "prohibition", "hint": "synonyms for prohibition", "clues": ["forbiddance", "inhibition", "ban", "proscription", "prohibition era", "prohibition"]}, {"answer": "project", "hint": "synonyms for project", "clues": ["labor", "task", "projection", "undertaking", "project"]}, {"answer": "projection", "hint": "synonyms for projection", "clues": ["jut", "expulsion", "forcing out", "project", "protrusion", "sound projection", "acoustic projection", "jutting", "ejection", "projection"]}, {"answer": "prolixity", "hint": "synonyms for prolixity", "clues": ["windiness", "wordiness", "long-windedness", "prolixness", "prolixity"]}, {"answer": "prolixness", "hint": "synonyms for prolixness", "clues": ["windiness", "prolixity", "long-windedness", "wordiness", "prolixness"]}, {"answer": "prolongation", "hint": "synonyms for prolongation", "clues": ["extension", "continuation", "lengthening", "lengthiness", "perpetuation", "protraction", "prolongation"]}, {"answer": "prolusion", "hint": "synonyms for prolusion", "clues": ["foreword", "preface", "warm-up", "tune-up", "prolusion"]}, {"answer": "promenade", "hint": "synonyms for promenade", "clues": ["stroll", "prom", "amble", "saunter", "perambulation", "mall", "promenade"]}, {"answer": "prominence", "hint": "synonyms for prominence", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "gibbousness", "bump", "protrusion", "bulge", "excrescence", "gibbosity", "prominence"]}, {"answer": "promotion", "hint": "synonyms for promotion", "clues": ["forwarding", "publicity", "promotional material", "advancement", "furtherance", "packaging", "promotion"]}, {"answer": "propensity", "hint": "synonyms for propensity", "clues": ["tendency", "leaning", "proclivity", "aptness", "propensity"]}, {"answer": "property", "hint": "synonyms for property", "clues": ["place", "attribute", "belongings", "holding", "dimension", "prop", "property"]}, {"answer": "prophylactic_device", "hint": "synonyms for prophylactic device", "clues": ["preventive", "birth control device", "contraceptive device", "contraceptive", "prophylactic device"]}, {"answer": "propitiation", "hint": "synonyms for propitiation", "clues": ["expiation", "conciliation", "atonement", "placation", "propitiation"]}, {"answer": "proportion", "hint": "synonyms for proportion", "clues": ["balance", "ratio", "proportionality", "dimension", "symmetry", "proportion"]}, {"answer": "proposal", "hint": "synonyms for proposal", "clues": ["marriage proposal", "marriage offer", "proposal of marriage", "proposition", "proposal"]}, {"answer": "props", "hint": "synonyms for props", "clues": ["prop", "airscrew", "airplane propeller", "property"]}, {"answer": "prosody", "hint": "synonyms for prosody", "clues": ["poetic rhythm", "inflection", "metrics", "rhythmic pattern", "prosody"]}, {"answer": "prospect", "hint": "synonyms for prospect", "clues": ["prognosis", "medical prognosis", "expectation", "panorama", "scene", "vista", "aspect", "view", "outlook", "prospect"]}, {"answer": "protection", "hint": "synonyms for protection", "clues": ["auspices", "tribute", "trade protection", "aegis", "security", "protective covering", "protection"]}, {"answer": "protoheme", "hint": "synonyms for protoheme", "clues": ["haem", "haemitin", "hematin", "heme", "protoheme"]}, {"answer": "protraction", "hint": "synonyms for protraction", "clues": ["continuation", "lengthening", "lengthiness", "perpetuation", "prolongation", "protraction"]}, {"answer": "protrusion", "hint": "synonyms for protrusion", "clues": ["protuberance", "hump", "jut", "swelling", "extrusion", "gibbousness", "bump", "jutting", "prominence", "bulge", "excrescence", "gibbosity", "projection", "protrusion"]}, {"answer": "protuberance", "hint": "synonyms for protuberance", "clues": ["hump", "jut", "swelling", "extrusion", "gibbousness", "bump", "prominence", "protrusion", "bulge", "excrescence", "gibbosity", "protuberance"]}, {"answer": "provenance", "hint": "synonyms for provenance", "clues": ["cradle", "birthplace", "place of origin", "provenience"]}, {"answer": "provender", "hint": "synonyms for provender", "clues": ["feed", "victuals", "provisions", "commissariat", "viands", "provender"]}, {"answer": "provenience", "hint": "synonyms for provenience", "clues": ["provenance", "cradle", "birthplace", "place of origin"]}, {"answer": "proverbs", "hint": "synonyms for proverbs", "clues": ["proverb", "byword", "adage", "saw"]}, {"answer": "provision", "hint": "synonyms for provision", "clues": ["supply", "planning", "preparation", "proviso"]}, {"answer": "provisions", "hint": "synonyms for provisions", "clues": ["victuals", "supplying", "planning", "provender", "commissariat", "preparation", "provision", "viands"]}, {"answer": "provocation", "hint": "synonyms for provocation", "clues": ["aggravation", "incitement", "incitation", "irritation", "provocation"]}, {"answer": "prowl_car", "hint": "synonyms for prowl car", "clues": ["squad car", "police cruiser", "cruiser", "police car", "patrol car", "prowl car"]}, {"answer": "prurience", "hint": "synonyms for prurience", "clues": ["lubricity", "carnality", "lasciviousness", "pruriency"]}, {"answer": "pruriency", "hint": "synonyms for pruriency", "clues": ["prurience", "lubricity", "carnality", "lasciviousness"]}, {"answer": "ps", "hint": "synonyms for ps", "clues": ["atomic number 15", "postscript", "p", "phosphorus"]}, {"answer": "psyche", "hint": "synonyms for psyche", "clues": ["mind", "brain", "head", "nous", "psyche"]}, {"answer": "psychiatric_hospital", "hint": "synonyms for psychiatric hospital", "clues": ["mental institution", "mental home", "mental hospital", "institution", "insane asylum", "asylum", "psychiatric hospital"]}, {"answer": "pteroylglutamic_acid", "hint": "synonyms for pteroylglutamic acid", "clues": ["folate", "vitamin M", "folacin", "folic acid", "pteroylmonoglutamic acid", "vitamin Bc"]}, {"answer": "pteroylmonoglutamic_acid", "hint": "synonyms for pteroylmonoglutamic acid", "clues": ["folate", "folacin", "pteroylglutamic acid", "folic acid", "vitamin M", "vitamin Bc"]}, {"answer": "pub", "hint": "synonyms for pub", "clues": ["gin mill", "pothouse", "taphouse", "saloon", "public house", "pub"]}, {"answer": "public_convenience", "hint": "synonyms for public convenience", "clues": ["convenience", "public toilet", "comfort station", "wash room", "toilet facility", "public lavatory", "restroom", "public convenience"]}, {"answer": "public_house", "hint": "synonyms for public house", "clues": ["gin mill", "pothouse", "taphouse", "saloon", "pub", "public house"]}, {"answer": "public_lavatory", "hint": "synonyms for public lavatory", "clues": ["convenience", "public toilet", "public convenience", "comfort station", "wash room", "toilet facility", "restroom", "public lavatory"]}, {"answer": "public_mover", "hint": "synonyms for public mover", "clues": ["removal firm", "moving company", "removal company", "mover", "public mover"]}, {"answer": "public_toilet", "hint": "synonyms for public toilet", "clues": ["convenience", "public convenience", "comfort station", "wash room", "toilet facility", "public lavatory", "restroom", "public toilet"]}, {"answer": "puffiness", "hint": "synonyms for puffiness", "clues": ["ostentation", "pompousness", "pomposity", "inflation", "splashiness", "ostentatiousness", "pretentiousness", "puffiness"]}, {"answer": "puking", "hint": "synonyms for puking", "clues": ["disgorgement", "regurgitation", "emesis", "vomit", "puking"]}, {"answer": "pull", "hint": "synonyms for pull", "clues": ["pulling", "puff", "drag", "clout"]}, {"answer": "pull-off", "hint": "synonyms for pull-off", "clues": ["rest stop", "lay-by", "rest area", "pull-off"]}, {"answer": "pulling_out", "hint": "synonyms for pulling out", "clues": ["withdrawal method", "withdrawal", "coitus interruptus", "onanism", "pulling out"]}, {"answer": "pulpit", "hint": "synonyms for pulpit", "clues": ["rostrum", "podium", "soapbox", "ambo", "stump", "dais", "pulpit"]}, {"answer": "pulsation", "hint": "synonyms for pulsation", "clues": ["pulse", "impulse", "heartbeat", "pulsing", "beat", "pulsation"]}, {"answer": "pulse", "hint": "synonyms for pulse", "clues": ["impulse", "heartbeat", "pulsing", "pulsation", "beat", "heart rate", "pulse rate", "pulse"]}, {"answer": "pulverisation", "hint": "synonyms for pulverisation", "clues": ["mill", "powder", "pulverization", "grind"]}, {"answer": "pulverization", "hint": "synonyms for pulverization", "clues": ["mill", "powder", "grind", "pulverisation"]}, {"answer": "punch", "hint": "synonyms for punch", "clues": ["slug", "lick", "clout", "poke", "biff", "puncher", "punch"]}, {"answer": "puniness", "hint": "synonyms for puniness", "clues": ["stuntedness", "slightness", "runtiness", "pettiness", "triviality", "puniness"]}, {"answer": "punks", "hint": "synonyms for punks", "clues": ["tinder", "kindling", "spunk", "punk rock", "touchwood", "punks"]}, {"answer": "purgation", "hint": "synonyms for purgation", "clues": ["purification", "purging", "catharsis", "purge", "purgation"]}, {"answer": "purpose", "hint": "synonyms for purpose", "clues": ["use", "intention", "aim", "function", "determination", "intent", "role", "design", "purpose"]}, {"answer": "pursuit", "hint": "synonyms for pursuit", "clues": ["avocation", "chase", "following", "pursuance", "quest", "by-line", "sideline", "pursual", "hobby", "spare-time activity", "pastime", "interest", "pursuit"]}, {"answer": "push", "hint": "synonyms for push", "clues": ["button", "pushing", "push button", "thrust", "get-up-and-go", "energy"]}, {"answer": "pushchair", "hint": "synonyms for pushchair", "clues": ["pusher", "stroller", "carriage", "baby carriage", "pram", "perambulator", "go-cart", "baby buggy", "pushchair"]}, {"answer": "pusher", "hint": "synonyms for pusher", "clues": ["carriage", "perambulator", "baby carriage", "pram", "zori", "stroller", "go-cart", "pushchair", "baby buggy", "pusher"]}, {"answer": "pushover", "hint": "synonyms for pushover", "clues": ["picnic", "snap", "cinch", "child's play", "piece of cake", "duck soup", "breeze", "walkover", "pushover"]}, {"answer": "put-on", "hint": "synonyms for put-on", "clues": ["joke", "burlesque", "travesty", "dupery", "trick", "prank", "humbug", "mockery", "charade", "pasquinade", "parody", "takeoff", "caper", "lampoon", "spoof", "antic", "fraud", "fraudulence", "sendup", "hoax", "put-on"]}, {"answer": "putrefaction", "hint": "synonyms for putrefaction", "clues": ["depravation", "depravity", "decomposition", "rotting", "rot", "degeneracy", "corruption", "putrefaction"]}, {"answer": "puzzlement", "hint": "synonyms for puzzlement", "clues": ["mystification", "befuddlement", "bemusement", "bewilderment", "bafflement", "obfuscation", "puzzlement"]}, {"answer": "pyridoxal", "hint": "synonyms for pyridoxal", "clues": ["pyridoxamine", "adermin", "vitamin B6", "pyridoxal"]}, {"answer": "pyridoxamine", "hint": "synonyms for pyridoxamine", "clues": ["adermin", "pyridoxal", "vitamin B6", "pyridoxine"]}, {"answer": "pyridoxine", "hint": "synonyms for pyridoxine", "clues": ["pyridoxamine", "adermin", "pyridoxal", "vitamin B6"]}, {"answer": "quadruplet", "hint": "synonyms for quadruplet", "clues": ["quadruple", "quaternary", "four", "quatern", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome"]}, {"answer": "quag", "hint": "synonyms for quag", "clues": ["quagmire", "slack", "morass", "mire", "quag"]}, {"answer": "quagmire", "hint": "synonyms for quagmire", "clues": ["slack", "quag", "morass", "mire", "quagmire"]}, {"answer": "qualifying", "hint": "synonyms for qualifying", "clues": ["passing", "modification", "limiting", "qualifying"]}, {"answer": "quarrel", "hint": "synonyms for quarrel", "clues": ["wrangle", "row", "words", "run-in", "dustup", "quarrel"]}, {"answer": "quarter", "hint": "synonyms for quarter", "clues": ["fourth", "one-fourth", "fourth part", "after part", "tail", "one-quarter", "quartern", "poop", "twenty-five percent", "stern"]}, {"answer": "quartern", "hint": "synonyms for quartern", "clues": ["fourth", "one-fourth", "fourth part", "quarter", "twenty-five percent", "one-quarter"]}, {"answer": "quarters", "hint": "synonyms for quarters", "clues": ["fourth", "one-fourth", "fourth part", "after part", "tail", "one-quarter", "quartern", "living quarters", "poop", "twenty-five percent", "stern"]}, {"answer": "quartet", "hint": "synonyms for quartet", "clues": ["quadruple", "quaternary", "four", "quatern", "tetrad", "quaternity", "4", "quartette", "quaternion", "foursome"]}, {"answer": "quartz", "hint": "synonyms for quartz", "clues": ["quartz glass", "lechatelierite", "crystal", "vitreous silica", "quartz"]}, {"answer": "quartz_glass", "hint": "synonyms for quartz glass", "clues": ["lechatelierite", "quartz", "crystal", "vitreous silica", "quartz glass"]}, {"answer": "quatern", "hint": "synonyms for quatern", "clues": ["quaternary", "four", "quadruplet", "tetrad", "quartet", "quaternity", "4", "quaternion", "foursome", "quatern"]}, {"answer": "quaternion", "hint": "synonyms for quaternion", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "quaternity", "4", "foursome", "quaternion"]}, {"answer": "quaternity", "hint": "synonyms for quaternity", "clues": ["quaternary", "four", "quadruplet", "quatern", "tetrad", "quartet", "4", "quaternion", "foursome", "quaternity"]}, {"answer": "queerness", "hint": "synonyms for queerness", "clues": ["oddity", "homosexualism", "homosexuality", "quirkiness", "crotchet", "homoeroticism", "gayness", "quirk", "queerness"]}, {"answer": "query", "hint": "synonyms for query", "clues": ["interrogation", "inquiry", "question", "query"]}, {"answer": "question", "hint": "synonyms for question", "clues": ["interrogation", "inquiry", "doubtfulness", "doubt", "motion", "head", "dubiousness", "interrogative", "query", "interrogative sentence", "question"]}, {"answer": "quicklime", "hint": "synonyms for quicklime", "clues": ["calx", "unslaked lime", "calcium oxide", "lime", "calcined lime", "burnt lime", "fluxing lime", "quicklime"]}, {"answer": "quickness", "hint": "synonyms for quickness", "clues": ["adroitness", "rapidity", "facility", "mental quickness", "celerity", "rapidness", "adeptness", "quick-wittedness", "speediness", "deftness", "quickness"]}, {"answer": "quid", "hint": "synonyms for quid", "clues": ["pound", "pound sterling", "cud", "wad", "quid pro quo", "plug", "chew", "chaw", "quid"]}, {"answer": "quietness", "hint": "synonyms for quietness", "clues": ["quietude", "soundlessness", "tranquillity", "quietness"]}, {"answer": "quint", "hint": "synonyms for quint", "clues": ["quintet", "cinque", "pentad", "fin", "quintuplet", "5", "five", "fivesome", "quint"]}, {"answer": "quintal", "hint": "synonyms for quintal", "clues": ["centner", "short hundredweight", "hundredweight", "cental", "cwt", "quintal"]}, {"answer": "quintet", "hint": "synonyms for quintet", "clues": ["quint", "quintette", "cinque", "pentad", "fin", "quintuple", "5", "five", "fivesome"]}, {"answer": "quintuplet", "hint": "synonyms for quintuplet", "clues": ["quint", "quintet", "cinque", "pentad", "fin", "quintuple", "5", "five", "fivesome"]}, {"answer": "quip", "hint": "synonyms for quip", "clues": ["wisecrack", "sally", "crack", "epigram", "quip"]}, {"answer": "quirk", "hint": "synonyms for quirk", "clues": ["queerness", "quirkiness", "crotchet", "oddity", "quirk"]}, {"answer": "quirkiness", "hint": "synonyms for quirkiness", "clues": ["queerness", "crotchet", "oddity", "quirk", "quirkiness"]}, {"answer": "quite_a_little", "hint": "synonyms for quite a little", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "quite a little"]}, {"answer": "quiver", "hint": "synonyms for quiver", "clues": ["frisson", "quivering", "shiver", "vibration", "thrill", "shudder", "tingle", "chill"]}, {"answer": "quotation", "hint": "synonyms for quotation", "clues": ["citation", "reference", "mention", "quote", "cite", "credit", "acknowledgment", "quotation"]}, {"answer": "quote", "hint": "synonyms for quote", "clues": ["citation", "quotation", "quotation mark", "inverted comma", "quote"]}, {"answer": "r", "hint": "synonyms for r", "clues": ["radius", "roentgen", "universal gas constant", "gas constant", "r"]}, {"answer": "r-2", "hint": "synonyms for r-2", "clues": ["roofy", "rope", "roach", "forget me drug", "circle", "rophy", "r-2"]}, {"answer": "ra", "hint": "synonyms for ra", "clues": ["celestial longitude", "atomic number 88", "right ascension", "radium", "ra"]}, {"answer": "rabble", "hint": "synonyms for rabble", "clues": ["rout", "ragtag", "riffraff", "ragtag and bobtail", "mob", "rabble"]}, {"answer": "race", "hint": "synonyms for race", "clues": ["slipstream", "airstream", "raceway", "wash", "backwash", "subspecies", "race"]}, {"answer": "raceway", "hint": "synonyms for raceway", "clues": ["racetrack", "race", "track", "racecourse", "raceway"]}, {"answer": "raciness", "hint": "synonyms for raciness", "clues": ["ribaldry", "bite", "spiciness", "gaminess", "sharpness", "pungency", "raciness"]}, {"answer": "rack", "hint": "synonyms for rack", "clues": ["single-foot", "stand", "wrack", "wheel"]}, {"answer": "racket", "hint": "synonyms for racket", "clues": ["racquet", "fraudulent scheme", "illegitimate enterprise", "noise", "dissonance", "racket"]}, {"answer": "radiance", "hint": "synonyms for radiance", "clues": ["effulgence", "radiancy", "shine", "glowing", "refulgency"]}, {"answer": "radiancy", "hint": "synonyms for radiancy", "clues": ["effulgence", "shine", "refulgency", "radiance"]}, {"answer": "radiation", "hint": "synonyms for radiation", "clues": ["radioactivity", "irradiation", "actinotherapy", "radiation therapy", "radiotherapy"]}, {"answer": "radiation_therapy", "hint": "synonyms for radiation therapy", "clues": ["radiotherapy", "irradiation", "actinotherapy", "radiation therapy"]}, {"answer": "radio_receiver", "hint": "synonyms for radio receiver", "clues": ["radio", "wireless", "radio set", "tuner", "receiving set", "radio receiver"]}, {"answer": "radio_set", "hint": "synonyms for radio set", "clues": ["radio", "wireless", "tuner", "receiving set", "radio receiver", "radio set"]}, {"answer": "radiogram", "hint": "synonyms for radiogram", "clues": ["skiagraph", "shadowgraph", "skiagram", "radiograph", "radiogram"]}, {"answer": "radiograph", "hint": "synonyms for radiograph", "clues": ["radiogram", "skiagraph", "shadowgraph", "skiagram", "radiograph"]}, {"answer": "radiotherapy", "hint": "synonyms for radiotherapy", "clues": ["radiation therapy", "irradiation", "actinotherapy", "radiotherapy"]}, {"answer": "raft", "hint": "synonyms for raft", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "raft"]}, {"answer": "rafts", "hint": "synonyms for rafts", "clues": ["good deal", "lots", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "wad", "mass", "mess", "passel", "great deal", "piles", "plenty", "mountain", "tidy sum", "dozens", "lashings", "pot", "tons", "gobs", "raft", "spate", "hatful", "scads", "sight", "mickle", "stack", "muckle", "batch", "flock", "scores"]}, {"answer": "rag", "hint": "synonyms for rag", "clues": ["ragtime", "shred", "tag end", "tabloid", "tatter", "rag week", "tag", "sheet", "rag"]}, {"answer": "rag_trade", "hint": "synonyms for rag trade", "clues": ["fashion industry", "apparel industry", "fashion business", "garment industry", "rag trade"]}, {"answer": "ragbag", "hint": "synonyms for ragbag", "clues": ["oddments", "hodgepodge", "melange", "gallimaufry", "hotchpotch", "mingle-mangle", "farrago", "odds and ends", "omnium-gatherum", "mishmash", "ragbag"]}, {"answer": "rage", "hint": "synonyms for rage", "clues": ["fury", "furor", "fad", "craze", "cult", "madness", "rage"]}, {"answer": "rail", "hint": "synonyms for rail", "clues": ["railing", "rails", "runway", "track"]}, {"answer": "railroad", "hint": "synonyms for railroad", "clues": ["railway line", "railway", "railroad track", "railroad line", "railway system", "railroad"]}, {"answer": "railroad_line", "hint": "synonyms for railroad line", "clues": ["railway line", "railway", "railroad", "railway system", "railroad line"]}, {"answer": "railroad_station", "hint": "synonyms for railroad station", "clues": ["train station", "railroad terminal", "train depot", "railway station", "railroad station"]}, {"answer": "railroad_terminal", "hint": "synonyms for railroad terminal", "clues": ["railroad station", "train station", "railway station", "train depot", "railroad terminal"]}, {"answer": "railway", "hint": "synonyms for railway", "clues": ["railway line", "railroad track", "railroad line", "railroad", "railway system", "railway"]}, {"answer": "railway_line", "hint": "synonyms for railway line", "clues": ["line", "railway", "railroad line", "rail line", "railroad", "railway system"]}, {"answer": "railway_station", "hint": "synonyms for railway station", "clues": ["railroad station", "train station", "railroad terminal", "train depot", "railway station"]}, {"answer": "railway_system", "hint": "synonyms for railway system", "clues": ["railroad line", "railway", "railway line", "railroad", "railway system"]}, {"answer": "rainfly", "hint": "synonyms for rainfly", "clues": ["fly sheet", "tent flap", "tent-fly", "fly", "rainfly"]}, {"answer": "raise", "hint": "synonyms for raise", "clues": ["salary increase", "wage hike", "upgrade", "hike", "wage increase", "rise", "climb", "heave", "ascent", "acclivity", "lift"]}, {"answer": "rallying_cry", "hint": "synonyms for rallying cry", "clues": ["watchword", "war cry", "battle cry", "cry", "war whoop", "rallying cry"]}, {"answer": "ram", "hint": "synonyms for ram", "clues": ["random-access memory", "read/write memory", "random memory", "ram"]}, {"answer": "ramification", "hint": "synonyms for ramification", "clues": ["branching", "complication", "leg", "fork", "ramification"]}, {"answer": "ramjet", "hint": "synonyms for ramjet", "clues": ["flying drainpipe", "athodyd", "ramjet engine", "atherodyde", "ramjet"]}, {"answer": "ramjet_engine", "hint": "synonyms for ramjet engine", "clues": ["flying drainpipe", "athodyd", "atherodyde", "ramjet", "ramjet engine"]}, {"answer": "rancor", "hint": "synonyms for rancor", "clues": ["gall", "rancour", "resentment", "bitterness"]}, {"answer": "rancour", "hint": "synonyms for rancour", "clues": ["gall", "rancor", "resentment", "bitterness"]}, {"answer": "random_variable", "hint": "synonyms for random variable", "clues": ["variant", "stochastic variable", "chance variable", "random variable"]}, {"answer": "randomness", "hint": "synonyms for randomness", "clues": ["haphazardness", "entropy", "stochasticity", "noise", "randomness"]}, {"answer": "range", "hint": "synonyms for range", "clues": ["image", "cooking stove", "stove", "mountain chain", "range of mountains", "scope", "compass", "chain", "reach", "range of a function", "orbit", "ambit", "grasp", "kitchen stove", "mountain range", "kitchen range", "chain of mountains", "range"]}, {"answer": "range_of_mountains", "hint": "synonyms for range of mountains", "clues": ["range", "mountain range", "mountain chain", "chain", "chain of mountains", "range of mountains"]}, {"answer": "rankness", "hint": "synonyms for rankness", "clues": ["malodorousness", "stinkiness", "fetidness", "prolificacy", "foulness", "fertility", "richness", "rankness"]}, {"answer": "rant", "hint": "synonyms for rant", "clues": ["ranting", "fustian", "bombast", "blah", "harangue", "claptrap"]}, {"answer": "rap", "hint": "synonyms for rap", "clues": ["belt", "rap music", "whang", "hip-hop", "whack", "pat", "knock", "tap", "blame", "strike", "rap"]}, {"answer": "rap_sheet", "hint": "synonyms for rap sheet", "clues": ["charge sheet", "police blotter", "blotter", "day book", "rap sheet"]}, {"answer": "rapaciousness", "hint": "synonyms for rapaciousness", "clues": ["voracity", "esurience", "greediness", "rapacity", "edacity", "voraciousness", "rapaciousness"]}, {"answer": "rapacity", "hint": "synonyms for rapacity", "clues": ["voracity", "esurience", "edacity", "voraciousness", "rapaciousness", "avaritia", "avarice", "greed", "covetousness", "rapacity"]}, {"answer": "rape", "hint": "synonyms for rape", "clues": ["assault", "violation", "ravishment", "rapine", "rape"]}, {"answer": "rapidity", "hint": "synonyms for rapidity", "clues": ["rapidness", "celerity", "quickness", "speediness", "rapidity"]}, {"answer": "rapidness", "hint": "synonyms for rapidness", "clues": ["speediness", "celerity", "quickness", "rapidity", "rapidness"]}, {"answer": "rare-earth_element", "hint": "synonyms for rare-earth element", "clues": ["lanthanoid", "lanthanon", "rare earth", "rare-earth element"]}, {"answer": "rare_earth", "hint": "synonyms for rare earth", "clues": ["lanthanoid", "lanthanon", "rare-earth element", "rare earth"]}, {"answer": "rarity", "hint": "synonyms for rarity", "clues": ["rareness", "oddity", "low density", "curio", "oddment", "infrequency", "curiosity", "tenuity", "peculiarity", "rarity"]}, {"answer": "ras", "hint": "synonyms for ras", "clues": ["celestial longitude", "atomic number 88", "right ascension", "radium", "ras"]}, {"answer": "rascality", "hint": "synonyms for rascality", "clues": ["mischievousness", "roguery", "deviltry", "prankishness", "mischief-making", "slipperiness", "shiftiness", "roguishness", "devilment", "shenanigan", "trickiness", "mischief", "rascality"]}, {"answer": "rashness", "hint": "synonyms for rashness", "clues": ["recklessness", "foolhardiness", "mindlessness", "heedlessness", "rashness"]}, {"answer": "raspberry", "hint": "synonyms for raspberry", "clues": ["hiss", "bird", "boo", "hoot", "razzing", "snort", "raspberry"]}, {"answer": "ratsbane", "hint": "synonyms for ratsbane", "clues": ["arsenic", "arsenous anhydride", "arsenic trioxide", "white arsenic", "arsenous oxide", "ratsbane"]}, {"answer": "raunch", "hint": "synonyms for raunch", "clues": ["vulgarity", "commonness", "vulgarism", "grossness", "coarseness", "raunch"]}, {"answer": "ravishment", "hint": "synonyms for ravishment", "clues": ["entrancement", "violation", "assault", "rape", "ravishment"]}, {"answer": "raw_sienna", "hint": "synonyms for raw sienna", "clues": ["caramel brown", "buff", "caramel", "yellowish brown", "raw sienna"]}, {"answer": "ray", "hint": "synonyms for ray", "clues": ["re", "irradiation", "beam", "shaft", "beam of light", "shaft of light", "ray of light", "light beam", "electron beam", "ray"]}, {"answer": "ray_of_light", "hint": "synonyms for ray of light", "clues": ["shaft of light", "irradiation", "light beam", "beam", "shaft", "beam of light", "ray", "ray of light"]}, {"answer": "rayon_stocking", "hint": "synonyms for rayon stocking", "clues": ["nylons", "rayons", "nylon stocking", "silk stocking"]}, {"answer": "rayons", "hint": "synonyms for rayons", "clues": ["nylons", "rayon stocking", "silk stocking", "rayon"]}, {"answer": "razing", "hint": "synonyms for razing", "clues": ["tearing down", "wrecking", "leveling", "demolishing", "razing"]}, {"answer": "razz", "hint": "synonyms for razz", "clues": ["hiss", "bird", "boo", "raspberry", "hoot", "razzing", "snort"]}, {"answer": "razzing", "hint": "synonyms for razzing", "clues": ["hiss", "bird", "boo", "raspberry", "hoot", "snort", "razz"]}, {"answer": "reach", "hint": "synonyms for reach", "clues": ["stretch", "scope", "compass", "reaching", "orbit", "range", "ambit", "grasp"]}, {"answer": "readiness", "hint": "synonyms for readiness", "clues": ["zeal", "facility", "eagerness", "set", "forwardness", "readiness"]}, {"answer": "reading", "hint": "synonyms for reading", "clues": ["recital", "indication", "recitation", "version", "meter reading", "reading material", "interpretation", "reading"]}, {"answer": "realisation", "hint": "synonyms for realisation", "clues": ["realization", "recognition", "actualisation", "fruition"]}, {"answer": "realization", "hint": "synonyms for realization", "clues": ["recognition", "actualisation", "fruition", "realisation"]}, {"answer": "reason", "hint": "synonyms for reason", "clues": ["ground", "intellect", "cause", "understanding", "reason"]}, {"answer": "reasonableness", "hint": "synonyms for reasonableness", "clues": ["modestness", "moderateness", "tenability", "tenableness", "reasonableness"]}, {"answer": "rebellion", "hint": "synonyms for rebellion", "clues": ["rising", "revolt", "insurrection", "rebellion"]}, {"answer": "rebirth", "hint": "synonyms for rebirth", "clues": ["renascence", "spiritual rebirth", "conversion", "reincarnation", "metempsychosis", "rebirth"]}, {"answer": "rebuke", "hint": "synonyms for rebuke", "clues": ["reproval", "reproof", "reprimand", "reprehension", "rebuke"]}, {"answer": "receipts", "hint": "synonyms for receipts", "clues": ["reception", "revenue", "receipt", "gross"]}, {"answer": "receiving_set", "hint": "synonyms for receiving set", "clues": ["radio", "wireless", "radio set", "tuner", "radio receiver", "receiving set"]}, {"answer": "recess", "hint": "synonyms for recess", "clues": ["break", "respite", "time out", "corner", "inlet", "niche", "recession", "recess"]}, {"answer": "recession", "hint": "synonyms for recession", "clues": ["ceding back", "corner", "receding", "recess", "niche", "recessional"]}, {"answer": "recital", "hint": "synonyms for recital", "clues": ["narration", "reading", "recitation", "yarn", "recital"]}, {"answer": "recitation", "hint": "synonyms for recitation", "clues": ["recital", "reading", "drill", "course session", "exercise", "practice session", "practice", "class period", "recitation"]}, {"answer": "reckoning", "hint": "synonyms for reckoning", "clues": ["counting", "calculation", "enumeration", "figuring", "tally", "computation", "reckoning"]}, {"answer": "recognition", "hint": "synonyms for recognition", "clues": ["realisation", "identification", "credit", "recognition"]}, {"answer": "recoil", "hint": "synonyms for recoil", "clues": ["kick", "repercussion", "backlash", "rebound", "recoil"]}, {"answer": "recollection", "hint": "synonyms for recollection", "clues": ["recall", "remembrance", "reminiscence", "anamnesis", "recollection"]}, {"answer": "reconditeness", "hint": "synonyms for reconditeness", "clues": ["abstrusity", "obscurity", "abstruseness", "obscureness", "profoundness", "profundity", "reconditeness"]}, {"answer": "record", "hint": "synonyms for record", "clues": ["platter", "criminal record", "phonograph record", "disc", "track record", "disk", "record book", "book", "record"]}, {"answer": "recorder", "hint": "synonyms for recorder", "clues": ["recording machine", "fipple flute", "vertical flute", "fipple pipe", "recording equipment", "recorder"]}, {"answer": "red_cent", "hint": "synonyms for red cent", "clues": ["shit", "shucks", "darn", "hoot", "tinker's damn", "damn", "red cent"]}, {"answer": "redolence", "hint": "synonyms for redolence", "clues": ["fragrance", "bouquet", "sweetness", "redolence"]}, {"answer": "redress", "hint": "synonyms for redress", "clues": ["remedy", "amends", "restitution", "damages", "indemnity", "remediation", "indemnification", "redress"]}, {"answer": "reduction", "hint": "synonyms for reduction", "clues": ["simplification", "decrease", "reducing", "diminution", "step-down", "reduction"]}, {"answer": "reefer", "hint": "synonyms for reefer", "clues": ["spliff", "marijuana cigarette", "stick", "joint", "reefer"]}, {"answer": "reek", "hint": "synonyms for reek", "clues": ["malodor", "stench", "mephitis", "foetor", "stink", "reek"]}, {"answer": "reexamination", "hint": "synonyms for reexamination", "clues": ["follow-up", "redirect examination", "review", "reexamination"]}, {"answer": "reference", "hint": "synonyms for reference", "clues": ["address", "book of facts", "character reference", "computer address", "character", "reference point", "acknowledgment", "mention", "cite", "reference work", "credit", "source", "citation", "extension", "consultation", "quotation", "denotation", "point of reference", "reference"]}, {"answer": "refinement", "hint": "synonyms for refinement", "clues": ["purification", "nuance", "shade", "civilization", "subtlety", "refining", "elaboration", "nicety", "refinement"]}, {"answer": "reflection", "hint": "synonyms for reflection", "clues": ["reflectivity", "musing", "reflexion", "mirror image", "observation", "expression", "contemplation", "rumination", "manifestation", "thoughtfulness", "reflection"]}, {"answer": "reflectivity", "hint": "synonyms for reflectivity", "clues": ["reflectiveness", "reflexion", "reflection", "coefficient of reflection", "reflection factor", "reflectance", "reflectivity"]}, {"answer": "reflex_action", "hint": "synonyms for reflex action", "clues": ["instinctive reflex", "inborn reflex", "reflex response", "physiological reaction", "reflex", "unconditioned reflex", "innate reflex", "reflex action"]}, {"answer": "reflex_response", "hint": "synonyms for reflex response", "clues": ["reflex action", "instinctive reflex", "inborn reflex", "physiological reaction", "reflex", "unconditioned reflex", "innate reflex", "reflex response"]}, {"answer": "reflexion", "hint": "synonyms for reflexion", "clues": ["reflectivity", "musing", "reflection", "mirror image", "observation", "expression", "contemplation", "rumination", "manifestation", "thoughtfulness", "reflexion"]}, {"answer": "refuge", "hint": "synonyms for refuge", "clues": ["sanctuary", "resort", "recourse", "safety", "asylum", "refuge"]}, {"answer": "refulgence", "hint": "synonyms for refulgence", "clues": ["effulgence", "shine", "radiancy", "refulgency"]}, {"answer": "refulgency", "hint": "synonyms for refulgency", "clues": ["effulgence", "shine", "radiancy", "refulgency"]}, {"answer": "refuse_heap", "hint": "synonyms for refuse heap", "clues": ["trash heap", "trash pile", "junk pile", "scrapheap", "junk heap", "garbage heap", "rubbish heap", "refuse heap"]}, {"answer": "refutal", "hint": "synonyms for refutal", "clues": ["disproof", "refutation", "falsifying", "falsification", "refutal"]}, {"answer": "refutation", "hint": "synonyms for refutation", "clues": ["defense", "disproof", "falsification", "refutal", "falsifying", "refutation"]}, {"answer": "regard", "hint": "synonyms for regard", "clues": ["respect", "paying attention", "heed", "attentiveness", "compliments", "wish", "gaze", "esteem", "regard"]}, {"answer": "regress", "hint": "synonyms for regress", "clues": ["reversion", "retrogression", "reasoning backward", "regress"]}, {"answer": "regression", "hint": "synonyms for regression", "clues": ["reversion", "statistical regression", "simple regression", "retrogression", "regress", "regression toward the mean"]}, {"answer": "regrets", "hint": "synonyms for regrets", "clues": ["ruefulness", "rue", "regret", "declination", "sorrow"]}, {"answer": "regurgitation", "hint": "synonyms for regurgitation", "clues": ["disgorgement", "emesis", "vomit", "puking", "regurgitation"]}, {"answer": "reinforcement", "hint": "synonyms for reinforcement", "clues": ["support", "reinforcer", "strengthener", "reward", "reenforcement", "reinforcing stimulus"]}, {"answer": "rejoinder", "hint": "synonyms for rejoinder", "clues": ["retort", "counter", "comeback", "replication", "return", "riposte", "rejoinder"]}, {"answer": "relapse", "hint": "synonyms for relapse", "clues": ["lapse", "reversion", "reverting", "backsliding", "lapsing", "relapse"]}, {"answer": "relapsing", "hint": "synonyms for relapsing", "clues": ["lapse", "reversion", "reverting", "backsliding", "lapsing", "relapse"]}, {"answer": "relation", "hint": "synonyms for relation", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "telling", "recounting", "relation back", "relation"]}, {"answer": "relations", "hint": "synonyms for relations", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "dealings", "copulation", "sexual congress", "intercourse", "sexual relation", "telling", "recounting", "relation back", "relation"]}, {"answer": "relaxation", "hint": "synonyms for relaxation", "clues": ["ease", "relaxation behavior", "loosening", "liberalization", "slackening", "relaxation method", "repose", "easiness", "rest", "relaxation"]}, {"answer": "relay_link", "hint": "synonyms for relay link", "clues": ["booster amplifier", "relay transmitter", "booster station", "booster", "relay station", "relay link"]}, {"answer": "relay_station", "hint": "synonyms for relay station", "clues": ["booster amplifier", "relay transmitter", "booster station", "booster", "relay link", "relay station"]}, {"answer": "relay_transmitter", "hint": "synonyms for relay transmitter", "clues": ["booster amplifier", "booster station", "booster", "relay station", "relay link", "relay transmitter"]}, {"answer": "release", "hint": "synonyms for release", "clues": ["outlet", "freeing", "departure", "sacking", "handout", "discharge", "going", "acquittance", "vent", "press release", "liberation", "spill", "waiver", "tone ending", "spillage", "dismissal", "passing", "expiration", "firing", "exit", "dismission", "loss", "button", "release"]}, {"answer": "relief", "hint": "synonyms for relief", "clues": ["relievo", "easement", "moderation", "sculptural relief", "alleviation", "assuagement", "rest period", "succor", "embossment", "easing", "respite", "rest", "ministration", "relief"]}, {"answer": "relief_valve", "hint": "synonyms for relief valve", "clues": ["escape", "safety valve", "escape valve", "escape cock", "relief valve"]}, {"answer": "relievo", "hint": "synonyms for relievo", "clues": ["sculptural relief", "relief", "embossment", "rilievo"]}, {"answer": "relish", "hint": "synonyms for relish", "clues": ["flavour", "sapidity", "savor", "zestfulness", "smack", "nip", "zest", "gusto", "tang", "relish"]}, {"answer": "relishing", "hint": "synonyms for relishing", "clues": ["tasting", "savouring", "degustation", "relishing"]}, {"answer": "reluctance", "hint": "synonyms for reluctance", "clues": ["disinclination", "hesitation", "hesitancy", "indisposition", "reluctance"]}, {"answer": "remainder", "hint": "synonyms for remainder", "clues": ["residuum", "difference", "residual", "oddment", "end", "residue", "balance", "remnant", "rest", "remainder"]}, {"answer": "remedy", "hint": "synonyms for remedy", "clues": ["curative", "redress", "therapeutic", "remediation", "cure", "remedy"]}, {"answer": "remembrance", "hint": "synonyms for remembrance", "clues": ["commemoration", "memorial", "recollection", "anamnesis", "remembrance"]}, {"answer": "remission", "hint": "synonyms for remission", "clues": ["remitment", "remittance", "remission of sin", "remit", "remittal", "absolution", "subsidence", "remission"]}, {"answer": "remitment", "hint": "synonyms for remitment", "clues": ["remittance", "remission", "remit", "remittal", "remitment"]}, {"answer": "remittal", "hint": "synonyms for remittal", "clues": ["remitment", "remittance", "remission", "remission of sin", "absolution", "subsidence", "remittal"]}, {"answer": "remnant", "hint": "synonyms for remnant", "clues": ["end", "oddment", "leftover", "remainder", "remnant"]}, {"answer": "remoteness", "hint": "synonyms for remoteness", "clues": ["farness", "farawayness", "aloofness", "standoffishness", "withdrawnness", "remoteness"]}, {"answer": "removal_company", "hint": "synonyms for removal company", "clues": ["moving company", "removal firm", "public mover", "mover", "removal company"]}, {"answer": "removal_firm", "hint": "synonyms for removal firm", "clues": ["moving company", "removal company", "public mover", "mover", "removal firm"]}, {"answer": "remuneration", "hint": "synonyms for remuneration", "clues": ["salary", "earnings", "pay", "wage", "remuneration"]}, {"answer": "rendering", "hint": "synonyms for rendering", "clues": ["interlingual rendition", "rendition", "version", "translation", "interpreting", "interpretation", "rendering"]}, {"answer": "renewal", "hint": "synonyms for renewal", "clues": ["replacement", "replenishment", "reclamation", "rehabilitation", "refilling", "renewal"]}, {"answer": "rent", "hint": "synonyms for rent", "clues": ["tear", "economic rent", "snag", "rip", "split", "rent"]}, {"answer": "rent-a-car", "hint": "synonyms for rent-a-car", "clues": ["u-drive", "self-drive", "hire car", "car rental", "rent-a-car"]}, {"answer": "renunciation", "hint": "synonyms for renunciation", "clues": ["forgoing", "renouncement", "forswearing", "repudiation", "renunciation"]}, {"answer": "repair", "hint": "synonyms for repair", "clues": ["fixture", "mend", "hangout", "resort", "fixing", "haunt", "stamping ground", "reparation", "repair"]}, {"answer": "reparation", "hint": "synonyms for reparation", "clues": ["amends", "fixture", "fix", "mending", "repair", "reparation"]}, {"answer": "repercussion", "hint": "synonyms for repercussion", "clues": ["rebound", "reverberation", "recoil", "backlash", "repercussion"]}, {"answer": "replacement", "hint": "synonyms for replacement", "clues": ["replenishment", "replacing", "switch", "substitute", "renewal", "transposition", "permutation", "substitution", "refilling", "replacement"]}, {"answer": "replication", "hint": "synonyms for replication", "clues": ["counter", "sound reflection", "reverberation", "riposte", "retort", "comeback", "return", "replica", "rejoinder", "reproduction", "echo", "replication"]}, {"answer": "report", "hint": "synonyms for report", "clues": ["story", "news report", "reputation", "written report", "account", "study", "write up", "report card", "theme", "paper", "composition", "report"]}, {"answer": "repose", "hint": "synonyms for repose", "clues": ["ataraxis", "relaxation", "ease", "peace of mind", "quiet", "serenity", "tranquillity", "peacefulness", "placidity", "peace", "heartsease", "rest", "repose"]}, {"answer": "reprehension", "hint": "synonyms for reprehension", "clues": ["reproof", "reprimand", "rebuke", "reproval", "reprehension"]}, {"answer": "representation", "hint": "synonyms for representation", "clues": ["theatrical performance", "internal representation", "theatrical", "histrionics", "representation"]}, {"answer": "reprieve", "hint": "synonyms for reprieve", "clues": ["abatement", "hiatus", "suspension", "respite", "reprieve"]}, {"answer": "reprimand", "hint": "synonyms for reprimand", "clues": ["reproval", "reproof", "rebuke", "reprehension", "reprimand"]}, {"answer": "reprint", "hint": "synonyms for reprint", "clues": ["reissue", "reprinting", "offprint", "separate"]}, {"answer": "reproduction", "hint": "synonyms for reproduction", "clues": ["procreation", "breeding", "replication", "replica", "facts of life", "reproductive memory", "reproduction"]}, {"answer": "reproof", "hint": "synonyms for reproof", "clues": ["reproval", "reprimand", "rebuke", "reprehension", "reproof"]}, {"answer": "reproval", "hint": "synonyms for reproval", "clues": ["reproof", "reprimand", "rebuke", "reprehension", "reproval"]}, {"answer": "repugnance", "hint": "synonyms for repugnance", "clues": ["horror", "mutual exclusiveness", "incompatibility", "revulsion", "inconsistency", "repugnance"]}, {"answer": "repulsion", "hint": "synonyms for repulsion", "clues": ["repugnance", "repulsive force", "standoff", "revulsion", "horror"]}, {"answer": "repulsiveness", "hint": "synonyms for repulsiveness", "clues": ["sliminess", "lousiness", "loathsomeness", "wickedness", "vileness", "repulsiveness"]}, {"answer": "requiem", "hint": "synonyms for requiem", "clues": ["lament", "coronach", "dirge", "threnody", "requiem"]}, {"answer": "requirement", "hint": "synonyms for requirement", "clues": ["necessary", "requisite", "essential", "necessity", "demand", "requirement"]}, {"answer": "res", "hint": "synonyms for res", "clues": ["re", "rhenium", "ray", "atomic number 75"]}, {"answer": "res_publica", "hint": "synonyms for res publica", "clues": ["commonwealth", "country", "state", "nation", "land", "body politic", "res publica"]}, {"answer": "rescript", "hint": "synonyms for rescript", "clues": ["fiat", "revise", "order", "revision", "revisal", "rewrite", "edict", "decree", "rescript"]}, {"answer": "research_lab", "hint": "synonyms for research lab", "clues": ["science lab", "lab", "research laboratory", "laboratory", "science laboratory", "research lab"]}, {"answer": "research_laboratory", "hint": "synonyms for research laboratory", "clues": ["science lab", "lab", "research lab", "laboratory", "science laboratory", "research laboratory"]}, {"answer": "resentment", "hint": "synonyms for resentment", "clues": ["gall", "rancor", "bitterness", "resentment"]}, {"answer": "reservation", "hint": "synonyms for reservation", "clues": ["arriere pensee", "mental reservation", "qualification", "reserve", "booking", "reservation"]}, {"answer": "reserve", "hint": "synonyms for reserve", "clues": ["reticence", "backlog", "stockpile", "modesty", "military reserve", "taciturnity", "reservation", "reserve"]}, {"answer": "reserves", "hint": "synonyms for reserves", "clues": ["modesty", "reserve", "military reserve", "militia", "reticence", "backlog", "stockpile", "taciturnity", "reservation"]}, {"answer": "residence", "hint": "synonyms for residence", "clues": ["mansion", "residency", "abode", "abidance", "hall", "mansion house", "manse"]}, {"answer": "residence_hall", "hint": "synonyms for residence hall", "clues": ["hall", "student residence", "dorm", "dormitory", "residence hall"]}, {"answer": "residue", "hint": "synonyms for residue", "clues": ["residuum", "balance", "residual", "remainder", "rest", "residue"]}, {"answer": "residuum", "hint": "synonyms for residuum", "clues": ["residue", "balance", "residual", "remainder", "rest", "residuum"]}, {"answer": "resistance", "hint": "synonyms for resistance", "clues": ["resistor", "underground", "opposition", "electrical resistance", "impedance", "ohmic resistance", "resistivity", "resistance"]}, {"answer": "resistivity", "hint": "synonyms for resistivity", "clues": ["electrical resistance", "resistance", "ohmic resistance", "impedance", "resistivity"]}, {"answer": "resoluteness", "hint": "synonyms for resoluteness", "clues": ["resolution", "firmness of purpose", "resolve", "firmness", "resoluteness"]}, {"answer": "resolution", "hint": "synonyms for resolution", "clues": ["solution", "solving", "settlement", "solvent", "answer", "resolve", "resoluteness", "closure", "firmness", "result", "declaration", "resolving power", "firmness of purpose"]}, {"answer": "resolve", "hint": "synonyms for resolve", "clues": ["resolution", "firmness", "declaration", "resoluteness", "firmness of purpose", "resolve"]}, {"answer": "resolvent", "hint": "synonyms for resolvent", "clues": ["dissolver", "solvent", "dissolving agent", "dissolvent"]}, {"answer": "resonance", "hint": "synonyms for resonance", "clues": ["reverberance", "vibrancy", "ringing", "rapport", "plangency", "sonority", "sonorousness", "resonance"]}, {"answer": "resort", "hint": "synonyms for resort", "clues": ["holiday resort", "refuge", "hangout", "recourse", "haunt", "stamping ground", "repair", "resort hotel", "resort"]}, {"answer": "respect", "hint": "synonyms for respect", "clues": ["regard", "respectfulness", "esteem", "deference", "obedience", "respect"]}, {"answer": "respects", "hint": "synonyms for respects", "clues": ["regard", "respect", "respectfulness", "esteem", "deference", "obedience"]}, {"answer": "respiration", "hint": "synonyms for respiration", "clues": ["external respiration", "ventilation", "breathing", "cellular respiration", "respiration"]}, {"answer": "respite", "hint": "synonyms for respite", "clues": ["break", "abatement", "relief", "recess", "suspension", "rest period", "time out", "hiatus", "reprieve", "rest", "respite"]}, {"answer": "response", "hint": "synonyms for response", "clues": ["reaction", "reception", "reply", "answer", "response"]}, {"answer": "rest", "hint": "synonyms for rest", "clues": ["relaxation", "ease", "residuum", "relief", "residual", "rest period", "residue", "balance", "repose", "remainder", "respite", "rest"]}, {"answer": "rest_area", "hint": "synonyms for rest area", "clues": ["rest stop", "lay-by", "pull-off", "rest area"]}, {"answer": "rest_stop", "hint": "synonyms for rest stop", "clues": ["lay-by", "pull-off", "rest area", "rest stop"]}, {"answer": "restitution", "hint": "synonyms for restitution", "clues": ["amends", "regaining", "return", "redress", "restoration", "damages", "indemnity", "indemnification", "restitution"]}, {"answer": "restiveness", "hint": "synonyms for restiveness", "clues": ["jumpiness", "nervousness", "jitteriness", "skittishness", "restiveness"]}, {"answer": "restlessness", "hint": "synonyms for restlessness", "clues": ["fidgetiness", "queasiness", "fidget", "restlessness"]}, {"answer": "restraint", "hint": "synonyms for restraint", "clues": ["control", "constraint", "chasteness", "simplicity", "simpleness", "restraint"]}, {"answer": "restroom", "hint": "synonyms for restroom", "clues": ["convenience", "public toilet", "public convenience", "comfort station", "toilet facility", "public lavatory", "wash room", "restroom"]}, {"answer": "result", "hint": "synonyms for result", "clues": ["solution", "event", "solvent", "resultant", "consequence", "effect", "answer", "resultant role", "issue", "termination", "upshot", "final result", "outcome", "result"]}, {"answer": "resurgence", "hint": "synonyms for resurgence", "clues": ["revivification", "revitalization", "revival", "resurgence"]}, {"answer": "retardation", "hint": "synonyms for retardation", "clues": ["slowdown", "retardent", "slowness", "lag", "slowing", "mental retardation", "deceleration", "backwardness", "subnormality", "retardation"]}, {"answer": "retention", "hint": "synonyms for retention", "clues": ["memory", "retentivity", "retentiveness", "holding", "keeping", "retention"]}, {"answer": "retirement_account", "hint": "synonyms for retirement account", "clues": ["retirement savings plan", "retirement program", "retirement plan", "pension account", "pension plan", "retirement account"]}, {"answer": "retirement_benefit", "hint": "synonyms for retirement benefit", "clues": ["retirement check", "old-age pension", "superannuation", "retirement pension", "retirement fund", "retirement benefit"]}, {"answer": "retirement_check", "hint": "synonyms for retirement check", "clues": ["old-age pension", "retirement benefit", "superannuation", "retirement pension", "retirement fund", "retirement check"]}, {"answer": "retirement_fund", "hint": "synonyms for retirement fund", "clues": ["retirement check", "old-age pension", "retirement benefit", "superannuation", "retirement pension", "retirement fund"]}, {"answer": "retirement_pension", "hint": "synonyms for retirement pension", "clues": ["retirement check", "old-age pension", "retirement benefit", "superannuation", "retirement fund", "retirement pension"]}, {"answer": "retirement_plan", "hint": "synonyms for retirement plan", "clues": ["retirement savings plan", "retirement program", "retirement account", "pension account", "pension plan", "retirement plan"]}, {"answer": "retirement_program", "hint": "synonyms for retirement program", "clues": ["retirement savings plan", "retirement account", "retirement plan", "pension account", "pension plan", "retirement program"]}, {"answer": "retirement_savings_account", "hint": "synonyms for retirement savings account", "clues": ["retirement savings plan", "retirement program", "retirement account", "retirement plan", "pension account", "pension plan"]}, {"answer": "retirement_savings_plan", "hint": "synonyms for retirement savings plan", "clues": ["retirement program", "retirement account", "retirement plan", "retirement savings account", "pension account", "pension plan"]}, {"answer": "retort", "hint": "synonyms for retort", "clues": ["counter", "return", "replication", "comeback", "rejoinder", "riposte", "retort"]}, {"answer": "retrogression", "hint": "synonyms for retrogression", "clues": ["reversion", "regression", "regress", "degeneration"]}, {"answer": "return", "hint": "synonyms for return", "clues": ["counter", "income tax return", "getting even", "reappearance", "homecoming", "coming back", "issue", "riposte", "comeback", "tax return", "restoration", "rejoinder", "paying back", "yield", "takings", "replication", "regaining", "take", "recurrence", "retort", "restitution", "proceeds", "payoff", "return key", "return"]}, {"answer": "revenue", "hint": "synonyms for revenue", "clues": ["taxation", "receipts", "tax revenue", "tax income", "gross", "revenue"]}, {"answer": "reverberance", "hint": "synonyms for reverberance", "clues": ["resonance", "vibrancy", "ringing", "plangency", "sonority", "sonorousness", "reverberance"]}, {"answer": "reverberation", "hint": "synonyms for reverberation", "clues": ["sound reflection", "echo", "replication", "repercussion", "reverberation"]}, {"answer": "reverie", "hint": "synonyms for reverie", "clues": ["castle in the air", "revery", "oneirism", "daydreaming", "air castle", "castle in Spain", "reverie"]}, {"answer": "reversal", "hint": "synonyms for reversal", "clues": ["volte-face", "change of mind", "turn around", "setback", "transposition", "about-face", "reverse", "reversion", "flip-flop", "turnabout", "policy change", "black eye", "blow", "reversal"]}, {"answer": "reversion", "hint": "synonyms for reversion", "clues": ["lapse", "reversal", "retrogression", "retroversion", "regress", "lapsing", "reverse", "atavism", "relapse", "reverting", "throwback", "turnabout", "backsliding", "turnaround"]}, {"answer": "revery", "hint": "synonyms for revery", "clues": ["castle in the air", "oneirism", "air castle", "castle in Spain", "reverie", "daydreaming", "revery"]}, {"answer": "review", "hint": "synonyms for review", "clues": ["revue", "inspection", "critical review", "follow-up", "limited review", "critique", "reassessment", "recap", "brushup", "reexamination", "reappraisal", "recapitulation", "review article", "revaluation", "review"]}, {"answer": "revilement", "hint": "synonyms for revilement", "clues": ["vilification", "abuse", "contumely", "insult", "revilement"]}, {"answer": "revision", "hint": "synonyms for revision", "clues": ["revise", "alteration", "revisal", "rescript", "rewrite", "revision"]}, {"answer": "revitalisation", "hint": "synonyms for revitalisation", "clues": ["revivification", "resurgence", "revival", "revitalization"]}, {"answer": "revitalization", "hint": "synonyms for revitalization", "clues": ["revivification", "resurgence", "revival", "revitalisation"]}, {"answer": "revival", "hint": "synonyms for revival", "clues": ["revivification", "revitalisation", "revival meeting", "resurgence", "revival"]}, {"answer": "revivification", "hint": "synonyms for revivification", "clues": ["revival", "resurgence", "revitalization", "revivification"]}, {"answer": "revolt", "hint": "synonyms for revolt", "clues": ["rising", "rebellion", "insurrection", "revolt"]}, {"answer": "reward", "hint": "synonyms for reward", "clues": ["payoff", "wages", "advantage", "reinforcement", "reward"]}, {"answer": "rf", "hint": "synonyms for rf", "clues": ["releasing factor", "rutherfordium", "element 104", "atomic number 104", "releasing hormone", "unnilquadium", "rf"]}, {"answer": "rhetoric", "hint": "synonyms for rhetoric", "clues": ["grandiloquence", "empty words", "palaver", "ornateness", "grandiosity", "hot air", "magniloquence", "empty talk", "rhetoric"]}, {"answer": "rhythm", "hint": "synonyms for rhythm", "clues": ["musical rhythm", "round", "rhythm method", "rhythm method of birth control", "speech rhythm", "regular recurrence", "calendar method", "cycle", "calendar method of birth control", "beat", "rhythm"]}, {"answer": "rhythm_method", "hint": "synonyms for rhythm method", "clues": ["calendar method", "calendar method of birth control", "rhythm", "rhythm method of birth control", "rhythm method"]}, {"answer": "rhythm_method_of_birth_control", "hint": "synonyms for rhythm method of birth control", "clues": ["calendar method", "calendar method of birth control", "rhythm", "rhythm method", "rhythm method of birth control"]}, {"answer": "rhytidectomy", "hint": "synonyms for rhytidectomy", "clues": ["lift", "cosmetic surgery", "face lifting", "facelift", "nip and tuck", "rhytidoplasty", "rhytidectomy"]}, {"answer": "rhytidoplasty", "hint": "synonyms for rhytidoplasty", "clues": ["cosmetic surgery", "face lifting", "facelift", "nip and tuck", "rhytidectomy", "lift", "rhytidoplasty"]}, {"answer": "ribbon", "hint": "synonyms for ribbon", "clues": ["thread", "medallion", "medal", "typewriter ribbon", "palm", "decoration", "laurel wreath", "ribbon"]}, {"answer": "riboflavin", "hint": "synonyms for riboflavin", "clues": ["lactoflavin", "hepatoflavin", "vitamin G", "vitamin B2", "ovoflavin", "riboflavin"]}, {"answer": "richness", "hint": "synonyms for richness", "clues": ["fullness", "prolificacy", "profuseness", "mellowness", "grandness", "cornucopia", "impressiveness", "rankness", "profusion", "magnificence", "fertility", "richness"]}, {"answer": "riddance", "hint": "synonyms for riddance", "clues": ["expulsion", "exclusion", "elimination", "ejection", "riddance"]}, {"answer": "rift", "hint": "synonyms for rift", "clues": ["break", "breach", "severance", "rupture", "falling out", "rift"]}, {"answer": "rig", "hint": "synonyms for rig", "clues": ["carriage", "fishing gear", "rigging", "outfit", "fishing rig", "turnout", "cheat", "swindle", "semi", "getup", "trailer truck", "equipage", "fishing tackle", "tackle", "articulated lorry", "tractor trailer", "trucking rig", "rig"]}, {"answer": "rightness", "hint": "synonyms for rightness", "clues": ["justness", "nicety", "correctness", "appropriateness", "rightness"]}, {"answer": "rigor", "hint": "synonyms for rigor", "clues": ["grimness", "asperity", "harshness", "stiffness", "hardness", "hardship", "rigourousness", "severeness", "rigour", "severity", "validity", "inclemency", "cogency"]}, {"answer": "rigorousness", "hint": "synonyms for rigorousness", "clues": ["hardness", "hardship", "rigor", "grimness", "rigourousness", "severeness", "severity", "inclemency", "asperity", "harshness", "stiffness"]}, {"answer": "rigour", "hint": "synonyms for rigour", "clues": ["rigor", "grimness", "asperity", "harshness", "stiffness", "hardness", "hardship", "rigourousness", "severeness", "severity", "validity", "inclemency", "cogency"]}, {"answer": "rigourousness", "hint": "synonyms for rigourousness", "clues": ["hardness", "hardship", "rigor", "grimness", "rigorousness", "severeness", "severity", "inclemency", "asperity", "harshness", "stiffness"]}, {"answer": "rilievo", "hint": "synonyms for rilievo", "clues": ["relievo", "sculptural relief", "relief", "embossment"]}, {"answer": "rill", "hint": "synonyms for rill", "clues": ["streamlet", "rivulet", "run", "runnel", "rill"]}, {"answer": "rime", "hint": "synonyms for rime", "clues": ["frost", "rhyme", "hoar", "hoarfrost", "rime"]}, {"answer": "ring", "hint": "synonyms for ring", "clues": ["gang", "tintinnabulation", "pack", "halo", "hoop", "doughnut", "closed chain", "mob", "annulus", "band", "ringing", "anchor ring"]}, {"answer": "ring_armor", "hint": "synonyms for ring armor", "clues": ["mail", "chain mail", "chain armour", "ring armour", "ring mail"]}, {"answer": "ring_armour", "hint": "synonyms for ring armour", "clues": ["mail", "ring armor", "chain mail", "chain armour", "ring mail"]}, {"answer": "ring_mail", "hint": "synonyms for ring mail", "clues": ["mail", "ring armor", "chain mail", "chain armour", "ring mail"]}, {"answer": "ringing", "hint": "synonyms for ringing", "clues": ["vibrancy", "tintinnabulation", "ring", "plangency", "sonority", "sonorousness", "reverberance", "resonance"]}, {"answer": "ringlet", "hint": "synonyms for ringlet", "clues": ["coil", "curlicue", "scroll", "curl", "whorl", "gyre", "roll", "ringlet"]}, {"answer": "rings", "hint": "synonyms for rings", "clues": ["gang", "ring", "pack", "tintinnabulation", "halo", "hoop", "doughnut", "closed chain", "mob", "annulus", "band", "anchor ring"]}, {"answer": "riot", "hint": "synonyms for riot", "clues": ["sidesplitter", "howler", "thigh-slapper", "scream", "public violence", "orgy", "debauch", "drunken revelry", "saturnalia", "debauchery", "wow", "bacchanalia", "belly laugh", "riot"]}, {"answer": "rip", "hint": "synonyms for rip", "clues": ["tear", "riptide", "rent", "snag", "tide rip", "countercurrent", "crosscurrent", "split", "rip"]}, {"answer": "ripening", "hint": "synonyms for ripening", "clues": ["maturement", "maturation", "ageing", "ripening"]}, {"answer": "riposte", "hint": "synonyms for riposte", "clues": ["retort", "counter", "comeback", "replication", "return", "rejoinder", "riposte"]}, {"answer": "riptide", "hint": "synonyms for riptide", "clues": ["tide rip", "rip", "crosscurrent", "countercurrent", "rip current", "riptide"]}, {"answer": "rise", "hint": "synonyms for rise", "clues": ["procession", "upgrade", "hike", "ascension", "wage increase", "ascent", "advance", "rising", "ascending", "cost increase", "emanation", "salary increase", "wage hike", "lift", "raise", "climb", "rising slope", "boost", "acclivity"]}, {"answer": "risk", "hint": "synonyms for risk", "clues": ["risk of infection", "danger", "risk of exposure", "peril", "risk"]}, {"answer": "river_basin", "hint": "synonyms for river basin", "clues": ["catchment area", "drainage area", "catchment basin", "drainage basin", "watershed", "basin", "river basin"]}, {"answer": "rivulet", "hint": "synonyms for rivulet", "clues": ["rill", "runnel", "run", "streamlet", "rivulet"]}, {"answer": "roach", "hint": "synonyms for roach", "clues": ["roofy", "rope", "forget me drug", "circle", "rophy", "roach"]}, {"answer": "roar", "hint": "synonyms for roar", "clues": ["holler", "thunder", "holla", "yowl", "roaring", "bellowing", "boom", "hollo"]}, {"answer": "rock", "hint": "synonyms for rock", "clues": ["rock-and-roll", "stone", "careen", "sway", "rock music", "rock 'n' roll", "rock and roll", "rock candy", "tilt", "rock"]}, {"answer": "rock'n'roll", "hint": "synonyms for rock'n'roll", "clues": ["rock and roll", "rock-and-roll", "rock", "rock music", "rock 'n' roll"]}, {"answer": "rock-and-roll", "hint": "synonyms for rock-and-roll", "clues": ["rock'n'roll", "rock and roll", "rock", "rock music", "rock-and-roll"]}, {"answer": "rock_'n'_roll", "hint": "synonyms for rock 'n' roll", "clues": ["rock'n'roll", "rock and roll", "rock-and-roll", "rock", "rock music"]}, {"answer": "rock_and_roll", "hint": "synonyms for rock and roll", "clues": ["rock'n'roll", "rock-and-roll", "rock", "rock music", "rock and roll"]}, {"answer": "rock_music", "hint": "synonyms for rock music", "clues": ["rock'n'roll", "rock and roll", "rock-and-roll", "rock", "rock music"]}, {"answer": "rock_oil", "hint": "synonyms for rock oil", "clues": ["crude oil", "fossil oil", "crude", "oil", "petroleum", "rock oil"]}, {"answer": "rockers", "hint": "synonyms for rockers", "clues": ["rocker", "rocking chair", "cradle", "bikers"]}, {"answer": "roguery", "hint": "synonyms for roguery", "clues": ["mischievousness", "deviltry", "mischief-making", "rascality", "devilment", "roguishness", "shenanigan", "mischief", "roguery"]}, {"answer": "roguishness", "hint": "synonyms for roguishness", "clues": ["mischievousness", "roguery", "deviltry", "prankishness", "mischief-making", "rascality", "devilment", "shenanigan", "mischief", "roguishness"]}, {"answer": "role", "hint": "synonyms for role", "clues": ["use", "part", "purpose", "function", "persona", "office", "character", "theatrical role", "role"]}, {"answer": "roll", "hint": "synonyms for roll", "clues": ["bun", "peal", "whorl", "rolling", "paradiddle", "scroll", "cast", "roster", "curl", "axial motion", "rolling wave", "ringlet", "coil", "curlicue", "drum roll", "gyre", "axial rotation", "bowl", "bankroll", "roller"]}, {"answer": "roll_in_the_hay", "hint": "synonyms for roll in the hay", "clues": ["nookie", "screw", "fuck", "shtup", "piece of ass", "piece of tail", "shag", "ass", "nooky", "roll in the hay"]}, {"answer": "roller", "hint": "synonyms for roller", "clues": ["curler", "roll", "crimper", "hair curler", "rolling wave", "roller"]}, {"answer": "roma", "hint": "synonyms for roma", "clues": ["read-only storage", "read-only memory", "fixed storage", "capital of Italy", "roma"]}, {"answer": "romans", "hint": "synonyms for romans", "clues": ["roman letters", "roman", "roman print", "roman type"]}, {"answer": "romp", "hint": "synonyms for romp", "clues": ["gambol", "walkaway", "caper", "shoo-in", "laugher", "runaway", "frolic", "blowout", "play", "romp"]}, {"answer": "roofy", "hint": "synonyms for roofy", "clues": ["rope", "roach", "forget me drug", "circle", "rophy", "roofy"]}, {"answer": "rooms", "hint": "synonyms for rooms", "clues": ["elbow room", "way", "room", "suite"]}, {"answer": "root", "hint": "synonyms for root", "clues": ["solution", "stem", "root word", "radical", "beginning", "base", "rootage", "source", "etymon", "theme", "origin", "root"]}, {"answer": "root_word", "hint": "synonyms for root word", "clues": ["stem", "radical", "theme", "base", "root", "root word"]}, {"answer": "rootage", "hint": "synonyms for rootage", "clues": ["beginning", "root", "origin", "source", "rootage"]}, {"answer": "roots", "hint": "synonyms for roots", "clues": ["solution", "stem", "root word", "radical", "beginning", "base", "root", "rootage", "source", "etymon", "theme", "origin"]}, {"answer": "rope", "hint": "synonyms for rope", "clues": ["roofy", "roach", "forget me drug", "circle", "rophy", "rope"]}, {"answer": "ropeway", "hint": "synonyms for ropeway", "clues": ["cable tramway", "tram", "tramway", "aerial tramway", "ropeway"]}, {"answer": "rophy", "hint": "synonyms for rophy", "clues": ["roofy", "rope", "roach", "forget me drug", "circle", "rophy"]}, {"answer": "ropiness", "hint": "synonyms for ropiness", "clues": ["glueyness", "tackiness", "gluiness", "viscidness", "viscidity", "cohesiveness", "gumminess", "ropiness"]}, {"answer": "rostrum", "hint": "synonyms for rostrum", "clues": ["podium", "soapbox", "pulpit", "ambo", "stump", "dais", "rostrum"]}, {"answer": "rot", "hint": "synonyms for rot", "clues": ["decomposition", "rotting", "guff", "hogwash", "bunkum", "putrefaction", "buncombe", "bunk", "rot"]}, {"answer": "rotundity", "hint": "synonyms for rotundity", "clues": ["rotundness", "sphericalness", "globosity", "globularness", "sphericity", "rotundity"]}, {"answer": "rotundness", "hint": "synonyms for rotundness", "clues": ["sphericalness", "globosity", "sphericity", "globularness", "rotundity", "rotundness"]}, {"answer": "roughness", "hint": "synonyms for roughness", "clues": ["indentation", "pitting", "crudeness", "raggedness", "harshness", "roughness"]}, {"answer": "row", "hint": "synonyms for row", "clues": ["wrangle", "words", "rowing", "quarrel", "course", "run-in", "dustup"]}, {"answer": "rowlock", "hint": "synonyms for rowlock", "clues": ["oarlock", "tholepin", "thole", "pin", "peg", "rowlock"]}, {"answer": "rub", "hint": "synonyms for rub", "clues": ["hitch", "hang-up", "wipe", "snag", "rub"]}, {"answer": "rubbish", "hint": "synonyms for rubbish", "clues": ["trumpery", "folderol", "trash", "codswallop", "applesauce", "wish-wash", "scrap", "tripe", "rubbish"]}, {"answer": "rubbish_dump", "hint": "synonyms for rubbish dump", "clues": ["garbage dump", "wasteyard", "dumpsite", "dump", "trash dump", "rubbish dump"]}, {"answer": "rubbish_heap", "hint": "synonyms for rubbish heap", "clues": ["trash heap", "trash pile", "junk pile", "scrapheap", "refuse heap", "junk heap", "garbage heap", "rubbish heap"]}, {"answer": "rubble", "hint": "synonyms for rubble", "clues": ["dust", "junk", "debris", "detritus", "rubble"]}, {"answer": "rucksack", "hint": "synonyms for rucksack", "clues": ["knapsack", "back pack", "haversack", "packsack", "rucksack"]}, {"answer": "ruckus", "hint": "synonyms for ruckus", "clues": ["ruction", "tumult", "rumpus", "commotion", "din", "ruckus"]}, {"answer": "ruction", "hint": "synonyms for ruction", "clues": ["ruckus", "tumult", "rumpus", "commotion", "din", "ruction"]}, {"answer": "rudiments", "hint": "synonyms for rudiments", "clues": ["basics", "first principle", "first rudiment", "rudiment", "alphabet"]}, {"answer": "ruff", "hint": "synonyms for ruff", "clues": ["choker", "ruffle", "neck ruff", "trumping", "ruff"]}, {"answer": "ruffle", "hint": "synonyms for ruffle", "clues": ["ruff", "choker", "affray", "fray", "disturbance", "flounce", "frill", "neck ruff", "furbelow", "ruffle"]}, {"answer": "ruin", "hint": "synonyms for ruin", "clues": ["dilapidation", "ruining", "ruination", "wrecking", "laying waste", "downfall"]}, {"answer": "ruination", "hint": "synonyms for ruination", "clues": ["ruining", "wrecking", "laying waste", "downfall", "ruination"]}, {"answer": "ruining", "hint": "synonyms for ruining", "clues": ["laying waste", "wrecking", "ruin", "ruination"]}, {"answer": "rule", "hint": "synonyms for rule", "clues": ["regulation", "convention", "prescript", "formula", "principle", "linguistic rule", "pattern", "ruler", "normal"]}, {"answer": "rumination", "hint": "synonyms for rumination", "clues": ["musing", "reflexion", "reflection", "contemplation", "thoughtfulness", "rumination"]}, {"answer": "rumpus", "hint": "synonyms for rumpus", "clues": ["ruction", "ruckus", "tumult", "commotion", "din", "rumpus"]}, {"answer": "run", "hint": "synonyms for run", "clues": ["discharge", "test", "outpouring", "foot race", "tally", "running", "streamlet", "running game", "trial", "campaign", "political campaign", "streak", "running play", "ravel", "runnel", "rill", "rivulet", "ladder", "run"]}, {"answer": "run-in", "hint": "synonyms for run-in", "clues": ["wrangle", "row", "words", "quarrel", "dustup", "run-in"]}, {"answer": "rung", "hint": "synonyms for rung", "clues": ["rundle", "spoke", "round", "stave", "rung"]}, {"answer": "runnel", "hint": "synonyms for runnel", "clues": ["rill", "rivulet", "run", "streamlet", "runnel"]}, {"answer": "runniness", "hint": "synonyms for runniness", "clues": ["fluidity", "fluidness", "liquidity", "liquidness", "runniness"]}, {"answer": "rupture", "hint": "synonyms for rupture", "clues": ["break", "breach", "rift", "severance", "falling out", "rupture"]}, {"answer": "s", "hint": "synonyms for s", "clues": ["mho", "sulfur", "due south", "south", "southward", "randomness", "entropy", "reciprocal ohm", "second", "sulphur", "siemens", "sec", "atomic number 16", "s"]}, {"answer": "s/n", "hint": "synonyms for s/n", "clues": ["signal/noise ratio", "signal-to-noise", "signal/noise", "s/n"]}, {"answer": "sabot", "hint": "synonyms for sabot", "clues": ["wooden shoe", "geta", "clog", "patten", "sabot"]}, {"answer": "sack", "hint": "synonyms for sack", "clues": ["hammock", "sacque", "paper bag", "carrier bag", "pouch", "dismissal", "chemise", "release", "discharge", "sacking", "sac", "firing", "shift", "dismission", "poke", "liberation", "sackful", "pocket"]}, {"answer": "sacking", "hint": "synonyms for sacking", "clues": ["sack", "bagging", "dismissal", "release", "discharge", "firing", "dismission", "liberation"]}, {"answer": "saddleback", "hint": "synonyms for saddleback", "clues": ["saddle", "saddleback roof", "saddle roof", "gable roof", "saddleback"]}, {"answer": "safe-deposit", "hint": "synonyms for safe-deposit", "clues": ["safety deposit box", "lockbox", "safety-deposit", "deposit box"]}, {"answer": "safe-deposit_box", "hint": "synonyms for safe-deposit box", "clues": ["safety deposit box", "lockbox", "safety-deposit", "deposit box"]}, {"answer": "safety", "hint": "synonyms for safety", "clues": ["refuge", "base hit", "guard", "rubber", "prophylactic", "condom", "safety device", "safe", "safety"]}, {"answer": "safety-deposit", "hint": "synonyms for safety-deposit", "clues": ["safety deposit box", "lockbox", "deposit box", "safe-deposit"]}, {"answer": "safety_deposit_box", "hint": "synonyms for safety deposit box", "clues": ["lockbox", "safety-deposit", "deposit box", "safe-deposit box"]}, {"answer": "safety_valve", "hint": "synonyms for safety valve", "clues": ["escape", "relief valve", "escape valve", "escape cock", "safety valve"]}, {"answer": "sagaciousness", "hint": "synonyms for sagaciousness", "clues": ["discernment", "judiciousness", "judgement", "sagacity", "sagaciousness"]}, {"answer": "sagacity", "hint": "synonyms for sagacity", "clues": ["discernment", "judiciousness", "judgement", "sagaciousness", "sagacity"]}, {"answer": "sail", "hint": "synonyms for sail", "clues": ["canvass", "sheet", "cruise", "sail"]}, {"answer": "sailing", "hint": "synonyms for sailing", "clues": ["glide", "soaring", "navigation", "sailplaning", "gliding", "seafaring", "sailing"]}, {"answer": "sailor", "hint": "synonyms for sailor", "clues": ["leghorn", "skimmer", "straw hat", "boater", "sailor"]}, {"answer": "sailplaning", "hint": "synonyms for sailplaning", "clues": ["sailing", "glide", "gliding", "soaring", "sailplaning"]}, {"answer": "saint_elmo's_fire", "hint": "synonyms for saint elmo's fire", "clues": ["corona", "electric glow", "corposant", "corona discharge", "saint elmo's fire"]}, {"answer": "saint_elmo's_light", "hint": "synonyms for saint elmo's light", "clues": ["corona", "electric glow", "corposant", "corona discharge", "saint elmo's light"]}, {"answer": "saint_ulmo's_fire", "hint": "synonyms for saint ulmo's fire", "clues": ["corona", "electric glow", "corposant", "corona discharge", "saint ulmo's fire"]}, {"answer": "saint_ulmo's_light", "hint": "synonyms for saint ulmo's light", "clues": ["corona", "electric glow", "corposant", "corona discharge", "saint ulmo's light"]}, {"answer": "sal_soda", "hint": "synonyms for sal soda", "clues": ["soda", "washing soda", "sodium carbonate", "soda ash", "sal soda"]}, {"answer": "salaciousness", "hint": "synonyms for salaciousness", "clues": ["bawdiness", "salacity", "lewdness", "obscenity", "salaciousness"]}, {"answer": "salacity", "hint": "synonyms for salacity", "clues": ["bawdiness", "salaciousness", "lewdness", "obscenity", "salacity"]}, {"answer": "salary", "hint": "synonyms for salary", "clues": ["earnings", "pay", "wage", "remuneration", "salary"]}, {"answer": "salary_increase", "hint": "synonyms for salary increase", "clues": ["wage hike", "wage increase", "hike", "rise", "salary increase"]}, {"answer": "saleratus", "hint": "synonyms for saleratus", "clues": ["sodium bicarbonate", "sodium hydrogen carbonate", "bicarbonate of soda", "baking soda", "saleratus"]}, {"answer": "sales", "hint": "synonyms for sales", "clues": ["sale", "sales event", "gross sales", "cut-rate sale", "gross revenue", "sales agreement"]}, {"answer": "sally", "hint": "synonyms for sally", "clues": ["crack", "wisecrack", "sallying forth", "quip", "sortie", "sally"]}, {"answer": "salmagundi", "hint": "synonyms for salmagundi", "clues": ["potpourri", "miscellany", "variety", "mixture", "mixed bag", "assortment", "motley", "smorgasbord", "salmagundi"]}, {"answer": "salon", "hint": "synonyms for salon", "clues": ["beauty parlor", "beauty salon", "beauty shop", "salon"]}, {"answer": "saloon", "hint": "synonyms for saloon", "clues": ["gin mill", "bar", "pub", "barroom", "sedan", "pothouse", "taproom", "taphouse", "public house", "saloon"]}, {"answer": "saltation", "hint": "synonyms for saltation", "clues": ["dance", "dancing", "leaping", "bounce", "jump", "terpsichore", "bound", "spring", "saltation"]}, {"answer": "saltpeter", "hint": "synonyms for saltpeter", "clues": ["saltpetre", "potassium nitrate", "niter", "nitre"]}, {"answer": "saltpetre", "hint": "synonyms for saltpetre", "clues": ["potassium nitrate", "niter", "saltpeter", "nitre"]}, {"answer": "salve", "hint": "synonyms for salve", "clues": ["unguent", "ointment", "unction", "balm", "salve"]}, {"answer": "sanatorium", "hint": "synonyms for sanatorium", "clues": ["nut house", "funny farm", "loony bin", "sanitarium", "funny house", "crazy house", "cuckoo's nest", "booby hatch", "madhouse", "snake pit", "sanatorium"]}, {"answer": "sanction", "hint": "synonyms for sanction", "clues": ["authorisation", "countenance", "imprimatur", "endorsement", "warrant", "authority", "sanction"]}, {"answer": "sanctuary", "hint": "synonyms for sanctuary", "clues": ["chancel", "bema", "refuge", "asylum", "sanctuary"]}, {"answer": "sand", "hint": "synonyms for sand", "clues": ["backbone", "moxie", "grit", "guts", "gumption", "sand"]}, {"answer": "sands", "hint": "synonyms for sands", "clues": ["backbone", "littoral", "moxie", "grit", "guts", "gumption", "sand", "littoral zone"]}, {"answer": "sang-froid", "hint": "synonyms for sang-froid", "clues": ["aplomb", "poise", "cool", "assuredness", "sang-froid"]}, {"answer": "sapidity", "hint": "synonyms for sapidity", "clues": ["sapidness", "flavour", "savor", "relish", "smack", "tang", "nip", "sapidity"]}, {"answer": "sash", "hint": "synonyms for sash", "clues": ["girdle", "waistcloth", "cincture", "waistband", "window sash", "sash"]}, {"answer": "sashay", "hint": "synonyms for sashay", "clues": ["outing", "chasse", "pleasure trip", "jaunt", "junket", "expedition", "excursion", "sashay"]}, {"answer": "sass", "hint": "synonyms for sass", "clues": ["mouth", "backtalk", "sassing", "lip"]}, {"answer": "sassing", "hint": "synonyms for sassing", "clues": ["mouth", "sass", "backtalk", "lip"]}, {"answer": "saturation", "hint": "synonyms for saturation", "clues": ["intensity", "vividness", "chroma", "impregnation", "saturation"]}, {"answer": "saturnalia", "hint": "synonyms for saturnalia", "clues": ["orgy", "drunken revelry", "riot", "debauchery", "debauch", "bacchanalia", "saturnalia"]}, {"answer": "saucer", "hint": "synonyms for saucer", "clues": ["dish antenna", "dish", "dish aerial", "disk", "discus", "disc", "saucer"]}, {"answer": "sauciness", "hint": "synonyms for sauciness", "clues": ["archness", "perkiness", "pertness", "impertinence", "sauciness"]}, {"answer": "saunter", "hint": "synonyms for saunter", "clues": ["stroll", "amble", "promenade", "perambulation", "saunter"]}, {"answer": "savagery", "hint": "synonyms for savagery", "clues": ["viciousness", "savageness", "barbarism", "ferociousness", "barbarity", "brutality", "savagery"]}, {"answer": "savings", "hint": "synonyms for savings", "clues": ["nest egg", "economy", "saving", "deliverance", "delivery", "preservation", "rescue"]}, {"answer": "savor", "hint": "synonyms for savor", "clues": ["flavour", "sapidity", "relish", "savour", "smack", "tang", "nip"]}, {"answer": "savoring", "hint": "synonyms for savoring", "clues": ["tasting", "relishing", "savouring", "degustation"]}, {"answer": "savour", "hint": "synonyms for savour", "clues": ["flavour", "sapidity", "savor", "relish", "smack", "tang", "nip"]}, {"answer": "savouring", "hint": "synonyms for savouring", "clues": ["tasting", "relishing", "degustation", "savoring"]}, {"answer": "saw", "hint": "synonyms for saw", "clues": ["byword", "sawing machine", "proverb", "adage", "power saw", "saw"]}, {"answer": "say-so", "hint": "synonyms for say-so", "clues": ["potency", "authorization", "dictum", "pronouncement", "authority", "dominance", "say-so"]}, {"answer": "sayonara", "hint": "synonyms for sayonara", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "so long", "au revoir", "sayonara"]}, {"answer": "scads", "hint": "synonyms for scads", "clues": ["lots", "slews", "loads", "lashings", "oodles", "wads", "tons", "gobs", "rafts", "scores", "heaps", "stacks", "dozens", "piles", "scads"]}, {"answer": "scag", "hint": "synonyms for scag", "clues": ["big H", "hell dust", "smack", "thunder", "skag", "nose drops", "scag"]}, {"answer": "scale", "hint": "synonyms for scale", "clues": ["ordered series", "graduated table", "scale of measurement", "plate", "shell", "musical scale", "exfoliation", "weighing machine", "scurf", "scale"]}, {"answer": "scallop", "hint": "synonyms for scallop", "clues": ["crenation", "crenel", "cutlet", "crenature", "escallop", "scollop"]}, {"answer": "scantiness", "hint": "synonyms for scantiness", "clues": ["meagerness", "scantness", "poorness", "leanness", "exiguity"]}, {"answer": "scantness", "hint": "synonyms for scantness", "clues": ["meagerness", "scantiness", "poorness", "leanness", "exiguity"]}, {"answer": "scarecrow", "hint": "synonyms for scarecrow", "clues": ["scarer", "bird-scarer", "strawman", "scarecrow"]}, {"answer": "scarer", "hint": "synonyms for scarer", "clues": ["scarecrow", "bird-scarer", "strawman", "scarer"]}, {"answer": "scattering", "hint": "synonyms for scattering", "clues": ["sprinkle", "strewing", "sprinkling", "scatter", "dispersion"]}, {"answer": "scene", "hint": "synonyms for scene", "clues": ["prospect", "vista", "aspect", "view", "panorama", "shot", "setting", "scenery", "scene"]}, {"answer": "scent", "hint": "synonyms for scent", "clues": ["olfactory property", "odour", "fragrance", "perfume", "smell", "aroma", "scent"]}, {"answer": "scheme", "hint": "synonyms for scheme", "clues": ["schema", "dodging", "strategy", "dodge", "outline", "system", "scheme"]}, {"answer": "schmoose", "hint": "synonyms for schmoose", "clues": ["chat", "confabulation", "schmooze", "confab"]}, {"answer": "schmooze", "hint": "synonyms for schmooze", "clues": ["chat", "confabulation", "confab", "schmoose"]}, {"answer": "schnorchel", "hint": "synonyms for schnorchel", "clues": ["breather", "snorkel breather", "schnorkel", "schnorchel"]}, {"answer": "schnorkel", "hint": "synonyms for schnorkel", "clues": ["breather", "snorkel breather", "schnorchel", "snorkel"]}, {"answer": "scholarship", "hint": "synonyms for scholarship", "clues": ["eruditeness", "learning", "encyclopedism", "learnedness", "erudition", "scholarship"]}, {"answer": "school", "hint": "synonyms for school", "clues": ["schoolhouse", "schooling", "school day", "shoal", "schooltime"]}, {"answer": "school_of_thought", "hint": "synonyms for school of thought", "clues": ["ism", "philosophy", "doctrine", "philosophical system", "school of thought"]}, {"answer": "school_text", "hint": "synonyms for school text", "clues": ["text", "schoolbook", "text edition", "textbook", "school text"]}, {"answer": "schoolbook", "hint": "synonyms for schoolbook", "clues": ["text", "school text", "text edition", "textbook", "schoolbook"]}, {"answer": "science_lab", "hint": "synonyms for science lab", "clues": ["research laboratory", "lab", "research lab", "laboratory", "science laboratory", "science lab"]}, {"answer": "science_laboratory", "hint": "synonyms for science laboratory", "clues": ["research laboratory", "science lab", "lab", "research lab", "laboratory", "science laboratory"]}, {"answer": "scintilla", "hint": "synonyms for scintilla", "clues": ["tittle", "smidgen", "whit", "iota", "shred", "scintilla"]}, {"answer": "scintillation", "hint": "synonyms for scintillation", "clues": ["twinkle", "glister", "sparkling", "sparkle", "scintillation"]}, {"answer": "scissors", "hint": "synonyms for scissors", "clues": ["pair of scissors", "scissor grip", "scissor hold", "scissors"]}, {"answer": "scissure", "hint": "synonyms for scissure", "clues": ["cleft", "crevice", "crack", "fissure", "scissure"]}, {"answer": "scoop", "hint": "synonyms for scoop", "clues": ["scoop shovel", "scoopful", "max", "exclusive", "goop", "liquid ecstasy", "easy lay", "grievous bodily harm", "soap", "pocket", "scoop"]}, {"answer": "scooter", "hint": "synonyms for scooter", "clues": ["water scooter", "ice yacht", "iceboat", "sea scooter", "motor scooter", "scooter"]}, {"answer": "scope", "hint": "synonyms for scope", "clues": ["reach", "telescope", "orbit", "ambit", "range", "cathode-ray oscilloscope", "oscilloscope", "compass", "scope"]}, {"answer": "scopes", "hint": "synonyms for scopes", "clues": ["cathode-ray oscilloscope", "oscilloscope", "scope", "compass", "reach", "telescope", "orbit", "ambit", "range"]}, {"answer": "score", "hint": "synonyms for score", "clues": ["grievance", "account", "grade", "musical score", "mark", "scotch", "grudge", "sexual conquest", "score"]}, {"answer": "scores", "hint": "synonyms for scores", "clues": ["lots", "loads", "lashings", "oodles", "wads", "tons", "gobs", "musical score", "rafts", "mark", "heaps", "grudge", "piles", "scotch", "scads", "slews", "score", "sexual conquest", "grievance", "account", "grade", "stacks", "dozens"]}, {"answer": "scrap", "hint": "synonyms for scrap", "clues": ["flake", "fleck", "chip", "trash", "fight", "bit", "combat", "rubbish", "scrap"]}, {"answer": "scrape", "hint": "synonyms for scrape", "clues": ["mark", "scratching", "scraping", "scar", "scrape"]}, {"answer": "scrapheap", "hint": "synonyms for scrapheap", "clues": ["trash heap", "trash pile", "junk pile", "refuse heap", "junk heap", "garbage heap", "rubbish heap", "scrapheap"]}, {"answer": "scraps", "hint": "synonyms for scraps", "clues": ["garbage", "flake", "fleck", "chip", "trash", "fight", "bit", "food waste", "combat", "rubbish", "scrap", "refuse"]}, {"answer": "scratch", "hint": "synonyms for scratch", "clues": ["lucre", "scrawl", "sugar", "start", "lettuce", "pelf", "simoleons", "scraping", "prick", "dent", "scar", "chicken feed", "mark", "moolah", "scrape", "boodle", "lolly", "shekels", "kale", "clams", "cacography", "dinero", "gelt", "scratching", "scribble", "slit", "wampum", "cabbage", "bread", "loot", "scratch line", "dough", "starting line", "incision"]}, {"answer": "scream", "hint": "synonyms for scream", "clues": ["sidesplitter", "riot", "howler", "thigh-slapper", "screeching", "shriek", "wow", "screaming", "belly laugh"]}, {"answer": "screen", "hint": "synonyms for screen", "clues": ["filmdom", "screen door", "blind", "screenland", "projection screen", "sieve", "covert", "silver screen", "concealment", "screen"]}, {"answer": "screening", "hint": "synonyms for screening", "clues": ["showing", "masking", "cover", "viewing", "screening"]}, {"answer": "screw", "hint": "synonyms for screw", "clues": ["roll in the hay", "nookie", "shtup", "piece of ass", "piece of tail", "shag", "nooky", "ass", "fuck", "screwing", "screw propeller"]}, {"answer": "screwing", "hint": "synonyms for screwing", "clues": ["roll in the hay", "nookie", "screw", "fuck", "shtup", "piece of ass", "piece of tail", "shag", "ass", "nooky"]}, {"answer": "scribble", "hint": "synonyms for scribble", "clues": ["scrawl", "doodle", "cacography", "scrabble", "scratch"]}, {"answer": "script", "hint": "synonyms for script", "clues": ["playscript", "hand", "handwriting", "book", "script"]}, {"answer": "scroll", "hint": "synonyms for scroll", "clues": ["coil", "curlicue", "curl", "whorl", "gyre", "ringlet", "roll", "scroll"]}, {"answer": "scrubs", "hint": "synonyms for scrubs", "clues": ["scrubbing", "chaparral", "scrub", "scouring", "surgical gown", "gown", "bush"]}, {"answer": "scruples", "hint": "synonyms for scruples", "clues": ["scruple", "conscience", "moral sense", "qualm", "misgiving", "sense of right and wrong"]}, {"answer": "scrutin_uninomial_system", "hint": "synonyms for scrutin uninomial system", "clues": ["uninominal system", "uninominal voting system", "single-member system", "scrutin uninomial system"]}, {"answer": "scrutin_uninominal_voting_system", "hint": "synonyms for scrutin uninominal voting system", "clues": ["uninominal voting system", "uninominal system", "single-member system", "scrutin uninomial system"]}, {"answer": "scuffle", "hint": "synonyms for scuffle", "clues": ["scramble", "tussle", "hassle", "rough-and-tumble", "dogfight", "scuffle hoe", "scuffle"]}, {"answer": "sculptural_relief", "hint": "synonyms for sculptural relief", "clues": ["relievo", "relief", "embossment", "sculptural relief"]}, {"answer": "se", "hint": "synonyms for se", "clues": ["selenium", "sou'-east", "atomic number 34", "southeast", "southeastward", "se"]}, {"answer": "sea-poose", "hint": "synonyms for sea-poose", "clues": ["undertow", "sea-purse", "sea puss", "sea-poose"]}, {"answer": "sea-purse", "hint": "synonyms for sea-purse", "clues": ["undertow", "sea-puss", "sea purse", "sea-poose"]}, {"answer": "sea-puss", "hint": "synonyms for sea-puss", "clues": ["undertow", "sea-purse", "sea puss", "sea-poose"]}, {"answer": "sea_biscuit", "hint": "synonyms for sea biscuit", "clues": ["hardtack", "pilot biscuit", "ship biscuit", "pilot bread", "sea biscuit"]}, {"answer": "sea_bottom", "hint": "synonyms for sea bottom", "clues": ["ocean floor", "sea floor", "seabed", "ocean bottom", "sea bottom"]}, {"answer": "sea_floor", "hint": "synonyms for sea floor", "clues": ["ocean floor", "seabed", "sea bottom", "ocean bottom", "sea floor"]}, {"answer": "sea_purse", "hint": "synonyms for sea purse", "clues": ["undertow", "sea-puss", "sea-purse", "sea-poose"]}, {"answer": "sea_puss", "hint": "synonyms for sea puss", "clues": ["undertow", "sea-puss", "sea-purse", "sea-poose"]}, {"answer": "seabed", "hint": "synonyms for seabed", "clues": ["ocean floor", "sea floor", "sea bottom", "ocean bottom", "seabed"]}, {"answer": "seal", "hint": "synonyms for seal", "clues": ["sealing wax", "stamp", "cachet", "seal of approval", "sealskin", "seal"]}, {"answer": "seam", "hint": "synonyms for seam", "clues": ["line", "crease", "wrinkle", "bed", "furrow", "seam"]}, {"answer": "seasoner", "hint": "synonyms for seasoner", "clues": ["flavoring", "seasoning", "flavorer", "seasoner"]}, {"answer": "seasoning", "hint": "synonyms for seasoning", "clues": ["flavoring", "flavorer", "seasoner", "seasoning"]}, {"answer": "seats", "hint": "synonyms for seats", "clues": ["seating area", "seating", "place", "seating room", "seats"]}, {"answer": "seawall", "hint": "synonyms for seawall", "clues": ["bulwark", "groin", "breakwater", "groyne", "mole", "jetty", "seawall"]}, {"answer": "secret_writing", "hint": "synonyms for secret writing", "clues": ["cryptography", "steganography", "cryptogram", "coding", "secret writing"]}, {"answer": "section", "hint": "synonyms for section", "clues": ["plane section", "segment", "subdivision", "surgical incision", "incision", "discussion section", "department", "division", "part", "section"]}, {"answer": "sectionalisation", "hint": "synonyms for sectionalisation", "clues": ["division", "segmentation", "partitioning", "sectionalization"]}, {"answer": "sectionalization", "hint": "synonyms for sectionalization", "clues": ["division", "segmentation", "partitioning", "sectionalisation"]}, {"answer": "secureness", "hint": "synonyms for secureness", "clues": ["fastness", "fixture", "fixedness", "fixity", "secureness"]}, {"answer": "security", "hint": "synonyms for security", "clues": ["security department", "protection", "security measures", "security system", "surety", "certificate", "security"]}, {"answer": "seesaw", "hint": "synonyms for seesaw", "clues": ["teeterboard", "tilting board", "teeter", "teetertotter", "dandle board", "seesaw"]}, {"answer": "segmentation", "hint": "synonyms for segmentation", "clues": ["cleavage", "division", "partitioning", "sectionalisation", "segmentation"]}, {"answer": "selection", "hint": "synonyms for selection", "clues": ["choice", "option", "extract", "pick", "survival", "excerpt", "natural selection", "survival of the fittest", "excerption", "selection"]}, {"answer": "self-abnegation", "hint": "synonyms for self-abnegation", "clues": ["self-renunciation", "self-denial", "abnegation", "denial", "self-abnegation"]}, {"answer": "self-assurance", "hint": "synonyms for self-assurance", "clues": ["assurance", "confidence", "sureness", "self-confidence", "authority", "self-assurance"]}, {"answer": "self-centeredness", "hint": "synonyms for self-centeredness", "clues": ["egocentrism", "egoism", "self-concern", "self-interest", "self-centeredness"]}, {"answer": "self-command", "hint": "synonyms for self-command", "clues": ["possession", "will power", "self-possession", "self-control", "self-will", "self-command"]}, {"answer": "self-concern", "hint": "synonyms for self-concern", "clues": ["egocentrism", "egoism", "self-interest", "self-centeredness", "self-concern"]}, {"answer": "self-confidence", "hint": "synonyms for self-confidence", "clues": ["self-assurance", "assurance", "confidence", "sureness", "authority", "self-confidence"]}, {"answer": "self-control", "hint": "synonyms for self-control", "clues": ["self-denial", "will power", "self-possession", "self-will", "self-discipline", "self-command", "possession", "self-control"]}, {"answer": "self-denial", "hint": "synonyms for self-denial", "clues": ["abnegation", "self-control", "denial", "self-abnegation", "self-discipline", "self-renunciation", "self-denial"]}, {"answer": "self-drive", "hint": "synonyms for self-drive", "clues": ["u-drive", "hire car", "rent-a-car", "car rental", "self-drive"]}, {"answer": "self-interest", "hint": "synonyms for self-interest", "clues": ["self-seeking", "egocentrism", "expedience", "egoism", "self-concern", "self-centeredness", "opportunism", "self-interest"]}, {"answer": "self-love", "hint": "synonyms for self-love", "clues": ["conceit", "amour propre", "vanity", "narcism", "narcissism", "self-love"]}, {"answer": "self-possession", "hint": "synonyms for self-possession", "clues": ["self-command", "possession", "will power", "self-control", "self-will", "self-possession"]}, {"answer": "self-renunciation", "hint": "synonyms for self-renunciation", "clues": ["self-denial", "self-abnegation", "abnegation", "denial", "self-renunciation"]}, {"answer": "self-taught_art", "hint": "synonyms for self-taught art", "clues": ["vernacular art", "primitive art", "outsider art", "naive art", "self-taught art"]}, {"answer": "self-will", "hint": "synonyms for self-will", "clues": ["obstinance", "will power", "self-possession", "obstinacy", "bullheadedness", "self-command", "stubbornness", "possession", "self-control", "pigheadedness", "self-will"]}, {"answer": "seltzer", "hint": "synonyms for seltzer", "clues": ["carbonated water", "soda water", "club soda", "sparkling water", "seltzer"]}, {"answer": "semblance", "hint": "synonyms for semblance", "clues": ["colour", "likeness", "illusion", "gloss", "semblance"]}, {"answer": "semi", "hint": "synonyms for semi", "clues": ["trucking rig", "trailer truck", "semitrailer", "semifinal", "articulated lorry", "tractor trailer", "rig", "semi"]}, {"answer": "sendup", "hint": "synonyms for sendup", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "charade", "pasquinade", "parody", "takeoff", "sendup"]}, {"answer": "senior_high", "hint": "synonyms for senior high", "clues": ["senior high school", "high", "high school", "senior high"]}, {"answer": "senior_high_school", "hint": "synonyms for senior high school", "clues": ["high", "high school", "senior high", "senior high school"]}, {"answer": "sens", "hint": "synonyms for sens", "clues": ["sen", "dope", "green goddess", "skunk", "locoweed", "gage", "weed", "smoke", "sess", "grass", "pot"]}, {"answer": "sensation", "hint": "synonyms for sensation", "clues": ["sentiency", "sense experience", "sense datum", "esthesis", "sense", "sense impression", "sensory faculty", "sensation"]}, {"answer": "sensationalism", "hint": "synonyms for sensationalism", "clues": ["empiricism", "luridness", "empiricist philosophy", "sensualism", "sensationalism"]}, {"answer": "sense", "hint": "synonyms for sense", "clues": ["sentiency", "mother wit", "good sense", "horse sense", "gumption", "common sense", "sensation", "sensory faculty", "signified", "sense"]}, {"answer": "sense_datum", "hint": "synonyms for sense datum", "clues": ["sense experience", "sensation", "sense impression", "esthesis", "sense datum"]}, {"answer": "sense_experience", "hint": "synonyms for sense experience", "clues": ["sense datum", "sense impression", "sensation", "esthesis", "sense experience"]}, {"answer": "sense_impression", "hint": "synonyms for sense impression", "clues": ["sense experience", "sense datum", "sensation", "esthesis", "sense impression"]}, {"answer": "sense_of_balance", "hint": "synonyms for sense of balance", "clues": ["equilibrium", "vestibular sense", "sense of equilibrium", "labyrinthine sense", "sense of balance"]}, {"answer": "sense_of_equilibrium", "hint": "synonyms for sense of equilibrium", "clues": ["equilibrium", "sense of balance", "vestibular sense", "labyrinthine sense", "sense of equilibrium"]}, {"answer": "sense_of_hearing", "hint": "synonyms for sense of hearing", "clues": ["auditory modality", "hearing", "auditory sense", "audition", "sense of hearing"]}, {"answer": "sense_of_movement", "hint": "synonyms for sense of movement", "clues": ["kinesthesia", "kinesthetics", "muscle sense", "sense of movement"]}, {"answer": "sense_of_touch", "hint": "synonyms for sense of touch", "clues": ["cutaneous senses", "touch", "touch modality", "skin senses", "sense of touch"]}, {"answer": "senselessness", "hint": "synonyms for senselessness", "clues": ["inanity", "vacuity", "mindlessness", "pointlessness", "senselessness"]}, {"answer": "sensibility", "hint": "synonyms for sensibility", "clues": ["sensitiveness", "esthesia", "sensitivity", "sensibility"]}, {"answer": "sensible_horizon", "hint": "synonyms for sensible horizon", "clues": ["apparent horizon", "visible horizon", "horizon", "skyline", "sensible horizon"]}, {"answer": "sensory_faculty", "hint": "synonyms for sensory faculty", "clues": ["sentiency", "sensation", "sense", "sensory faculty"]}, {"answer": "sentence", "hint": "synonyms for sentence", "clues": ["conviction", "prison term", "judgment of conviction", "condemnation", "time", "sentence"]}, {"answer": "sentience", "hint": "synonyms for sentience", "clues": ["sentiency", "sense", "sensation", "sensory faculty", "awareness"]}, {"answer": "sentiency", "hint": "synonyms for sentiency", "clues": ["sensation", "sensory faculty", "sense", "sentience"]}, {"answer": "sentiment", "hint": "synonyms for sentiment", "clues": ["thought", "view", "persuasion", "opinion", "sentiment"]}, {"answer": "sentimentality", "hint": "synonyms for sentimentality", "clues": ["sloppiness", "drippiness", "mushiness", "mawkishness", "soupiness", "sentimentality"]}, {"answer": "separation", "hint": "synonyms for separation", "clues": ["interval", "detachment", "legal separation", "breakup", "separation"]}, {"answer": "separatrix", "hint": "synonyms for separatrix", "clues": ["diagonal", "virgule", "slash", "solidus", "stroke", "separatrix"]}, {"answer": "sept", "hint": "synonyms for sept", "clues": ["family line", "family", "phratry", "kinsfolk", "folk", "sept"]}, {"answer": "septenary", "hint": "synonyms for septenary", "clues": ["seven", "sevener", "7", "heptad", "septet", "septenary"]}, {"answer": "septet", "hint": "synonyms for septet", "clues": ["seven", "sevener", "7", "heptad", "sevensome", "septenary", "septette"]}, {"answer": "sepulture", "hint": "synonyms for sepulture", "clues": ["sepulchre", "burial chamber", "burial", "inhumation", "entombment", "interment", "sepulture"]}, {"answer": "sequence", "hint": "synonyms for sequence", "clues": ["chronological sequence", "episode", "chronological succession", "succession", "successiveness", "sequence"]}, {"answer": "serenity", "hint": "synonyms for serenity", "clues": ["ataraxis", "quiet", "peace of mind", "tranquillity", "peacefulness", "peace", "repose", "heartsease", "placidity", "serenity"]}, {"answer": "seriousness", "hint": "synonyms for seriousness", "clues": ["serious-mindedness", "distressfulness", "sincerity", "earnestness", "seriousness"]}, {"answer": "service", "hint": "synonyms for service", "clues": ["table service", "overhaul", "inspection and repair", "armed service", "divine service", "servicing", "military service", "help", "serve", "avail", "service of process", "religious service", "service"]}, {"answer": "serviceability", "hint": "synonyms for serviceability", "clues": ["usability", "serviceableness", "useableness", "serviceability"]}, {"answer": "serviceableness", "hint": "synonyms for serviceableness", "clues": ["serviceability", "usability", "usableness", "serviceableness"]}, {"answer": "services", "hint": "synonyms for services", "clues": ["table service", "overhaul", "inspection and repair", "armed service", "divine service", "servicing", "service", "military service", "help", "serve", "avail", "service of process", "religious service"]}, {"answer": "serving", "hint": "synonyms for serving", "clues": ["service", "portion", "service of process", "helping", "serving"]}, {"answer": "sess", "hint": "synonyms for sess", "clues": ["dope", "green goddess", "skunk", "locoweed", "gage", "weed", "smoke", "grass", "sens", "pot", "sess"]}, {"answer": "session", "hint": "synonyms for session", "clues": ["academic session", "sitting", "academic term", "school term", "seance", "session"]}, {"answer": "sessions", "hint": "synonyms for sessions", "clues": ["academic session", "sitting", "academic term", "session", "school term", "seance"]}, {"answer": "sestet", "hint": "synonyms for sestet", "clues": ["half a dozen", "six", "6", "sextet", "sise", "hexad", "sixer", "sextuplet", "sestet"]}, {"answer": "set_phrase", "hint": "synonyms for set phrase", "clues": ["phrase", "idiom", "phrasal idiom", "idiomatic expression", "set phrase"]}, {"answer": "setback", "hint": "synonyms for setback", "clues": ["black eye", "reverse", "reversal", "blow", "setback"]}, {"answer": "setline", "hint": "synonyms for setline", "clues": ["trawl", "trawl line", "trotline", "spiller", "setline"]}, {"answer": "setting", "hint": "synonyms for setting", "clues": ["scene", "place setting", "mount", "stage setting", "mise en scene", "setting"]}, {"answer": "settlement", "hint": "synonyms for settlement", "clues": ["resolution", "small town", "liquidation", "village", "colonization", "colony", "closure", "settlement"]}, {"answer": "settlings", "hint": "synonyms for settlings", "clues": ["settling", "subsiding", "dregs", "subsidence"]}, {"answer": "sevener", "hint": "synonyms for sevener", "clues": ["seven", "7", "heptad", "septenary", "septet", "sevener"]}, {"answer": "sevens", "hint": "synonyms for sevens", "clues": ["seven", "7", "sevener", "parliament", "fantan", "heptad", "septenary", "septet", "seven-spot"]}, {"answer": "seventies", "hint": "synonyms for seventies", "clues": ["seventy", "mid-seventies", "1970s", "70", "seventies"]}, {"answer": "severance", "hint": "synonyms for severance", "clues": ["break", "breach", "rift", "rupture", "falling out", "severing", "severance"]}, {"answer": "severeness", "hint": "synonyms for severeness", "clues": ["badness", "rigor", "grimness", "asperity", "harshness", "stiffness", "hardness", "hardship", "rigourousness", "severity", "inclemency", "austereness", "severeness"]}, {"answer": "severity", "hint": "synonyms for severity", "clues": ["badness", "rigor", "grimness", "asperity", "harshness", "stiffness", "hardness", "hardship", "rigourousness", "severeness", "inclemency", "austereness", "severity"]}, {"answer": "sex", "hint": "synonyms for sex", "clues": ["sexual practice", "sexuality", "sex activity", "sexual urge", "gender", "sex"]}, {"answer": "sex_act", "hint": "synonyms for sex act", "clues": ["sexual intercourse", "coition", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "sex act"]}, {"answer": "sexiness", "hint": "synonyms for sexiness", "clues": ["amorousness", "erotism", "amativeness", "sexiness"]}, {"answer": "sextet", "hint": "synonyms for sextet", "clues": ["sixsome", "half a dozen", "six", "sestet", "6", "sextette", "sise", "hexad", "sixer", "sextuplet"]}, {"answer": "sextuplet", "hint": "synonyms for sextuplet", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "sise", "hexad", "sixer", "sextuplet"]}, {"answer": "sexual_congress", "hint": "synonyms for sexual congress", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual relation", "intercourse", "relation", "sexual congress"]}, {"answer": "sexual_intercourse", "hint": "synonyms for sexual intercourse", "clues": ["coition", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "intercourse", "sexual relation", "relation", "sexual intercourse"]}, {"answer": "sexual_love", "hint": "synonyms for sexual love", "clues": ["love life", "love", "lovemaking", "erotic love", "making love", "sexual love"]}, {"answer": "sexual_relation", "hint": "synonyms for sexual relation", "clues": ["sexual intercourse", "coition", "sex act", "carnal knowledge", "coitus", "congress", "copulation", "sexual congress", "intercourse", "relation", "sexual relation"]}, {"answer": "sexual_union", "hint": "synonyms for sexual union", "clues": ["union", "conjugation", "coupling", "pairing", "mating", "sexual union"]}, {"answer": "shabbiness", "hint": "synonyms for shabbiness", "clues": ["sleaziness", "seediness", "injustice", "iniquity", "unfairness", "manginess", "shabbiness"]}, {"answer": "shabu", "hint": "synonyms for shabu", "clues": ["ice", "chalk", "glass", "trash", "methamphetamine", "crank", "deoxyephedrine", "chicken feed", "meth", "methamphetamine hydrochloride", "shabu"]}, {"answer": "shack", "hint": "synonyms for shack", "clues": ["hovel", "hutch", "hut", "shanty", "shack"]}, {"answer": "shade", "hint": "synonyms for shade", "clues": ["wraith", "tone", "ghost", "spectre", "refinement", "nuance", "spook", "tint", "subtlety", "tad", "nicety", "tincture", "shade"]}, {"answer": "shades", "hint": "synonyms for shades", "clues": ["wraith", "tone", "ghost", "spectre", "refinement", "nuance", "sunglasses", "shade", "spook", "tint", "subtlety", "tad", "nicety", "tincture", "dark glasses"]}, {"answer": "shadow", "hint": "synonyms for shadow", "clues": ["vestige", "phantasma", "fantasm", "trace", "darkness", "dark", "apparition", "phantom", "tincture", "shadow"]}, {"answer": "shadowgraph", "hint": "synonyms for shadowgraph", "clues": ["radiogram", "skiagraph", "skiagram", "radiograph", "shadowgraph"]}, {"answer": "shaft", "hint": "synonyms for shaft", "clues": ["slam", "irradiation", "beam", "gibe", "dig", "rotating shaft", "beam of light", "spear", "shaft of light", "barb", "ray of light", "shot", "light beam", "jibe", "lance", "scape", "ray", "shaft"]}, {"answer": "shaft_of_light", "hint": "synonyms for shaft of light", "clues": ["irradiation", "ray of light", "beam", "light beam", "shaft", "beam of light", "ray", "shaft of light"]}, {"answer": "shag", "hint": "synonyms for shag", "clues": ["roll in the hay", "nookie", "screw", "fuck", "shtup", "piece of ass", "piece of tail", "ass", "nooky", "shag"]}, {"answer": "shake", "hint": "synonyms for shake", "clues": ["wag", "shingle", "tremble", "milk shake", "handclasp", "handshaking", "trill", "shiver", "handshake", "waggle", "shake"]}, {"answer": "shambles", "hint": "synonyms for shambles", "clues": ["shamble", "shuffle", "shuffling", "butchery", "slaughterhouse", "shambling", "abattoir"]}, {"answer": "shammy", "hint": "synonyms for shammy", "clues": ["chamois", "shammy leather", "chammy", "chamois leather", "shammy"]}, {"answer": "shammy_leather", "hint": "synonyms for shammy leather", "clues": ["chamois", "chammy", "shammy", "chammy leather", "chamois leather"]}, {"answer": "shangri-la", "hint": "synonyms for shangri-la", "clues": ["paradise", "nirvana", "heaven", "promised land", "shangri-la"]}, {"answer": "shanty", "hint": "synonyms for shanty", "clues": ["sea chantey", "hovel", "hutch", "hut", "chanty", "shack", "shanty"]}, {"answer": "shape", "hint": "synonyms for shape", "clues": ["form", "configuration", "cast", "pattern", "contour", "embodiment", "conformation", "shape"]}, {"answer": "share", "hint": "synonyms for share", "clues": ["ploughshare", "portion", "contribution", "percentage", "parcel", "plowshare", "part", "share"]}, {"answer": "sharp-sightedness", "hint": "synonyms for sharp-sightedness", "clues": ["acuity", "visual acuity", "alertness", "on the qui vive", "sharp-sightedness"]}, {"answer": "sharpness", "hint": "synonyms for sharpness", "clues": ["acuity", "bite", "keenness", "raciness", "acuteness", "distinctness", "asperity", "edge", "pungency", "sharpness"]}, {"answer": "shaving", "hint": "synonyms for shaving", "clues": ["grazing", "sliver", "paring", "skimming", "shave", "shaving"]}, {"answer": "sheepskin", "hint": "synonyms for sheepskin", "clues": ["diploma", "lambskin", "fleece", "parchment", "sheepskin"]}, {"answer": "sheesha", "hint": "synonyms for sheesha", "clues": ["narghile", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "shisha", "water pipe", "hubble-bubble", "sheesha"]}, {"answer": "sheet", "hint": "synonyms for sheet", "clues": ["sail", "tabloid", "canvass", "flat solid", "mainsheet", "bed sheet", "weather sheet", "shroud", "tack", "piece of paper", "sheet of paper", "plane", "rag", "sheet"]}, {"answer": "shekels", "hint": "synonyms for shekels", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "shekel", "boodle", "lolly", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough"]}, {"answer": "shell", "hint": "synonyms for shell", "clues": ["case", "scale", "plate", "eggshell", "casing", "racing shell", "shell"]}, {"answer": "shelling", "hint": "synonyms for shelling", "clues": ["bombardment", "barrage fire", "barrage", "battery", "shelling"]}, {"answer": "shenanigan", "hint": "synonyms for shenanigan", "clues": ["mischievousness", "trickery", "roguery", "guile", "deviltry", "mischief-making", "wile", "chicanery", "rascality", "devilment", "roguishness", "mischief", "shenanigan"]}, {"answer": "shift", "hint": "synonyms for shift", "clues": ["geological fault", "shift key", "switching", "fracture", "shimmy", "transformation", "transmutation", "work shift", "faulting", "break", "sack", "duty period", "teddy", "chemise", "shifting", "displacement", "slip"]}, {"answer": "shimmy", "hint": "synonyms for shimmy", "clues": ["teddy", "shift", "chemise", "slip", "shimmy"]}, {"answer": "shine", "hint": "synonyms for shine", "clues": ["effulgence", "radiancy", "refulgency", "shine"]}, {"answer": "ship_biscuit", "hint": "synonyms for ship biscuit", "clues": ["hardtack", "sea biscuit", "pilot biscuit", "pilot bread", "ship biscuit"]}, {"answer": "shipment", "hint": "synonyms for shipment", "clues": ["load", "consignment", "cargo", "freight", "lading", "despatch", "payload", "shipment"]}, {"answer": "shipping", "hint": "synonyms for shipping", "clues": ["merchant marine", "merchant vessels", "transport", "transportation", "cargo ships", "shipping"]}, {"answer": "shirking", "hint": "synonyms for shirking", "clues": ["goldbricking", "soldiering", "goofing off", "slacking", "shirking"]}, {"answer": "shisha", "hint": "synonyms for shisha", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "water pipe", "hubble-bubble", "shisha"]}, {"answer": "shit", "hint": "synonyms for shit", "clues": ["darn", "diddlyshit", "tinker's damn", "dirt", "horseshit", "bullshit", "doodly-squat", "turd", "shite", "dogshit", "diddlysquat", "squat", "shucks", "diddly", "dump", "bull", "jack", "hoot", "poop", "red cent", "damn", "crap"]}, {"answer": "shite", "hint": "synonyms for shite", "clues": ["shit", "turd", "poop", "dirt", "crap"]}, {"answer": "shivaree", "hint": "synonyms for shivaree", "clues": ["callithump", "chivaree", "charivari", "belling"]}, {"answer": "shiver", "hint": "synonyms for shiver", "clues": ["frisson", "quiver", "shudder", "thrill", "shake", "tremble", "tingle", "chill", "shiver"]}, {"answer": "shock", "hint": "synonyms for shock", "clues": ["impact", "cushion", "stupor", "shock absorber", "seismic disturbance", "electric shock", "daze", "jar", "jounce", "jolt", "blow", "shock"]}, {"answer": "shoes", "hint": "synonyms for shoes", "clues": ["horseshoe", "shoe", "brake shoe", "skid"]}, {"answer": "shogunate", "hint": "synonyms for shogunate", "clues": ["one-man rule", "tyranny", "dictatorship", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "shogunate"]}, {"answer": "shoo-in", "hint": "synonyms for shoo-in", "clues": ["blowout", "walkaway", "laugher", "runaway", "romp", "shoo-in"]}, {"answer": "shopping_center", "hint": "synonyms for shopping center", "clues": ["shopping centre", "plaza", "shopping mall", "center", "mall"]}, {"answer": "shopping_centre", "hint": "synonyms for shopping centre", "clues": ["shopping center", "plaza", "shopping mall", "center", "mall"]}, {"answer": "shopping_mall", "hint": "synonyms for shopping mall", "clues": ["shopping centre", "plaza", "center", "mall", "shopping mall"]}, {"answer": "short_hundredweight", "hint": "synonyms for short hundredweight", "clues": ["centner", "hundredweight", "cental", "cwt", "quintal", "short hundredweight"]}, {"answer": "short_sleep", "hint": "synonyms for short sleep", "clues": ["forty winks", "snooze", "cat sleep", "catnap", "nap", "short sleep"]}, {"answer": "shortness", "hint": "synonyms for shortness", "clues": ["abruptness", "brusqueness", "gruffness", "truncation", "curtness", "shortness"]}, {"answer": "shorts", "hint": "synonyms for shorts", "clues": ["trunks", "drawers", "boxers", "short pants", "underdrawers", "shortstop", "short", "short circuit", "boxershorts"]}, {"answer": "shout", "hint": "synonyms for shout", "clues": ["yell", "vociferation", "call", "cry", "outcry", "shout"]}, {"answer": "shovel", "hint": "synonyms for shovel", "clues": ["spadeful", "shovelful", "excavator", "power shovel", "digger", "shovel"]}, {"answer": "showing", "hint": "synonyms for showing", "clues": ["screening", "display", "exhibit", "viewing", "showing"]}, {"answer": "showtime", "hint": "synonyms for showtime", "clues": ["offset", "kickoff", "start", "beginning", "starting time", "outset", "get-go", "commencement", "first", "showtime"]}, {"answer": "shred", "hint": "synonyms for shred", "clues": ["tittle", "smidgen", "scintilla", "iota", "whit", "tag end", "tatter", "tag", "rag", "shred"]}, {"answer": "shroud", "hint": "synonyms for shroud", "clues": ["winding-sheet", "mainsheet", "weather sheet", "tack", "winding-clothes", "pall", "cerement", "sheet", "shroud"]}, {"answer": "shtup", "hint": "synonyms for shtup", "clues": ["roll in the hay", "nookie", "screw", "fuck", "piece of ass", "piece of tail", "shag", "ass", "nooky", "shtup"]}, {"answer": "shuck", "hint": "synonyms for shuck", "clues": ["straw", "stubble", "chaff", "stalk", "husk", "shuck"]}, {"answer": "shucks", "hint": "synonyms for shucks", "clues": ["shit", "darn", "stalk", "tinker's damn", "husk", "shuck", "straw", "stubble", "chaff", "hoot", "red cent", "damn"]}, {"answer": "shudder", "hint": "synonyms for shudder", "clues": ["tremor", "frisson", "quiver", "shiver", "thrill", "tingle", "chill", "shudder"]}, {"answer": "shuffle", "hint": "synonyms for shuffle", "clues": ["make", "shuffling", "shamble", "shambling", "shuffle"]}, {"answer": "shuffling", "hint": "synonyms for shuffling", "clues": ["make", "shuffle", "shamble", "shambling", "shuffling"]}, {"answer": "si", "hint": "synonyms for si", "clues": ["te", "atomic number 14", "silicon", "ti", "si"]}, {"answer": "sibilation", "hint": "synonyms for sibilation", "clues": ["hiss", "fizzle", "assibilation", "hushing"]}, {"answer": "sickeningness", "hint": "synonyms for sickeningness", "clues": ["disgustingness", "unsavoriness", "nauseatingness", "distastefulness", "sickeningness"]}, {"answer": "sideline", "hint": "synonyms for sideline", "clues": ["avocation", "out of bounds", "pursuit", "hobby", "spare-time activity", "by-line", "sideline"]}, {"answer": "sidesplitter", "hint": "synonyms for sidesplitter", "clues": ["riot", "howler", "wow", "belly laugh", "thigh-slapper", "scream", "sidesplitter"]}, {"answer": "sight", "hint": "synonyms for sight", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "view", "mess", "passel", "great deal", "vision", "visual sense", "plenty", "ken", "mountain", "tidy sum", "visual modality", "raft", "spate", "hatful", "lot", "mickle", "survey", "stack", "muckle", "pile", "batch", "flock", "pot", "sight"]}, {"answer": "sights", "hint": "synonyms for sights", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "view", "mess", "passel", "great deal", "vision", "visual sense", "plenty", "ken", "mountain", "tidy sum", "visual modality", "raft", "spate", "hatful", "sight", "lot", "mickle", "survey", "stack", "muckle", "pile", "batch", "flock", "pot"]}, {"answer": "sign_of_the_zodiac", "hint": "synonyms for sign of the zodiac", "clues": ["mansion", "planetary house", "star sign", "house", "sign", "sign of the zodiac"]}, {"answer": "signature", "hint": "synonyms for signature", "clues": ["signature tune", "touch", "key signature", "theme song", "signature"]}, {"answer": "significance", "hint": "synonyms for significance", "clues": ["implication", "import", "meaning", "signification", "significance"]}, {"answer": "silence", "hint": "synonyms for silence", "clues": ["muteness", "secretiveness", "quiet", "secrecy", "silence"]}, {"answer": "silicon_chip", "hint": "synonyms for silicon chip", "clues": ["microchip", "microprocessor chip", "chip", "silicon chip"]}, {"answer": "silk_hat", "hint": "synonyms for silk hat", "clues": ["beaver", "high hat", "topper", "stovepipe", "top hat", "dress hat", "opera hat", "silk hat"]}, {"answer": "silk_stocking", "hint": "synonyms for silk stocking", "clues": ["nylons", "rayons", "nylon stocking", "silk stocking"]}, {"answer": "silliness", "hint": "synonyms for silliness", "clues": ["fatuousness", "absurdity", "fatuity", "giddiness", "silliness"]}, {"answer": "similitude", "hint": "synonyms for similitude", "clues": ["alikeness", "twin", "counterpart", "similitude"]}, {"answer": "simoleons", "hint": "synonyms for simoleons", "clues": ["lucre", "sugar", "lettuce", "pelf", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "wampum", "cabbage", "bread", "loot", "dough", "simoleons"]}, {"answer": "simpleness", "hint": "synonyms for simpleness", "clues": ["ease", "restraint", "simple mindedness", "chasteness", "simplicity", "easiness", "simpleness"]}, {"answer": "simplicity", "hint": "synonyms for simplicity", "clues": ["simmpleness", "ease", "restraint", "simple mindedness", "chasteness", "easiness", "simplicity"]}, {"answer": "simulation", "hint": "synonyms for simulation", "clues": ["pretence", "computer simulation", "pretending", "model", "feigning", "simulation"]}, {"answer": "sin", "hint": "synonyms for sin", "clues": ["sinfulness", "sinning", "sine", "hell", "wickedness"]}, {"answer": "sincerity", "hint": "synonyms for sincerity", "clues": ["seriousness", "serious-mindedness", "earnestness", "unassumingness", "sincerity"]}, {"answer": "sinew", "hint": "synonyms for sinew", "clues": ["muscle", "brawn", "brawniness", "heftiness", "muscularity", "sinew"]}, {"answer": "single-member_system", "hint": "synonyms for single-member system", "clues": ["uninominal system", "uninominal voting system", "scrutin uninomial system", "single-member system"]}, {"answer": "single-valued_function", "hint": "synonyms for single-valued function", "clues": ["map", "function", "mathematical function", "mapping", "single-valued function"]}, {"answer": "singles", "hint": "synonyms for singles", "clues": ["bingle", "single", "unity", "one", "1", "ace"]}, {"answer": "sink", "hint": "synonyms for sink", "clues": ["swallow hole", "sinkhole", "sump", "cesspool", "cesspit", "sink"]}, {"answer": "sis", "hint": "synonyms for sis", "clues": ["si", "ti", "te", "atomic number 14", "silicon"]}, {"answer": "sise", "hint": "synonyms for sise", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "hexad", "sixer", "sextuplet", "sise"]}, {"answer": "sissiness", "hint": "synonyms for sissiness", "clues": ["unmanliness", "womanishness", "effeminateness", "softness", "effeminacy", "sissiness"]}, {"answer": "site", "hint": "synonyms for site", "clues": ["situation", "land site", "web site", "internet site", "site"]}, {"answer": "sitting_room", "hint": "synonyms for sitting room", "clues": ["front room", "parlour", "living room", "sitting room"]}, {"answer": "situation", "hint": "synonyms for situation", "clues": ["billet", "site", "post", "spot", "place", "office", "position", "berth", "situation"]}, {"answer": "sixer", "hint": "synonyms for sixer", "clues": ["half a dozen", "six", "6", "sestet", "sextet", "sise", "hexad", "sextuplet", "sixer"]}, {"answer": "sixties", "hint": "synonyms for sixties", "clues": ["mid-sixties", "1960s", "sixty", "60", "sixties"]}, {"answer": "sizeableness", "hint": "synonyms for sizeableness", "clues": ["wideness", "vastness", "enormousness", "immenseness", "immensity", "grandness", "greatness", "sizeableness"]}, {"answer": "skag", "hint": "synonyms for skag", "clues": ["big H", "hell dust", "smack", "thunder", "scag", "nose drops", "skag"]}, {"answer": "skeleton", "hint": "synonyms for skeleton", "clues": ["frame", "skeletal frame", "underframe", "skeleton in the cupboard", "skeleton in the closet", "skeleton"]}, {"answer": "skepticism", "hint": "synonyms for skepticism", "clues": ["agnosticism", "disbelief", "mental rejection", "scepticism", "incredulity"]}, {"answer": "sketch", "hint": "synonyms for sketch", "clues": ["resume", "study", "cartoon", "survey", "vignette", "sketch"]}, {"answer": "skiagram", "hint": "synonyms for skiagram", "clues": ["radiogram", "skiagraph", "shadowgraph", "radiograph", "skiagram"]}, {"answer": "skiagraph", "hint": "synonyms for skiagraph", "clues": ["radiogram", "shadowgraph", "skiagram", "radiograph", "skiagraph"]}, {"answer": "skid", "hint": "synonyms for skid", "clues": ["brake shoe", "shoe", "sideslip", "slip", "skid"]}, {"answer": "skill", "hint": "synonyms for skill", "clues": ["science", "acquirement", "accomplishment", "acquisition", "attainment", "skill"]}, {"answer": "skimmer", "hint": "synonyms for skimmer", "clues": ["leghorn", "straw hat", "sailor", "boater", "skimmer"]}, {"answer": "skin_senses", "hint": "synonyms for skin senses", "clues": ["cutaneous senses", "touch", "touch modality", "sense of touch", "skin senses"]}, {"answer": "skulduggery", "hint": "synonyms for skulduggery", "clues": ["slickness", "skullduggery", "trickery", "hocus-pocus", "jiggery-pokery", "hanky panky"]}, {"answer": "skullduggery", "hint": "synonyms for skullduggery", "clues": ["slickness", "trickery", "hocus-pocus", "skulduggery", "jiggery-pokery", "hanky panky"]}, {"answer": "skunk", "hint": "synonyms for skunk", "clues": ["dope", "green goddess", "locoweed", "gage", "weed", "smoke", "sess", "shutout", "grass", "sens", "pot", "skunk"]}, {"answer": "skyline", "hint": "synonyms for skyline", "clues": ["apparent horizon", "visible horizon", "horizon", "sensible horizon", "skyline"]}, {"answer": "slacking", "hint": "synonyms for slacking", "clues": ["goldbricking", "soldiering", "shirking", "goofing off", "slacking"]}, {"answer": "slackness", "hint": "synonyms for slackness", "clues": ["remissness", "lassitude", "inanition", "lethargy", "laxity", "slack", "laxness", "slackness"]}, {"answer": "slacks", "hint": "synonyms for slacks", "clues": ["falloff", "quag", "falling off", "mire", "slack", "quagmire", "slack water", "morass", "slump", "slackness", "drop-off"]}, {"answer": "slaked_lime", "hint": "synonyms for slaked lime", "clues": ["lime", "lime hydrate", "caustic lime", "calcium hydrate", "hydrated lime", "calcium hydroxide", "slaked lime"]}, {"answer": "slam", "hint": "synonyms for slam", "clues": ["barb", "sweep", "shot", "gibe", "jibe", "dig", "shaft", "slam"]}, {"answer": "slammer", "hint": "synonyms for slammer", "clues": ["poky", "clink", "gaol", "jail", "jailhouse", "slammer"]}, {"answer": "slander", "hint": "synonyms for slander", "clues": ["aspersion", "denigration", "calumny", "defamation", "slander"]}, {"answer": "slang", "hint": "synonyms for slang", "clues": ["argot", "slang term", "patois", "jargon", "cant", "lingo", "slang expression", "vernacular", "slang"]}, {"answer": "slash", "hint": "synonyms for slash", "clues": ["separatrix", "diagonal", "virgule", "gash", "solidus", "stroke", "slash"]}, {"answer": "slaughter", "hint": "synonyms for slaughter", "clues": ["massacre", "trouncing", "carnage", "thrashing", "butchery", "whipping", "mass murder", "debacle", "drubbing", "walloping", "slaughter"]}, {"answer": "sledge", "hint": "synonyms for sledge", "clues": ["maul", "sled", "sleigh", "sledgehammer", "sledge"]}, {"answer": "sleeper", "hint": "synonyms for sleeper", "clues": ["sleeping car", "tie", "wagon-lit", "railroad tie", "crosstie", "sleeper"]}, {"answer": "sleeping_accommodation", "hint": "synonyms for sleeping accommodation", "clues": ["bedroom", "chamber", "bedchamber", "sleeping room", "sleeping accommodation"]}, {"answer": "sleeping_room", "hint": "synonyms for sleeping room", "clues": ["bedroom", "chamber", "bedchamber", "sleeping accommodation", "sleeping room"]}, {"answer": "sleepwalking", "hint": "synonyms for sleepwalking", "clues": ["noctambulism", "somnambulism", "noctambulation", "somnambulation", "sleepwalking"]}, {"answer": "slenderness", "hint": "synonyms for slenderness", "clues": ["tenuity", "thinness", "slightness", "slimness", "slenderness"]}, {"answer": "slew", "hint": "synonyms for slew", "clues": ["good deal", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "slew"]}, {"answer": "slews", "hint": "synonyms for slews", "clues": ["good deal", "lots", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "wad", "mass", "mess", "passel", "great deal", "piles", "plenty", "mountain", "tidy sum", "dozens", "lashings", "pot", "tons", "gobs", "raft", "spate", "hatful", "scads", "sight", "mickle", "stack", "muckle", "batch", "flock", "scores"]}, {"answer": "slickness", "hint": "synonyms for slickness", "clues": ["skullduggery", "trickery", "slipperiness", "jiggery-pokery", "hocus-pocus", "slick", "slip", "glibness", "hanky panky", "slickness"]}, {"answer": "slide", "hint": "synonyms for slide", "clues": ["coast", "microscope slide", "chute", "swoop", "slideway", "sliding board", "glide", "playground slide", "lantern slide", "sloping trough", "slide"]}, {"answer": "slightness", "hint": "synonyms for slightness", "clues": ["slenderness", "delicacy", "pettiness", "triviality", "puniness", "slimness", "slightness"]}, {"answer": "slime", "hint": "synonyms for slime", "clues": ["sludge", "guck", "goop", "gook", "ooze", "muck", "gunk", "slime"]}, {"answer": "sliminess", "hint": "synonyms for sliminess", "clues": ["repulsiveness", "lousiness", "loathsomeness", "wickedness", "vileness", "sliminess"]}, {"answer": "slimness", "hint": "synonyms for slimness", "clues": ["narrow margin", "narrowness", "slightness", "slenderness", "slimness"]}, {"answer": "sling", "hint": "synonyms for sling", "clues": ["catapult", "slingshot", "slingback", "triangular bandage", "scarf bandage", "sling"]}, {"answer": "slip", "hint": "synonyms for slip", "clues": ["eluding", "moorage", "skid", "elusion", "gaucherie", "slickness", "gaffe", "strip", "shimmy", "shift", "pillowcase", "miscue", "solecism", "case", "parapraxis", "faux pas", "slip of paper", "pillow slip", "slipperiness", "teddy", "chemise", "mooring", "slip-up", "slick", "sideslip", "berth", "slip"]}, {"answer": "slipperiness", "hint": "synonyms for slipperiness", "clues": ["slickness", "rascality", "trickiness", "slick", "slip", "shiftiness", "slipperiness"]}, {"answer": "slipstream", "hint": "synonyms for slipstream", "clues": ["airstream", "backwash", "wash", "race", "slipstream"]}, {"answer": "slit", "hint": "synonyms for slit", "clues": ["prick", "incision", "dent", "scratch", "slit"]}, {"answer": "slop", "hint": "synonyms for slop", "clues": ["glop", "pigswill", "swill", "mire", "slops", "mush", "pigwash", "treacle"]}, {"answer": "sloppiness", "hint": "synonyms for sloppiness", "clues": ["sentimentality", "carelessness", "drippiness", "mushiness", "mawkishness", "soupiness", "sloppiness"]}, {"answer": "slops", "hint": "synonyms for slops", "clues": ["swill", "mire", "mush", "slop", "treacle", "glop", "pigswill", "pigwash"]}, {"answer": "slowness", "hint": "synonyms for slowness", "clues": ["maladroitness", "deliberateness", "ineptitude", "clumsiness", "retardation", "unhurriedness", "awkwardness", "mental retardation", "deliberation", "ineptness", "subnormality", "slowness"]}, {"answer": "sludge", "hint": "synonyms for sludge", "clues": ["guck", "goop", "gook", "slime", "ooze", "muck", "gunk", "sludge"]}, {"answer": "slug", "hint": "synonyms for slug", "clues": ["type slug", "lick", "clout", "bullet", "poke", "biff", "punch", "slug"]}, {"answer": "sluggishness", "hint": "synonyms for sluggishness", "clues": ["lethargy", "flatness", "phlegm", "languor", "sluggishness"]}, {"answer": "sluice_valve", "hint": "synonyms for sluice valve", "clues": ["penstock", "floodgate", "sluicegate", "water gate", "head gate", "sluice valve"]}, {"answer": "sluicegate", "hint": "synonyms for sluicegate", "clues": ["penstock", "sluice valve", "floodgate", "water gate", "head gate", "sluicegate"]}, {"answer": "slump", "hint": "synonyms for slump", "clues": ["slack", "falloff", "drop-off", "falling off", "slump"]}, {"answer": "slur", "hint": "synonyms for slur", "clues": ["aspersion", "smear", "spot", "smudge", "smirch", "daub", "blot", "slur"]}, {"answer": "slyness", "hint": "synonyms for slyness", "clues": ["wiliness", "craft", "guile", "cunning", "craftiness", "foxiness", "slyness"]}, {"answer": "small_talk", "hint": "synonyms for small talk", "clues": ["chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "tittle-tattle", "gab", "small talk"]}, {"answer": "smarminess", "hint": "synonyms for smarminess", "clues": ["fulsomeness", "unctuousness", "unction", "oleaginousness", "oiliness", "smarminess"]}, {"answer": "smart_set", "hint": "synonyms for smart set", "clues": ["high society", "beau monde", "bon ton", "society", "smart set"]}, {"answer": "smartness", "hint": "synonyms for smartness", "clues": ["briskness", "last word", "stylishness", "cleverness", "swank", "chichi", "chicness", "chic", "brightness", "modishness", "alacrity", "smartness"]}, {"answer": "smasher", "hint": "synonyms for smasher", "clues": ["strike", "smash", "hit", "bang", "smasher"]}, {"answer": "smear", "hint": "synonyms for smear", "clues": ["stain", "spot", "vilification", "slur", "malignment", "blot", "smudge", "smirch", "daub", "smear"]}, {"answer": "smell", "hint": "synonyms for smell", "clues": ["olfactory sensation", "sense of smell", "olfactory property", "olfactory perception", "odour", "olfactory modality", "scent", "smelling", "olfaction", "aroma"]}, {"answer": "smidge", "hint": "synonyms for smidge", "clues": ["tittle", "smidgen", "scintilla", "iota", "whit", "shred"]}, {"answer": "smidgen", "hint": "synonyms for smidgen", "clues": ["tittle", "whit", "scintilla", "iota", "smidgin", "shred", "smidge"]}, {"answer": "smidgeon", "hint": "synonyms for smidgeon", "clues": ["tittle", "smidgen", "scintilla", "iota", "whit", "shred"]}, {"answer": "smidgin", "hint": "synonyms for smidgin", "clues": ["tittle", "smidgen", "scintilla", "iota", "whit", "shred"]}, {"answer": "smirch", "hint": "synonyms for smirch", "clues": ["stain", "spot", "slur", "blot", "smudge", "daub", "smear", "smirch"]}, {"answer": "smock", "hint": "synonyms for smock", "clues": ["duster", "gabardine", "dust coat", "smock"]}, {"answer": "smoke", "hint": "synonyms for smoke", "clues": ["smoking", "dope", "green goddess", "bullet", "skunk", "fume", "locoweed", "heater", "gage", "roll of tobacco", "weed", "fastball", "hummer", "sess", "grass", "sens", "pot", "smoke"]}, {"answer": "smoker", "hint": "synonyms for smoker", "clues": ["smoking car", "smoking compartment", "smoking carriage", "stag party", "smoker"]}, {"answer": "smooching", "hint": "synonyms for smooching", "clues": ["fondling", "necking", "kissing", "snuggling", "caressing", "cuddling", "petting", "hugging", "smooching"]}, {"answer": "smoothness", "hint": "synonyms for smoothness", "clues": ["eloquence", "suavity", "fluency", "blandness", "suaveness", "smoothness"]}, {"answer": "smorgasbord", "hint": "synonyms for smorgasbord", "clues": ["potpourri", "miscellany", "variety", "mixture", "mixed bag", "assortment", "motley", "salmagundi", "smorgasbord"]}, {"answer": "smudge", "hint": "synonyms for smudge", "clues": ["smear", "spot", "smirch", "daub", "slur", "blot", "smudge"]}, {"answer": "smut", "hint": "synonyms for smut", "clues": ["crock", "porno", "dirty word", "pornography", "obscenity", "lampblack", "vulgarism", "soot", "carbon black", "filth", "erotica", "smut"]}, {"answer": "smuts", "hint": "synonyms for smuts", "clues": ["crock", "porno", "dirty word", "pornography", "smut", "obscenity", "lampblack", "vulgarism", "soot", "carbon black", "filth", "erotica"]}, {"answer": "snag", "hint": "synonyms for snag", "clues": ["tear", "rent", "rip", "hitch", "rub", "hang-up", "split", "snag"]}, {"answer": "snake_pit", "hint": "synonyms for snake pit", "clues": ["sanatorium", "nut house", "hellhole", "funny farm", "loony bin", "funny house", "hell", "crazy house", "hell on earth", "cuckoo's nest", "booby hatch", "inferno", "madhouse", "the pits", "snake pit"]}, {"answer": "snap", "hint": "synonyms for snap", "clues": ["snatch", "pushover", "cinch", "child's play", "walkover", "breeze", "centering", "grab", "press stud", "ginger nut", "picnic", "ginger snap", "cracking", "snapshot", "snap fastener", "piece of cake", "shot", "duck soup", "catch", "elasticity", "snap bean", "snap"]}, {"answer": "snappishness", "hint": "synonyms for snappishness", "clues": ["peevishness", "temper", "biliousness", "surliness", "pettishness", "irritability", "snappishness"]}, {"answer": "snare", "hint": "synonyms for snare", "clues": ["gin", "side drum", "snare drum", "trap", "noose", "snare"]}, {"answer": "snatch", "hint": "synonyms for snatch", "clues": ["snap", "kidnapping", "catch", "bit", "grab", "snatch"]}, {"answer": "snip", "hint": "synonyms for snip", "clues": ["clipping", "snippet", "snipping", "clip", "snip"]}, {"answer": "snips", "hint": "synonyms for snips", "clues": ["clipping", "snipping", "clip", "snip", "snippet", "tinsnips"]}, {"answer": "snooze", "hint": "synonyms for snooze", "clues": ["forty winks", "cat sleep", "catnap", "short sleep", "nap", "snooze"]}, {"answer": "snorkel", "hint": "synonyms for snorkel", "clues": ["breather", "schnorkel", "schnorchel", "snorkel breather"]}, {"answer": "snorkel_breather", "hint": "synonyms for snorkel breather", "clues": ["breather", "schnorkel", "schnorchel", "snorkel breather"]}, {"answer": "snort", "hint": "synonyms for snort", "clues": ["bird", "snicker", "razz", "hiss", "boo", "raspberry", "hoot", "snigger", "snort"]}, {"answer": "snow", "hint": "synonyms for snow", "clues": ["nose candy", "snowfall", "blow", "coke", "snow"]}, {"answer": "snow_mist", "hint": "synonyms for snow mist", "clues": ["ice crystal", "frost snow", "diamond dust", "ice needle", "poudrin", "frost mist", "snow mist"]}, {"answer": "snuggling", "hint": "synonyms for snuggling", "clues": ["fondling", "necking", "kissing", "caressing", "cuddling", "petting", "hugging", "smooching", "snuggling"]}, {"answer": "so_long", "hint": "synonyms for so long", "clues": ["bye", "auf wiedersehen", "cheerio", "good day", "arrivederci", "good-bye", "adieu", "bye-bye", "adios", "sayonara", "au revoir", "so long"]}, {"answer": "soaker", "hint": "synonyms for soaker", "clues": ["cloudburst", "downpour", "deluge", "torrent", "pelter", "waterspout", "soaker"]}, {"answer": "soap", "hint": "synonyms for soap", "clues": ["liquid ecstasy", "easy lay", "scoop", "grievous bodily harm", "max", "goop", "soap"]}, {"answer": "soapbox", "hint": "synonyms for soapbox", "clues": ["rostrum", "podium", "pulpit", "ambo", "stump", "dais", "soapbox"]}, {"answer": "soberness", "hint": "synonyms for soberness", "clues": ["gravity", "graveness", "sobriety", "sombreness", "soberness"]}, {"answer": "sobriety", "hint": "synonyms for sobriety", "clues": ["gravity", "graveness", "dryness", "temperance", "sombreness", "soberness", "sobriety"]}, {"answer": "sobriquet", "hint": "synonyms for sobriquet", "clues": ["soubriquet", "byname", "cognomen", "nickname", "moniker"]}, {"answer": "social_club", "hint": "synonyms for social club", "clues": ["society", "guild", "club", "order", "lodge", "social club"]}, {"answer": "social_function", "hint": "synonyms for social function", "clues": ["function", "social occasion", "affair", "occasion", "social function"]}, {"answer": "social_occasion", "hint": "synonyms for social occasion", "clues": ["function", "social function", "affair", "occasion", "social occasion"]}, {"answer": "social_organisation", "hint": "synonyms for social organisation", "clues": ["social structure", "social system", "structure", "social organization"]}, {"answer": "social_organization", "hint": "synonyms for social organization", "clues": ["social organisation", "social structure", "social system", "structure"]}, {"answer": "social_structure", "hint": "synonyms for social structure", "clues": ["social organisation", "social system", "structure", "social structure"]}, {"answer": "social_system", "hint": "synonyms for social system", "clues": ["social organisation", "social structure", "structure", "social system"]}, {"answer": "socialisation", "hint": "synonyms for socialisation", "clues": ["socialization", "socialising", "acculturation", "enculturation"]}, {"answer": "socialization", "hint": "synonyms for socialization", "clues": ["socialising", "acculturation", "socialisation", "enculturation"]}, {"answer": "society", "hint": "synonyms for society", "clues": ["beau monde", "guild", "order", "lodge", "smart set", "social club", "club", "bon ton", "high society", "society"]}, {"answer": "sock", "hint": "synonyms for sock", "clues": ["wind cone", "wind sleeve", "wind sock", "drogue", "air sock", "air-sleeve", "sock"]}, {"answer": "sod", "hint": "synonyms for sod", "clues": ["greensward", "sward", "superoxide dismutase", "turf", "sod"]}, {"answer": "soda", "hint": "synonyms for soda", "clues": ["sal soda", "soda water", "sodium carbonate", "washing soda", "pop", "soda ash", "tonic", "soda pop", "soda"]}, {"answer": "soda_ash", "hint": "synonyms for soda ash", "clues": ["sal soda", "sodium carbonate", "soda", "washing soda", "soda ash"]}, {"answer": "soda_pop", "hint": "synonyms for soda pop", "clues": ["pop", "soda", "tonic", "soda water", "soda pop"]}, {"answer": "soda_water", "hint": "synonyms for soda water", "clues": ["seltzer", "club soda", "pop", "tonic", "sparkling water", "carbonated water", "soda", "soda pop", "soda water"]}, {"answer": "sodium_bicarbonate", "hint": "synonyms for sodium bicarbonate", "clues": ["sodium hydrogen carbonate", "bicarbonate of soda", "baking soda", "saleratus", "sodium bicarbonate"]}, {"answer": "sodium_carbonate", "hint": "synonyms for sodium carbonate", "clues": ["sal soda", "washing soda", "soda", "soda ash", "sodium carbonate"]}, {"answer": "sodium_hydrogen_carbonate", "hint": "synonyms for sodium hydrogen carbonate", "clues": ["sodium bicarbonate", "bicarbonate of soda", "baking soda", "saleratus", "sodium hydrogen carbonate"]}, {"answer": "soft-cover", "hint": "synonyms for soft-cover", "clues": ["paperback book", "paperback", "soft-cover book", "softback", "softback book", "soft-cover"]}, {"answer": "soft-cover_book", "hint": "synonyms for soft-cover book", "clues": ["paperback book", "paperback", "softback", "softback book", "soft-cover", "soft-cover book"]}, {"answer": "soft_soap", "hint": "synonyms for soft soap", "clues": ["sweet talk", "blarney", "green soap", "coaxing", "soft soap"]}, {"answer": "softback", "hint": "synonyms for softback", "clues": ["paperback book", "paperback", "soft-cover book", "softback book", "soft-cover", "softback"]}, {"answer": "softback_book", "hint": "synonyms for softback book", "clues": ["paperback book", "paperback", "soft-cover book", "softback", "soft-cover", "softback book"]}, {"answer": "softness", "hint": "synonyms for softness", "clues": ["blurriness", "unmanliness", "fogginess", "gentleness", "fuzziness", "sissiness", "womanishness", "effeminateness", "indistinctness", "mildness", "effeminacy", "softness"]}, {"answer": "software", "hint": "synonyms for software", "clues": ["package", "software system", "software program", "computer software", "software package", "software"]}, {"answer": "software_package", "hint": "synonyms for software package", "clues": ["package", "software product", "software system", "software program", "computer software", "software", "software package"]}, {"answer": "software_program", "hint": "synonyms for software program", "clues": ["package", "software system", "software package", "computer software", "software", "software program"]}, {"answer": "software_system", "hint": "synonyms for software system", "clues": ["package", "software program", "computer software", "software package", "software", "software system"]}, {"answer": "soil", "hint": "synonyms for soil", "clues": ["land", "ground", "dirt", "territory", "soil"]}, {"answer": "sol", "hint": "synonyms for sol", "clues": ["colloidal solution", "so", "colloidal suspension", "soh", "sol"]}, {"answer": "solar_day", "hint": "synonyms for solar day", "clues": ["mean solar day", "24-hour interval", "twenty-four hours", "twenty-four hour period", "day", "solar day"]}, {"answer": "solarium", "hint": "synonyms for solarium", "clues": ["sun parlour", "sun lounge", "sunporch", "sunroom", "solarium"]}, {"answer": "soldiering", "hint": "synonyms for soldiering", "clues": ["soldiership", "goofing off", "goldbricking", "shirking", "slacking", "soldiering"]}, {"answer": "solecism", "hint": "synonyms for solecism", "clues": ["gaucherie", "slip", "faux pas", "gaffe", "solecism"]}, {"answer": "solemnity", "hint": "synonyms for solemnity", "clues": ["solemness", "gravity", "sedateness", "staidness", "solemnity"]}, {"answer": "solicitation", "hint": "synonyms for solicitation", "clues": ["allurement", "ingathering", "collection", "appeal", "solicitation"]}, {"answer": "solid_ground", "hint": "synonyms for solid ground", "clues": ["terra firma", "ground", "dry land", "earth", "land", "solid ground"]}, {"answer": "solidification", "hint": "synonyms for solidification", "clues": ["hardening", "curing", "set", "solidifying", "solidification"]}, {"answer": "solidifying", "hint": "synonyms for solidifying", "clues": ["hardening", "curing", "set", "solidification", "solidifying"]}, {"answer": "solidus", "hint": "synonyms for solidus", "clues": ["bezant", "byzant", "slash", "stroke", "separatrix", "virgule", "diagonal", "solidus"]}, {"answer": "soluble_rna", "hint": "synonyms for soluble rna", "clues": ["transfer RNA", "soluble RNA", "tRNA", "acceptor RNA"]}, {"answer": "solution", "hint": "synonyms for solution", "clues": ["resolution", "result", "answer", "root", "solvent"]}, {"answer": "somaesthesia", "hint": "synonyms for somaesthesia", "clues": ["somataesthesis", "somatosensory system", "somatic sensation", "somesthesia", "somatic sense"]}, {"answer": "somaesthesis", "hint": "synonyms for somaesthesis", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sense"]}, {"answer": "somatesthesia", "hint": "synonyms for somatesthesia", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sensation", "somatic sense"]}, {"answer": "somatic_sense", "hint": "synonyms for somatic sense", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sense"]}, {"answer": "somatic_sensory_system", "hint": "synonyms for somatic sensory system", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sense"]}, {"answer": "somatosensory_system", "hint": "synonyms for somatosensory system", "clues": ["somataesthesis", "somaesthesia", "somatic sensory system", "somatic sense"]}, {"answer": "somberness", "hint": "synonyms for somberness", "clues": ["gloominess", "graveness", "sombreness", "soberness", "gravity", "gloom", "sobriety"]}, {"answer": "sombreness", "hint": "synonyms for sombreness", "clues": ["gloominess", "graveness", "somberness", "gravity", "gloom", "sobriety"]}, {"answer": "somebody", "hint": "synonyms for somebody", "clues": ["mortal", "soul", "individual", "someone", "person", "somebody"]}, {"answer": "someone", "hint": "synonyms for someone", "clues": ["mortal", "soul", "individual", "somebody", "person", "someone"]}, {"answer": "somersault", "hint": "synonyms for somersault", "clues": ["somersaulting", "somerset", "summersault", "flip", "summerset"]}, {"answer": "somersaulting", "hint": "synonyms for somersaulting", "clues": ["somersault", "somerset", "flip", "summerset"]}, {"answer": "somerset", "hint": "synonyms for somerset", "clues": ["somersault", "flip", "summerset", "somerset"]}, {"answer": "somesthesia", "hint": "synonyms for somesthesia", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sensation", "somatic sense"]}, {"answer": "somesthesis", "hint": "synonyms for somesthesis", "clues": ["somataesthesis", "somatosensory system", "somaesthesia", "somatic sense"]}, {"answer": "somnambulation", "hint": "synonyms for somnambulation", "clues": ["sleepwalking", "noctambulism", "somnambulism", "noctambulation", "somnambulation"]}, {"answer": "somnambulism", "hint": "synonyms for somnambulism", "clues": ["sleepwalking", "noctambulism", "noctambulation", "somnambulation", "somnambulism"]}, {"answer": "song", "hint": "synonyms for song", "clues": ["birdsong", "vocal", "call", "birdcall", "strain", "song"]}, {"answer": "song_and_dance", "hint": "synonyms for song and dance", "clues": ["fairy story", "fairy tale", "cock-and-bull story", "song and dance"]}, {"answer": "sonority", "hint": "synonyms for sonority", "clues": ["reverberance", "resonance", "vibrancy", "ringing", "plangency", "sonorousness", "sonority"]}, {"answer": "sonorousness", "hint": "synonyms for sonorousness", "clues": ["reverberance", "resonance", "vibrancy", "ringing", "plangency", "sonority", "sonorousness"]}, {"answer": "soot", "hint": "synonyms for soot", "clues": ["crock", "carbon black", "smut", "lampblack", "soot"]}, {"answer": "soot_black", "hint": "synonyms for soot black", "clues": ["ebony", "coal black", "jet black", "sable", "pitch black", "soot black"]}, {"answer": "sophistication", "hint": "synonyms for sophistication", "clues": ["sophism", "mundanity", "worldliness", "sophistry", "mundaneness", "edification", "sophistication"]}, {"answer": "sordidness", "hint": "synonyms for sordidness", "clues": ["despicableness", "baseness", "despicability", "contemptibility", "sordidness"]}, {"answer": "sorrow", "hint": "synonyms for sorrow", "clues": ["grief", "ruefulness", "rue", "regret", "sorrow"]}, {"answer": "sort", "hint": "synonyms for sort", "clues": ["variety", "form", "sorting", "kind"]}, {"answer": "soubriquet", "hint": "synonyms for soubriquet", "clues": ["byname", "cognomen", "sobriquet", "nickname", "moniker"]}, {"answer": "soul", "hint": "synonyms for soul", "clues": ["soulfulness", "mortal", "individual", "somebody", "someone", "person", "soul"]}, {"answer": "soupcon", "hint": "synonyms for soupcon", "clues": ["touch", "hint", "jot", "mite", "tinge", "pinch", "speck", "soupcon"]}, {"answer": "soupiness", "hint": "synonyms for soupiness", "clues": ["creaminess", "sentimentality", "sloppiness", "drippiness", "mushiness", "mawkishness", "soupiness"]}, {"answer": "source", "hint": "synonyms for source", "clues": ["reservoir", "reference", "rootage", "seed", "beginning", "root", "origin", "germ", "source"]}, {"answer": "sourness", "hint": "synonyms for sourness", "clues": ["tartness", "moroseness", "acidity", "sour", "sulkiness", "sullenness", "sourness"]}, {"answer": "souvenir", "hint": "synonyms for souvenir", "clues": ["memento", "keepsake", "relic", "token", "souvenir"]}, {"answer": "spa", "hint": "synonyms for spa", "clues": ["watering place", "watering hole", "health club", "health spa", "resort hotel", "spa"]}, {"answer": "space", "hint": "synonyms for space", "clues": ["distance", "place", "blank", "infinite", "outer space", "blank space", "quad", "space"]}, {"answer": "span", "hint": "synonyms for span", "clues": ["yoke", "duet", "pair", "twain", "dyad", "straddle", "couplet", "brace", "twosome", "bridge", "duad", "duo", "distich", "span"]}, {"answer": "spare-time_activity", "hint": "synonyms for spare-time activity", "clues": ["avocation", "pursuit", "hobby", "by-line", "sideline", "spare-time activity"]}, {"answer": "spareness", "hint": "synonyms for spareness", "clues": ["thinness", "sparseness", "sparsity", "leanness"]}, {"answer": "spark", "hint": "synonyms for spark", "clues": ["arc", "light", "twinkle", "glint", "discharge", "sparkle", "electric arc", "flicker", "electric discharge", "spark"]}, {"answer": "sparkle", "hint": "synonyms for sparkle", "clues": ["spark", "light", "twinkle", "glitter", "coruscation", "scintillation", "glisten", "sparkle"]}, {"answer": "sparkling_water", "hint": "synonyms for sparkling water", "clues": ["carbonated water", "soda water", "seltzer", "club soda", "sparkling water"]}, {"answer": "spat", "hint": "synonyms for spat", "clues": ["bickering", "pettifoggery", "tiff", "gaiter", "fuss", "squabble", "spat"]}, {"answer": "spate", "hint": "synonyms for spate", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "surge", "freshet", "passel", "great deal", "hatful", "upsurge", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "rush", "pot", "spate"]}, {"answer": "spattering", "hint": "synonyms for spattering", "clues": ["spatter", "splashing", "splutter", "sputtering"]}, {"answer": "speaker", "hint": "synonyms for speaker", "clues": ["loudspeaker", "speaker unit", "speaker system", "speaker"]}, {"answer": "speaker_system", "hint": "synonyms for speaker system", "clues": ["loudspeaker", "speaker unit", "speaker", "loudspeaker system"]}, {"answer": "speaker_unit", "hint": "synonyms for speaker unit", "clues": ["loudspeaker", "speaker system", "speaker", "speaker unit"]}, {"answer": "spear", "hint": "synonyms for spear", "clues": ["lance", "fishgig", "gig", "shaft", "fizgig", "spear"]}, {"answer": "special_k", "hint": "synonyms for special k", "clues": ["jet", "green", "special K", "super C", "cat valium", "super acid", "honey oil"]}, {"answer": "specialisation", "hint": "synonyms for specialisation", "clues": ["specialization", "differentiation", "specialism", "specialty"]}, {"answer": "speciality", "hint": "synonyms for speciality", "clues": ["specialization", "strength", "specialness", "long suit", "metier", "strong suit", "forte", "peculiarity", "strong point", "specialism", "distinctiveness", "specialty"]}, {"answer": "specialization", "hint": "synonyms for specialization", "clues": ["differentiation", "specialism", "specialisation", "specialty"]}, {"answer": "specialness", "hint": "synonyms for specialness", "clues": ["peculiarity", "distinctiveness", "particularity", "specialty", "specialness"]}, {"answer": "specialty", "hint": "synonyms for specialty", "clues": ["specialization", "strength", "specialness", "long suit", "metier", "strong suit", "speciality", "forte", "peculiarity", "strong point", "specialism", "distinctiveness"]}, {"answer": "species", "hint": "synonyms for species", "clues": ["metal money", "specie", "mintage", "coinage"]}, {"answer": "speck", "hint": "synonyms for speck", "clues": ["mote", "hint", "mite", "jot", "molecule", "tinge", "atom", "touch", "soupcon", "corpuscle", "particle", "pinch", "pinpoint", "speck"]}, {"answer": "speckle", "hint": "synonyms for speckle", "clues": ["spot", "fleck", "patch", "dapple", "maculation", "speckle"]}, {"answer": "specs", "hint": "synonyms for specs", "clues": ["eyeglasses", "glasses", "spectacles", "specification", "spec"]}, {"answer": "spectacles", "hint": "synonyms for spectacles", "clues": ["spectacle", "specs", "eyeglasses", "glasses"]}, {"answer": "specter", "hint": "synonyms for specter", "clues": ["shade", "wraith", "spook", "spectre", "ghost"]}, {"answer": "spectre", "hint": "synonyms for spectre", "clues": ["shade", "wraith", "spook", "ghost", "specter"]}, {"answer": "spectrographic_analysis", "hint": "synonyms for spectrographic analysis", "clues": ["spectrometry", "spectrum analysis", "spectroscopy", "spectroscopic analysis", "spectrographic analysis"]}, {"answer": "spectrometry", "hint": "synonyms for spectrometry", "clues": ["spectrographic analysis", "spectrum analysis", "spectroscopy", "spectroscopic analysis", "spectrometry"]}, {"answer": "spectroscopic_analysis", "hint": "synonyms for spectroscopic analysis", "clues": ["spectrographic analysis", "spectrum analysis", "spectroscopy", "spectrometry", "spectroscopic analysis"]}, {"answer": "spectroscopy", "hint": "synonyms for spectroscopy", "clues": ["spectrographic analysis", "spectrum analysis", "spectroscopic analysis", "spectrometry", "spectroscopy"]}, {"answer": "spectrum_analysis", "hint": "synonyms for spectrum analysis", "clues": ["spectrographic analysis", "spectroscopy", "spectroscopic analysis", "spectrometry", "spectrum analysis"]}, {"answer": "speculation", "hint": "synonyms for speculation", "clues": ["venture", "hypothesis", "meditation", "surmise", "guess", "surmisal", "supposition", "conjecture", "speculation"]}, {"answer": "speech", "hint": "synonyms for speech", "clues": ["speech communication", "address", "voice communication", "words", "language", "actor's line", "delivery", "oral communication", "lecture", "manner of speaking", "talking to", "spoken language", "speech"]}, {"answer": "speech_communication", "hint": "synonyms for speech communication", "clues": ["voice communication", "speech", "oral communication", "spoken communication", "language", "spoken language"]}, {"answer": "speed", "hint": "synonyms for speed", "clues": ["stop number", "swiftness", "amphetamine", "fastness", "upper", "f number", "velocity", "pep pill", "hurrying", "focal ratio", "speeding"]}, {"answer": "speediness", "hint": "synonyms for speediness", "clues": ["rapidness", "celerity", "quickness", "rapidity", "speediness"]}, {"answer": "spell", "hint": "synonyms for spell", "clues": ["patch", "go", "while", "piece", "magic spell", "turn", "tour", "charm", "spell"]}, {"answer": "spending", "hint": "synonyms for spending", "clues": ["expenditure", "disbursement", "disbursal", "outlay", "outgo", "spending"]}, {"answer": "sphere", "hint": "synonyms for sphere", "clues": ["firmament", "sphere of influence", "welkin", "heavens", "celestial sphere", "sector", "empyrean", "vault of heaven", "sphere"]}, {"answer": "sphericalness", "hint": "synonyms for sphericalness", "clues": ["rotundness", "globosity", "sphericity", "globularness", "rotundity", "sphericalness"]}, {"answer": "sphericity", "hint": "synonyms for sphericity", "clues": ["rotundness", "sphericalness", "globosity", "globularness", "rotundity", "sphericity"]}, {"answer": "spiceberry", "hint": "synonyms for spiceberry", "clues": ["wintergreen", "teaberry", "checkerberry", "boxberry", "spiceberry"]}, {"answer": "spiciness", "hint": "synonyms for spiciness", "clues": ["spicery", "spice", "gaminess", "ribaldry", "raciness", "spiciness"]}, {"answer": "spike_arrester", "hint": "synonyms for spike arrester", "clues": ["surge suppressor", "spike suppressor", "surge protector", "lightning arrester", "spike arrester"]}, {"answer": "spike_suppressor", "hint": "synonyms for spike suppressor", "clues": ["surge suppressor", "spike arrester", "surge protector", "lightning arrester", "spike suppressor"]}, {"answer": "spile", "hint": "synonyms for spile", "clues": ["stilt", "pile", "bung", "piling"]}, {"answer": "spill", "hint": "synonyms for spill", "clues": ["fall", "wasteweir", "tumble", "release", "spillway", "spillage", "spill"]}, {"answer": "spiller", "hint": "synonyms for spiller", "clues": ["trawl", "trawl line", "setline", "trotline", "spiller"]}, {"answer": "spin", "hint": "synonyms for spin", "clues": ["tailspin", "twist", "whirl", "twirl", "spin"]}, {"answer": "spindle", "hint": "synonyms for spindle", "clues": ["mandrel", "arbor", "spike", "spindle"]}, {"answer": "spirit", "hint": "synonyms for spirit", "clues": ["heart", "purport", "liveliness", "life", "sprightliness", "intent", "spirit"]}, {"answer": "spiritedness", "hint": "synonyms for spiritedness", "clues": ["invigoration", "animation", "brio", "vivification", "spiritedness"]}, {"answer": "spirits", "hint": "synonyms for spirits", "clues": ["liquor", "purport", "hard drink", "life", "hard liquor", "intent", "heart", "strong drink", "liveliness", "spirit", "sprightliness", "booze"]}, {"answer": "spirituality", "hint": "synonyms for spirituality", "clues": ["church property", "spiritualty", "spiritualism", "otherworldliness"]}, {"answer": "spite", "hint": "synonyms for spite", "clues": ["spitefulness", "nastiness", "venom", "bitchiness", "malice", "cattiness", "maliciousness", "spite"]}, {"answer": "spitefulness", "hint": "synonyms for spitefulness", "clues": ["spite", "nastiness", "venom", "bitchiness", "malice", "cattiness", "maliciousness", "spitefulness"]}, {"answer": "splash", "hint": "synonyms for splash", "clues": ["splatter", "splashing", "dab", "plash", "spattering"]}, {"answer": "splashiness", "hint": "synonyms for splashiness", "clues": ["ostentation", "pompousness", "pomposity", "puffiness", "inflation", "ostentatiousness", "pretentiousness", "splashiness"]}, {"answer": "splatter", "hint": "synonyms for splatter", "clues": ["spatter", "sputtering", "dab", "splutter", "splash"]}, {"answer": "splattering", "hint": "synonyms for splattering", "clues": ["spatter", "splashing", "splutter", "sputtering"]}, {"answer": "splendor", "hint": "synonyms for splendor", "clues": ["grandeur", "brilliancy", "splendour", "grandness", "magnificence", "lustre", "luster"]}, {"answer": "splendour", "hint": "synonyms for splendour", "clues": ["grandeur", "brilliancy", "grandness", "magnificence", "splendor", "lustre", "luster"]}, {"answer": "spliff", "hint": "synonyms for spliff", "clues": ["reefer", "marijuana cigarette", "stick", "joint", "spliff"]}, {"answer": "split_second", "hint": "synonyms for split second", "clues": ["twinkling", "jiffy", "instant", "flash", "wink", "heartbeat", "blink of an eye", "trice", "split second"]}, {"answer": "spoil", "hint": "synonyms for spoil", "clues": ["despoilment", "spoiling", "spoilation", "despoliation", "spoilage"]}, {"answer": "spoilation", "hint": "synonyms for spoilation", "clues": ["despoilment", "spoil", "despoilation", "spoliation"]}, {"answer": "spoke", "hint": "synonyms for spoke", "clues": ["rundle", "wheel spoke", "radius", "rung", "spoke"]}, {"answer": "spoken_communication", "hint": "synonyms for spoken communication", "clues": ["speech communication", "voice communication", "speech", "oral communication", "language", "spoken language"]}, {"answer": "spoken_language", "hint": "synonyms for spoken language", "clues": ["speech communication", "voice communication", "speech", "oral communication", "language", "spoken language"]}, {"answer": "spoliation", "hint": "synonyms for spoliation", "clues": ["despoilment", "spoilation", "spoil", "despoliation"]}, {"answer": "spoof", "hint": "synonyms for spoof", "clues": ["burlesque", "travesty", "lampoon", "put-on", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff", "spoof"]}, {"answer": "spook", "hint": "synonyms for spook", "clues": ["shade", "wraith", "spectre", "ghost", "spook"]}, {"answer": "sporting_house", "hint": "synonyms for sporting house", "clues": ["bagnio", "house of ill repute", "house of prostitution", "brothel", "cathouse", "bawdyhouse", "whorehouse", "bordello", "sporting house"]}, {"answer": "spot", "hint": "synonyms for spot", "clues": ["billet", "post", "situation", "fleck", "patch", "berth", "maculation", "speckle", "office", "point", "daub", "spotlight", "pip", "topographic point", "stain", "place", "bit", "slur", "blot", "smudge", "smirch", "dapple", "position", "smear", "spot"]}, {"answer": "spots", "hint": "synonyms for spots", "clues": ["billet", "post", "spot", "fleck", "patch", "situation", "berth", "maculation", "speckle", "office", "point", "daub", "spotlight", "pip", "topographic point", "stain", "place", "bit", "slur", "blot", "smudge", "smirch", "dapple", "position", "smear"]}, {"answer": "spotting", "hint": "synonyms for spotting", "clues": ["spying", "catching", "detection", "staining", "espial", "maculation", "spotting"]}, {"answer": "spray", "hint": "synonyms for spray", "clues": ["nebulizer", "atomizer", "spraying", "sprayer"]}, {"answer": "spray_can", "hint": "synonyms for spray can", "clues": ["aerosol", "aerosol bomb", "aerosol container", "aerosol can", "spray can"]}, {"answer": "sprayer", "hint": "synonyms for sprayer", "clues": ["spray", "nebulizer", "atomiser", "sprayer"]}, {"answer": "spreading", "hint": "synonyms for spreading", "clues": ["dissemination", "airing", "public exposure", "spread"]}, {"answer": "spring", "hint": "synonyms for spring", "clues": ["springiness", "leaping", "bounce", "give", "springtime", "natural spring", "outpouring", "outflow", "bound", "saltation", "fountain", "spring"]}, {"answer": "sprinkles", "hint": "synonyms for sprinkles", "clues": ["sprinkle", "scattering", "sprinkling", "jimmies", "sparge"]}, {"answer": "sprinkling", "hint": "synonyms for sprinkling", "clues": ["aspersion", "sprinkle", "scattering", "sparge", "sprinkling"]}, {"answer": "spud", "hint": "synonyms for spud", "clues": ["stump spud", "murphy", "potato", "white potato", "tater", "spud"]}, {"answer": "spunk", "hint": "synonyms for spunk", "clues": ["heart", "tinder", "kindling", "punk", "mettle", "touchwood", "nerve"]}, {"answer": "spur", "hint": "synonyms for spur", "clues": ["spurring", "spur track", "gad", "goading", "prod", "urging", "spine", "prodding", "branch line", "acantha", "spur"]}, {"answer": "spurring", "hint": "synonyms for spurring", "clues": ["prod", "spur", "goad", "prodding", "urging", "spurring"]}, {"answer": "spying", "hint": "synonyms for spying", "clues": ["catching", "detection", "espial", "undercover work", "spotting", "spying"]}, {"answer": "squabble", "hint": "synonyms for squabble", "clues": ["spat", "bickering", "pettifoggery", "tiff", "fuss", "squabble"]}, {"answer": "squad_car", "hint": "synonyms for squad car", "clues": ["police cruiser", "prowl car", "cruiser", "police car", "patrol car", "squad car"]}, {"answer": "square_and_rabbet", "hint": "synonyms for square and rabbet", "clues": ["bandlet", "annulet", "bandelette", "square and rabbet"]}, {"answer": "squawk", "hint": "synonyms for squawk", "clues": ["kick", "bitch", "beef", "gripe", "squawk"]}, {"answer": "squeak", "hint": "synonyms for squeak", "clues": ["narrow escape", "close call", "squeaker", "close shave"]}, {"answer": "squeaker", "hint": "synonyms for squeaker", "clues": ["squeak", "narrow escape", "close call", "close shave"]}, {"answer": "squeeze", "hint": "synonyms for squeeze", "clues": ["squeezing", "squeeze play", "hug", "clinch", "wring", "power play", "squeeze"]}, {"answer": "squelch", "hint": "synonyms for squelch", "clues": ["takedown", "squelcher", "squelch circuit", "put-down"]}, {"answer": "squelcher", "hint": "synonyms for squelcher", "clues": ["takedown", "squelch", "squelch circuit", "put-down"]}, {"answer": "ss", "hint": "synonyms for ss", "clues": ["mho", "s", "sulfur", "due south", "south", "southward", "randomness", "entropy", "reciprocal ohm", "second", "sulphur", "siemens", "sec", "atomic number 16"]}, {"answer": "st._elmo's_fire", "hint": "synonyms for st. elmo's fire", "clues": ["corona", "electric glow", "corposant", "corona discharge", "st. elmo's fire"]}, {"answer": "stab", "hint": "synonyms for stab", "clues": ["pang", "knife thrust", "shot", "twinge", "thrust", "stab"]}, {"answer": "stack", "hint": "synonyms for stack", "clues": ["good deal", "slew", "push-down storage", "mint", "smokestack", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "push-down stack", "lot", "sight", "mickle", "push-down list", "plenty", "muckle", "mountain", "pile", "batch", "flock", "tidy sum", "pot", "stack"]}, {"answer": "stacks", "hint": "synonyms for stacks", "clues": ["good deal", "lots", "slew", "loads", "mint", "smokestack", "heap", "deal", "peck", "quite a little", "oodles", "push-down store", "wad", "mass", "mess", "passel", "great deal", "piles", "push-down stack", "push-down list", "plenty", "mountain", "tidy sum", "dozens", "lashings", "pot", "tons", "gobs", "raft", "spate", "hatful", "scads", "sight", "mickle", "stack", "muckle", "batch", "flock", "scores"]}, {"answer": "stage", "hint": "synonyms for stage", "clues": ["phase", "leg", "stagecoach", "microscope stage", "stage"]}, {"answer": "stagger_head", "hint": "synonyms for stagger head", "clues": ["staggered head", "dropline", "stepped line", "stephead"]}, {"answer": "staggered_head", "hint": "synonyms for staggered head", "clues": ["drop line", "stepped line", "stagger head", "stephead"]}, {"answer": "stain", "hint": "synonyms for stain", "clues": ["spot", "discolouration", "blot", "mark", "smirch", "stigma", "brand", "smear", "stain"]}, {"answer": "stake", "hint": "synonyms for stake", "clues": ["wager", "post", "bet", "interest", "stakes"]}, {"answer": "stakes", "hint": "synonyms for stakes", "clues": ["post", "stake", "interest", "bet", "wager"]}, {"answer": "stalinism", "hint": "synonyms for stalinism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "stalinism"]}, {"answer": "stalk", "hint": "synonyms for stalk", "clues": ["straw", "stubble", "chaff", "angry walk", "shuck", "stalking", "still hunt", "husk"]}, {"answer": "stall", "hint": "synonyms for stall", "clues": ["booth", "cubicle", "carrel", "kiosk", "stalling", "stand", "sales booth"]}, {"answer": "stalls", "hint": "synonyms for stalls", "clues": ["booth", "cubicle", "horse barn", "stalling", "carrell", "sales booth", "kiosk", "stand", "stable", "stalls"]}, {"answer": "stamp", "hint": "synonyms for stamp", "clues": ["seal", "impression", "legal tender", "postage stamp", "revenue stamp", "pestle", "cast", "mould", "postage", "tender", "stamp"]}, {"answer": "stamping_ground", "hint": "synonyms for stamping ground", "clues": ["haunt", "repair", "hangout", "resort", "stamping ground"]}, {"answer": "stand", "hint": "synonyms for stand", "clues": ["standpoint", "outdoor stage", "standstill", "tie-up", "base", "point of view", "sales booth", "bandstand", "viewpoint", "pedestal", "rack", "stall", "stand"]}, {"answer": "star_sign", "hint": "synonyms for star sign", "clues": ["mansion", "sign of the zodiac", "planetary house", "house", "sign", "star sign"]}, {"answer": "start", "hint": "synonyms for start", "clues": ["startle", "starting signal", "starting line", "offset", "kickoff", "head start", "beginning", "starting time", "outset", "jump", "showtime", "scratch line", "get-go", "scratch", "commencement", "starting", "first"]}, {"answer": "starter", "hint": "synonyms for starter", "clues": ["starting motor", "starter motor", "appetiser", "crank", "starter"]}, {"answer": "starting_time", "hint": "synonyms for starting time", "clues": ["offset", "kickoff", "start", "beginning", "outset", "showtime", "get-go", "commencement", "first", "starting time"]}, {"answer": "stat_mi", "hint": "synonyms for stat mi", "clues": ["mi", "international mile", "land mile", "statute mile", "mile", "stat mi"]}, {"answer": "state", "hint": "synonyms for state", "clues": ["country", "province", "commonwealth", "res publica", "nation", "land", "body politic", "state"]}, {"answer": "state_highway", "hint": "synonyms for state highway", "clues": ["throughway", "superhighway", "pike", "expressway", "freeway", "motorway", "thruway", "state highway"]}, {"answer": "statement", "hint": "synonyms for statement", "clues": ["program line", "affirmation", "instruction", "command", "argument", "assertion", "financial statement", "statement"]}, {"answer": "station_waggon", "hint": "synonyms for station waggon", "clues": ["beach wagon", "waggon", "estate car", "station wagon"]}, {"answer": "station_wagon", "hint": "synonyms for station wagon", "clues": ["beach wagon", "waggon", "estate car", "station waggon"]}, {"answer": "statute_mile", "hint": "synonyms for statute mile", "clues": ["mi", "international mile", "land mile", "stat mi", "mile", "statute mile"]}, {"answer": "stave", "hint": "synonyms for stave", "clues": ["staff", "lag", "round", "rung", "stave"]}, {"answer": "stealing", "hint": "synonyms for stealing", "clues": ["thieving", "stealth", "theft", "larceny", "thievery", "stealing"]}, {"answer": "steamer", "hint": "synonyms for steamer", "clues": ["steamer clam", "soft-shell clam", "long-neck clam", "steamship", "steamer"]}, {"answer": "steaminess", "hint": "synonyms for steaminess", "clues": ["vaporousness", "mistiness", "haziness", "steaminess"]}, {"answer": "steer", "hint": "synonyms for steer", "clues": ["confidential information", "hint", "tip", "wind", "lead", "steer"]}, {"answer": "stem", "hint": "synonyms for stem", "clues": ["root word", "radical", "shank", "stem turn", "bow", "base", "root", "prow", "theme", "fore", "stem"]}, {"answer": "stemma", "hint": "synonyms for stemma", "clues": ["line", "bloodline", "blood", "lineage", "parentage", "line of descent", "descent", "ancestry", "stock", "pedigree", "origin", "stemma"]}, {"answer": "stench", "hint": "synonyms for stench", "clues": ["malodor", "mephitis", "foetor", "reek", "stink", "stench"]}, {"answer": "step", "hint": "synonyms for step", "clues": ["stone's throw", "footmark", "footstep", "whole step", "tone", "dance step", "stride", "pace", "footfall", "stair", "footprint", "measure", "whole tone", "step"]}, {"answer": "stephead", "hint": "synonyms for stephead", "clues": ["staggered head", "drop line", "stepped line", "stephead"]}, {"answer": "stepped_line", "hint": "synonyms for stepped line", "clues": ["staggered head", "drop line", "stephead", "stepped line"]}, {"answer": "steps", "hint": "synonyms for steps", "clues": ["stone's throw", "footmark", "step", "footstep", "tone", "whole step", "stairs", "dance step", "stride", "pace", "footfall", "footprint", "measure", "whole tone"]}, {"answer": "stetson", "hint": "synonyms for stetson", "clues": ["trilby", "felt hat", "fedora", "homburg", "stetson"]}, {"answer": "stick", "hint": "synonyms for stick", "clues": ["joystick", "reefer", "spliff", "marijuana cigarette", "joint", "control stick", "stick"]}, {"answer": "sticker", "hint": "synonyms for sticker", "clues": ["poser", "gummed label", "stumper", "paster", "dagger", "toughie", "sticker"]}, {"answer": "stiffness", "hint": "synonyms for stiffness", "clues": ["hardness", "clumsiness", "rigor", "rigourousness", "severeness", "inclemency", "severity", "awkwardness", "harshness", "gracelessness", "stiffness"]}, {"answer": "stigmata", "hint": "synonyms for stigmata", "clues": ["stain", "mark", "stigma", "brand"]}, {"answer": "stimulation", "hint": "synonyms for stimulation", "clues": ["arousal", "stimulus", "foreplay", "stimulant", "input", "stimulation"]}, {"answer": "sting", "hint": "synonyms for sting", "clues": ["bunco", "bunko game", "gyp", "confidence game", "bunko", "hustle", "flimflam", "con game", "con", "confidence trick", "sting"]}, {"answer": "stink", "hint": "synonyms for stink", "clues": ["malodor", "stench", "mephitis", "foetor", "reek", "stink"]}, {"answer": "stinkiness", "hint": "synonyms for stinkiness", "clues": ["fetidness", "foulness", "rankness", "malodorousness", "stinkiness"]}, {"answer": "stipulation", "hint": "synonyms for stipulation", "clues": ["precondition", "specification", "judicial admission", "stipulation"]}, {"answer": "stir", "hint": "synonyms for stir", "clues": ["flurry", "bustle", "ado", "fuss", "hustle", "stir"]}, {"answer": "stochastic_variable", "hint": "synonyms for stochastic variable", "clues": ["variant", "random variable", "chance variable", "stochastic variable"]}, {"answer": "stocks", "hint": "synonyms for stocks", "clues": ["fund", "blood", "lineage", "parentage", "line of descent", "descent", "ancestry", "store", "strain", "stock certificate", "breed", "inventory", "stock", "pedigree", "stemma", "line", "bloodline", "gunstock", "broth", "neckcloth", "origin"]}, {"answer": "stolidity", "hint": "synonyms for stolidity", "clues": ["indifference", "phlegm", "unemotionality", "emotionlessness", "impassiveness", "stoicism", "impassivity", "stolidness", "stolidity"]}, {"answer": "stool", "hint": "synonyms for stool", "clues": ["fecal matter", "toilet", "feces", "can", "potty", "commode", "ordure", "throne", "dejection", "crapper", "pot", "stool"]}, {"answer": "stop", "hint": "synonyms for stop", "clues": ["plosive speech sound", "stop consonant", "full stop", "plosive", "stopover", "blockage", "point", "period", "closure", "stoppage", "diaphragm", "layover", "block", "full point", "halt", "plosive consonant", "occlusion", "catch", "occlusive", "stop"]}, {"answer": "stop_consonant", "hint": "synonyms for stop consonant", "clues": ["plosive speech sound", "plosive consonant", "occlusive", "plosive", "stop", "stop consonant"]}, {"answer": "stoppage", "hint": "synonyms for stoppage", "clues": ["blockage", "occlusion", "closure", "block", "stop", "stoppage"]}, {"answer": "stopper", "hint": "synonyms for stopper", "clues": ["plug", "show-stopper", "stopple", "conversation stopper"]}, {"answer": "stopping_point", "hint": "synonyms for stopping point", "clues": ["finish", "last", "finale", "conclusion", "close", "stopping point"]}, {"answer": "stops", "hint": "synonyms for stops", "clues": ["plosive speech sound", "stop consonant", "full stop", "plosive", "stop", "stopover", "blockage", "point", "period", "closure", "boodle", "stoppage", "diaphragm", "layover", "block", "full point", "halt", "plosive consonant", "occlusion", "catch", "occlusive"]}, {"answer": "storage", "hint": "synonyms for storage", "clues": ["depot", "memory", "reposition", "entrepot", "computer memory", "store", "memory board", "computer storage", "storehouse", "warehousing", "storage"]}, {"answer": "storage_area", "hint": "synonyms for storage area", "clues": ["hold", "cargo deck", "cargo hold", "cargo area", "storage area"]}, {"answer": "store", "hint": "synonyms for store", "clues": ["fund", "memory", "depot", "entrepot", "computer memory", "storage", "memory board", "computer storage", "storehouse", "stock", "shop", "store"]}, {"answer": "storehouse", "hint": "synonyms for storehouse", "clues": ["store", "depot", "storage", "entrepot", "storehouse"]}, {"answer": "storm_lamp", "hint": "synonyms for storm lamp", "clues": ["hurricane lamp", "storm lantern", "hurricane lantern", "tornado lantern", "storm lamp"]}, {"answer": "storm_lantern", "hint": "synonyms for storm lantern", "clues": ["storm lamp", "hurricane lamp", "hurricane lantern", "tornado lantern", "storm lantern"]}, {"answer": "story", "hint": "synonyms for story", "clues": ["tarradiddle", "storey", "news report", "level", "chronicle", "report", "account", "history", "write up", "fib", "tale", "narration", "narrative", "floor"]}, {"answer": "stoutness", "hint": "synonyms for stoutness", "clues": ["corpulence", "adiposis", "overweight", "stalwartness", "stoutness"]}, {"answer": "stove", "hint": "synonyms for stove", "clues": ["kitchen stove", "cooking stove", "range", "kitchen range", "stove"]}, {"answer": "stovepipe", "hint": "synonyms for stovepipe", "clues": ["beaver", "high hat", "topper", "silk hat", "top hat", "dress hat", "opera hat", "stovepipe"]}, {"answer": "straightness", "hint": "synonyms for straightness", "clues": ["good faith", "directness", "heterosexualism", "straightness"]}, {"answer": "strain", "hint": "synonyms for strain", "clues": ["line", "song", "melodic phrase", "nisus", "melodic line", "form", "tune", "var.", "pains", "melody", "breed", "striving", "straining", "tenor", "stock", "air", "variant"]}, {"answer": "straits", "hint": "synonyms for straits", "clues": ["strait", "pass", "head", "sound"]}, {"answer": "strand", "hint": "synonyms for strand", "clues": ["fibril", "filament", "string", "chain", "strand"]}, {"answer": "stratagem", "hint": "synonyms for stratagem", "clues": ["ploy", "contrivance", "gambit", "dodge", "stratagem"]}, {"answer": "stratum", "hint": "synonyms for stratum", "clues": ["class", "socio-economic class", "layer", "social class", "level", "stratum"]}, {"answer": "straw_hat", "hint": "synonyms for straw hat", "clues": ["leghorn", "skimmer", "sailor", "boater", "straw hat"]}, {"answer": "straw_man", "hint": "synonyms for straw man", "clues": ["bird-scarer", "strawman", "scarecrow", "scarer"]}, {"answer": "strawman", "hint": "synonyms for strawman", "clues": ["bird-scarer", "straw man", "scarecrow", "scarer"]}, {"answer": "streamer", "hint": "synonyms for streamer", "clues": ["waft", "pennant", "pennon", "banner", "streamer"]}, {"answer": "streamlet", "hint": "synonyms for streamlet", "clues": ["rill", "rivulet", "run", "runnel", "streamlet"]}, {"answer": "street_organ", "hint": "synonyms for street organ", "clues": ["grind organ", "hurdy-gurdy", "barrel organ", "hand organ", "street organ"]}, {"answer": "streetcar", "hint": "synonyms for streetcar", "clues": ["trolley", "tramcar", "trolley car", "tram", "streetcar"]}, {"answer": "strength", "hint": "synonyms for strength", "clues": ["lastingness", "potency", "durability", "persuasiveness", "military capability", "intensity level", "metier", "enduringness", "intensity", "forte", "military posture", "military strength", "strong point", "posture", "long suit", "forcefulness", "strong suit", "speciality", "effectiveness", "force", "strength"]}, {"answer": "stride", "hint": "synonyms for stride", "clues": ["tread", "footstep", "step", "pace", "stride"]}, {"answer": "strike", "hint": "synonyms for strike", "clues": ["smasher", "smash", "hit", "work stoppage", "rap", "tap", "ten-strike", "bang", "strike"]}, {"answer": "string", "hint": "synonyms for string", "clues": ["cosmic string", "train", "drawing string", "bowed stringed instrument", "strand", "twine", "chain", "drawstring", "string"]}, {"answer": "string_bass", "hint": "synonyms for string bass", "clues": ["contrabass", "bull fiddle", "bass fiddle", "double bass", "bass viol", "string bass"]}, {"answer": "strings", "hint": "synonyms for strings", "clues": ["cosmic string", "train", "chain", "string section", "strand", "drawing string", "bowed stringed instrument", "twine", "string", "drawstring"]}, {"answer": "strip", "hint": "synonyms for strip", "clues": ["funnies", "striptease", "comic strip", "flight strip", "landing strip", "cartoon strip", "airstrip", "slip", "strip show", "strip"]}, {"answer": "stripe", "hint": "synonyms for stripe", "clues": ["stripes", "grade insignia", "chevron", "bar", "streak", "band"]}, {"answer": "stripes", "hint": "synonyms for stripes", "clues": ["bar", "grade insignia", "stripe", "band", "streak", "chevron"]}, {"answer": "stripping", "hint": "synonyms for stripping", "clues": ["denudation", "uncovering", "husking", "baring", "stripping"]}, {"answer": "stroke", "hint": "synonyms for stroke", "clues": ["throw", "fortuity", "accident", "slash", "solidus", "stroking", "separatrix", "chance event", "shot", "diagonal", "virgule", "cam stroke", "stroke"]}, {"answer": "stroll", "hint": "synonyms for stroll", "clues": ["saunter", "amble", "promenade", "perambulation", "stroll"]}, {"answer": "stroller", "hint": "synonyms for stroller", "clues": ["pusher", "carriage", "baby carriage", "pram", "perambulator", "go-cart", "pushchair", "baby buggy", "stroller"]}, {"answer": "strong_drink", "hint": "synonyms for strong drink", "clues": ["liquor", "booze", "hard drink", "hard liquor", "spirits", "strong drink"]}, {"answer": "strong_point", "hint": "synonyms for strong point", "clues": ["forte", "strength", "specialty", "long suit", "metier", "strong suit", "strong point"]}, {"answer": "strong_suit", "hint": "synonyms for strong suit", "clues": ["forte", "strength", "strong point", "long suit", "metier", "specialty", "strong suit"]}, {"answer": "structure", "hint": "synonyms for structure", "clues": ["construction", "social organisation", "social structure", "social system", "structure"]}, {"answer": "stub", "hint": "synonyms for stub", "clues": ["butt", "check stub", "nub", "ticket stub", "counterfoil", "stub"]}, {"answer": "stubble", "hint": "synonyms for stubble", "clues": ["shuck", "straw", "chaff", "stalk", "husk", "stubble"]}, {"answer": "stubbornness", "hint": "synonyms for stubbornness", "clues": ["obstinance", "obstinacy", "bullheadedness", "self-will", "mulishness", "pigheadedness", "stubbornness"]}, {"answer": "student_residence", "hint": "synonyms for student residence", "clues": ["hall", "residence hall", "dorm", "dormitory", "student residence"]}, {"answer": "study", "hint": "synonyms for study", "clues": ["field of study", "sketch", "report", "written report", "subject area", "survey", "subject field", "field", "cogitation", "work", "discipline", "bailiwick", "subject", "study"]}, {"answer": "stuff", "hint": "synonyms for stuff", "clues": ["clobber", "poppycock", "material", "stuff and nonsense", "hooey", "stuff"]}, {"answer": "stultification", "hint": "synonyms for stultification", "clues": ["impairment", "befooling", "constipation", "deadening", "stultification"]}, {"answer": "stumble", "hint": "synonyms for stumble", "clues": ["trip", "lurch", "misstep", "trip-up", "stagger", "stumble"]}, {"answer": "stump", "hint": "synonyms for stump", "clues": ["rostrum", "podium", "pulpit", "soapbox", "ambo", "dais", "stump"]}, {"answer": "stupidity", "hint": "synonyms for stupidity", "clues": ["folly", "imbecility", "betise", "foolishness", "stupidity"]}, {"answer": "stupor", "hint": "synonyms for stupor", "clues": ["daze", "stupefaction", "shock", "grogginess", "semiconsciousness", "stupor"]}, {"answer": "style", "hint": "synonyms for style", "clues": ["elan", "mode", "fashion", "panache", "vogue", "trend", "flair", "manner", "dash", "expressive style", "stylus", "way", "style"]}, {"answer": "stylishness", "hint": "synonyms for stylishness", "clues": ["chichi", "smartness", "chicness", "last word", "chic", "swank", "modishness", "stylishness"]}, {"answer": "sub", "hint": "synonyms for sub", "clues": ["hoagie", "wedge", "zep", "hoagy", "torpedo", "poor boy", "submarine", "pigboat", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub"]}, {"answer": "subdivision", "hint": "synonyms for subdivision", "clues": ["section", "subsection", "branch", "arm", "subdivision"]}, {"answer": "subject_area", "hint": "synonyms for subject area", "clues": ["subject field", "field", "study", "field of study", "discipline", "bailiwick", "subject", "subject area"]}, {"answer": "subject_field", "hint": "synonyms for subject field", "clues": ["field", "study", "field of study", "discipline", "bailiwick", "subject area", "subject", "subject field"]}, {"answer": "subjugation", "hint": "synonyms for subjugation", "clues": ["conquest", "conquering", "oppression", "subjection", "subjugation"]}, {"answer": "submarine_sandwich", "hint": "synonyms for submarine sandwich", "clues": ["hoagie", "zep", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "wedge", "hero", "hero sandwich", "sub", "submarine sandwich"]}, {"answer": "submersion", "hint": "synonyms for submersion", "clues": ["dousing", "ducking", "submergence", "submerging", "immersion", "submersion"]}, {"answer": "subnormality", "hint": "synonyms for subnormality", "clues": ["mental retardation", "slowness", "backwardness", "retardation", "subnormality"]}, {"answer": "subprogram", "hint": "synonyms for subprogram", "clues": ["subroutine", "routine", "function", "procedure", "subprogram"]}, {"answer": "subroutine", "hint": "synonyms for subroutine", "clues": ["subprogram", "routine", "function", "procedure", "subroutine"]}, {"answer": "subscriber_line", "hint": "synonyms for subscriber line", "clues": ["line", "phone line", "telephone line", "telephone circuit", "subscriber line"]}, {"answer": "subsidence", "hint": "synonyms for subsidence", "clues": ["subsiding", "remission", "cave in", "settling", "remittal", "subsidence"]}, {"answer": "substance", "hint": "synonyms for substance", "clues": ["means", "essence", "message", "center", "centre", "heart", "sum", "gist", "marrow", "meat", "content", "nub", "nitty-gritty", "meaning", "subject matter", "pith", "inwardness", "heart and soul", "kernel", "core", "substance"]}, {"answer": "substantiation", "hint": "synonyms for substantiation", "clues": ["proof", "validation", "verification", "check", "confirmation", "substantiation"]}, {"answer": "substitution", "hint": "synonyms for substitution", "clues": ["permutation", "replacement", "switch", "transposition", "commutation", "exchange", "substitution"]}, {"answer": "substructure", "hint": "synonyms for substructure", "clues": ["foundation", "foot", "understructure", "infrastructure", "fundament", "groundwork", "base", "substructure"]}, {"answer": "subtlety", "hint": "synonyms for subtlety", "clues": ["shade", "niceness", "nicety", "refinement", "nuance", "subtlety"]}, {"answer": "subway", "hint": "synonyms for subway", "clues": ["underground", "metro", "underpass", "subway system", "tube", "subway"]}, {"answer": "subway_system", "hint": "synonyms for subway system", "clues": ["underground", "subway", "metro", "tube", "subway system"]}, {"answer": "succession", "hint": "synonyms for succession", "clues": ["sequence", "ecological succession", "chronological sequence", "taking over", "successiveness", "succession"]}, {"answer": "successiveness", "hint": "synonyms for successiveness", "clues": ["sequence", "succession", "chronological sequence", "chronological succession", "successiveness"]}, {"answer": "sudation", "hint": "synonyms for sudation", "clues": ["diaphoresis", "sweating", "perspiration", "hidrosis", "sudation"]}, {"answer": "suddenness", "hint": "synonyms for suddenness", "clues": ["abruptness", "precipitateness", "precipitousness", "precipitance", "suddenness"]}, {"answer": "sugar", "hint": "synonyms for sugar", "clues": ["lucre", "lettuce", "pelf", "simoleons", "carbohydrate", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "clams", "dinero", "gelt", "refined sugar", "wampum", "cabbage", "saccharide", "bread", "loot", "dough", "sugar"]}, {"answer": "suggestion", "hint": "synonyms for suggestion", "clues": ["proffer", "hint", "prompting", "mesmerism", "proposition", "hypnotism", "trace", "suggestion"]}, {"answer": "suit", "hint": "synonyms for suit", "clues": ["case", "wooing", "lawsuit", "suit of clothes", "courtship", "causa", "courting", "suit"]}, {"answer": "suit_of_armor", "hint": "synonyms for suit of armor", "clues": ["cataphract", "body armor", "suit of armour", "coat of mail"]}, {"answer": "suit_of_armour", "hint": "synonyms for suit of armour", "clues": ["suit of armor", "cataphract", "body armor", "coat of mail"]}, {"answer": "suitcase", "hint": "synonyms for suitcase", "clues": ["travelling bag", "bag", "grip", "suitcase"]}, {"answer": "suite", "hint": "synonyms for suite", "clues": ["cortege", "retinue", "entourage", "rooms", "suite"]}, {"answer": "sulfur_mustard", "hint": "synonyms for sulfur mustard", "clues": ["mustard agent", "blistering agent", "mustard gas", "dichloroethyl sulfide", "sulfur mustard"]}, {"answer": "sulkiness", "hint": "synonyms for sulkiness", "clues": ["huffishness", "moroseness", "sourness", "sulk", "sullenness", "sulkiness"]}, {"answer": "sullenness", "hint": "synonyms for sullenness", "clues": ["moroseness", "sourness", "sulkiness", "glumness", "sullenness"]}, {"answer": "sum", "hint": "synonyms for sum", "clues": ["total", "union", "summation", "essence", "join", "amount", "center", "centre", "amount of money", "heart", "gist", "aggregate", "marrow", "substance", "meat", "nub", "nitty-gritty", "sum of money", "totality", "pith", "inwardness", "heart and soul", "kernel", "sum total", "core", "sum"]}, {"answer": "summation", "hint": "synonyms for summation", "clues": ["summing up", "addition", "sum", "rundown", "plus", "sum total", "summation"]}, {"answer": "summersault", "hint": "synonyms for summersault", "clues": ["somersault", "somerset", "flip", "summerset"]}, {"answer": "summerset", "hint": "synonyms for summerset", "clues": ["somersault", "somerset", "flip", "summerset"]}, {"answer": "summit", "hint": "synonyms for summit", "clues": ["crown", "crest", "tip", "peak", "top", "summit meeting", "summit"]}, {"answer": "sun_helmet", "hint": "synonyms for sun helmet", "clues": ["topi", "pith hat", "topee", "pith helmet", "sun helmet"]}, {"answer": "sun_lounge", "hint": "synonyms for sun lounge", "clues": ["sun parlour", "solarium", "sunporch", "sunroom", "sun lounge"]}, {"answer": "sun_parlor", "hint": "synonyms for sun parlor", "clues": ["sun parlour", "solarium", "sun lounge", "sunporch", "sunroom"]}, {"answer": "sun_parlour", "hint": "synonyms for sun parlour", "clues": ["solarium", "sun lounge", "sunporch", "sun parlor", "sunroom"]}, {"answer": "sun_porch", "hint": "synonyms for sun porch", "clues": ["sun parlour", "solarium", "sun lounge", "sunporch", "sunroom"]}, {"answer": "sunporch", "hint": "synonyms for sunporch", "clues": ["sun parlour", "solarium", "sun lounge", "sun porch", "sunroom"]}, {"answer": "sunroom", "hint": "synonyms for sunroom", "clues": ["sun parlour", "solarium", "sun lounge", "sunporch", "sunroom"]}, {"answer": "sunshine", "hint": "synonyms for sunshine", "clues": ["temperateness", "sunniness", "sun", "cheerfulness", "fair weather", "sunlight", "cheer", "sunshine"]}, {"answer": "sunup", "hint": "synonyms for sunup", "clues": ["dawn", "dayspring", "break of day", "first light", "sunrise", "daybreak", "morning", "aurora", "cockcrow", "sunup"]}, {"answer": "super_acid", "hint": "synonyms for super acid", "clues": ["jet", "green", "special K", "super C", "cat valium", "honey oil", "super acid"]}, {"answer": "super_c", "hint": "synonyms for super c", "clues": ["jet", "green", "special K", "super C", "cat valium", "super acid", "honey oil"]}, {"answer": "superannuation", "hint": "synonyms for superannuation", "clues": ["retirement check", "old-age pension", "retirement benefit", "retirement pension", "retirement fund", "obsoleteness", "superannuation"]}, {"answer": "superhighway", "hint": "synonyms for superhighway", "clues": ["information superhighway", "throughway", "state highway", "pike", "expressway", "freeway", "motorway", "thruway", "superhighway"]}, {"answer": "superman", "hint": "synonyms for superman", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "acid", "battery-acid", "superman"]}, {"answer": "superpower", "hint": "synonyms for superpower", "clues": ["great power", "power", "major power", "world power", "superpower"]}, {"answer": "supplement", "hint": "synonyms for supplement", "clues": ["addendum", "accessory", "add-on", "postscript", "supplementation", "appurtenance", "supplement"]}, {"answer": "suppleness", "hint": "synonyms for suppleness", "clues": ["pliancy", "lissomeness", "pliantness", "litheness", "pliability", "suppleness"]}, {"answer": "support", "hint": "synonyms for support", "clues": ["keep", "funding", "bread and butter", "documentation", "reenforcement", "sustenance", "living", "livelihood", "financial backing", "financial support", "backing", "backup", "musical accompaniment", "accompaniment", "supporting"]}, {"answer": "supporter", "hint": "synonyms for supporter", "clues": ["jockstrap", "suspensor", "garter", "athletic supporter", "jock", "supporter"]}, {"answer": "supposition", "hint": "synonyms for supposition", "clues": ["hypothesis", "speculation", "surmise", "guess", "conjecture", "supposal", "assumption", "surmisal", "supposition"]}, {"answer": "suppression", "hint": "synonyms for suppression", "clues": ["crushing", "stifling", "curtailment", "inhibition", "quelling", "suppression"]}, {"answer": "sureness", "hint": "synonyms for sureness", "clues": ["self-assurance", "assurance", "confidence", "self-confidence", "authority", "sureness"]}, {"answer": "surge", "hint": "synonyms for surge", "clues": ["spate", "upsurge", "rush", "billow", "surge"]}, {"answer": "surge_protector", "hint": "synonyms for surge protector", "clues": ["surge suppressor", "spike arrester", "spike suppressor", "lightning arrester", "surge protector"]}, {"answer": "surge_suppressor", "hint": "synonyms for surge suppressor", "clues": ["spike arrester", "spike suppressor", "surge protector", "lightning arrester", "surge suppressor"]}, {"answer": "surgery", "hint": "synonyms for surgery", "clues": ["operating room", "surgical operation", "operating theater", "surgical procedure", "operation", "surgical process", "surgery"]}, {"answer": "surgical_operation", "hint": "synonyms for surgical operation", "clues": ["operation", "surgical process", "surgery", "surgical procedure", "surgical operation"]}, {"answer": "surgical_procedure", "hint": "synonyms for surgical procedure", "clues": ["operation", "surgical process", "surgery", "surgical operation", "surgical procedure"]}, {"answer": "surgical_process", "hint": "synonyms for surgical process", "clues": ["operation", "surgery", "surgical operation", "surgical procedure", "surgical process"]}, {"answer": "surliness", "hint": "synonyms for surliness", "clues": ["peevishness", "temper", "biliousness", "pettishness", "irritability", "snappishness", "surliness"]}, {"answer": "surmisal", "hint": "synonyms for surmisal", "clues": ["hypothesis", "speculation", "surmise", "guess", "supposition", "conjecture", "surmisal"]}, {"answer": "surmise", "hint": "synonyms for surmise", "clues": ["hypothesis", "speculation", "guess", "surmisal", "supposition", "conjecture", "surmise"]}, {"answer": "surrender", "hint": "synonyms for surrender", "clues": ["giving up", "fall", "yielding", "resignation", "capitulation", "surrender"]}, {"answer": "survey", "hint": "synonyms for survey", "clues": ["resume", "study", "sketch", "view", "sight", "survey"]}, {"answer": "suspension", "hint": "synonyms for suspension", "clues": ["break", "abatement", "intermission", "hanging", "pause", "suspension system", "interruption", "hiatus", "dangling", "temporary removal", "respite", "reprieve", "suspension"]}, {"answer": "suspensor", "hint": "synonyms for suspensor", "clues": ["supporter", "jockstrap", "athletic supporter", "jock", "suspensor"]}, {"answer": "suspicion", "hint": "synonyms for suspicion", "clues": ["suspiciousness", "distrust", "intuition", "misgiving", "hunch", "suspicion"]}, {"answer": "sustainment", "hint": "synonyms for sustainment", "clues": ["maintenance", "sustenance", "upkeep", "sustentation", "sustainment"]}, {"answer": "sustenance", "hint": "synonyms for sustenance", "clues": ["nutriment", "support", "nutrition", "keep", "victuals", "upkeep", "bread and butter", "maintenance", "living", "livelihood", "nourishment", "alimentation", "sustentation", "sustainment", "aliment", "sustenance"]}, {"answer": "sustentation", "hint": "synonyms for sustentation", "clues": ["maintenance", "sustainment", "sustenance", "upkeep", "sustentation"]}, {"answer": "susurration", "hint": "synonyms for susurration", "clues": ["susurrus", "whisper", "voicelessness", "susurration"]}, {"answer": "swag", "hint": "synonyms for swag", "clues": ["dirty money", "loot", "pillage", "booty", "prize", "plunder", "swag"]}, {"answer": "swearing", "hint": "synonyms for swearing", "clues": ["expletive", "swearword", "oath", "curse", "curse word", "cuss", "swearing"]}, {"answer": "swearword", "hint": "synonyms for swearword", "clues": ["expletive", "oath", "swearing", "curse", "curse word", "cuss", "swearword"]}, {"answer": "sweat", "hint": "synonyms for sweat", "clues": ["effort", "exertion", "elbow grease", "travail", "sweat"]}, {"answer": "sweating", "hint": "synonyms for sweating", "clues": ["diaphoresis", "perspiration", "sudation", "hidrosis", "sweating"]}, {"answer": "sweats", "hint": "synonyms for sweats", "clues": ["sweatsuit", "elbow grease", "workout suit", "effort", "travail", "exertion", "sweat"]}, {"answer": "sweep", "hint": "synonyms for sweep", "clues": ["slam", "sweep oar", "end run", "expanse", "sweep"]}, {"answer": "sweetener", "hint": "synonyms for sweetener", "clues": ["come-on", "bait", "lure", "hook", "sweetening", "sweetener"]}, {"answer": "sweetness", "hint": "synonyms for sweetness", "clues": ["sweet", "fragrance", "bouquet", "pleasantness", "redolence", "sugariness", "sweetness"]}, {"answer": "swelling", "hint": "synonyms for swelling", "clues": ["protuberance", "hump", "jut", "extrusion", "gibbousness", "bump", "prominence", "protrusion", "intumescency", "bulge", "excrescence", "gibbosity", "swelling"]}, {"answer": "swill", "hint": "synonyms for swill", "clues": ["slops", "pigswill", "pigwash", "swill"]}, {"answer": "swimming_costume", "hint": "synonyms for swimming costume", "clues": ["bathing costume", "bathing suit", "swimwear", "swimsuit", "swimming costume"]}, {"answer": "swimsuit", "hint": "synonyms for swimsuit", "clues": ["bathing costume", "bathing suit", "swimming costume", "swimwear", "swimsuit"]}, {"answer": "swimwear", "hint": "synonyms for swimwear", "clues": ["bathing costume", "bathing suit", "swimming costume", "swimsuit", "swimwear"]}, {"answer": "swing", "hint": "synonyms for swing", "clues": ["golf stroke", "swinging", "golf shot", "lilt", "vacillation", "cut", "swing music", "jive", "baseball swing"]}, {"answer": "switch", "hint": "synonyms for switch", "clues": ["permutation", "shift", "electric switch", "replacement", "switching", "substitution", "transposition"]}, {"answer": "syllabus", "hint": "synonyms for syllabus", "clues": ["program", "curriculum", "course of study", "syllabus"]}, {"answer": "symbolisation", "hint": "synonyms for symbolisation", "clues": ["symbolic representation", "symbol", "symbolism", "symbolization"]}, {"answer": "symbolization", "hint": "synonyms for symbolization", "clues": ["symbolic representation", "symbol", "symbolisation", "symbolism"]}, {"answer": "symmetry", "hint": "synonyms for symmetry", "clues": ["correspondence", "proportion", "balance", "symmetricalness", "isotropy", "symmetry"]}, {"answer": "synchroneity", "hint": "synonyms for synchroneity", "clues": ["synchronism", "synchrony", "synchronization", "synchronicity"]}, {"answer": "synchronicity", "hint": "synonyms for synchronicity", "clues": ["synchronism", "synchrony", "synchronization", "synchronicity"]}, {"answer": "synchronisation", "hint": "synonyms for synchronisation", "clues": ["synchrony", "synchronizing", "synchronism", "synchronicity", "synchronisation"]}, {"answer": "synchronism", "hint": "synonyms for synchronism", "clues": ["synchrony", "synchronization", "synchronicity", "synchronism"]}, {"answer": "synchronization", "hint": "synonyms for synchronization", "clues": ["synchrony", "synchronizing", "synchronism", "synchronicity", "synchronisation"]}, {"answer": "synchronizing", "hint": "synonyms for synchronizing", "clues": ["synchrony", "synchronising", "synchronism", "synchronization", "synchronicity"]}, {"answer": "syncope", "hint": "synonyms for syncope", "clues": ["swoon", "syncopation", "faint", "deliquium", "syncope"]}, {"answer": "syndicate", "hint": "synonyms for syndicate", "clues": ["crime syndicate", "consortium", "family", "pool", "mob", "syndicate"]}, {"answer": "synthetic_heroin", "hint": "synonyms for synthetic heroin", "clues": ["methadone hydrochloride", "methadon", "fixer", "dolophine hydrochloride", "synthetic heroin"]}, {"answer": "system", "hint": "synonyms for system", "clues": ["scheme", "arrangement", "organization", "system of rules", "system"]}, {"answer": "t", "hint": "synonyms for t", "clues": ["thymine", "tonne", "metric ton", "deoxythymidine monophosphate", "t"]}, {"answer": "tab", "hint": "synonyms for tab", "clues": ["pill", "chit", "lozenge", "tabloid", "yellow journalism", "tablet", "check", "tab key", "tab"]}, {"answer": "tablet", "hint": "synonyms for tablet", "clues": ["pill", "tab", "lozenge", "pad of paper", "pad", "tablet"]}, {"answer": "tabloid", "hint": "synonyms for tabloid", "clues": ["sheet", "tab", "rag", "yellow journalism", "tabloid"]}, {"answer": "tack", "hint": "synonyms for tack", "clues": ["shroud", "sheet", "saddlery", "mainsheet", "stable gear", "tacking", "weather sheet"]}, {"answer": "tackiness", "hint": "synonyms for tackiness", "clues": ["sleaze", "ropiness", "gluiness", "viscidness", "cohesiveness", "gumminess", "cheapness", "glueyness", "viscidity", "tat", "tackiness"]}, {"answer": "tacking", "hint": "synonyms for tacking", "clues": ["basting", "baste", "basting stitch", "tack"]}, {"answer": "tackle", "hint": "synonyms for tackle", "clues": ["fishing gear", "fishing tackle", "rigging", "fishing rig", "rig", "tackle"]}, {"answer": "tactile_sensation", "hint": "synonyms for tactile sensation", "clues": ["touch", "feeling", "touch sensation", "tactual sensation"]}, {"answer": "tactual_sensation", "hint": "synonyms for tactual sensation", "clues": ["touch", "tactile sensation", "touch sensation", "feeling", "skin perceptiveness", "tactility", "touch perception"]}, {"answer": "taffy_apple", "hint": "synonyms for taffy apple", "clues": ["caramel apple", "candied apple", "toffee apple", "candy apple", "taffy apple"]}, {"answer": "tag", "hint": "synonyms for tag", "clues": ["shred", "tag end", "tatter", "ticket", "rag", "tag"]}, {"answer": "tag_end", "hint": "synonyms for tag end", "clues": ["tatter", "shred", "tag", "rag", "tag end"]}, {"answer": "tail", "hint": "synonyms for tail", "clues": ["empennage", "tail end", "fag end", "after part", "tail assembly", "poop", "quarter", "stern", "tail"]}, {"answer": "tail_coat", "hint": "synonyms for tail coat", "clues": ["white tie", "tails", "full dress", "tailcoat", "white tie and tails", "dress suit"]}, {"answer": "tail_fin", "hint": "synonyms for tail fin", "clues": ["vertical stabilizer", "tailfin", "vertical fin", "fin"]}, {"answer": "tailcoat", "hint": "synonyms for tailcoat", "clues": ["white tie", "tail coat", "tails", "full dress", "white tie and tails", "dress suit"]}, {"answer": "tailfin", "hint": "synonyms for tailfin", "clues": ["vertical stabilizer", "vertical fin", "tail fin", "fin"]}, {"answer": "tails", "hint": "synonyms for tails", "clues": ["stern", "empennage", "tail coat", "tail end", "fag end", "tail", "after part", "white tie and tails", "white tie", "tail assembly", "poop", "full dress", "quarter", "dress suit"]}, {"answer": "take", "hint": "synonyms for take", "clues": ["return", "takings", "proceeds", "payoff", "yield", "issue", "take"]}, {"answer": "takeoff", "hint": "synonyms for takeoff", "clues": ["burlesque", "travesty", "lampoon", "spoof", "put-on", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff"]}, {"answer": "takeoff_booster", "hint": "synonyms for takeoff booster", "clues": ["takeoff rocket", "booster", "booster rocket", "booster unit", "takeoff booster"]}, {"answer": "takeoff_rocket", "hint": "synonyms for takeoff rocket", "clues": ["booster", "booster rocket", "booster unit", "takeoff booster", "takeoff rocket"]}, {"answer": "taking_into_custody", "hint": "synonyms for taking into custody", "clues": ["arrest", "collar", "apprehension", "catch", "pinch", "taking into custody"]}, {"answer": "takings", "hint": "synonyms for takings", "clues": ["taking", "return", "yield", "proceeds", "payoff", "pickings", "take", "issue"]}, {"answer": "tale", "hint": "synonyms for tale", "clues": ["story", "tarradiddle", "fib", "narration", "narrative", "tale"]}, {"answer": "talk", "hint": "synonyms for talk", "clues": ["talk of the town", "talking", "public lecture", "lecture"]}, {"answer": "talkativeness", "hint": "synonyms for talkativeness", "clues": ["loquacity", "loquaciousness", "garrulity", "garrulousness", "talkativeness"]}, {"answer": "talks", "hint": "synonyms for talks", "clues": ["talking", "public lecture", "lecture", "talk of the town", "dialogue", "negotiation", "talks"]}, {"answer": "tally", "hint": "synonyms for tally", "clues": ["counting", "enumeration", "reckoning", "run", "tally"]}, {"answer": "tameness", "hint": "synonyms for tameness", "clues": ["vapidness", "jejunity", "jejuneness", "domestication", "vapidity", "tameness"]}, {"answer": "tang", "hint": "synonyms for tang", "clues": ["piquance", "flavour", "sapidity", "piquantness", "savor", "tanginess", "relish", "smack", "zest", "nip", "tang"]}, {"answer": "tanginess", "hint": "synonyms for tanginess", "clues": ["piquancy", "tang", "zest", "piquantness", "nip", "tanginess"]}, {"answer": "tank", "hint": "synonyms for tank", "clues": ["army tank", "cooler", "tankful", "storage tank", "armored combat vehicle", "tank car", "tank"]}, {"answer": "tanning", "hint": "synonyms for tanning", "clues": ["flogging", "lashing", "flagellation", "whipping", "tanning"]}, {"answer": "tap", "hint": "synonyms for tap", "clues": ["water faucet", "spigot", "hydrant", "strike", "pat", "wiretap", "rap", "dab", "water tap", "tap"]}, {"answer": "tape", "hint": "synonyms for tape", "clues": ["taping", "tapeline", "magnetic tape", "tape measure", "tape recording", "mag tape", "tape"]}, {"answer": "taphouse", "hint": "synonyms for taphouse", "clues": ["gin mill", "pothouse", "saloon", "pub", "public house", "taphouse"]}, {"answer": "taproom", "hint": "synonyms for taproom", "clues": ["ginmill", "barroom", "saloon", "bar", "taproom"]}, {"answer": "taps", "hint": "synonyms for taps", "clues": ["lights-out", "water faucet", "spigot", "water tap", "hydrant", "pat", "wiretap", "rap", "dab", "tap", "strike"]}, {"answer": "taradiddle", "hint": "synonyms for taradiddle", "clues": ["story", "tarradiddle", "bosh", "drool", "baloney", "humbug", "tommyrot", "tosh", "twaddle", "tale", "fib", "bilgewater"]}, {"answer": "tarchanoff_phenomenon", "hint": "synonyms for tarchanoff phenomenon", "clues": ["psychogalvanic response", "galvanic skin response", "electrodermal response", "electrical skin response", "tarchanoff phenomenon"]}, {"answer": "target", "hint": "synonyms for target", "clues": ["butt", "aim", "mark", "target area", "object", "objective", "target"]}, {"answer": "taro", "hint": "synonyms for taro", "clues": ["dasheen", "cocoyam", "taro root", "edda", "taro"]}, {"answer": "taro_root", "hint": "synonyms for taro root", "clues": ["dasheen", "cocoyam", "taro", "edda", "taro root"]}, {"answer": "tarradiddle", "hint": "synonyms for tarradiddle", "clues": ["story", "bosh", "drool", "baloney", "taradiddle", "humbug", "tommyrot", "tosh", "twaddle", "tale", "fib", "bilgewater"]}, {"answer": "tartar", "hint": "synonyms for tartar", "clues": ["potassium hydrogen tartrate", "calculus", "cream of tartar", "potassium bitartrate", "tophus", "tartar"]}, {"answer": "tartness", "hint": "synonyms for tartness", "clues": ["sour", "acerbity", "sourness", "acrimony", "bitterness", "jaundice", "thorniness", "tartness"]}, {"answer": "task", "hint": "synonyms for task", "clues": ["chore", "labor", "job", "project", "undertaking", "task"]}, {"answer": "taste", "hint": "synonyms for taste", "clues": ["tasting", "taste sensation", "gustation", "taste perception", "perceptiveness", "gustatory modality", "predilection", "discernment", "preference", "gustatory sensation", "appreciation", "sense of taste", "mouthful", "penchant", "gustatory perception", "taste"]}, {"answer": "taste_perception", "hint": "synonyms for taste perception", "clues": ["taste", "gustatory sensation", "taste sensation", "gustatory perception", "taste perception"]}, {"answer": "taste_sensation", "hint": "synonyms for taste sensation", "clues": ["taste", "gustatory sensation", "taste perception", "gustatory perception", "taste sensation"]}, {"answer": "tasting", "hint": "synonyms for tasting", "clues": ["relishing", "degustation", "taste", "savouring", "tasting"]}, {"answer": "tater", "hint": "synonyms for tater", "clues": ["spud", "white potato", "murphy", "potato", "tater"]}, {"answer": "tatter", "hint": "synonyms for tatter", "clues": ["shred", "tag", "tag end", "rag", "tatter"]}, {"answer": "tawdriness", "hint": "synonyms for tawdriness", "clues": ["gaudiness", "brashness", "loudness", "meretriciousness", "flashiness", "garishness", "glitz", "tawdriness"]}, {"answer": "taxation", "hint": "synonyms for taxation", "clues": ["tax", "tax revenue", "revenue", "tax income", "revenue enhancement", "taxation"]}, {"answer": "taxis", "hint": "synonyms for taxis", "clues": ["hack", "cab", "taxicab", "taxi"]}, {"answer": "tb", "hint": "synonyms for tb", "clues": ["atomic number 65", "terabyte", "terabit", "tebibyte", "terbium", "tb"]}, {"answer": "te", "hint": "synonyms for te", "clues": ["tellurium", "ti", "atomic number 52", "si", "te"]}, {"answer": "tea_parlor", "hint": "synonyms for tea parlor", "clues": ["tea parlour", "teahouse", "teashop", "tearoom"]}, {"answer": "tea_parlour", "hint": "synonyms for tea parlour", "clues": ["teahouse", "teashop", "tearoom", "tea parlor"]}, {"answer": "teaberry", "hint": "synonyms for teaberry", "clues": ["wintergreen", "checkerberry", "spiceberry", "boxberry", "teaberry"]}, {"answer": "teaching", "hint": "synonyms for teaching", "clues": ["instruction", "education", "precept", "pedagogy", "commandment", "educational activity", "didactics", "teaching"]}, {"answer": "teahouse", "hint": "synonyms for teahouse", "clues": ["tea parlour", "teashop", "tearoom", "teahouse"]}, {"answer": "tear", "hint": "synonyms for tear", "clues": ["bout", "rent", "snag", "rip", "binge", "bust", "split", "tear"]}, {"answer": "tearoom", "hint": "synonyms for tearoom", "clues": ["tea parlour", "teahouse", "teashop", "tearoom"]}, {"answer": "tears", "hint": "synonyms for tears", "clues": ["tear", "rent", "snag", "rip", "weeping", "binge", "crying", "bout", "bust", "split"]}, {"answer": "teaser", "hint": "synonyms for teaser", "clues": ["puzzle", "tormentor", "mystifier", "teaser"]}, {"answer": "teashop", "hint": "synonyms for teashop", "clues": ["tea parlour", "teahouse", "tearoom", "teashop"]}, {"answer": "teddy", "hint": "synonyms for teddy", "clues": ["shimmy", "shift", "chemise", "slip", "teddy bear", "teddy"]}, {"answer": "tedium", "hint": "synonyms for tedium", "clues": ["tediousness", "boredom", "tiresomeness", "ennui", "tedium"]}, {"answer": "teeter", "hint": "synonyms for teeter", "clues": ["teeterboard", "tilting board", "teetertotter", "dandle board", "seesaw", "teeter"]}, {"answer": "teeter-totter", "hint": "synonyms for teeter-totter", "clues": ["teeterboard", "tilting board", "teeter", "teetertotter", "dandle board", "seesaw"]}, {"answer": "teeterboard", "hint": "synonyms for teeterboard", "clues": ["tilting board", "teeter", "teetertotter", "dandle board", "seesaw", "teeterboard"]}, {"answer": "teetertotter", "hint": "synonyms for teetertotter", "clues": ["teeterboard", "tilting board", "teeter", "dandle board", "seesaw", "teeter-totter"]}, {"answer": "telephone_booth", "hint": "synonyms for telephone booth", "clues": ["telephone box", "telephone kiosk", "call box", "phone booth"]}, {"answer": "telephone_box", "hint": "synonyms for telephone box", "clues": ["telephone booth", "telephone kiosk", "call box", "phone booth"]}, {"answer": "telephone_circuit", "hint": "synonyms for telephone circuit", "clues": ["line", "subscriber line", "phone line", "telephone line", "telephone circuit"]}, {"answer": "telephone_kiosk", "hint": "synonyms for telephone kiosk", "clues": ["telephone booth", "call box", "phone booth", "telephone kiosk"]}, {"answer": "telephone_line", "hint": "synonyms for telephone line", "clues": ["line", "telephone circuit", "subscriber line", "phone line", "telegraph wire", "telephone wire"]}, {"answer": "teleprinter", "hint": "synonyms for teleprinter", "clues": ["teletypewriter", "teletype machine", "telex", "telex machine", "teleprinter"]}, {"answer": "teletype_machine", "hint": "synonyms for teletype machine", "clues": ["teletypewriter", "telex machine", "telex", "teleprinter", "teletype machine"]}, {"answer": "teletypewriter", "hint": "synonyms for teletypewriter", "clues": ["teletype machine", "telex", "teleprinter", "telex machine", "teletypewriter"]}, {"answer": "television", "hint": "synonyms for television", "clues": ["television set", "tv", "telly", "television receiver", "video", "goggle box", "television system", "idiot box", "tv set", "telecasting", "boob tube", "television"]}, {"answer": "television_receiver", "hint": "synonyms for television receiver", "clues": ["television set", "tv", "telly", "goggle box", "idiot box", "tv set", "television", "boob tube", "television receiver"]}, {"answer": "television_set", "hint": "synonyms for television set", "clues": ["tv", "telly", "television receiver", "goggle box", "idiot box", "tv set", "television", "boob tube", "television set"]}, {"answer": "telex", "hint": "synonyms for telex", "clues": ["teletypewriter", "teletype machine", "telex machine", "teleprinter", "telex"]}, {"answer": "telex_machine", "hint": "synonyms for telex machine", "clues": ["teletypewriter", "teletype machine", "telex", "teleprinter", "telex machine"]}, {"answer": "telly", "hint": "synonyms for telly", "clues": ["television set", "tv", "television receiver", "goggle box", "idiot box", "tv set", "television", "boob tube", "telly"]}, {"answer": "temper", "hint": "synonyms for temper", "clues": ["peevishness", "surliness", "toughness", "mood", "humour", "biliousness", "pettishness", "irritability", "snappishness", "pique", "irritation", "temper"]}, {"answer": "template_rna", "hint": "synonyms for template rna", "clues": ["template RNA", "mRNA", "informational RNA", "messenger RNA"]}, {"answer": "tenaciousness", "hint": "synonyms for tenaciousness", "clues": ["persistence", "perseverance", "doggedness", "pertinacity", "tenacity", "tenaciousness"]}, {"answer": "tenacity", "hint": "synonyms for tenacity", "clues": ["persistency", "tenaciousness", "perseverance", "doggedness", "pertinacity", "tenacity"]}, {"answer": "tendency", "hint": "synonyms for tendency", "clues": ["inclination", "disposition", "leaning", "trend", "propensity", "tendency"]}, {"answer": "tenderness", "hint": "synonyms for tenderness", "clues": ["tenderheartedness", "fondness", "affection", "affectionateness", "philia", "heart", "softheartedness", "warmness", "warmheartedness", "tenderness"]}, {"answer": "tenner", "hint": "synonyms for tenner", "clues": ["ten dollar bill", "10", "decade", "ten", "tenner"]}, {"answer": "tent-fly", "hint": "synonyms for tent-fly", "clues": ["rainfly", "fly sheet", "tent flap", "fly", "tent-fly"]}, {"answer": "tent_flap", "hint": "synonyms for tent flap", "clues": ["rainfly", "fly sheet", "tent-fly", "fly", "tent flap"]}, {"answer": "tenuity", "hint": "synonyms for tenuity", "clues": ["thinness", "slenderness", "low density", "feebleness", "rarity", "tenuity"]}, {"answer": "tercet", "hint": "synonyms for tercet", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "tercet"]}, {"answer": "term", "hint": "synonyms for term", "clues": ["terminus", "terminal figure", "full term", "condition", "term"]}, {"answer": "term_of_enlistment", "hint": "synonyms for term of enlistment", "clues": ["tour", "enlistment", "duty tour", "hitch", "tour of duty", "term of enlistment"]}, {"answer": "termination", "hint": "synonyms for termination", "clues": ["ending", "expiry", "resultant", "expiration", "result", "endpoint", "terminus", "conclusion", "final result", "outcome", "termination"]}, {"answer": "terminus", "hint": "synonyms for terminus", "clues": ["endpoint", "destination", "termination", "terminal figure", "depot", "term", "terminal", "terminus"]}, {"answer": "terms", "hint": "synonyms for terms", "clues": ["terminus", "terminal figure", "full term", "term", "price", "damage", "condition"]}, {"answer": "ternion", "hint": "synonyms for ternion", "clues": ["tierce", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "ternion"]}, {"answer": "terra_alba", "hint": "synonyms for terra alba", "clues": ["china stone", "pipeclay", "kaolin", "china clay", "porcelain clay", "terra alba"]}, {"answer": "terra_firma", "hint": "synonyms for terra firma", "clues": ["ground", "dry land", "earth", "land", "solid ground", "terra firma"]}, {"answer": "territory", "hint": "synonyms for territory", "clues": ["soil", "dominion", "district", "territorial dominion", "territory"]}, {"answer": "terzetto", "hint": "synonyms for terzetto", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "terzetto"]}, {"answer": "test", "hint": "synonyms for test", "clues": ["trial run", "mental testing", "exam", "run", "tryout", "trial", "psychometric test", "examination", "test"]}, {"answer": "tetrad", "hint": "synonyms for tetrad", "clues": ["quaternary", "four", "quadruplet", "quatern", "quartet", "quaternity", "4", "quaternion", "foursome", "tetrad"]}, {"answer": "text", "hint": "synonyms for text", "clues": ["schoolbook", "school text", "text edition", "textbook", "textual matter", "text"]}, {"answer": "text_edition", "hint": "synonyms for text edition", "clues": ["text", "schoolbook", "school text", "textbook", "text edition"]}, {"answer": "thaumaturgy", "hint": "synonyms for thaumaturgy", "clues": ["legerdemain", "magic trick", "trick", "deception", "magic", "illusion", "conjuration", "conjuring trick", "thaumaturgy"]}, {"answer": "the_great_calamity", "hint": "synonyms for the great calamity", "clues": ["the Great Starvation", "the Great Calamity", "the Irish Famine", "the Great Hunger"]}, {"answer": "the_great_hunger", "hint": "synonyms for the great hunger", "clues": ["the Great Starvation", "the Great Calamity", "the Irish Famine", "the Great Hunger"]}, {"answer": "the_great_starvation", "hint": "synonyms for the great starvation", "clues": ["the Great Starvation", "the Great Calamity", "the Irish Famine", "the Great Hunger"]}, {"answer": "the_great_unwashed", "hint": "synonyms for the great unwashed", "clues": ["hoi polloi", "people", "mass", "multitude", "the great unwashed"]}, {"answer": "the_irish_famine", "hint": "synonyms for the irish famine", "clues": ["the Great Starvation", "the Great Calamity", "the Irish Famine", "the Great Hunger"]}, {"answer": "the_pits", "hint": "synonyms for the pits", "clues": ["hellhole", "inferno", "snake pit", "hell", "hell on earth", "the pits"]}, {"answer": "theater", "hint": "synonyms for theater", "clues": ["theatre", "theatre of operations", "dramatic art", "house", "field of operations", "field", "dramaturgy", "dramatics"]}, {"answer": "theater_of_operations", "hint": "synonyms for theater of operations", "clues": ["theatre", "theatre of operations", "field", "field of operations"]}, {"answer": "theatre", "hint": "synonyms for theatre", "clues": ["theatre of operations", "dramatic art", "house", "field of operations", "theater", "field", "dramaturgy", "dramatics"]}, {"answer": "theatre_of_operations", "hint": "synonyms for theatre of operations", "clues": ["theatre", "field", "theater of operations", "field of operations"]}, {"answer": "theatrical_role", "hint": "synonyms for theatrical role", "clues": ["persona", "character", "role", "part", "theatrical role"]}, {"answer": "theft", "hint": "synonyms for theft", "clues": ["thieving", "thievery", "stealing", "larceny", "theft"]}, {"answer": "theme", "hint": "synonyms for theme", "clues": ["melodic theme", "stem", "root word", "musical theme", "idea", "radical", "report", "base", "root", "motif", "topic", "paper", "subject", "composition", "theme"]}, {"answer": "therapeutics", "hint": "synonyms for therapeutics", "clues": ["remedy", "curative", "therapeutic", "cure"]}, {"answer": "thermionic_tube", "hint": "synonyms for thermionic tube", "clues": ["thermionic vacuum tube", "vacuum tube", "thermionic valve", "electron tube", "tube", "thermionic tube"]}, {"answer": "thermionic_vacuum_tube", "hint": "synonyms for thermionic vacuum tube", "clues": ["thermionic tube", "vacuum tube", "thermionic valve", "electron tube", "tube", "thermionic vacuum tube"]}, {"answer": "thermionic_valve", "hint": "synonyms for thermionic valve", "clues": ["thermionic tube", "vacuum tube", "thermionic vacuum tube", "electron tube", "tube", "thermionic valve"]}, {"answer": "thermobaric_bomb", "hint": "synonyms for thermobaric bomb", "clues": ["aerosol bomb", "volume-detonation bomb", "fuel-air bomb", "vacuum bomb", "thermobaric bomb"]}, {"answer": "thiamin", "hint": "synonyms for thiamin", "clues": ["thiamine", "antiberiberi factor", "vitamin B1", "aneurin"]}, {"answer": "thiamine", "hint": "synonyms for thiamine", "clues": ["vitamin B1", "antiberiberi factor", "aneurin", "thiamin"]}, {"answer": "thicket", "hint": "synonyms for thicket", "clues": ["copse", "brushwood", "brush", "coppice", "thicket"]}, {"answer": "thievery", "hint": "synonyms for thievery", "clues": ["thieving", "theft", "stealing", "larceny", "thievery"]}, {"answer": "thigh-slapper", "hint": "synonyms for thigh-slapper", "clues": ["sidesplitter", "riot", "howler", "wow", "belly laugh", "scream", "thigh-slapper"]}, {"answer": "thingamabob", "hint": "synonyms for thingamabob", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingumabob", "doohickey", "whatsis"]}, {"answer": "thingamajig", "hint": "synonyms for thingamajig", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingmajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "thingmabob", "hint": "synonyms for thingmabob", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "thingmajig", "hint": "synonyms for thingmajig", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "thingumabob", "hint": "synonyms for thingumabob", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "thingumajig", "hint": "synonyms for thingumajig", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "gimmick"]}, {"answer": "thingummy", "hint": "synonyms for thingummy", "clues": ["gismo", "gubbins", "doojigger", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis", "thingummy"]}, {"answer": "thinness", "hint": "synonyms for thinness", "clues": ["tenuity", "sparseness", "leanness", "sparsity", "slenderness", "fineness", "thinness"]}, {"answer": "thirties", "hint": "synonyms for thirties", "clues": ["mid-thirties", "thirty-something", "thirty", "30", "1930s", "thirties"]}, {"answer": "thole", "hint": "synonyms for thole", "clues": ["oarlock", "tholepin", "rowlock", "pin", "peg", "thole"]}, {"answer": "tholepin", "hint": "synonyms for tholepin", "clues": ["oarlock", "thole", "rowlock", "pin", "peg", "tholepin"]}, {"answer": "thorniness", "hint": "synonyms for thorniness", "clues": ["spininess", "acerbity", "acrimony", "bristliness", "tartness", "bitterness", "jaundice", "prickliness", "thorniness"]}, {"answer": "thou", "hint": "synonyms for thou", "clues": ["1000", "one thousand", "yard", "grand", "chiliad", "thousand", "thou"]}, {"answer": "thought", "hint": "synonyms for thought", "clues": ["sentiment", "idea", "intellection", "thought process", "persuasion", "mentation", "opinion", "view", "thinking", "cerebration", "thought"]}, {"answer": "thought_process", "hint": "synonyms for thought process", "clues": ["mentation", "thought", "thinking", "intellection", "cerebration", "thought process"]}, {"answer": "thoughtfulness", "hint": "synonyms for thoughtfulness", "clues": ["considerateness", "musing", "reflexion", "reflection", "contemplation", "rumination", "consideration", "thoughtfulness"]}, {"answer": "thrashing", "hint": "synonyms for thrashing", "clues": ["trouncing", "lacing", "slaughter", "whipping", "licking", "whacking", "debacle", "beating", "drubbing", "walloping", "thrashing"]}, {"answer": "thread", "hint": "synonyms for thread", "clues": ["screw thread", "ribbon", "yarn", "train of thought", "thread"]}, {"answer": "threads", "hint": "synonyms for threads", "clues": ["screw thread", "thread", "duds", "togs", "ribbon", "yarn", "train of thought"]}, {"answer": "threesome", "hint": "synonyms for threesome", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "trinity", "trey", "trio", "threesome"]}, {"answer": "threnody", "hint": "synonyms for threnody", "clues": ["lament", "coronach", "dirge", "requiem", "threnody"]}, {"answer": "threshold", "hint": "synonyms for threshold", "clues": ["room access", "door", "doorsill", "brink", "doorstep", "limen", "verge", "doorway", "threshold"]}, {"answer": "thrill", "hint": "synonyms for thrill", "clues": ["kick", "frisson", "tingle", "quiver", "flush", "shudder", "charge", "shiver", "rush", "chill", "boot", "bang", "thrill"]}, {"answer": "throne", "hint": "synonyms for throne", "clues": ["toilet", "can", "potty", "commode", "crapper", "stool", "pot", "throne"]}, {"answer": "throttle", "hint": "synonyms for throttle", "clues": ["accelerator pedal", "gun", "gas", "gas pedal", "throttle valve", "accelerator", "throttle"]}, {"answer": "throughway", "hint": "synonyms for throughway", "clues": ["superhighway", "state highway", "pike", "expressway", "freeway", "motorway", "thruway", "throughway"]}, {"answer": "throwing_stick", "hint": "synonyms for throwing stick", "clues": ["dart thrower", "throw stick", "boomerang", "throwing board", "spear thrower"]}, {"answer": "thrust", "hint": "synonyms for thrust", "clues": ["jabbing", "jab", "knife thrust", "poking", "thrusting", "drive", "driving force", "poke", "push", "stab"]}, {"answer": "thrusting", "hint": "synonyms for thrusting", "clues": ["jabbing", "jab", "poke", "poking", "thrust"]}, {"answer": "thruway", "hint": "synonyms for thruway", "clues": ["throughway", "state highway", "superhighway", "pike", "expressway", "freeway", "motorway", "thruway"]}, {"answer": "thud", "hint": "synonyms for thud", "clues": ["thump", "clump", "clunk", "thud"]}, {"answer": "thumbnut", "hint": "synonyms for thumbnut", "clues": ["butterfly nut", "wing screw", "wing nut", "thumbnut"]}, {"answer": "thump", "hint": "synonyms for thump", "clues": ["thud", "thumping", "clump", "clunk"]}, {"answer": "thunder", "hint": "synonyms for thunder", "clues": ["big H", "hell dust", "scag", "roaring", "nose drops", "smack", "boom", "skag", "thunder"]}, {"answer": "thunderbolt", "hint": "synonyms for thunderbolt", "clues": ["bombshell", "bolt of lightning", "bolt", "thunderclap", "thunderbolt"]}, {"answer": "ti", "hint": "synonyms for ti", "clues": ["atomic number 22", "te", "titanium", "si", "ti"]}, {"answer": "tic-tac-toe", "hint": "synonyms for tic-tac-toe", "clues": ["noughts and crosses", "ticktacktoo", "tit-tat-toe", "tick-tack-toe"]}, {"answer": "tick-tack-toe", "hint": "synonyms for tick-tack-toe", "clues": ["noughts and crosses", "ticktacktoo", "tit-tat-toe", "tic-tac-toe"]}, {"answer": "ticktacktoe", "hint": "synonyms for ticktacktoe", "clues": ["noughts and crosses", "ticktacktoo", "tit-tat-toe", "tick-tack-toe"]}, {"answer": "ticktacktoo", "hint": "synonyms for ticktacktoo", "clues": ["noughts and crosses", "tit-tat-toe", "tick-tack-toe", "ticktacktoo"]}, {"answer": "tidal_bore", "hint": "synonyms for tidal bore", "clues": ["aegir", "eager", "bore", "eagre", "tidal bore"]}, {"answer": "tide_rip", "hint": "synonyms for tide rip", "clues": ["riptide", "crosscurrent", "countercurrent", "rip", "tide rip"]}, {"answer": "tidy_sum", "hint": "synonyms for tidy sum", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "wad", "mass", "raft", "mess", "spate", "passel", "great deal", "hatful", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "flock", "pot", "tidy sum"]}, {"answer": "tie", "hint": "synonyms for tie", "clues": ["tie-in", "link", "tie beam", "standoff", "draw", "necktie", "railroad tie", "linkup", "sleeper", "crosstie", "tie"]}, {"answer": "tierce", "hint": "synonyms for tierce", "clues": ["ternion", "triplet", "ternary", "triad", "terce", "troika", "one-third", "trinity", "leash", "third", "three", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio"]}, {"answer": "tiff", "hint": "synonyms for tiff", "clues": ["spat", "bickering", "pettifoggery", "fuss", "squabble", "tiff"]}, {"answer": "tightfistedness", "hint": "synonyms for tightfistedness", "clues": ["closeness", "tightness", "minginess", "niggardness", "meanness", "parsimoniousness", "parsimony", "tightfistedness"]}, {"answer": "tightness", "hint": "synonyms for tightness", "clues": ["closeness", "constriction", "tautness", "minginess", "niggardness", "concentration", "parsimony", "denseness", "meanness", "parsimoniousness", "compactness", "density", "tightfistedness", "tightness"]}, {"answer": "till", "hint": "synonyms for till", "clues": ["boulder clay", "trough", "money box", "cashbox", "public treasury", "till"]}, {"answer": "tillage", "hint": "synonyms for tillage", "clues": ["tilth", "cultivated land", "farmland", "ploughland", "plowland", "tilled land", "tillage"]}, {"answer": "tilled_land", "hint": "synonyms for tilled land", "clues": ["tilth", "cultivated land", "tillage", "farmland", "ploughland", "plowland", "tilled land"]}, {"answer": "tilt", "hint": "synonyms for tilt", "clues": ["contention", "lean", "disceptation", "careen", "list", "sway", "joust", "contestation", "controversy", "inclination", "rock", "argument", "arguing", "tilt"]}, {"answer": "tilth", "hint": "synonyms for tilth", "clues": ["cultivated land", "tillage", "farmland", "ploughland", "plowland", "tilled land", "tilth"]}, {"answer": "tilting_board", "hint": "synonyms for tilting board", "clues": ["teeterboard", "teeter", "teetertotter", "dandle board", "seesaw", "tilting board"]}, {"answer": "timber", "hint": "synonyms for timber", "clues": ["timbre", "forest", "tone", "woodland", "lumber", "timberland", "quality", "timber"]}, {"answer": "time", "hint": "synonyms for time", "clues": ["meter", "prison term", "sentence", "clip", "metre", "fourth dimension", "clock time", "time"]}, {"answer": "time-and-motion_study", "hint": "synonyms for time-and-motion study", "clues": ["time study", "motion study", "work study", "time and motion study", "time-motion study"]}, {"answer": "time-motion_study", "hint": "synonyms for time-motion study", "clues": ["time-and-motion study", "time study", "work study", "motion study"]}, {"answer": "time_and_motion_study", "hint": "synonyms for time and motion study", "clues": ["time-and-motion study", "time study", "motion study", "work study"]}, {"answer": "time_lag", "hint": "synonyms for time lag", "clues": ["hold", "wait", "delay", "postponement", "time lag"]}, {"answer": "time_study", "hint": "synonyms for time study", "clues": ["time-and-motion study", "motion study", "work study", "time study"]}, {"answer": "times", "hint": "synonyms for times", "clues": ["prison term", "metre", "fourth dimension", "time", "meter", "sentence", "multiplication", "clip", "clock time"]}, {"answer": "timpani", "hint": "synonyms for timpani", "clues": ["tympani", "kettledrum", "kettle", "tympanum"]}, {"answer": "tin", "hint": "synonyms for tin", "clues": ["canister", "can", "atomic number 50", "tin can", "tin"]}, {"answer": "tincture", "hint": "synonyms for tincture", "clues": ["shade", "shadow", "vestige", "tint", "tone", "trace", "tincture"]}, {"answer": "tinder", "hint": "synonyms for tinder", "clues": ["spunk", "touchwood", "kindling", "tinder"]}, {"answer": "tinge", "hint": "synonyms for tinge", "clues": ["touch", "hint", "soupcon", "jot", "mite", "pinch", "undertone", "speck", "tinge"]}, {"answer": "tingle", "hint": "synonyms for tingle", "clues": ["frisson", "quiver", "prickling", "shiver", "thrill", "shudder", "tingling", "chill", "tingle"]}, {"answer": "tininess", "hint": "synonyms for tininess", "clues": ["diminutiveness", "minuteness", "weeness", "petiteness", "tininess"]}, {"answer": "tinker's_dam", "hint": "synonyms for tinker's dam", "clues": ["damn", "shit", "darn", "hoot", "tinker's damn", "red cent", "shucks"]}, {"answer": "tinker's_damn", "hint": "synonyms for tinker's damn", "clues": ["damn", "shit", "darn", "hoot", "tinker's dam", "red cent", "shucks"]}, {"answer": "tip", "hint": "synonyms for tip", "clues": ["bakshis", "gratuity", "confidential information", "hint", "steer", "wind", "summit", "peak", "top", "baksheesh", "crown", "crest", "point", "lead", "pourboire", "tip"]}, {"answer": "tip_truck", "hint": "synonyms for tip truck", "clues": ["dump truck", "tipper lorry", "tipper truck", "tipper", "dumper"]}, {"answer": "tipper", "hint": "synonyms for tipper", "clues": ["dump truck", "tipper lorry", "tipper truck", "dumper", "tipper"]}, {"answer": "tipper_lorry", "hint": "synonyms for tipper lorry", "clues": ["dump truck", "tipper truck", "tipper", "dumper", "tipper lorry"]}, {"answer": "tipper_truck", "hint": "synonyms for tipper truck", "clues": ["dump truck", "tipper lorry", "tipper", "tip truck", "dumper"]}, {"answer": "tit-tat-toe", "hint": "synonyms for tit-tat-toe", "clues": ["noughts and crosses", "ticktacktoo", "tick-tack-toe", "tit-tat-toe"]}, {"answer": "title", "hint": "synonyms for title", "clues": ["claim", "deed of conveyance", "deed", "title of respect", "form of address", "statute title", "rubric", "title"]}, {"answer": "tittle", "hint": "synonyms for tittle", "clues": ["smidgen", "scintilla", "iota", "whit", "shred", "tittle"]}, {"answer": "tittle-tattle", "hint": "synonyms for tittle-tattle", "clues": ["small talk", "chin-wagging", "chitchat", "gossip", "causerie", "chin wag", "gabfest", "gab", "tittle-tattle"]}, {"answer": "toffee_apple", "hint": "synonyms for toffee apple", "clues": ["taffy apple", "caramel apple", "candied apple", "candy apple", "toffee apple"]}, {"answer": "toilet", "hint": "synonyms for toilet", "clues": ["can", "potty", "commode", "lavatory", "stool", "pot", "john", "throne", "toilette", "privy", "crapper", "bathroom", "lav"]}, {"answer": "toilet_facility", "hint": "synonyms for toilet facility", "clues": ["convenience", "public toilet", "public convenience", "comfort station", "wash room", "public lavatory", "restroom", "toilet facility"]}, {"answer": "tolerance", "hint": "synonyms for tolerance", "clues": ["leeway", "allowance", "permissiveness", "margin", "tolerance"]}, {"answer": "tomfoolery", "hint": "synonyms for tomfoolery", "clues": ["indulgence", "folly", "lunacy", "craziness", "foolery", "tomfoolery"]}, {"answer": "tommyrot", "hint": "synonyms for tommyrot", "clues": ["tarradiddle", "bosh", "drool", "baloney", "humbug", "tosh", "twaddle", "bilgewater", "tommyrot"]}, {"answer": "ton", "hint": "synonyms for ton", "clues": ["gross ton", "long ton", "short ton", "net ton", "ton"]}, {"answer": "tone", "hint": "synonyms for tone", "clues": ["step", "whole step", "note", "pure tone", "musical note", "shade", "timbre", "tone of voice", "timber", "tint", "quality", "tincture", "whole tone", "tone"]}, {"answer": "tongue", "hint": "synonyms for tongue", "clues": ["spit", "clapper", "knife", "natural language", "tongue"]}, {"answer": "tons", "hint": "synonyms for tons", "clues": ["lots", "loads", "long ton", "lashings", "oodles", "wads", "gobs", "rafts", "heaps", "net ton", "piles", "scads", "slews", "short ton", "gross ton", "ton", "stacks", "dozens", "scores"]}, {"answer": "toot", "hint": "synonyms for toot", "clues": ["booze-up", "bender", "carouse", "carousal", "toot"]}, {"answer": "top_boot", "hint": "synonyms for top boot", "clues": ["buskin", "half boot", "combat boot", "desert boot", "top boot"]}, {"answer": "top_hat", "hint": "synonyms for top hat", "clues": ["beaver", "high hat", "topper", "silk hat", "stovepipe", "dress hat", "opera hat", "top hat"]}, {"answer": "topee", "hint": "synonyms for topee", "clues": ["sun helmet", "topi", "pith hat", "pith helmet", "topee"]}, {"answer": "topi", "hint": "synonyms for topi", "clues": ["sun helmet", "pith hat", "topee", "pith helmet", "topi"]}, {"answer": "topic", "hint": "synonyms for topic", "clues": ["theme", "matter", "subject", "issue", "topic"]}, {"answer": "topology", "hint": "synonyms for topology", "clues": ["analysis situs", "network topology", "regional anatomy", "topographic anatomy", "topology"]}, {"answer": "topper", "hint": "synonyms for topper", "clues": ["beaver", "high hat", "silk hat", "stovepipe", "top hat", "dress hat", "opera hat", "topper"]}, {"answer": "torment", "hint": "synonyms for torment", "clues": ["anguish", "bedevilment", "curse", "agony", "torture", "badgering", "harassment", "worrying", "torment"]}, {"answer": "tornado_lantern", "hint": "synonyms for tornado lantern", "clues": ["storm lamp", "hurricane lamp", "storm lantern", "hurricane lantern", "tornado lantern"]}, {"answer": "torpedo", "hint": "synonyms for torpedo", "clues": ["hoagie", "wedge", "zep", "hoagy", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "torpedo"]}, {"answer": "torrent", "hint": "synonyms for torrent", "clues": ["flood", "deluge", "soaker", "violent stream", "cloudburst", "inundation", "downpour", "pelter", "waterspout", "torrent"]}, {"answer": "torsion", "hint": "synonyms for torsion", "clues": ["contortion", "tortuousness", "torque", "tortuosity", "crookedness", "torsion"]}, {"answer": "tortuosity", "hint": "synonyms for tortuosity", "clues": ["tortuousness", "contortion", "torsion", "crookedness", "tortuosity"]}, {"answer": "tortuousness", "hint": "synonyms for tortuousness", "clues": ["contortion", "complicatedness", "torsion", "complication", "knottiness", "tortuosity", "crookedness", "tortuousness"]}, {"answer": "torture", "hint": "synonyms for torture", "clues": ["anguish", "distortion", "overrefinement", "agony", "torment", "straining", "twisting", "torturing", "torture"]}, {"answer": "tosh", "hint": "synonyms for tosh", "clues": ["tarradiddle", "bosh", "drool", "baloney", "humbug", "tommyrot", "twaddle", "bilgewater", "tosh"]}, {"answer": "totaliser", "hint": "synonyms for totaliser", "clues": ["totalisator", "totalizer", "pari-mutuel machine", "adding machine"]}, {"answer": "totalitarianism", "hint": "synonyms for totalitarianism", "clues": ["one-man rule", "tyranny", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalism", "absolutism", "totalitarianism"]}, {"answer": "totalizer", "hint": "synonyms for totalizer", "clues": ["totalisator", "pari-mutuel machine", "adding machine", "totaliser"]}, {"answer": "totten_trust", "hint": "synonyms for totten trust", "clues": ["savings bank trust", "trustee account", "savings account trust", "totten trust"]}, {"answer": "touch", "hint": "synonyms for touch", "clues": ["cutaneous senses", "hint", "tactile sensation", "tinge", "mite", "touching", "pinch", "signature", "sense of touch", "skin senses", "speck", "touch modality", "jot", "ghost", "contact", "trace", "touch sensation", "soupcon", "feeling"]}, {"answer": "touch_modality", "hint": "synonyms for touch modality", "clues": ["cutaneous senses", "touch", "sense of touch", "skin senses", "touch modality"]}, {"answer": "touch_sensation", "hint": "synonyms for touch sensation", "clues": ["touch", "feeling", "tactile sensation", "touch sensation"]}, {"answer": "touchwood", "hint": "synonyms for touchwood", "clues": ["spunk", "tinder", "kindling", "touchwood"]}, {"answer": "toughness", "hint": "synonyms for toughness", "clues": ["ruggedness", "staying power", "temper", "stamina", "formidability", "huskiness", "toughness"]}, {"answer": "tour", "hint": "synonyms for tour", "clues": ["go", "hitch", "term of enlistment", "turn", "circuit", "duty tour", "enlistment", "tour of duty", "spell", "tour"]}, {"answer": "tour_of_duty", "hint": "synonyms for tour of duty", "clues": ["term of enlistment", "tour", "enlistment", "duty tour", "hitch", "tour of duty"]}, {"answer": "tourist_court", "hint": "synonyms for tourist court", "clues": ["motor hotel", "motor lodge", "court", "motor inn", "tourist court"]}, {"answer": "tours", "hint": "synonyms for tours", "clues": ["go", "hitch", "term of enlistment", "turn", "tour", "circuit", "duty tour", "enlistment", "tour of duty", "spell"]}, {"answer": "tower", "hint": "synonyms for tower", "clues": ["tug", "tugboat", "towboat", "pillar", "column", "tower"]}, {"answer": "toying", "hint": "synonyms for toying", "clues": ["flirtation", "flirting", "dalliance", "coquetry", "toying"]}, {"answer": "trace", "hint": "synonyms for trace", "clues": ["shadow", "hint", "vestige", "touch", "tracing", "ghost", "suggestion", "tincture", "trace"]}, {"answer": "track", "hint": "synonyms for track", "clues": ["data track", "rail", "caterpillar tread", "path", "cartroad", "racecourse", "cart track", "racetrack", "cut", "raceway", "running", "lead", "runway", "course", "track"]}, {"answer": "tract", "hint": "synonyms for tract", "clues": ["piece of land", "parcel", "piece of ground", "pamphlet", "parcel of land", "tract"]}, {"answer": "tractor_trailer", "hint": "synonyms for tractor trailer", "clues": ["semi", "trucking rig", "trailer truck", "articulated lorry", "rig", "tractor trailer"]}, {"answer": "trade", "hint": "synonyms for trade", "clues": ["trade wind", "barter", "craft", "swop", "swap", "business deal", "deal", "patronage", "trade"]}, {"answer": "trade_union", "hint": "synonyms for trade union", "clues": ["trades union", "union", "brotherhood", "labor union"]}, {"answer": "trades_union", "hint": "synonyms for trades union", "clues": ["trade union", "union", "brotherhood", "labor union"]}, {"answer": "traducement", "hint": "synonyms for traducement", "clues": ["calumniation", "hatchet job", "defamation", "obloquy", "calumny", "traducement"]}, {"answer": "tragedy", "hint": "synonyms for tragedy", "clues": ["cataclysm", "catastrophe", "disaster", "calamity", "tragedy"]}, {"answer": "trailer_truck", "hint": "synonyms for trailer truck", "clues": ["semi", "trucking rig", "articulated lorry", "tractor trailer", "rig", "trailer truck"]}, {"answer": "train", "hint": "synonyms for train", "clues": ["caravan", "gear", "railroad train", "geartrain", "power train", "wagon train", "string", "train"]}, {"answer": "train_depot", "hint": "synonyms for train depot", "clues": ["railroad station", "train station", "railroad terminal", "railway station", "train depot"]}, {"answer": "train_station", "hint": "synonyms for train station", "clues": ["railroad station", "railroad terminal", "train depot", "railway station", "train station"]}, {"answer": "training", "hint": "synonyms for training", "clues": ["preparation", "breeding", "education", "grooming", "training"]}, {"answer": "tram", "hint": "synonyms for tram", "clues": ["cable tramway", "ropeway", "tramcar", "trolley", "aerial tramway", "trolley car", "tramway", "streetcar", "tram"]}, {"answer": "tramcar", "hint": "synonyms for tramcar", "clues": ["trolley car", "trolley", "streetcar", "tram", "tramcar"]}, {"answer": "trammel", "hint": "synonyms for trammel", "clues": ["trammel net", "bond", "hamper", "shackle", "trammel"]}, {"answer": "tramway", "hint": "synonyms for tramway", "clues": ["cable tramway", "ropeway", "aerial tramway", "streetcar track", "tramline", "tram", "tramway"]}, {"answer": "tranquility", "hint": "synonyms for tranquility", "clues": ["quiet", "serenity", "quietude", "repose", "tranquillity", "quietness", "placidity"]}, {"answer": "tranquilizer", "hint": "synonyms for tranquilizer", "clues": ["tranquillizer", "antianxiety agent", "ataractic", "ataractic drug", "ataractic agent"]}, {"answer": "tranquilliser", "hint": "synonyms for tranquilliser", "clues": ["tranquilizer", "antianxiety agent", "ataractic", "ataractic drug", "ataractic agent"]}, {"answer": "tranquillity", "hint": "synonyms for tranquillity", "clues": ["quietude", "quiet", "serenity", "quietness", "repose", "tranquility", "placidity"]}, {"answer": "tranquillizer", "hint": "synonyms for tranquillizer", "clues": ["tranquilizer", "antianxiety agent", "ataractic", "ataractic drug", "ataractic agent"]}, {"answer": "transactions", "hint": "synonyms for transactions", "clues": ["dealings", "transaction", "proceedings", "minutes"]}, {"answer": "transcription", "hint": "synonyms for transcription", "clues": ["recording", "arrangement", "written text", "arranging", "transcription"]}, {"answer": "transfer", "hint": "synonyms for transfer", "clues": ["carry-over", "conveyance", "transfer of training", "transference", "transport", "transportation", "transferral", "transfer"]}, {"answer": "transfer_rna", "hint": "synonyms for transfer rna", "clues": ["transfer RNA", "soluble RNA", "tRNA", "acceptor RNA"]}, {"answer": "transferral", "hint": "synonyms for transferral", "clues": ["transport", "transportation", "conveyance", "transfer", "transferral"]}, {"answer": "transience", "hint": "synonyms for transience", "clues": ["brevity", "transiency", "transitoriness", "briefness"]}, {"answer": "transit", "hint": "synonyms for transit", "clues": ["theodolite", "transportation", "transportation system", "passage", "transit"]}, {"answer": "transition", "hint": "synonyms for transition", "clues": ["modulation", "passage", "changeover", "conversion", "transition"]}, {"answer": "translation", "hint": "synonyms for translation", "clues": ["interlingual rendition", "transformation", "version", "displacement", "rendering", "translation"]}, {"answer": "transmission", "hint": "synonyms for transmission", "clues": ["transmittance", "transmission system", "contagion", "transmitting", "infection", "transmittal", "transmission"]}, {"answer": "transport", "hint": "synonyms for transport", "clues": ["tape transport", "tape drive", "transportation", "transferral", "transfer", "shipping", "conveyance", "transport"]}, {"answer": "transportation", "hint": "synonyms for transportation", "clues": ["transit", "transferral", "transfer", "shipping", "expatriation", "conveyance", "transportation system", "fare", "deportation", "transport", "exile", "transportation"]}, {"answer": "transporter", "hint": "synonyms for transporter", "clues": ["conveyor", "car transporter", "conveyor belt", "transporter"]}, {"answer": "transposition", "hint": "synonyms for transposition", "clues": ["permutation", "replacement", "reversal", "switch", "substitution", "transposition"]}, {"answer": "trap", "hint": "synonyms for trap", "clues": ["ambush", "bunker", "ambuscade", "lying in wait", "snare", "sand trap", "trap"]}, {"answer": "trappings", "hint": "synonyms for trappings", "clues": ["furnishing", "housing", "caparison", "trapping"]}, {"answer": "trash", "hint": "synonyms for trash", "clues": ["glass", "codswallop", "shabu", "methamphetamine", "wish-wash", "scrap", "chicken feed", "scum", "meth", "methamphetamine hydrochloride", "tripe", "ice", "chalk", "trumpery", "folderol", "applesauce", "crank", "deoxyephedrine", "rubbish", "trash"]}, {"answer": "trash_barrel", "hint": "synonyms for trash barrel", "clues": ["ashcan", "ash-bin", "garbage can", "trash bin", "dustbin", "trash can", "wastebin", "trash barrel"]}, {"answer": "trash_bin", "hint": "synonyms for trash bin", "clues": ["ashcan", "ash-bin", "garbage can", "trash barrel", "dustbin", "trash can", "wastebin", "trash bin"]}, {"answer": "trash_can", "hint": "synonyms for trash can", "clues": ["ashcan", "ash-bin", "garbage can", "trash barrel", "trash bin", "dustbin", "wastebin", "trash can"]}, {"answer": "trash_dump", "hint": "synonyms for trash dump", "clues": ["wasteyard", "rubbish dump", "dumpsite", "garbage dump", "dump", "trash dump"]}, {"answer": "trash_heap", "hint": "synonyms for trash heap", "clues": ["trash pile", "junk pile", "scrapheap", "refuse heap", "junk heap", "garbage heap", "rubbish heap", "trash heap"]}, {"answer": "trash_pile", "hint": "synonyms for trash pile", "clues": ["trash heap", "junk pile", "scrapheap", "refuse heap", "junk heap", "garbage heap", "rubbish heap", "trash pile"]}, {"answer": "travail", "hint": "synonyms for travail", "clues": ["effort", "exertion", "elbow grease", "sweat", "travail"]}, {"answer": "traveling_bag", "hint": "synonyms for traveling bag", "clues": ["travelling bag", "suitcase", "bag", "grip"]}, {"answer": "travelling_bag", "hint": "synonyms for travelling bag", "clues": ["suitcase", "bag", "grip", "traveling bag"]}, {"answer": "traverse", "hint": "synonyms for traverse", "clues": ["crossbeam", "traversal", "transom", "trave", "crosspiece", "traverse"]}, {"answer": "travesty", "hint": "synonyms for travesty", "clues": ["burlesque", "lampoon", "spoof", "put-on", "farce comedy", "farce", "mockery", "sendup", "charade", "pasquinade", "parody", "takeoff", "travesty"]}, {"answer": "trawl", "hint": "synonyms for trawl", "clues": ["trawl line", "dragnet", "trotline", "trawl net", "setline", "spiller", "trawl"]}, {"answer": "trawl_line", "hint": "synonyms for trawl line", "clues": ["trawl", "setline", "trotline", "spiller", "trawl line"]}, {"answer": "treachery", "hint": "synonyms for treachery", "clues": ["treason", "perfidiousness", "perfidy", "betrayal", "treachery"]}, {"answer": "treacle", "hint": "synonyms for treacle", "clues": ["glop", "mush", "golden syrup", "slop", "treacle"]}, {"answer": "treason", "hint": "synonyms for treason", "clues": ["treachery", "high treason", "traitorousness", "subversiveness", "lese majesty", "perfidy", "betrayal", "treason"]}, {"answer": "treat", "hint": "synonyms for treat", "clues": ["goody", "kickshaw", "dainty", "delicacy", "treat"]}, {"answer": "treatment", "hint": "synonyms for treatment", "clues": ["handling", "intervention", "discourse", "discussion", "treatment"]}, {"answer": "trebuchet", "hint": "synonyms for trebuchet", "clues": ["onager", "arbalest", "trebucket", "mangonel", "catapult", "bricole", "ballista"]}, {"answer": "trebucket", "hint": "synonyms for trebucket", "clues": ["onager", "arbalest", "trebuchet", "mangonel", "catapult", "bricole", "ballista"]}, {"answer": "trend", "hint": "synonyms for trend", "clues": ["movement", "tendency", "drift", "style", "vogue", "course", "trend"]}, {"answer": "trespass", "hint": "synonyms for trespass", "clues": ["violation", "intrusion", "usurpation", "encroachment", "trespass"]}, {"answer": "trey", "hint": "synonyms for trey", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trio", "trey"]}, {"answer": "triad", "hint": "synonyms for triad", "clues": ["tierce", "ternion", "triplet", "ternary", "troika", "common chord", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "triad"]}, {"answer": "trial", "hint": "synonyms for trial", "clues": ["test", "tryout", "tribulation", "trial run", "visitation", "run", "trial"]}, {"answer": "tribe", "hint": "synonyms for tribe", "clues": ["kin group", "kinship group", "kindred", "kin", "federation of tribes", "clan", "folk", "tribe"]}, {"answer": "trice", "hint": "synonyms for trice", "clues": ["twinkling", "jiffy", "instant", "flash", "wink", "split second", "heartbeat", "blink of an eye", "trice"]}, {"answer": "trick", "hint": "synonyms for trick", "clues": ["legerdemain", "magic trick", "joke", "caper", "thaumaturgy", "put-on", "prank", "antic", "deception", "illusion", "magic", "fast one", "conjuration", "conjuring trick", "trick"]}, {"answer": "trickery", "hint": "synonyms for trickery", "clues": ["skullduggery", "guile", "jiggery-pokery", "wile", "chicanery", "slickness", "hocus-pocus", "shenanigan", "hanky panky", "trickery"]}, {"answer": "trifle", "hint": "synonyms for trifle", "clues": ["small beer", "technicality", "triviality", "trivia", "trifle"]}, {"answer": "trimmings", "hint": "synonyms for trimmings", "clues": ["trimming", "trim", "clipping", "passementerie", "fixings"]}, {"answer": "trine", "hint": "synonyms for trine", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "deuce-ace", "3", "threesome", "trey", "trio", "trine"]}, {"answer": "trinity", "hint": "synonyms for trinity", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "troika", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "trinity"]}, {"answer": "trinket", "hint": "synonyms for trinket", "clues": ["bangle", "novelty", "gaud", "fallal", "gewgaw", "bauble", "trinket"]}, {"answer": "trio", "hint": "synonyms for trio", "clues": ["tierce", "ternion", "triplet", "triad", "troika", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "ternary", "trio"]}, {"answer": "trip", "hint": "synonyms for trip", "clues": ["head trip", "tripper", "slip", "misstep", "trip-up", "stumble", "trip"]}, {"answer": "tripe", "hint": "synonyms for tripe", "clues": ["trumpery", "folderol", "trash", "codswallop", "applesauce", "rubbish", "wish-wash", "tripe"]}, {"answer": "triplet", "hint": "synonyms for triplet", "clues": ["tierce", "ternion", "ternary", "triad", "troika", "trinity", "triple", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio"]}, {"answer": "trivia", "hint": "synonyms for trivia", "clues": ["triviality", "trifle", "trivium", "small beer", "trivia"]}, {"answer": "triviality", "hint": "synonyms for triviality", "clues": ["small beer", "slightness", "technicality", "puniness", "pettiness", "trifle", "trivia", "triviality"]}, {"answer": "trna", "hint": "synonyms for trna", "clues": ["transfer RNA", "soluble RNA", "tRNA", "acceptor RNA"]}, {"answer": "troika", "hint": "synonyms for troika", "clues": ["tierce", "ternion", "triplet", "ternary", "triad", "trinity", "leash", "three", "tercet", "terzetto", "trine", "deuce-ace", "3", "threesome", "trey", "trio", "troika"]}, {"answer": "trolley", "hint": "synonyms for trolley", "clues": ["streetcar", "tramcar", "trolley car", "tram", "trolley"]}, {"answer": "trolley_car", "hint": "synonyms for trolley car", "clues": ["streetcar", "tramcar", "trolley", "tram", "trolley car"]}, {"answer": "troops", "hint": "synonyms for troops", "clues": ["military personnel", "troop", "scout group", "flock", "soldiery", "scout troop"]}, {"answer": "trot", "hint": "synonyms for trot", "clues": ["crib", "pony", "lope", "jog", "trot"]}, {"answer": "trotline", "hint": "synonyms for trotline", "clues": ["trawl", "trawl line", "setline", "spiller", "trotline"]}, {"answer": "trouble", "hint": "synonyms for trouble", "clues": ["worry", "hassle", "difficulty", "fuss", "problem", "bother", "trouble"]}, {"answer": "trough", "hint": "synonyms for trough", "clues": ["gutter", "bowl", "public treasury", "till", "manger", "trough"]}, {"answer": "trouncing", "hint": "synonyms for trouncing", "clues": ["thrashing", "lacing", "slaughter", "whipping", "licking", "whacking", "debacle", "beating", "drubbing", "walloping", "trouncing"]}, {"answer": "trucking_rig", "hint": "synonyms for trucking rig", "clues": ["semi", "trailer truck", "articulated lorry", "tractor trailer", "rig", "trucking rig"]}, {"answer": "trump", "hint": "synonyms for trump", "clues": ["trumpet", "trump card", "cornet", "horn", "trump"]}, {"answer": "trumpery", "hint": "synonyms for trumpery", "clues": ["folderol", "trash", "codswallop", "applesauce", "gimcrack", "frill", "nonsense", "gimcrackery", "wish-wash", "rubbish", "tripe", "trumpery"]}, {"answer": "trumpets", "hint": "synonyms for trumpets", "clues": ["trumpet", "horn", "cornet", "trump"]}, {"answer": "truncheon", "hint": "synonyms for truncheon", "clues": ["billystick", "nightstick", "baton", "billy", "billy club", "truncheon"]}, {"answer": "trunks", "hint": "synonyms for trunks", "clues": ["luggage compartment", "trunk", "automobile trunk", "shorts", "short pants"]}, {"answer": "trust", "hint": "synonyms for trust", "clues": ["combine", "faith", "reliance", "corporate trust", "cartel", "trustingness", "trustfulness", "trust"]}, {"answer": "try", "hint": "synonyms for try", "clues": ["effort", "attempt", "endeavor", "try"]}, {"answer": "tryout", "hint": "synonyms for tryout", "clues": ["test", "trial", "trial run", "audition", "tryout"]}, {"answer": "tsh", "hint": "synonyms for tsh", "clues": ["thyrotropic hormone", "thyrotrophin", "thyroid-stimulating hormone", "tsh"]}, {"answer": "tub", "hint": "synonyms for tub", "clues": ["bath", "vat", "bathtub", "tubful", "bathing tub", "tub"]}, {"answer": "tube", "hint": "synonyms for tube", "clues": ["thermionic tube", "vacuum tube", "metro", "subway system", "tubing", "electron tube", "underground", "subway", "thermionic vacuum tube", "thermionic valve", "pipe", "tube"]}, {"answer": "tug", "hint": "synonyms for tug", "clues": ["tugboat", "towboat", "jerk", "tower", "tug"]}, {"answer": "tumult", "hint": "synonyms for tumult", "clues": ["turmoil", "ruction", "ruckus", "rumpus", "commotion", "din", "tumult"]}, {"answer": "tune", "hint": "synonyms for tune", "clues": ["line", "melodic phrase", "melody", "melodic line", "strain", "air", "tune"]}, {"answer": "tuner", "hint": "synonyms for tuner", "clues": ["radio", "wireless", "radio set", "receiving set", "radio receiver", "tuner"]}, {"answer": "turbofan", "hint": "synonyms for turbofan", "clues": ["turbojet", "fanjet", "turbofan engine", "fanjet engine", "turbojet engine", "turbofan"]}, {"answer": "turbofan_engine", "hint": "synonyms for turbofan engine", "clues": ["fanjet", "fanjet engine", "turbofan", "turbojet", "turbojet engine", "turbofan engine"]}, {"answer": "turbojet", "hint": "synonyms for turbojet", "clues": ["turbofan", "fanjet", "turbofan engine", "fanjet engine", "turbojet engine", "turbojet"]}, {"answer": "turbojet_engine", "hint": "synonyms for turbojet engine", "clues": ["turbofan engine", "fanjet", "fanjet engine", "turbofan", "turbojet", "turbojet engine"]}, {"answer": "turd", "hint": "synonyms for turd", "clues": ["shit", "poop", "dirt", "crap", "turd"]}, {"answer": "turmoil", "hint": "synonyms for turmoil", "clues": ["tumult", "upheaval", "excitement", "agitation", "hullabaloo", "turmoil"]}, {"answer": "turn", "hint": "synonyms for turn", "clues": ["act", "round", "go", "turning", "good turn", "bit", "routine", "bend", "spell", "number", "bout", "tour", "play", "twist", "crook", "turn of events"]}, {"answer": "turnabout", "hint": "synonyms for turnabout", "clues": ["reversal", "change of mind", "reverse", "reversion", "flip-flop", "turnaround", "turnabout"]}, {"answer": "turnaround", "hint": "synonyms for turnaround", "clues": ["reversal", "change of mind", "reverse", "turnround", "reversion", "flip-flop", "turnabout", "turnaround time"]}, {"answer": "turning_point", "hint": "synonyms for turning point", "clues": ["landmark", "corner", "watershed", "street corner", "turning point"]}, {"answer": "turnout", "hint": "synonyms for turnout", "clues": ["output", "outturn", "sidetrack", "railroad siding", "outfit", "rig", "siding", "getup", "widening", "turnout"]}, {"answer": "turnover", "hint": "synonyms for turnover", "clues": ["overturn", "dollar volume", "upset", "turnover rate", "employee turnover", "turnover"]}, {"answer": "turpentine", "hint": "synonyms for turpentine", "clues": ["gum terpentine", "oil of turpentine", "spirit of turpentine", "turps", "turpentine"]}, {"answer": "turps", "hint": "synonyms for turps", "clues": ["oil of turpentine", "spirit of turpentine", "transurethral resection of the prostate", "turpentine", "turps"]}, {"answer": "turquoise", "hint": "synonyms for turquoise", "clues": ["aqua", "cobalt blue", "peacock blue", "greenish blue", "aquamarine", "turquoise"]}, {"answer": "tussle", "hint": "synonyms for tussle", "clues": ["hassle", "rough-and-tumble", "scuffle", "dogfight", "tussle"]}, {"answer": "tutelage", "hint": "synonyms for tutelage", "clues": ["guardianship", "tuition", "charge", "tutorship", "care", "tutelage"]}, {"answer": "tv", "hint": "synonyms for tv", "clues": ["television set", "telly", "television receiver", "video", "goggle box", "idiot box", "tv set", "television", "telecasting", "boob tube", "tv"]}, {"answer": "tv_set", "hint": "synonyms for tv set", "clues": ["television set", "tv", "telly", "television receiver", "goggle box", "idiot box", "television", "boob tube", "tv set"]}, {"answer": "twaddle", "hint": "synonyms for twaddle", "clues": ["tarradiddle", "bosh", "drool", "baloney", "humbug", "tommyrot", "tosh", "bilgewater", "twaddle"]}, {"answer": "twain", "hint": "synonyms for twain", "clues": ["yoke", "duet", "pair", "dyad", "couplet", "span", "brace", "twosome", "duad", "duo", "distich", "twain"]}, {"answer": "twelve_noon", "hint": "synonyms for twelve noon", "clues": ["noontide", "noon", "noonday", "high noon", "midday", "twelve noon"]}, {"answer": "twenties", "hint": "synonyms for twenties", "clues": ["1920s", "mid-twenties", "twenty dollar bill", "20", "twenty", "twenties"]}, {"answer": "twenty-five_percent", "hint": "synonyms for twenty-five percent", "clues": ["fourth", "quartern", "one-fourth", "fourth part", "one-quarter", "twenty-five percent"]}, {"answer": "twenty-four_hour_period", "hint": "synonyms for twenty-four hour period", "clues": ["mean solar day", "24-hour interval", "solar day", "twenty-four hours", "day", "twenty-four hour period"]}, {"answer": "twenty-four_hours", "hint": "synonyms for twenty-four hours", "clues": ["mean solar day", "24-hour interval", "solar day", "twenty-four hour period", "day", "twenty-four hours"]}, {"answer": "twinkle", "hint": "synonyms for twinkle", "clues": ["spark", "light", "scintillation", "sparkling", "sparkle", "twinkle"]}, {"answer": "twirl", "hint": "synonyms for twirl", "clues": ["spin", "kink", "twist", "whirl", "twirl"]}, {"answer": "twist", "hint": "synonyms for twist", "clues": ["wind", "crook", "kink", "twisting", "bend", "eddy", "turn", "wrench", "construction", "spin", "gimmick", "device", "whirl", "turn of events", "twirl"]}, {"answer": "twosome", "hint": "synonyms for twosome", "clues": ["yoke", "duet", "pair", "twain", "dyad", "couplet", "span", "brace", "duad", "duo", "distich", "twosome"]}, {"answer": "tympani", "hint": "synonyms for tympani", "clues": ["timpani", "kettledrum", "kettle", "tympanum"]}, {"answer": "tympanum", "hint": "synonyms for tympanum", "clues": ["timpani", "kettledrum", "kettle", "tympanum"]}, {"answer": "typeface", "hint": "synonyms for typeface", "clues": ["case", "font", "face", "typeface"]}, {"answer": "typo", "hint": "synonyms for typo", "clues": ["literal error", "erratum", "literal", "misprint", "typographical error", "typo"]}, {"answer": "typographical_error", "hint": "synonyms for typographical error", "clues": ["literal error", "erratum", "typo", "misprint", "literal", "typographical error"]}, {"answer": "tyranny", "hint": "synonyms for tyranny", "clues": ["one-man rule", "dictatorship", "shogunate", "despotism", "monocracy", "authoritarianism", "totalitarianism", "absolutism", "tyranny"]}, {"answer": "u-drive", "hint": "synonyms for u-drive", "clues": ["self-drive", "hire car", "rent-a-car", "car rental", "you-drive"]}, {"answer": "unavoidable_casualty", "hint": "synonyms for unavoidable casualty", "clues": ["act of God", "force majeure", "vis major", "inevitable accident", "unavoidable casualty"]}, {"answer": "unboundedness", "hint": "synonyms for unboundedness", "clues": ["infiniteness", "limitlessness", "infinitude", "boundlessness", "unboundedness"]}, {"answer": "uncertainty", "hint": "synonyms for uncertainty", "clues": ["incertitude", "doubtfulness", "doubt", "dubiety", "uncertainness", "precariousness", "dubiousness", "uncertainty"]}, {"answer": "unconditioned_reflex", "hint": "synonyms for unconditioned reflex", "clues": ["reflex action", "instinctive reflex", "inborn reflex", "reflex response", "physiological reaction", "reflex", "innate reflex", "unconditioned reflex"]}, {"answer": "uncovering", "hint": "synonyms for uncovering", "clues": ["denudation", "husking", "discovery", "stripping", "baring", "find", "uncovering"]}, {"answer": "unction", "hint": "synonyms for unction", "clues": ["unguent", "inunction", "unctuousness", "oiliness", "balm", "salve", "oleaginousness", "smarminess", "ointment", "fulsomeness", "smarm"]}, {"answer": "unctuousness", "hint": "synonyms for unctuousness", "clues": ["fulsomeness", "smarminess", "unction", "oleaginousness", "oiliness", "unctuousness"]}, {"answer": "undercoat", "hint": "synonyms for undercoat", "clues": ["ground", "priming coat", "primer", "priming", "flat coat", "primer coat", "underseal", "undercoat"]}, {"answer": "underdrawers", "hint": "synonyms for underdrawers", "clues": ["drawers", "shorts", "boxers", "boxershorts", "underdrawers"]}, {"answer": "understructure", "hint": "synonyms for understructure", "clues": ["foundation", "foot", "fundament", "groundwork", "base", "substructure", "understructure"]}, {"answer": "undertow", "hint": "synonyms for undertow", "clues": ["sea-puss", "sea-purse", "sea-poose", "undertow"]}, {"answer": "underwriter", "hint": "synonyms for underwriter", "clues": ["insurance company", "insurance underwriter", "insurance firm", "insurer", "underwriter"]}, {"answer": "uneasiness", "hint": "synonyms for uneasiness", "clues": ["disquiet", "unease", "uncomfortableness", "self-consciousness", "restlessness", "disquietude", "edginess", "queasiness"]}, {"answer": "unemotionality", "hint": "synonyms for unemotionality", "clues": ["indifference", "phlegm", "emotionlessness", "impassiveness", "stolidity", "impassivity", "unemotionality"]}, {"answer": "unfairness", "hint": "synonyms for unfairness", "clues": ["injustice", "iniquity", "shabbiness", "unfairness"]}, {"answer": "unfeelingness", "hint": "synonyms for unfeelingness", "clues": ["insensibility", "hardness", "callousness", "callosity", "unfeelingness"]}, {"answer": "unguent", "hint": "synonyms for unguent", "clues": ["ointment", "unction", "salve", "balm", "unguent"]}, {"answer": "unification", "hint": "synonyms for unification", "clues": ["uniting", "fusion", "union", "jointure", "conjugation", "merger", "unification"]}, {"answer": "uninominal_system", "hint": "synonyms for uninominal system", "clues": ["uninominal voting system", "single-member system", "scrutin uninomial system", "uninominal system"]}, {"answer": "unit", "hint": "synonyms for unit", "clues": ["unit of measurement", "building block", "whole", "social unit", "unit"]}, {"answer": "uniting", "hint": "synonyms for uniting", "clues": ["union", "amalgamation", "jointure", "conjugation", "unification", "merger", "uniting"]}, {"answer": "unity", "hint": "synonyms for unity", "clues": ["single", "one", "1", "ace", "oneness", "unity"]}, {"answer": "universe", "hint": "synonyms for universe", "clues": ["cosmos", "population", "universe of discourse", "macrocosm", "creation", "existence", "world", "universe"]}, {"answer": "unknowingness", "hint": "synonyms for unknowingness", "clues": ["unawareness", "nescience", "unknowing", "ignorantness", "unknowingness"]}, {"answer": "unmanliness", "hint": "synonyms for unmanliness", "clues": ["sissiness", "womanishness", "effeminateness", "softness", "effeminacy", "unmanliness"]}, {"answer": "unq", "hint": "synonyms for unq", "clues": ["atomic number 104", "unnilquadium", "rutherfordium", "element 104", "unq"]}, {"answer": "unsavoriness", "hint": "synonyms for unsavoriness", "clues": ["sickeningness", "distastefulness", "disgustingness", "nauseatingness", "unsavoriness"]}, {"answer": "unslaked_lime", "hint": "synonyms for unslaked lime", "clues": ["calx", "calcium oxide", "lime", "calcined lime", "burnt lime", "fluxing lime", "quicklime", "unslaked lime"]}, {"answer": "unveiling", "hint": "synonyms for unveiling", "clues": ["first appearance", "launching", "entry", "debut", "introduction", "unveiling"]}, {"answer": "upbraiding", "hint": "synonyms for upbraiding", "clues": ["dressing down", "chewing out", "bawling out", "earful", "castigation", "going-over", "upbraiding"]}, {"answer": "upbringing", "hint": "synonyms for upbringing", "clues": ["bringing up", "fosterage", "breeding", "nurture", "raising", "rearing", "fostering", "upbringing"]}, {"answer": "upgrade", "hint": "synonyms for upgrade", "clues": ["ascent", "rising slope", "rise", "climb", "acclivity", "upgrade"]}, {"answer": "upheaval", "hint": "synonyms for upheaval", "clues": ["turmoil", "uplift", "excitement", "agitation", "upthrow", "upthrust", "hullabaloo", "upheaval"]}, {"answer": "upkeep", "hint": "synonyms for upkeep", "clues": ["sustainment", "sustenance", "sustentation", "maintenance", "care", "upkeep"]}, {"answer": "upper-case_letter", "hint": "synonyms for upper-case letter", "clues": ["uppercase", "majuscule", "capital letter", "capital", "upper-case letter"]}, {"answer": "uprightness", "hint": "synonyms for uprightness", "clues": ["verticalness", "verticality", "rectitude", "erectness", "uprightness"]}, {"answer": "uprising", "hint": "synonyms for uprising", "clues": ["rising", "revolt", "rebellion", "insurrection"]}, {"answer": "upshot", "hint": "synonyms for upshot", "clues": ["event", "result", "consequence", "effect", "outcome", "issue", "upshot"]}, {"answer": "urging", "hint": "synonyms for urging", "clues": ["prod", "goad", "spur", "spurring", "urgency", "prodding", "importunity", "urging"]}, {"answer": "urine", "hint": "synonyms for urine", "clues": ["water", "piddle", "weewee", "piss", "pee", "urine"]}, {"answer": "us", "hint": "synonyms for us", "clues": ["u", "atomic number 92", "uracil", "the States", "uranium"]}, {"answer": "usability", "hint": "synonyms for usability", "clues": ["serviceability", "serviceableness", "useableness", "usability"]}, {"answer": "usableness", "hint": "synonyms for usableness", "clues": ["serviceability", "usability", "serviceableness", "useableness"]}, {"answer": "usage", "hint": "synonyms for usage", "clues": ["utilisation", "exercise", "use", "usance", "custom", "employment", "usage"]}, {"answer": "usance", "hint": "synonyms for usance", "clues": ["usage", "use", "consumption", "economic consumption", "custom", "use of goods and services", "usance"]}, {"answer": "use", "hint": "synonyms for use", "clues": ["usage", "utilisation", "exercise", "habit", "enjoyment", "purpose", "manipulation", "function", "economic consumption", "employment", "consumption", "use of goods and services", "role", "usance", "use"]}, {"answer": "use_of_goods_and_services", "hint": "synonyms for use of goods and services", "clues": ["economic consumption", "usance", "consumption", "use", "use of goods and services"]}, {"answer": "useableness", "hint": "synonyms for useableness", "clues": ["serviceability", "usability", "serviceableness", "usableness"]}, {"answer": "usurpation", "hint": "synonyms for usurpation", "clues": ["violation", "intrusion", "encroachment", "trespass", "usurpation"]}, {"answer": "utilisation", "hint": "synonyms for utilisation", "clues": ["usage", "utilization", "exercise", "use", "employment"]}, {"answer": "utilization", "hint": "synonyms for utilization", "clues": ["usage", "utilisation", "exercise", "use", "employment"]}, {"answer": "uv", "hint": "synonyms for uv", "clues": ["ultraviolet light", "ultraviolet", "ultraviolet radiation", "ultraviolet illumination", "uv"]}, {"answer": "v-1", "hint": "synonyms for v-1", "clues": ["buzz bomb", "robot bomb", "doodlebug", "flying bomb", "v-1"]}, {"answer": "vacillation", "hint": "synonyms for vacillation", "clues": ["wavering", "hesitation", "swing", "vacillation"]}, {"answer": "vacuity", "hint": "synonyms for vacuity", "clues": ["inanity", "mindlessness", "vacuum", "senselessness", "pointlessness", "vacuity"]}, {"answer": "vacuum", "hint": "synonyms for vacuum", "clues": ["void", "vacuity", "vacuum cleaner", "emptiness", "vacancy", "vacuum"]}, {"answer": "vacuum_bomb", "hint": "synonyms for vacuum bomb", "clues": ["aerosol bomb", "volume-detonation bomb", "thermobaric bomb", "fuel-air bomb", "vacuum bomb"]}, {"answer": "vacuum_tube", "hint": "synonyms for vacuum tube", "clues": ["thermionic tube", "thermionic vacuum tube", "thermionic valve", "electron tube", "tube", "vacuum tube"]}, {"answer": "valiance", "hint": "synonyms for valiance", "clues": ["valour", "valiancy", "valorousness", "heroism", "gallantry"]}, {"answer": "valiancy", "hint": "synonyms for valiancy", "clues": ["valour", "valorousness", "heroism", "valiance", "gallantry"]}, {"answer": "validity", "hint": "synonyms for validity", "clues": ["rigour", "lustiness", "hardiness", "robustness", "cogency", "validness", "validity"]}, {"answer": "valor", "hint": "synonyms for valor", "clues": ["valour", "valiancy", "valorousness", "heroism", "gallantry"]}, {"answer": "valorousness", "hint": "synonyms for valorousness", "clues": ["valour", "valiancy", "heroism", "gallantry", "valorousness"]}, {"answer": "valour", "hint": "synonyms for valour", "clues": ["valiancy", "valorousness", "heroism", "valor", "gallantry"]}, {"answer": "values", "hint": "synonyms for values", "clues": ["value", "note value", "economic value", "time value"]}, {"answer": "van", "hint": "synonyms for van", "clues": ["caravan", "new wave", "vanguard", "avant-garde", "van"]}, {"answer": "vane", "hint": "synonyms for vane", "clues": ["weather vane", "wind vane", "blade", "vane"]}, {"answer": "vanguard", "hint": "synonyms for vanguard", "clues": ["new wave", "forefront", "avant-garde", "cutting edge", "van", "vanguard"]}, {"answer": "vanity", "hint": "synonyms for vanity", "clues": ["conceit", "amour propre", "toilet table", "dresser", "dressing table", "emptiness", "conceitedness", "self-love", "vanity"]}, {"answer": "vapidity", "hint": "synonyms for vapidity", "clues": ["vapidness", "tameness", "jejuneness", "jejunity", "vapidity"]}, {"answer": "vapidness", "hint": "synonyms for vapidness", "clues": ["tameness", "jejuneness", "vapidity", "jejunity", "vapidness"]}, {"answer": "vaporing", "hint": "synonyms for vaporing", "clues": ["gasconade", "crow", "line-shooting", "bragging", "brag", "vaporing"]}, {"answer": "vaporousness", "hint": "synonyms for vaporousness", "clues": ["vapourousness", "mistiness", "haziness", "steaminess"]}, {"answer": "vapourousness", "hint": "synonyms for vapourousness", "clues": ["vaporousness", "mistiness", "haziness", "steaminess"]}, {"answer": "variance", "hint": "synonyms for variance", "clues": ["variability", "variableness", "variation", "divergence", "division", "disagreement", "discrepancy", "variant", "variance"]}, {"answer": "variate", "hint": "synonyms for variate", "clues": ["variant", "stochastic variable", "random variable", "chance variable"]}, {"answer": "variation", "hint": "synonyms for variation", "clues": ["pas seul", "fluctuation", "version", "magnetic declination", "variance", "magnetic variation", "edition", "variant", "variation"]}, {"answer": "variety", "hint": "synonyms for variety", "clues": ["form", "multifariousness", "change", "diversity", "potpourri", "smorgasbord", "sort", "miscellany", "kind", "mixture", "mixed bag", "assortment", "variety show", "diverseness", "motley", "salmagundi", "variety"]}, {"answer": "vastness", "hint": "synonyms for vastness", "clues": ["wideness", "enormousness", "immenseness", "immensity", "grandness", "sizeableness", "greatness", "vastness"]}, {"answer": "vault_of_heaven", "hint": "synonyms for vault of heaven", "clues": ["empyrean", "sphere", "firmament", "welkin", "heavens", "celestial sphere", "vault of heaven"]}, {"answer": "vehemence", "hint": "synonyms for vehemence", "clues": ["wildness", "fury", "ferocity", "furiousness", "emphasis", "violence", "fierceness", "vehemence"]}, {"answer": "veneration", "hint": "synonyms for veneration", "clues": ["reverence", "devotion", "idolatry", "awe", "cultism", "fear", "veneration"]}, {"answer": "venetian_red", "hint": "synonyms for venetian red", "clues": ["reddish brown", "sepia", "mahogany", "burnt sienna", "venetian red"]}, {"answer": "venom", "hint": "synonyms for venom", "clues": ["malice", "maliciousness", "spitefulness", "spite", "venom"]}, {"answer": "vent", "hint": "synonyms for vent", "clues": ["blowhole", "venthole", "release", "outlet", "volcano", "vent"]}, {"answer": "ventilation", "hint": "synonyms for ventilation", "clues": ["respiration", "external respiration", "ventilating system", "airing", "breathing", "public discussion", "ventilation"]}, {"answer": "verbiage", "hint": "synonyms for verbiage", "clues": ["choice of words", "phraseology", "wording", "diction", "phrasing", "verbalism", "verbiage"]}, {"answer": "verge", "hint": "synonyms for verge", "clues": ["wand", "threshold", "scepter", "brink", "verge"]}, {"answer": "vernacular_art", "hint": "synonyms for vernacular art", "clues": ["primitive art", "self-taught art", "outsider art", "naive art", "vernacular art"]}, {"answer": "veronal", "hint": "synonyms for veronal", "clues": ["barbitone", "diethylbarbituric acid", "diethylmalonylurea", "barbital", "veronal"]}, {"answer": "verse", "hint": "synonyms for verse", "clues": ["poesy", "rhyme", "verse line", "poetry", "verse"]}, {"answer": "version", "hint": "synonyms for version", "clues": ["reading", "rendering", "variation", "edition", "interlingual rendition", "adaptation", "translation", "interpretation", "variant", "version"]}, {"answer": "vestibular_sense", "hint": "synonyms for vestibular sense", "clues": ["equilibrium", "sense of balance", "sense of equilibrium", "labyrinthine sense", "vestibular sense"]}, {"answer": "vestibule", "hint": "synonyms for vestibule", "clues": ["anteroom", "hall", "antechamber", "entrance hall", "foyer", "lobby", "vestibule"]}, {"answer": "vesture", "hint": "synonyms for vesture", "clues": ["article of clothing", "habiliment", "wear", "clothing", "wearable", "vesture"]}, {"answer": "vexation", "hint": "synonyms for vexation", "clues": ["worry", "annoyance", "annoying", "concern", "chafe", "headache", "irritation", "vexation"]}, {"answer": "viands", "hint": "synonyms for viands", "clues": ["provender", "victuals", "commissariat", "provisions", "viand"]}, {"answer": "vibes", "hint": "synonyms for vibes", "clues": ["vibration", "vibe", "vibraphone", "vibraharp"]}, {"answer": "vibrancy", "hint": "synonyms for vibrancy", "clues": ["reverberance", "resonance", "ringing", "plangency", "sonority", "sonorousness", "vibrancy"]}, {"answer": "vibration", "hint": "synonyms for vibration", "clues": ["oscillation", "vibe", "quivering", "vibration"]}, {"answer": "vicinity", "hint": "synonyms for vicinity", "clues": ["neck of the woods", "neighborhood", "locality", "vicinity"]}, {"answer": "victual", "hint": "synonyms for victual", "clues": ["comestible", "edible", "victuals", "pabulum", "eatable"]}, {"answer": "victuals", "hint": "synonyms for victuals", "clues": ["nutrition", "sustenance", "victual", "provender", "commissariat", "pabulum", "provisions", "viands", "nutriment", "comestible", "nourishment", "edible", "alimentation", "aliment", "eatable"]}, {"answer": "video", "hint": "synonyms for video", "clues": ["telecasting", "television", "picture", "video recording", "video"]}, {"answer": "view", "hint": "synonyms for view", "clues": ["horizon", "perspective", "sentiment", "prospect", "aspect", "panorama", "sight", "thought", "survey", "eyeshot", "scene", "persuasion", "position", "vista", "opinion", "purview", "view"]}, {"answer": "viewpoint", "hint": "synonyms for viewpoint", "clues": ["stand", "point of view", "vantage point", "standpoint", "viewpoint"]}, {"answer": "vigilance", "hint": "synonyms for vigilance", "clues": ["weather eye", "alertness", "wakefulness", "watchfulness", "vigilance"]}, {"answer": "vigor", "hint": "synonyms for vigor", "clues": ["vigour", "vim", "energy", "zip", "muscularity", "heartiness", "dynamism"]}, {"answer": "vigour", "hint": "synonyms for vigour", "clues": ["vim", "energy", "zip", "vigor", "muscularity", "heartiness", "dynamism"]}, {"answer": "vileness", "hint": "synonyms for vileness", "clues": ["repulsiveness", "lousiness", "ugliness", "sliminess", "loathsomeness", "nefariousness", "wickedness", "vileness"]}, {"answer": "vilification", "hint": "synonyms for vilification", "clues": ["malignment", "abuse", "contumely", "insult", "revilement", "smear", "vilification"]}, {"answer": "vim", "hint": "synonyms for vim", "clues": ["vigor", "muscularity", "energy", "vim"]}, {"answer": "vinyl_ether", "hint": "synonyms for vinyl ether", "clues": ["ethoxyethane", "ether", "diethyl ether", "divinyl ether"]}, {"answer": "violation", "hint": "synonyms for violation", "clues": ["ravishment", "intrusion", "rape", "usurpation", "trespass", "assault", "infringement", "misdemeanor", "infraction", "encroachment", "irreverence", "violation"]}, {"answer": "violence", "hint": "synonyms for violence", "clues": ["wildness", "fury", "ferocity", "furiousness", "fierceness", "vehemence", "force", "violence"]}, {"answer": "viosterol", "hint": "synonyms for viosterol", "clues": ["cholecalciferol", "ergocalciferol", "vitamin D", "calciferol", "viosterol"]}, {"answer": "virgule", "hint": "synonyms for virgule", "clues": ["separatrix", "diagonal", "slash", "solidus", "stroke", "virgule"]}, {"answer": "virtue", "hint": "synonyms for virtue", "clues": ["sexual morality", "virtuousness", "moral excellence", "merit", "chastity", "virtue"]}, {"answer": "vis_major", "hint": "synonyms for vis major", "clues": ["act of God", "force majeure", "unavoidable casualty", "inevitable accident", "vis major"]}, {"answer": "viscidity", "hint": "synonyms for viscidity", "clues": ["ropiness", "glueyness", "tackiness", "gluiness", "viscidness", "cohesiveness", "gumminess", "viscidity"]}, {"answer": "viscidness", "hint": "synonyms for viscidness", "clues": ["ropiness", "glueyness", "tackiness", "gluiness", "viscidity", "cohesiveness", "gumminess", "viscidness"]}, {"answer": "visible_horizon", "hint": "synonyms for visible horizon", "clues": ["apparent horizon", "horizon", "sensible horizon", "skyline", "visible horizon"]}, {"answer": "vision", "hint": "synonyms for vision", "clues": ["imaginativeness", "visual sensation", "imagination", "sight", "visual modality", "visual sense", "vision"]}, {"answer": "visor", "hint": "synonyms for visor", "clues": ["bill", "eyeshade", "peak", "vizor", "visor"]}, {"answer": "vista", "hint": "synonyms for vista", "clues": ["scene", "prospect", "aspect", "view", "panorama", "vista"]}, {"answer": "vitality", "hint": "synonyms for vitality", "clues": ["vital force", "verve", "elan vital", "life force", "animation", "vitality"]}, {"answer": "vitamin_b1", "hint": "synonyms for vitamin b1", "clues": ["thiamine", "vitamin B1", "aneurin", "antiberiberi factor"]}, {"answer": "vitamin_b12", "hint": "synonyms for vitamin b12", "clues": ["vitamin B12", "cobalamin", "cyanocobalamin", "antipernicious anemia factor"]}, {"answer": "vitamin_b2", "hint": "synonyms for vitamin b2", "clues": ["ovoflavin", "lactoflavin", "hepatoflavin", "vitamin G", "vitamin B2", "riboflavin"]}, {"answer": "vitamin_b6", "hint": "synonyms for vitamin b6", "clues": ["vitamin B6", "pyridoxine", "adermin", "pyridoxal"]}, {"answer": "vitamin_bc", "hint": "synonyms for vitamin bc", "clues": ["folate", "vitamin M", "folacin", "pteroylglutamic acid", "folic acid", "vitamin Bc"]}, {"answer": "vitamin_d", "hint": "synonyms for vitamin d", "clues": ["ergocalciferol", "cholecalciferol", "vitamin D", "calciferol", "viosterol"]}, {"answer": "vitamin_g", "hint": "synonyms for vitamin g", "clues": ["ovoflavin", "lactoflavin", "hepatoflavin", "vitamin G", "vitamin B2", "riboflavin"]}, {"answer": "vitamin_m", "hint": "synonyms for vitamin m", "clues": ["folate", "vitamin M", "folacin", "pteroylglutamic acid", "folic acid", "vitamin Bc"]}, {"answer": "vitreous_silica", "hint": "synonyms for vitreous silica", "clues": ["quartz glass", "lechatelierite", "quartz", "crystal", "vitreous silica"]}, {"answer": "vitriol", "hint": "synonyms for vitriol", "clues": ["oil of vitriol", "vituperation", "sulfuric acid", "invective", "vitriol"]}, {"answer": "viva", "hint": "synonyms for viva", "clues": ["oral", "viva voce", "oral examination", "oral exam", "viva"]}, {"answer": "vividness", "hint": "synonyms for vividness", "clues": ["colour", "chroma", "saturation", "intensity", "vividness"]}, {"answer": "vivification", "hint": "synonyms for vivification", "clues": ["invigoration", "animation", "spiritedness", "brio", "vivification"]}, {"answer": "vizor", "hint": "synonyms for vizor", "clues": ["bill", "eyeshade", "visor", "peak", "vizor"]}, {"answer": "vocalisation", "hint": "synonyms for vocalisation", "clues": ["voice", "vocalization", "phonation", "vocalism", "vox"]}, {"answer": "vocalism", "hint": "synonyms for vocalism", "clues": ["voice", "vocalization", "phonation", "vox", "vowel system", "vocalism"]}, {"answer": "vocalization", "hint": "synonyms for vocalization", "clues": ["voice", "utterance", "vox", "phonation", "vocalism", "vocalisation"]}, {"answer": "vociferation", "hint": "synonyms for vociferation", "clues": ["yell", "call", "cry", "shout", "outcry", "vociferation"]}, {"answer": "voice", "hint": "synonyms for voice", "clues": ["vocalization", "phonation", "vocalism", "vox", "articulation", "part", "voice"]}, {"answer": "voice_communication", "hint": "synonyms for voice communication", "clues": ["speech communication", "speech", "oral communication", "language", "spoken language", "voice communication"]}, {"answer": "voider", "hint": "synonyms for voider", "clues": ["gusset", "clothes basket", "clothes hamper", "laundry basket", "voider"]}, {"answer": "voiding", "hint": "synonyms for voiding", "clues": ["evacuation", "excreting", "elimination", "voiding"]}, {"answer": "voltage", "hint": "synonyms for voltage", "clues": ["electromotive force", "potential", "emf", "potential difference", "electric potential", "potential drop", "voltage"]}, {"answer": "volume", "hint": "synonyms for volume", "clues": ["intensity", "mass", "bulk", "loudness", "book", "volume"]}, {"answer": "volume-detonation_bomb", "hint": "synonyms for volume-detonation bomb", "clues": ["aerosol bomb", "thermobaric bomb", "fuel-air bomb", "vacuum bomb", "volume-detonation bomb"]}, {"answer": "volume_unit", "hint": "synonyms for volume unit", "clues": ["displacement unit", "cubage unit", "cubature unit", "cubic measure", "cubic content unit", "capacity unit", "capacity measure", "volume unit"]}, {"answer": "voluptuousness", "hint": "synonyms for voluptuousness", "clues": ["hot stuff", "lushness", "luxuriance", "shapeliness", "curvaceousness", "voluptuousness"]}, {"answer": "vomit", "hint": "synonyms for vomit", "clues": ["emetic", "emesis", "vomiting", "puking", "puke", "vomitive", "nauseant", "regurgitation", "disgorgement", "barf", "vomitus"]}, {"answer": "vomiting", "hint": "synonyms for vomiting", "clues": ["disgorgement", "regurgitation", "emesis", "vomit", "puking"]}, {"answer": "voodoo", "hint": "synonyms for voodoo", "clues": ["fetish", "hoodooism", "fetich", "hoodoo", "vodoun", "juju", "voodoo"]}, {"answer": "voraciousness", "hint": "synonyms for voraciousness", "clues": ["voracity", "esurience", "greediness", "rapacity", "edacity", "rapaciousness", "voraciousness"]}, {"answer": "voracity", "hint": "synonyms for voracity", "clues": ["esurience", "rapacity", "edacity", "voraciousness", "rapaciousness", "voracity"]}, {"answer": "vortex", "hint": "synonyms for vortex", "clues": ["whirlpool", "swirl", "maelstrom", "whirl", "convolution", "vortex"]}, {"answer": "vote", "hint": "synonyms for vote", "clues": ["balloting", "right to vote", "voter turnout", "voting", "suffrage", "vote"]}, {"answer": "vox", "hint": "synonyms for vox", "clues": ["voice", "vocalization", "phonation", "vocalism", "vox"]}, {"answer": "vulgarism", "hint": "synonyms for vulgarism", "clues": ["commonness", "dirty word", "obscenity", "coarseness", "vulgarity", "raunch", "smut", "filth", "grossness", "vulgarism"]}, {"answer": "vulgarity", "hint": "synonyms for vulgarity", "clues": ["raunch", "commonness", "vulgarism", "grossness", "coarseness", "vulgarity"]}, {"answer": "w", "hint": "synonyms for w", "clues": ["tungsten", "double-u", "wolfram", "due west", "westward", "watt", "atomic number 74", "west", "w"]}, {"answer": "wad", "hint": "synonyms for wad", "clues": ["good deal", "slew", "mint", "heap", "deal", "peck", "quite a little", "raft", "mass", "mess", "spate", "plug", "passel", "great deal", "hatful", "chew", "chaw", "quid", "lot", "sight", "mickle", "stack", "plenty", "muckle", "mountain", "pile", "batch", "cud", "flock", "tidy sum", "pot", "wad"]}, {"answer": "wads", "hint": "synonyms for wads", "clues": ["good deal", "lots", "slew", "loads", "mint", "heap", "deal", "peck", "quite a little", "oodles", "wad", "mass", "mess", "plug", "passel", "great deal", "chew", "piles", "quid", "plenty", "mountain", "tidy sum", "dozens", "lashings", "pot", "tons", "gobs", "raft", "spate", "hatful", "chaw", "scads", "sight", "mickle", "stack", "muckle", "batch", "cud", "flock", "scores"]}, {"answer": "wage", "hint": "synonyms for wage", "clues": ["salary", "earnings", "pay", "remuneration", "wage"]}, {"answer": "wage_hike", "hint": "synonyms for wage hike", "clues": ["salary increase", "wage increase", "hike", "rise", "wage hike"]}, {"answer": "wage_increase", "hint": "synonyms for wage increase", "clues": ["salary increase", "wage hike", "hike", "rise", "wage increase"]}, {"answer": "wages", "hint": "synonyms for wages", "clues": ["salary", "earnings", "payoff", "remuneration", "reward", "pay", "wage"]}, {"answer": "waggon", "hint": "synonyms for waggon", "clues": ["wagon", "beach wagon", "estate car", "station waggon"]}, {"answer": "wagon", "hint": "synonyms for wagon", "clues": ["patrol wagon", "waggon", "beach wagon", "station waggon", "police wagon", "paddy wagon", "estate car", "coaster wagon", "black Maria", "police van"]}, {"answer": "waistband", "hint": "synonyms for waistband", "clues": ["girdle", "sash", "cincture", "waistcloth", "waistband"]}, {"answer": "waistcloth", "hint": "synonyms for waistcloth", "clues": ["waistband", "girdle", "sash", "cincture", "waistcloth"]}, {"answer": "wait", "hint": "synonyms for wait", "clues": ["delay", "postponement", "hold", "waiting", "time lag"]}, {"answer": "walk", "hint": "synonyms for walk", "clues": ["base on balls", "manner of walking", "paseo", "walkway", "walking", "pass", "walk of life"]}, {"answer": "walkaway", "hint": "synonyms for walkaway", "clues": ["blowout", "shoo-in", "laugher", "runaway", "romp", "walkaway"]}, {"answer": "walkover", "hint": "synonyms for walkover", "clues": ["picnic", "snap", "pushover", "cinch", "child's play", "piece of cake", "duck soup", "breeze", "walkover"]}, {"answer": "wall_plug", "hint": "synonyms for wall plug", "clues": ["wall socket", "electrical outlet", "outlet", "electric receptacle", "wall plug"]}, {"answer": "wall_socket", "hint": "synonyms for wall socket", "clues": ["electrical outlet", "outlet", "wall plug", "electric receptacle", "wall socket"]}, {"answer": "wampum", "hint": "synonyms for wampum", "clues": ["lucre", "sugar", "lettuce", "pelf", "simoleons", "moolah", "boodle", "lolly", "shekels", "kale", "scratch", "wampumpeag", "clams", "dinero", "gelt", "peag", "cabbage", "bread", "loot", "dough", "wampum"]}, {"answer": "wand", "hint": "synonyms for wand", "clues": ["scepter", "baton", "verge", "wand"]}, {"answer": "wanness", "hint": "synonyms for wanness", "clues": ["lividness", "paleness", "pallor", "lividity", "luridness", "achromasia", "pallidness", "wanness"]}, {"answer": "war_cry", "hint": "synonyms for war cry", "clues": ["rallying cry", "watchword", "battle cry", "cry", "war whoop", "war cry"]}, {"answer": "war_machine", "hint": "synonyms for war machine", "clues": ["armed forces", "armed services", "military", "military machine", "war machine"]}, {"answer": "warmheartedness", "hint": "synonyms for warmheartedness", "clues": ["fondness", "affection", "affectionateness", "philia", "heart", "warmth", "warmness", "tenderness", "warmheartedness"]}, {"answer": "warmness", "hint": "synonyms for warmness", "clues": ["heart", "fondness", "warmth", "tenderness", "affection", "affectionateness", "philia", "warmheartedness", "warmness"]}, {"answer": "warmth", "hint": "synonyms for warmth", "clues": ["affectionateness", "fondness", "lovingness", "heat", "warmness", "passion", "warmheartedness", "warmth"]}, {"answer": "warrant", "hint": "synonyms for warrant", "clues": ["stock-purchase warrant", "countenance", "warrantee", "warranty", "sanction", "stock warrant", "imprimatur", "guarantee", "endorsement"]}, {"answer": "wash", "hint": "synonyms for wash", "clues": ["slipstream", "washing", "race", "backwash", "laundry", "dry wash", "lavation", "wash drawing", "airstream", "washables", "washout"]}, {"answer": "wash-hand_basin", "hint": "synonyms for wash-hand basin", "clues": ["handbasin", "lavabo", "washbasin", "washbowl", "wash-hand basin"]}, {"answer": "wash_room", "hint": "synonyms for wash room", "clues": ["convenience", "public toilet", "public convenience", "comfort station", "toilet facility", "public lavatory", "restroom", "wash room"]}, {"answer": "washbasin", "hint": "synonyms for washbasin", "clues": ["lavabo", "lavatory", "washstand", "washbowl", "wash-hand basin", "handbasin", "basin", "washbasin"]}, {"answer": "washbowl", "hint": "synonyms for washbowl", "clues": ["lavabo", "lavatory", "washstand", "wash-hand basin", "washbasin", "handbasin", "basin", "washbowl"]}, {"answer": "washing", "hint": "synonyms for washing", "clues": ["washables", "wash", "laundry", "lavation"]}, {"answer": "washing_soda", "hint": "synonyms for washing soda", "clues": ["sal soda", "sodium carbonate", "soda", "soda ash", "washing soda"]}, {"answer": "washstand", "hint": "synonyms for washstand", "clues": ["washbowl", "wash-hand stand", "washbasin", "lavatory", "basin", "washstand"]}, {"answer": "waste-yard", "hint": "synonyms for waste-yard", "clues": ["wasteyard", "rubbish dump", "dumpsite", "dump", "garbage dump", "trash dump"]}, {"answer": "wastebin", "hint": "synonyms for wastebin", "clues": ["ashcan", "ash-bin", "garbage can", "trash barrel", "trash bin", "dustbin", "trash can", "wastebin"]}, {"answer": "wasteyard", "hint": "synonyms for wasteyard", "clues": ["waste-yard", "rubbish dump", "dump", "dumpsite", "garbage dump", "trash dump"]}, {"answer": "watch_bracelet", "hint": "synonyms for watch bracelet", "clues": ["wristband", "watchband", "bracelet", "watchstrap", "watch bracelet"]}, {"answer": "watchband", "hint": "synonyms for watchband", "clues": ["wristband", "bracelet", "watch bracelet", "watchstrap", "watchband"]}, {"answer": "watchfulness", "hint": "synonyms for watchfulness", "clues": ["weather eye", "alertness", "vigilance", "wakefulness", "watchfulness"]}, {"answer": "watchstrap", "hint": "synonyms for watchstrap", "clues": ["wristband", "watchband", "bracelet", "watch bracelet", "watchstrap"]}, {"answer": "watchword", "hint": "synonyms for watchword", "clues": ["rallying cry", "war cry", "battle cry", "cry", "countersign", "password", "parole", "word", "watchword"]}, {"answer": "water", "hint": "synonyms for water", "clues": ["pee", "water system", "piss", "urine", "body of water", "piddle", "weewee", "water supply", "water"]}, {"answer": "water_finder", "hint": "synonyms for water finder", "clues": ["dowsing rod", "divining rod", "waterfinder", "dowser"]}, {"answer": "water_gate", "hint": "synonyms for water gate", "clues": ["penstock", "sluice valve", "floodgate", "sluicegate", "head gate", "water gate"]}, {"answer": "water_glass", "hint": "synonyms for water glass", "clues": ["water gauge", "clepsydra", "water clock", "sodium silicate", "soluble glass", "water glass"]}, {"answer": "water_level", "hint": "synonyms for water level", "clues": ["groundwater level", "water table", "water line", "water level"]}, {"answer": "water_pipe", "hint": "synonyms for water pipe", "clues": ["narghile", "sheesha", "kalian", "hookah", "calean", "hubbly-bubbly", "chicha", "shisha", "hubble-bubble", "water pipe"]}, {"answer": "waterfinder", "hint": "synonyms for waterfinder", "clues": ["dowsing rod", "divining rod", "water finder", "dowser"]}, {"answer": "waters", "hint": "synonyms for waters", "clues": ["water", "pee", "water system", "piss", "urine", "body of water", "piddle", "weewee", "water supply"]}, {"answer": "watershed", "hint": "synonyms for watershed", "clues": ["landmark", "catchment area", "turning point", "catchment basin", "river basin", "drainage basin", "divide", "drainage area", "water parting", "basin", "watershed"]}, {"answer": "waterspout", "hint": "synonyms for waterspout", "clues": ["cloudburst", "downpour", "deluge", "torrent", "pelter", "soaker", "waterspout"]}, {"answer": "wave", "hint": "synonyms for wave", "clues": ["undulation", "moving ridge", "waving", "wafture", "wave"]}, {"answer": "waver", "hint": "synonyms for waver", "clues": ["flutter", "falter", "hesitation", "flicker", "waver"]}, {"answer": "ways", "hint": "synonyms for ways", "clues": ["style", "means", "shipway", "mode", "agency", "direction", "path", "fashion", "manner", "way of life", "elbow room", "way", "room"]}, {"answer": "weaponry", "hint": "synonyms for weaponry", "clues": ["weapons system", "arms", "munition", "implements of war", "weaponry"]}, {"answer": "weapons_system", "hint": "synonyms for weapons system", "clues": ["arms", "weaponry", "munition", "implements of war", "weapons system"]}, {"answer": "wear", "hint": "synonyms for wear", "clues": ["article of clothing", "wearing", "habiliment", "vesture", "clothing", "wearable"]}, {"answer": "wearing_away", "hint": "synonyms for wearing away", "clues": ["eating away", "eroding", "wearing", "erosion"]}, {"answer": "weather_sheet", "hint": "synonyms for weather sheet", "clues": ["tack", "shroud", "mainsheet", "sheet", "weather sheet"]}, {"answer": "weatherboard", "hint": "synonyms for weatherboard", "clues": ["to windward", "weatherboarding", "clapboard", "weather side", "windward side"]}, {"answer": "wedding", "hint": "synonyms for wedding", "clues": ["marriage ceremony", "nuptials", "wedding ceremony", "marriage", "hymeneals", "wedding party", "wedding"]}, {"answer": "wedge", "hint": "synonyms for wedge", "clues": ["hoagie", "wedge heel", "hoagy", "hacek", "torpedo", "submarine sandwich", "hero", "hero sandwich", "poor boy", "chock", "bomber", "wedge shape", "grinder", "cuneus", "submarine", "zep", "sub", "wedge"]}, {"answer": "weed", "hint": "synonyms for weed", "clues": ["mourning band", "dope", "green goddess", "skunk", "locoweed", "gage", "smoke", "sess", "grass", "sens", "pot", "weed"]}, {"answer": "weeds", "hint": "synonyms for weeds", "clues": ["mourning band", "dope", "green goddess", "skunk", "locoweed", "gage", "weed", "smoke", "widow's weeds", "sess", "grass", "sens", "pot"]}, {"answer": "weeness", "hint": "synonyms for weeness", "clues": ["tininess", "diminutiveness", "minuteness", "petiteness", "weeness"]}, {"answer": "weenie", "hint": "synonyms for weenie", "clues": ["hotdog", "dog", "frank", "wienerwurst", "wiener", "frankfurter", "weenie"]}, {"answer": "weewee", "hint": "synonyms for weewee", "clues": ["urine", "water", "piddle", "piss", "pee", "weewee"]}, {"answer": "weight", "hint": "synonyms for weight", "clues": ["system of weights", "free weight", "exercising weight", "weightiness", "weight unit", "weighting"]}, {"answer": "welkin", "hint": "synonyms for welkin", "clues": ["empyrean", "sphere", "firmament", "vault of heaven", "heavens", "celestial sphere", "welkin"]}, {"answer": "whack", "hint": "synonyms for whack", "clues": ["rap", "knock", "belt", "whang", "whack"]}, {"answer": "whang", "hint": "synonyms for whang", "clues": ["rap", "knock", "belt", "whack", "whang"]}, {"answer": "wharfage", "hint": "synonyms for wharfage", "clues": ["wharf", "dock", "quayage", "pier", "wharfage"]}, {"answer": "whatchamacallit", "hint": "synonyms for whatchamacallit", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "thingamabob", "doohickey", "whatsis", "whatchamacallum"]}, {"answer": "whatchamacallum", "hint": "synonyms for whatchamacallum", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "whatnot", "hint": "synonyms for whatnot", "clues": ["knickknackery", "nicknack", "bric-a-brac", "whatnot"]}, {"answer": "whatsis", "hint": "synonyms for whatsis", "clues": ["gismo", "gubbins", "doojigger", "thingummy", "thingamajig", "gimmick", "widget", "doodad", "gizmo", "whatchamacallit", "thingamabob", "doohickey", "whatsis"]}, {"answer": "wheel", "hint": "synonyms for wheel", "clues": ["bicycle", "bike", "cycle", "steering wheel", "roulette wheel", "rack", "wheel"]}, {"answer": "whim", "hint": "synonyms for whim", "clues": ["impulse", "whimsy", "notion", "caprice", "whim"]}, {"answer": "whimsey", "hint": "synonyms for whimsey", "clues": ["whimsicality", "whim", "whimsy", "notion", "capriciousness", "flightiness", "arbitrariness"]}, {"answer": "whimsicality", "hint": "synonyms for whimsicality", "clues": ["arbitrariness", "mischievousness", "whimsy", "puckishness", "capriciousness", "flightiness", "impishness", "whimsicality"]}, {"answer": "whimsy", "hint": "synonyms for whimsy", "clues": ["whimsicality", "whim", "notion", "capriciousness", "whimsey", "flightiness", "arbitrariness"]}, {"answer": "whirl", "hint": "synonyms for whirl", "clues": ["go", "offer", "pass", "twisting", "swirl", "crack", "vortex", "spin", "commotion", "fling", "convolution", "twirl", "whirl"]}, {"answer": "whirligig", "hint": "synonyms for whirligig", "clues": ["merry-go-round", "roundabout", "top", "teetotum", "carrousel", "spinning top", "whirligig"]}, {"answer": "whisper", "hint": "synonyms for whisper", "clues": ["whispering", "susurration", "rustle", "rustling", "voicelessness"]}, {"answer": "whit", "hint": "synonyms for whit", "clues": ["tittle", "smidgen", "scintilla", "iota", "shred", "whit"]}, {"answer": "white_arsenic", "hint": "synonyms for white arsenic", "clues": ["arsenic", "arsenous anhydride", "arsenic trioxide", "arsenous oxide", "ratsbane", "white arsenic"]}, {"answer": "white_potato", "hint": "synonyms for white potato", "clues": ["spud", "murphy", "potato", "tater", "white potato"]}, {"answer": "white_tie", "hint": "synonyms for white tie", "clues": ["tail coat", "tails", "full dress", "white tie and tails", "dress suit", "white tie"]}, {"answer": "white_tie_and_tails", "hint": "synonyms for white tie and tails", "clues": ["white tie", "tail coat", "tails", "full dress", "dress suit", "white tie and tails"]}, {"answer": "whorehouse", "hint": "synonyms for whorehouse", "clues": ["bagnio", "house of ill repute", "house of prostitution", "brothel", "cathouse", "bawdyhouse", "bordello", "sporting house", "whorehouse"]}, {"answer": "whorl", "hint": "synonyms for whorl", "clues": ["volute", "spiral", "curl", "ringlet", "coil", "curlicue", "scroll", "helix", "roll", "gyre", "whorl"]}, {"answer": "wickedness", "hint": "synonyms for wickedness", "clues": ["immorality", "sinfulness", "repulsiveness", "sin", "lousiness", "ugliness", "vileness", "sliminess", "iniquity", "evil", "loathsomeness", "nefariousness", "wickedness"]}, {"answer": "wicket", "hint": "synonyms for wicket", "clues": ["lattice", "grille", "wicket gate", "wicket door", "hoop", "wicket"]}, {"answer": "wideness", "hint": "synonyms for wideness", "clues": ["immensity", "immenseness", "grandness", "sizeableness", "vastness", "enormousness", "broadness", "greatness", "wideness"]}, {"answer": "widget", "hint": "synonyms for widget", "clues": ["gismo", "appliance", "gubbins", "doojigger", "contrivance", "thingummy", "thingamajig", "gimmick", "convenience", "doodad", "gizmo", "gadget", "whatchamacallit", "thingamabob", "contraption", "doohickey", "whatsis", "widget"]}, {"answer": "wiener", "hint": "synonyms for wiener", "clues": ["hotdog", "weenie", "dog", "frank", "wienerwurst", "frankfurter", "wiener"]}, {"answer": "wienerwurst", "hint": "synonyms for wienerwurst", "clues": ["hotdog", "weenie", "dog", "frank", "wiener", "frankfurter", "wienerwurst"]}, {"answer": "wildness", "hint": "synonyms for wildness", "clues": ["fury", "ferocity", "furiousness", "abandon", "vehemence", "violence", "fierceness", "wildness"]}, {"answer": "wile", "hint": "synonyms for wile", "clues": ["chicane", "trickery", "guile", "shenanigan", "wile"]}, {"answer": "wiliness", "hint": "synonyms for wiliness", "clues": ["craft", "guile", "slyness", "cunning", "craftiness", "foxiness", "wiliness"]}, {"answer": "will_power", "hint": "synonyms for will power", "clues": ["self-command", "possession", "willpower", "self-possession", "self-control", "self-will"]}, {"answer": "willpower", "hint": "synonyms for willpower", "clues": ["self-command", "possession", "will power", "self-possession", "self-control", "self-will"]}, {"answer": "wind", "hint": "synonyms for wind", "clues": ["wind instrument", "confidential information", "flatus", "hint", "farting", "air current", "steer", "breaking wind", "winding", "nothingness", "twist", "idle words", "current of air", "jazz", "malarkey", "tip", "lead"]}, {"answer": "wind_cone", "hint": "synonyms for wind cone", "clues": ["wind sleeve", "wind sock", "drogue", "sock", "air sock", "air-sleeve", "wind cone"]}, {"answer": "wind_sleeve", "hint": "synonyms for wind sleeve", "clues": ["wind cone", "wind sock", "drogue", "sock", "air sock", "air-sleeve", "wind sleeve"]}, {"answer": "wind_sock", "hint": "synonyms for wind sock", "clues": ["wind cone", "wind sleeve", "air sock", "windsock", "drogue", "sock", "air-sleeve"]}, {"answer": "windfall", "hint": "synonyms for windfall", "clues": ["gold rush", "manna from heaven", "boom", "bonanza", "gravy", "bunce", "godsend", "windfall"]}, {"answer": "windiness", "hint": "synonyms for windiness", "clues": ["prolixity", "long-windedness", "prolixness", "wordiness", "windiness"]}, {"answer": "winding-clothes", "hint": "synonyms for winding-clothes", "clues": ["pall", "shroud", "winding-sheet", "cerement", "winding-clothes"]}, {"answer": "winding-sheet", "hint": "synonyms for winding-sheet", "clues": ["pall", "shroud", "cerement", "winding-clothes", "winding-sheet"]}, {"answer": "window_pane", "hint": "synonyms for window pane", "clues": ["dot", "dose", "loony toons", "pane", "back breaker", "superman", "acid", "battery-acid", "window pane"]}, {"answer": "windsock", "hint": "synonyms for windsock", "clues": ["wind cone", "wind sleeve", "wind sock", "drogue", "sock", "air sock", "air-sleeve"]}, {"answer": "wing", "hint": "synonyms for wing", "clues": ["fender", "extension", "backstage", "annexe", "offstage", "flank", "wing"]}, {"answer": "wing-nut", "hint": "synonyms for wing-nut", "clues": ["butterfly nut", "wing screw", "thumbnut", "wing nut"]}, {"answer": "wing_nut", "hint": "synonyms for wing nut", "clues": ["butterfly nut", "wing screw", "thumbnut", "wing-nut"]}, {"answer": "wing_screw", "hint": "synonyms for wing screw", "clues": ["butterfly nut", "wing nut", "thumbnut", "wing screw"]}, {"answer": "wings", "hint": "synonyms for wings", "clues": ["fender", "annexe", "wing", "extension", "backstage", "offstage", "flank"]}, {"answer": "wink", "hint": "synonyms for wink", "clues": ["twinkling", "jiffy", "instant", "flash", "split second", "heartbeat", "blink", "blink of an eye", "trice", "nictitation", "eye blink", "wink"]}, {"answer": "wintergreen", "hint": "synonyms for wintergreen", "clues": ["teaberry", "checkerberry", "spiceberry", "boxberry", "wintergreen"]}, {"answer": "wiper", "hint": "synonyms for wiper", "clues": ["windscreen wiper", "wiper blade", "wiper arm", "windshield wiper", "contact arm", "wiper"]}, {"answer": "wire_service", "hint": "synonyms for wire service", "clues": ["news agency", "press association", "news organisation", "press agency", "wire service"]}, {"answer": "wish", "hint": "synonyms for wish", "clues": ["compliments", "regard", "want", "indirect request", "wishing"]}, {"answer": "wish-wash", "hint": "synonyms for wish-wash", "clues": ["trumpery", "folderol", "trash", "codswallop", "applesauce", "rubbish", "tripe", "wish-wash"]}, {"answer": "wit", "hint": "synonyms for wit", "clues": ["brain", "humour", "brainpower", "learning ability", "witticism", "mental capacity", "wittiness", "mentality", "wit"]}, {"answer": "withdrawal", "hint": "synonyms for withdrawal", "clues": ["climb-down", "withdrawal method", "pulling out", "coitus interruptus", "drug withdrawal", "onanism", "secession", "backdown", "detachment", "withdrawal"]}, {"answer": "withdrawal_method", "hint": "synonyms for withdrawal method", "clues": ["pulling out", "coitus interruptus", "onanism", "withdrawal", "withdrawal method"]}, {"answer": "wits", "hint": "synonyms for wits", "clues": ["marbles", "brain", "wit", "humour", "brainpower", "learning ability", "witticism", "mental capacity", "wittiness", "mentality"]}, {"answer": "witticism", "hint": "synonyms for witticism", "clues": ["wit", "wittiness", "humor", "witticism"]}, {"answer": "wittiness", "hint": "synonyms for wittiness", "clues": ["wit", "humor", "witticism", "wittiness"]}, {"answer": "womanishness", "hint": "synonyms for womanishness", "clues": ["sissiness", "unmanliness", "effeminateness", "softness", "effeminacy", "womanishness"]}, {"answer": "wonder", "hint": "synonyms for wonder", "clues": ["marvel", "admiration", "curiosity", "wonderment", "wonder"]}, {"answer": "wood", "hint": "synonyms for wood", "clues": ["woods", "forest", "woodwind", "woodwind instrument"]}, {"answer": "woods", "hint": "synonyms for woods", "clues": ["forest", "woodwind", "wood", "woodwind instrument"]}, {"answer": "word", "hint": "synonyms for word", "clues": ["watchword", "tidings", "countersign", "news", "password", "word of honor", "intelligence", "discussion", "give-and-take", "parole", "word"]}, {"answer": "word-painting", "hint": "synonyms for word-painting", "clues": ["delineation", "picture", "characterization", "word picture", "depiction", "word-painting"]}, {"answer": "word_picture", "hint": "synonyms for word picture", "clues": ["characterization", "delineation", "picture", "word-painting", "depiction", "word picture"]}, {"answer": "wordiness", "hint": "synonyms for wordiness", "clues": ["windiness", "prolixity", "long-windedness", "prolixness", "wordiness"]}, {"answer": "wording", "hint": "synonyms for wording", "clues": ["choice of words", "verbiage", "phraseology", "diction", "phrasing", "wording"]}, {"answer": "words", "hint": "synonyms for words", "clues": ["watchword", "tidings", "lyric", "actor's line", "dustup", "word of honor", "intelligence", "give-and-take", "wrangle", "row", "quarrel", "language", "countersign", "news", "run-in", "password", "speech", "discussion", "parole", "word"]}, {"answer": "work", "hint": "synonyms for work", "clues": ["piece of work", "study", "workplace", "body of work", "oeuvre", "employment", "work"]}, {"answer": "work_study", "hint": "synonyms for work study", "clues": ["time-and-motion study", "time study", "motion study", "work study"]}, {"answer": "workout", "hint": "synonyms for workout", "clues": ["physical exercise", "exercising", "exercise", "physical exertion", "workout"]}, {"answer": "works", "hint": "synonyms for works", "clues": ["deeds", "plant", "workplace", "body of work", "oeuvre", "employment", "piece of work", "study", "work", "industrial plant", "workings"]}, {"answer": "world_power", "hint": "synonyms for world power", "clues": ["great power", "power", "major power", "superpower", "world power"]}, {"answer": "worry", "hint": "synonyms for worry", "clues": ["concern", "trouble", "headache", "vexation", "worry"]}, {"answer": "wow", "hint": "synonyms for wow", "clues": ["sidesplitter", "riot", "howler", "thigh-slapper", "belly laugh", "scream", "wow"]}, {"answer": "wraith", "hint": "synonyms for wraith", "clues": ["shade", "spook", "spectre", "ghost", "wraith"]}, {"answer": "wrangle", "hint": "synonyms for wrangle", "clues": ["haggle", "row", "words", "quarrel", "haggling", "wrangling", "run-in", "dustup", "wrangle"]}, {"answer": "wrapper", "hint": "synonyms for wrapper", "clues": ["neglige", "wrapping", "housecoat", "peignoir", "wrap", "wrapper"]}, {"answer": "wreath", "hint": "synonyms for wreath", "clues": ["coronal", "garland", "chaplet", "lei", "wreath"]}, {"answer": "wrecking", "hint": "synonyms for wrecking", "clues": ["ruining", "ruination", "laying waste", "razing", "wrecking"]}, {"answer": "wrestle", "hint": "synonyms for wrestle", "clues": ["hand-to-hand struggle", "wrestling", "grappling", "grapple", "wrestle"]}, {"answer": "wrestling", "hint": "synonyms for wrestling", "clues": ["hand-to-hand struggle", "grappling", "grapple", "rassling", "wrestle", "wrestling"]}, {"answer": "wrinkle", "hint": "synonyms for wrinkle", "clues": ["line", "crease", "furrow", "crinkle", "seam"]}, {"answer": "wristband", "hint": "synonyms for wristband", "clues": ["watchband", "bracelet", "watch bracelet", "watchstrap", "wristband"]}, {"answer": "write_up", "hint": "synonyms for write up", "clues": ["story", "news report", "report", "account", "write up"]}, {"answer": "writing", "hint": "synonyms for writing", "clues": ["piece of writing", "committal to writing", "penning", "written material", "composition", "authorship", "writing"]}, {"answer": "writings", "hint": "synonyms for writings", "clues": ["piece of writing", "writing", "committal to writing", "penning", "written material", "composition", "authorship"]}, {"answer": "wrongdoing", "hint": "synonyms for wrongdoing", "clues": ["actus reus", "error", "wrongful conduct", "misconduct", "wrongdoing"]}, {"answer": "xtc", "hint": "synonyms for xtc", "clues": ["cristal", "hug drug", "go", "disco biscuit", "ecstasy", "xtc"]}, {"answer": "yack", "hint": "synonyms for yack", "clues": ["yak", "yakety-yak", "cackle", "chatter"]}, {"answer": "yak", "hint": "synonyms for yak", "clues": ["yack", "yakety-yak", "cackle", "chatter"]}, {"answer": "yakety-yak", "hint": "synonyms for yakety-yak", "clues": ["yack", "cackle", "chatter", "yakety-yak"]}, {"answer": "yard", "hint": "synonyms for yard", "clues": ["1000", "thou", "grand", "one thousand", "curtilage", "grounds", "thousand", "cubic yard", "pace", "railyard", "chiliad", "railway yard", "yard"]}, {"answer": "yb", "hint": "synonyms for yb", "clues": ["yottabyte", "yobibyte", "atomic number 70", "ytterbium", "yottabit", "yb"]}, {"answer": "years", "hint": "synonyms for years", "clues": ["geezerhood", "twelvemonth", "class", "yr", "eld", "days", "year", "long time", "age", "old age"]}, {"answer": "yell", "hint": "synonyms for yell", "clues": ["vociferation", "call", "cry", "shout", "outcry", "yell"]}, {"answer": "yellowish_brown", "hint": "synonyms for yellowish brown", "clues": ["caramel brown", "buff", "caramel", "raw sienna", "yellowish brown"]}, {"answer": "yield", "hint": "synonyms for yield", "clues": ["output", "takings", "take", "issue", "return", "proceeds", "payoff", "production", "fruit", "yield"]}, {"answer": "yoke", "hint": "synonyms for yoke", "clues": ["duet", "pair", "twain", "dyad", "couplet", "coupling", "span", "brace", "twosome", "duad", "duo", "distich", "yoke"]}, {"answer": "you-drive", "hint": "synonyms for you-drive", "clues": ["u-drive", "self-drive", "hire car", "rent-a-car", "car rental"]}, {"answer": "youth", "hint": "synonyms for youth", "clues": ["young", "juvenility", "youthfulness", "early days", "youth"]}, {"answer": "yowl", "hint": "synonyms for yowl", "clues": ["holler", "holla", "bellowing", "roaring", "hollo", "yowl"]}, {"answer": "ypres", "hint": "synonyms for ypres", "clues": ["battle of Ypres", "second battle of Ypres", "first battle of Ypres", "ypres"]}, {"answer": "z", "hint": "synonyms for z", "clues": ["omega", "izzard", "zed", "zee", "z"]}, {"answer": "zeal", "hint": "synonyms for zeal", "clues": ["elan", "eagerness", "ardour", "forwardness", "readiness", "zeal"]}, {"answer": "zed", "hint": "synonyms for zed", "clues": ["ezed", "z", "zee", "izzard"]}, {"answer": "zee", "hint": "synonyms for zee", "clues": ["ezed", "z", "izzard", "zee"]}, {"answer": "zen", "hint": "synonyms for zen", "clues": ["dot", "dose", "loony toons", "window pane", "pane", "back breaker", "superman", "acid", "battery-acid", "zen"]}, {"answer": "zep", "hint": "synonyms for zep", "clues": ["hoagie", "wedge", "hoagy", "torpedo", "poor boy", "submarine", "bomber", "grinder", "submarine sandwich", "hero", "hero sandwich", "sub", "zep"]}, {"answer": "zest", "hint": "synonyms for zest", "clues": ["piquance", "piquantness", "relish", "tanginess", "zestfulness", "tang", "gusto", "nip", "zest"]}, {"answer": "zilch", "hint": "synonyms for zilch", "clues": ["goose egg", "zippo", "zero", "nil", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing", "zilch"]}, {"answer": "zing", "hint": "synonyms for zing", "clues": ["oomph", "pizzazz", "dynamism", "zing"]}, {"answer": "zip", "hint": "synonyms for zip", "clues": ["goose egg", "postal code", "zipper", "slide fastener", "zip fastener", "aught", "energy", "nothing", "vigor", "zippo", "zero", "nil", "zilch", "cypher", "cipher", "null", "postcode", "nada", "nix", "zip"]}, {"answer": "zippo", "hint": "synonyms for zippo", "clues": ["goose egg", "zero", "nil", "zilch", "cypher", "aught", "cipher", "null", "zip", "nada", "nix", "nothing", "zippo"]}, {"answer": "assess", "hint": "synonyms for assess", "clues": ["roll in the hay", "nookie", "screw", "fuck", "shtup", "piece of ass", "piece of tail", "shag", "ass", "nooky", "assess"]}], "portion": 0.2}, {"name": "adjectives", "groups": [{"answer": "1000", "hint": "synonyms for 1000", "clues": ["one thousand", "k", "m", "thousand", "1000"]}, {"answer": "6", "hint": "synonyms for 6", "clues": ["half-dozen", "vi", "six", "6"]}, {"answer": "a-one", "hint": "synonyms for a-one", "clues": ["first-rate", "tops", "topnotch", "ace", "crack", "tiptop", "super", "a-one"]}, {"answer": "a_la_mode", "hint": "synonyms for a la mode", "clues": ["in style", "latest", "modish", "in vogue", "a la mode"]}, {"answer": "abhorrent", "hint": "synonyms for abhorrent", "clues": ["obscene", "repulsive", "repugnant", "detestable", "abhorrent"]}, {"answer": "abject", "hint": "synonyms for abject", "clues": ["unhopeful", "scummy", "miserable", "scurvy", "low", "low-down", "abject"]}, {"answer": "ablaze", "hint": "synonyms for ablaze", "clues": ["alight", "aflame", "afire", "reddened", "inflamed", "aflare", "on fire", "aroused", "ablaze"]}, {"answer": "abominable", "hint": "synonyms for abominable", "clues": ["atrocious", "odious", "execrable", "detestable", "unspeakable", "painful", "terrible", "dreadful", "awful", "abominable"]}, {"answer": "aboriginal", "hint": "synonyms for aboriginal", "clues": ["native", "primal", "primaeval", "primordial", "aboriginal"]}, {"answer": "absent", "hint": "synonyms for absent", "clues": ["absentminded", "abstracted", "scatty", "lacking", "wanting", "missing", "absent"]}, {"answer": "absolute", "hint": "synonyms for absolute", "clues": ["inviolable", "sheer", "infrangible", "rank", "out-and-out", "downright", "right-down", "absolute"]}, {"answer": "absolved", "hint": "synonyms for absolved", "clues": ["exonerated", "cleared", "exculpated", "vindicated", "clear", "absolved"]}, {"answer": "absorbed", "hint": "synonyms for absorbed", "clues": ["captive", "enwrapped", "engrossed", "intent", "absorbed"]}, {"answer": "absorbing", "hint": "synonyms for absorbing", "clues": ["riveting", "engrossing", "fascinating", "gripping", "absorbing"]}, {"answer": "absurd", "hint": "synonyms for absurd", "clues": ["idiotic", "ridiculous", "cockeyed", "nonsensical", "ludicrous", "derisory", "preposterous", "laughable", "absurd"]}, {"answer": "accessory", "hint": "synonyms for accessory", "clues": ["appurtenant", "auxiliary", "accessary", "adjunct", "ancillary", "adjuvant"]}, {"answer": "accompanying", "hint": "synonyms for accompanying", "clues": ["ensuant", "consequent", "attendant", "concomitant", "resultant", "incidental", "sequent", "accompanying"]}, {"answer": "accomplishable", "hint": "synonyms for accomplishable", "clues": ["manageable", "achievable", "realizable", "doable", "accomplishable"]}, {"answer": "accomplished", "hint": "synonyms for accomplished", "clues": ["realised", "established", "effected", "complete", "accomplished"]}, {"answer": "accordant", "hint": "synonyms for accordant", "clues": ["conformable", "consonant", "agreeable", "concordant", "accordant"]}, {"answer": "accusative", "hint": "synonyms for accusative", "clues": ["accusatory", "accusive", "objective", "accusing"]}, {"answer": "ace", "hint": "synonyms for ace", "clues": ["first-rate", "tops", "crack", "topnotch", "tiptop", "super", "ace"]}, {"answer": "acerb", "hint": "synonyms for acerb", "clues": ["acrid", "sulphurous", "astringent", "blistering", "virulent", "caustic", "bitter", "sulfurous", "vitriolic", "acerbic", "acerb"]}, {"answer": "acerbic", "hint": "synonyms for acerbic", "clues": ["acrid", "sulphurous", "astringent", "blistering", "virulent", "caustic", "bitter", "sulfurous", "vitriolic", "acerb", "acerbic"]}, {"answer": "achievable", "hint": "synonyms for achievable", "clues": ["manageable", "doable", "accomplishable", "realizable", "achievable"]}, {"answer": "acid", "hint": "synonyms for acid", "clues": ["acidulous", "acrid", "sulphurous", "acerb", "blistering", "virulent", "acidic", "acidulent", "caustic", "bitter", "sulfurous", "vitriolic", "acerbic"]}, {"answer": "acrid", "hint": "synonyms for acrid", "clues": ["sulphurous", "acerbic", "acerb", "blistering", "virulent", "caustic", "bitter", "acid", "sulfurous", "vitriolic", "pungent"]}, {"answer": "across-the-board", "hint": "synonyms for across-the-board", "clues": ["all-embracing", "all-inclusive", "extensive", "panoptic", "wide", "encompassing", "blanket", "broad", "across-the-board"]}, {"answer": "active", "hint": "synonyms for active", "clues": ["alive", "combat-ready", "participating", "fighting", "dynamic", "active"]}, {"answer": "actual", "hint": "synonyms for actual", "clues": ["existent", "genuine", "real", "factual", "literal"]}, {"answer": "acute", "hint": "synonyms for acute", "clues": ["discriminating", "intense", "penetrating", "keen", "needlelike", "knifelike", "sharp", "incisive", "acuate", "penetrative", "piercing"]}, {"answer": "ad-lib", "hint": "synonyms for ad-lib", "clues": ["off-the-cuff", "extemporaneous", "extempore", "unwritten", "offhand", "unrehearsed", "impromptu", "spontaneous", "extemporary", "ad-lib"]}, {"answer": "addled", "hint": "synonyms for addled", "clues": ["woolly-headed", "wooly", "muzzy", "befuddled", "muddled", "wooly-minded", "addled"]}, {"answer": "adept", "hint": "synonyms for adept", "clues": ["good", "skillful", "proficient", "expert", "practiced", "adept"]}, {"answer": "adequate", "hint": "synonyms for adequate", "clues": ["decent", "tolerable", "enough", "fair to middling", "equal", "passable", "adequate"]}, {"answer": "adjacent", "hint": "synonyms for adjacent", "clues": ["conterminous", "side by side", "contiguous", "next", "neighboring", "adjacent"]}, {"answer": "adjunct", "hint": "synonyms for adjunct", "clues": ["appurtenant", "auxiliary", "assistant", "accessory", "ancillary", "adjuvant", "adjunct"]}, {"answer": "adjuvant", "hint": "synonyms for adjuvant", "clues": ["appurtenant", "auxiliary", "adjunct", "accessory", "ancillary", "adjuvant"]}, {"answer": "admonitory", "hint": "synonyms for admonitory", "clues": ["cautionary", "monitory", "warning", "exemplary", "admonishing", "reproving", "reproachful"]}, {"answer": "adolescent", "hint": "synonyms for adolescent", "clues": ["teenage", "puerile", "juvenile", "teen", "jejune", "adolescent"]}, {"answer": "adrift", "hint": "synonyms for adrift", "clues": ["planless", "directionless", "aimless", "rudderless", "afloat", "undirected", "adrift"]}, {"answer": "adult", "hint": "synonyms for adult", "clues": ["pornographic", "grown", "grownup", "fully grown", "big", "adult"]}, {"answer": "adulterous", "hint": "synonyms for adulterous", "clues": ["extracurricular", "extramarital", "two-timing", "cheating", "adulterous"]}, {"answer": "adust", "hint": "synonyms for adust", "clues": ["baked", "parched", "sunbaked", "scorched", "adust"]}, {"answer": "advanced", "hint": "synonyms for advanced", "clues": ["ripe", "in advance", "forward-looking", "modern", "advance", "innovative", "sophisticated"]}, {"answer": "adynamic", "hint": "synonyms for adynamic", "clues": ["debilitated", "asthenic", "enervated", "undynamic", "adynamic"]}, {"answer": "aeonian", "hint": "synonyms for aeonian", "clues": ["ageless", "eternal", "unending", "eonian", "everlasting", "unceasing", "perpetual"]}, {"answer": "aerial", "hint": "synonyms for aerial", "clues": ["airy", "ethereal", "aery", "aeriform", "aerial"]}, {"answer": "aeriform", "hint": "synonyms for aeriform", "clues": ["airlike", "airy", "ethereal", "aerial", "aery", "aeriform"]}, {"answer": "aery", "hint": "synonyms for aery", "clues": ["airy", "ethereal", "aerial", "aeriform", "aery"]}, {"answer": "affected", "hint": "synonyms for affected", "clues": ["moved", "stirred", "touched", "unnatural", "affected"]}, {"answer": "affectionate", "hint": "synonyms for affectionate", "clues": ["lovesome", "fond", "warm", "tender", "affectionate"]}, {"answer": "affirmative", "hint": "synonyms for affirmative", "clues": ["plausive", "optimistic", "approbatory", "approbative", "affirmatory", "approving", "affirmative"]}, {"answer": "affluent", "hint": "synonyms for affluent", "clues": ["wealthy", "moneyed", "flush", "loaded", "affluent"]}, {"answer": "afire", "hint": "synonyms for afire", "clues": ["alight", "aflame", "ablaze", "aflare", "on fire", "afire"]}, {"answer": "aflame", "hint": "synonyms for aflame", "clues": ["alight", "afire", "ablaze", "aflare", "on fire", "aroused", "aflame"]}, {"answer": "aflare", "hint": "synonyms for aflare", "clues": ["alight", "afire", "flaring", "aflame", "ablaze", "on fire", "aflare"]}, {"answer": "afloat", "hint": "synonyms for afloat", "clues": ["directionless", "rudderless", "undirected", "awash", "overflowing", "aimless", "inundated", "planless", "adrift", "flooded", "afloat"]}, {"answer": "agamic", "hint": "synonyms for agamic", "clues": ["parthenogenetic", "agamogenetic", "apomictic", "agamous", "agamic"]}, {"answer": "agamogenetic", "hint": "synonyms for agamogenetic", "clues": ["parthenogenetic", "apomictic", "agamic", "agamous", "agamogenetic"]}, {"answer": "agamous", "hint": "synonyms for agamous", "clues": ["parthenogenetic", "agamogenetic", "agamic", "apomictic", "agamous"]}, {"answer": "aged", "hint": "synonyms for aged", "clues": ["ripened", "elderly", "senior", "of age", "cured", "older", "aged"]}, {"answer": "ageless", "hint": "synonyms for ageless", "clues": ["aeonian", "eternal", "unending", "everlasting", "unceasing", "perpetual", "ageless"]}, {"answer": "aglitter", "hint": "synonyms for aglitter", "clues": ["glittering", "glittery", "sparkly", "fulgid", "glinting", "coruscant", "scintillating", "scintillant"]}, {"answer": "agonising", "hint": "synonyms for agonising", "clues": ["torturous", "agonizing", "torturesome", "excruciating", "harrowing", "torturing"]}, {"answer": "agonizing", "hint": "synonyms for agonizing", "clues": ["torturous", "torturesome", "excruciating", "agonising", "harrowing", "torturing"]}, {"answer": "agreeable", "hint": "synonyms for agreeable", "clues": ["conformable", "consonant", "accordant", "concordant", "agreeable"]}, {"answer": "ailing", "hint": "synonyms for ailing", "clues": ["peaked", "indisposed", "under the weather", "unwell", "sickly", "poorly", "seedy", "ailing"]}, {"answer": "aimless", "hint": "synonyms for aimless", "clues": ["directionless", "rudderless", "afloat", "undirected", "vagrant", "vagabond", "planless", "adrift", "floating", "drifting", "aimless"]}, {"answer": "airheaded", "hint": "synonyms for airheaded", "clues": ["dizzy", "silly", "empty-headed", "giddy", "light-headed", "featherbrained", "airheaded"]}, {"answer": "airy", "hint": "synonyms for airy", "clues": ["aerial", "aeriform", "impractical", "visionary", "aery", "ethereal", "windy", "aired", "airy"]}, {"answer": "akin", "hint": "synonyms for akin", "clues": ["consanguineal", "consanguineous", "kindred", "blood-related", "kin", "cognate"]}, {"answer": "alar", "hint": "synonyms for alar", "clues": ["aliform", "axillary", "wing-shaped", "alary"]}, {"answer": "alert", "hint": "synonyms for alert", "clues": ["alive", "watchful", "zippy", "awake", "snappy", "brisk", "lively", "rattling", "spanking", "merry", "alert"]}, {"answer": "alight", "hint": "synonyms for alight", "clues": ["afire", "aflame", "ablaze", "aflare", "on fire", "alight"]}, {"answer": "alimental", "hint": "synonyms for alimental", "clues": ["nutritive", "alimentary", "nutritious", "nourishing", "nutrient", "alimental"]}, {"answer": "alimentary", "hint": "synonyms for alimentary", "clues": ["alimental", "nutritive", "nutritious", "nourishing", "nutrient", "alimentary"]}, {"answer": "alive", "hint": "synonyms for alive", "clues": ["live", "awake", "animated", "alert", "active"]}, {"answer": "all-embracing", "hint": "synonyms for all-embracing", "clues": ["across-the-board", "all-inclusive", "extensive", "panoptic", "wide", "encompassing", "blanket", "broad", "all-embracing"]}, {"answer": "all-encompassing", "hint": "synonyms for all-encompassing", "clues": ["all-embracing", "across-the-board", "all-inclusive", "extensive", "panoptic", "wide", "encompassing", "blanket", "broad"]}, {"answer": "all-important", "hint": "synonyms for all-important", "clues": ["all important", "essential", "crucial", "of the essence"]}, {"answer": "all-inclusive", "hint": "synonyms for all-inclusive", "clues": ["all-embracing", "across-the-board", "extensive", "panoptic", "wide", "encompassing", "blanket", "broad", "all-inclusive"]}, {"answer": "all_important", "hint": "synonyms for all important", "clues": ["essential", "of the essence", "crucial", "all-important"]}, {"answer": "all_over", "hint": "synonyms for all over", "clues": ["terminated", "concluded", "over", "ended", "complete", "all over"]}, {"answer": "all_right", "hint": "synonyms for all right", "clues": ["hunky-dory", "okay", "ok", "o.k.", "fine", "all right"]}, {"answer": "allergic", "hint": "synonyms for allergic", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "alleviative", "hint": "synonyms for alleviative", "clues": ["mitigative", "mitigatory", "palliative", "lenitive", "alleviatory"]}, {"answer": "alleviatory", "hint": "synonyms for alleviatory", "clues": ["mitigative", "mitigatory", "alleviative", "lenitive", "alleviatory"]}, {"answer": "alone", "hint": "synonyms for alone", "clues": ["lonely", "unequaled", "unique", "only", "unparalleled", "solitary", "alone"]}, {"answer": "alterative", "hint": "synonyms for alterative", "clues": ["remedial", "curative", "therapeutic", "sanative", "healing", "alterative"]}, {"answer": "alveolate", "hint": "synonyms for alveolate", "clues": ["cavitied", "faveolate", "honeycombed", "pitted"]}, {"answer": "amalgamate", "hint": "synonyms for amalgamate", "clues": ["fused", "consolidated", "amalgamated", "coalesced"]}, {"answer": "amalgamated", "hint": "synonyms for amalgamated", "clues": ["fused", "consolidated", "amalgamate", "coalesced"]}, {"answer": "amateur", "hint": "synonyms for amateur", "clues": ["unskilled", "recreational", "inexpert", "amateurish", "unpaid", "amateur"]}, {"answer": "amazed", "hint": "synonyms for amazed", "clues": ["stunned", "astonied", "astounded", "amazed"]}, {"answer": "amazing", "hint": "synonyms for amazing", "clues": ["astonishing", "awing", "awesome", "awe-inspiring", "awful", "amazing"]}, {"answer": "ambidextrous", "hint": "synonyms for ambidextrous", "clues": ["double-tongued", "double-dealing", "duplicitous", "deceitful", "two-faced", "two-handed", "double-faced", "ambidextrous"]}, {"answer": "amiable", "hint": "synonyms for amiable", "clues": ["good-humoured", "cordial", "affable", "genial", "amiable"]}, {"answer": "amok", "hint": "synonyms for amok", "clues": ["amuck", "demoniac", "possessed", "berserk", "amok"]}, {"answer": "amorphous", "hint": "synonyms for amorphous", "clues": ["formless", "unstructured", "uncrystallized", "shapeless", "amorphous"]}, {"answer": "ample", "hint": "synonyms for ample", "clues": ["plenteous", "rich", "copious", "sizable", "plentiful", "ample"]}, {"answer": "amuck", "hint": "synonyms for amuck", "clues": ["amok", "demoniac", "possessed", "berserk", "amuck"]}, {"answer": "amusing", "hint": "synonyms for amusing", "clues": ["comical", "mirthful", "funny", "diverting", "amusive", "risible", "comic", "laughable", "amusing"]}, {"answer": "amylaceous", "hint": "synonyms for amylaceous", "clues": ["starchlike", "amyloidal", "farinaceous", "amylaceous"]}, {"answer": "amyloid", "hint": "synonyms for amyloid", "clues": ["amylaceous", "amyloidal", "farinaceous", "starchlike"]}, {"answer": "amyloidal", "hint": "synonyms for amyloidal", "clues": ["amylaceous", "starchlike", "farinaceous", "amyloid"]}, {"answer": "ancillary", "hint": "synonyms for ancillary", "clues": ["appurtenant", "auxiliary", "adjunct", "accessory", "adjuvant", "ancillary"]}, {"answer": "angelic", "hint": "synonyms for angelic", "clues": ["cherubic", "sweet", "beatific", "saintly", "sainted", "saintlike", "angelical", "seraphic"]}, {"answer": "angelical", "hint": "synonyms for angelical", "clues": ["cherubic", "sweet", "beatific", "saintly", "angelic", "sainted", "saintlike", "seraphic"]}, {"answer": "angered", "hint": "synonyms for angered", "clues": ["furious", "maddened", "enraged", "infuriated", "angered"]}, {"answer": "angry", "hint": "synonyms for angry", "clues": ["furious", "wild", "raging", "tempestuous", "angry"]}, {"answer": "annoyed", "hint": "synonyms for annoyed", "clues": ["riled", "pissed off", "miffed", "harassed", "harried", "nettled", "pestered", "steamed", "peeved", "vexed", "stung", "pissed", "irritated", "annoyed"]}, {"answer": "annoying", "hint": "synonyms for annoying", "clues": ["nettlesome", "galling", "teasing", "plaguy", "vexing", "pesky", "irritating", "bothersome", "vexatious", "pestering", "pestiferous", "annoying"]}, {"answer": "annular", "hint": "synonyms for annular", "clues": ["circinate", "annulated", "ringed", "doughnut-shaped", "ring-shaped", "annular"]}, {"answer": "annulate", "hint": "synonyms for annulate", "clues": ["annulated", "ringed", "doughnut-shaped", "annular", "ring-shaped", "circinate"]}, {"answer": "annulated", "hint": "synonyms for annulated", "clues": ["circinate", "ringed", "doughnut-shaped", "annular", "ring-shaped", "annulate"]}, {"answer": "anserine", "hint": "synonyms for anserine", "clues": ["goosy", "gooselike", "dopy", "jerky", "foolish", "anserine"]}, {"answer": "antagonistic", "hint": "synonyms for antagonistic", "clues": ["incompatible", "counter", "antipathetic", "antagonistic"]}, {"answer": "antipathetic", "hint": "synonyms for antipathetic", "clues": ["loath", "averse", "indisposed", "antipathetical", "antagonistic"]}, {"answer": "antipathetical", "hint": "synonyms for antipathetical", "clues": ["loath", "averse", "indisposed", "antipathetic", "antagonistic"]}, {"answer": "antique", "hint": "synonyms for antique", "clues": ["age-old", "outmoded", "old-hat", "demode", "old-fashioned", "passe", "ex", "antique"]}, {"answer": "anxious", "hint": "synonyms for anxious", "clues": ["dying", "queasy", "nervous", "uneasy", "unquiet", "anxious"]}, {"answer": "apomictic", "hint": "synonyms for apomictic", "clues": ["agamogenetic", "apomictical", "agamic", "agamous", "parthenogenetic"]}, {"answer": "appareled", "hint": "synonyms for appareled", "clues": ["robed", "garmented", "dressed", "garbed", "habilimented", "attired", "appareled"]}, {"answer": "apparent", "hint": "synonyms for apparent", "clues": ["seeming", "unmistakable", "ostensible", "manifest", "evident", "patent", "plain", "apparent"]}, {"answer": "apparitional", "hint": "synonyms for apparitional", "clues": ["spiritual", "ghostly", "ghostlike", "phantasmal", "spectral", "apparitional"]}, {"answer": "appointed", "hint": "synonyms for appointed", "clues": ["appointive", "prescribed", "ordained", "decreed", "appointed"]}, {"answer": "apportioned", "hint": "synonyms for apportioned", "clues": ["parceled out", "meted out", "doled out", "dealt out", "apportioned"]}, {"answer": "apprehensible", "hint": "synonyms for apprehensible", "clues": ["graspable", "perceivable", "intelligible", "understandable", "apprehensible"]}, {"answer": "approbative", "hint": "synonyms for approbative", "clues": ["plausive", "approbatory", "approving", "affirmative", "approbative"]}, {"answer": "approbatory", "hint": "synonyms for approbatory", "clues": ["approbative", "plausive", "approving", "affirmative", "approbatory"]}, {"answer": "approving", "hint": "synonyms for approving", "clues": ["approbative", "approbatory", "plausive", "affirmative", "approving"]}, {"answer": "approximate", "hint": "synonyms for approximate", "clues": ["close together", "rough", "approximative", "near"]}, {"answer": "appurtenant", "hint": "synonyms for appurtenant", "clues": ["auxiliary", "adjunct", "accessory", "ancillary", "adjuvant", "appurtenant"]}, {"answer": "apt", "hint": "synonyms for apt", "clues": ["disposed", "liable", "apposite", "clever", "pertinent", "given", "minded", "tending", "apt"]}, {"answer": "arachnidian", "hint": "synonyms for arachnidian", "clues": ["spiderly", "arachnoid", "spiderlike", "arachnidian"]}, {"answer": "arachnoid", "hint": "synonyms for arachnoid", "clues": ["spiderly", "spiderlike", "arachnidian", "arachnoid"]}, {"answer": "arboreal", "hint": "synonyms for arboreal", "clues": ["arborous", "dendriform", "arborical", "arborary", "tree-shaped", "dendroid", "treelike", "arborescent", "arboriform", "arboresque", "tree-living", "arboreal"]}, {"answer": "arboreous", "hint": "synonyms for arboreous", "clues": ["woody", "dendriform", "tree-shaped", "dendroid", "treelike", "arboreal", "arborescent", "arboraceous", "arboriform", "arboresque", "tree-living"]}, {"answer": "arborescent", "hint": "synonyms for arborescent", "clues": ["dendriform", "tree-shaped", "dendroid", "treelike", "arboreal", "arboreous", "arboriform", "arboresque", "arborescent"]}, {"answer": "arboresque", "hint": "synonyms for arboresque", "clues": ["dendriform", "tree-shaped", "dendroid", "treelike", "arborescent", "arboreal", "arboreous", "arboriform", "arboresque"]}, {"answer": "arboriform", "hint": "synonyms for arboriform", "clues": ["dendriform", "tree-shaped", "dendroid", "treelike", "arborescent", "arboreal", "arboreous", "arboresque", "arboriform"]}, {"answer": "arced", "hint": "synonyms for arced", "clues": ["arched", "arching", "bowed", "arcuate", "arciform"]}, {"answer": "arch", "hint": "synonyms for arch", "clues": ["mischievous", "puckish", "impish", "patronizing", "implike", "condescending", "wicked", "prankish", "pixilated", "arch"]}, {"answer": "arched", "hint": "synonyms for arched", "clues": ["arching", "bowed", "arced", "arcuate", "arciform"]}, {"answer": "arching", "hint": "synonyms for arching", "clues": ["arched", "bowed", "arcuate", "arciform", "arching"]}, {"answer": "arciform", "hint": "synonyms for arciform", "clues": ["arched", "arching", "bowed", "arcuate", "arciform"]}, {"answer": "arctic", "hint": "synonyms for arctic", "clues": ["glacial", "north-polar", "icy", "frigid", "gelid", "polar", "arctic"]}, {"answer": "arcuate", "hint": "synonyms for arcuate", "clues": ["arched", "arching", "bowed", "arciform", "arcuate"]}, {"answer": "ardent", "hint": "synonyms for ardent", "clues": ["perfervid", "warm", "fiery", "torrid", "impassioned", "fervid", "fervent", "ardent"]}, {"answer": "arduous", "hint": "synonyms for arduous", "clues": ["laborious", "toilsome", "operose", "backbreaking", "grueling", "punishing", "straining", "hard", "strenuous", "heavy", "arduous"]}, {"answer": "argus-eyed", "hint": "synonyms for argus-eyed", "clues": ["vigilant", "keen-sighted", "lynx-eyed", "sharp-eyed", "hawk-eyed", "wakeful", "open-eyed", "sharp-sighted", "quick-sighted", "argus-eyed"]}, {"answer": "aristocratic", "hint": "synonyms for aristocratic", "clues": ["blue", "gentle", "blue-blooded", "aristocratical", "patrician"]}, {"answer": "aristocratical", "hint": "synonyms for aristocratical", "clues": ["blue", "gentle", "blue-blooded", "patrician", "aristocratic"]}, {"answer": "around_the_bend", "hint": "synonyms for around the bend", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked"]}, {"answer": "aroused", "hint": "synonyms for aroused", "clues": ["stirred", "turned on", "ablaze", "excited", "emotional", "stirred up", "horny", "steamy", "ruttish", "aflame", "stimulated", "worked up", "wound up", "randy", "aroused"]}, {"answer": "arrant", "hint": "synonyms for arrant", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "unadulterated", "complete", "arrant"]}, {"answer": "arthritic", "hint": "synonyms for arthritic", "clues": ["rheumatoid", "creaky", "rheumy", "rheumatic", "arthritic"]}, {"answer": "artificial", "hint": "synonyms for artificial", "clues": ["stilted", "contrived", "hokey", "unreal", "artificial"]}, {"answer": "ashen", "hint": "synonyms for ashen", "clues": ["livid", "blanched", "bloodless", "white", "ashen"]}, {"answer": "asinine", "hint": "synonyms for asinine", "clues": ["mindless", "inane", "fatuous", "vacuous", "asinine"]}, {"answer": "askance", "hint": "synonyms for askance", "clues": ["sidelong", "squint", "squint-eyed", "askant", "askance"]}, {"answer": "askant", "hint": "synonyms for askant", "clues": ["askance", "sidelong", "squint", "squint-eyed", "askant"]}, {"answer": "askew", "hint": "synonyms for askew", "clues": ["skew-whiff", "lopsided", "wonky", "cockeyed", "awry", "askew"]}, {"answer": "aslant", "hint": "synonyms for aslant", "clues": ["sloped", "aslope", "diagonal", "sloping", "slanting", "slanted", "aslant"]}, {"answer": "asleep", "hint": "synonyms for asleep", "clues": ["at peace", "deceased", "numb", "benumbed", "at rest", "departed", "gone", "asleep"]}, {"answer": "aslope", "hint": "synonyms for aslope", "clues": ["sloped", "aslant", "diagonal", "sloping", "slanting", "slanted", "aslope"]}, {"answer": "asquint", "hint": "synonyms for asquint", "clues": ["askance", "sidelong", "squint", "squint-eyed", "askant"]}, {"answer": "assignable", "hint": "synonyms for assignable", "clues": ["transferable", "conveyable", "negotiable", "assignable"]}, {"answer": "assorted", "hint": "synonyms for assorted", "clues": ["various", "mixed", "sundry", "miscellaneous", "motley", "assorted"]}, {"answer": "assumed", "hint": "synonyms for assumed", "clues": ["pretended", "fictive", "false", "put on", "sham", "fictitious", "assumed"]}, {"answer": "astonied", "hint": "synonyms for astonied", "clues": ["stunned", "astounded", "amazed", "astonished"]}, {"answer": "astonished", "hint": "synonyms for astonished", "clues": ["stunned", "astonied", "astounded", "amazed"]}, {"answer": "astonishing", "hint": "synonyms for astonishing", "clues": ["amazing", "staggering", "astounding", "stupefying", "astonishing"]}, {"answer": "astounded", "hint": "synonyms for astounded", "clues": ["stunned", "astonied", "amazed", "astounded"]}, {"answer": "astounding", "hint": "synonyms for astounding", "clues": ["astonishing", "staggering", "dumfounding", "stupefying", "astounding"]}, {"answer": "at_hand", "hint": "synonyms for at hand", "clues": ["impendent", "impending", "imminent", "close at hand", "at hand"]}, {"answer": "at_peace", "hint": "synonyms for at peace", "clues": ["deceased", "asleep", "at rest", "departed", "gone", "at peace"]}, {"answer": "at_rest", "hint": "synonyms for at rest", "clues": ["at peace", "asleep", "deceased", "gone", "departed", "at rest"]}, {"answer": "at_sea", "hint": "synonyms for at sea", "clues": ["mazed", "baffled", "lost", "befuddled", "confused", "bewildered", "confounded", "bemused", "mixed-up", "at sea"]}, {"answer": "ataractic", "hint": "synonyms for ataractic", "clues": ["tranquillizing", "sedative", "ataraxic", "ataractic"]}, {"answer": "ataraxic", "hint": "synonyms for ataraxic", "clues": ["tranquillizing", "sedative", "ataractic", "ataraxic"]}, {"answer": "atilt", "hint": "synonyms for atilt", "clues": ["canted", "leaning", "tilted", "tipped", "atilt"]}, {"answer": "atrocious", "hint": "synonyms for atrocious", "clues": ["monstrous", "abominable", "flagitious", "ugly", "horrifying", "unspeakable", "painful", "horrible", "terrible", "dreadful", "frightful", "grievous", "awful", "atrocious"]}, {"answer": "attendant", "hint": "synonyms for attendant", "clues": ["accompanying", "ensuant", "consequent", "concomitant", "resultant", "incidental", "sequent", "attendant"]}, {"answer": "attired", "hint": "synonyms for attired", "clues": ["robed", "appareled", "garmented", "dressed", "garbed", "habilimented", "attired"]}, {"answer": "audacious", "hint": "synonyms for audacious", "clues": ["dauntless", "venturesome", "brazen-faced", "brazen", "daring", "fearless", "brassy", "barefaced", "hardy", "bodacious", "bald-faced", "brave", "unfearing", "insolent", "venturous", "intrepid", "audacious"]}, {"answer": "august", "hint": "synonyms for august", "clues": ["grand", "lordly", "revered", "venerable", "august"]}, {"answer": "aureate", "hint": "synonyms for aureate", "clues": ["golden", "flamboyant", "gold", "florid", "gilded", "gilt", "aureate"]}, {"answer": "austere", "hint": "synonyms for austere", "clues": ["stark", "stern", "spartan", "ascetical", "severe", "austere"]}, {"answer": "authentic", "hint": "synonyms for authentic", "clues": ["veritable", "reliable", "bona fide", "unquestionable", "authentic"]}, {"answer": "authoritarian", "hint": "synonyms for authoritarian", "clues": ["dictatorial", "despotic", "overbearing", "tyrannical", "autocratic", "authoritarian"]}, {"answer": "authoritative", "hint": "synonyms for authoritative", "clues": ["authorised", "classical", "definitive", "important", "authoritative"]}, {"answer": "autochthonal", "hint": "synonyms for autochthonal", "clues": ["indigenous", "endemic", "autochthonous", "autochthonic", "autochthonal"]}, {"answer": "autochthonic", "hint": "synonyms for autochthonic", "clues": ["autochthonous", "indigenous", "endemic", "autochthonal", "autochthonic"]}, {"answer": "autochthonous", "hint": "synonyms for autochthonous", "clues": ["indigenous", "endemic", "autochthonal", "autochthonic", "autochthonous"]}, {"answer": "autocratic", "hint": "synonyms for autocratic", "clues": ["dominating", "magisterial", "authoritarian", "tyrannic", "high-and-mighty", "peremptory", "dictatorial", "bossy", "despotic", "autocratic"]}, {"answer": "automatic", "hint": "synonyms for automatic", "clues": ["robotlike", "reflexive", "robotic", "reflex", "automatonlike", "machinelike", "automatic"]}, {"answer": "automatonlike", "hint": "synonyms for automatonlike", "clues": ["automatic", "robotic", "robotlike", "machinelike", "automatonlike"]}, {"answer": "autonomous", "hint": "synonyms for autonomous", "clues": ["self-reliant", "independent", "sovereign", "self-governing", "self-directed", "autonomous"]}, {"answer": "autumn-blooming", "hint": "synonyms for autumn-blooming", "clues": ["fall-flowering", "autumn-flowering", "late-flowering", "late-blooming", "fall-blooming", "autumn-blooming"]}, {"answer": "autumn-flowering", "hint": "synonyms for autumn-flowering", "clues": ["fall-flowering", "late-flowering", "late-blooming", "fall-blooming", "autumn-blooming", "autumn-flowering"]}, {"answer": "auxiliary", "hint": "synonyms for auxiliary", "clues": ["supplementary", "adjunct", "accessory", "subsidiary", "appurtenant", "ancillary", "adjuvant", "auxiliary"]}, {"answer": "avaricious", "hint": "synonyms for avaricious", "clues": ["greedy", "prehensile", "grabby", "covetous", "grasping", "avaricious"]}, {"answer": "average", "hint": "synonyms for average", "clues": ["mean", "median", "middling", "intermediate", "fair", "mediocre", "modal", "ordinary", "medium", "average"]}, {"answer": "averse", "hint": "synonyms for averse", "clues": ["loath", "indisposed", "antipathetic", "averse"]}, {"answer": "avid", "hint": "synonyms for avid", "clues": ["greedy", "zealous", "esurient", "devouring", "avid"]}, {"answer": "awash", "hint": "synonyms for awash", "clues": ["overflowing", "afloat", "inundated", "flooded", "awash"]}, {"answer": "awe-inspiring", "hint": "synonyms for awe-inspiring", "clues": ["amazing", "awing", "awesome", "awful", "awe-inspiring"]}, {"answer": "awesome", "hint": "synonyms for awesome", "clues": ["amazing", "awing", "awful", "awe-inspiring", "awesome"]}, {"answer": "awful", "hint": "synonyms for awful", "clues": ["abominable", "dreaded", "fearful", "awed", "awing", "tremendous", "frightening", "amazing", "terrible", "horrific", "awesome", "dire", "horrendous", "fearsome", "atrocious", "dread", "unspeakable", "painful", "nasty", "direful", "awe-inspiring", "dreadful", "frightful", "awful"]}, {"answer": "awing", "hint": "synonyms for awing", "clues": ["amazing", "awful", "awesome", "awe-inspiring", "awing"]}, {"answer": "awkward", "hint": "synonyms for awkward", "clues": ["ill-chosen", "uneasy", "sticky", "unenviable", "clumsy", "inept", "ill at ease", "inapt", "embarrassing", "bunglesome", "cumbersome", "ungainly", "awkward"]}, {"answer": "awry", "hint": "synonyms for awry", "clues": ["askew", "amiss", "skew-whiff", "wrong", "haywire", "lopsided", "wonky", "cockeyed", "awry"]}, {"answer": "axiomatic", "hint": "synonyms for axiomatic", "clues": ["self-evident", "postulational", "taken for granted", "axiomatical", "aphoristic"]}, {"answer": "bacchanal", "hint": "synonyms for bacchanal", "clues": ["orgiastic", "carousing", "bacchanalian", "bacchic"]}, {"answer": "bacchanalian", "hint": "synonyms for bacchanalian", "clues": ["orgiastic", "carousing", "bacchic", "bacchanal"]}, {"answer": "bacchic", "hint": "synonyms for bacchic", "clues": ["orgiastic", "carousing", "bacchanalian", "bacchic"]}, {"answer": "backbreaking", "hint": "synonyms for backbreaking", "clues": ["laborious", "toilsome", "operose", "grueling", "arduous", "punishing", "hard", "heavy", "backbreaking"]}, {"answer": "bad", "hint": "synonyms for bad", "clues": ["spoilt", "sorry", "high-risk", "spoiled", "big", "defective", "uncollectible", "risky", "unsound", "tough", "unfit", "forged", "speculative", "regretful", "bad"]}, {"answer": "bad-mannered", "hint": "synonyms for bad-mannered", "clues": ["unmannered", "rude", "ill-mannered", "unmannerly", "bad-mannered"]}, {"answer": "bad-tempered", "hint": "synonyms for bad-tempered", "clues": ["cross", "grouchy", "crabbed", "grumpy", "fussy", "ill-tempered", "crabby", "bad-tempered"]}, {"answer": "baffled", "hint": "synonyms for baffled", "clues": ["mazed", "at sea", "lost", "befuddled", "confused", "bewildered", "confounded", "bemused", "mixed-up", "baffled"]}, {"answer": "baffling", "hint": "synonyms for baffling", "clues": ["problematic", "tough", "knotty", "elusive", "baffling"]}, {"answer": "baked", "hint": "synonyms for baked", "clues": ["parched", "sunbaked", "scorched", "adust", "baked"]}, {"answer": "bald", "hint": "synonyms for bald", "clues": ["barefaced", "denudate", "bald-pated", "denuded", "bald-headed", "bald"]}, {"answer": "bald-faced", "hint": "synonyms for bald-faced", "clues": ["brassy", "barefaced", "brazen-faced", "bodacious", "audacious", "insolent", "brazen", "bald-faced"]}, {"answer": "baleful", "hint": "synonyms for baleful", "clues": ["ominous", "sinister", "forbidding", "minacious", "threatening", "minatory", "menacing", "baneful"]}, {"answer": "ball-shaped", "hint": "synonyms for ball-shaped", "clues": ["globose", "spherical", "global", "globular", "orbicular", "ball-shaped"]}, {"answer": "bally", "hint": "synonyms for bally", "clues": ["bloody", "blooming", "flaming", "crashing", "fucking", "blinking", "bally"]}, {"answer": "balmy", "hint": "synonyms for balmy", "clues": ["loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "mild", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "soft", "nutty", "nuts", "batty", "bats", "cracked", "balmy"]}, {"answer": "banal", "hint": "synonyms for banal", "clues": ["old-hat", "timeworn", "trite", "shopworn", "commonplace", "well-worn", "hackneyed", "threadbare", "stock", "tired", "banal"]}, {"answer": "bandy", "hint": "synonyms for bandy", "clues": ["bowleg", "bowed", "bowlegged", "bandy-legged", "bandy"]}, {"answer": "bandy-legged", "hint": "synonyms for bandy-legged", "clues": ["bowleg", "bandy", "bowlegged", "bowed", "bandy-legged"]}, {"answer": "baneful", "hint": "synonyms for baneful", "clues": ["baleful", "deadly", "pernicious", "pestilent"]}, {"answer": "bang-up", "hint": "synonyms for bang-up", "clues": ["smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "groovy", "nifty", "bang-up"]}, {"answer": "banging", "hint": "synonyms for banging", "clues": ["humongous", "thumping", "whopping", "walloping", "banging"]}, {"answer": "bantam", "hint": "synonyms for bantam", "clues": ["lilliputian", "petite", "flyspeck", "diminutive", "midget", "tiny", "bantam"]}, {"answer": "barbarian", "hint": "synonyms for barbarian", "clues": ["wild", "uncivilised", "barbaric", "savage", "barbarian"]}, {"answer": "barbaric", "hint": "synonyms for barbaric", "clues": ["wild", "barbarian", "uncivilised", "savage", "barbaric"]}, {"answer": "barbarous", "hint": "synonyms for barbarous", "clues": ["cruel", "vicious", "savage", "brutal", "roughshod", "fell", "barbarous"]}, {"answer": "barbate", "hint": "synonyms for barbate", "clues": ["bearded", "bewhiskered", "whiskery", "barbate"]}, {"answer": "barbed", "hint": "synonyms for barbed", "clues": ["bristled", "burred", "mordacious", "barbellate", "setaceous", "prickly", "thorny", "biting", "bristly", "setose", "briary", "nipping", "burry", "spiny", "briery", "pungent", "barbed"]}, {"answer": "barbellate", "hint": "synonyms for barbellate", "clues": ["bristly", "barbed", "bristled", "thorny", "burred", "setose", "briary", "setaceous", "prickly", "burry", "spiny", "briery", "barbellate"]}, {"answer": "bare", "hint": "synonyms for bare", "clues": ["unfinished", "mere", "stripped", "barren", "desolate", "marginal", "simple", "unembellished", "unsheathed", "naked", "scanty", "au naturel", "unornamented", "stark", "bleak", "spare", "nude", "plain", "bare"]}, {"answer": "bare-ass", "hint": "synonyms for bare-ass", "clues": ["in the altogether", "in the buff", "peeled", "stark naked", "naked as a jaybird", "raw", "in the raw", "bare-assed"]}, {"answer": "bare-assed", "hint": "synonyms for bare-assed", "clues": ["in the altogether", "in the buff", "peeled", "stark naked", "naked as a jaybird", "raw", "in the raw", "bare-ass"]}, {"answer": "barefaced", "hint": "synonyms for barefaced", "clues": ["bald", "brazen-faced", "audacious", "brazen", "brassy", "bodacious", "bald-faced", "insolent", "barefaced"]}, {"answer": "barmy", "hint": "synonyms for barmy", "clues": ["balmy", "loco", "loony", "yeasty", "haywire", "round the bend", "buggy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "zesty", "zestful", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "barmy"]}, {"answer": "barren", "hint": "synonyms for barren", "clues": ["devoid", "destitute", "free", "desolate", "stark", "bare", "bleak", "innocent", "barren"]}, {"answer": "base", "hint": "synonyms for base", "clues": ["humble", "mean", "baseborn", "basal", "lowly", "meanspirited", "immoral", "base"]}, {"answer": "baseless", "hint": "synonyms for baseless", "clues": ["wild", "groundless", "unfounded", "idle", "unwarranted", "baseless"]}, {"answer": "bastard", "hint": "synonyms for bastard", "clues": ["phony", "fake", "bogus", "bastard"]}, {"answer": "bastardly", "hint": "synonyms for bastardly", "clues": ["misbegotten", "spurious", "misbegot", "mean", "bastardly"]}, {"answer": "bathetic", "hint": "synonyms for bathetic", "clues": ["mushy", "soppy", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "bathetic"]}, {"answer": "bats", "hint": "synonyms for bats", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "cracked", "bats"]}, {"answer": "batty", "hint": "synonyms for batty", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "bats", "cracked", "batty"]}, {"answer": "beady", "hint": "synonyms for beady", "clues": ["gemmed", "buttony", "spangly", "sequined", "beadlike", "buttonlike", "spangled", "jewelled", "beady"]}, {"answer": "beaming", "hint": "synonyms for beaming", "clues": ["refulgent", "radiant", "beamy", "glad", "beaming"]}, {"answer": "beamy", "hint": "synonyms for beamy", "clues": ["refulgent", "radiant", "beaming", "beamy"]}, {"answer": "bearded", "hint": "synonyms for bearded", "clues": ["bewhiskered", "barbate", "whiskery", "bearded"]}, {"answer": "beastly", "hint": "synonyms for beastly", "clues": ["brutish", "brute", "brutal", "god-awful", "bestial", "hellish", "beastly"]}, {"answer": "beatific", "hint": "synonyms for beatific", "clues": ["saintlike", "angelical", "saintly", "sainted", "beatific"]}, {"answer": "becoming", "hint": "synonyms for becoming", "clues": ["seemly", "decent", "comely", "decorous", "comme il faut", "becoming"]}, {"answer": "bedraggled", "hint": "synonyms for bedraggled", "clues": ["dilapidated", "draggled", "tatterdemalion", "derelict", "tumble-down", "ramshackle", "broken-down"]}, {"answer": "beefy", "hint": "synonyms for beefy", "clues": ["strapping", "husky", "burly", "buirdly", "beefy"]}, {"answer": "befuddled", "hint": "synonyms for befuddled", "clues": ["mazed", "at sea", "baffled", "befogged", "lost", "confused", "woolly", "addled", "bewildered", "confounded", "woolly-headed", "bemused", "muzzy", "muddled", "wooly-minded", "mixed-up", "befuddled"]}, {"answer": "begrimed", "hint": "synonyms for begrimed", "clues": ["grubby", "grungy", "raunchy", "grimy", "dingy", "begrimed"]}, {"answer": "beguiled", "hint": "synonyms for beguiled", "clues": ["delighted", "charmed", "captivated", "entranced", "enthralled", "beguiled"]}, {"answer": "belittling", "hint": "synonyms for belittling", "clues": ["depreciative", "deprecating", "slighting", "depreciatory", "belittling"]}, {"answer": "bellied", "hint": "synonyms for bellied", "clues": ["bulging", "bulbous", "bulgy", "protuberant", "bellying", "bellied"]}, {"answer": "belligerent", "hint": "synonyms for belligerent", "clues": ["militant", "warring", "aggressive", "war-ridden", "belligerent"]}, {"answer": "bellying", "hint": "synonyms for bellying", "clues": ["bulging", "bellied", "bulbous", "bulgy", "protuberant", "bellying"]}, {"answer": "bemused", "hint": "synonyms for bemused", "clues": ["mazed", "at sea", "baffled", "lost", "befuddled", "confused", "bewildered", "confounded", "deep in thought", "mixed-up", "preoccupied", "bemused"]}, {"answer": "benevolent", "hint": "synonyms for benevolent", "clues": ["beneficent", "sympathetic", "openhearted", "charitable", "kindly", "good-hearted", "large-hearted", "eleemosynary", "freehearted", "philanthropic", "benevolent"]}, {"answer": "bent", "hint": "synonyms for bent", "clues": ["bended", "bent on", "dead set", "crumpled", "dented", "out to", "bent"]}, {"answer": "bereaved", "hint": "synonyms for bereaved", "clues": ["grieving", "mourning", "bereft", "grief-stricken", "sorrowing", "bereaved"]}, {"answer": "bereft", "hint": "synonyms for bereft", "clues": ["unbeloved", "grieving", "mourning", "lovelorn", "bereaved", "grief-stricken", "sorrowing", "bereft"]}, {"answer": "berserk", "hint": "synonyms for berserk", "clues": ["amuck", "amok", "demoniac", "possessed", "berserk"]}, {"answer": "besotted", "hint": "synonyms for besotted", "clues": ["tight", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "besotted"]}, {"answer": "bespoke", "hint": "synonyms for bespoke", "clues": ["tailor-made", "bespoken", "made-to-order", "tailored"]}, {"answer": "bespoken", "hint": "synonyms for bespoken", "clues": ["bespoke", "tailor-made", "tailored", "made-to-order", "betrothed"]}, {"answer": "best", "hint": "synonyms for best", "clues": ["undecomposed", "good", "safe", "full", "right", "respectable", "effective", "dependable", "ripe", "proficient", "in force", "beneficial", "unspoilt", "in effect", "skilful", "just", "upright", "secure", "sound", "salutary", "expert", "adept", "practiced", "dear", "better", "estimable", "honest", "unspoiled", "honorable", "well", "near", "serious", "best"]}, {"answer": "best-loved", "hint": "synonyms for best-loved", "clues": ["preferent", "favourite", "favored", "preferred", "pet", "best-loved"]}, {"answer": "bestial", "hint": "synonyms for bestial", "clues": ["brutish", "brute", "beastly", "brutal", "bestial"]}, {"answer": "better", "hint": "synonyms for better", "clues": ["undecomposed", "good", "safe", "best", "full", "right", "respectable", "effective", "dependable", "ripe", "proficient", "in force", "beneficial", "unspoilt", "in effect", "skilful", "just", "upright", "secure", "sound", "salutary", "expert", "adept", "practiced", "dear", "honest", "estimable", "unspoiled", "honorable", "well", "near", "serious", "better"]}, {"answer": "better-looking", "hint": "synonyms for better-looking", "clues": ["fine-looking", "good-looking", "well-favoured", "handsome", "better-looking"]}, {"answer": "bewhiskered", "hint": "synonyms for bewhiskered", "clues": ["bearded", "barbate", "whiskered", "whiskery"]}, {"answer": "bewildered", "hint": "synonyms for bewildered", "clues": ["mazed", "at sea", "baffled", "lost", "befuddled", "confused", "confounded", "bemused", "mixed-up", "bewildered"]}, {"answer": "bewitching", "hint": "synonyms for bewitching", "clues": ["enthralling", "captivating", "entrancing", "enchanting", "fascinating", "bewitching"]}, {"answer": "biased", "hint": "synonyms for biased", "clues": ["one-sided", "coloured", "slanted", "biased"]}, {"answer": "bichrome", "hint": "synonyms for bichrome", "clues": ["bicolour", "bicolored", "dichromatic", "bichrome"]}, {"answer": "bicolor", "hint": "synonyms for bicolor", "clues": ["bicolour", "bichrome", "bicolored", "dichromatic"]}, {"answer": "bicolored", "hint": "synonyms for bicolored", "clues": ["bicolour", "bichrome", "dichromatic", "bicolored"]}, {"answer": "bicolour", "hint": "synonyms for bicolour", "clues": ["bichrome", "bicoloured", "bicolor", "dichromatic"]}, {"answer": "bicoloured", "hint": "synonyms for bicoloured", "clues": ["bicolour", "bichrome", "bicolored", "dichromatic"]}, {"answer": "bifurcate", "hint": "synonyms for bifurcate", "clues": ["branched", "biramous", "fork-like", "forked", "prongy", "forficate", "pronged", "bifurcate"]}, {"answer": "big", "hint": "synonyms for big", "clues": ["bounteous", "cock-a-hoop", "liberal", "braggart", "handsome", "magnanimous", "bighearted", "enceinte", "openhanded", "self-aggrandizing", "braggy", "gravid", "bragging", "vainglorious", "large", "boastful", "heavy", "grown", "expectant", "adult", "freehanded", "with child", "crowing", "fully grown", "great", "bad", "swelled", "bountiful", "prominent", "grownup", "giving", "big"]}, {"answer": "bigger", "hint": "synonyms for bigger", "clues": ["bounteous", "magnanimous", "openhanded", "self-aggrandizing", "bragging", "large", "boastful", "grown", "adult", "with child", "great", "fully grown", "big", "swelled", "prominent", "grownup", "giving", "cock-a-hoop", "liberal", "braggart", "handsome", "bighearted", "enceinte", "braggy", "gravid", "vainglorious", "heavy", "expectant", "freehanded", "crowing", "bad", "bountiful", "bigger"]}, {"answer": "bigheaded", "hint": "synonyms for bigheaded", "clues": ["snooty", "snotty", "persnickety", "too big for one's breeches", "uppish", "snot-nosed", "stuck-up", "bigheaded"]}, {"answer": "bighearted", "hint": "synonyms for bighearted", "clues": ["bounteous", "liberal", "freehanded", "handsome", "big", "bountiful", "openhanded", "giving", "bighearted"]}, {"answer": "bilaterally_symmetrical", "hint": "synonyms for bilaterally symmetrical", "clues": ["bilateral", "zygomorphic", "bilaterally symmetric", "zygomorphous"]}, {"answer": "bilious", "hint": "synonyms for bilious", "clues": ["dyspeptic", "livery", "biliary", "atrabilious", "liverish", "bilious"]}, {"answer": "biramous", "hint": "synonyms for biramous", "clues": ["branched", "fork-like", "forked", "prongy", "bifurcate", "forficate", "pronged", "biramous"]}, {"answer": "bit-by-bit", "hint": "synonyms for bit-by-bit", "clues": ["step-by-step", "in small stages", "stepwise", "piecemeal", "bit-by-bit"]}, {"answer": "biting", "hint": "synonyms for biting", "clues": ["barbed", "nipping", "bitter", "mordacious", "pungent", "biting"]}, {"answer": "bitter", "hint": "synonyms for bitter", "clues": ["acrid", "sulphurous", "biting", "acerbic", "blistering", "vitriolic", "virulent", "caustic", "sulfurous", "acrimonious", "acerb", "bitter"]}, {"answer": "bittie", "hint": "synonyms for bittie", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "teeny", "itty-bitty", "wee", "bittie"]}, {"answer": "bitty", "hint": "synonyms for bitty", "clues": ["teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee", "bitty"]}, {"answer": "biyearly", "hint": "synonyms for biyearly", "clues": ["semiannual", "half-yearly", "biennial", "biannual", "biyearly"]}, {"answer": "bizarre", "hint": "synonyms for bizarre", "clues": ["flaky", "freakish", "gonzo", "outlandish", "freaky", "outre", "off-the-wall", "eccentric", "bizarre"]}, {"answer": "blabbermouthed", "hint": "synonyms for blabbermouthed", "clues": ["blabby", "tattling", "bigmouthed", "talkative", "talebearing", "leaky", "blabbermouthed"]}, {"answer": "black", "hint": "synonyms for black", "clues": ["ignominious", "smuggled", "sinister", "opprobrious", "disastrous", "inglorious", "calamitous", "dark", "mordant", "pitch-black", "fateful", "bootleg", "grim", "dim", "smutty", "pitch-dark", "fatal", "disgraceful", "shameful", "bleak", "blackened", "black-market", "contraband", "black"]}, {"answer": "black-market", "hint": "synonyms for black-market", "clues": ["smuggled", "bootleg", "black", "contraband", "black-market"]}, {"answer": "blamable", "hint": "synonyms for blamable", "clues": ["blameworthy", "blameful", "blameable", "culpable", "censurable"]}, {"answer": "blame", "hint": "synonyms for blame", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "darned", "damn"]}, {"answer": "blameable", "hint": "synonyms for blameable", "clues": ["blameful", "blameworthy", "blamable", "culpable", "censurable"]}, {"answer": "blamed", "hint": "synonyms for blamed", "clues": ["damned", "blasted", "infernal", "deuced", "blessed", "goddamned", "goddam", "darned", "blame", "damn"]}, {"answer": "blameful", "hint": "synonyms for blameful", "clues": ["blameworthy", "blameable", "culpable", "censurable", "blameful"]}, {"answer": "blameworthy", "hint": "synonyms for blameworthy", "clues": ["blameful", "blameable", "culpable", "censurable", "blameworthy"]}, {"answer": "blanched", "hint": "synonyms for blanched", "clues": ["etiolated", "white", "ashen", "livid", "bloodless", "blanched"]}, {"answer": "bland", "hint": "synonyms for bland", "clues": ["vapid", "flavourless", "politic", "savorless", "flat", "insipid", "suave", "smooth", "bland"]}, {"answer": "blanket", "hint": "synonyms for blanket", "clues": ["all-embracing", "across-the-board", "all-inclusive", "extensive", "panoptic", "wide", "encompassing", "broad", "blanket"]}, {"answer": "blasted", "hint": "synonyms for blasted", "clues": ["damned", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "darned", "damn", "blasted"]}, {"answer": "blatant", "hint": "synonyms for blatant", "clues": ["vociferous", "blazing", "conspicuous", "strident", "clamant", "clamorous", "blatant"]}, {"answer": "blazing", "hint": "synonyms for blazing", "clues": ["glaring", "glary", "fulgent", "blatant", "conspicuous", "dazzling", "blinding", "blazing"]}, {"answer": "bleached", "hint": "synonyms for bleached", "clues": ["washed-out", "coloured", "faded", "dyed", "washy", "bleached"]}, {"answer": "bleak", "hint": "synonyms for bleak", "clues": ["stark", "bare", "dim", "black", "barren", "raw", "desolate", "cutting", "bleak"]}, {"answer": "bleary", "hint": "synonyms for bleary", "clues": ["blurred", "muzzy", "blear", "foggy", "blurry", "fuzzy", "blear-eyed", "hazy"]}, {"answer": "blessed", "hint": "synonyms for blessed", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "goddamned", "goddam", "darned", "beatified", "blest", "damn", "blessed"]}, {"answer": "blind_drunk", "hint": "synonyms for blind drunk", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "loaded", "pixilated", "pissed", "stiff", "blind drunk"]}, {"answer": "blinding", "hint": "synonyms for blinding", "clues": ["glaring", "blazing", "fulgent", "glary", "dazzling", "blinding"]}, {"answer": "blinking", "hint": "synonyms for blinking", "clues": ["bloody", "winking", "blooming", "bally", "flaming", "crashing", "fucking", "blinking"]}, {"answer": "blistering", "hint": "synonyms for blistering", "clues": ["acrid", "sulphurous", "acerb", "red-hot", "virulent", "caustic", "hot", "bitter", "blistery", "sulfurous", "vitriolic", "acerbic", "blistering"]}, {"answer": "blithe", "hint": "synonyms for blithe", "clues": ["light-hearted", "blithesome", "lightsome", "blithe"]}, {"answer": "blithesome", "hint": "synonyms for blithesome", "clues": ["light-hearted", "lightsome", "blithe", "blithesome"]}, {"answer": "blockheaded", "hint": "synonyms for blockheaded", "clues": ["boneheaded", "duncish", "wooden-headed", "thick-skulled", "thick", "fatheaded", "thickheaded", "duncical", "loggerheaded", "blockheaded"]}, {"answer": "blood-red", "hint": "synonyms for blood-red", "clues": ["cherry", "red", "crimson", "ruby", "reddish", "cerise", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy", "blood-red"]}, {"answer": "blood-related", "hint": "synonyms for blood-related", "clues": ["consanguineal", "consanguineous", "akin", "cognate", "blood-related"]}, {"answer": "bloodless", "hint": "synonyms for bloodless", "clues": ["white", "ashen", "livid", "blanched", "exsanguinous", "exsanguine", "bloodless"]}, {"answer": "bloody", "hint": "synonyms for bloody", "clues": ["blooming", "bally", "flaming", "crashing", "fucking", "blinking", "bloody"]}, {"answer": "blooming", "hint": "synonyms for blooming", "clues": ["bloody", "bally", "flaming", "crashing", "fucking", "blinking", "blooming"]}, {"answer": "blotto", "hint": "synonyms for blotto", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "blotto"]}, {"answer": "blue", "hint": "synonyms for blue", "clues": ["sorry", "puritanic", "dispirited", "depressed", "down", "low-spirited", "downcast", "gamey", "dark", "downhearted", "dingy", "dismal", "gentle", "grim", "disconsolate", "down in the mouth", "low", "dreary", "risque", "spicy", "blueish", "drab", "blasphemous", "blue-blooded", "patrician", "profane", "naughty", "aristocratical", "racy", "juicy", "gloomy", "blue"]}, {"answer": "blue-blooded", "hint": "synonyms for blue-blooded", "clues": ["blue", "gentle", "aristocratical", "patrician", "blue-blooded"]}, {"answer": "blunt", "hint": "synonyms for blunt", "clues": ["outspoken", "candid", "frank", "crude", "plainspoken", "free-spoken", "stark", "straight-from-the-shoulder", "forthright", "point-blank", "blunt"]}, {"answer": "blurred", "hint": "synonyms for blurred", "clues": ["bleary", "fuzzy", "clouded", "muzzy", "hazy", "foggy", "blurry", "blurred"]}, {"answer": "blurry", "hint": "synonyms for blurry", "clues": ["bleary", "blurred", "fuzzy", "muzzy", "hazy", "foggy", "blurry"]}, {"answer": "boastful", "hint": "synonyms for boastful", "clues": ["cock-a-hoop", "braggart", "crowing", "big", "self-aggrandizing", "braggy", "bragging", "boastful"]}, {"answer": "bodacious", "hint": "synonyms for bodacious", "clues": ["brassy", "barefaced", "brazen-faced", "bald-faced", "audacious", "insolent", "brazen", "bodacious"]}, {"answer": "bodied", "hint": "synonyms for bodied", "clues": ["corporal", "incarnate", "corporate", "embodied"]}, {"answer": "bodiless", "hint": "synonyms for bodiless", "clues": ["disembodied", "unbodied", "bodyless", "discorporate"]}, {"answer": "boggy", "hint": "synonyms for boggy", "clues": ["swampy", "miry", "sloppy", "marshy", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "mucky", "squashy", "boggy"]}, {"answer": "bogus", "hint": "synonyms for bogus", "clues": ["bastard", "phony", "fake", "bogus"]}, {"answer": "boisterous", "hint": "synonyms for boisterous", "clues": ["rambunctious", "robustious", "rough", "fierce", "knockabout", "unruly", "boisterous"]}, {"answer": "bombastic", "hint": "synonyms for bombastic", "clues": ["orotund", "large", "declamatory", "tumid", "turgid", "bombastic"]}, {"answer": "boneheaded", "hint": "synonyms for boneheaded", "clues": ["duncish", "wooden-headed", "thick-skulled", "thick", "fatheaded", "thickheaded", "duncical", "loggerheaded", "blockheaded", "boneheaded"]}, {"answer": "boney", "hint": "synonyms for boney", "clues": ["weedy", "scraggy", "bony", "scrawny", "underweight", "skinny"]}, {"answer": "bonkers", "hint": "synonyms for bonkers", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "kookie", "whacky", "nutty", "nuts", "batty", "bats", "cracked", "bonkers"]}, {"answer": "bonnie", "hint": "synonyms for bonnie", "clues": ["sightly", "bonny", "fair", "comely", "bonnie"]}, {"answer": "bonny", "hint": "synonyms for bonny", "clues": ["sightly", "fair", "bonnie", "comely", "bonny"]}, {"answer": "bony", "hint": "synonyms for bony", "clues": ["osteal", "skeletal", "osseous", "gaunt", "pinched", "emaciated", "wasted", "haggard", "boney", "cadaverous"]}, {"answer": "booming", "hint": "synonyms for booming", "clues": ["thriving", "prospering", "flourishing", "stentorian", "prosperous", "roaring", "palmy", "booming"]}, {"answer": "boorish", "hint": "synonyms for boorish", "clues": ["oafish", "neandertal", "swinish", "loutish", "boorish"]}, {"answer": "bootleg", "hint": "synonyms for bootleg", "clues": ["smuggled", "black-market", "black", "contraband", "bootleg"]}, {"answer": "bootless", "hint": "synonyms for bootless", "clues": ["fruitless", "futile", "sleeveless", "vain", "bootless"]}, {"answer": "bootlicking", "hint": "synonyms for bootlicking", "clues": ["toadyish", "fawning", "sycophantic", "obsequious", "bootlicking"]}, {"answer": "boring", "hint": "synonyms for boring", "clues": ["irksome", "tedious", "tiresome", "dull", "wearisome", "ho-hum", "deadening", "slow", "boring"]}, {"answer": "bosomy", "hint": "synonyms for bosomy", "clues": ["stacked", "well-endowed", "busty", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "bosomy"]}, {"answer": "bossy", "hint": "synonyms for bossy", "clues": ["dominating", "magisterial", "high-and-mighty", "peremptory", "autocratic", "bossy"]}, {"answer": "bothersome", "hint": "synonyms for bothersome", "clues": ["nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "pesky", "irritating", "vexatious", "pestering", "pestiferous", "bothersome"]}, {"answer": "bouncing", "hint": "synonyms for bouncing", "clues": ["zippy", "spirited", "peppy", "bouncy", "bouncing"]}, {"answer": "bouncy", "hint": "synonyms for bouncy", "clues": ["resilient", "live", "springy", "zippy", "peppy", "bouncing", "spirited", "bouncy"]}, {"answer": "bound", "hint": "synonyms for bound", "clues": ["indentured", "articled", "destined", "bandaged", "apprenticed", "bound"]}, {"answer": "bounderish", "hint": "synonyms for bounderish", "clues": ["yokelish", "ill-bred", "rude", "underbred", "lowbred", "bounderish"]}, {"answer": "bounteous", "hint": "synonyms for bounteous", "clues": ["liberal", "freehanded", "handsome", "bighearted", "big", "bountiful", "openhanded", "giving", "bounteous"]}, {"answer": "bountiful", "hint": "synonyms for bountiful", "clues": ["bounteous", "liberal", "freehanded", "handsome", "bighearted", "big", "openhanded", "giving", "plentiful", "bountiful"]}, {"answer": "bowed", "hint": "synonyms for bowed", "clues": ["bowleg", "arched", "bandy", "bandy-legged", "bowlegged", "bowing", "arching", "arcuate", "arciform", "bowed"]}, {"answer": "bowleg", "hint": "synonyms for bowleg", "clues": ["bandy", "bowlegged", "bandy-legged", "bowed", "bowleg"]}, {"answer": "bowlegged", "hint": "synonyms for bowlegged", "clues": ["bowleg", "bandy", "bandy-legged", "bowed", "bowlegged"]}, {"answer": "bracing", "hint": "synonyms for bracing", "clues": ["brisk", "tonic", "fresh", "refreshing", "refreshful", "bracing"]}, {"answer": "braggart", "hint": "synonyms for braggart", "clues": ["cock-a-hoop", "crowing", "big", "self-aggrandizing", "braggy", "bragging", "boastful", "braggart"]}, {"answer": "bragging", "hint": "synonyms for bragging", "clues": ["cock-a-hoop", "braggart", "crowing", "big", "self-aggrandizing", "braggy", "boastful", "bragging"]}, {"answer": "braggy", "hint": "synonyms for braggy", "clues": ["cock-a-hoop", "braggart", "crowing", "big", "self-aggrandizing", "bragging", "boastful", "braggy"]}, {"answer": "brainish", "hint": "synonyms for brainish", "clues": ["tearaway", "impetuous", "impulsive", "hotheaded", "madcap", "brainish"]}, {"answer": "brainsick", "hint": "synonyms for brainsick", "clues": ["mad", "disturbed", "unbalanced", "sick", "demented", "unhinged", "crazy", "brainsick"]}, {"answer": "branched", "hint": "synonyms for branched", "clues": ["branching", "biramous", "fork-like", "bifurcate", "forficate", "pronged", "ramate", "forked", "prongy", "ramose", "branched"]}, {"answer": "branching", "hint": "synonyms for branching", "clues": ["branched", "ramous", "ramose", "ramate", "branching"]}, {"answer": "brassy", "hint": "synonyms for brassy", "clues": ["gimcrack", "tatty", "tawdry", "brazen", "bald-faced", "tacky", "trashy", "insolent", "audacious", "flashy", "gaudy", "brazen-faced", "loud", "brasslike", "barefaced", "bodacious", "meretricious", "cheap", "garish", "brassy"]}, {"answer": "brave", "hint": "synonyms for brave", "clues": ["dauntless", "braw", "fearless", "hardy", "courageous", "gay", "unfearing", "audacious", "intrepid", "brave"]}, {"answer": "brawny", "hint": "synonyms for brawny", "clues": ["muscular", "powerful", "hefty", "sinewy", "brawny"]}, {"answer": "brazen", "hint": "synonyms for brazen", "clues": ["brassy", "barefaced", "brazen-faced", "bodacious", "bald-faced", "audacious", "insolent", "brazen"]}, {"answer": "brazen-faced", "hint": "synonyms for brazen-faced", "clues": ["brassy", "barefaced", "bodacious", "bald-faced", "audacious", "insolent", "brazen", "brazen-faced"]}, {"answer": "breathless", "hint": "synonyms for breathless", "clues": ["pulseless", "breathtaking", "dyspnoeal", "dyspneic", "inanimate", "breathless"]}, {"answer": "briary", "hint": "synonyms for briary", "clues": ["bristly", "barbed", "bristled", "thorny", "burred", "setose", "barbellate", "setaceous", "prickly", "burry", "spiny", "briery", "briary"]}, {"answer": "bribable", "hint": "synonyms for bribable", "clues": ["corruptible", "purchasable", "venal", "dishonest", "bribable"]}, {"answer": "briery", "hint": "synonyms for briery", "clues": ["bristly", "barbed", "bristled", "burred", "setose", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "thorny", "briery"]}, {"answer": "bright", "hint": "synonyms for bright", "clues": ["burnished", "shiny", "brilliant", "smart", "promising", "undimmed", "hopeful", "shining", "lustrous", "vivid", "bright"]}, {"answer": "brilliant", "hint": "synonyms for brilliant", "clues": ["magnificent", "smart as a whip", "brainy", "superb", "bright", "splendid", "glorious", "vivid", "brilliant"]}, {"answer": "brisk", "hint": "synonyms for brisk", "clues": ["refreshful", "zippy", "snappy", "lively", "rattling", "tonic", "fresh", "refreshing", "spanking", "alert", "bracing", "merry", "brisk"]}, {"answer": "bristled", "hint": "synonyms for bristled", "clues": ["bristly", "barbed", "thorny", "burred", "setose", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "briery", "bristled"]}, {"answer": "bristly", "hint": "synonyms for bristly", "clues": ["barbed", "bristled", "burred", "setose", "briery", "splenetic", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "thorny", "waspish", "bristly"]}, {"answer": "broad", "hint": "synonyms for broad", "clues": ["all-embracing", "across-the-board", "full", "all-inclusive", "extensive", "unspecific", "panoptic", "spacious", "liberal", "wide", "tolerant", "encompassing", "large-minded", "blanket", "unsubtle", "broad"]}, {"answer": "broke", "hint": "synonyms for broke", "clues": ["stony-broke", "bust", "skint", "broke"]}, {"answer": "broken", "hint": "synonyms for broken", "clues": ["wiped out", "impoverished", "humbled", "low", "rugged", "confused", "busted", "broken in", "humiliated", "disordered", "crushed", "upset", "unkept", "broken"]}, {"answer": "broken-down", "hint": "synonyms for broken-down", "clues": ["dilapidated", "tatterdemalion", "derelict", "tumble-down", "ramshackle", "bedraggled", "broken-down"]}, {"answer": "brooding", "hint": "synonyms for brooding", "clues": ["pondering", "musing", "broody", "contemplative", "reflective", "meditative", "pensive", "ruminative", "brooding"]}, {"answer": "broody", "hint": "synonyms for broody", "clues": ["pondering", "musing", "contemplative", "reflective", "meditative", "pensive", "ruminative", "brooding", "broody"]}, {"answer": "brown", "hint": "synonyms for brown", "clues": ["brownish", "dark-brown", "browned", "chocolate-brown", "brown"]}, {"answer": "brutal", "hint": "synonyms for brutal", "clues": ["brutish", "vicious", "unrelenting", "savage", "roughshod", "fell", "beastly", "cruel", "barbarous", "brute", "bestial", "brutal"]}, {"answer": "brute", "hint": "synonyms for brute", "clues": ["brutish", "beastly", "brutal", "bestial", "brute"]}, {"answer": "brutish", "hint": "synonyms for brutish", "clues": ["brute", "beastly", "brutal", "bestial", "brutish"]}, {"answer": "bubbling", "hint": "synonyms for bubbling", "clues": ["sparkly", "spumy", "bubbly", "foaming", "frothy", "effervescent", "effervescing", "scintillating", "foamy", "bubbling"]}, {"answer": "bubbly", "hint": "synonyms for bubbly", "clues": ["frothy", "effervescing", "bubbling", "spumy", "foamy", "foaming", "bubbly"]}, {"answer": "buffeted", "hint": "synonyms for buffeted", "clues": ["storm-tossed", "tempest-tost", "tempest-swept", "tempest-tossed", "buffeted"]}, {"answer": "buggy", "hint": "synonyms for buggy", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "buggy"]}, {"answer": "built-in", "hint": "synonyms for built-in", "clues": ["constitutional", "integral", "inbuilt", "inherent", "built-in"]}, {"answer": "buirdly", "hint": "synonyms for buirdly", "clues": ["strapping", "husky", "burly", "beefy", "buirdly"]}, {"answer": "bulbous", "hint": "synonyms for bulbous", "clues": ["bulblike", "bulb-shaped", "bulging", "bellied", "bulgy", "protuberant", "bellying", "bulbous"]}, {"answer": "bulging", "hint": "synonyms for bulging", "clues": ["bellied", "bulbous", "bulgy", "protuberant", "convex", "bellying", "bulging"]}, {"answer": "bulgy", "hint": "synonyms for bulgy", "clues": ["bulging", "bellied", "bulbous", "protuberant", "bellying", "bulgy"]}, {"answer": "bully", "hint": "synonyms for bully", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "swell", "not bad", "peachy", "groovy", "nifty", "bully"]}, {"answer": "bum", "hint": "synonyms for bum", "clues": ["crummy", "cheesy", "sleazy", "tinny", "punk", "cheap", "chintzy", "bum"]}, {"answer": "bumbling", "hint": "synonyms for bumbling", "clues": ["ham-fisted", "heavy-handed", "butterfingered", "left-handed", "handless", "ham-handed", "bungling", "bumbling"]}, {"answer": "bumpy", "hint": "synonyms for bumpy", "clues": ["jumpy", "rough", "jolty", "jolting", "rocky", "bumpy"]}, {"answer": "bungling", "hint": "synonyms for bungling", "clues": ["ham-fisted", "heavy-handed", "left-handed", "handless", "clumsy", "incompetent", "butterfingered", "bumbling", "ham-handed", "bungling"]}, {"answer": "burly", "hint": "synonyms for burly", "clues": ["strapping", "husky", "buirdly", "beefy", "burly"]}, {"answer": "burned", "hint": "synonyms for burned", "clues": ["burned-out", "burned-over", "burnt-out", "burnt", "burned"]}, {"answer": "burned-out", "hint": "synonyms for burned-out", "clues": ["burned", "burned-over", "burnt-out", "burnt", "burned-out"]}, {"answer": "burned-over", "hint": "synonyms for burned-over", "clues": ["burned", "burnt", "burnt-out", "burned-out", "burned-over"]}, {"answer": "burnished", "hint": "synonyms for burnished", "clues": ["shiny", "shining", "lustrous", "bright", "burnished"]}, {"answer": "burnt", "hint": "synonyms for burnt", "clues": ["burned", "burned-over", "burnt-out", "burned-out", "burnt"]}, {"answer": "burnt-out", "hint": "synonyms for burnt-out", "clues": ["burned", "burned-over", "burnt", "burned-out", "burnt-out"]}, {"answer": "burred", "hint": "synonyms for burred", "clues": ["bristly", "barbed", "bristled", "thorny", "setose", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "briery", "burred"]}, {"answer": "burry", "hint": "synonyms for burry", "clues": ["bristly", "barbed", "bristled", "thorny", "burred", "setose", "briary", "barbellate", "setaceous", "prickly", "spiny", "briery", "burry"]}, {"answer": "bust", "hint": "synonyms for bust", "clues": ["broke", "stony-broke", "skint", "bust"]}, {"answer": "busty", "hint": "synonyms for busty", "clues": ["stacked", "bosomy", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "busty"]}, {"answer": "busy", "hint": "synonyms for busy", "clues": ["busybodied", "engaged", "fussy", "interfering", "meddling", "meddlesome", "in use", "officious", "busy"]}, {"answer": "busybodied", "hint": "synonyms for busybodied", "clues": ["interfering", "meddling", "meddlesome", "busy", "officious", "busybodied"]}, {"answer": "butcherly", "hint": "synonyms for butcherly", "clues": ["botchy", "unskillful", "sanguineous", "gory", "sanguinary", "slaughterous", "butcherly"]}, {"answer": "butterfingered", "hint": "synonyms for butterfingered", "clues": ["ham-fisted", "heavy-handed", "bumbling", "left-handed", "handless", "ham-handed", "bungling", "butterfingered"]}, {"answer": "buttery", "hint": "synonyms for buttery", "clues": ["oleaginous", "oily", "fulsome", "smarmy", "soapy", "unctuous", "buttery"]}, {"answer": "buxom", "hint": "synonyms for buxom", "clues": ["stacked", "bosomy", "busty", "well-endowed", "sonsy", "zaftig", "voluptuous", "curvy", "curvaceous", "zoftig", "sonsie", "full-bosomed", "buxom"]}, {"answer": "bygone", "hint": "synonyms for bygone", "clues": ["bypast", "foregone", "gone", "departed", "bygone"]}, {"answer": "bypast", "hint": "synonyms for bypast", "clues": ["bygone", "foregone", "gone", "departed", "bypast"]}, {"answer": "byzantine", "hint": "synonyms for byzantine", "clues": ["tortuous", "convoluted", "tangled", "involved", "knotty", "byzantine"]}, {"answer": "cadaverous", "hint": "synonyms for cadaverous", "clues": ["wasted", "cadaveric", "haggard", "skeletal", "bony", "gaunt", "pinched", "emaciated", "cadaverous"]}, {"answer": "cagey", "hint": "synonyms for cagey", "clues": ["clever", "canny", "chary", "cagy"]}, {"answer": "cagy", "hint": "synonyms for cagy", "clues": ["clever", "cagey", "canny", "chary"]}, {"answer": "calamitous", "hint": "synonyms for calamitous", "clues": ["fateful", "disastrous", "black", "fatal", "calamitous"]}, {"answer": "calculating", "hint": "synonyms for calculating", "clues": ["conniving", "calculative", "scheming", "shrewd", "calculating"]}, {"answer": "calculative", "hint": "synonyms for calculative", "clues": ["conniving", "calculating", "scheming", "shrewd", "calculative"]}, {"answer": "calico", "hint": "synonyms for calico", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "piebald", "motley", "calico"]}, {"answer": "callous", "hint": "synonyms for callous", "clues": ["calloused", "indurate", "thickened", "pachydermatous"]}, {"answer": "calumniatory", "hint": "synonyms for calumniatory", "clues": ["libellous", "denigrative", "calumnious", "slanderous", "denigrating", "defamatory", "denigratory", "calumniatory"]}, {"answer": "calumnious", "hint": "synonyms for calumnious", "clues": ["libellous", "denigrative", "slanderous", "denigrating", "calumniatory", "defamatory", "denigratory", "calumnious"]}, {"answer": "candid", "hint": "synonyms for candid", "clues": ["outspoken", "frank", "heart-to-heart", "plainspoken", "free-spoken", "straight-from-the-shoulder", "blunt", "forthright", "open", "point-blank", "candid"]}, {"answer": "candied", "hint": "synonyms for candied", "clues": ["crystalised", "glace", "sugar-coated", "candied"]}, {"answer": "cannular", "hint": "synonyms for cannular", "clues": ["tube-shaped", "tubular", "tubelike", "vasiform", "cannular"]}, {"answer": "canted", "hint": "synonyms for canted", "clues": ["atilt", "leaning", "tilted", "tipped", "canted"]}, {"answer": "capable", "hint": "synonyms for capable", "clues": ["adequate to", "equal to", "able", "open", "up to", "subject", "capable"]}, {"answer": "captivated", "hint": "synonyms for captivated", "clues": ["delighted", "charmed", "entranced", "enthralled", "beguiled", "captivated"]}, {"answer": "captivating", "hint": "synonyms for captivating", "clues": ["enthralling", "bewitching", "entrancing", "enchanting", "fascinating", "captivating"]}, {"answer": "captive", "hint": "synonyms for captive", "clues": ["absorbed", "engrossed", "imprisoned", "confined", "jailed", "intent", "enwrapped", "captive"]}, {"answer": "cardinal", "hint": "synonyms for cardinal", "clues": ["fundamental", "primal", "key", "central", "cardinal"]}, {"answer": "carefree", "hint": "synonyms for carefree", "clues": ["slaphappy", "harum-scarum", "freewheeling", "happy-go-lucky", "unworried", "devil-may-care", "carefree"]}, {"answer": "careful", "hint": "synonyms for careful", "clues": ["thrifty", "heedful", "deliberate", "measured", "careful"]}, {"answer": "careworn", "hint": "synonyms for careworn", "clues": ["drawn", "worn", "raddled", "haggard", "careworn"]}, {"answer": "carmine", "hint": "synonyms for carmine", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "reddish", "cerise", "ruby-red", "cherry-red", "scarlet", "ruddy", "carmine"]}, {"answer": "carousing", "hint": "synonyms for carousing", "clues": ["orgiastic", "bacchanalian", "bacchic", "carousing"]}, {"answer": "casual", "hint": "synonyms for casual", "clues": ["nonchalant", "cursory", "occasional", "free-and-easy", "passing", "daily", "everyday", "effortless", "chance", "perfunctory", "fooling", "insouciant", "casual"]}, {"answer": "cata-cornered", "hint": "synonyms for cata-cornered", "clues": ["catercorner", "kitty-cornered", "catty-corner", "cata-cornered"]}, {"answer": "catacorner", "hint": "synonyms for catacorner", "clues": ["catercorner", "kitty-cornered", "catty-corner", "cata-cornered"]}, {"answer": "catching", "hint": "synonyms for catching", "clues": ["transmittable", "contractable", "communicable", "contagious", "transmissible", "catching"]}, {"answer": "cater-cornered", "hint": "synonyms for cater-cornered", "clues": ["catercorner", "kitty-cornered", "catty-corner", "cata-cornered"]}, {"answer": "catercorner", "hint": "synonyms for catercorner", "clues": ["kitty-cornered", "catty-corner", "cater-cornered", "catacorner"]}, {"answer": "cathartic", "hint": "synonyms for cathartic", "clues": ["releasing", "psychotherapeutic", "evacuant", "purgative", "cathartic"]}, {"answer": "catty-corner", "hint": "synonyms for catty-corner", "clues": ["catercorner", "kitty-cornered", "cata-cornered", "catty-corner"]}, {"answer": "catty-cornered", "hint": "synonyms for catty-cornered", "clues": ["catercorner", "kitty-cornered", "catty-corner", "cata-cornered"]}, {"answer": "caustic", "hint": "synonyms for caustic", "clues": ["acrid", "sulphurous", "acerb", "erosive", "blistering", "virulent", "mordant", "bitter", "sulfurous", "vitriolic", "acerbic", "corrosive", "caustic"]}, {"answer": "cautionary", "hint": "synonyms for cautionary", "clues": ["warning", "monitory", "prophylactic", "exemplary", "cautionary"]}, {"answer": "cavitied", "hint": "synonyms for cavitied", "clues": ["faveolate", "honeycombed", "pitted", "cavitied"]}, {"answer": "ceaseless", "hint": "synonyms for ceaseless", "clues": ["constant", "unceasing", "unremitting", "perpetual", "incessant", "never-ending", "ceaseless"]}, {"answer": "celebrated", "hint": "synonyms for celebrated", "clues": ["famed", "illustrious", "storied", "far-famed", "notable", "famous", "noted", "renowned", "celebrated"]}, {"answer": "censurable", "hint": "synonyms for censurable", "clues": ["blameworthy", "blameful", "blameable", "culpable", "censurable"]}, {"answer": "central", "hint": "synonyms for central", "clues": ["fundamental", "primal", "key", "cardinal", "central"]}, {"answer": "cerise", "hint": "synonyms for cerise", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "reddish", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy", "cerise"]}, {"answer": "cernuous", "hint": "synonyms for cernuous", "clues": ["weeping", "drooping", "pendulous", "nodding", "cernuous"]}, {"answer": "chancy", "hint": "synonyms for chancy", "clues": ["dodgy", "fluky", "dicey", "iffy", "chanceful", "chancy"]}, {"answer": "changeable", "hint": "synonyms for changeable", "clues": ["uncertain", "unsettled", "shot", "mutable", "changeful", "iridescent", "chatoyant", "changeable"]}, {"answer": "changeless", "hint": "synonyms for changeless", "clues": ["invariant", "constant", "unvarying", "unalterable", "immutable", "changeless"]}, {"answer": "charitable", "hint": "synonyms for charitable", "clues": ["benevolent", "good-hearted", "large-hearted", "sympathetic", "openhearted", "kindly", "charitable"]}, {"answer": "charmed", "hint": "synonyms for charmed", "clues": ["delighted", "captivated", "entranced", "enthralled", "beguiled", "charmed"]}, {"answer": "charming", "hint": "synonyms for charming", "clues": ["sorcerous", "witching", "wizardly", "magic", "magical", "charming"]}, {"answer": "chatty", "hint": "synonyms for chatty", "clues": ["gossipy", "loquacious", "newsy", "gabby", "talky", "talkative", "garrulous", "chatty"]}, {"answer": "chauvinistic", "hint": "synonyms for chauvinistic", "clues": ["superpatriotic", "jingoistic", "nationalistic", "ultranationalistic", "flag-waving", "chauvinistic"]}, {"answer": "cheap", "hint": "synonyms for cheap", "clues": ["crummy", "gimcrack", "sleazy", "tatty", "punk", "tawdry", "brassy", "cheesy", "tacky", "trashy", "inexpensive", "tinny", "flashy", "gaudy", "chinchy", "loud", "bum", "chintzy", "meretricious", "garish", "cheap"]}, {"answer": "cheating", "hint": "synonyms for cheating", "clues": ["two-timing", "adulterous", "dirty", "foul", "unsporting", "unsportsmanlike", "cheating"]}, {"answer": "cheeseparing", "hint": "synonyms for cheeseparing", "clues": ["penny-pinching", "near", "close", "skinny", "cheeseparing"]}, {"answer": "cheesy", "hint": "synonyms for cheesy", "clues": ["crummy", "bum", "sleazy", "tinny", "punk", "cheap", "chintzy", "cheesy"]}, {"answer": "cherry", "hint": "synonyms for cherry", "clues": ["blood-red", "crimson", "red", "ruby", "reddish", "cerise", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy", "cherry"]}, {"answer": "cherry-red", "hint": "synonyms for cherry-red", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "reddish", "cerise", "ruby-red", "scarlet", "carmine", "ruddy", "cherry-red"]}, {"answer": "cherubic", "hint": "synonyms for cherubic", "clues": ["sweet", "angelical", "seraphic", "cherubic"]}, {"answer": "chicken", "hint": "synonyms for chicken", "clues": ["yellow-bellied", "white-livered", "chickenhearted", "yellow", "lily-livered", "chicken"]}, {"answer": "chickenhearted", "hint": "synonyms for chickenhearted", "clues": ["yellow-bellied", "white-livered", "yellow", "chicken", "lily-livered", "chickenhearted"]}, {"answer": "chief", "hint": "synonyms for chief", "clues": ["master", "primary", "main", "principal", "chief"]}, {"answer": "childlike", "hint": "synonyms for childlike", "clues": ["wide-eyed", "simple", "round-eyed", "childly", "dewy-eyed", "childlike"]}, {"answer": "chilling", "hint": "synonyms for chilling", "clues": ["shuddery", "scarey", "shivery", "chilling"]}, {"answer": "chintzy", "hint": "synonyms for chintzy", "clues": ["chinchy", "crummy", "bum", "sleazy", "punk", "cheesy", "tinny", "cheap", "chintzy"]}, {"answer": "chock-full", "hint": "synonyms for chock-full", "clues": ["chockful", "cram full", "chockablock", "chuck-full", "choke-full"]}, {"answer": "chockablock", "hint": "synonyms for chockablock", "clues": ["chockful", "cram full", "choke-full", "chuck-full", "chockablock"]}, {"answer": "chockful", "hint": "synonyms for chockful", "clues": ["choke-full", "cram full", "chockablock", "chuck-full", "chockful"]}, {"answer": "choice", "hint": "synonyms for choice", "clues": ["quality", "prize", "prime", "select", "choice"]}, {"answer": "choke-full", "hint": "synonyms for choke-full", "clues": ["chockful", "cram full", "chockablock", "chuck-full", "choke-full"]}, {"answer": "choleric", "hint": "synonyms for choleric", "clues": ["irascible", "hot-tempered", "hotheaded", "quick-tempered", "choleric"]}, {"answer": "chuck-full", "hint": "synonyms for chuck-full", "clues": ["chockful", "cram full", "choke-full", "chockablock", "chuck-full"]}, {"answer": "chummy", "hint": "synonyms for chummy", "clues": ["palsy-walsy", "thick", "pally", "matey", "buddy-buddy", "chummy"]}, {"answer": "chunky", "hint": "synonyms for chunky", "clues": ["squatty", "low-set", "lumpy", "squat", "dumpy", "stumpy", "chunky"]}, {"answer": "churning", "hint": "synonyms for churning", "clues": ["churned-up", "roily", "roiled", "turbulent", "roiling", "churning"]}, {"answer": "circinate", "hint": "synonyms for circinate", "clues": ["annulated", "ringed", "doughnut-shaped", "annular", "ring-shaped", "circinate"]}, {"answer": "cissy", "hint": "synonyms for cissy", "clues": ["emasculate", "sissy", "epicene", "sissyish", "effeminate", "sissified", "cissy"]}, {"answer": "civilised", "hint": "synonyms for civilised", "clues": ["cultivated", "cultured", "polite", "civilized", "genteel"]}, {"answer": "civilized", "hint": "synonyms for civilized", "clues": ["civilised", "cultivated", "cultured", "polite", "genteel"]}, {"answer": "clamant", "hint": "synonyms for clamant", "clues": ["instant", "strident", "insistent", "clamorous", "crying", "vociferous", "exigent", "blatant", "clamant"]}, {"answer": "clamorous", "hint": "synonyms for clamorous", "clues": ["blatant", "vociferous", "clamant", "strident", "clamorous"]}, {"answer": "clandestine", "hint": "synonyms for clandestine", "clues": ["hush-hush", "hugger-mugger", "undercover", "secret", "underground", "hole-and-corner", "surreptitious", "cloak-and-dagger", "clandestine"]}, {"answer": "clannish", "hint": "synonyms for clannish", "clues": ["clubby", "cliquish", "snobbish", "snobby", "clannish"]}, {"answer": "clean", "hint": "synonyms for clean", "clues": ["sporting", "unobjectionable", "white", "light", "sporty", "uncontaminating", "sportsmanlike", "neat", "uninfected", "clear", "clean-living", "fair", "unclouded", "fresh", "blank", "clean"]}, {"answer": "clean-cut", "hint": "synonyms for clean-cut", "clues": ["trig", "trim", "clear-cut", "clear"]}, {"answer": "clear", "hint": "synonyms for clear", "clues": ["clean-cut", "percipient", "readable", "cleared", "light", "exculpated", "vindicated", "well-defined", "decipherable", "unmortgaged", "clean", "exonerated", "unclouded", "open", "absolved", "clear"]}, {"answer": "clear-cut", "hint": "synonyms for clear-cut", "clues": ["trenchant", "clear", "clean-cut", "distinct"]}, {"answer": "cleared", "hint": "synonyms for cleared", "clues": ["exonerated", "exculpated", "vindicated", "absolved", "clear", "cleared"]}, {"answer": "clever", "hint": "synonyms for clever", "clues": ["apt", "cunning", "cagey", "canny", "ingenious", "clever"]}, {"answer": "cliquish", "hint": "synonyms for cliquish", "clues": ["clubby", "snobby", "clannish", "snobbish", "cliquish"]}, {"answer": "cloak-and-dagger", "hint": "synonyms for cloak-and-dagger", "clues": ["clandestine", "hush-hush", "hugger-mugger", "undercover", "secret", "underground", "hole-and-corner", "surreptitious", "cloak-and-dagger"]}, {"answer": "cloaked", "hint": "synonyms for cloaked", "clues": ["mantled", "masked", "wrapped", "disguised", "clothed", "draped", "cloaked"]}, {"answer": "cloistered", "hint": "synonyms for cloistered", "clues": ["secluded", "reclusive", "monastic", "sequestered", "conventual", "cloistral", "cloistered"]}, {"answer": "cloistral", "hint": "synonyms for cloistral", "clues": ["conventual", "cloistered", "monastic", "cloistral"]}, {"answer": "close", "hint": "synonyms for close", "clues": ["tight", "closemouthed", "confining", "faithful", "secretive", "airless", "snug", "unaired", "stuffy", "penny-pinching", "skinny", "closelipped", "tightlipped", "close-fitting", "nigh", "cheeseparing", "near", "close"]}, {"answer": "close_at_hand", "hint": "synonyms for close at hand", "clues": ["at hand", "impendent", "impending", "imminent", "close at hand"]}, {"answer": "closed", "hint": "synonyms for closed", "clues": ["unopen", "unsympathetic", "shut", "closed in", "closed"]}, {"answer": "closelipped", "hint": "synonyms for closelipped", "clues": ["secretive", "closemouthed", "close", "tightlipped", "closelipped"]}, {"answer": "closemouthed", "hint": "synonyms for closemouthed", "clues": ["secretive", "closelipped", "close", "tightlipped", "closemouthed"]}, {"answer": "clothed", "hint": "synonyms for clothed", "clues": ["mantled", "cloaked", "wrapped", "clad", "draped", "clothed"]}, {"answer": "clouded", "hint": "synonyms for clouded", "clues": ["blurred", "sunless", "overcast", "cloud-covered", "clouded"]}, {"answer": "cloudy", "hint": "synonyms for cloudy", "clues": ["mirky", "nebulous", "muddy", "turbid", "murky", "cloudy"]}, {"answer": "clubby", "hint": "synonyms for clubby", "clues": ["cliquish", "clannish", "clubbish", "snobbish", "snobby", "clubby"]}, {"answer": "clumsy", "hint": "synonyms for clumsy", "clues": ["awkward", "ill-chosen", "unwieldy", "gawky", "clunky", "inept", "incompetent", "inapt", "bunglesome", "cumbersome", "fumbling", "ungainly", "bungling", "clumsy"]}, {"answer": "clunky", "hint": "synonyms for clunky", "clues": ["clumsy", "unwieldy", "ungainly", "gawky", "clunky"]}, {"answer": "co-occurrent", "hint": "synonyms for co-occurrent", "clues": ["cooccurring", "coinciding", "coincident", "simultaneous", "concurrent", "co-occurrent"]}, {"answer": "co-ordinated", "hint": "synonyms for co-ordinated", "clues": ["unified", "coordinated", "matching", "interconnected"]}, {"answer": "coagulated", "hint": "synonyms for coagulated", "clues": ["grumose", "solidified", "curdled", "coagulate"]}, {"answer": "coal-black", "hint": "synonyms for coal-black", "clues": ["jet-black", "pitchy", "jet", "sooty", "coal-black"]}, {"answer": "coalesced", "hint": "synonyms for coalesced", "clues": ["fused", "consolidated", "amalgamate", "coalesced"]}, {"answer": "coarse", "hint": "synonyms for coarse", "clues": ["common", "rough-cut", "harsh", "uncouth", "vulgar", "coarse"]}, {"answer": "coarse-grained", "hint": "synonyms for coarse-grained", "clues": ["large-grained", "farinaceous", "gritty", "grainy", "granulose", "granular", "mealy", "coarse-grained"]}, {"answer": "cobwebby", "hint": "synonyms for cobwebby", "clues": ["filmy", "diaphanous", "gauze-like", "gossamer", "vaporous", "see-through", "gauzy", "sheer", "transparent", "cobwebby"]}, {"answer": "cock-a-hoop", "hint": "synonyms for cock-a-hoop", "clues": ["braggart", "crowing", "big", "self-aggrandizing", "braggy", "bragging", "boastful", "cock-a-hoop"]}, {"answer": "cockamamie", "hint": "synonyms for cockamamie", "clues": ["silly", "goofy", "zany", "whacky", "cockamamy", "sappy", "cockamamie"]}, {"answer": "cockamamy", "hint": "synonyms for cockamamy", "clues": ["silly", "goofy", "cockamamie", "zany", "whacky", "sappy", "cockamamy"]}, {"answer": "cockeyed", "hint": "synonyms for cockeyed", "clues": ["askew", "pie-eyed", "fuddled", "crocked", "absurd", "awry", "soused", "preposterous", "lopsided", "sloshed", "sozzled", "blotto", "idiotic", "squiffy", "plastered", "wonky", "blind drunk", "loaded", "stiff", "tight", "besotted", "skew-whiff", "ridiculous", "soaked", "ludicrous", "wet", "slopped", "smashed", "nonsensical", "pixilated", "derisory", "pissed", "laughable", "cockeyed"]}, {"answer": "cognate", "hint": "synonyms for cognate", "clues": ["consanguineal", "consanguineous", "akin", "blood-related", "connate"]}, {"answer": "coherent", "hint": "synonyms for coherent", "clues": ["logical", "ordered", "consistent", "tenacious", "lucid", "coherent"]}, {"answer": "coiling", "hint": "synonyms for coiling", "clues": ["turbinate", "volute", "spiral", "helical", "whorled", "coiling"]}, {"answer": "coincident", "hint": "synonyms for coincident", "clues": ["cooccurring", "co-occurrent", "coinciding", "simultaneous", "coincidental", "concurrent"]}, {"answer": "coincidental", "hint": "synonyms for coincidental", "clues": ["cooccurring", "coinciding", "co-occurrent", "coincident", "simultaneous", "concurrent"]}, {"answer": "coinciding", "hint": "synonyms for coinciding", "clues": ["cooccurring", "co-occurrent", "coincident", "simultaneous", "concurrent", "coinciding"]}, {"answer": "cold", "hint": "synonyms for cold", "clues": ["stale", "frigid", "moth-eaten", "insensate", "cold-blooded", "dusty", "inhuman", "cold"]}, {"answer": "collateral", "hint": "synonyms for collateral", "clues": ["indirect", "verificatory", "verifying", "validating", "confirmatory", "corroboratory", "confirming", "substantiative", "validatory", "confirmative", "corroborative", "collateral"]}, {"answer": "collected", "hint": "synonyms for collected", "clues": ["poised", "self-collected", "equanimous", "self-contained", "gathered", "self-possessed", "collected"]}, {"answer": "colored", "hint": "synonyms for colored", "clues": ["non-white", "bleached", "dark-skinned", "biased", "dyed", "one-sided", "coloured", "dark", "slanted", "colorful"]}, {"answer": "coloured", "hint": "synonyms for coloured", "clues": ["non-white", "bleached", "dark-skinned", "biased", "dyed", "one-sided", "dark", "slanted", "colorful", "colored"]}, {"answer": "coltish", "hint": "synonyms for coltish", "clues": ["sportive", "rollicking", "frolicsome", "frolicky", "coltish"]}, {"answer": "combative", "hint": "synonyms for combative", "clues": ["bellicose", "agonistical", "battleful", "disputatious", "disputative", "litigious", "contentious", "combative"]}, {"answer": "combinatory", "hint": "synonyms for combinatory", "clues": ["combinable", "combinative", "combinational", "combinatorial", "combinatory"]}, {"answer": "comely", "hint": "synonyms for comely", "clues": ["seemly", "decent", "sightly", "bonny", "bonnie", "comme il faut", "becoming", "fair", "decorous", "comely"]}, {"answer": "comfortable", "hint": "synonyms for comfortable", "clues": ["comfy", "well-to-do", "well-situated", "well-heeled", "well-off", "prosperous", "easy", "well-fixed", "comfortable"]}, {"answer": "comforting", "hint": "synonyms for comforting", "clues": ["consolatory", "satisfying", "consoling", "cheering", "comforting"]}, {"answer": "comic", "hint": "synonyms for comic", "clues": ["comical", "funny", "mirthful", "amusing", "risible", "laughable", "comic"]}, {"answer": "comical", "hint": "synonyms for comical", "clues": ["funny", "mirthful", "amusing", "risible", "comic", "laughable", "comical"]}, {"answer": "comme_il_faut", "hint": "synonyms for comme il faut", "clues": ["seemly", "decent", "becoming", "comely", "decorous", "comme il faut"]}, {"answer": "common", "hint": "synonyms for common", "clues": ["coarse", "mutual", "vulgar", "unwashed", "rough-cut", "uncouth", "usual", "plebeian", "vernacular", "common"]}, {"answer": "commonplace", "hint": "synonyms for commonplace", "clues": ["old-hat", "trite", "shopworn", "threadbare", "prosaic", "humdrum", "unglamorous", "well-worn", "hackneyed", "banal", "timeworn", "stock", "tired", "commonplace"]}, {"answer": "communicable", "hint": "synonyms for communicable", "clues": ["catching", "transmittable", "contractable", "contagious", "transmissible", "communicable"]}, {"answer": "compact", "hint": "synonyms for compact", "clues": ["compendious", "stocky", "succinct", "thick", "summary", "heavyset", "thickset", "compact"]}, {"answer": "compensable", "hint": "synonyms for compensable", "clues": ["salaried", "remunerative", "stipendiary", "paying", "compensable"]}, {"answer": "competitive", "hint": "synonyms for competitive", "clues": ["militant", "free-enterprise", "private-enterprise", "competitory", "competitive"]}, {"answer": "complete", "hint": "synonyms for complete", "clues": ["sodding", "staring", "thoroughgoing", "accomplished", "double-dyed", "arrant", "unadulterated", "all over", "concluded", "consummate", "gross", "ended", "stark", "utter", "perfect", "terminated", "pure", "everlasting", "over", "complete"]}, {"answer": "complimentary", "hint": "synonyms for complimentary", "clues": ["free", "gratuitous", "gratis", "costless", "complimentary"]}, {"answer": "conceited", "hint": "synonyms for conceited", "clues": ["vain", "egotistic", "self-conceited", "swollen", "swollen-headed", "conceited"]}, {"answer": "concluded", "hint": "synonyms for concluded", "clues": ["all over", "terminated", "over", "ended", "complete", "concluded"]}, {"answer": "concomitant", "hint": "synonyms for concomitant", "clues": ["accompanying", "ensuant", "consequent", "attendant", "resultant", "incidental", "sequent", "concomitant"]}, {"answer": "concordant", "hint": "synonyms for concordant", "clues": ["conformable", "accordant", "concurring", "consonant", "agreeable", "concordant"]}, {"answer": "concurrent", "hint": "synonyms for concurrent", "clues": ["cooccurring", "coinciding", "co-occurrent", "coincident", "simultaneous", "concurrent"]}, {"answer": "condemnable", "hint": "synonyms for condemnable", "clues": ["deplorable", "reprehensible", "vicious", "criminal", "condemnable"]}, {"answer": "conducive", "hint": "synonyms for conducive", "clues": ["contributing", "tributary", "contributive", "contributory", "conducive"]}, {"answer": "confident", "hint": "synonyms for confident", "clues": ["surefooted", "convinced", "positive", "confident"]}, {"answer": "confining", "hint": "synonyms for confining", "clues": ["constraining", "limiting", "restricting", "constrictive", "close", "confining"]}, {"answer": "confirmative", "hint": "synonyms for confirmative", "clues": ["verificatory", "verifying", "substantiating", "validating", "corroboratory", "confirming", "collateral", "validatory", "corroborative", "confirmatory", "confirmative"]}, {"answer": "confirmatory", "hint": "synonyms for confirmatory", "clues": ["verificatory", "verifying", "substantiating", "validating", "corroboratory", "confirming", "validatory", "confirmative", "corroborative", "collateral", "confirmatory"]}, {"answer": "confirming", "hint": "synonyms for confirming", "clues": ["positive", "verificatory", "verifying", "validating", "confirmatory", "corroboratory", "substantiative", "collateral", "validatory", "confirmative", "corroborative", "confirming"]}, {"answer": "conformable", "hint": "synonyms for conformable", "clues": ["accordant", "agreeable", "concordant", "consonant", "amenable", "conformable"]}, {"answer": "confounded", "hint": "synonyms for confounded", "clues": ["mazed", "at sea", "baffled", "lost", "befuddled", "confused", "bewildered", "bemused", "mixed-up", "confounded"]}, {"answer": "confused", "hint": "synonyms for confused", "clues": ["illogical", "lost", "unconnected", "broken", "confounded", "bemused", "disordered", "mixed-up", "disconnected", "garbled", "mazed", "at sea", "baffled", "befuddled", "bewildered", "scattered", "upset", "disjointed", "confused"]}, {"answer": "conjectural", "hint": "synonyms for conjectural", "clues": ["suppositional", "supposed", "divinatory", "suppositious", "hypothetical", "conjectural"]}, {"answer": "conniving", "hint": "synonyms for conniving", "clues": ["collusive", "shrewd", "scheming", "calculative", "calculating", "conniving"]}, {"answer": "consanguine", "hint": "synonyms for consanguine", "clues": ["consanguineal", "consanguineous", "akin", "blood-related", "cognate"]}, {"answer": "consanguineal", "hint": "synonyms for consanguineal", "clues": ["consanguineous", "akin", "blood-related", "cognate", "consanguineal"]}, {"answer": "consanguineous", "hint": "synonyms for consanguineous", "clues": ["consanguineal", "akin", "blood-related", "cognate", "consanguineous"]}, {"answer": "consecrated", "hint": "synonyms for consecrated", "clues": ["consecrate", "sanctified", "sacred", "dedicated"]}, {"answer": "consecutive", "hint": "synonyms for consecutive", "clues": ["straight", "successive", "back-to-back", "sequential", "serial", "sequent", "consecutive"]}, {"answer": "consequent", "hint": "synonyms for consequent", "clues": ["accompanying", "ensuant", "attendant", "concomitant", "resultant", "incidental", "sequent", "consequent"]}, {"answer": "conservative", "hint": "synonyms for conservative", "clues": ["buttoned-down", "bourgeois", "materialistic", "cautious", "conservative"]}, {"answer": "consistent", "hint": "synonyms for consistent", "clues": ["logical", "ordered", "uniform", "reproducible", "coherent", "consistent"]}, {"answer": "consolidated", "hint": "synonyms for consolidated", "clues": ["fused", "amalgamate", "coalesced", "consolidated"]}, {"answer": "consonant", "hint": "synonyms for consonant", "clues": ["conformable", "harmonical", "agreeable", "harmonized", "accordant", "concordant", "consonant"]}, {"answer": "constant", "hint": "synonyms for constant", "clues": ["unvarying", "unremitting", "incessant", "never-ending", "perpetual", "ceaseless", "unceasing", "invariant", "changeless", "constant"]}, {"answer": "constitutional", "hint": "synonyms for constitutional", "clues": ["integral", "constitutive", "built-in", "inherent", "inbuilt", "constituent", "organic", "constitutional"]}, {"answer": "constraining", "hint": "synonyms for constraining", "clues": ["confining", "restricting", "constrictive", "limiting", "constraining"]}, {"answer": "constrictive", "hint": "synonyms for constrictive", "clues": ["narrowing", "constraining", "restricting", "limiting", "confining", "constricting", "constrictive"]}, {"answer": "consummate", "hint": "synonyms for consummate", "clues": ["masterful", "pure", "sodding", "staring", "thoroughgoing", "virtuoso", "double-dyed", "arrant", "unadulterated", "complete", "gross", "stark", "utter", "perfect", "masterly", "everlasting", "consummate"]}, {"answer": "contagious", "hint": "synonyms for contagious", "clues": ["catching", "transmittable", "contractable", "communicable", "transmissible", "contagious"]}, {"answer": "contemplative", "hint": "synonyms for contemplative", "clues": ["pondering", "musing", "broody", "reflective", "meditative", "pensive", "ruminative", "brooding", "contemplative"]}, {"answer": "contentious", "hint": "synonyms for contentious", "clues": ["disputatious", "disputative", "litigious", "combative", "contentious"]}, {"answer": "conterminous", "hint": "synonyms for conterminous", "clues": ["contiguous", "coextensive", "coterminous", "neighboring", "adjacent"]}, {"answer": "contiguous", "hint": "synonyms for contiguous", "clues": ["conterminous", "immediate", "neighboring", "adjacent", "contiguous"]}, {"answer": "contingent", "hint": "synonyms for contingent", "clues": ["contingent on", "dependent upon", "depending on", "dependant on"]}, {"answer": "contingent_on", "hint": "synonyms for contingent on", "clues": ["contingent", "dependent upon", "depending on", "dependant on", "contingent upon"]}, {"answer": "contingent_upon", "hint": "synonyms for contingent upon", "clues": ["contingent", "dependent upon", "depending on", "dependant on", "contingent upon"]}, {"answer": "continuant", "hint": "synonyms for continuant", "clues": ["fricative", "spirant", "sibilant", "strident", "continuant"]}, {"answer": "contraband", "hint": "synonyms for contraband", "clues": ["smuggled", "bootleg", "black-market", "black", "contraband"]}, {"answer": "contractable", "hint": "synonyms for contractable", "clues": ["catching", "transmittable", "communicable", "contagious", "transmissible", "contractable"]}, {"answer": "contradictory", "hint": "synonyms for contradictory", "clues": ["mutually exclusive", "conflicting", "self-contradictory", "at odds", "confounding", "contradictory"]}, {"answer": "contrary", "hint": "synonyms for contrary", "clues": ["obstinate", "perverse", "adverse", "wayward", "contrary"]}, {"answer": "contributing", "hint": "synonyms for contributing", "clues": ["contributory", "conducive", "tributary", "contributive", "contributing"]}, {"answer": "contributive", "hint": "synonyms for contributive", "clues": ["contributing", "conducive", "tributary", "contributory", "contributive"]}, {"answer": "contributory", "hint": "synonyms for contributory", "clues": ["contributing", "conducive", "tributary", "contributive", "contributory"]}, {"answer": "conventional", "hint": "synonyms for conventional", "clues": ["formal", "established", "ceremonious", "schematic", "conventional"]}, {"answer": "conventual", "hint": "synonyms for conventual", "clues": ["cloistered", "cloistral", "monastic", "conventual"]}, {"answer": "convertible", "hint": "synonyms for convertible", "clues": ["translatable", "transformable", "exchangeable", "transmutable", "convertible"]}, {"answer": "conveyable", "hint": "synonyms for conveyable", "clues": ["transferable", "negotiable", "assignable", "conveyable"]}, {"answer": "convoluted", "hint": "synonyms for convoluted", "clues": ["tortuous", "convolute", "tangled", "involved", "knotty"]}, {"answer": "cooccurring", "hint": "synonyms for cooccurring", "clues": ["coinciding", "co-occurrent", "coincident", "simultaneous", "concurrent", "cooccurring"]}, {"answer": "cooperative", "hint": "synonyms for cooperative", "clues": ["concerted", "conjunct", "conjunctive", "accommodative", "cooperative"]}, {"answer": "coordinated", "hint": "synonyms for coordinated", "clues": ["matching", "unified", "interconnected", "co-ordinated"]}, {"answer": "copious", "hint": "synonyms for copious", "clues": ["voluminous", "plenteous", "rich", "ample", "plentiful", "copious"]}, {"answer": "corking", "hint": "synonyms for corking", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "great", "dandy", "neat", "swell", "bully", "not bad", "peachy", "groovy", "nifty", "corking"]}, {"answer": "corporal", "hint": "synonyms for corporal", "clues": ["incarnate", "corporeal", "somatic", "bodied", "corporate", "bodily"]}, {"answer": "corporate", "hint": "synonyms for corporate", "clues": ["corporal", "incarnate", "collective", "incorporated", "bodied"]}, {"answer": "corporeal", "hint": "synonyms for corporeal", "clues": ["corporal", "somatic", "material", "bodily"]}, {"answer": "corroborative", "hint": "synonyms for corroborative", "clues": ["verificatory", "verifying", "substantiating", "validating", "corroboratory", "confirming", "collateral", "validatory", "confirmative", "confirmatory", "corroborative"]}, {"answer": "corroboratory", "hint": "synonyms for corroboratory", "clues": ["verificatory", "verifying", "substantiating", "validating", "confirming", "collateral", "validatory", "confirmative", "corroborative", "confirmatory", "corroboratory"]}, {"answer": "corrosive", "hint": "synonyms for corrosive", "clues": ["erosive", "mordant", "caustic", "vitriolic", "corrosive"]}, {"answer": "corruptible", "hint": "synonyms for corruptible", "clues": ["bribable", "purchasable", "venal", "dishonest", "corruptible"]}, {"answer": "coruscant", "hint": "synonyms for coruscant", "clues": ["glittering", "glittery", "sparkly", "fulgid", "glinting", "scintillant", "scintillating", "coruscant"]}, {"answer": "cosmopolitan", "hint": "synonyms for cosmopolitan", "clues": ["widely distributed", "worldwide", "universal", "general", "ecumenical", "cosmopolitan"]}, {"answer": "costless", "hint": "synonyms for costless", "clues": ["gratuitous", "complimentary", "gratis", "free", "costless"]}, {"answer": "costly", "hint": "synonyms for costly", "clues": ["pricy", "dear", "dearly-won", "high-priced", "costly"]}, {"answer": "countless", "hint": "synonyms for countless", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "myriad", "multitudinous", "innumerous", "countless"]}, {"answer": "coupled", "hint": "synonyms for coupled", "clues": ["linked", "joined", "conjugated", "coupled"]}, {"answer": "covetous", "hint": "synonyms for covetous", "clues": ["avaricious", "greedy", "grabby", "jealous", "prehensile", "grasping", "envious", "covetous"]}, {"answer": "cozy", "hint": "synonyms for cozy", "clues": ["cosy", "snug", "intimate", "informal", "cozy"]}, {"answer": "crabbed", "hint": "synonyms for crabbed", "clues": ["crabby", "cross", "grouchy", "grumpy", "fussy", "ill-tempered", "bad-tempered", "crabbed"]}, {"answer": "crabby", "hint": "synonyms for crabby", "clues": ["cross", "grouchy", "crabbed", "grumpy", "fussy", "ill-tempered", "bad-tempered", "crabby"]}, {"answer": "crack", "hint": "synonyms for crack", "clues": ["first-rate", "tops", "top-notch", "ace", "tiptop", "super", "crack"]}, {"answer": "cracked", "hint": "synonyms for cracked", "clues": ["balmy", "roughened", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "alligatored", "kookie", "nutty", "nuts", "chapped", "batty", "bats", "cracked"]}, {"answer": "crackers", "hint": "synonyms for crackers", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "crackers"]}, {"answer": "cracking", "hint": "synonyms for cracking", "clues": ["bang-up", "smashing", "slap-up", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "groovy", "nifty", "cracking"]}, {"answer": "crafty", "hint": "synonyms for crafty", "clues": ["dodgy", "tricky", "guileful", "sly", "cunning", "slick", "foxy", "wily", "knavish", "crafty"]}, {"answer": "cram_full", "hint": "synonyms for cram full", "clues": ["choke-full", "chockful", "chockablock", "chuck-full", "cram full"]}, {"answer": "cranky", "hint": "synonyms for cranky", "clues": ["tippy", "pettish", "techy", "nettlesome", "petulant", "crank", "fractious", "irritable", "testy", "scratchy", "peckish", "peevish", "tender"]}, {"answer": "crappy", "hint": "synonyms for crappy", "clues": ["rotten", "shitty", "stinky", "stinking", "icky", "lousy", "crappy"]}, {"answer": "crashing", "hint": "synonyms for crashing", "clues": ["bloody", "blooming", "bally", "flaming", "fucking", "blinking", "crashing"]}, {"answer": "crazy", "hint": "synonyms for crazy", "clues": ["wild", "gaga", "unbalanced", "sick", "half-baked", "unhinged", "softheaded", "dotty", "screwball", "brainsick", "demented", "mad", "disturbed", "crazy"]}, {"answer": "creaky", "hint": "synonyms for creaky", "clues": ["screaky", "rheumatoid", "arthritic", "woebegone", "rheumatic", "derelict", "run-down", "flea-bitten", "decrepit", "rheumy"]}, {"answer": "criminal", "hint": "synonyms for criminal", "clues": ["deplorable", "felonious", "condemnable", "reprehensible", "vicious", "criminal"]}, {"answer": "crimson", "hint": "synonyms for crimson", "clues": ["cherry", "blood-red", "red", "violent", "red-faced", "ruby", "reddish", "cerise", "flushed", "ruby-red", "cherry-red", "scarlet", "reddened", "carmine", "ruddy", "crimson"]}, {"answer": "cringing", "hint": "synonyms for cringing", "clues": ["wormy", "groveling", "wormlike", "cringing"]}, {"answer": "crinkled", "hint": "synonyms for crinkled", "clues": ["wavy", "wavelike", "rippled", "crinkly", "crinkled"]}, {"answer": "crinkly", "hint": "synonyms for crinkly", "clues": ["crinkled", "wavy", "wavelike", "rippled", "crinkly"]}, {"answer": "crippled", "hint": "synonyms for crippled", "clues": ["game", "halting", "gimpy", "lame", "crippled"]}, {"answer": "crisp", "hint": "synonyms for crisp", "clues": ["frosty", "curt", "laconic", "nippy", "snappy", "terse", "sharp", "kinky", "nipping", "frizzy", "crispy"]}, {"answer": "crocked", "hint": "synonyms for crocked", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "crocked"]}, {"answer": "crookback", "hint": "synonyms for crookback", "clues": ["humpbacked", "kyphotic", "gibbous", "crookbacked", "hunchbacked", "humped"]}, {"answer": "crookbacked", "hint": "synonyms for crookbacked", "clues": ["crookback", "humpbacked", "kyphotic", "gibbous", "hunchbacked", "humped"]}, {"answer": "crooked", "hint": "synonyms for crooked", "clues": ["stooping", "corrupt", "stooped", "asymmetrical", "hunched", "round-backed", "round-shouldered", "crooked"]}, {"answer": "cross", "hint": "synonyms for cross", "clues": ["grouchy", "crabbed", "transversal", "grumpy", "bad-tempered", "fussy", "thwartwise", "ill-tempered", "crabby", "cross"]}, {"answer": "crowing", "hint": "synonyms for crowing", "clues": ["cock-a-hoop", "braggart", "big", "self-aggrandizing", "braggy", "bragging", "boastful", "crowing"]}, {"answer": "crucial", "hint": "synonyms for crucial", "clues": ["all important", "of the essence", "essential", "important", "crucial"]}, {"answer": "cruddy", "hint": "synonyms for cruddy", "clues": ["nasty", "filthy", "smutty", "foul", "cruddy"]}, {"answer": "crude", "hint": "synonyms for crude", "clues": ["rough", "unprocessed", "unrefined", "rude", "gross", "stark", "blunt", "primitive", "earthy", "raw", "vulgar"]}, {"answer": "cruel", "hint": "synonyms for cruel", "clues": ["barbarous", "vicious", "savage", "brutal", "roughshod", "fell", "cruel"]}, {"answer": "crummy", "hint": "synonyms for crummy", "clues": ["cheesy", "bum", "sleazy", "tinny", "punk", "cheap", "chintzy", "crummy"]}, {"answer": "crushed", "hint": "synonyms for crushed", "clues": ["low", "humbled", "humiliated", "broken", "crushed"]}, {"answer": "crusty", "hint": "synonyms for crusty", "clues": ["encrusted", "crustlike", "ill-humoured", "curmudgeonly", "gruff", "crusty"]}, {"answer": "crying", "hint": "synonyms for crying", "clues": ["instant", "clamant", "rank", "gross", "exigent", "glaring", "egregious", "flagrant", "insistent", "crying"]}, {"answer": "cryptic", "hint": "synonyms for cryptic", "clues": ["mysterious", "qabalistic", "deep", "cryptical", "inscrutable", "sibylline", "mystifying"]}, {"answer": "cryptical", "hint": "synonyms for cryptical", "clues": ["mysterious", "qabalistic", "deep", "cryptic", "inscrutable", "sibylline", "mystifying"]}, {"answer": "crystal_clear", "hint": "synonyms for crystal clear", "clues": ["pellucid", "lucid", "perspicuous", "crystalline", "luculent", "transparent", "limpid", "crystal clear"]}, {"answer": "crystalline", "hint": "synonyms for crystalline", "clues": ["transparent", "pellucid", "crystal clear", "lucid", "limpid", "crystalline"]}, {"answer": "cube-shaped", "hint": "synonyms for cube-shaped", "clues": ["cuboidal", "cubical", "cubelike", "cubiform", "cube-shaped"]}, {"answer": "cubelike", "hint": "synonyms for cubelike", "clues": ["cuboidal", "cubical", "cube-shaped", "cubiform", "cubelike"]}, {"answer": "cubical", "hint": "synonyms for cubical", "clues": ["cuboidal", "cubelike", "cube-shaped", "cubiform", "cubical"]}, {"answer": "cubiform", "hint": "synonyms for cubiform", "clues": ["cuboidal", "cubical", "cubelike", "cube-shaped", "cubiform"]}, {"answer": "cuboid", "hint": "synonyms for cuboid", "clues": ["cuboidal", "cubical", "cubelike", "cube-shaped", "cubiform"]}, {"answer": "cuboidal", "hint": "synonyms for cuboidal", "clues": ["cubical", "cubelike", "cuboid", "cube-shaped", "cubiform"]}, {"answer": "culpable", "hint": "synonyms for culpable", "clues": ["blameworthy", "blameful", "blameable", "censurable", "culpable"]}, {"answer": "cultivated", "hint": "synonyms for cultivated", "clues": ["civilised", "cultured", "polite", "genteel", "cultivated"]}, {"answer": "cultured", "hint": "synonyms for cultured", "clues": ["civilised", "cultivated", "polite", "genteel", "cultured"]}, {"answer": "cumbersome", "hint": "synonyms for cumbersome", "clues": ["cumbrous", "awkward", "ill-chosen", "clumsy", "inept", "inapt", "cumbersome"]}, {"answer": "cunning", "hint": "synonyms for cunning", "clues": ["knavish", "dodgy", "clever", "crafty", "tricky", "sly", "cute", "slick", "foxy", "wily", "ingenious", "guileful", "cunning"]}, {"answer": "curative", "hint": "synonyms for curative", "clues": ["remedial", "therapeutic", "sanative", "alterative", "healing", "curative"]}, {"answer": "cured", "hint": "synonyms for cured", "clues": ["vulcanised", "aged", "healed", "recovered", "corned", "cured"]}, {"answer": "curious", "hint": "synonyms for curious", "clues": ["funny", "rummy", "odd", "queer", "singular", "rum", "peculiar", "curious"]}, {"answer": "curmudgeonly", "hint": "synonyms for curmudgeonly", "clues": ["ill-humoured", "crusty", "gruff", "curmudgeonly"]}, {"answer": "cursed", "hint": "synonyms for cursed", "clues": ["curst", "damned", "unredeemed", "doomed", "unsaved", "cursed"]}, {"answer": "curt", "hint": "synonyms for curt", "clues": ["short", "crisp", "brusque", "laconic", "brusk", "terse", "curt"]}, {"answer": "curvaceous", "hint": "synonyms for curvaceous", "clues": ["stacked", "bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "sonsie", "full-bosomed", "curvaceous"]}, {"answer": "curvy", "hint": "synonyms for curvy", "clues": ["stacked", "curvey", "bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvaceous", "sonsie", "full-bosomed"]}, {"answer": "cuspated", "hint": "synonyms for cuspated", "clues": ["cuspidated", "cuspidal", "cusped", "cuspate"]}, {"answer": "cusped", "hint": "synonyms for cusped", "clues": ["cuspidated", "cuspidal", "cuspate", "cusped"]}, {"answer": "cuspidal", "hint": "synonyms for cuspidal", "clues": ["cuspidated", "cusped", "cuspate", "cuspidal"]}, {"answer": "cut", "hint": "synonyms for cut", "clues": ["thinned", "emasculated", "weakened", "gelded", "mown", "slashed", "shortened", "trimmed", "cut"]}, {"answer": "cutting", "hint": "synonyms for cutting", "clues": ["stinging", "keen", "knifelike", "lancinating", "edged", "lancinate", "bleak", "raw", "stabbing", "piercing", "cutting"]}, {"answer": "daft", "hint": "synonyms for daft", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "daft"]}, {"answer": "daily", "hint": "synonyms for daily", "clues": ["casual", "day-by-day", "day-to-day", "everyday", "day-after-day", "daily"]}, {"answer": "dainty", "hint": "synonyms for dainty", "clues": ["prissy", "twee", "nice", "squeamish", "mincing", "exquisite", "prim", "niminy-piminy", "overnice", "dainty"]}, {"answer": "damaging", "hint": "synonyms for damaging", "clues": ["prejudicial", "detrimental", "negative", "prejudicious", "damaging"]}, {"answer": "damn", "hint": "synonyms for damn", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "darned", "damn"]}, {"answer": "damned", "hint": "synonyms for damned", "clues": ["blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "darned", "cursed", "unredeemed", "doomed", "damn", "unsaved", "damned"]}, {"answer": "dandy", "hint": "synonyms for dandy", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "great", "neat", "swell", "bully", "not bad", "peachy", "groovy", "nifty", "dandy"]}, {"answer": "dangerous", "hint": "synonyms for dangerous", "clues": ["grave", "life-threatening", "severe", "grievous", "serious", "unsafe", "dangerous"]}, {"answer": "dapper", "hint": "synonyms for dapper", "clues": ["raffish", "natty", "jaunty", "spruce", "spiffy", "snappy", "rakish", "dashing", "dapper"]}, {"answer": "daring", "hint": "synonyms for daring", "clues": ["audacious", "venturesome", "venturous", "avant-garde", "daring"]}, {"answer": "dark", "hint": "synonyms for dark", "clues": ["non-white", "sinister", "sour", "gloomy", "sorry", "black", "drab", "morose", "coloured", "glowering", "glum", "dour", "dingy", "dismal", "obscure", "moody", "sullen", "grim", "disconsolate", "dark-skinned", "dreary", "saturnine", "blue", "benighted", "dark"]}, {"answer": "dark-skinned", "hint": "synonyms for dark-skinned", "clues": ["swart", "coloured", "dark", "non-white", "swarthy", "dusky", "dark-skinned"]}, {"answer": "darned", "hint": "synonyms for darned", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "damn", "darned"]}, {"answer": "dashing", "hint": "synonyms for dashing", "clues": ["raffish", "gallant", "natty", "jaunty", "spiffy", "dapper", "snappy", "rakish", "spruce", "dashing"]}, {"answer": "dateless", "hint": "synonyms for dateless", "clues": ["undated", "sempiternal", "timeless", "endless", "dateless"]}, {"answer": "dauntless", "hint": "synonyms for dauntless", "clues": ["fearless", "hardy", "brave", "unfearing", "audacious", "intrepid", "dauntless"]}, {"answer": "dazed", "hint": "synonyms for dazed", "clues": ["stupefied", "groggy", "stupid", "stunned", "stuporous", "logy", "foggy", "dazed"]}, {"answer": "dazzling", "hint": "synonyms for dazzling", "clues": ["fulgurous", "fulgent", "fulgurant", "glaring", "blazing", "glary", "blinding", "eye-popping", "dazzling"]}, {"answer": "dead", "hint": "synonyms for dead", "clues": ["bushed", "beat", "drained", "all in", "idle", "utter", "numb", "deadened", "stagnant", "dead"]}, {"answer": "deadening", "hint": "synonyms for deadening", "clues": ["irksome", "tedious", "tiresome", "dull", "wearisome", "ho-hum", "boring", "slow", "deadening"]}, {"answer": "deadly", "hint": "synonyms for deadly", "clues": ["virulent", "mortal", "pestilent", "baneful", "pernicious", "venomous", "deathly", "lethal", "deadly"]}, {"answer": "deadpan", "hint": "synonyms for deadpan", "clues": ["poker-faced", "unexpressive", "expressionless", "impassive", "deadpan"]}, {"answer": "dealt_out", "hint": "synonyms for dealt out", "clues": ["parceled out", "meted out", "doled out", "apportioned", "dealt out"]}, {"answer": "dear", "hint": "synonyms for dear", "clues": ["good", "pricey", "beloved", "earnest", "devout", "heartfelt", "costly", "darling", "near", "high-priced", "dear"]}, {"answer": "debased", "hint": "synonyms for debased", "clues": ["adulterate", "corrupted", "devalued", "vitiated", "degraded", "debased"]}, {"answer": "debatable", "hint": "synonyms for debatable", "clues": ["arguable", "problematic", "disputable", "moot", "debatable"]}, {"answer": "debauched", "hint": "synonyms for debauched", "clues": ["libertine", "degenerate", "dissipated", "fast", "dissolute", "degraded", "riotous", "profligate", "debauched"]}, {"answer": "debile", "hint": "synonyms for debile", "clues": ["sapless", "infirm", "weakly", "feeble", "decrepit", "rickety", "debile"]}, {"answer": "debonair", "hint": "synonyms for debonair", "clues": ["debonnaire", "jaunty", "chipper", "suave"]}, {"answer": "debonaire", "hint": "synonyms for debonaire", "clues": ["debonnaire", "jaunty", "chipper", "suave"]}, {"answer": "deceased", "hint": "synonyms for deceased", "clues": ["at peace", "asleep", "at rest", "departed", "gone", "deceased"]}, {"answer": "deceitful", "hint": "synonyms for deceitful", "clues": ["double-tongued", "double-dealing", "fallacious", "duplicitous", "two-faced", "fraudulent", "double-faced", "ambidextrous", "deceitful"]}, {"answer": "decent", "hint": "synonyms for decent", "clues": ["nice", "seemly", "becoming", "adequate", "enough", "comely", "decorous", "comme il faut", "decent"]}, {"answer": "declamatory", "hint": "synonyms for declamatory", "clues": ["bombastic", "orotund", "large", "tumid", "turgid", "declamatory"]}, {"answer": "decorous", "hint": "synonyms for decorous", "clues": ["seemly", "decent", "becoming", "comely", "comme il faut", "decorous"]}, {"answer": "decrepit", "hint": "synonyms for decrepit", "clues": ["woebegone", "infirm", "weakly", "feeble", "creaky", "debile", "derelict", "run-down", "flea-bitten", "sapless", "rickety", "decrepit"]}, {"answer": "deep", "hint": "synonyms for deep", "clues": ["rich", "bass", "abstruse", "mysterious", "cryptic", "recondite", "thick", "inscrutable", "mystifying", "deep"]}, {"answer": "deep-rooted", "hint": "synonyms for deep-rooted", "clues": ["ingrained", "implanted", "deep-seated", "deep-rooted"]}, {"answer": "deep-seated", "hint": "synonyms for deep-seated", "clues": ["deep-rooted", "implanted", "ingrained", "deep-seated"]}, {"answer": "defamatory", "hint": "synonyms for defamatory", "clues": ["libellous", "denigrative", "calumnious", "slanderous", "denigrating", "calumniatory", "denigratory", "defamatory"]}, {"answer": "defeated", "hint": "synonyms for defeated", "clues": ["thwarted", "disappointed", "discomfited", "foiled", "frustrated", "defeated"]}, {"answer": "deficient", "hint": "synonyms for deficient", "clues": ["insufficient", "inferior", "substandard", "lacking", "wanting", "deficient"]}, {"answer": "definitive", "hint": "synonyms for definitive", "clues": ["classical", "authoritative", "unequivocal", "determinate", "definitive"]}, {"answer": "deformed", "hint": "synonyms for deformed", "clues": ["malformed", "ill-shapen", "misshapen", "distorted", "deformed"]}, {"answer": "degenerate", "hint": "synonyms for degenerate", "clues": ["libertine", "dissipated", "fast", "dissolute", "degraded", "riotous", "profligate", "debauched", "degenerate"]}, {"answer": "degraded", "hint": "synonyms for degraded", "clues": ["libertine", "degenerate", "dissipated", "fast", "dissolute", "riotous", "devalued", "debased", "profligate", "debauched", "degraded"]}, {"answer": "delectable", "hint": "synonyms for delectable", "clues": ["delicious", "scrumptious", "luscious", "sexually attractive", "pleasant-tasting", "toothsome", "yummy", "delectable"]}, {"answer": "delicate", "hint": "synonyms for delicate", "clues": ["ticklish", "frail", "fragile", "soft", "finespun", "touchy", "delicate"]}, {"answer": "delicious", "hint": "synonyms for delicious", "clues": ["delectable", "delightful", "scrumptious", "luscious", "pleasant-tasting", "toothsome", "yummy", "delicious"]}, {"answer": "delighted", "hint": "synonyms for delighted", "clues": ["charmed", "captivated", "entranced", "enthralled", "beguiled", "delighted"]}, {"answer": "delinquent", "hint": "synonyms for delinquent", "clues": ["overdue", "neglectful", "derelict", "remiss", "delinquent"]}, {"answer": "delirious", "hint": "synonyms for delirious", "clues": ["excited", "hallucinating", "frantic", "unrestrained", "mad", "delirious"]}, {"answer": "deluxe", "hint": "synonyms for deluxe", "clues": ["sumptuous", "de luxe", "princely", "luxurious", "luxe", "grand", "opulent", "gilded"]}, {"answer": "demented", "hint": "synonyms for demented", "clues": ["mad", "disturbed", "unbalanced", "sick", "brainsick", "unhinged", "crazy", "demented"]}, {"answer": "demode", "hint": "synonyms for demode", "clues": ["outmoded", "old-hat", "old-fashioned", "antique", "passe", "ex", "demode"]}, {"answer": "demoniac", "hint": "synonyms for demoniac", "clues": ["amuck", "amok", "possessed", "demoniacal", "berserk"]}, {"answer": "demoniacal", "hint": "synonyms for demoniacal", "clues": ["amuck", "amok", "demoniac", "possessed", "berserk"]}, {"answer": "demonic", "hint": "synonyms for demonic", "clues": ["satanic", "unholy", "diabolical", "infernal", "fiendish", "hellish", "demonic"]}, {"answer": "dendriform", "hint": "synonyms for dendriform", "clues": ["tree-shaped", "dendroid", "treelike", "arborescent", "arboreal", "arboreous", "arboriform", "arboresque", "dendriform"]}, {"answer": "dendroid", "hint": "synonyms for dendroid", "clues": ["dendriform", "tree-shaped", "treelike", "arborescent", "arboreal", "arboreous", "arboriform", "dendroidal", "arboresque"]}, {"answer": "dendroidal", "hint": "synonyms for dendroidal", "clues": ["dendriform", "tree-shaped", "dendroid", "treelike", "arborescent", "arboreal", "arboreous", "arboriform", "arboresque"]}, {"answer": "denigrating", "hint": "synonyms for denigrating", "clues": ["libellous", "denigrative", "calumnious", "slanderous", "calumniatory", "defamatory", "denigratory", "denigrating"]}, {"answer": "denigrative", "hint": "synonyms for denigrative", "clues": ["libellous", "calumnious", "slanderous", "denigrating", "calumniatory", "defamatory", "denigratory", "denigrative"]}, {"answer": "denigratory", "hint": "synonyms for denigratory", "clues": ["libellous", "denigrative", "calumnious", "slanderous", "denigrating", "calumniatory", "defamatory", "denigratory"]}, {"answer": "dense", "hint": "synonyms for dense", "clues": ["dim", "impenetrable", "dull", "thick", "obtuse", "slow", "dumb", "heavy", "dense"]}, {"answer": "departed", "hint": "synonyms for departed", "clues": ["bygone", "at rest", "bypast", "at peace", "foregone", "asleep", "deceased", "gone", "departed"]}, {"answer": "dependable", "hint": "synonyms for dependable", "clues": ["rock-steady", "true", "good", "safe", "steady-going", "reliable", "honest", "secure", "dependable"]}, {"answer": "dependant", "hint": "synonyms for dependant", "clues": ["drug-addicted", "qualified", "dependent", "strung-out", "hooked"]}, {"answer": "dependant_on", "hint": "synonyms for dependant on", "clues": ["contingent", "dependent upon", "depending on", "contingent upon", "dependant on"]}, {"answer": "dependant_upon", "hint": "synonyms for dependant upon", "clues": ["contingent on", "dependent upon", "depending on", "dependant on"]}, {"answer": "dependent", "hint": "synonyms for dependent", "clues": ["dependant", "subordinate", "strung-out", "drug-addicted", "qualified", "pendent", "subject", "hooked"]}, {"answer": "dependent_on", "hint": "synonyms for dependent on", "clues": ["contingent", "dependent upon", "depending on", "dependant on", "contingent upon"]}, {"answer": "dependent_upon", "hint": "synonyms for dependent upon", "clues": ["contingent", "dependant upon", "depending on", "contingent upon", "dependent on"]}, {"answer": "depending_on", "hint": "synonyms for depending on", "clues": ["contingent", "dependent upon", "dependant on", "contingent upon", "depending on"]}, {"answer": "deplorable", "hint": "synonyms for deplorable", "clues": ["distressing", "wretched", "sorry", "condemnable", "reprehensible", "vicious", "execrable", "sad", "lamentable", "miserable", "woeful", "pitiful", "criminal", "deplorable"]}, {"answer": "deprecating", "hint": "synonyms for deprecating", "clues": ["depreciative", "slighting", "depreciatory", "belittling", "deprecating"]}, {"answer": "deprecative", "hint": "synonyms for deprecative", "clues": ["depreciative", "deprecating", "slighting", "depreciatory", "belittling"]}, {"answer": "deprecatory", "hint": "synonyms for deprecatory", "clues": ["depreciative", "deprecating", "slighting", "depreciatory", "belittling"]}, {"answer": "depreciative", "hint": "synonyms for depreciative", "clues": ["deprecating", "slighting", "deprecative", "depreciatory", "belittling"]}, {"answer": "depreciatory", "hint": "synonyms for depreciatory", "clues": ["deprecating", "slighting", "depreciative", "deprecatory", "belittling"]}, {"answer": "depressed", "hint": "synonyms for depressed", "clues": ["grim", "down in the mouth", "dispirited", "low", "down", "blue", "low-spirited", "downcast", "downhearted", "gloomy", "depressed"]}, {"answer": "derelict", "hint": "synonyms for derelict", "clues": ["bedraggled", "neglectful", "tatterdemalion", "woebegone", "tumble-down", "abandoned", "delinquent", "creaky", "remiss", "dilapidated", "run-down", "ramshackle", "broken-down", "flea-bitten", "decrepit", "deserted", "derelict"]}, {"answer": "derisive", "hint": "synonyms for derisive", "clues": ["mocking", "gibelike", "jeering", "taunting", "derisive"]}, {"answer": "derisory", "hint": "synonyms for derisory", "clues": ["idiotic", "ridiculous", "cockeyed", "absurd", "nonsensical", "ludicrous", "preposterous", "laughable", "derisory"]}, {"answer": "dermal", "hint": "synonyms for dermal", "clues": ["epidermal", "cuticular", "cutaneous", "cutaneal", "epidermic", "dermic", "dermal"]}, {"answer": "desiccated", "hint": "synonyms for desiccated", "clues": ["dried-out", "dehydrated", "desiccate", "arid", "dried"]}, {"answer": "desired", "hint": "synonyms for desired", "clues": ["sought after", "in demand", "craved", "coveted", "desired"]}, {"answer": "desolate", "hint": "synonyms for desolate", "clues": ["stark", "bare", "barren", "bleak", "desolate"]}, {"answer": "desperate", "hint": "synonyms for desperate", "clues": ["despairing", "do-or-die", "heroic", "dire", "desperate"]}, {"answer": "despicable", "hint": "synonyms for despicable", "clues": ["vile", "wretched", "slimy", "unworthy", "ugly", "worthless", "despicable"]}, {"answer": "despoiled", "hint": "synonyms for despoiled", "clues": ["ravaged", "pillaged", "sacked", "raped", "despoiled"]}, {"answer": "despotic", "hint": "synonyms for despotic", "clues": ["despotical", "authoritarian", "dictatorial", "tyrannical", "autocratic"]}, {"answer": "destitute", "hint": "synonyms for destitute", "clues": ["innocent", "devoid", "impoverished", "barren", "free", "poverty-stricken", "needy", "necessitous", "indigent", "destitute"]}, {"answer": "detached", "hint": "synonyms for detached", "clues": ["free", "degage", "isolated", "unaffectionate", "separated", "uncaring", "set-apart", "uninvolved", "detached"]}, {"answer": "determined", "hint": "synonyms for determined", "clues": ["set", "driven", "dictated", "compulsive", "determined"]}, {"answer": "detestable", "hint": "synonyms for detestable", "clues": ["repulsive", "execrable", "abominable", "repugnant", "abhorrent", "obscene", "odious", "detestable"]}, {"answer": "deuced", "hint": "synonyms for deuced", "clues": ["damned", "blasted", "infernal", "blamed", "blessed", "goddamned", "goddam", "darned", "damn", "deuced"]}, {"answer": "devastating", "hint": "synonyms for devastating", "clues": ["crushing", "annihilative", "annihilating", "withering", "devastating"]}, {"answer": "devil-may-care", "hint": "synonyms for devil-may-care", "clues": ["slaphappy", "harum-scarum", "freewheeling", "raffish", "happy-go-lucky", "carefree", "rakish", "devil-may-care"]}, {"answer": "devilish", "hint": "synonyms for devilish", "clues": ["mephistophelian", "rascally", "diabolical", "roguish", "devilish"]}, {"answer": "devious", "hint": "synonyms for devious", "clues": ["roundabout", "shifty", "circuitous", "oblique", "devious"]}, {"answer": "devoid", "hint": "synonyms for devoid", "clues": ["innocent", "destitute", "barren", "free", "devoid"]}, {"answer": "devout", "hint": "synonyms for devout", "clues": ["god-fearing", "earnest", "heartfelt", "dear", "devout"]}, {"answer": "dewy-eyed", "hint": "synonyms for dewy-eyed", "clues": ["childlike", "wide-eyed", "simple", "round-eyed", "dewy-eyed"]}, {"answer": "diabolic", "hint": "synonyms for diabolic", "clues": ["mephistophelian", "unholy", "diabolical", "infernal", "demonic", "devilish", "satanic", "fiendish", "hellish"]}, {"answer": "diabolical", "hint": "synonyms for diabolical", "clues": ["mephistophelian", "unholy", "infernal", "diabolic", "demonic", "devilish", "satanic", "fiendish", "hellish"]}, {"answer": "diagonal", "hint": "synonyms for diagonal", "clues": ["sloped", "aslope", "aslant", "sloping", "slanting", "slanted", "diagonal"]}, {"answer": "diametric", "hint": "synonyms for diametric", "clues": ["opposite", "diametral", "polar", "diametric"]}, {"answer": "diametrical", "hint": "synonyms for diametrical", "clues": ["opposite", "diametral", "polar", "diametric"]}, {"answer": "diaphanous", "hint": "synonyms for diaphanous", "clues": ["filmy", "vaporous", "gauze-like", "gossamer", "transparent", "see-through", "gauzy", "sheer", "cobwebby", "diaphanous"]}, {"answer": "dichromatic", "hint": "synonyms for dichromatic", "clues": ["bicolour", "bichrome", "bicolored", "dichromatic"]}, {"answer": "dictatorial", "hint": "synonyms for dictatorial", "clues": ["authoritarian", "overbearing", "despotic", "tyrannical", "autocratic", "dictatorial"]}, {"answer": "digressive", "hint": "synonyms for digressive", "clues": ["discursive", "tangential", "rambling", "excursive", "digressive"]}, {"answer": "dilapidated", "hint": "synonyms for dilapidated", "clues": ["tatterdemalion", "derelict", "tumble-down", "ramshackle", "broken-down", "bedraggled", "dilapidated"]}, {"answer": "dim", "hint": "synonyms for dim", "clues": ["subdued", "vague", "black", "wispy", "shadowy", "dull", "dimmed", "dense", "faint", "bleak", "obtuse", "slow", "dumb", "dim"]}, {"answer": "dim-sighted", "hint": "synonyms for dim-sighted", "clues": ["visually impaired", "near-blind", "visually challenged", "sand-blind", "purblind", "dim-sighted"]}, {"answer": "diminished", "hint": "synonyms for diminished", "clues": ["wasted", "belittled", "lessened", "small", "weakened", "vitiated", "atrophied", "diminished"]}, {"answer": "diminutive", "hint": "synonyms for diminutive", "clues": ["lilliputian", "petite", "flyspeck", "midget", "bantam", "tiny", "diminutive"]}, {"answer": "dingy", "hint": "synonyms for dingy", "clues": ["gloomy", "sorry", "drab", "dark", "muddied", "grimy", "dismal", "drear", "disconsolate", "blue", "dirty", "muddy", "grungy", "raunchy", "grubby", "begrimed", "dingy"]}, {"answer": "dire", "hint": "synonyms for dire", "clues": ["desperate", "horrendous", "fearsome", "dreaded", "fearful", "dread", "direful", "frightening", "terrible", "dreadful", "horrific", "awful", "dire"]}, {"answer": "directionless", "hint": "synonyms for directionless", "clues": ["planless", "aimless", "rudderless", "adrift", "afloat", "undirected", "directionless"]}, {"answer": "direful", "hint": "synonyms for direful", "clues": ["dire", "horrendous", "fearsome", "dreaded", "fearful", "dread", "frightening", "terrible", "dreadful", "horrific", "awful", "direful"]}, {"answer": "dirty", "hint": "synonyms for dirty", "clues": ["filthy", "ill-gotten", "foul", "unclean", "lousy", "contaminating", "soiled", "marked-up", "muddied", "muddy", "cheating", "sordid", "dingy", "pestiferous", "unsporting", "unsportsmanlike", "dirty"]}, {"answer": "disappointed", "hint": "synonyms for disappointed", "clues": ["thwarted", "defeated", "discomfited", "foiled", "frustrated", "disappointed"]}, {"answer": "disastrous", "hint": "synonyms for disastrous", "clues": ["fateful", "calamitous", "black", "fatal", "disastrous"]}, {"answer": "discharged", "hint": "synonyms for discharged", "clues": ["fired", "pink-slipped", "dismissed", "laid-off", "discharged"]}, {"answer": "discomfited", "hint": "synonyms for discomfited", "clues": ["thwarted", "defeated", "disappointed", "foiled", "frustrated", "discomfited"]}, {"answer": "disconnected", "hint": "synonyms for disconnected", "clues": ["illogical", "abrupt", "fragmented", "unconnected", "confused", "staccato", "scattered", "disordered", "disjointed", "disunited", "split", "garbled", "disconnected"]}, {"answer": "disconsolate", "hint": "synonyms for disconsolate", "clues": ["unconsolable", "grim", "sorry", "drab", "dreary", "blue", "dark", "gloomy", "dingy", "dismal", "disconsolate"]}, {"answer": "discorporate", "hint": "synonyms for discorporate", "clues": ["bodiless", "disembodied", "unembodied", "discorporate"]}, {"answer": "discredited", "hint": "synonyms for discredited", "clues": ["dishonored", "damaged", "disgraced", "shamed", "discredited"]}, {"answer": "discrepant", "hint": "synonyms for discrepant", "clues": ["dissonant", "incompatible", "at variance", "inconsistent", "discrepant"]}, {"answer": "discriminating", "hint": "synonyms for discriminating", "clues": ["penetrating", "keen", "knifelike", "sharp", "incisive", "penetrative", "acute", "piercing", "discriminating"]}, {"answer": "discriminatory", "hint": "synonyms for discriminatory", "clues": ["prejudiced", "discriminative", "invidious", "preferential", "discriminatory"]}, {"answer": "discursive", "hint": "synonyms for discursive", "clues": ["digressive", "rambling", "excursive", "dianoetic", "discursive"]}, {"answer": "disdainful", "hint": "synonyms for disdainful", "clues": ["swaggering", "insulting", "contemptuous", "imperious", "sniffy", "lordly", "overbearing", "haughty", "prideful", "supercilious", "scornful", "disdainful"]}, {"answer": "disembodied", "hint": "synonyms for disembodied", "clues": ["bodiless", "unembodied", "discorporate", "disembodied"]}, {"answer": "disgraceful", "hint": "synonyms for disgraceful", "clues": ["ignominious", "black", "scandalous", "inglorious", "shameful", "shocking", "opprobrious", "disgraceful"]}, {"answer": "disgusted", "hint": "synonyms for disgusted", "clues": ["sick of", "fed up", "tired of", "sick", "disgusted"]}, {"answer": "disgustful", "hint": "synonyms for disgustful", "clues": ["repellent", "yucky", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "disgusting", "skanky", "distasteful", "disgustful"]}, {"answer": "disgusting", "hint": "synonyms for disgusting", "clues": ["repellent", "yucky", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "skanky", "distasteful", "disgustful", "disgusting"]}, {"answer": "disheveled", "hint": "synonyms for disheveled", "clues": ["dishevelled", "frowzled", "rumpled", "tousled"]}, {"answer": "dishevelled", "hint": "synonyms for dishevelled", "clues": ["tousled", "disheveled", "rumpled", "frowzled"]}, {"answer": "dishonest", "hint": "synonyms for dishonest", "clues": ["bribable", "corruptible", "dishonorable", "purchasable", "venal", "dishonest"]}, {"answer": "disjointed", "hint": "synonyms for disjointed", "clues": ["illogical", "unconnected", "confused", "dislocated", "scattered", "disordered", "separated", "disconnected", "garbled", "disjointed"]}, {"answer": "dismal", "hint": "synonyms for dismal", "clues": ["gloomy", "disconsolate", "grim", "dreary", "sorry", "blue", "dark", "drab", "dingy", "dismal"]}, {"answer": "dismissed", "hint": "synonyms for dismissed", "clues": ["discharged", "fired", "pink-slipped", "laid-off", "dismissed"]}, {"answer": "disordered", "hint": "synonyms for disordered", "clues": ["unordered", "illogical", "unconnected", "confused", "broken", "scattered", "garbled", "upset", "disconnected", "disjointed", "disordered"]}, {"answer": "disorderly", "hint": "synonyms for disorderly", "clues": ["topsy-turvy", "higgledy-piggledy", "jumbled", "chaotic", "hugger-mugger", "disorderly"]}, {"answer": "disoriented", "hint": "synonyms for disoriented", "clues": ["anomic", "lost", "confused", "alienated", "disoriented"]}, {"answer": "dispirited", "hint": "synonyms for dispirited", "clues": ["grim", "down in the mouth", "low", "listless", "depressed", "down", "blue", "low-spirited", "downcast", "downhearted", "gloomy", "dispirited"]}, {"answer": "disposed", "hint": "synonyms for disposed", "clues": ["inclined", "apt", "prepared", "fain", "given", "minded", "tending", "disposed"]}, {"answer": "disputatious", "hint": "synonyms for disputatious", "clues": ["disputative", "litigious", "contentious", "combative", "disputatious"]}, {"answer": "disputative", "hint": "synonyms for disputative", "clues": ["disputatious", "litigious", "contentious", "combative", "disputative"]}, {"answer": "disquieted", "hint": "synonyms for disquieted", "clues": ["distressed", "upset", "worried", "disturbed", "disquieted"]}, {"answer": "disruptive", "hint": "synonyms for disruptive", "clues": ["troubled", "tumultuous", "turbulent", "riotous", "disruptive"]}, {"answer": "dissident", "hint": "synonyms for dissident", "clues": ["dissentient", "heretical", "heterodox", "dissident"]}, {"answer": "dissipated", "hint": "synonyms for dissipated", "clues": ["libertine", "sporting", "degenerate", "fast", "dissolute", "degraded", "betting", "riotous", "card-playing", "profligate", "debauched", "dissipated"]}, {"answer": "dissolute", "hint": "synonyms for dissolute", "clues": ["libertine", "degenerate", "dissipated", "fast", "degraded", "riotous", "profligate", "debauched", "dissolute"]}, {"answer": "dissonant", "hint": "synonyms for dissonant", "clues": ["disharmonious", "discrepant", "unresolved", "discordant", "at variance", "inharmonic", "dissonant"]}, {"answer": "distant", "hint": "synonyms for distant", "clues": ["removed", "aloof", "upstage", "remote", "distant"]}, {"answer": "distasteful", "hint": "synonyms for distasteful", "clues": ["repellent", "yucky", "unsavoury", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "disgusting", "skanky", "disgustful", "distasteful"]}, {"answer": "distinct", "hint": "synonyms for distinct", "clues": ["trenchant", "decided", "discrete", "distinguishable", "clear-cut", "distinct"]}, {"answer": "distorted", "hint": "synonyms for distorted", "clues": ["malformed", "twisted", "misrepresented", "ill-shapen", "deformed", "misshapen", "perverted", "distorted"]}, {"answer": "distressed", "hint": "synonyms for distressed", "clues": ["unhappy", "hard put", "stressed", "disquieted", "dysphoric", "hard-pressed", "upset", "worried", "in a bad way", "disturbed"]}, {"answer": "distressful", "hint": "synonyms for distressful", "clues": ["distressing", "disturbing", "worrisome", "troubling", "perturbing", "worrying", "distressful"]}, {"answer": "distressing", "hint": "synonyms for distressing", "clues": ["deplorable", "sorry", "disturbing", "worrisome", "troubling", "perturbing", "sad", "lamentable", "pitiful", "distressful", "worrying", "distressing"]}, {"answer": "disturbed", "hint": "synonyms for disturbed", "clues": ["unbalanced", "maladjusted", "sick", "unhinged", "disquieted", "brainsick", "distressed", "upset", "worried", "mad", "demented", "crazy", "disturbed"]}, {"answer": "disturbing", "hint": "synonyms for disturbing", "clues": ["distressing", "worrisome", "troubling", "perturbing", "distressful", "worrying", "disturbing"]}, {"answer": "divided", "hint": "synonyms for divided", "clues": ["divided up", "dual-lane", "shared out", "shared", "divided"]}, {"answer": "divinatory", "hint": "synonyms for divinatory", "clues": ["vatical", "suppositional", "supposed", "hypothetical", "vatic", "conjectural", "supposititious", "mantic", "sibylline", "sibyllic", "divinatory"]}, {"answer": "divine", "hint": "synonyms for divine", "clues": ["godly", "inspired", "godlike", "providential", "elysian", "divine"]}, {"answer": "dizzy", "hint": "synonyms for dizzy", "clues": ["silly", "empty-headed", "airheaded", "featherbrained", "lightheaded", "giddy", "vertiginous", "woozy", "dizzy"]}, {"answer": "doable", "hint": "synonyms for doable", "clues": ["manageable", "achievable", "accomplishable", "realizable", "doable"]}, {"answer": "dodgy", "hint": "synonyms for dodgy", "clues": ["knavish", "crafty", "dicey", "sly", "tricky", "chancy", "chanceful", "cunning", "slick", "foxy", "wily", "guileful", "dodgy"]}, {"answer": "dog-tired", "hint": "synonyms for dog-tired", "clues": ["worn out", "fatigued", "fagged", "exhausted", "played out", "washed-out", "spent", "dog-tired"]}, {"answer": "dogged", "hint": "synonyms for dogged", "clues": ["dour", "tenacious", "pertinacious", "persistent", "unyielding", "dogged"]}, {"answer": "doled_out", "hint": "synonyms for doled out", "clues": ["meted out", "parceled out", "apportioned", "dealt out", "doled out"]}, {"answer": "dolled_up", "hint": "synonyms for dolled up", "clues": ["togged up", "spruced up", "spiffed up", "dressed to the nines", "dressed", "dressed to kill", "dressed-up", "dolled up"]}, {"answer": "dolorous", "hint": "synonyms for dolorous", "clues": ["weeping", "dolourous", "lachrymose", "tearful"]}, {"answer": "dolourous", "hint": "synonyms for dolourous", "clues": ["weeping", "lachrymose", "tearful", "dolorous"]}, {"answer": "dominant", "hint": "synonyms for dominant", "clues": ["prevailing", "rife", "predominant", "prevalent", "dominant"]}, {"answer": "dominating", "hint": "synonyms for dominating", "clues": ["magisterial", "ascendent", "autocratic", "high-and-mighty", "commanding", "peremptory", "bossy", "overlooking", "dominating"]}, {"answer": "done_for", "hint": "synonyms for done for", "clues": ["sunk", "kaput", "undone", "washed-up", "gone", "ruined", "done for"]}, {"answer": "doomed", "hint": "synonyms for doomed", "clues": ["unlucky", "damned", "ill-omened", "ill-fated", "ill-starred", "fated", "cursed", "unredeemed", "unsaved", "doomed"]}, {"answer": "dopey", "hint": "synonyms for dopey", "clues": ["goosy", "gooselike", "anserine", "dopy", "jerky", "foolish"]}, {"answer": "dopy", "hint": "synonyms for dopy", "clues": ["goosy", "gooselike", "anserine", "foolish", "jerky", "dopey"]}, {"answer": "dormant", "hint": "synonyms for dormant", "clues": ["sleeping", "torpid", "inactive", "hibernating", "abeyant", "dormant"]}, {"answer": "dotted", "hint": "synonyms for dotted", "clues": ["flecked", "stippled", "specked", "dashed", "dotted"]}, {"answer": "dotty", "hint": "synonyms for dotty", "clues": ["balmy", "gaga", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "crackers", "fruity", "wild", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "crazy", "dotty"]}, {"answer": "double", "hint": "synonyms for double", "clues": ["duple", "treble", "three-fold", "dual", "bivalent", "forked", "twofold", "doubled"]}, {"answer": "double-dealing", "hint": "synonyms for double-dealing", "clues": ["double-tongued", "duplicitous", "two-faced", "deceitful", "double-faced", "ambidextrous", "double-dealing"]}, {"answer": "double-dyed", "hint": "synonyms for double-dyed", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "utter", "perfect", "pure", "everlasting", "arrant", "unadulterated", "complete", "double-dyed"]}, {"answer": "double-faced", "hint": "synonyms for double-faced", "clues": ["double-tongued", "double-dealing", "duplicitous", "two-faced", "deceitful", "ambidextrous", "double-faced"]}, {"answer": "double-tongued", "hint": "synonyms for double-tongued", "clues": ["duplicitous", "double-dealing", "two-faced", "ambidextrous", "deceitful", "double-faced", "double-tongued"]}, {"answer": "doubtful", "hint": "synonyms for doubtful", "clues": ["dubious", "tentative", "in question", "dubitable", "doubtful"]}, {"answer": "doughnut-shaped", "hint": "synonyms for doughnut-shaped", "clues": ["circinate", "annulated", "ringed", "annular", "ring-shaped", "doughnut-shaped"]}, {"answer": "dour", "hint": "synonyms for dour", "clues": ["sullen", "sour", "grim", "forbidding", "saturnine", "morose", "dogged", "dark", "glowering", "glum", "tenacious", "pertinacious", "moody", "persistent", "unyielding", "dour"]}, {"answer": "down", "hint": "synonyms for down", "clues": ["grim", "mastered", "down in the mouth", "dispirited", "low", "depressed", "blue", "low-spirited", "down pat", "downcast", "downhearted", "gloomy", "downward", "down"]}, {"answer": "down_in_the_mouth", "hint": "synonyms for down in the mouth", "clues": ["grim", "dispirited", "low", "depressed", "down", "blue", "low-spirited", "downcast", "downhearted", "gloomy", "down in the mouth"]}, {"answer": "downcast", "hint": "synonyms for downcast", "clues": ["grim", "down in the mouth", "dispirited", "low", "depressed", "down", "blue", "low-spirited", "downhearted", "gloomy", "downcast"]}, {"answer": "downhearted", "hint": "synonyms for downhearted", "clues": ["grim", "down in the mouth", "dispirited", "low", "depressed", "down", "blue", "low-spirited", "downcast", "gloomy", "downhearted"]}, {"answer": "downright", "hint": "synonyms for downright", "clues": ["absolute", "sheer", "rank", "out-and-out", "right-down", "downright"]}, {"answer": "downy", "hint": "synonyms for downy", "clues": ["fluffy", "flossy", "pubescent", "downlike", "puberulent", "sericeous", "downy"]}, {"answer": "drab", "hint": "synonyms for drab", "clues": ["grim", "disconsolate", "sorry", "dreary", "somber", "olive-drab", "blue", "dark", "dismal", "gloomy", "dingy", "sombre", "drab"]}, {"answer": "draped", "hint": "synonyms for draped", "clues": ["wrapped", "mantled", "clothed", "cloaked", "draped"]}, {"answer": "drawn", "hint": "synonyms for drawn", "clues": ["careworn", "worn", "raddled", "haggard", "drawn"]}, {"answer": "drawn-out", "hint": "synonyms for drawn-out", "clues": ["prolonged", "protracted", "extended", "lengthy", "drawn-out"]}, {"answer": "dread", "hint": "synonyms for dread", "clues": ["dire", "horrendous", "fearsome", "dreaded", "fearful", "direful", "frightening", "terrible", "dreadful", "horrific", "awful", "dread"]}, {"answer": "dreaded", "hint": "synonyms for dreaded", "clues": ["dire", "horrendous", "fearsome", "fearful", "dread", "direful", "frightening", "terrible", "dreadful", "horrific", "awful", "dreaded"]}, {"answer": "dreadful", "hint": "synonyms for dreadful", "clues": ["dire", "horrendous", "abominable", "fearsome", "dreaded", "fearful", "atrocious", "dread", "unspeakable", "painful", "direful", "frightening", "terrible", "horrific", "awful", "dreadful"]}, {"answer": "dreamy", "hint": "synonyms for dreamy", "clues": ["languorous", "lackadaisical", "moony", "woolgathering", "languid", "dreamy"]}, {"answer": "drear", "hint": "synonyms for drear", "clues": ["gloomy", "disconsolate", "grim", "dreary", "sorry", "blue", "dark", "drab", "dingy", "dismal"]}, {"answer": "dreary", "hint": "synonyms for dreary", "clues": ["gloomy", "disconsolate", "grim", "sorry", "blue", "dark", "drab", "dingy", "drear", "dismal"]}, {"answer": "dressed", "hint": "synonyms for dressed", "clues": ["robed", "spruced up", "dressed to the nines", "dolled up", "dressed-up", "habilimented", "attired", "togged up", "appareled", "spiffed up", "dressed to kill", "garmented", "garbed", "polished", "dressed"]}, {"answer": "dressed-up", "hint": "synonyms for dressed-up", "clues": ["togged up", "spruced up", "spiffed up", "dressed to the nines", "dressed to kill", "dolled up", "dressed", "dressed-up"]}, {"answer": "dressed_to_kill", "hint": "synonyms for dressed to kill", "clues": ["togged up", "spruced up", "spiffed up", "dressed to the nines", "dressed", "dolled up", "dressed-up", "dressed to kill"]}, {"answer": "dressed_to_the_nines", "hint": "synonyms for dressed to the nines", "clues": ["togged up", "spruced up", "spiffed up", "dressed", "dressed to kill", "dolled up", "dressed-up", "dressed to the nines"]}, {"answer": "dried-up", "hint": "synonyms for dried-up", "clues": ["shriveled", "sear", "withered", "sere", "dried-up"]}, {"answer": "drifting", "hint": "synonyms for drifting", "clues": ["floating", "aimless", "vagrant", "vagabond", "drifting"]}, {"answer": "drippy", "hint": "synonyms for drippy", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "drizzly", "drippy"]}, {"answer": "driven", "hint": "synonyms for driven", "clues": ["determined", "goaded", "impelled", "compulsive", "driven"]}, {"answer": "drooping", "hint": "synonyms for drooping", "clues": ["nodding", "weeping", "pendulous", "flagging", "droopy", "cernuous", "sagging", "drooping"]}, {"answer": "drowsy", "hint": "synonyms for drowsy", "clues": ["dozy", "yawning", "oscitant", "drowsing", "drowsy"]}, {"answer": "drug-addicted", "hint": "synonyms for drug-addicted", "clues": ["dependant", "strung-out", "hooked", "drug-addicted"]}, {"answer": "dry", "hint": "synonyms for dry", "clues": ["wry", "ironical", "juiceless", "teetotal", "dry"]}, {"answer": "dual", "hint": "synonyms for dual", "clues": ["duple", "treble", "three-fold", "twofold", "double", "dual"]}, {"answer": "ductile", "hint": "synonyms for ductile", "clues": ["tractile", "tensile", "pliable", "malleable", "pliant", "ductile"]}, {"answer": "dulcet", "hint": "synonyms for dulcet", "clues": ["honeyed", "mellifluous", "sweet", "mellisonant", "dulcet"]}, {"answer": "dull", "hint": "synonyms for dull", "clues": ["softened", "irksome", "dim", "tedious", "tiresome", "muffled", "dense", "wearisome", "muted", "ho-hum", "leaden", "sluggish", "boring", "deadening", "obtuse", "thudding", "slow", "dumb", "dull"]}, {"answer": "dumb", "hint": "synonyms for dumb", "clues": ["dim", "speechless", "silent", "obtuse", "slow", "dull", "dense", "mute", "dumb"]}, {"answer": "dumbfounded", "hint": "synonyms for dumbfounded", "clues": ["flabbergasted", "stupefied", "thunderstruck", "dumbstricken", "dumbstruck", "dumfounded"]}, {"answer": "dumbstricken", "hint": "synonyms for dumbstricken", "clues": ["dumbfounded", "flabbergasted", "stupefied", "thunderstruck", "dumbstruck", "dumbstricken"]}, {"answer": "dumbstruck", "hint": "synonyms for dumbstruck", "clues": ["dumbfounded", "flabbergasted", "stupefied", "thunderstruck", "dumbstricken", "dumbstruck"]}, {"answer": "dumfounded", "hint": "synonyms for dumfounded", "clues": ["dumbfounded", "flabbergasted", "stupefied", "thunderstruck", "dumbstricken", "dumbstruck"]}, {"answer": "dumpy", "hint": "synonyms for dumpy", "clues": ["squat", "chunky", "roly-poly", "stumpy", "squatty", "low-set", "podgy", "pudgy", "tubby", "dumpy"]}, {"answer": "duncical", "hint": "synonyms for duncical", "clues": ["boneheaded", "duncish", "wooden-headed", "thick-skulled", "thick", "fatheaded", "thickheaded", "loggerheaded", "blockheaded", "duncical"]}, {"answer": "duncish", "hint": "synonyms for duncish", "clues": ["boneheaded", "wooden-headed", "thick-skulled", "thick", "fatheaded", "thickheaded", "duncical", "loggerheaded", "blockheaded", "duncish"]}, {"answer": "duplicitous", "hint": "synonyms for duplicitous", "clues": ["double-tongued", "double-dealing", "two-faced", "ambidextrous", "deceitful", "double-faced", "duplicitous"]}, {"answer": "durable", "hint": "synonyms for durable", "clues": ["indestructible", "perdurable", "lasting", "long-lived", "undestroyable", "long-lasting", "long-wearing", "durable"]}, {"answer": "dusky", "hint": "synonyms for dusky", "clues": ["twilight", "swart", "swarthy", "dark-skinned", "dusky"]}, {"answer": "dusty", "hint": "synonyms for dusty", "clues": ["cold", "stale", "moth-eaten", "dust-covered", "dusty"]}, {"answer": "earlier", "hint": "synonyms for earlier", "clues": ["early", "earliest", "other", "former", "earlier"]}, {"answer": "earliest", "hint": "synonyms for earliest", "clues": ["earlier", "early", "other", "former", "earliest"]}, {"answer": "early-blooming", "hint": "synonyms for early-blooming", "clues": ["spring-flowering", "late-spring-blooming", "early-flowering", "early-blooming"]}, {"answer": "early-flowering", "hint": "synonyms for early-flowering", "clues": ["early-blooming", "spring-flowering", "late-spring-blooming", "early-flowering"]}, {"answer": "earnest", "hint": "synonyms for earnest", "clues": ["businesslike", "dear", "sincere", "solemn", "devout", "heartfelt", "earnest"]}, {"answer": "earthy", "hint": "synonyms for earthy", "clues": ["crude", "gross", "vulgar", "down-to-earth", "earthy"]}, {"answer": "easy", "hint": "synonyms for easy", "clues": ["gentle", "comfortable", "light", "leisurely", "loose", "soft", "easygoing", "well-to-do", "well-situated", "promiscuous", "wanton", "well-heeled", "well-off", "prosperous", "sluttish", "well-fixed", "easy"]}, {"answer": "easygoing", "hint": "synonyms for easygoing", "clues": ["leisurely", "soft", "easy", "cushy", "easygoing"]}, {"answer": "eccentric", "hint": "synonyms for eccentric", "clues": ["flaky", "nonconcentric", "freakish", "gonzo", "outlandish", "bizarre", "freaky", "outre", "off-the-wall", "eccentric"]}, {"answer": "echoic", "hint": "synonyms for echoic", "clues": ["imitative", "onomatopoeic", "echolike", "echoic"]}, {"answer": "economical", "hint": "synonyms for economical", "clues": ["frugal", "scotch", "stinting", "sparing", "economic"]}, {"answer": "ecstatic", "hint": "synonyms for ecstatic", "clues": ["rhapsodic", "rapturous", "rapt", "enraptured", "ecstatic"]}, {"answer": "ecumenical", "hint": "synonyms for ecumenical", "clues": ["cosmopolitan", "worldwide", "ecumenic", "oecumenical", "general", "universal"]}, {"answer": "edacious", "hint": "synonyms for edacious", "clues": ["wolfish", "ravening", "ravenous", "esurient", "rapacious", "voracious", "edacious"]}, {"answer": "edgy", "hint": "synonyms for edgy", "clues": ["high-strung", "highly strung", "restive", "nervy", "uptight", "overstrung", "jittery", "jumpy", "edgy"]}, {"answer": "effective", "hint": "synonyms for effective", "clues": ["in force", "good", "efficient", "effectual", "in effect", "efficacious", "effective"]}, {"answer": "effectual", "hint": "synonyms for effectual", "clues": ["effective", "legal", "efficacious", "sound", "effectual"]}, {"answer": "effeminate", "hint": "synonyms for effeminate", "clues": ["cissy", "emasculate", "sissy", "epicene", "sissyish", "sissified", "effeminate"]}, {"answer": "effervescent", "hint": "synonyms for effervescent", "clues": ["frothy", "sparkling", "scintillating", "sparkly", "bubbling", "effervescent"]}, {"answer": "effervescing", "hint": "synonyms for effervescing", "clues": ["frothy", "foamy", "bubbling", "bubbly", "spumy", "foaming", "effervescing"]}, {"answer": "effulgent", "hint": "synonyms for effulgent", "clues": ["refulgent", "radiant", "beaming", "beamy"]}, {"answer": "effusive", "hint": "synonyms for effusive", "clues": ["burbly", "gushy", "burbling", "gushing", "effusive"]}, {"answer": "egg-shaped", "hint": "synonyms for egg-shaped", "clues": ["oval", "elliptic", "ovoid", "prolate", "oviform", "oval-shaped", "ovate", "egg-shaped"]}, {"answer": "egotistic", "hint": "synonyms for egotistic", "clues": ["vain", "narcissistic", "conceited", "swollen", "egotistical", "self-conceited", "self-loving", "swollen-headed"]}, {"answer": "egotistical", "hint": "synonyms for egotistical", "clues": ["vain", "narcissistic", "conceited", "swollen", "self-conceited", "self-loving", "egotistic", "swollen-headed"]}, {"answer": "egregious", "hint": "synonyms for egregious", "clues": ["glaring", "flagrant", "rank", "gross", "crying", "egregious"]}, {"answer": "elementary", "hint": "synonyms for elementary", "clues": ["simple", "primary", "elemental", "unproblematic", "uncomplicated", "elementary"]}, {"answer": "elevated", "hint": "synonyms for elevated", "clues": ["rarified", "idealistic", "noble-minded", "grand", "high-flown", "high-minded", "sublime", "lofty", "exalted", "raised", "elevated"]}, {"answer": "elfin", "hint": "synonyms for elfin", "clues": ["elfish", "elvish", "fey", "elflike", "elfin"]}, {"answer": "elliptic", "hint": "synonyms for elliptic", "clues": ["oval", "ovoid", "prolate", "egg-shaped", "oviform", "elliptical", "oval-shaped", "ovate"]}, {"answer": "elliptical", "hint": "synonyms for elliptical", "clues": ["oval", "elliptic", "ovoid", "prolate", "egg-shaped", "oviform", "oval-shaped", "ovate"]}, {"answer": "elongated", "hint": "synonyms for elongated", "clues": ["elongate", "lengthened", "extended", "prolonged"]}, {"answer": "eloquent", "hint": "synonyms for eloquent", "clues": ["silver-tongued", "smooth-spoken", "fluent", "facile", "silver", "eloquent"]}, {"answer": "elusive", "hint": "synonyms for elusive", "clues": ["problematic", "tough", "subtle", "knotty", "baffling", "elusive"]}, {"answer": "emaciated", "hint": "synonyms for emaciated", "clues": ["wasted", "haggard", "skeletal", "bony", "gaunt", "pinched", "cadaverous", "emaciated"]}, {"answer": "emasculate", "hint": "synonyms for emasculate", "clues": ["cissy", "sissy", "epicene", "sissyish", "effeminate", "sissified", "emasculate"]}, {"answer": "embarrassed", "hint": "synonyms for embarrassed", "clues": ["chagrined", "mortified", "abashed", "humiliated", "embarrassed"]}, {"answer": "embarrassing", "hint": "synonyms for embarrassing", "clues": ["awkward", "mortifying", "unenviable", "sticky", "embarrassing"]}, {"answer": "emblematic", "hint": "synonyms for emblematic", "clues": ["symbolic", "typic", "exemplary", "emblematical"]}, {"answer": "embodied", "hint": "synonyms for embodied", "clues": ["corporal", "incarnate", "corporate", "bodied"]}, {"answer": "eminent", "hint": "synonyms for eminent", "clues": ["lofty", "high", "towering", "soaring", "eminent"]}, {"answer": "emphatic", "hint": "synonyms for emphatic", "clues": ["emphasized", "forceful", "exclamatory", "emphatic"]}, {"answer": "empty-headed", "hint": "synonyms for empty-headed", "clues": ["dizzy", "silly", "giddy", "airheaded", "light-headed", "featherbrained", "empty-headed"]}, {"answer": "enamored", "hint": "synonyms for enamored", "clues": ["taken with", "soft on", "potty", "in love", "smitten", "infatuated", "enamored"]}, {"answer": "enceinte", "hint": "synonyms for enceinte", "clues": ["big", "heavy", "expectant", "with child", "gravid", "great", "large", "enceinte"]}, {"answer": "enchanting", "hint": "synonyms for enchanting", "clues": ["enthralling", "captivating", "bewitching", "entrancing", "fascinating", "enchanting"]}, {"answer": "encompassing", "hint": "synonyms for encompassing", "clues": ["all-embracing", "across-the-board", "all-inclusive", "extensive", "panoptic", "wide", "surrounding", "all-encompassing", "blanket", "circumferent", "broad"]}, {"answer": "ended", "hint": "synonyms for ended", "clues": ["all over", "terminated", "concluded", "over", "complete", "ended"]}, {"answer": "endemic", "hint": "synonyms for endemic", "clues": ["endemical", "indigenous", "autochthonal", "autochthonic", "autochthonous"]}, {"answer": "endless", "hint": "synonyms for endless", "clues": ["sempiternal", "dateless", "eternal", "interminable", "endless"]}, {"answer": "engaged", "hint": "synonyms for engaged", "clues": ["set-aside", "in use", "booked", "meshed", "busy", "occupied", "intermeshed", "engaged"]}, {"answer": "engraved", "hint": "synonyms for engraved", "clues": ["incised", "etched", "graven", "inscribed", "engraved"]}, {"answer": "engrossed", "hint": "synonyms for engrossed", "clues": ["captive", "absorbed", "enwrapped", "intent", "engrossed"]}, {"answer": "engrossing", "hint": "synonyms for engrossing", "clues": ["riveting", "absorbing", "fascinating", "gripping", "engrossing"]}, {"answer": "enlarged", "hint": "synonyms for enlarged", "clues": ["exaggerated", "magnified", "blown-up", "hypertrophied", "enlarged"]}, {"answer": "enraged", "hint": "synonyms for enraged", "clues": ["angered", "maddened", "infuriated", "furious", "enraged"]}, {"answer": "enraptured", "hint": "synonyms for enraptured", "clues": ["rapturous", "rapt", "rhapsodic", "ecstatic", "enraptured"]}, {"answer": "ensuant", "hint": "synonyms for ensuant", "clues": ["accompanying", "consequent", "attendant", "concomitant", "resultant", "incidental", "sequent", "ensuant"]}, {"answer": "enthralled", "hint": "synonyms for enthralled", "clues": ["delighted", "charmed", "captivated", "entranced", "beguiled", "enthralled"]}, {"answer": "enthralling", "hint": "synonyms for enthralling", "clues": ["captivating", "bewitching", "entrancing", "enchanting", "fascinating", "enthralling"]}, {"answer": "entire", "hint": "synonyms for entire", "clues": ["total", "intact", "full", "integral", "entire"]}, {"answer": "entranced", "hint": "synonyms for entranced", "clues": ["delighted", "charmed", "captivated", "enthralled", "beguiled", "entranced"]}, {"answer": "entrancing", "hint": "synonyms for entrancing", "clues": ["enthralling", "captivating", "bewitching", "enchanting", "fascinating", "entrancing"]}, {"answer": "enwrapped", "hint": "synonyms for enwrapped", "clues": ["captive", "absorbed", "engrossed", "wrapped", "intent"]}, {"answer": "eonian", "hint": "synonyms for eonian", "clues": ["ageless", "eternal", "unending", "aeonian", "everlasting", "unceasing", "perpetual"]}, {"answer": "ephemeral", "hint": "synonyms for ephemeral", "clues": ["transient", "short-lived", "fugacious", "passing", "transitory", "ephemeral"]}, {"answer": "epicene", "hint": "synonyms for epicene", "clues": ["cissy", "emasculate", "sissy", "sissyish", "bisexual", "effeminate", "sissified", "epicene"]}, {"answer": "epicurean", "hint": "synonyms for epicurean", "clues": ["voluptuous", "hedonic", "luxuriant", "sybaritic", "luxurious", "hedonistic", "voluptuary", "epicurean"]}, {"answer": "equanimous", "hint": "synonyms for equanimous", "clues": ["poised", "collected", "self-collected", "self-contained", "self-possessed", "equanimous"]}, {"answer": "equipped", "hint": "synonyms for equipped", "clues": ["weaponed", "equipt", "fitted out", "furnished", "equipped"]}, {"answer": "erose", "hint": "synonyms for erose", "clues": ["toothed", "jagged", "notched", "jaggy", "erose"]}, {"answer": "erosive", "hint": "synonyms for erosive", "clues": ["mordant", "caustic", "vitriolic", "corrosive", "erosive"]}, {"answer": "erratic", "hint": "synonyms for erratic", "clues": ["wandering", "planetary", "temperamental", "fickle", "quicksilver", "mercurial", "erratic"]}, {"answer": "erstwhile", "hint": "synonyms for erstwhile", "clues": ["old", "one-time", "sometime", "former", "quondam", "erstwhile"]}, {"answer": "essential", "hint": "synonyms for essential", "clues": ["all important", "of the essence", "crucial", "indispensable", "substantive", "essential"]}, {"answer": "established", "hint": "synonyms for established", "clues": ["constituted", "naturalized", "accomplished", "effected", "conventional", "established"]}, {"answer": "estimable", "hint": "synonyms for estimable", "clues": ["good", "computable", "honorable", "respectable", "estimable"]}, {"answer": "esurient", "hint": "synonyms for esurient", "clues": ["voracious", "sharp-set", "edacious", "ravenous", "greedy", "starved", "wolfish", "ravening", "rapacious", "devouring", "famished", "avid", "esurient"]}, {"answer": "etched", "hint": "synonyms for etched", "clues": ["incised", "engraved", "graven", "inscribed", "etched"]}, {"answer": "eternal", "hint": "synonyms for eternal", "clues": ["ageless", "unending", "endless", "eonian", "everlasting", "unceasing", "perpetual", "interminable", "eternal"]}, {"answer": "ethereal", "hint": "synonyms for ethereal", "clues": ["supernal", "airy", "gossamer", "aerial", "aeriform", "celestial", "aery", "ethereal"]}, {"answer": "ethnic", "hint": "synonyms for ethnic", "clues": ["ethnical", "heathen", "pagan", "heathenish", "cultural"]}, {"answer": "evaporable", "hint": "synonyms for evaporable", "clues": ["volatilizable", "vaporific", "vapourisable", "evaporable"]}, {"answer": "even", "hint": "synonyms for even", "clues": ["level", "fifty-fifty", "tied", "regular", "even"]}, {"answer": "everlasting", "hint": "synonyms for everlasting", "clues": ["sodding", "staring", "thoroughgoing", "double-dyed", "arrant", "unceasing", "perpetual", "unadulterated", "complete", "ageless", "eternal", "unending", "eonian", "consummate", "gross", "stark", "utter", "perfect", "pure", "everlasting"]}, {"answer": "everyday", "hint": "synonyms for everyday", "clues": ["casual", "workaday", "daily", "mundane", "routine", "unremarkable", "quotidian", "everyday"]}, {"answer": "evident", "hint": "synonyms for evident", "clues": ["apparent", "observable", "unmistakable", "manifest", "discernible", "patent", "plain", "evident"]}, {"answer": "evil", "hint": "synonyms for evil", "clues": ["vicious", "malign", "malevolent", "malefic", "evil"]}, {"answer": "evocative", "hint": "synonyms for evocative", "clues": ["resonant", "remindful", "redolent", "reminiscent", "evocative"]}, {"answer": "ex", "hint": "synonyms for ex", "clues": ["outmoded", "old-hat", "demode", "antique", "old-fashioned", "passe", "ex"]}, {"answer": "exacting", "hint": "synonyms for exacting", "clues": ["strict", "stern", "exigent", "fastidious", "exacting"]}, {"answer": "exaggerated", "hint": "synonyms for exaggerated", "clues": ["magnified", "overdone", "overstated", "enlarged", "exaggerated"]}, {"answer": "exalted", "hint": "synonyms for exalted", "clues": ["rarified", "idealistic", "noble-minded", "grand", "elevated", "high-flown", "sublime", "lofty", "high-minded", "exalted"]}, {"answer": "exasperating", "hint": "synonyms for exasperating", "clues": ["exacerbating", "aggravating", "maddening", "vexing", "infuriating", "exasperating"]}, {"answer": "exceeding", "hint": "synonyms for exceeding", "clues": ["olympian", "surpassing", "exceptional", "prodigious", "exceeding"]}, {"answer": "exceptional", "hint": "synonyms for exceptional", "clues": ["particular", "especial", "exceeding", "olympian", "surpassing", "prodigious", "exceptional"]}, {"answer": "excess", "hint": "synonyms for excess", "clues": ["supererogatory", "extra", "redundant", "surplus", "supernumerary", "superfluous", "spare", "excess"]}, {"answer": "excessive", "hint": "synonyms for excessive", "clues": ["extravagant", "inordinate", "exuberant", "overweening", "unreasonable", "undue", "excessive"]}, {"answer": "exchangeable", "hint": "synonyms for exchangeable", "clues": ["similar", "convertible", "standardized", "interchangeable", "exchangeable"]}, {"answer": "excited", "hint": "synonyms for excited", "clues": ["activated", "frantic", "delirious", "emotional", "worked up", "unrestrained", "mad", "aroused", "excited"]}, {"answer": "excruciating", "hint": "synonyms for excruciating", "clues": ["torturous", "agonizing", "torturesome", "harrowing", "torturing", "excruciating"]}, {"answer": "exculpated", "hint": "synonyms for exculpated", "clues": ["exonerated", "cleared", "vindicated", "absolved", "clear", "exculpated"]}, {"answer": "execrable", "hint": "synonyms for execrable", "clues": ["deplorable", "wretched", "miserable", "abominable", "damnable", "woeful", "odious", "detestable", "execrable"]}, {"answer": "executable", "hint": "synonyms for executable", "clues": ["practicable", "viable", "workable", "feasible", "executable"]}, {"answer": "exemplary", "hint": "synonyms for exemplary", "clues": ["warning", "cautionary", "monitory", "typic", "model", "emblematic", "exemplary"]}, {"answer": "exhausted", "hint": "synonyms for exhausted", "clues": ["dog-tired", "worn out", "fatigued", "fagged", "played out", "washed-out", "spent", "exhausted"]}, {"answer": "exhausting", "hint": "synonyms for exhausting", "clues": ["tiring", "draining", "wearing", "exhausting"]}, {"answer": "exigent", "hint": "synonyms for exigent", "clues": ["instant", "exacting", "clamant", "insistent", "crying", "exigent"]}, {"answer": "exonerated", "hint": "synonyms for exonerated", "clues": ["cleared", "exculpated", "vindicated", "absolved", "clear", "exonerated"]}, {"answer": "exorbitant", "hint": "synonyms for exorbitant", "clues": ["outrageous", "extortionate", "steep", "unconscionable", "usurious", "exorbitant"]}, {"answer": "expectant", "hint": "synonyms for expectant", "clues": ["with child", "anticipant", "great", "enceinte", "big", "anticipative", "heavy", "gravid", "large", "expectant"]}, {"answer": "expert", "hint": "synonyms for expert", "clues": ["good", "skillful", "proficient", "adept", "practiced", "technical", "expert"]}, {"answer": "exploited", "hint": "synonyms for exploited", "clues": ["used", "victimised", "ill-used", "put-upon", "exploited"]}, {"answer": "expressed", "hint": "synonyms for expressed", "clues": ["verbalized", "explicit", "uttered", "expressed"]}, {"answer": "expressionless", "hint": "synonyms for expressionless", "clues": ["poker-faced", "deadpan", "unexpressive", "impassive", "expressionless"]}, {"answer": "extemporaneous", "hint": "synonyms for extemporaneous", "clues": ["off-the-cuff", "extempore", "offhand", "unrehearsed", "impromptu", "ad-lib", "extemporary", "extemporaneous"]}, {"answer": "extemporary", "hint": "synonyms for extemporary", "clues": ["off-the-cuff", "extempore", "offhand", "unrehearsed", "impromptu", "ad-lib", "extemporaneous", "extemporary"]}, {"answer": "extempore", "hint": "synonyms for extempore", "clues": ["off-the-cuff", "extemporaneous", "offhand", "unrehearsed", "impromptu", "ad-lib", "extemporary", "extempore"]}, {"answer": "extended", "hint": "synonyms for extended", "clues": ["elongated", "protracted", "drawn-out", "lengthened", "extensive", "prolonged", "lengthy", "extended"]}, {"answer": "extensive", "hint": "synonyms for extensive", "clues": ["all-embracing", "across-the-board", "all-inclusive", "panoptic", "wide", "encompassing", "blanket", "extended", "broad", "extensive"]}, {"answer": "extortionate", "hint": "synonyms for extortionate", "clues": ["outrageous", "steep", "unconscionable", "usurious", "exorbitant", "extortionate"]}, {"answer": "extra", "hint": "synonyms for extra", "clues": ["special", "redundant", "supernumerary", "excess", "supererogatory", "surplus", "additional", "superfluous", "spare", "extra"]}, {"answer": "extraneous", "hint": "synonyms for extraneous", "clues": ["external", "outside", "orthogonal", "immaterial", "impertinent", "foreign", "extraneous"]}, {"answer": "extravagant", "hint": "synonyms for extravagant", "clues": ["spendthrift", "exuberant", "excessive", "overweening", "profligate", "prodigal", "extravagant"]}, {"answer": "extroverted", "hint": "synonyms for extroverted", "clues": ["extrospective", "outgoing", "extravertive", "forthcoming", "extrovert"]}, {"answer": "exuberant", "hint": "synonyms for exuberant", "clues": ["high-spirited", "ebullient", "luxuriant", "overweening", "lush", "riotous", "extravagant", "profuse", "excessive", "exuberant"]}, {"answer": "exultant", "hint": "synonyms for exultant", "clues": ["jubilant", "rejoicing", "triumphant", "prideful", "triumphal", "exulting", "exultant"]}, {"answer": "exulting", "hint": "synonyms for exulting", "clues": ["jubilant", "rejoicing", "triumphant", "prideful", "triumphal", "exultant", "exulting"]}, {"answer": "fabulous", "hint": "synonyms for fabulous", "clues": ["mythical", "mythologic", "fab", "fabulous"]}, {"answer": "facile", "hint": "synonyms for facile", "clues": ["silver-tongued", "smooth-spoken", "fluent", "eloquent", "silver", "facile"]}, {"answer": "faded", "hint": "synonyms for faded", "clues": ["washed-out", "bleached", "attenuate", "weakened", "washy", "faded"]}, {"answer": "fagged", "hint": "synonyms for fagged", "clues": ["dog-tired", "worn out", "fatigued", "exhausted", "played out", "washed-out", "spent", "fagged"]}, {"answer": "faineant", "hint": "synonyms for faineant", "clues": ["lazy", "indolent", "otiose", "work-shy", "slothful", "faineant"]}, {"answer": "faint", "hint": "synonyms for faint", "clues": ["fainthearted", "light", "vague", "dim", "wispy", "shadowy", "feeble", "lightheaded", "swooning", "timid", "weak", "faint"]}, {"answer": "fair", "hint": "synonyms for fair", "clues": ["sightly", "bonny", "average", "bonnie", "middling", "clean", "honest", "fairish", "mediocre", "comely", "just", "reasonable", "fair"]}, {"answer": "faithless", "hint": "synonyms for faithless", "clues": ["treasonous", "traitorous", "unfaithful", "treasonable", "faithless"]}, {"answer": "fake", "hint": "synonyms for fake", "clues": ["bastard", "simulated", "phoney", "faux", "false", "imitation", "bogus", "fake"]}, {"answer": "fall-blooming", "hint": "synonyms for fall-blooming", "clues": ["fall-flowering", "autumn-flowering", "late-flowering", "late-blooming", "autumn-blooming", "fall-blooming"]}, {"answer": "fall-flowering", "hint": "synonyms for fall-flowering", "clues": ["late-flowering", "autumn-flowering", "late-blooming", "fall-blooming", "autumn-blooming", "fall-flowering"]}, {"answer": "false", "hint": "synonyms for false", "clues": ["delusive", "simulated", "sour", "fictive", "faux", "sham", "pretended", "mistaken", "off-key", "untrue", "imitation", "put on", "fake", "fictitious", "assumed", "false"]}, {"answer": "famed", "hint": "synonyms for famed", "clues": ["renowned", "famous", "celebrated", "illustrious", "noted", "far-famed", "notable", "famed"]}, {"answer": "familial", "hint": "synonyms for familial", "clues": ["inherited", "transmitted", "genetic", "transmissible", "hereditary", "familial"]}, {"answer": "famished", "hint": "synonyms for famished", "clues": ["ravenous", "esurient", "starved", "sharp-set", "famished"]}, {"answer": "famous", "hint": "synonyms for famous", "clues": ["famed", "renowned", "celebrated", "illustrious", "noted", "far-famed", "notable", "famous"]}, {"answer": "fantastic", "hint": "synonyms for fantastic", "clues": ["marvellous", "wild", "howling", "wondrous", "antic", "grand", "fantastical", "grotesque", "rattling", "tremendous", "terrific", "wonderful"]}, {"answer": "far-famed", "hint": "synonyms for far-famed", "clues": ["famed", "famous", "celebrated", "illustrious", "noted", "notable", "renowned", "far-famed"]}, {"answer": "far-out", "hint": "synonyms for far-out", "clues": ["kinky", "way-out", "quirky", "offbeat", "far-out"]}, {"answer": "farinaceous", "hint": "synonyms for farinaceous", "clues": ["granular", "amylaceous", "granulose", "starchlike", "gritty", "grainy", "coarse-grained", "amyloidal", "mealy", "farinaceous"]}, {"answer": "farseeing", "hint": "synonyms for farseeing", "clues": ["keen-sighted", "foresightful", "long", "eagle-eyed", "farsighted", "prospicient", "longsighted", "farseeing"]}, {"answer": "farsighted", "hint": "synonyms for farsighted", "clues": ["prospicient", "foresightful", "long", "presbyopic", "longsighted", "foresighted", "farseeing"]}, {"answer": "farthermost", "hint": "synonyms for farthermost", "clues": ["furthest", "uttermost", "furthermost", "utmost"]}, {"answer": "farthest", "hint": "synonyms for farthest", "clues": ["furthest", "farthermost", "utmost", "uttermost"]}, {"answer": "fascinated", "hint": "synonyms for fascinated", "clues": ["mesmerized", "spell-bound", "transfixed", "hypnotized", "fascinated"]}, {"answer": "fascinating", "hint": "synonyms for fascinating", "clues": ["bewitching", "entrancing", "enchanting", "engrossing", "enthralling", "captivating", "riveting", "absorbing", "gripping", "fascinating"]}, {"answer": "fast", "hint": "synonyms for fast", "clues": ["libertine", "flying", "degenerate", "dissipated", "dissolute", "degraded", "riotous", "quick", "immobile", "loyal", "truehearted", "firm", "profligate", "debauched", "fast"]}, {"answer": "fat", "hint": "synonyms for fat", "clues": ["fatty", "juicy", "fertile", "rich", "productive", "fat"]}, {"answer": "fatal", "hint": "synonyms for fatal", "clues": ["black", "fateful", "disastrous", "calamitous", "fatal"]}, {"answer": "fateful", "hint": "synonyms for fateful", "clues": ["portentous", "foreboding", "black", "disastrous", "calamitous", "fatal", "fateful"]}, {"answer": "fatheaded", "hint": "synonyms for fatheaded", "clues": ["boneheaded", "duncish", "wooden-headed", "thick-skulled", "thick", "thickheaded", "duncical", "loggerheaded", "blockheaded", "fatheaded"]}, {"answer": "fatigued", "hint": "synonyms for fatigued", "clues": ["dog-tired", "worn out", "fagged", "exhausted", "played out", "washed-out", "spent", "fatigued"]}, {"answer": "fatuous", "hint": "synonyms for fatuous", "clues": ["asinine", "mindless", "inane", "vacuous", "fatuous"]}, {"answer": "faux", "hint": "synonyms for faux", "clues": ["imitation", "simulated", "fake", "false", "faux"]}, {"answer": "faveolate", "hint": "synonyms for faveolate", "clues": ["cavitied", "alveolate", "honeycombed", "pitted"]}, {"answer": "favorable", "hint": "synonyms for favorable", "clues": ["favourable", "well-disposed", "lucky", "prosperous", "golden", "friendly"]}, {"answer": "favored", "hint": "synonyms for favored", "clues": ["preferent", "favourite", "preferred", "pet", "best-loved", "favored"]}, {"answer": "favorite", "hint": "synonyms for favorite", "clues": ["preferent", "favourite", "favored", "preferred", "pet", "best-loved"]}, {"answer": "favourable", "hint": "synonyms for favourable", "clues": ["lucky", "favorable", "prosperous", "golden"]}, {"answer": "favourite", "hint": "synonyms for favourite", "clues": ["preferent", "favorite", "favored", "preferred", "pet", "best-loved"]}, {"answer": "fawning", "hint": "synonyms for fawning", "clues": ["toadyish", "obsequious", "bootlicking", "sycophantic", "fawning"]}, {"answer": "fearful", "hint": "synonyms for fearful", "clues": ["dire", "horrendous", "timorous", "fearsome", "dreaded", "dread", "trepid", "direful", "frightening", "cowardly", "terrible", "dreadful", "frightful", "horrific", "awful", "fearful"]}, {"answer": "fearless", "hint": "synonyms for fearless", "clues": ["intrepid", "hardy", "unafraid", "brave", "unfearing", "audacious", "dauntless", "fearless"]}, {"answer": "fearsome", "hint": "synonyms for fearsome", "clues": ["dire", "horrendous", "dreaded", "fearful", "dread", "direful", "frightening", "terrible", "dreadful", "horrific", "awful", "fearsome"]}, {"answer": "feasible", "hint": "synonyms for feasible", "clues": ["practicable", "workable", "executable", "viable", "feasible"]}, {"answer": "featherbrained", "hint": "synonyms for featherbrained", "clues": ["dizzy", "silly", "empty-headed", "giddy", "airheaded", "light-headed", "featherbrained"]}, {"answer": "fed_up", "hint": "synonyms for fed up", "clues": ["sick of", "tired of", "sick", "disgusted", "fed up"]}, {"answer": "feeble", "hint": "synonyms for feeble", "clues": ["nerveless", "infirm", "weakly", "debile", "sapless", "faint", "lame", "decrepit", "rickety", "feeble"]}, {"answer": "feisty", "hint": "synonyms for feisty", "clues": ["spunky", "thin-skinned", "plucky", "touchy", "huffy", "feisty"]}, {"answer": "fell", "hint": "synonyms for fell", "clues": ["cruel", "barbarous", "vicious", "savage", "brutal", "roughshod", "fell"]}, {"answer": "fertile", "hint": "synonyms for fertile", "clues": ["prolific", "fecund", "rich", "fat", "productive", "fertile"]}, {"answer": "fervent", "hint": "synonyms for fervent", "clues": ["perfervid", "ardent", "fiery", "torrid", "impassioned", "fervid", "fervent"]}, {"answer": "fervid", "hint": "synonyms for fervid", "clues": ["perfervid", "ardent", "fiery", "torrid", "impassioned", "fervent", "fervid"]}, {"answer": "fetid", "hint": "synonyms for fetid", "clues": ["funky", "smelly", "foul", "foetid", "stinking", "foul-smelling", "noisome", "ill-scented"]}, {"answer": "fibrous", "hint": "synonyms for fibrous", "clues": ["sinewy", "unchewable", "hempen", "stringy", "fibrous"]}, {"answer": "fickle", "hint": "synonyms for fickle", "clues": ["volatile", "quicksilver", "mercurial", "erratic", "fickle"]}, {"answer": "fictitious", "hint": "synonyms for fictitious", "clues": ["fictive", "fabricated", "fictional", "sham", "pretended", "fancied", "false", "put on", "assumed", "fictitious"]}, {"answer": "fictive", "hint": "synonyms for fictive", "clues": ["pretended", "false", "put on", "sham", "fictitious", "assumed", "fictive"]}, {"answer": "fiddling", "hint": "synonyms for fiddling", "clues": ["lilliputian", "piddling", "petty", "picayune", "niggling", "little", "trivial", "footling", "piffling"]}, {"answer": "fiendish", "hint": "synonyms for fiendish", "clues": ["satanic", "unholy", "diabolical", "infernal", "demonic", "hellish", "fiendish"]}, {"answer": "fierce", "hint": "synonyms for fierce", "clues": ["rough", "violent", "cutthroat", "trigger-happy", "ferocious", "furious", "tearing", "savage", "bowelless", "boisterous", "vehement", "fierce"]}, {"answer": "fiery", "hint": "synonyms for fiery", "clues": ["perfervid", "ardent", "torrid", "flaming", "igneous", "impassioned", "fervid", "fervent", "fiery"]}, {"answer": "filamentlike", "hint": "synonyms for filamentlike", "clues": ["threadlike", "filamentous", "thready", "filiform", "filamentlike"]}, {"answer": "filamentous", "hint": "synonyms for filamentous", "clues": ["threadlike", "thready", "filiform", "filamentlike", "filamentous"]}, {"answer": "filiform", "hint": "synonyms for filiform", "clues": ["threadlike", "filamentous", "thready", "filamentlike", "filiform"]}, {"answer": "filmy", "hint": "synonyms for filmy", "clues": ["diaphanous", "gauze-like", "gossamer", "vaporous", "transparent", "see-through", "gauzy", "sheer", "cobwebby", "filmy"]}, {"answer": "filthy", "hint": "synonyms for filthy", "clues": ["foul", "smutty", "lousy", "dirty", "nasty", "cruddy", "filthy"]}, {"answer": "final", "hint": "synonyms for final", "clues": ["last", "concluding", "net", "terminal", "final"]}, {"answer": "fine", "hint": "synonyms for fine", "clues": ["hunky-dory", "o.k.", "okay", "ok", "all right", "fine"]}, {"answer": "fine-grained", "hint": "synonyms for fine-grained", "clues": ["close-grained", "pulverized", "powdery", "powdered", "small-grained", "fine-grained"]}, {"answer": "fine-looking", "hint": "synonyms for fine-looking", "clues": ["better-looking", "good-looking", "well-favoured", "handsome", "fine-looking"]}, {"answer": "finer", "hint": "synonyms for finer", "clues": ["hunky-dory", "o.k.", "ok", "okay", "all right", "fine"]}, {"answer": "finical", "hint": "synonyms for finical", "clues": ["particular", "fussy", "picky", "finicky", "finical"]}, {"answer": "finicky", "hint": "synonyms for finicky", "clues": ["finical", "particular", "picky", "fussy", "finicky"]}, {"answer": "fired", "hint": "synonyms for fired", "clues": ["discharged", "pink-slipped", "dismissed", "laid-off", "fired"]}, {"answer": "firm", "hint": "synonyms for firm", "clues": ["steadfast", "fast", "immobile", "strong", "unfaltering", "unshakable", "unbendable", "steady", "solid", "loyal", "truehearted", "stiff", "unwavering", "unfluctuating", "firm"]}, {"answer": "first", "hint": "synonyms for first", "clues": ["beginning", "initiatory", "world-class", "foremost", "maiden", "inaugural", "1st", "initiative", "first"]}, {"answer": "first-rate", "hint": "synonyms for first-rate", "clues": ["tops", "crack", "topnotch", "ace", "tiptop", "super", "first-rate"]}, {"answer": "fishy", "hint": "synonyms for fishy", "clues": ["funny", "suspicious", "suspect", "shady", "fishy"]}, {"answer": "fitter", "hint": "synonyms for fitter", "clues": ["primed", "fit", "healthier", "set", "fitter"]}, {"answer": "flabbergasted", "hint": "synonyms for flabbergasted", "clues": ["dumbfounded", "stupefied", "thunderstruck", "dumbstricken", "dumbstruck", "flabbergasted"]}, {"answer": "flag-waving", "hint": "synonyms for flag-waving", "clues": ["chauvinistic", "superpatriotic", "jingoistic", "nationalistic", "ultranationalistic", "flag-waving"]}, {"answer": "flagitious", "hint": "synonyms for flagitious", "clues": ["atrocious", "monstrous", "heinous", "grievous", "flagitious"]}, {"answer": "flagrant", "hint": "synonyms for flagrant", "clues": ["glaring", "egregious", "rank", "gross", "crying", "flagrant"]}, {"answer": "flakey", "hint": "synonyms for flakey", "clues": ["flaky", "freakish", "gonzo", "outlandish", "bizarre", "freaky", "outre", "off-the-wall", "eccentric"]}, {"answer": "flaky", "hint": "synonyms for flaky", "clues": ["freakish", "gonzo", "outlandish", "bizarre", "flakey", "freaky", "outre", "off-the-wall", "eccentric"]}, {"answer": "flamboyant", "hint": "synonyms for flamboyant", "clues": ["florid", "splashy", "showy", "aureate", "flamboyant"]}, {"answer": "flaming", "hint": "synonyms for flaming", "clues": ["bloody", "blooming", "bally", "fiery", "crashing", "fucking", "blinking", "flaming"]}, {"answer": "flash", "hint": "synonyms for flash", "clues": ["flashy", "loud", "gimcrack", "tatty", "tawdry", "brassy", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy"]}, {"answer": "flashy", "hint": "synonyms for flashy", "clues": ["flash", "sporty", "loud", "gimcrack", "tatty", "tawdry", "jazzy", "brassy", "showy", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy"]}, {"answer": "flat", "hint": "synonyms for flat", "clues": ["flavourless", "insipid", "savorless", "mat", "monotonous", "matted", "2-dimensional", "vapid", "unconditional", "level", "bland", "categoric", "monotonic", "compressed", "prostrate", "plane", "monotone", "flat"]}, {"answer": "flavorful", "hint": "synonyms for flavorful", "clues": ["flavorsome", "sapid", "saporous", "flavourous", "flavourful"]}, {"answer": "flavorless", "hint": "synonyms for flavorless", "clues": ["vapid", "flavourless", "savorless", "flat", "insipid", "bland"]}, {"answer": "flavorous", "hint": "synonyms for flavorous", "clues": ["flavorsome", "sapid", "flavorful", "saporous", "flavourous"]}, {"answer": "flavorsome", "hint": "synonyms for flavorsome", "clues": ["sapid", "flavorful", "saporous", "flavoursome", "flavourous"]}, {"answer": "flavourful", "hint": "synonyms for flavourful", "clues": ["flavorsome", "sapid", "flavorful", "saporous", "flavourous"]}, {"answer": "flavourless", "hint": "synonyms for flavourless", "clues": ["vapid", "insipid", "flat", "savorless", "bland", "flavorless"]}, {"answer": "flavourous", "hint": "synonyms for flavourous", "clues": ["flavorsome", "sapid", "flavorful", "saporous", "flavorous"]}, {"answer": "flavoursome", "hint": "synonyms for flavoursome", "clues": ["flavorsome", "sapid", "flavorful", "saporous", "flavourous"]}, {"answer": "flea-bitten", "hint": "synonyms for flea-bitten", "clues": ["woebegone", "derelict", "run-down", "creaky", "decrepit", "flea-bitten"]}, {"answer": "flecked", "hint": "synonyms for flecked", "clues": ["stippled", "speckled", "dotted", "flecked"]}, {"answer": "flexible", "hint": "synonyms for flexible", "clues": ["compromising", "pliable", "whippy", "pliant", "conciliatory", "flexile", "elastic"]}, {"answer": "flighty", "hint": "synonyms for flighty", "clues": ["head-in-the-clouds", "spooky", "flyaway", "skittish", "nervous", "scatterbrained", "flighty"]}, {"answer": "flimsy", "hint": "synonyms for flimsy", "clues": ["slight", "thin", "unconvincing", "fragile", "tenuous", "flimsy"]}, {"answer": "flint", "hint": "synonyms for flint", "clues": ["granitic", "stony", "flinty", "obdurate"]}, {"answer": "flinty", "hint": "synonyms for flinty", "clues": ["granitic", "stony", "flint", "obdurate"]}, {"answer": "floating", "hint": "synonyms for floating", "clues": ["aimless", "drifting", "vagrant", "vagabond", "floating"]}, {"answer": "flooded", "hint": "synonyms for flooded", "clues": ["awash", "overflowing", "afloat", "inundated", "flooded"]}, {"answer": "florid", "hint": "synonyms for florid", "clues": ["flamboyant", "sanguine", "rubicund", "ruddy", "aureate", "florid"]}, {"answer": "flourishing", "hint": "synonyms for flourishing", "clues": ["thriving", "prospering", "prosperous", "booming", "roaring", "palmy", "flourishing"]}, {"answer": "fluent", "hint": "synonyms for fluent", "clues": ["liquid", "smooth-spoken", "silver", "smooth", "silver-tongued", "facile", "eloquent", "fluid", "fluent"]}, {"answer": "fluid", "hint": "synonyms for fluid", "clues": ["liquid", "smooth", "runny", "fluent", "mobile", "unstable", "fluid"]}, {"answer": "flush", "hint": "synonyms for flush", "clues": ["wealthy", "affluent", "moneyed", "loaded", "flush"]}, {"answer": "flushed", "hint": "synonyms for flushed", "clues": ["red", "crimson", "reddened", "rose-cheeked", "red-faced", "rosy", "flushed"]}, {"answer": "flyspeck", "hint": "synonyms for flyspeck", "clues": ["lilliputian", "petite", "diminutive", "midget", "bantam", "tiny", "flyspeck"]}, {"answer": "foaming", "hint": "synonyms for foaming", "clues": ["frothy", "frothing", "foamy", "effervescing", "bubbling", "bubbly", "spumy", "foaming"]}, {"answer": "foamy", "hint": "synonyms for foamy", "clues": ["bubbling", "bubbly", "spumy", "foaming", "frothy", "effervescing", "frothing", "foamy"]}, {"answer": "foetid", "hint": "synonyms for foetid", "clues": ["funky", "smelly", "foul", "fetid", "stinking", "foul-smelling", "noisome", "ill-scented"]}, {"answer": "foggy", "hint": "synonyms for foggy", "clues": ["bleary", "groggy", "misty", "blurred", "stuporous", "fogged", "blurry", "brumous", "dazed", "fuzzy", "muzzy", "hazy", "logy", "foggy"]}, {"answer": "fogyish", "hint": "synonyms for fogyish", "clues": ["mossy", "stodgy", "stick-in-the-mud", "moss-grown", "fogyish"]}, {"answer": "foiled", "hint": "synonyms for foiled", "clues": ["thwarted", "defeated", "disappointed", "discomfited", "frustrated", "foiled"]}, {"answer": "fond", "hint": "synonyms for fond", "clues": ["adoring", "partial", "warm", "lovesome", "affectionate", "tender", "doting", "fond"]}, {"answer": "foolish", "hint": "synonyms for foolish", "clues": ["goosy", "gooselike", "anserine", "dopy", "jerky", "foolish"]}, {"answer": "footling", "hint": "synonyms for footling", "clues": ["lilliputian", "piddling", "petty", "picayune", "niggling", "little", "trivial", "piffling", "footling"]}, {"answer": "forbidden", "hint": "synonyms for forbidden", "clues": ["tabu", "verboten", "proscribed", "out", "taboo", "prohibited", "forbidden"]}, {"answer": "forbidding", "hint": "synonyms for forbidding", "clues": ["ominous", "sinister", "grim", "minacious", "threatening", "baleful", "minatory", "menacing", "dour", "forbidding"]}, {"answer": "foregone", "hint": "synonyms for foregone", "clues": ["bypast", "bygone", "gone", "departed", "foregone"]}, {"answer": "foresighted", "hint": "synonyms for foresighted", "clues": ["farsighted", "prospicient", "foresightful", "long", "longsighted", "farseeing"]}, {"answer": "foresightful", "hint": "synonyms for foresightful", "clues": ["farsighted", "prospicient", "long", "longsighted", "farseeing", "foresightful"]}, {"answer": "forficate", "hint": "synonyms for forficate", "clues": ["branched", "biramous", "fork-like", "forked", "prongy", "bifurcate", "pronged", "forficate"]}, {"answer": "forgetful", "hint": "synonyms for forgetful", "clues": ["unmindful", "mindless", "oblivious", "short", "unretentive", "forgetful"]}, {"answer": "fork-like", "hint": "synonyms for fork-like", "clues": ["branched", "biramous", "forked", "prongy", "bifurcate", "forficate", "pronged", "fork-like"]}, {"answer": "forked", "hint": "synonyms for forked", "clues": ["branched", "biramous", "fork-like", "prongy", "bifurcate", "double", "forficate", "pronged", "forked"]}, {"answer": "formal", "hint": "synonyms for formal", "clues": ["courtly", "stately", "schematic", "conventional", "formal"]}, {"answer": "former", "hint": "synonyms for former", "clues": ["old", "sometime", "previous", "other", "erstwhile", "one-time", "early", "late", "quondam", "former"]}, {"answer": "forthcoming", "hint": "synonyms for forthcoming", "clues": ["extroverted", "approaching", "coming", "outgoing", "forthcoming"]}, {"answer": "forthright", "hint": "synonyms for forthright", "clues": ["outspoken", "candid", "frank", "plainspoken", "free-spoken", "straight-from-the-shoulder", "blunt", "point-blank", "forthright"]}, {"answer": "foul", "hint": "synonyms for foul", "clues": ["foetid", "loathsome", "repelling", "revolting", "wicked", "foul-smelling", "marked-up", "disgusting", "unsporting", "fouled", "skanky", "noisome", "disgustful", "repellent", "yucky", "funky", "filthy", "smelly", "smutty", "stinking", "dirty", "nasty", "loathly", "cheating", "cruddy", "afoul", "unsportsmanlike", "distasteful", "ill-scented"]}, {"answer": "foul-smelling", "hint": "synonyms for foul-smelling", "clues": ["funky", "smelly", "foul", "foetid", "stinking", "noisome", "ill-scented", "foul-smelling"]}, {"answer": "foxy", "hint": "synonyms for foxy", "clues": ["dodgy", "crafty", "guileful", "sly", "tricky", "cunning", "slick", "wily", "knavish", "foxy"]}, {"answer": "fractious", "hint": "synonyms for fractious", "clues": ["cranky", "pettish", "techy", "refractory", "nettlesome", "petulant", "irritable", "testy", "peckish", "scratchy", "recalcitrant", "peevish", "fractious"]}, {"answer": "fragile", "hint": "synonyms for fragile", "clues": ["slight", "frail", "delicate", "thin", "tenuous", "flimsy", "fragile"]}, {"answer": "frail", "hint": "synonyms for frail", "clues": ["fallible", "delicate", "fragile", "weak", "imperfect", "frail"]}, {"answer": "frank", "hint": "synonyms for frank", "clues": ["outspoken", "candid", "plainspoken", "free-spoken", "straight-from-the-shoulder", "blunt", "forthright", "point-blank", "frank"]}, {"answer": "frantic", "hint": "synonyms for frantic", "clues": ["phrenetic", "excited", "delirious", "unrestrained", "mad", "frenetic", "frenzied", "frantic"]}, {"answer": "freakish", "hint": "synonyms for freakish", "clues": ["flaky", "gonzo", "outlandish", "capricious", "bizarre", "freaky", "outre", "off-the-wall", "eccentric", "freakish"]}, {"answer": "freaky", "hint": "synonyms for freaky", "clues": ["flaky", "freakish", "gonzo", "outlandish", "bizarre", "outre", "off-the-wall", "eccentric", "freaky"]}, {"answer": "free", "hint": "synonyms for free", "clues": ["gratuitous", "devoid", "destitute", "barren", "liberal", "loose", "costless", "complimentary", "innocent", "detached", "gratis", "spare", "free"]}, {"answer": "free-spoken", "hint": "synonyms for free-spoken", "clues": ["outspoken", "frank", "candid", "plainspoken", "straight-from-the-shoulder", "blunt", "forthright", "point-blank", "free-spoken"]}, {"answer": "freehanded", "hint": "synonyms for freehanded", "clues": ["bounteous", "liberal", "freehand", "handsome", "bighearted", "big", "bountiful", "openhanded", "giving"]}, {"answer": "freewheeling", "hint": "synonyms for freewheeling", "clues": ["slaphappy", "harum-scarum", "happy-go-lucky", "carefree", "devil-may-care", "freewheeling"]}, {"answer": "frenzied", "hint": "synonyms for frenzied", "clues": ["phrenetic", "manic", "frantic", "frenetic", "frenzied"]}, {"answer": "fresh", "hint": "synonyms for fresh", "clues": ["sweet", "unfermented", "new", "sassy", "saucy", "overbold", "bracing", "brisk", "refreshing", "reinvigorated", "impudent", "refreshful", "impertinent", "clean", "unused", "smart", "wise", "novel", "tonic", "refreshed", "fresh"]}, {"answer": "fretful", "hint": "synonyms for fretful", "clues": ["itchy", "querulous", "antsy", "whiney", "fidgety", "fretful"]}, {"answer": "fricative", "hint": "synonyms for fricative", "clues": ["spirant", "continuant", "sibilant", "strident", "fricative"]}, {"answer": "frightened", "hint": "synonyms for frightened", "clues": ["scared", "panicky", "panic-struck", "panicked", "panic-stricken", "terrified", "frightened"]}, {"answer": "frightening", "hint": "synonyms for frightening", "clues": ["dire", "horrendous", "fearsome", "dreaded", "fearful", "dread", "direful", "terrible", "dreadful", "horrific", "awful", "frightening"]}, {"answer": "frightful", "hint": "synonyms for frightful", "clues": ["horrifying", "tremendous", "terrible", "horrible", "ugly", "atrocious", "fearful", "awful", "frightful"]}, {"answer": "frigid", "hint": "synonyms for frigid", "clues": ["arctic", "frosty", "wintry", "cold", "polar", "glacial", "icy", "gelid", "frozen", "frigid"]}, {"answer": "frizzly", "hint": "synonyms for frizzly", "clues": ["nappy", "kinky", "frizzy", "crisp"]}, {"answer": "frizzy", "hint": "synonyms for frizzy", "clues": ["nappy", "kinky", "crisp", "frizzly"]}, {"answer": "frolicky", "hint": "synonyms for frolicky", "clues": ["coltish", "rollicking", "sportive", "frolicsome", "frolicky"]}, {"answer": "frolicsome", "hint": "synonyms for frolicsome", "clues": ["coltish", "rollicking", "sportive", "frolicky", "frolicsome"]}, {"answer": "frosty", "hint": "synonyms for frosty", "clues": ["rimy", "wintry", "nippy", "snappy", "glacial", "rimed", "nipping", "icy", "frigid", "crisp", "frozen", "frosty"]}, {"answer": "frothy", "hint": "synonyms for frothy", "clues": ["sparkly", "bubbling", "bubbly", "spumy", "foaming", "effervescent", "effervescing", "scintillating", "foamy", "frothy"]}, {"answer": "froward", "hint": "synonyms for froward", "clues": ["self-willed", "wilful", "headstrong", "froward"]}, {"answer": "frowzled", "hint": "synonyms for frowzled", "clues": ["dishevelled", "rumpled", "tousled", "frowzled"]}, {"answer": "frozen", "hint": "synonyms for frozen", "clues": ["frosty", "wintry", "rooted", "quick-frozen", "fixed", "glacial", "flash-frozen", "icy", "frigid", "stock-still", "frozen"]}, {"answer": "frugal", "hint": "synonyms for frugal", "clues": ["stinting", "scotch", "economical", "sparing", "frugal"]}, {"answer": "fruitless", "hint": "synonyms for fruitless", "clues": ["futile", "vain", "sleeveless", "bootless", "fruitless"]}, {"answer": "fruity", "hint": "synonyms for fruity", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "fruity"]}, {"answer": "frustrated", "hint": "synonyms for frustrated", "clues": ["thwarted", "defeated", "disappointed", "discomfited", "foiled", "frustrated"]}, {"answer": "fucking", "hint": "synonyms for fucking", "clues": ["bloody", "blooming", "bally", "flaming", "crashing", "blinking", "fucking"]}, {"answer": "fuddled", "hint": "synonyms for fuddled", "clues": ["tight", "besotted", "pie-eyed", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "fuddled"]}, {"answer": "fugacious", "hint": "synonyms for fugacious", "clues": ["transient", "short-lived", "ephemeral", "passing", "transitory", "fugacious"]}, {"answer": "fulgent", "hint": "synonyms for fulgent", "clues": ["glaring", "blazing", "glary", "dazzling", "blinding", "fulgent"]}, {"answer": "fulgid", "hint": "synonyms for fulgid", "clues": ["glittering", "glittery", "sparkly", "glinting", "coruscant", "scintillating", "scintillant", "fulgid"]}, {"answer": "full", "hint": "synonyms for full", "clues": ["total", "good", "entire", "wide-cut", "wide", "replete", "broad", "full"]}, {"answer": "full-blooded", "hint": "synonyms for full-blooded", "clues": ["blooded", "full-blood", "red-blooded", "lusty", "hearty"]}, {"answer": "full-bosomed", "hint": "synonyms for full-bosomed", "clues": ["stacked", "bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed"]}, {"answer": "full-grown", "hint": "synonyms for full-grown", "clues": ["adult", "grownup", "fully grown", "grown", "big"]}, {"answer": "fully_grown", "hint": "synonyms for fully grown", "clues": ["grown", "adult", "grownup", "full-grown", "big"]}, {"answer": "fulsome", "hint": "synonyms for fulsome", "clues": ["buttery", "oleaginous", "oily", "smarmy", "soapy", "unctuous", "fulsome"]}, {"answer": "functional", "hint": "synonyms for functional", "clues": ["operational", "running", "working", "operative", "useable", "operable", "functional"]}, {"answer": "fundamental", "hint": "synonyms for fundamental", "clues": ["primal", "central", "rudimentary", "key", "profound", "cardinal", "underlying", "fundamental"]}, {"answer": "funky", "hint": "synonyms for funky", "clues": ["smelly", "foul", "foetid", "stinking", "foul-smelling", "noisome", "low-down", "ill-scented", "funky"]}, {"answer": "funny", "hint": "synonyms for funny", "clues": ["comical", "rummy", "mirthful", "amusing", "odd", "suspicious", "queer", "singular", "suspect", "peculiar", "shady", "curious", "risible", "fishy", "rum", "comic", "laughable", "funny"]}, {"answer": "furious", "hint": "synonyms for furious", "clues": ["wild", "fierce", "enraged", "infuriated", "ferocious", "angered", "savage", "tempestuous", "angry", "maddened", "raging", "furious"]}, {"answer": "furthermost", "hint": "synonyms for furthermost", "clues": ["furthest", "uttermost", "farthermost", "utmost"]}, {"answer": "furthest", "hint": "synonyms for furthest", "clues": ["uttermost", "farthermost", "utmost", "farthest"]}, {"answer": "furtive", "hint": "synonyms for furtive", "clues": ["stealthy", "surreptitious", "backstair", "sneaky", "furtive"]}, {"answer": "fused", "hint": "synonyms for fused", "clues": ["consolidated", "amalgamate", "coalesced", "fused"]}, {"answer": "fussy", "hint": "synonyms for fussy", "clues": ["finical", "cross", "crabbed", "grumpy", "busy", "bad-tempered", "ill-tempered", "finicky", "picky", "particular", "grouchy", "crabby", "fussy"]}, {"answer": "fusty", "hint": "synonyms for fusty", "clues": ["nonprogressive", "standpat", "musty", "frowsty", "fusty"]}, {"answer": "futile", "hint": "synonyms for futile", "clues": ["ineffectual", "unavailing", "vain", "sleeveless", "fruitless", "otiose", "bootless", "futile"]}, {"answer": "fuzzy", "hint": "synonyms for fuzzy", "clues": ["bleary", "blurred", "muzzy", "hazy", "foggy", "fuzzed", "blurry", "fuzzy"]}, {"answer": "gabby", "hint": "synonyms for gabby", "clues": ["loquacious", "talky", "chatty", "talkative", "garrulous", "gabby"]}, {"answer": "gaga", "hint": "synonyms for gaga", "clues": ["doddering", "wild", "doddery", "senile", "dotty", "crazy", "gaga"]}, {"answer": "gallant", "hint": "synonyms for gallant", "clues": ["majestic", "chivalrous", "knightly", "lofty", "proud", "dashing", "gallant"]}, {"answer": "galling", "hint": "synonyms for galling", "clues": ["nettlesome", "annoying", "plaguy", "teasing", "vexing", "pesky", "irritating", "bothersome", "vexatious", "pestering", "pestiferous", "galling"]}, {"answer": "galvanic", "hint": "synonyms for galvanic", "clues": ["electric", "galvanizing", "voltaic", "galvanic"]}, {"answer": "game", "hint": "synonyms for game", "clues": ["gamy", "spunky", "halting", "gimpy", "gritty", "lame", "crippled", "mettlesome", "spirited", "game"]}, {"answer": "gamey", "hint": "synonyms for gamey", "clues": ["gamy", "high", "racy", "risque", "blue", "juicy", "spicy", "game", "spunky", "gritty", "mettlesome", "spirited", "naughty"]}, {"answer": "gamy", "hint": "synonyms for gamy", "clues": ["high", "racy", "risque", "blue", "juicy", "gamey", "spicy", "spunky", "gritty", "mettlesome", "spirited", "naughty"]}, {"answer": "garbed", "hint": "synonyms for garbed", "clues": ["robed", "appareled", "garmented", "dressed", "habilimented", "attired", "garbed"]}, {"answer": "garbled", "hint": "synonyms for garbled", "clues": ["scattered", "disordered", "illogical", "unconnected", "confused", "disconnected", "disjointed", "garbled"]}, {"answer": "garish", "hint": "synonyms for garish", "clues": ["flash", "loud", "gimcrack", "tatty", "tawdry", "brassy", "trashy", "tacky", "meretricious", "cheap", "gaudy", "garish"]}, {"answer": "garmented", "hint": "synonyms for garmented", "clues": ["robed", "appareled", "dressed", "garbed", "habilimented", "attired", "garmented"]}, {"answer": "garrulous", "hint": "synonyms for garrulous", "clues": ["loquacious", "gabby", "talky", "chatty", "talkative", "garrulous"]}, {"answer": "gasified", "hint": "synonyms for gasified", "clues": ["volatilised", "vapourised", "vaporized", "gasified"]}, {"answer": "gaudy", "hint": "synonyms for gaudy", "clues": ["flash", "loud", "gimcrack", "sporty", "tatty", "tawdry", "jazzy", "brassy", "showy", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy"]}, {"answer": "gaunt", "hint": "synonyms for gaunt", "clues": ["wasted", "haggard", "skeletal", "bony", "pinched", "emaciated", "cadaverous", "gaunt"]}, {"answer": "gauze-like", "hint": "synonyms for gauze-like", "clues": ["filmy", "diaphanous", "vaporous", "gossamer", "transparent", "see-through", "gauzy", "sheer", "cobwebby", "gauze-like"]}, {"answer": "gauzy", "hint": "synonyms for gauzy", "clues": ["filmy", "diaphanous", "gauze-like", "gossamer", "vaporous", "transparent", "see-through", "sheer", "cobwebby", "gauzy"]}, {"answer": "gawky", "hint": "synonyms for gawky", "clues": ["clumsy", "unwieldy", "clunky", "ungainly", "gawky"]}, {"answer": "gay", "hint": "synonyms for gay", "clues": ["jovial", "mirthful", "jolly", "braw", "homophile", "queer", "festal", "cheery", "sunny", "brave", "jocund", "festive", "merry", "gay"]}, {"answer": "gelid", "hint": "synonyms for gelid", "clues": ["arctic", "glacial", "icy", "frigid", "polar", "gelid"]}, {"answer": "gemmed", "hint": "synonyms for gemmed", "clues": ["spangled", "jewelled", "beady", "spangly", "sequined", "gemmed"]}, {"answer": "general", "hint": "synonyms for general", "clues": ["cosmopolitan", "worldwide", "oecumenical", "universal", "general"]}, {"answer": "genetic", "hint": "synonyms for genetic", "clues": ["familial", "inherited", "genetical", "transmitted", "genic", "transmissible", "hereditary"]}, {"answer": "genial", "hint": "synonyms for genial", "clues": ["mental", "cordial", "amiable", "affable", "kind", "genial"]}, {"answer": "genteel", "hint": "synonyms for genteel", "clues": ["civilised", "cultivated", "cultured", "polite", "genteel"]}, {"answer": "gentle", "hint": "synonyms for gentle", "clues": ["blue-blooded", "aristocratical", "patrician", "soft", "docile", "blue", "easy", "gentle"]}, {"answer": "genuine", "hint": "synonyms for genuine", "clues": ["true", "echt", "actual", "real", "unfeigned", "literal", "genuine"]}, {"answer": "gestural", "hint": "synonyms for gestural", "clues": ["nonverbal", "signed", "sign-language", "sign", "gestural"]}, {"answer": "ghastly", "hint": "synonyms for ghastly", "clues": ["sepulchral", "grim", "charnel", "sick", "gruesome", "grisly", "macabre", "ghastly"]}, {"answer": "ghostlike", "hint": "synonyms for ghostlike", "clues": ["spiritual", "ghostly", "apparitional", "phantasmal", "spectral", "ghostlike"]}, {"answer": "ghostly", "hint": "synonyms for ghostly", "clues": ["spiritual", "apparitional", "ghostlike", "phantasmal", "spectral", "ghostly"]}, {"answer": "gibbous", "hint": "synonyms for gibbous", "clues": ["crookback", "humpbacked", "kyphotic", "hunchbacked", "humped", "gibbose"]}, {"answer": "gibelike", "hint": "synonyms for gibelike", "clues": ["taunting", "derisive", "mocking", "jeering", "gibelike"]}, {"answer": "giddy", "hint": "synonyms for giddy", "clues": ["dizzy", "silly", "empty-headed", "airheaded", "featherbrained", "lightheaded", "vertiginous", "woozy", "giddy"]}, {"answer": "gilded", "hint": "synonyms for gilded", "clues": ["deluxe", "sumptuous", "gold", "golden", "luxurious", "grand", "specious", "gilt", "princely", "meretricious", "opulent", "aureate", "gilded"]}, {"answer": "gilt", "hint": "synonyms for gilt", "clues": ["golden", "gilded", "aureate", "gold", "gilt"]}, {"answer": "gimcrack", "hint": "synonyms for gimcrack", "clues": ["flash", "loud", "tatty", "tawdry", "brassy", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy", "gimcrack"]}, {"answer": "gimpy", "hint": "synonyms for gimpy", "clues": ["game", "halting", "crippled", "lame", "gimpy"]}, {"answer": "given", "hint": "synonyms for given", "clues": ["apt", "disposed", "granted", "minded", "tending", "given"]}, {"answer": "giving", "hint": "synonyms for giving", "clues": ["bounteous", "liberal", "freehanded", "handsome", "bighearted", "big", "bountiful", "openhanded", "giving"]}, {"answer": "glacial", "hint": "synonyms for glacial", "clues": ["arctic", "frosty", "wintry", "polar", "icy", "frigid", "gelid", "frozen", "glacial"]}, {"answer": "glaring", "hint": "synonyms for glaring", "clues": ["fulgent", "rank", "gross", "crying", "blazing", "glary", "egregious", "flagrant", "dazzling", "blinding", "glaring"]}, {"answer": "glary", "hint": "synonyms for glary", "clues": ["glaring", "blazing", "fulgent", "dazzling", "blinding", "glary"]}, {"answer": "glib", "hint": "synonyms for glib", "clues": ["slick", "smooth-tongued", "pat", "glib-tongued", "glib"]}, {"answer": "glinting", "hint": "synonyms for glinting", "clues": ["glittering", "glittery", "sparkly", "fulgid", "coruscant", "scintillant", "scintillating", "glinting"]}, {"answer": "glistening", "hint": "synonyms for glistening", "clues": ["glossy", "shiny", "shining", "lustrous", "sheeny", "glistening"]}, {"answer": "glistering", "hint": "synonyms for glistering", "clues": ["glittering", "glittery", "sparkly", "fulgid", "glinting", "coruscant", "scintillating", "scintillant"]}, {"answer": "glittering", "hint": "synonyms for glittering", "clues": ["glittery", "glistering", "sparkly", "fulgid", "glinting", "coruscant", "scintillating", "scintillant"]}, {"answer": "glittery", "hint": "synonyms for glittery", "clues": ["glittering", "sparkly", "aglitter", "fulgid", "glinting", "coruscant", "scintillating", "scintillant"]}, {"answer": "global", "hint": "synonyms for global", "clues": ["worldwide", "globose", "spheric", "globular", "world", "ball-shaped", "planetary", "orbicular", "global"]}, {"answer": "globose", "hint": "synonyms for globose", "clues": ["ball-shaped", "spherical", "global", "globular", "orbicular", "globose"]}, {"answer": "globular", "hint": "synonyms for globular", "clues": ["globose", "ball-shaped", "global", "spherical", "orbicular", "globular"]}, {"answer": "gloomy", "hint": "synonyms for gloomy", "clues": ["sorry", "drab", "dispirited", "depressed", "down", "low-spirited", "downcast", "dark", "sulky", "downhearted", "dingy", "dismal", "grim", "disconsolate", "down in the mouth", "low", "dreary", "blue", "gloomful", "glooming", "gloomy"]}, {"answer": "glorious", "hint": "synonyms for glorious", "clues": ["splendid", "magnificent", "resplendent", "splendiferous", "brilliant", "glorious"]}, {"answer": "glossy", "hint": "synonyms for glossy", "clues": ["showy", "glistening", "calendered", "shiny", "shining", "lustrous", "sheeny", "glossy"]}, {"answer": "glowering", "hint": "synonyms for glowering", "clues": ["sullen", "sour", "saturnine", "morose", "dark", "glum", "dour", "moody", "glowering"]}, {"answer": "gluey", "hint": "synonyms for gluey", "clues": ["pasty", "glutinous", "viscid", "gummy", "sticky", "mucilaginous", "viscous", "gluey"]}, {"answer": "glum", "hint": "synonyms for glum", "clues": ["sullen", "sour", "saturnine", "morose", "dark", "glowering", "dour", "moody", "glum"]}, {"answer": "glutinous", "hint": "synonyms for glutinous", "clues": ["pasty", "gluey", "viscid", "gummy", "sticky", "mucilaginous", "viscous", "glutinous"]}, {"answer": "gnarled", "hint": "synonyms for gnarled", "clues": ["knobbed", "knotty", "knotted", "gnarly", "gnarled"]}, {"answer": "gnarly", "hint": "synonyms for gnarly", "clues": ["knotted", "knobbed", "knotty", "gnarled", "gnarly"]}, {"answer": "goddam", "hint": "synonyms for goddam", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "darned", "damn", "goddam"]}, {"answer": "goddamn", "hint": "synonyms for goddamn", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddamned", "goddam", "darned", "damn"]}, {"answer": "goddamned", "hint": "synonyms for goddamned", "clues": ["damned", "blasted", "infernal", "blamed", "deuced", "blessed", "goddam", "darned", "damn", "goddamned"]}, {"answer": "gold", "hint": "synonyms for gold", "clues": ["golden", "gilded", "aureate", "gilt", "gold"]}, {"answer": "golden", "hint": "synonyms for golden", "clues": ["halcyon", "favorable", "gold", "gilded", "gilt", "lucky", "prosperous", "aureate", "fortunate", "golden"]}, {"answer": "gone", "hint": "synonyms for gone", "clues": ["bygone", "done for", "at rest", "bypast", "at peace", "kaput", "asleep", "deceased", "foregone", "departed", "gone"]}, {"answer": "gonzo", "hint": "synonyms for gonzo", "clues": ["flaky", "freakish", "outlandish", "bizarre", "freaky", "outre", "off-the-wall", "eccentric", "gonzo"]}, {"answer": "good", "hint": "synonyms for good", "clues": ["undecomposed", "right", "full", "respectable", "effective", "dependable", "ripe", "proficient", "in force", "beneficial", "unspoilt", "in effect", "skilful", "just", "near", "secure", "upright", "sound", "salutary", "expert", "adept", "practiced", "dear", "honest", "estimable", "unspoiled", "honorable", "well", "safe", "serious", "good"]}, {"answer": "good-for-naught", "hint": "synonyms for good-for-naught", "clues": ["good-for-nothing", "sorry", "meritless", "no-good", "no-count", "good-for-naught"]}, {"answer": "good-for-nothing", "hint": "synonyms for good-for-nothing", "clues": ["sorry", "good-for-naught", "meritless", "no-good", "no-count", "good-for-nothing"]}, {"answer": "good-hearted", "hint": "synonyms for good-hearted", "clues": ["benevolent", "large-hearted", "sympathetic", "openhearted", "charitable", "kindly", "good-hearted"]}, {"answer": "good-looking", "hint": "synonyms for good-looking", "clues": ["better-looking", "fine-looking", "well-favoured", "handsome", "good-looking"]}, {"answer": "goodish", "hint": "synonyms for goodish", "clues": ["tidy", "healthy", "respectable", "goodly", "sizable", "hefty", "goodish"]}, {"answer": "goodly", "hint": "synonyms for goodly", "clues": ["tidy", "healthy", "respectable", "goodish", "sizable", "hefty", "goodly"]}, {"answer": "goofy", "hint": "synonyms for goofy", "clues": ["silly", "cockamamie", "zany", "whacky", "cockamamy", "sappy", "goofy"]}, {"answer": "gooselike", "hint": "synonyms for gooselike", "clues": ["goosy", "anserine", "dopy", "jerky", "foolish", "gooselike"]}, {"answer": "goosey", "hint": "synonyms for goosey", "clues": ["goosy", "gooselike", "anserine", "dopy", "jerky", "foolish"]}, {"answer": "goosy", "hint": "synonyms for goosy", "clues": ["gooselike", "dopey", "anserine", "jerky", "foolish", "goosey"]}, {"answer": "gory", "hint": "synonyms for gory", "clues": ["sanguineous", "butcherly", "bloodstained", "sanguinary", "slaughterous", "gory"]}, {"answer": "gossamer", "hint": "synonyms for gossamer", "clues": ["filmy", "see-through", "diaphanous", "gauze-like", "ethereal", "vapourous", "cobwebby", "gauzy", "sheer", "transparent", "gossamer"]}, {"answer": "grabby", "hint": "synonyms for grabby", "clues": ["avaricious", "greedy", "prehensile", "covetous", "grasping", "grabby"]}, {"answer": "graceless", "hint": "synonyms for graceless", "clues": ["ungraceful", "gauche", "unpolished", "unpleasing", "graceless"]}, {"answer": "grainy", "hint": "synonyms for grainy", "clues": ["farinaceous", "gritty", "granulose", "coarse-grained", "granular", "mealy", "grainy"]}, {"answer": "grand", "hint": "synonyms for grand", "clues": ["expansive", "luxurious", "high-flown", "rattling", "imposing", "princely", "tremendous", "terrific", "lofty", "distinguished", "opulent", "august", "marvellous", "deluxe", "howling", "sumptuous", "rarified", "wondrous", "idealistic", "magisterial", "noble-minded", "fantastic", "gilded", "elevated", "lordly", "heroic", "exalted", "sublime", "high-minded", "wonderful", "grand"]}, {"answer": "grandiloquent", "hint": "synonyms for grandiloquent", "clues": ["magniloquent", "tall", "overblown", "pompous", "portentous", "pontifical", "grandiloquent"]}, {"answer": "grandiose", "hint": "synonyms for grandiose", "clues": ["highfaluting", "la-di-da", "hoity-toity", "grandiose"]}, {"answer": "granitic", "hint": "synonyms for granitic", "clues": ["rocklike", "stony", "flinty", "obdurate", "granitelike", "granitic"]}, {"answer": "granular", "hint": "synonyms for granular", "clues": ["chondritic", "farinaceous", "gritty", "grainy", "granulose", "coarse-grained", "mealy", "granular"]}, {"answer": "granulose", "hint": "synonyms for granulose", "clues": ["farinaceous", "gritty", "grainy", "coarse-grained", "granular", "mealy", "granulose"]}, {"answer": "graphic", "hint": "synonyms for graphic", "clues": ["pictorial", "graphical", "in writing", "vivid", "lifelike"]}, {"answer": "graspable", "hint": "synonyms for graspable", "clues": ["understandable", "perceivable", "intelligible", "apprehensible", "graspable"]}, {"answer": "grasping", "hint": "synonyms for grasping", "clues": ["avaricious", "greedy", "prehensile", "grabby", "covetous", "grasping"]}, {"answer": "grating", "hint": "synonyms for grating", "clues": ["rough", "rasping", "gravelly", "scratchy", "raspy", "grating"]}, {"answer": "gratis", "hint": "synonyms for gratis", "clues": ["free", "gratuitous", "complimentary", "costless", "gratis"]}, {"answer": "gratuitous", "hint": "synonyms for gratuitous", "clues": ["needless", "complimentary", "uncalled-for", "free", "gratis", "costless", "gratuitous"]}, {"answer": "grave", "hint": "synonyms for grave", "clues": ["weighty", "severe", "sedate", "heavy", "solemn", "dangerous", "life-threatening", "grievous", "serious", "sober", "grave"]}, {"answer": "gravelly", "hint": "synonyms for gravelly", "clues": ["rough", "shingly", "rasping", "grating", "scratchy", "pebbly", "raspy", "gravelly"]}, {"answer": "graven", "hint": "synonyms for graven", "clues": ["incised", "sculpted", "engraved", "inscribed", "etched", "graven"]}, {"answer": "gravid", "hint": "synonyms for gravid", "clues": ["big", "heavy", "expectant", "with child", "great", "enceinte", "large", "gravid"]}, {"answer": "gray", "hint": "synonyms for gray", "clues": ["grey", "grey-haired", "gray-headed", "grizzly", "greyish", "white-haired", "hoary", "gray"]}, {"answer": "gray-haired", "hint": "synonyms for gray-haired", "clues": ["grey", "grey-haired", "gray-headed", "grizzly", "white-haired", "gray", "hoary"]}, {"answer": "gray-headed", "hint": "synonyms for gray-headed", "clues": ["grey", "grey-haired", "grizzly", "white-haired", "gray", "grey-headed", "hoary"]}, {"answer": "great", "hint": "synonyms for great", "clues": ["smashing", "dandy", "neat", "enceinte", "bully", "not bad", "gravid", "large", "heavy", "bang-up", "outstanding", "expectant", "slap-up", "cracking", "keen", "with child", "corking", "swell", "majuscule", "capital", "big", "peachy", "groovy", "nifty", "great"]}, {"answer": "greater", "hint": "synonyms for greater", "clues": ["smashing", "dandy", "neat", "enceinte", "bully", "not bad", "gravid", "large", "heavy", "bang-up", "outstanding", "expectant", "slap-up", "cracking", "keen", "with child", "great", "corking", "swell", "majuscule", "capital", "big", "peachy", "groovy", "nifty", "greater"]}, {"answer": "greatest", "hint": "synonyms for greatest", "clues": ["smashing", "dandy", "neat", "enceinte", "bully", "not bad", "gravid", "superlative", "large", "heavy", "bang-up", "outstanding", "expectant", "slap-up", "cracking", "keen", "with child", "great", "corking", "swell", "majuscule", "capital", "big", "peachy", "sterling", "groovy", "nifty", "greatest"]}, {"answer": "greedy", "hint": "synonyms for greedy", "clues": ["avaricious", "prehensile", "grabby", "covetous", "esurient", "grasping", "devouring", "avid", "greedy"]}, {"answer": "green", "hint": "synonyms for green", "clues": ["unripe", "immature", "gullible", "unripened", "fleeceable", "light-green", "dark-green", "greenish", "green"]}, {"answer": "grey", "hint": "synonyms for grey", "clues": ["grey-haired", "gray-headed", "grizzly", "greyish", "white-haired", "gray", "hoary", "grey"]}, {"answer": "grey-haired", "hint": "synonyms for grey-haired", "clues": ["grey", "gray-headed", "grizzly", "white-haired", "gray-haired", "gray", "hoary"]}, {"answer": "grey-headed", "hint": "synonyms for grey-headed", "clues": ["grey", "grey-haired", "gray-headed", "grizzly", "white-haired", "gray", "hoary"]}, {"answer": "grief-stricken", "hint": "synonyms for grief-stricken", "clues": ["grieving", "mourning", "bereaved", "bereft", "sorrowing", "grief-stricken"]}, {"answer": "grieving", "hint": "synonyms for grieving", "clues": ["bereft", "mourning", "bereaved", "grief-stricken", "sorrowing", "grieving"]}, {"answer": "grievous", "hint": "synonyms for grievous", "clues": ["grave", "weighty", "monstrous", "flagitious", "atrocious", "severe", "heartbreaking", "heavy", "dangerous", "life-threatening", "heartrending", "serious", "grievous"]}, {"answer": "grim", "hint": "synonyms for grim", "clues": ["unforgiving", "sorry", "black", "drab", "dispirited", "relentless", "depressed", "macabre", "down", "mordant", "low-spirited", "downcast", "dark", "downhearted", "inexorable", "dour", "dingy", "stern", "dismal", "disconsolate", "unappeasable", "sick", "ghastly", "forbidding", "unrelenting", "down in the mouth", "low", "dreary", "blue", "gruesome", "gloomy", "grisly", "grim"]}, {"answer": "grimy", "hint": "synonyms for grimy", "clues": ["grubby", "grungy", "raunchy", "dingy", "begrimed", "grimy"]}, {"answer": "gripping", "hint": "synonyms for gripping", "clues": ["riveting", "absorbing", "engrossing", "fascinating", "gripping"]}, {"answer": "grisly", "hint": "synonyms for grisly", "clues": ["gruesome", "grim", "sick", "ghastly", "macabre", "grisly"]}, {"answer": "gritty", "hint": "synonyms for gritty", "clues": ["farinaceous", "gamy", "granulose", "game", "spunky", "grainy", "mettlesome", "coarse-grained", "spirited", "granular", "mealy", "gritty"]}, {"answer": "grizzly", "hint": "synonyms for grizzly", "clues": ["grey", "grey-haired", "gray-headed", "white-haired", "gray", "hoary", "grizzly"]}, {"answer": "groggy", "hint": "synonyms for groggy", "clues": ["stuporous", "logy", "dazed", "foggy", "groggy"]}, {"answer": "groovy", "hint": "synonyms for groovy", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "swagger", "nifty", "groovy"]}, {"answer": "gross", "hint": "synonyms for gross", "clues": ["sodding", "megascopic", "staring", "thoroughgoing", "rank", "crying", "double-dyed", "egregious", "earthy", "arrant", "unadulterated", "complete", "porcine", "crude", "consummate", "stark", "utter", "perfect", "glaring", "pure", "flagrant", "everlasting", "vulgar", "gross"]}, {"answer": "grotesque", "hint": "synonyms for grotesque", "clues": ["fantastical", "antic", "monstrous", "grotesque"]}, {"answer": "grouchy", "hint": "synonyms for grouchy", "clues": ["crabby", "cross", "crabbed", "grumpy", "fussy", "ill-tempered", "bad-tempered", "grouchy"]}, {"answer": "groundless", "hint": "synonyms for groundless", "clues": ["wild", "unfounded", "idle", "unwarranted", "baseless", "groundless"]}, {"answer": "groveling", "hint": "synonyms for groveling", "clues": ["wormy", "cringing", "wormlike", "grovelling"]}, {"answer": "grovelling", "hint": "synonyms for grovelling", "clues": ["wormy", "groveling", "cringing", "wormlike"]}, {"answer": "grown", "hint": "synonyms for grown", "clues": ["adult", "grownup", "fully grown", "big", "grown"]}, {"answer": "grownup", "hint": "synonyms for grownup", "clues": ["grown", "adult", "fully grown", "big", "grownup"]}, {"answer": "grubby", "hint": "synonyms for grubby", "clues": ["begrimed", "grungy", "raunchy", "grimy", "dingy", "grubby"]}, {"answer": "grueling", "hint": "synonyms for grueling", "clues": ["laborious", "toilsome", "operose", "backbreaking", "arduous", "punishing", "hard", "gruelling", "heavy"]}, {"answer": "gruelling", "hint": "synonyms for gruelling", "clues": ["laborious", "toilsome", "operose", "backbreaking", "grueling", "punishing", "hard", "arduous", "heavy"]}, {"answer": "gruesome", "hint": "synonyms for gruesome", "clues": ["grim", "sick", "ghastly", "grisly", "macabre", "gruesome"]}, {"answer": "gruff", "hint": "synonyms for gruff", "clues": ["hoarse", "ill-humoured", "crusty", "curmudgeonly", "husky", "gruff"]}, {"answer": "grumpy", "hint": "synonyms for grumpy", "clues": ["crabby", "cross", "grouchy", "crabbed", "fussy", "ill-tempered", "bad-tempered", "grumpy"]}, {"answer": "grungy", "hint": "synonyms for grungy", "clues": ["grubby", "begrimed", "raunchy", "grimy", "dingy", "grungy"]}, {"answer": "guileful", "hint": "synonyms for guileful", "clues": ["dodgy", "crafty", "tricky", "sly", "cunning", "slick", "foxy", "wily", "knavish", "guileful"]}, {"answer": "gummy", "hint": "synonyms for gummy", "clues": ["pasty", "gummed", "glutinous", "gluey", "viscid", "sticky", "mucilaginous", "viscous", "gummy"]}, {"answer": "gushing", "hint": "synonyms for gushing", "clues": ["burbly", "gushy", "pouring", "burbling", "effusive", "gushing"]}, {"answer": "habilimented", "hint": "synonyms for habilimented", "clues": ["robed", "appareled", "garmented", "dressed", "garbed", "attired", "habilimented"]}, {"answer": "hackneyed", "hint": "synonyms for hackneyed", "clues": ["old-hat", "timeworn", "trite", "shopworn", "commonplace", "well-worn", "banal", "threadbare", "stock", "tired", "hackneyed"]}, {"answer": "haggard", "hint": "synonyms for haggard", "clues": ["drawn", "skeletal", "bony", "gaunt", "pinched", "emaciated", "raddled", "worn", "wasted", "careworn", "cadaverous", "haggard"]}, {"answer": "half-baked", "hint": "synonyms for half-baked", "clues": ["softheaded", "screwball", "underdone", "crazy", "half-baked"]}, {"answer": "half-dozen", "hint": "synonyms for half-dozen", "clues": ["6", "half dozen", "vi", "six"]}, {"answer": "half_dozen", "hint": "synonyms for half dozen", "clues": ["6", "half-dozen", "vi", "six"]}, {"answer": "halt", "hint": "synonyms for halt", "clues": ["game", "halting", "gimpy", "crippled", "lame"]}, {"answer": "halting", "hint": "synonyms for halting", "clues": ["game", "gimpy", "halt", "crippled", "lame"]}, {"answer": "ham-fisted", "hint": "synonyms for ham-fisted", "clues": ["heavy-handed", "butterfingered", "bumbling", "left-handed", "handless", "ham-handed", "bungling", "ham-fisted"]}, {"answer": "ham-handed", "hint": "synonyms for ham-handed", "clues": ["ham-fisted", "heavy-handed", "butterfingered", "bumbling", "left-handed", "handless", "bungling", "ham-handed"]}, {"answer": "handless", "hint": "synonyms for handless", "clues": ["ham-fisted", "heavy-handed", "butterfingered", "bumbling", "left-handed", "ham-handed", "bungling", "handless"]}, {"answer": "handsome", "hint": "synonyms for handsome", "clues": ["bounteous", "better-looking", "good-looking", "liberal", "freehanded", "bighearted", "well-favored", "big", "fine-looking", "bountiful", "openhanded", "giving", "handsome"]}, {"answer": "haphazard", "hint": "synonyms for haphazard", "clues": ["slapdash", "hit-or-miss", "slipshod", "sloppy", "haphazard"]}, {"answer": "hapless", "hint": "synonyms for hapless", "clues": ["poor", "wretched", "misfortunate", "pathetic", "pitiable", "piteous", "miserable", "pitiful", "hapless"]}, {"answer": "happy-go-lucky", "hint": "synonyms for happy-go-lucky", "clues": ["slaphappy", "harum-scarum", "freewheeling", "carefree", "devil-may-care", "happy-go-lucky"]}, {"answer": "harassed", "hint": "synonyms for harassed", "clues": ["annoyed", "harried", "vexed", "pestered", "harassed"]}, {"answer": "hard", "hint": "synonyms for hard", "clues": ["unvoiced", "operose", "backbreaking", "knockout", "grueling", "punishing", "severe", "voiceless", "intemperate", "concentrated", "difficult", "heavy", "laborious", "toilsome", "strong", "tough", "arduous", "surd", "hard"]}, {"answer": "hard-boiled", "hint": "synonyms for hard-boiled", "clues": ["hardened", "hard-bitten", "case-hardened", "pugnacious", "hard-boiled"]}, {"answer": "hard_up", "hint": "synonyms for hard up", "clues": ["in straitened circumstances", "penniless", "penurious", "impecunious", "pinched", "hard up"]}, {"answer": "hardened", "hint": "synonyms for hardened", "clues": ["enured", "tempered", "case-hardened", "hard-boiled", "toughened", "treated", "set", "inured", "hardened"]}, {"answer": "hardheaded", "hint": "synonyms for hardheaded", "clues": ["practical", "hard-nosed", "pragmatic", "mulish", "hardheaded"]}, {"answer": "hardy", "hint": "synonyms for hardy", "clues": ["intrepid", "fearless", "stout", "brave", "unfearing", "audacious", "stalwart", "sturdy", "dauntless", "hardy"]}, {"answer": "harmonic", "hint": "synonyms for harmonic", "clues": ["harmonical", "sympathetic", "harmonised", "consonant"]}, {"answer": "harried", "hint": "synonyms for harried", "clues": ["harassed", "annoyed", "vexed", "pestered", "harried"]}, {"answer": "harrowing", "hint": "synonyms for harrowing", "clues": ["torturous", "torturesome", "excruciating", "agonising", "torturing", "harrowing"]}, {"answer": "harum-scarum", "hint": "synonyms for harum-scarum", "clues": ["slaphappy", "freewheeling", "happy-go-lucky", "carefree", "devil-may-care", "harum-scarum"]}, {"answer": "hasty", "hint": "synonyms for hasty", "clues": ["overhasty", "headlong", "precipitant", "precipitous", "hasty"]}, {"answer": "haughty", "hint": "synonyms for haughty", "clues": ["swaggering", "imperious", "sniffy", "lordly", "overbearing", "supercilious", "prideful", "disdainful", "haughty"]}, {"answer": "hawk-eyed", "hint": "synonyms for hawk-eyed", "clues": ["keen-sighted", "lynx-eyed", "sharp-sighted", "argus-eyed", "sharp-eyed", "quick-sighted", "hawk-eyed"]}, {"answer": "haywire", "hint": "synonyms for haywire", "clues": ["balmy", "loco", "loony", "round the bend", "awry", "buggy", "barmy", "daft", "loopy", "wrong", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "amiss", "batty", "bats", "cracked", "haywire"]}, {"answer": "hazy", "hint": "synonyms for hazy", "clues": ["misty", "bleary", "blurred", "foggy", "blurry", "brumous", "fuzzy", "muzzy", "hazy"]}, {"answer": "headstrong", "hint": "synonyms for headstrong", "clues": ["self-willed", "froward", "willful", "headstrong"]}, {"answer": "heady", "hint": "synonyms for heady", "clues": ["judicious", "foolhardy", "reckless", "rash", "intoxicating", "wise", "heady"]}, {"answer": "healing", "hint": "synonyms for healing", "clues": ["remedial", "curative", "therapeutic", "sanative", "alterative", "healing"]}, {"answer": "healthier", "hint": "synonyms for healthier", "clues": ["goodly", "levelheaded", "salubrious", "healthy", "respectable", "goodish", "sizable", "hefty", "intelligent", "tidy", "good for you", "fitter", "sound", "healthier"]}, {"answer": "healthy", "hint": "synonyms for healthy", "clues": ["goodly", "levelheaded", "salubrious", "respectable", "goodish", "sizable", "hefty", "intelligent", "tidy", "good for you", "sound", "healthy"]}, {"answer": "hearty", "hint": "synonyms for hearty", "clues": ["substantial", "satisfying", "solid", "red-blooded", "square", "lusty", "full-blooded", "hearty"]}, {"answer": "heavy", "hint": "synonyms for heavy", "clues": ["fleshy", "operose", "sonorous", "backbreaking", "punishing", "dense", "intemperate", "profound", "ponderous", "large", "laborious", "toilsome", "with child", "impenetrable", "great", "big", "clayey", "arduous", "cloggy", "lowering", "grueling", "enceinte", "labored", "leaden", "weighed down", "gravid", "grievous", "sound", "sullen", "wakeless", "grave", "expectant", "overweight", "weighty", "threatening", "hard", "lumbering", "heavy"]}, {"answer": "heavy-handed", "hint": "synonyms for heavy-handed", "clues": ["roughshod", "ham-fisted", "butterfingered", "bumbling", "left-handed", "handless", "ham-handed", "bungling", "heavy-handed"]}, {"answer": "heavyset", "hint": "synonyms for heavyset", "clues": ["stocky", "thick", "thickset", "compact", "heavyset"]}, {"answer": "heedful", "hint": "synonyms for heedful", "clues": ["paying attention", "careful", "attentive", "thoughtful", "advertent", "heedful"]}, {"answer": "hefty", "hint": "synonyms for hefty", "clues": ["powerful", "respectable", "goodish", "healthy", "sizable", "muscular", "brawny", "tidy", "goodly", "sinewy", "hefty"]}, {"answer": "helical", "hint": "synonyms for helical", "clues": ["turbinate", "volute", "spiral", "whorled", "coiling", "helical"]}, {"answer": "hellish", "hint": "synonyms for hellish", "clues": ["unholy", "diabolical", "infernal", "demonic", "satanic", "beastly", "fiendish", "god-awful", "hellish"]}, {"answer": "hereditary", "hint": "synonyms for hereditary", "clues": ["familial", "inherited", "transmitted", "ancestral", "patrimonial", "genetic", "transmissible", "hereditary"]}, {"answer": "heroic", "hint": "synonyms for heroic", "clues": ["desperate", "expansive", "larger-than-life", "epic", "heroical", "grand"]}, {"answer": "hidden", "hint": "synonyms for hidden", "clues": ["obscure", "secret", "concealed", "out of sight", "hidden"]}, {"answer": "hideous", "hint": "synonyms for hideous", "clues": ["repulsive", "horrific", "outrageous", "horrid", "hideous"]}, {"answer": "hifalutin", "hint": "synonyms for hifalutin", "clues": ["highfaluting", "grandiose", "la-di-da", "hoity-toity"]}, {"answer": "higgledy-piggledy", "hint": "synonyms for higgledy-piggledy", "clues": ["topsy-turvy", "jumbled", "disorderly", "hugger-mugger", "higgledy-piggledy"]}, {"answer": "high", "hint": "synonyms for high", "clues": ["gamy", "mellow", "eminent", "in high spirits", "high-pitched", "high"]}, {"answer": "high-and-mighty", "hint": "synonyms for high-and-mighty", "clues": ["dominating", "magisterial", "peremptory", "bossy", "autocratic", "high-and-mighty"]}, {"answer": "high-energy", "hint": "synonyms for high-energy", "clues": ["high-powered", "high-voltage", "high-octane", "high-energy"]}, {"answer": "high-flown", "hint": "synonyms for high-flown", "clues": ["inflated", "rarified", "high-sounding", "idealistic", "noble-minded", "grand", "elevated", "exalted", "sublime", "lofty", "high-minded", "high-flown"]}, {"answer": "high-minded", "hint": "synonyms for high-minded", "clues": ["rarified", "idealistic", "noble-minded", "grand", "elevated", "high-flown", "sublime", "lofty", "exalted", "high-minded"]}, {"answer": "high-octane", "hint": "synonyms for high-octane", "clues": ["high-powered", "high-energy", "high-voltage", "high-octane"]}, {"answer": "high-power", "hint": "synonyms for high-power", "clues": ["high-powered", "high-energy", "high-voltage", "high-octane"]}, {"answer": "high-powered", "hint": "synonyms for high-powered", "clues": ["high-energy", "high-power", "high-voltage", "high-octane"]}, {"answer": "high-priced", "hint": "synonyms for high-priced", "clues": ["pricy", "dear", "costly", "high-priced"]}, {"answer": "high-strung", "hint": "synonyms for high-strung", "clues": ["highly strung", "restive", "nervy", "uptight", "overstrung", "edgy", "jittery", "jumpy", "high-strung"]}, {"answer": "high-voltage", "hint": "synonyms for high-voltage", "clues": ["high-power", "high-octane", "high-potential", "high-energy", "high-voltage"]}, {"answer": "higher", "hint": "synonyms for higher", "clues": ["gamy", "mellow", "eminent", "in high spirits", "high", "high-pitched", "higher"]}, {"answer": "highfalutin", "hint": "synonyms for highfalutin", "clues": ["la-di-da", "grandiose", "highfaluting", "hoity-toity"]}, {"answer": "highfaluting", "hint": "synonyms for highfaluting", "clues": ["la-di-da", "grandiose", "hoity-toity", "highfalutin"]}, {"answer": "highly_strung", "hint": "synonyms for highly strung", "clues": ["high-strung", "restive", "nervy", "uptight", "overstrung", "edgy", "jittery", "jumpy", "highly strung"]}, {"answer": "ho-hum", "hint": "synonyms for ho-hum", "clues": ["irksome", "tedious", "tiresome", "dull", "wearisome", "boring", "deadening", "slow", "ho-hum"]}, {"answer": "hoar", "hint": "synonyms for hoar", "clues": ["grey", "grey-haired", "gray-headed", "grizzly", "white-haired", "gray", "hoary"]}, {"answer": "hoary", "hint": "synonyms for hoary", "clues": ["grey", "grey-haired", "rusty", "gray-headed", "grizzly", "white-haired", "gray", "hoar", "canescent"]}, {"answer": "hoggish", "hint": "synonyms for hoggish", "clues": ["piggish", "piggy", "swinish", "porcine", "hoggish"]}, {"answer": "hoity-toity", "hint": "synonyms for hoity-toity", "clues": ["highfaluting", "grandiose", "la-di-da", "hoity-toity"]}, {"answer": "hokey", "hint": "synonyms for hokey", "clues": ["stilted", "mushy", "soppy", "contrived", "bathetic", "soupy", "artificial", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "hokey"]}, {"answer": "hole-and-corner", "hint": "synonyms for hole-and-corner", "clues": ["clandestine", "hush-hush", "hugger-mugger", "undercover", "secret", "hole-in-corner", "underground", "surreptitious", "cloak-and-dagger"]}, {"answer": "holier-than-thou", "hint": "synonyms for holier-than-thou", "clues": ["self-righteous", "pietistic", "sanctimonious", "pharisaic", "holier-than-thou"]}, {"answer": "homespun", "hint": "synonyms for homespun", "clues": ["tweedy", "nubbly", "cracker-barrel", "slubbed", "folksy", "homespun"]}, {"answer": "honest", "hint": "synonyms for honest", "clues": ["dependable", "true", "good", "honorable", "fair", "reliable", "honest"]}, {"answer": "honeycombed", "hint": "synonyms for honeycombed", "clues": ["cavitied", "alveolate", "pitted", "honeycombed"]}, {"answer": "honeyed", "hint": "synonyms for honeyed", "clues": ["sweet", "honied", "mellisonant", "dulcet", "syrupy", "mellifluous", "honeyed"]}, {"answer": "honorable", "hint": "synonyms for honorable", "clues": ["good", "ethical", "respectable", "honourable", "honest", "estimable"]}, {"answer": "hooked", "hint": "synonyms for hooked", "clues": ["dependant", "drug-addicted", "hooklike", "strung-out", "aquiline", "hooked"]}, {"answer": "horny", "hint": "synonyms for horny", "clues": ["ruttish", "hornlike", "turned on", "randy", "corneous", "aroused", "steamy", "horny"]}, {"answer": "horrendous", "hint": "synonyms for horrendous", "clues": ["dire", "fearsome", "dreaded", "fearful", "dread", "direful", "frightening", "terrible", "dreadful", "horrific", "awful", "horrendous"]}, {"answer": "horrible", "hint": "synonyms for horrible", "clues": ["ugly", "horrifying", "atrocious", "frightful", "horrible"]}, {"answer": "horrific", "hint": "synonyms for horrific", "clues": ["dire", "horrendous", "horrid", "fearsome", "dreaded", "fearful", "hideous", "dread", "frightening", "outrageous", "direful", "terrible", "dreadful", "awful", "horrific"]}, {"answer": "horrifying", "hint": "synonyms for horrifying", "clues": ["horrible", "ugly", "atrocious", "frightful", "horrifying"]}, {"answer": "hot", "hint": "synonyms for hot", "clues": ["spicy", "live", "raging", "blistering", "red-hot", "hot"]}, {"answer": "hot-tempered", "hint": "synonyms for hot-tempered", "clues": ["irascible", "short-tempered", "hotheaded", "choleric", "quick-tempered"]}, {"answer": "hotheaded", "hint": "synonyms for hotheaded", "clues": ["impetuous", "madcap", "quick-tempered", "tearaway", "irascible", "hot-tempered", "impulsive", "brainish", "choleric", "hotheaded"]}, {"answer": "howling", "hint": "synonyms for howling", "clues": ["marvellous", "wondrous", "grand", "fantastic", "rattling", "tremendous", "terrific", "wonderful", "howling"]}, {"answer": "huffy", "hint": "synonyms for huffy", "clues": ["thin-skinned", "sore", "mad", "touchy", "feisty", "huffy"]}, {"answer": "hugger-mugger", "hint": "synonyms for hugger-mugger", "clues": ["topsy-turvy", "clandestine", "hush-hush", "disorderly", "undercover", "secret", "underground", "hole-and-corner", "higgledy-piggledy", "surreptitious", "jumbled", "cloak-and-dagger", "hugger-mugger"]}, {"answer": "humanist", "hint": "synonyms for humanist", "clues": ["humane", "humanitarian", "humanistic", "human-centred"]}, {"answer": "humanistic", "hint": "synonyms for humanistic", "clues": ["humane", "humanitarian", "human-centred", "humanist"]}, {"answer": "humble", "hint": "synonyms for humble", "clues": ["base", "menial", "baseborn", "low", "small", "modest", "humble"]}, {"answer": "humbled", "hint": "synonyms for humbled", "clues": ["low", "crushed", "humiliated", "broken", "humbled"]}, {"answer": "humdrum", "hint": "synonyms for humdrum", "clues": ["unglamourous", "monotonous", "commonplace", "prosaic", "humdrum"]}, {"answer": "humiliated", "hint": "synonyms for humiliated", "clues": ["embarrassed", "mortified", "humbled", "low", "crushed", "broken", "humiliated"]}, {"answer": "humongous", "hint": "synonyms for humongous", "clues": ["thumping", "whopping", "walloping", "banging", "humongous"]}, {"answer": "humpbacked", "hint": "synonyms for humpbacked", "clues": ["crookback", "kyphotic", "gibbous", "hunchbacked", "humped", "humpbacked"]}, {"answer": "humped", "hint": "synonyms for humped", "clues": ["crookback", "humpbacked", "kyphotic", "gibbous", "hunchbacked", "humped"]}, {"answer": "hunchbacked", "hint": "synonyms for hunchbacked", "clues": ["crookback", "humpbacked", "kyphotic", "gibbous", "humped", "hunchbacked"]}, {"answer": "hunched", "hint": "synonyms for hunched", "clues": ["stooping", "stooped", "crooked", "round-backed", "round-shouldered", "hunched"]}, {"answer": "hunky-dory", "hint": "synonyms for hunky-dory", "clues": ["o.k.", "okay", "ok", "all right", "fine", "hunky-dory"]}, {"answer": "hush-hush", "hint": "synonyms for hush-hush", "clues": ["clandestine", "hugger-mugger", "undercover", "secret", "underground", "hole-and-corner", "surreptitious", "cloak-and-dagger", "hush-hush"]}, {"answer": "husky", "hint": "synonyms for husky", "clues": ["strapping", "hoarse", "buirdly", "beefy", "burly", "gruff", "husky"]}, {"answer": "hypersensitised", "hint": "synonyms for hypersensitised", "clues": ["hypersensitive", "sensitized", "supersensitised", "allergic"]}, {"answer": "hypersensitive", "hint": "synonyms for hypersensitive", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "hypersensitized", "hint": "synonyms for hypersensitized", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "hypnagogic", "hint": "synonyms for hypnagogic", "clues": ["soporific", "hypnogogic", "somnific", "somniferous", "soporiferous"]}, {"answer": "hypnogogic", "hint": "synonyms for hypnogogic", "clues": ["soporific", "somnific", "somniferous", "soporiferous", "hypnagogic"]}, {"answer": "hypnotised", "hint": "synonyms for hypnotised", "clues": ["fascinated", "mesmerized", "spell-bound", "transfixed", "hypnotized"]}, {"answer": "hypnotized", "hint": "synonyms for hypnotized", "clues": ["fascinated", "mesmerized", "spell-bound", "transfixed", "hypnotised"]}, {"answer": "hypothetic", "hint": "synonyms for hypothetic", "clues": ["suppositional", "supposed", "divinatory", "suppositious", "hypothetical", "conjectural"]}, {"answer": "hypothetical", "hint": "synonyms for hypothetical", "clues": ["suppositional", "supposed", "supposititious", "divinatory", "hypothetic", "conjectural"]}, {"answer": "icky", "hint": "synonyms for icky", "clues": ["rotten", "shitty", "gooey", "stinky", "stinking", "crappy", "lousy", "icky"]}, {"answer": "icy", "hint": "synonyms for icy", "clues": ["arctic", "frosty", "wintry", "polar", "glacial", "frigid", "gelid", "frozen", "icy"]}, {"answer": "idealistic", "hint": "synonyms for idealistic", "clues": ["rarified", "noble-minded", "grand", "sublime", "elevated", "high-flown", "exalted", "ideal", "lofty", "high-minded", "idealistic"]}, {"answer": "identical", "hint": "synonyms for identical", "clues": ["indistinguishable", "selfsame", "monovular", "superposable", "very", "identical"]}, {"answer": "idiotic", "hint": "synonyms for idiotic", "clues": ["imbecile", "ridiculous", "imbecilic", "cockeyed", "crackbrained", "absurd", "nonsensical", "ludicrous", "derisory", "preposterous", "laughable", "idiotic"]}, {"answer": "idle", "hint": "synonyms for idle", "clues": ["wild", "out of work", "light", "loose", "unwarranted", "unused", "baseless", "groundless", "jobless", "dead", "unfounded", "idle"]}, {"answer": "igneous", "hint": "synonyms for igneous", "clues": ["pyrogenic", "pyrogenous", "eruptive", "fiery", "igneous"]}, {"answer": "ignominious", "hint": "synonyms for ignominious", "clues": ["shameful", "opprobrious", "black", "inglorious", "disgraceful", "ignominious"]}, {"answer": "ignorant", "hint": "synonyms for ignorant", "clues": ["unlettered", "nescient", "unknowledgeable", "unlearned", "illiterate", "unknowing", "unwitting", "ignorant"]}, {"answer": "ill-bred", "hint": "synonyms for ill-bred", "clues": ["yokelish", "bounderish", "rude", "underbred", "lowbred", "ill-bred"]}, {"answer": "ill-chosen", "hint": "synonyms for ill-chosen", "clues": ["clumsy", "awkward", "inept", "inapt", "cumbersome", "ill-chosen"]}, {"answer": "ill-fated", "hint": "synonyms for ill-fated", "clues": ["unlucky", "ill-starred", "ill-omened", "doomed", "ill-fated"]}, {"answer": "ill-humored", "hint": "synonyms for ill-humored", "clues": ["curmudgeonly", "crusty", "ill-humoured", "gruff"]}, {"answer": "ill-humoured", "hint": "synonyms for ill-humoured", "clues": ["curmudgeonly", "crusty", "gruff", "ill-humored"]}, {"answer": "ill-mannered", "hint": "synonyms for ill-mannered", "clues": ["unmannered", "rude", "bad-mannered", "unmannerly", "ill-mannered"]}, {"answer": "ill-omened", "hint": "synonyms for ill-omened", "clues": ["ill-fated", "ill-starred", "doomed", "unlucky", "ill-omened"]}, {"answer": "ill-scented", "hint": "synonyms for ill-scented", "clues": ["funky", "smelly", "foul", "foetid", "stinking", "foul-smelling", "noisome", "ill-scented"]}, {"answer": "ill-shapen", "hint": "synonyms for ill-shapen", "clues": ["malformed", "misshapen", "deformed", "distorted", "ill-shapen"]}, {"answer": "ill-smelling", "hint": "synonyms for ill-smelling", "clues": ["malodourous", "stinky", "unpleasant-smelling", "ill-smelling"]}, {"answer": "ill-starred", "hint": "synonyms for ill-starred", "clues": ["ill-fated", "unlucky", "ill-omened", "doomed", "ill-starred"]}, {"answer": "ill-tempered", "hint": "synonyms for ill-tempered", "clues": ["crabby", "cross", "crabbed", "grumpy", "fussy", "grouchy", "bad-tempered", "ill-tempered"]}, {"answer": "ill-used", "hint": "synonyms for ill-used", "clues": ["exploited", "used", "victimised", "put-upon", "ill-used"]}, {"answer": "illegitimate", "hint": "synonyms for illegitimate", "clues": ["outlaw", "illicit", "unlawful", "illegitimate"]}, {"answer": "illicit", "hint": "synonyms for illicit", "clues": ["outlaw", "illegitimate", "unlawful", "illicit"]}, {"answer": "illogical", "hint": "synonyms for illogical", "clues": ["unconnected", "confused", "scattered", "disconnected", "disordered", "disjointed", "unlogical", "garbled", "illogical"]}, {"answer": "illustrious", "hint": "synonyms for illustrious", "clues": ["famed", "famous", "celebrated", "notable", "noted", "far-famed", "renowned", "illustrious"]}, {"answer": "imitation", "hint": "synonyms for imitation", "clues": ["faux", "simulated", "fake", "false", "imitation"]}, {"answer": "imitative", "hint": "synonyms for imitative", "clues": ["echoic", "onomatopoeic", "counterfeit", "imitative"]}, {"answer": "immaculate", "hint": "synonyms for immaculate", "clues": ["undefiled", "spic-and-span", "faultless", "spick", "speckless", "impeccable", "spotless", "immaculate"]}, {"answer": "immaterial", "hint": "synonyms for immaterial", "clues": ["incorporeal", "orthogonal", "nonmaterial", "extraneous", "indifferent", "impertinent", "immaterial"]}, {"answer": "immature", "hint": "synonyms for immature", "clues": ["unripe", "green", "unfledged", "young", "unripened", "immature"]}, {"answer": "immeasurable", "hint": "synonyms for immeasurable", "clues": ["unmeasurable", "unmeasured", "immensurable", "incomputable", "inestimable"]}, {"answer": "immediate", "hint": "synonyms for immediate", "clues": ["quick", "straightaway", "prompt", "contiguous", "immediate"]}, {"answer": "imminent", "hint": "synonyms for imminent", "clues": ["at hand", "impendent", "impending", "close at hand", "imminent"]}, {"answer": "impassioned", "hint": "synonyms for impassioned", "clues": ["perfervid", "ardent", "fiery", "torrid", "fervid", "fervent", "impassioned"]}, {"answer": "impassive", "hint": "synonyms for impassive", "clues": ["poker-faced", "deadpan", "expressionless", "stolid", "unexpressive", "impassive"]}, {"answer": "impecunious", "hint": "synonyms for impecunious", "clues": ["in straitened circumstances", "penniless", "penurious", "hard up", "pinched", "impecunious"]}, {"answer": "impendent", "hint": "synonyms for impendent", "clues": ["at hand", "imminent", "impending", "close at hand", "impendent"]}, {"answer": "impending", "hint": "synonyms for impending", "clues": ["at hand", "impendent", "imminent", "close at hand", "impending"]}, {"answer": "imperial", "hint": "synonyms for imperial", "clues": ["royal", "majestic", "regal", "purple", "imperial"]}, {"answer": "imperious", "hint": "synonyms for imperious", "clues": ["swaggering", "sniffy", "lordly", "overbearing", "haughty", "prideful", "supercilious", "disdainful", "imperious"]}, {"answer": "impertinent", "hint": "synonyms for impertinent", "clues": ["impudent", "overbold", "orthogonal", "extraneous", "irreverent", "immaterial", "sassy", "pert", "smart", "wise", "fresh", "saucy", "impertinent"]}, {"answer": "impetuous", "hint": "synonyms for impetuous", "clues": ["tearaway", "impulsive", "hotheaded", "madcap", "brainish", "impetuous"]}, {"answer": "impish", "hint": "synonyms for impish", "clues": ["prankish", "mischievous", "puckish", "pixilated", "arch", "implike", "wicked", "impish"]}, {"answer": "implanted", "hint": "synonyms for implanted", "clues": ["deep-rooted", "planted", "ingrained", "deep-seated"]}, {"answer": "implike", "hint": "synonyms for implike", "clues": ["prankish", "mischievous", "puckish", "impish", "pixilated", "arch", "wicked", "implike"]}, {"answer": "important", "hint": "synonyms for important", "clues": ["crucial", "authoritative", "significant", "of import", "important"]}, {"answer": "imposing", "hint": "synonyms for imposing", "clues": ["magisterial", "baronial", "stately", "noble", "distinguished", "grand", "imposing"]}, {"answer": "impossible", "hint": "synonyms for impossible", "clues": ["out of the question", "insufferable", "unacceptable", "inconceivable", "unimaginable", "impossible"]}, {"answer": "impoverished", "hint": "synonyms for impoverished", "clues": ["indigent", "destitute", "wiped out", "necessitous", "needy", "poverty-stricken", "broken", "impoverished"]}, {"answer": "impregnable", "hint": "synonyms for impregnable", "clues": ["strong", "conceptive", "unattackable", "inviolable", "inexpugnable", "unassailable", "secure", "impregnable"]}, {"answer": "improbable", "hint": "synonyms for improbable", "clues": ["unbelievable", "marvellous", "unlikely", "tall", "unconvincing", "improbable"]}, {"answer": "impromptu", "hint": "synonyms for impromptu", "clues": ["off-the-cuff", "extemporaneous", "extempore", "offhand", "unrehearsed", "ad-lib", "extemporary", "impromptu"]}, {"answer": "impudent", "hint": "synonyms for impudent", "clues": ["overbold", "saucy", "snotty-nosed", "impertinent", "smart", "wise", "fresh", "insolent", "flip", "sassy", "impudent"]}, {"answer": "impulsive", "hint": "synonyms for impulsive", "clues": ["driving", "impetuous", "unprompted", "hotheaded", "whimsical", "madcap", "capricious", "tearaway", "brainish", "impulsive"]}, {"answer": "in_love", "hint": "synonyms for in love", "clues": ["taken with", "soft on", "potty", "enamored", "smitten", "infatuated", "in love"]}, {"answer": "in_one's_birthday_suit", "hint": "synonyms for in one's birthday suit", "clues": ["in your birthday suit", "naked as the day one was born", "mother-naked", "naked as the day you were born", "in one's birthday suit"]}, {"answer": "in_small_stages", "hint": "synonyms for in small stages", "clues": ["step-by-step", "stepwise", "bit-by-bit", "piecemeal", "in small stages"]}, {"answer": "in_straitened_circumstances", "hint": "synonyms for in straitened circumstances", "clues": ["penniless", "penurious", "hard up", "impecunious", "pinched", "in straitened circumstances"]}, {"answer": "in_style", "hint": "synonyms for in style", "clues": ["a la mode", "latest", "modish", "in vogue", "in style"]}, {"answer": "in_the_altogether", "hint": "synonyms for in the altogether", "clues": ["in the buff", "peeled", "stark naked", "naked as a jaybird", "raw", "in the raw", "bare-assed", "in the altogether"]}, {"answer": "in_the_buff", "hint": "synonyms for in the buff", "clues": ["in the altogether", "peeled", "stark naked", "naked as a jaybird", "raw", "in the raw", "bare-assed", "in the buff"]}, {"answer": "in_the_raw", "hint": "synonyms for in the raw", "clues": ["in the altogether", "in the buff", "peeled", "stark naked", "naked as a jaybird", "raw", "bare-assed", "in the raw"]}, {"answer": "in_vogue", "hint": "synonyms for in vogue", "clues": ["a la mode", "latest", "modish", "in style", "in vogue"]}, {"answer": "in_your_birthday_suit", "hint": "synonyms for in your birthday suit", "clues": ["naked as the day one was born", "mother-naked", "in one's birthday suit", "naked as the day you were born", "in your birthday suit"]}, {"answer": "inaccessible", "hint": "synonyms for inaccessible", "clues": ["unobtainable", "untouchable", "unaccessible", "unprocurable"]}, {"answer": "inactive", "hint": "synonyms for inactive", "clues": ["nonoperational", "dormant", "motionless", "passive", "static", "still", "inactive"]}, {"answer": "inane", "hint": "synonyms for inane", "clues": ["asinine", "mindless", "fatuous", "vacuous", "inane"]}, {"answer": "inanimate", "hint": "synonyms for inanimate", "clues": ["pulseless", "breathless", "nonliving", "inanimate"]}, {"answer": "inapt", "hint": "synonyms for inapt", "clues": ["clumsy", "awkward", "ill-chosen", "inept", "cumbersome", "inapt"]}, {"answer": "inaugural", "hint": "synonyms for inaugural", "clues": ["maiden", "initiatory", "initiative", "first", "inaugural"]}, {"answer": "inauspicious", "hint": "synonyms for inauspicious", "clues": ["ill", "ominous", "adverse", "untoward", "unfortunate", "inauspicious"]}, {"answer": "inborn", "hint": "synonyms for inborn", "clues": ["innate", "connatural", "inbred", "congenital", "inborn"]}, {"answer": "inbuilt", "hint": "synonyms for inbuilt", "clues": ["constitutional", "built-in", "inherent", "integral", "inbuilt"]}, {"answer": "incarnate", "hint": "synonyms for incarnate", "clues": ["corporal", "corporate", "bodied", "incarnate"]}, {"answer": "incendiary", "hint": "synonyms for incendiary", "clues": ["rabble-rousing", "instigative", "inflammatory", "seditious", "incitive", "incendiary"]}, {"answer": "incessant", "hint": "synonyms for incessant", "clues": ["constant", "unceasing", "ceaseless", "unremitting", "perpetual", "never-ending", "incessant"]}, {"answer": "incidental", "hint": "synonyms for incidental", "clues": ["concomitant", "resultant", "accompanying", "ensuant", "nonessential", "consequent", "attendant", "incident", "sequent"]}, {"answer": "incised", "hint": "synonyms for incised", "clues": ["etched", "engraved", "graven", "inscribed", "incised"]}, {"answer": "incisive", "hint": "synonyms for incisive", "clues": ["discriminating", "penetrating", "keen", "knifelike", "sharp", "penetrative", "acute", "piercing", "incisive"]}, {"answer": "incitive", "hint": "synonyms for incitive", "clues": ["rabble-rousing", "incendiary", "instigative", "seditious", "inflammatory", "incitive"]}, {"answer": "incompatible", "hint": "synonyms for incompatible", "clues": ["discrepant", "ill-sorted", "antagonistic", "uncongenial", "out or keeping", "contrastive", "inappropriate", "unsuited", "unfitting", "mismated", "incompatible"]}, {"answer": "incompetent", "hint": "synonyms for incompetent", "clues": ["clumsy", "incapable", "unequal to", "unskilled", "unqualified", "fumbling", "bungling", "incompetent"]}, {"answer": "incorporate", "hint": "synonyms for incorporate", "clues": ["integrated", "unified", "merged", "incorporated"]}, {"answer": "incorporated", "hint": "synonyms for incorporated", "clues": ["unified", "incorporate", "merged", "integrated"]}, {"answer": "indecent", "hint": "synonyms for indecent", "clues": ["uncomely", "indecorous", "unseemly", "untoward", "unbecoming", "indecent"]}, {"answer": "indecorous", "hint": "synonyms for indecorous", "clues": ["uncomely", "unseemly", "indecent", "untoward", "unbecoming", "indelicate", "indecorous"]}, {"answer": "indefensible", "hint": "synonyms for indefensible", "clues": ["insupportable", "unwarrantable", "unwarranted", "unjustifiable", "untenable", "indefensible"]}, {"answer": "indefinable", "hint": "synonyms for indefinable", "clues": ["unutterable", "indescribable", "unspeakable", "untellable", "ineffable", "undefinable"]}, {"answer": "independent", "hint": "synonyms for independent", "clues": ["self-governing", "main", "autonomous", "sovereign", "independent"]}, {"answer": "indescribable", "hint": "synonyms for indescribable", "clues": ["unutterable", "unspeakable", "indefinable", "untellable", "ineffable", "indescribable"]}, {"answer": "indicative", "hint": "synonyms for indicative", "clues": ["revelatory", "indicatory", "significative", "declarative", "suggestive", "indicative"]}, {"answer": "indicatory", "hint": "synonyms for indicatory", "clues": ["indicative", "significative", "revelatory", "suggestive", "indicatory"]}, {"answer": "indifferent", "hint": "synonyms for indifferent", "clues": ["deaf", "inert", "unbiased", "neutral", "immaterial", "so-so", "apathetic", "indifferent"]}, {"answer": "indigenous", "hint": "synonyms for indigenous", "clues": ["autochthonous", "endemic", "autochthonal", "autochthonic", "indigenous"]}, {"answer": "indigent", "hint": "synonyms for indigent", "clues": ["destitute", "impoverished", "necessitous", "needy", "poverty-stricken", "indigent"]}, {"answer": "indisposed", "hint": "synonyms for indisposed", "clues": ["averse", "peaked", "loth", "sickly", "unwell", "under the weather", "antipathetic", "poorly", "seedy", "ailing", "indisposed"]}, {"answer": "individual", "hint": "synonyms for individual", "clues": ["single", "item-by-item", "private", "case-by-case", "individual"]}, {"answer": "indolent", "hint": "synonyms for indolent", "clues": ["faineant", "lazy", "otiose", "work-shy", "slothful", "indolent"]}, {"answer": "industrious", "hint": "synonyms for industrious", "clues": ["up-and-coming", "tireless", "hardworking", "energetic", "untiring", "gumptious", "industrious"]}, {"answer": "ineffable", "hint": "synonyms for ineffable", "clues": ["indescribable", "indefinable", "unspeakable", "unnameable", "untellable", "unutterable", "ineffable"]}, {"answer": "ineffective", "hint": "synonyms for ineffective", "clues": ["uneffective", "unable", "ineffectual", "inefficient"]}, {"answer": "ineffectual", "hint": "synonyms for ineffectual", "clues": ["uneffective", "futile", "unavailing", "unable", "otiose", "ineffectual"]}, {"answer": "inept", "hint": "synonyms for inept", "clues": ["clumsy", "awkward", "ill-chosen", "inapt", "feckless", "tactless", "cumbersome", "inept"]}, {"answer": "inert", "hint": "synonyms for inert", "clues": ["sluggish", "neutral", "soggy", "indifferent", "torpid", "inert"]}, {"answer": "inexorable", "hint": "synonyms for inexorable", "clues": ["intransigent", "unforgiving", "grim", "unappeasable", "relentless", "unrelenting", "adamant", "stern", "adamantine", "inexorable"]}, {"answer": "infatuated", "hint": "synonyms for infatuated", "clues": ["taken with", "soft on", "potty", "in love", "enamored", "smitten", "infatuated"]}, {"answer": "infernal", "hint": "synonyms for infernal", "clues": ["diabolical", "blasted", "blamed", "demonic", "blessed", "goddam", "hellish", "unholy", "damned", "deuced", "satanic", "goddamned", "darned", "fiendish", "damn", "infernal"]}, {"answer": "infinite", "hint": "synonyms for infinite", "clues": ["unnumbered", "innumerable", "numberless", "uncounted", "non-finite", "myriad", "multitudinous", "innumerous", "countless", "infinite"]}, {"answer": "infirm", "hint": "synonyms for infirm", "clues": ["rickety", "sapless", "weakly", "feeble", "decrepit", "debile", "infirm"]}, {"answer": "inflammatory", "hint": "synonyms for inflammatory", "clues": ["rabble-rousing", "incendiary", "instigative", "seditious", "incitive", "inflammatory"]}, {"answer": "inflexible", "hint": "synonyms for inflexible", "clues": ["rigid", "sturdy", "unbending", "uncompromising", "inflexible"]}, {"answer": "informative", "hint": "synonyms for informative", "clues": ["instructive", "informatory", "illuminating", "enlightening", "informative"]}, {"answer": "infuriated", "hint": "synonyms for infuriated", "clues": ["angered", "maddened", "enraged", "furious", "infuriated"]}, {"answer": "inglorious", "hint": "synonyms for inglorious", "clues": ["ignominious", "shameful", "black", "opprobrious", "disgraceful", "inglorious"]}, {"answer": "ingrained", "hint": "synonyms for ingrained", "clues": ["deep-rooted", "implanted", "deep-seated", "ingrained"]}, {"answer": "inherent", "hint": "synonyms for inherent", "clues": ["constitutional", "built-in", "inbuilt", "integral", "implicit in", "underlying", "inherent"]}, {"answer": "inherited", "hint": "synonyms for inherited", "clues": ["familial", "transmitted", "genetic", "transmissible", "hereditary", "inherited"]}, {"answer": "initiative", "hint": "synonyms for initiative", "clues": ["maiden", "inaugural", "initiatory", "first", "initiative"]}, {"answer": "initiatory", "hint": "synonyms for initiatory", "clues": ["maiden", "inaugural", "initiative", "first", "initiatory"]}, {"answer": "innate", "hint": "synonyms for innate", "clues": ["unconditioned", "born", "unlearned", "inborn", "natural", "congenital", "innate"]}, {"answer": "inner", "hint": "synonyms for inner", "clues": ["inside", "interior", "internal", "privileged", "intimate", "inner"]}, {"answer": "innocent", "hint": "synonyms for innocent", "clues": ["unacquainted", "devoid", "destitute", "barren", "free", "ingenuous", "innocuous", "guiltless", "impeccant", "sinless", "clean-handed", "innocent"]}, {"answer": "innovative", "hint": "synonyms for innovative", "clues": ["innovational", "forward-looking", "advanced", "modern", "groundbreaking", "innovative"]}, {"answer": "innumerable", "hint": "synonyms for innumerable", "clues": ["unnumbered", "numberless", "infinite", "unnumberable", "uncounted", "myriad", "multitudinous", "innumerous", "countless"]}, {"answer": "innumerous", "hint": "synonyms for innumerous", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "myriad", "multitudinous", "countless", "innumerous"]}, {"answer": "inscribed", "hint": "synonyms for inscribed", "clues": ["incised", "etched", "engraved", "graven", "inscribed"]}, {"answer": "inscrutable", "hint": "synonyms for inscrutable", "clues": ["cryptic", "mysterious", "deep", "mystifying", "inscrutable"]}, {"answer": "insensate", "hint": "synonyms for insensate", "clues": ["inhuman", "insentient", "cold-blooded", "cold", "insensate"]}, {"answer": "insensible", "hint": "synonyms for insensible", "clues": ["undetectable", "unaffected", "senseless", "indiscernible", "insensible"]}, {"answer": "insipid", "hint": "synonyms for insipid", "clues": ["vapid", "flavourless", "flat", "savorless", "bland", "jejune", "insipid"]}, {"answer": "insistent", "hint": "synonyms for insistent", "clues": ["instant", "clamant", "repetitive", "crying", "exigent", "insistent"]}, {"answer": "insolent", "hint": "synonyms for insolent", "clues": ["impudent", "brazen-faced", "audacious", "snotty-nosed", "brazen", "brassy", "barefaced", "bodacious", "bald-faced", "flip", "insolent"]}, {"answer": "instant", "hint": "synonyms for instant", "clues": ["clamant", "inst", "insistent", "instantaneous", "crying", "exigent", "instant"]}, {"answer": "instigative", "hint": "synonyms for instigative", "clues": ["rabble-rousing", "incendiary", "inflammatory", "seditious", "incitive", "instigative"]}, {"answer": "insupportable", "hint": "synonyms for insupportable", "clues": ["unwarrantable", "indefensible", "unjustifiable", "unwarranted", "insupportable"]}, {"answer": "integral", "hint": "synonyms for integral", "clues": ["constitutional", "intact", "entire", "built-in", "inbuilt", "inherent", "integral"]}, {"answer": "integrated", "hint": "synonyms for integrated", "clues": ["unified", "incorporate", "merged", "structured", "integrated"]}, {"answer": "intelligent", "hint": "synonyms for intelligent", "clues": ["level-headed", "healthy", "well-informed", "reasoning", "thinking", "sound", "intelligent"]}, {"answer": "intelligible", "hint": "synonyms for intelligible", "clues": ["graspable", "perceivable", "apprehensible", "understandable", "intelligible"]}, {"answer": "intent", "hint": "synonyms for intent", "clues": ["captive", "absorbed", "enwrapped", "engrossed", "intent"]}, {"answer": "interchangeable", "hint": "synonyms for interchangeable", "clues": ["standardized", "similar", "exchangeable", "interchangeable"]}, {"answer": "interconnected", "hint": "synonyms for interconnected", "clues": ["co-ordinated", "interrelated", "unified", "interconnected"]}, {"answer": "interfering", "hint": "synonyms for interfering", "clues": ["busybodied", "meddling", "meddlesome", "busy", "officious", "interfering"]}, {"answer": "interior", "hint": "synonyms for interior", "clues": ["midland", "upcountry", "national", "internal", "inner", "home", "interior"]}, {"answer": "internal", "hint": "synonyms for internal", "clues": ["intragroup", "national", "inner", "home", "intimate", "interior", "internal"]}, {"answer": "intimate", "hint": "synonyms for intimate", "clues": ["knowledgeable", "cozy", "familiar", "sexual", "internal", "inner", "versed", "informal", "intimate"]}, {"answer": "intrepid", "hint": "synonyms for intrepid", "clues": ["fearless", "hardy", "brave", "unfearing", "audacious", "dauntless", "intrepid"]}, {"answer": "intumescent", "hint": "synonyms for intumescent", "clues": ["tumescent", "puffy", "tumid", "turgid"]}, {"answer": "inundated", "hint": "synonyms for inundated", "clues": ["awash", "overflowing", "afloat", "flooded", "inundated"]}, {"answer": "invasive", "hint": "synonyms for invasive", "clues": ["encroaching", "invading", "trespassing", "incursive", "invasive"]}, {"answer": "inviolable", "hint": "synonyms for inviolable", "clues": ["unattackable", "infrangible", "strong", "sacrosanct", "absolute", "impregnable", "unassailable", "inviolate", "secure", "inviolable"]}, {"answer": "involved", "hint": "synonyms for involved", "clues": ["tortuous", "convoluted", "tangled", "knotty", "mired", "involved"]}, {"answer": "irascible", "hint": "synonyms for irascible", "clues": ["hot-tempered", "hotheaded", "choleric", "quick-tempered", "irascible"]}, {"answer": "iridescent", "hint": "synonyms for iridescent", "clues": ["nacreous", "opalescent", "shot", "changeable", "opaline", "chatoyant", "iridescent"]}, {"answer": "irksome", "hint": "synonyms for irksome", "clues": ["tedious", "tiresome", "dull", "wearisome", "ho-hum", "boring", "deadening", "slow", "irksome"]}, {"answer": "irregular", "hint": "synonyms for irregular", "clues": ["atypical", "unpredictable", "maverick", "unorthodox", "temporary", "irregular"]}, {"answer": "irreverent", "hint": "synonyms for irreverent", "clues": ["impertinent", "saucy", "pert", "godless", "irreverent"]}, {"answer": "irritable", "hint": "synonyms for irritable", "clues": ["cranky", "pettish", "techy", "nettlesome", "petulant", "fractious", "excitable", "testy", "scratchy", "peckish", "peevish", "irritable"]}, {"answer": "irritated", "hint": "synonyms for irritated", "clues": ["riled", "pissed off", "miffed", "nettled", "steamed", "peeved", "stung", "pissed", "annoyed", "irritated"]}, {"answer": "irritating", "hint": "synonyms for irritating", "clues": ["irritative", "nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "pesky", "painful", "bothersome", "vexatious", "pestering", "pestiferous", "irritating"]}, {"answer": "isolated", "hint": "synonyms for isolated", "clues": ["disjunct", "stranded", "stray", "marooned", "separated", "detached", "apart", "quarantined", "obscure", "set-apart", "isolated"]}, {"answer": "itsy-bitsy", "hint": "synonyms for itsy-bitsy", "clues": ["bitty", "teeny-weeny", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee", "itsy-bitsy"]}, {"answer": "itty-bitty", "hint": "synonyms for itty-bitty", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "wee", "itty-bitty"]}, {"answer": "jagged", "hint": "synonyms for jagged", "clues": ["scraggy", "jaggy", "notched", "erose", "toothed", "jagged"]}, {"answer": "jaggy", "hint": "synonyms for jaggy", "clues": ["jagged", "scraggy", "notched", "erose", "toothed", "jaggy"]}, {"answer": "janus-faced", "hint": "synonyms for janus-faced", "clues": ["double-tongued", "double-dealing", "duplicitous", "two-faced", "ambidextrous", "deceitful", "double-faced", "janus-faced"]}, {"answer": "jaunty", "hint": "synonyms for jaunty", "clues": ["raffish", "natty", "spruce", "chipper", "spiffy", "dapper", "debonaire", "snappy", "rakish", "dashing", "jaunty"]}, {"answer": "jazzy", "hint": "synonyms for jazzy", "clues": ["showy", "sporty", "flashy", "gaudy", "jazzy"]}, {"answer": "jealous", "hint": "synonyms for jealous", "clues": ["covetous", "envious", "green-eyed", "overjealous", "jealous"]}, {"answer": "jeering", "hint": "synonyms for jeering", "clues": ["mocking", "derisive", "gibelike", "taunting", "jeering"]}, {"answer": "jejune", "hint": "synonyms for jejune", "clues": ["puerile", "juvenile", "insipid", "insubstantial", "adolescent", "jejune"]}, {"answer": "jerky", "hint": "synonyms for jerky", "clues": ["arrhythmic", "goosy", "choppy", "gooselike", "dopey", "jerking", "anserine", "foolish", "jerky"]}, {"answer": "jet", "hint": "synonyms for jet", "clues": ["coal-black", "jet-black", "pitchy", "sooty", "jet"]}, {"answer": "jet-black", "hint": "synonyms for jet-black", "clues": ["coal-black", "sooty", "pitchy", "jet", "jet-black"]}, {"answer": "jeweled", "hint": "synonyms for jeweled", "clues": ["gemmed", "spangled", "jewelled", "beady", "spangly", "sequined"]}, {"answer": "jewelled", "hint": "synonyms for jewelled", "clues": ["gemmed", "spangled", "jeweled", "beady", "spangly", "sequined"]}, {"answer": "jingoistic", "hint": "synonyms for jingoistic", "clues": ["chauvinistic", "superpatriotic", "nationalistic", "ultranationalistic", "flag-waving", "jingoistic"]}, {"answer": "jittery", "hint": "synonyms for jittery", "clues": ["high-strung", "highly strung", "restive", "nervy", "uptight", "overstrung", "edgy", "jumpy", "jittery"]}, {"answer": "jocund", "hint": "synonyms for jocund", "clues": ["jovial", "mirthful", "jolly", "gay", "merry", "jocund"]}, {"answer": "jolly", "hint": "synonyms for jolly", "clues": ["jovial", "mirthful", "jocund", "gay", "merry", "jolly"]}, {"answer": "jolting", "hint": "synonyms for jolting", "clues": ["jumpy", "rough", "jolty", "bumpy", "rocky", "jolting"]}, {"answer": "jolty", "hint": "synonyms for jolty", "clues": ["jumpy", "rough", "jolting", "bumpy", "rocky", "jolty"]}, {"answer": "jovial", "hint": "synonyms for jovial", "clues": ["mirthful", "jolly", "jocund", "gay", "merry", "jovial"]}, {"answer": "jubilant", "hint": "synonyms for jubilant", "clues": ["joyful", "rejoicing", "triumphant", "triumphal", "exulting", "elated", "gleeful", "prideful", "exultant", "jubilant"]}, {"answer": "juicy", "hint": "synonyms for juicy", "clues": ["gamy", "racy", "toothsome", "red-hot", "risque", "blue", "spicy", "voluptuous", "fat", "luscious", "naughty", "juicy"]}, {"answer": "jumbled", "hint": "synonyms for jumbled", "clues": ["topsy-turvy", "disorderly", "hugger-mugger", "higgledy-piggledy", "jumbled"]}, {"answer": "jumpy", "hint": "synonyms for jumpy", "clues": ["rough", "jolty", "high-strung", "jolting", "bumpy", "highly strung", "restive", "rocky", "nervy", "overstrung", "edgy", "jittery", "uptight", "jumpy"]}, {"answer": "junior-grade", "hint": "synonyms for junior-grade", "clues": ["lower-ranking", "secondary", "subaltern", "lowly", "petty", "junior-grade"]}, {"answer": "just", "hint": "synonyms for just", "clues": ["good", "fair", "upright", "equitable", "just"]}, {"answer": "jutting", "hint": "synonyms for jutting", "clues": ["relieved", "projecting", "sticking out", "sticking", "projected", "protruding", "jutting"]}, {"answer": "k", "hint": "synonyms for k", "clues": ["1000", "one thousand", "m", "thousand", "k"]}, {"answer": "keen", "hint": "synonyms for keen", "clues": ["discriminating", "smashing", "dandy", "knifelike", "neat", "bully", "lancinating", "sharp", "incisive", "not bad", "penetrative", "acute", "cutting", "piercing", "bang-up", "penetrating", "slap-up", "cracking", "corking", "great", "swell", "lancinate", "peachy", "groovy", "exquisite", "stabbing", "nifty", "keen"]}, {"answer": "keen-sighted", "hint": "synonyms for keen-sighted", "clues": ["lynx-eyed", "argus-eyed", "sharp-eyed", "eagle-eyed", "hawk-eyed", "sharp-sighted", "longsighted", "quick-sighted", "farseeing", "keen-sighted"]}, {"answer": "key", "hint": "synonyms for key", "clues": ["fundamental", "primal", "central", "cardinal", "key"]}, {"answer": "kin", "hint": "synonyms for kin", "clues": ["consanguineal", "akin", "consanguineous", "blood-related", "cognate"]}, {"answer": "kindly", "hint": "synonyms for kindly", "clues": ["benevolent", "good-hearted", "large-hearted", "sympathetic", "openhearted", "charitable", "kindly"]}, {"answer": "kinky", "hint": "synonyms for kinky", "clues": ["offbeat", "perverted", "quirky", "far-out", "crisp", "nappy", "way-out", "frizzy", "kinky"]}, {"answer": "kitschy", "hint": "synonyms for kitschy", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "mawkish", "maudlin", "kitschy"]}, {"answer": "kitty-corner", "hint": "synonyms for kitty-corner", "clues": ["catercorner", "kitty-cornered", "catty-corner", "cata-cornered"]}, {"answer": "knavish", "hint": "synonyms for knavish", "clues": ["dodgy", "crafty", "tricky", "sly", "cunning", "slick", "foxy", "wily", "guileful", "knavish"]}, {"answer": "knifelike", "hint": "synonyms for knifelike", "clues": ["discriminating", "penetrating", "keen", "lancinating", "sharp", "lancinate", "incisive", "penetrative", "acute", "stabbing", "cutting", "piercing", "knifelike"]}, {"answer": "knightly", "hint": "synonyms for knightly", "clues": ["chivalrous", "chivalric", "medieval", "gallant", "knightly"]}, {"answer": "knobbed", "hint": "synonyms for knobbed", "clues": ["knotted", "knotty", "gnarled", "gnarly", "knobbed"]}, {"answer": "knotted", "hint": "synonyms for knotted", "clues": ["knobbed", "knotty", "gnarled", "gnarly", "knotted"]}, {"answer": "knotty", "hint": "synonyms for knotty", "clues": ["tortuous", "problematic", "knotted", "tangled", "involved", "snarled", "elusive", "snarly", "baffling", "gnarly", "convoluted", "tough", "knobbed", "knotty"]}, {"answer": "knowing", "hint": "synonyms for knowing", "clues": ["knowledgeable", "wise to", "intentional", "lettered", "wise", "well-educated", "well-read", "learned", "knowing"]}, {"answer": "knowledgeable", "hint": "synonyms for knowledgeable", "clues": ["versed", "well-educated", "knowing", "well-read", "lettered", "learned", "intimate", "knowledgeable"]}, {"answer": "ko'd", "hint": "synonyms for ko'd", "clues": ["stunned", "knocked out", "out", "kayoed", "ko'd"]}, {"answer": "kookie", "hint": "synonyms for kookie", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "nutty", "nuts", "batty", "bats", "cracked", "kookie"]}, {"answer": "kooky", "hint": "synonyms for kooky", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "kooky"]}, {"answer": "kyphotic", "hint": "synonyms for kyphotic", "clues": ["crookback", "humpbacked", "gibbous", "hunchbacked", "humped", "kyphotic"]}, {"answer": "la-di-da", "hint": "synonyms for la-di-da", "clues": ["highfaluting", "grandiose", "hoity-toity", "la-di-da"]}, {"answer": "laborious", "hint": "synonyms for laborious", "clues": ["toilsome", "operose", "backbreaking", "grueling", "arduous", "punishing", "hard", "heavy", "laborious"]}, {"answer": "lachrymose", "hint": "synonyms for lachrymose", "clues": ["weeping", "dolourous", "tearful", "lachrymose"]}, {"answer": "lacking", "hint": "synonyms for lacking", "clues": ["deficient", "absent", "wanting", "missing", "lacking"]}, {"answer": "lacy", "hint": "synonyms for lacy", "clues": ["lacelike", "webby", "netted", "weblike", "webbed", "netlike", "lacy"]}, {"answer": "laid-off", "hint": "synonyms for laid-off", "clues": ["discharged", "fired", "pink-slipped", "dismissed", "laid-off"]}, {"answer": "lame", "hint": "synonyms for lame", "clues": ["game", "halting", "gimpy", "crippled", "feeble", "lame"]}, {"answer": "lamentable", "hint": "synonyms for lamentable", "clues": ["deplorable", "distressing", "sad", "sorry", "pitiful", "lamentable"]}, {"answer": "lancinate", "hint": "synonyms for lancinate", "clues": ["knifelike", "cutting", "keen", "stabbing", "lancinating", "piercing", "lancinate"]}, {"answer": "lancinating", "hint": "synonyms for lancinating", "clues": ["lancinate", "stabbing", "keen", "knifelike", "cutting", "piercing", "lancinating"]}, {"answer": "laputan", "hint": "synonyms for laputan", "clues": ["impractical", "airy", "visionary", "windy", "laputan"]}, {"answer": "large", "hint": "synonyms for large", "clues": ["expectant", "declamatory", "with child", "gravid", "great", "magnanimous", "enceinte", "tumid", "big", "bombastic", "orotund", "turgid", "prominent", "heavy", "large"]}, {"answer": "large-hearted", "hint": "synonyms for large-hearted", "clues": ["benevolent", "good-hearted", "sympathetic", "openhearted", "charitable", "kindly", "large-hearted"]}, {"answer": "larger", "hint": "synonyms for larger", "clues": ["expectant", "declamatory", "bigger", "with child", "gravid", "great", "magnanimous", "enceinte", "big", "tumid", "turgid", "bombastic", "orotund", "heavy", "prominent", "large"]}, {"answer": "last", "hint": "synonyms for last", "clues": ["final", "utmost", "lowest", "concluding", "last-place", "net", "terminal", "last"]}, {"answer": "lasting", "hint": "synonyms for lasting", "clues": ["long-lived", "durable", "long-lasting", "permanent", "persistent", "lasting"]}, {"answer": "late", "hint": "synonyms for late", "clues": ["recent", "previous", "belated", "tardy", "former", "later"]}, {"answer": "late-blooming", "hint": "synonyms for late-blooming", "clues": ["fall-flowering", "autumn-flowering", "late-flowering", "fall-blooming", "autumn-blooming", "late-blooming"]}, {"answer": "late-flowering", "hint": "synonyms for late-flowering", "clues": ["fall-flowering", "autumn-flowering", "late-blooming", "fall-blooming", "autumn-blooming", "late-flowering"]}, {"answer": "late-spring-blooming", "hint": "synonyms for late-spring-blooming", "clues": ["early-blooming", "spring-flowering", "spring-blooming", "early-flowering"]}, {"answer": "later", "hint": "synonyms for later", "clues": ["posterior", "previous", "tardy", "former", "recent", "late", "ulterior", "belated"]}, {"answer": "latest", "hint": "synonyms for latest", "clues": ["later", "previous", "a la mode", "tardy", "former", "in style", "recent", "belated", "modish", "up-to-the-minute", "in vogue", "latest"]}, {"answer": "laughable", "hint": "synonyms for laughable", "clues": ["comical", "idiotic", "mirthful", "amusing", "ridiculous", "cockeyed", "absurd", "nonsensical", "funny", "ludicrous", "risible", "derisory", "preposterous", "comic", "laughable"]}, {"answer": "lavish", "hint": "synonyms for lavish", "clues": ["unsparing", "plush", "lucullan", "too-generous", "unstinting", "munificent", "overgenerous", "unstinted", "lavish"]}, {"answer": "lawful", "hint": "synonyms for lawful", "clues": ["legitimate", "true", "licit", "rightful", "rule-governed", "lawful"]}, {"answer": "lawless", "hint": "synonyms for lawless", "clues": ["wide-open", "anarchical", "outlaw", "lawless"]}, {"answer": "lazy", "hint": "synonyms for lazy", "clues": ["faineant", "indolent", "otiose", "work-shy", "slothful", "lazy"]}, {"answer": "leaden", "hint": "synonyms for leaden", "clues": ["plodding", "heavy", "dull", "weighted", "leaden"]}, {"answer": "leading", "hint": "synonyms for leading", "clues": ["stellar", "ahead", "starring", "star", "prima", "preeminent", "in the lead", "leading"]}, {"answer": "leaning", "hint": "synonyms for leaning", "clues": ["canted", "atilt", "tilted", "tipped", "leaning"]}, {"answer": "learned", "hint": "synonyms for learned", "clues": ["knowledgeable", "erudite", "knowing", "well-educated", "conditioned", "well-read", "lettered", "learned"]}, {"answer": "leery", "hint": "synonyms for leery", "clues": ["mistrustful", "suspicious", "untrusting", "wary", "leery"]}, {"answer": "left", "hint": "synonyms for left", "clues": ["odd", "remaining", "left-hand", "left over", "unexpended", "left"]}, {"answer": "left-handed", "hint": "synonyms for left-handed", "clues": ["ham-fisted", "heavy-handed", "morganatic", "handless", "levorotatory", "butterfingered", "bumbling", "ham-handed", "bungling", "left-handed"]}, {"answer": "left_over", "hint": "synonyms for left over", "clues": ["left", "odd", "remaining", "leftover", "unexpended"]}, {"answer": "leftover", "hint": "synonyms for leftover", "clues": ["left", "odd", "remaining", "left over", "unexpended"]}, {"answer": "lemonlike", "hint": "synonyms for lemonlike", "clues": ["lemony", "tart", "sourish", "tangy", "lemonlike"]}, {"answer": "lemony", "hint": "synonyms for lemony", "clues": ["sourish", "lemonlike", "tangy", "tart", "lemony"]}, {"answer": "lengthy", "hint": "synonyms for lengthy", "clues": ["extended", "prolonged", "protracted", "drawn-out", "lengthy"]}, {"answer": "lenitive", "hint": "synonyms for lenitive", "clues": ["mitigative", "mitigatory", "alleviative", "alleviatory", "lenitive"]}, {"answer": "lepidote", "hint": "synonyms for lepidote", "clues": ["scabrous", "scurfy", "scaly", "leprose", "lepidote"]}, {"answer": "leprose", "hint": "synonyms for leprose", "clues": ["scabrous", "scurfy", "lepidote", "scaly", "leprose"]}, {"answer": "lettered", "hint": "synonyms for lettered", "clues": ["knowledgeable", "well-educated", "knowing", "well-read", "learned", "lettered"]}, {"answer": "level", "hint": "synonyms for level", "clues": ["flat", "tied", "even", "unwavering", "plane", "level"]}, {"answer": "level-headed", "hint": "synonyms for level-headed", "clues": ["intelligent", "sound", "levelheaded", "healthy"]}, {"answer": "levelheaded", "hint": "synonyms for levelheaded", "clues": ["intelligent", "sound", "level-headed", "healthy"]}, {"answer": "lewd", "hint": "synonyms for lewd", "clues": ["salacious", "lustful", "raunchy", "obscene", "libidinous", "lascivious", "lewd"]}, {"answer": "liable", "hint": "synonyms for liable", "clues": ["nonimmune", "apt", "unresistant", "liable"]}, {"answer": "libellous", "hint": "synonyms for libellous", "clues": ["denigrative", "libelous", "calumnious", "slanderous", "denigrating", "calumniatory", "defamatory", "denigratory"]}, {"answer": "libelous", "hint": "synonyms for libelous", "clues": ["libellous", "denigrative", "calumnious", "slanderous", "denigrating", "calumniatory", "defamatory", "denigratory"]}, {"answer": "liberal", "hint": "synonyms for liberal", "clues": ["bounteous", "tolerant", "freehanded", "free", "handsome", "loose", "bighearted", "big", "bountiful", "openhanded", "large-minded", "giving", "broad", "liberal"]}, {"answer": "libertine", "hint": "synonyms for libertine", "clues": ["degenerate", "dissipated", "fast", "dissolute", "degraded", "riotous", "profligate", "debauched", "libertine"]}, {"answer": "life-threatening", "hint": "synonyms for life-threatening", "clues": ["grave", "dangerous", "severe", "grievous", "serious", "life-threatening"]}, {"answer": "lifelike", "hint": "synonyms for lifelike", "clues": ["graphic", "pictorial", "natural", "vivid", "lifelike"]}, {"answer": "light", "hint": "synonyms for light", "clues": ["scant", "unaccented", "low-cal", "loose", "lightsome", "swooning", "promiscuous", "clear", "wakeful", "tripping", "lite", "wanton", "unclouded", "light-headed", "sluttish", "calorie-free", "light-colored", "clean", "idle", "faint", "abstemious", "short", "easy", "weak", "light"]}, {"answer": "light-headed", "hint": "synonyms for light-headed", "clues": ["dizzy", "silly", "empty-headed", "light", "airheaded", "featherbrained", "lightheaded", "swooning", "giddy", "faint"]}, {"answer": "light-hearted", "hint": "synonyms for light-hearted", "clues": ["blithesome", "lightsome", "lighthearted", "blithe"]}, {"answer": "lightheaded", "hint": "synonyms for lightheaded", "clues": ["dizzy", "silly", "empty-headed", "light", "airheaded", "featherbrained", "swooning", "giddy", "faint", "light-headed"]}, {"answer": "lighthearted", "hint": "synonyms for lighthearted", "clues": ["light-hearted", "blithesome", "lightsome", "blithe"]}, {"answer": "lightsome", "hint": "synonyms for lightsome", "clues": ["tripping", "light", "light-hearted", "blithesome", "blithe", "lightsome"]}, {"answer": "like", "hint": "synonyms for like", "clues": ["corresponding", "similar", "comparable", "alike", "same"]}, {"answer": "lilliputian", "hint": "synonyms for lilliputian", "clues": ["tiny", "flyspeck", "piddling", "trivial", "petty", "picayune", "niggling", "little", "petite", "diminutive", "footling", "bantam", "midget", "piffling", "lilliputian"]}, {"answer": "lily-livered", "hint": "synonyms for lily-livered", "clues": ["yellow-bellied", "white-livered", "chickenhearted", "yellow", "chicken", "lily-livered"]}, {"answer": "limiting", "hint": "synonyms for limiting", "clues": ["confining", "constraining", "restricting", "constrictive", "limiting"]}, {"answer": "limitless", "hint": "synonyms for limitless", "clues": ["illimitable", "boundless", "unlimited", "unbounded", "measureless", "limitless"]}, {"answer": "limpid", "hint": "synonyms for limpid", "clues": ["liquid", "pellucid", "crystal clear", "lucid", "perspicuous", "crystalline", "luculent", "transparent", "limpid"]}, {"answer": "linear", "hint": "synonyms for linear", "clues": ["one-dimensional", "additive", "analogue", "elongate", "running", "linear"]}, {"answer": "liquid", "hint": "synonyms for liquid", "clues": ["smooth", "liquified", "swimming", "fluent", "fluid", "melted", "limpid", "liquid"]}, {"answer": "liquified", "hint": "synonyms for liquified", "clues": ["liquid", "molten", "liquefied", "melted"]}, {"answer": "lissom", "hint": "synonyms for lissom", "clues": ["lithe", "lissome", "sylphlike", "supple", "slender", "lithesome", "svelte"]}, {"answer": "lissome", "hint": "synonyms for lissome", "clues": ["lithe", "sylphlike", "supple", "lithesome", "slender", "lissom", "svelte"]}, {"answer": "lithe", "hint": "synonyms for lithe", "clues": ["lissome", "sylphlike", "supple", "lithesome", "slender", "svelte", "lithe"]}, {"answer": "lithesome", "hint": "synonyms for lithesome", "clues": ["lithe", "lissome", "sylphlike", "slender", "supple", "svelte", "lithesome"]}, {"answer": "litigious", "hint": "synonyms for litigious", "clues": ["disputatious", "disputative", "contentious", "combative", "litigious"]}, {"answer": "little", "hint": "synonyms for little", "clues": ["lilliputian", "minuscule", "piddling", "petty", "slight", "picayune", "niggling", "trivial", "short", "small", "footling", "piffling", "little"]}, {"answer": "littler", "hint": "synonyms for littler", "clues": ["lilliputian", "minuscule", "piddling", "smaller", "petty", "slight", "picayune", "little", "niggling", "trivial", "short", "small", "footling", "piffling"]}, {"answer": "live", "hint": "synonyms for live", "clues": ["alive", "lively", "resilient", "springy", "unrecorded", "hot", "bouncy"]}, {"answer": "lively", "hint": "synonyms for lively", "clues": ["resilient", "live", "springy", "zippy", "racy", "snappy", "brisk", "vital", "rattling", "spanking", "alert", "full of life", "merry", "bouncy"]}, {"answer": "liverish", "hint": "synonyms for liverish", "clues": ["bilious", "dyspeptic", "livery", "atrabilious", "liverish"]}, {"answer": "livid", "hint": "synonyms for livid", "clues": ["white", "black-and-blue", "ashen", "blanched", "bloodless", "livid"]}, {"answer": "loaded", "hint": "synonyms for loaded", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "ladened", "moneyed", "crocked", "soaked", "laden", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "flush", "cockeyed", "blind drunk", "affluent", "pixilated", "pissed", "stiff", "wealthy", "loaded"]}, {"answer": "loaded_down", "hint": "synonyms for loaded down", "clues": ["heavy-laden", "weighed down", "bowed down", "overburdened", "burdened", "loaded down"]}, {"answer": "loath", "hint": "synonyms for loath", "clues": ["reluctant", "averse", "indisposed", "antipathetic", "loth"]}, {"answer": "loathly", "hint": "synonyms for loathly", "clues": ["repellent", "yucky", "foul", "loathsome", "repelling", "revolting", "wicked", "disgusting", "skanky", "distasteful", "disgustful", "loathly"]}, {"answer": "loathsome", "hint": "synonyms for loathsome", "clues": ["nauseating", "foul", "sickening", "repelling", "revolting", "wicked", "disgusting", "vile", "offensive", "noisome", "skanky", "disgustful", "repellent", "yucky", "queasy", "loathly", "nauseous", "distasteful", "loathsome"]}, {"answer": "loco", "hint": "synonyms for loco", "clues": ["balmy", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "loco"]}, {"answer": "lofty", "hint": "synonyms for lofty", "clues": ["gallant", "majestic", "rarified", "idealistic", "noble-minded", "grand", "elevated", "high-flown", "high-minded", "soaring", "sublime", "eminent", "proud", "exalted", "towering", "lofty"]}, {"answer": "loggerheaded", "hint": "synonyms for loggerheaded", "clues": ["boneheaded", "duncish", "wooden-headed", "thick-skulled", "thick", "fatheaded", "thickheaded", "duncical", "blockheaded", "loggerheaded"]}, {"answer": "logical", "hint": "synonyms for logical", "clues": ["legitimate", "ordered", "consistent", "coherent", "lucid", "logical"]}, {"answer": "logy", "hint": "synonyms for logy", "clues": ["groggy", "dazed", "foggy", "stuporous", "logy"]}, {"answer": "lone", "hint": "synonyms for lone", "clues": ["alone", "lonely", "only", "solitary", "lonesome", "sole"]}, {"answer": "lonely", "hint": "synonyms for lonely", "clues": ["alone", "solitary", "unfrequented", "lonesome", "lonely"]}, {"answer": "lonesome", "hint": "synonyms for lonesome", "clues": ["only", "lonely", "solitary", "sole", "lonesome"]}, {"answer": "long", "hint": "synonyms for long", "clues": ["retentive", "foresightful", "foresighted", "recollective", "prospicient", "tenacious", "longsighted", "farseeing", "long"]}, {"answer": "long-winded", "hint": "synonyms for long-winded", "clues": ["tedious", "wordy", "verbose", "windy", "long-winded"]}, {"answer": "longsighted", "hint": "synonyms for longsighted", "clues": ["keen-sighted", "foresightful", "long", "eagle-eyed", "foresighted", "prospicient", "farseeing", "longsighted"]}, {"answer": "loony", "hint": "synonyms for loony", "clues": ["balmy", "loco", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "loony"]}, {"answer": "loopy", "hint": "synonyms for loopy", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "loopy"]}, {"answer": "loose", "hint": "synonyms for loose", "clues": ["liberal", "light", "escaped", "free", "unaffixed", "on the loose", "slack", "idle", "promiscuous", "informal", "wanton", "at large", "sluttish", "easy", "lax", "open", "loose"]}, {"answer": "lopsided", "hint": "synonyms for lopsided", "clues": ["askew", "skew-whiff", "wonky", "cockeyed", "awry", "lopsided"]}, {"answer": "loquacious", "hint": "synonyms for loquacious", "clues": ["gabby", "talky", "chatty", "talkative", "garrulous", "loquacious"]}, {"answer": "lordly", "hint": "synonyms for lordly", "clues": ["swaggering", "grand", "imperious", "sniffy", "supercilious", "overbearing", "haughty", "prideful", "disdainful", "august", "lordly"]}, {"answer": "lost", "hint": "synonyms for lost", "clues": ["mazed", "at sea", "helpless", "baffled", "confused", "befuddled", "disoriented", "bewildered", "confounded", "bemused", "missed", "deep in thought", "mixed-up", "preoccupied", "lost"]}, {"answer": "loth", "hint": "synonyms for loth", "clues": ["loath", "reluctant", "averse", "indisposed", "antipathetic"]}, {"answer": "loud", "hint": "synonyms for loud", "clues": ["flash", "gimcrack", "tatty", "tawdry", "brassy", "forte", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy", "loud"]}, {"answer": "lousy", "hint": "synonyms for lousy", "clues": ["dirty", "rotten", "filthy", "shitty", "crappy", "stinky", "stinking", "icky", "lousy"]}, {"answer": "loutish", "hint": "synonyms for loutish", "clues": ["boorish", "oafish", "neandertal", "swinish", "loutish"]}, {"answer": "lovesome", "hint": "synonyms for lovesome", "clues": ["warm", "fond", "affectionate", "tender", "lovesome"]}, {"answer": "low", "hint": "synonyms for low", "clues": ["scummy", "gloomy", "humbled", "dispirited", "depressed", "broken", "down", "low-spirited", "downcast", "miserable", "humiliated", "abject", "downhearted", "lowly", "grim", "down in the mouth", "modest", "blue", "depleted", "low-toned", "scurvy", "crushed", "small", "low-down", "low-pitched"]}, {"answer": "low-down", "hint": "synonyms for low-down", "clues": ["funky", "scummy", "miserable", "scurvy", "abject", "low", "low-down"]}, {"answer": "low-set", "hint": "synonyms for low-set", "clues": ["squatty", "squat", "chunky", "dumpy", "stumpy", "lowset"]}, {"answer": "low-spirited", "hint": "synonyms for low-spirited", "clues": ["grim", "down in the mouth", "dispirited", "low", "depressed", "down", "blue", "downcast", "downhearted", "gloomy", "low-spirited"]}, {"answer": "lowbred", "hint": "synonyms for lowbred", "clues": ["yokelish", "bounderish", "ill-bred", "underbred", "rude", "lowbred"]}, {"answer": "lower-ranking", "hint": "synonyms for lower-ranking", "clues": ["secondary", "junior-grade", "subaltern", "lowly", "petty", "lower-ranking"]}, {"answer": "lowest", "hint": "synonyms for lowest", "clues": ["scummy", "gloomy", "humbled", "dispirited", "depressed", "broken", "down", "low-spirited", "downcast", "miserable", "last-place", "humiliated", "abject", "downhearted", "lowly", "low-pitched", "grim", "down in the mouth", "modest", "blue", "depleted", "last", "low-toned", "scurvy", "crushed", "small", "low-down", "lowest"]}, {"answer": "lowly", "hint": "synonyms for lowly", "clues": ["secondary", "low", "base", "modest", "petty", "lower-ranking", "junior-grade", "baseborn", "humble", "subaltern", "small", "menial"]}, {"answer": "loyal", "hint": "synonyms for loyal", "clues": ["patriotic", "truehearted", "firm", "fast", "loyal"]}, {"answer": "lucid", "hint": "synonyms for lucid", "clues": ["pellucid", "coherent", "crystal clear", "perspicuous", "logical", "crystalline", "luculent", "transparent", "limpid", "lucid"]}, {"answer": "lucky", "hint": "synonyms for lucky", "clues": ["favourable", "golden", "prosperous", "lucky"]}, {"answer": "luculent", "hint": "synonyms for luculent", "clues": ["limpid", "pellucid", "crystal clear", "lucid", "perspicuous", "luculent"]}, {"answer": "lucullan", "hint": "synonyms for lucullan", "clues": ["plushy", "lush", "lavish", "lucullan"]}, {"answer": "ludicrous", "hint": "synonyms for ludicrous", "clues": ["idiotic", "ridiculous", "cockeyed", "absurd", "nonsensical", "derisory", "preposterous", "laughable", "farcical", "ludicrous"]}, {"answer": "luscious", "hint": "synonyms for luscious", "clues": ["pleasant-tasting", "toothsome", "red-hot", "yummy", "juicy", "delicious", "voluptuous", "delectable", "scrumptious", "luscious"]}, {"answer": "lush", "hint": "synonyms for lush", "clues": ["luxuriant", "lavish", "plush", "riotous", "lucullan", "profuse", "succulent", "exuberant"]}, {"answer": "lustful", "hint": "synonyms for lustful", "clues": ["salacious", "lubricious", "prurient", "lusty", "lewd", "libidinous", "lascivious", "concupiscent", "lustful"]}, {"answer": "lustrous", "hint": "synonyms for lustrous", "clues": ["burnished", "glossy", "glistening", "shiny", "bright", "shining", "sheeny", "lustrous"]}, {"answer": "lusty", "hint": "synonyms for lusty", "clues": ["red-blooded", "hearty", "lustful", "concupiscent", "full-blooded", "lusty"]}, {"answer": "luxuriant", "hint": "synonyms for luxuriant", "clues": ["elaborate", "luxurious", "lush", "riotous", "sybaritic", "voluptuary", "epicurean", "voluptuous", "profuse", "exuberant", "luxuriant"]}, {"answer": "luxurious", "hint": "synonyms for luxurious", "clues": ["deluxe", "sumptuous", "luxuriant", "grand", "gilded", "sybaritic", "voluptuary", "epicurean", "voluptuous", "princely", "opulent", "luxurious"]}, {"answer": "lynx-eyed", "hint": "synonyms for lynx-eyed", "clues": ["keen-sighted", "sharp-sighted", "quick-sighted", "argus-eyed", "sharp-eyed", "hawk-eyed", "lynx-eyed"]}, {"answer": "m", "hint": "synonyms for m", "clues": ["1000", "one thousand", "k", "thousand", "m"]}, {"answer": "macabre", "hint": "synonyms for macabre", "clues": ["gruesome", "grim", "sick", "ghastly", "grisly", "macabre"]}, {"answer": "machinelike", "hint": "synonyms for machinelike", "clues": ["automatic", "robotic", "automatonlike", "robotlike", "machinelike"]}, {"answer": "mad", "hint": "synonyms for mad", "clues": ["disturbed", "excited", "unbalanced", "sore", "sick", "frantic", "crazy", "delirious", "insane", "harebrained", "unhinged", "unrestrained", "brainsick", "demented", "huffy", "mad"]}, {"answer": "madcap", "hint": "synonyms for madcap", "clues": ["tearaway", "impetuous", "impulsive", "hotheaded", "brainish", "madcap"]}, {"answer": "maddened", "hint": "synonyms for maddened", "clues": ["angered", "infuriated", "enraged", "furious", "maddened"]}, {"answer": "made-to-order", "hint": "synonyms for made-to-order", "clues": ["bespoke", "tailor-made", "tailored", "custom-built", "made-to-order"]}, {"answer": "magic", "hint": "synonyms for magic", "clues": ["sorcerous", "charming", "witching", "wizardly", "magical", "magic"]}, {"answer": "magical", "hint": "synonyms for magical", "clues": ["sorcerous", "charming", "witching", "wizardly", "magic", "magical"]}, {"answer": "magisterial", "hint": "synonyms for magisterial", "clues": ["dominating", "high-and-mighty", "imposing", "peremptory", "bossy", "distinguished", "grand", "autocratic", "magisterial"]}, {"answer": "maiden", "hint": "synonyms for maiden", "clues": ["inaugural", "initiatory", "initiative", "first", "maiden"]}, {"answer": "main", "hint": "synonyms for main", "clues": ["chief", "primary", "principal", "independent", "master", "main"]}, {"answer": "majestic", "hint": "synonyms for majestic", "clues": ["gallant", "regal", "royal", "olympian", "purple", "imperial", "lofty", "proud", "majestic"]}, {"answer": "male", "hint": "synonyms for male", "clues": ["virile", "manly", "manlike", "manful", "male"]}, {"answer": "malformed", "hint": "synonyms for malformed", "clues": ["ill-shapen", "deformed", "misshapen", "distorted", "malformed"]}, {"answer": "malleable", "hint": "synonyms for malleable", "clues": ["tractile", "ductile", "tensile", "pliable", "pliant", "malleable"]}, {"answer": "malodorous", "hint": "synonyms for malodorous", "clues": ["ill-smelling", "malodourous", "stinky", "unpleasant-smelling"]}, {"answer": "malodourous", "hint": "synonyms for malodourous", "clues": ["ill-smelling", "unpleasant-smelling", "malodorous", "stinky"]}, {"answer": "manageable", "hint": "synonyms for manageable", "clues": ["realizable", "achievable", "accomplishable", "doable", "manageable"]}, {"answer": "manful", "hint": "synonyms for manful", "clues": ["manly", "virile", "male", "manlike", "manful"]}, {"answer": "manifest", "hint": "synonyms for manifest", "clues": ["apparent", "unmistakable", "evident", "patent", "plain", "manifest"]}, {"answer": "manlike", "hint": "synonyms for manlike", "clues": ["manly", "anthropoid", "manful", "virile", "male", "manlike"]}, {"answer": "manly", "hint": "synonyms for manly", "clues": ["manful", "virile", "male", "manlike", "manly"]}, {"answer": "mantic", "hint": "synonyms for mantic", "clues": ["vatical", "sibylline", "divinatory", "vatic", "sibyllic", "mantic"]}, {"answer": "mantled", "hint": "synonyms for mantled", "clues": ["wrapped", "clothed", "cloaked", "draped", "mantled"]}, {"answer": "many-sided", "hint": "synonyms for many-sided", "clues": ["multifarious", "miscellaneous", "multifaceted", "multilateral", "many-sided"]}, {"answer": "marketable", "hint": "synonyms for marketable", "clues": ["merchantable", "vendible", "sellable", "marketable"]}, {"answer": "marshy", "hint": "synonyms for marshy", "clues": ["swampy", "miry", "sloppy", "squashy", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "mucky", "boggy", "marshy"]}, {"answer": "martial", "hint": "synonyms for martial", "clues": ["warlike", "warriorlike", "soldierly", "soldierlike", "martial"]}, {"answer": "marvellous", "hint": "synonyms for marvellous", "clues": ["howling", "miraculous", "wondrous", "grand", "fantastic", "improbable", "rattling", "tremendous", "terrific", "tall", "marvelous", "wonderful"]}, {"answer": "marvelous", "hint": "synonyms for marvelous", "clues": ["marvellous", "howling", "miraculous", "wondrous", "grand", "fantastic", "improbable", "rattling", "tremendous", "terrific", "tall", "wonderful"]}, {"answer": "master", "hint": "synonyms for master", "clues": ["chief", "primary", "main", "principal", "master"]}, {"answer": "matching", "hint": "synonyms for matching", "clues": ["coordinated", "twin", "duplicate", "twinned", "matching"]}, {"answer": "matchless", "hint": "synonyms for matchless", "clues": ["one", "nonpareil", "unmatched", "unrivalled", "unmatchable", "one and only", "peerless", "matchless"]}, {"answer": "materialistic", "hint": "synonyms for materialistic", "clues": ["bourgeois", "worldly-minded", "conservative", "mercenary", "materialistic"]}, {"answer": "maternal", "hint": "synonyms for maternal", "clues": ["enatic", "parental", "paternal", "enate"]}, {"answer": "maudlin", "hint": "synonyms for maudlin", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin"]}, {"answer": "mawkish", "hint": "synonyms for mawkish", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "maudlin", "mawkish"]}, {"answer": "mazed", "hint": "synonyms for mazed", "clues": ["at sea", "baffled", "lost", "befuddled", "confused", "bewildered", "confounded", "bemused", "mixed-up", "mazed"]}, {"answer": "meager", "hint": "synonyms for meager", "clues": ["stingy", "meagre", "meagerly", "scrimpy"]}, {"answer": "meagerly", "hint": "synonyms for meagerly", "clues": ["stingy", "meagre", "meager", "scrimpy"]}, {"answer": "meagre", "hint": "synonyms for meagre", "clues": ["stingy", "meager", "scrimpy", "meagre"]}, {"answer": "mealy", "hint": "synonyms for mealy", "clues": ["farinaceous", "gritty", "grainy", "granulose", "coarse-grained", "granular", "mealy"]}, {"answer": "mean", "hint": "synonyms for mean", "clues": ["tight", "mingy", "average", "beggarly", "base", "bastardly", "miserly", "hateful", "meanspirited", "mean"]}, {"answer": "measured", "hint": "synonyms for measured", "clues": ["calculated", "metrical", "careful", "mensural", "deliberate", "measured"]}, {"answer": "meddlesome", "hint": "synonyms for meddlesome", "clues": ["busybodied", "interfering", "meddling", "busy", "officious", "meddlesome"]}, {"answer": "meddling", "hint": "synonyms for meddling", "clues": ["busybodied", "interfering", "meddlesome", "busy", "officious", "meddling"]}, {"answer": "medieval", "hint": "synonyms for medieval", "clues": ["gothic", "chivalric", "knightly", "mediaeval"]}, {"answer": "mediocre", "hint": "synonyms for mediocre", "clues": ["middling", "second-rate", "average", "fair", "mediocre"]}, {"answer": "meditative", "hint": "synonyms for meditative", "clues": ["pondering", "musing", "broody", "contemplative", "reflective", "pensive", "ruminative", "brooding", "meditative"]}, {"answer": "meek", "hint": "synonyms for meek", "clues": ["spiritless", "mild", "modest", "tame", "meek"]}, {"answer": "mellifluous", "hint": "synonyms for mellifluous", "clues": ["honeyed", "dulcet", "sweet", "mellisonant", "mellifluous"]}, {"answer": "mellisonant", "hint": "synonyms for mellisonant", "clues": ["honeyed", "dulcet", "sweet", "mellifluous", "mellisonant"]}, {"answer": "menacing", "hint": "synonyms for menacing", "clues": ["baleful", "ominous", "sinister", "minatory", "forbidding", "minacious", "threatening", "menacing"]}, {"answer": "mercenary", "hint": "synonyms for mercenary", "clues": ["materialistic", "freelance", "worldly-minded", "mercantile", "moneymaking", "mercenary"]}, {"answer": "merchantable", "hint": "synonyms for merchantable", "clues": ["vendible", "marketable", "sellable", "merchantable"]}, {"answer": "meretricious", "hint": "synonyms for meretricious", "clues": ["flash", "loud", "gimcrack", "tatty", "specious", "tawdry", "gilded", "brassy", "tacky", "trashy", "cheap", "garish", "gaudy", "meretricious"]}, {"answer": "merged", "hint": "synonyms for merged", "clues": ["integrated", "unified", "incorporate", "merged"]}, {"answer": "meritless", "hint": "synonyms for meritless", "clues": ["good-for-nothing", "sorry", "good-for-naught", "no-good", "no-count", "meritless"]}, {"answer": "merry", "hint": "synonyms for merry", "clues": ["jovial", "mirthful", "jolly", "zippy", "snappy", "festal", "brisk", "lively", "rattling", "spanking", "jocund", "gay", "festive", "alert", "merry"]}, {"answer": "mesmerised", "hint": "synonyms for mesmerised", "clues": ["fascinated", "mesmerized", "transfixed", "spell-bound", "hypnotized"]}, {"answer": "mesmerized", "hint": "synonyms for mesmerized", "clues": ["fascinated", "mesmerised", "spell-bound", "transfixed", "hypnotized"]}, {"answer": "meted_out", "hint": "synonyms for meted out", "clues": ["parceled out", "doled out", "apportioned", "dealt out", "meted out"]}, {"answer": "mettlesome", "hint": "synonyms for mettlesome", "clues": ["game", "spunky", "gritty", "gamy", "spirited", "mettlesome"]}, {"answer": "miasmic", "hint": "synonyms for miasmic", "clues": ["vaporous", "mephitic", "miasmal", "miasmic"]}, {"answer": "middle", "hint": "synonyms for middle", "clues": ["in-between", "mediate", "halfway", "center", "midway", "middle"]}, {"answer": "midget", "hint": "synonyms for midget", "clues": ["lilliputian", "petite", "flyspeck", "diminutive", "bantam", "tiny", "midget"]}, {"answer": "miffed", "hint": "synonyms for miffed", "clues": ["riled", "pissed off", "nettled", "steamed", "peeved", "stung", "pissed", "annoyed", "irritated", "miffed"]}, {"answer": "mild", "hint": "synonyms for mild", "clues": ["soft", "meek", "balmy", "modest", "mild"]}, {"answer": "militant", "hint": "synonyms for militant", "clues": ["warring", "hawkish", "war-ridden", "belligerent", "warlike", "competitive", "militant"]}, {"answer": "minacious", "hint": "synonyms for minacious", "clues": ["baleful", "ominous", "sinister", "minatory", "forbidding", "menacing", "threatening", "minacious"]}, {"answer": "minatory", "hint": "synonyms for minatory", "clues": ["baleful", "ominous", "sinister", "forbidding", "menacing", "minacious", "threatening", "minatory"]}, {"answer": "mincing", "hint": "synonyms for mincing", "clues": ["twee", "prim", "niminy-piminy", "dainty", "mincing"]}, {"answer": "minded", "hint": "synonyms for minded", "clues": ["apt", "given", "tending", "disposed", "minded"]}, {"answer": "mindless", "hint": "synonyms for mindless", "clues": ["unmindful", "reasonless", "forgetful", "inane", "fatuous", "asinine", "senseless", "vacuous", "mindless"]}, {"answer": "minor", "hint": "synonyms for minor", "clues": ["pocket-size", "venial", "modest", "nonaged", "small-scale", "small", "underage", "minor"]}, {"answer": "minuscule", "hint": "synonyms for minuscule", "clues": ["minuscular", "little", "small", "miniscule"]}, {"answer": "miraculous", "hint": "synonyms for miraculous", "clues": ["marvellous", "providential", "heaven-sent", "miraculous"]}, {"answer": "mirky", "hint": "synonyms for mirky", "clues": ["muddy", "turbid", "cloudy", "murky", "mirky"]}, {"answer": "mirthful", "hint": "synonyms for mirthful", "clues": ["comical", "jovial", "amusing", "jolly", "funny", "risible", "jocund", "gay", "laughable", "comic", "merry", "mirthful"]}, {"answer": "miry", "hint": "synonyms for miry", "clues": ["swampy", "sloppy", "marshy", "squashy", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "mucky", "boggy", "miry"]}, {"answer": "miscellaneous", "hint": "synonyms for miscellaneous", "clues": ["multifarious", "mixed", "multifaceted", "many-sided", "sundry", "assorted", "motley", "miscellaneous"]}, {"answer": "mischievous", "hint": "synonyms for mischievous", "clues": ["prankish", "puckish", "impish", "pixilated", "arch", "implike", "wicked", "mischievous"]}, {"answer": "miserable", "hint": "synonyms for miserable", "clues": ["wretched", "misfortunate", "scummy", "measly", "execrable", "paltry", "pitiable", "abject", "woeful", "hapless", "pitiful", "suffering", "poor", "deplorable", "low", "pathetic", "piteous", "scurvy", "low-down", "miserable"]}, {"answer": "misfortunate", "hint": "synonyms for misfortunate", "clues": ["poor", "wretched", "pathetic", "pitiable", "piteous", "miserable", "pitiful", "hapless", "misfortunate"]}, {"answer": "misshapen", "hint": "synonyms for misshapen", "clues": ["malformed", "ill-shapen", "deformed", "distorted", "misshapen"]}, {"answer": "mistrustful", "hint": "synonyms for mistrustful", "clues": ["leery", "suspicious", "untrusting", "wary", "mistrustful"]}, {"answer": "mitigative", "hint": "synonyms for mitigative", "clues": ["mitigatory", "alleviative", "lenitive", "alleviatory", "mitigative"]}, {"answer": "mitigatory", "hint": "synonyms for mitigatory", "clues": ["mitigative", "alleviative", "lenitive", "alleviatory", "mitigatory"]}, {"answer": "mixed", "hint": "synonyms for mixed", "clues": ["interracial", "sundry", "motley", "assorted", "miscellaneous", "mixed"]}, {"answer": "mixed-up", "hint": "synonyms for mixed-up", "clues": ["mazed", "at sea", "baffled", "lost", "befuddled", "confused", "bewildered", "confounded", "bemused", "mixed-up"]}, {"answer": "mobile", "hint": "synonyms for mobile", "clues": ["roving", "peregrine", "wandering", "fluid", "nomadic", "mobile"]}, {"answer": "mocking", "hint": "synonyms for mocking", "clues": ["derisive", "teasing", "jeering", "quizzical", "taunting", "gibelike", "mocking"]}, {"answer": "modern", "hint": "synonyms for modern", "clues": ["modernistic", "forward-looking", "advanced", "mod", "innovative", "modern"]}, {"answer": "modest", "hint": "synonyms for modest", "clues": ["pocket-size", "low", "minor", "mild", "small-scale", "humble", "small", "meek", "modest"]}, {"answer": "modish", "hint": "synonyms for modish", "clues": ["a la mode", "latest", "in style", "in vogue", "modish"]}, {"answer": "monastic", "hint": "synonyms for monastic", "clues": ["conventual", "cloistered", "cloistral", "monastical"]}, {"answer": "monastical", "hint": "synonyms for monastical", "clues": ["conventual", "cloistered", "cloistral", "monastic"]}, {"answer": "moneyed", "hint": "synonyms for moneyed", "clues": ["monied", "affluent", "loaded", "flush", "wealthy", "moneyed"]}, {"answer": "moneymaking", "hint": "synonyms for moneymaking", "clues": ["mercantile", "lucrative", "mercenary", "remunerative", "moneymaking"]}, {"answer": "monitory", "hint": "synonyms for monitory", "clues": ["exemplary", "warning", "cautionary", "admonitory"]}, {"answer": "monotonous", "hint": "synonyms for monotonous", "clues": ["monotonic", "monotone", "humdrum", "flat", "monotonous"]}, {"answer": "monstrous", "hint": "synonyms for monstrous", "clues": ["grotesque", "flagitious", "atrocious", "grievous", "monstrous"]}, {"answer": "moody", "hint": "synonyms for moody", "clues": ["sullen", "sour", "temperamental", "saturnine", "morose", "dark", "glowering", "glum", "dour", "moody"]}, {"answer": "morbid", "hint": "synonyms for morbid", "clues": ["ghoulish", "pathological", "diseased", "morbid"]}, {"answer": "mordacious", "hint": "synonyms for mordacious", "clues": ["barbed", "nipping", "pungent", "biting", "mordacious"]}, {"answer": "mordant", "hint": "synonyms for mordant", "clues": ["grim", "caustic", "black", "erosive", "vitriolic", "corrosive", "mordant"]}, {"answer": "morose", "hint": "synonyms for morose", "clues": ["sullen", "sour", "saturnine", "dark", "glowering", "glum", "dour", "moody", "morose"]}, {"answer": "mortifying", "hint": "synonyms for mortifying", "clues": ["humbling", "demeaning", "humiliating", "embarrassing", "mortifying"]}, {"answer": "moss-grown", "hint": "synonyms for moss-grown", "clues": ["mossy", "stodgy", "fogyish", "stick-in-the-mud", "moss-grown"]}, {"answer": "mossy", "hint": "synonyms for mossy", "clues": ["stodgy", "fogyish", "stick-in-the-mud", "moss-grown", "mossy"]}, {"answer": "moth-eaten", "hint": "synonyms for moth-eaten", "clues": ["stale", "cold", "tatty", "dusty", "shabby", "ratty", "mothy", "moth-eaten"]}, {"answer": "mother-naked", "hint": "synonyms for mother-naked", "clues": ["in your birthday suit", "naked as the day one was born", "naked as the day you were born", "in one's birthday suit", "mother-naked"]}, {"answer": "motley", "hint": "synonyms for motley", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "assorted", "painted", "mixed", "sundry", "calico", "piebald", "miscellaneous", "motley"]}, {"answer": "mourning", "hint": "synonyms for mourning", "clues": ["grieving", "bereft", "bereaved", "grief-stricken", "sorrowing", "mourning"]}, {"answer": "mucilaginous", "hint": "synonyms for mucilaginous", "clues": ["pasty", "glutinous", "gluey", "viscid", "sticky", "gummy", "viscous", "mucilaginous"]}, {"answer": "mucky", "hint": "synonyms for mucky", "clues": ["swampy", "miry", "sloppy", "marshy", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "squashy", "boggy", "mucky"]}, {"answer": "muddled", "hint": "synonyms for muddled", "clues": ["woolly-headed", "wooly", "muzzy", "befuddled", "wooly-minded", "addled", "muddled"]}, {"answer": "muddy", "hint": "synonyms for muddy", "clues": ["swampy", "mirky", "turbid", "sloppy", "dingy", "marshy", "murky", "dirty", "squashy", "muddied", "soggy", "quaggy", "sloughy", "waterlogged", "mucky", "cloudy", "boggy", "muddy"]}, {"answer": "multi-color", "hint": "synonyms for multi-color", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multi-colored", "hint": "synonyms for multi-colored", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multi-colour", "hint": "synonyms for multi-colour", "clues": ["multicolor", "varicolored", "pied", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multi-coloured", "hint": "synonyms for multi-coloured", "clues": ["multicolor", "pied", "varicolored", "particoloured", "painted", "calico", "piebald", "motley", "multi-coloured"]}, {"answer": "multicolor", "hint": "synonyms for multicolor", "clues": ["multi-colour", "multicolored", "pied", "varicolored", "particoloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multicolored", "hint": "synonyms for multicolored", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multicolour", "hint": "synonyms for multicolour", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multicoloured", "hint": "synonyms for multicoloured", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "multitudinous", "hint": "synonyms for multitudinous", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "myriad", "innumerous", "countless", "multitudinous"]}, {"answer": "mundane", "hint": "synonyms for mundane", "clues": ["terrestrial", "workaday", "routine", "everyday", "terrene", "unremarkable", "quotidian", "mundane"]}, {"answer": "munificent", "hint": "synonyms for munificent", "clues": ["unsparing", "lavish", "too-generous", "unstinting", "overgenerous", "unstinted", "munificent"]}, {"answer": "murky", "hint": "synonyms for murky", "clues": ["mirky", "muddy", "turbid", "cloudy", "murky"]}, {"answer": "muscular", "hint": "synonyms for muscular", "clues": ["brawny", "powerful", "mesomorphic", "hefty", "sinewy", "muscular"]}, {"answer": "mushy", "hint": "synonyms for mushy", "clues": ["soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "mushy"]}, {"answer": "musing", "hint": "synonyms for musing", "clues": ["pondering", "broody", "contemplative", "reflective", "meditative", "pensive", "ruminative", "brooding", "musing"]}, {"answer": "musty", "hint": "synonyms for musty", "clues": ["mouldy", "fusty", "frowsty", "musty"]}, {"answer": "mute", "hint": "synonyms for mute", "clues": ["dumb", "unspoken", "silent", "tongueless", "wordless", "mute"]}, {"answer": "muted", "hint": "synonyms for muted", "clues": ["subdued", "quiet", "muffled", "softened", "hushed", "dull", "muted"]}, {"answer": "muzzy", "hint": "synonyms for muzzy", "clues": ["bleary", "blurred", "woolly", "foggy", "befuddled", "blurry", "addled", "wooly-minded", "fuzzy", "woolly-headed", "muddled", "hazy", "muzzy"]}, {"answer": "myopic", "hint": "synonyms for myopic", "clues": ["nearsighted", "shortsighted", "short", "unforesightful", "myopic"]}, {"answer": "myriad", "hint": "synonyms for myriad", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "multitudinous", "innumerous", "countless", "myriad"]}, {"answer": "mysterious", "hint": "synonyms for mysterious", "clues": ["occult", "deep", "mystic", "secret", "cryptic", "inscrutable", "orphic", "mystifying", "mysterious"]}, {"answer": "mystic", "hint": "synonyms for mystic", "clues": ["orphic", "occult", "mysterious", "mystical", "secret"]}, {"answer": "mystical", "hint": "synonyms for mystical", "clues": ["orphic", "occult", "mysterious", "mystic", "secret"]}, {"answer": "mystifying", "hint": "synonyms for mystifying", "clues": ["cryptic", "inscrutable", "mysterious", "deep", "mystifying"]}, {"answer": "nacreous", "hint": "synonyms for nacreous", "clues": ["pearlescent", "opaline", "iridescent", "nacreous"]}, {"answer": "naive", "hint": "synonyms for naive", "clues": ["unenlightened", "uninitiate", "uninstructed", "primitive", "naif", "naive"]}, {"answer": "naked", "hint": "synonyms for naked", "clues": ["au naturel", "bare", "defenseless", "raw", "nude", "naked"]}, {"answer": "naked_as_a_jaybird", "hint": "synonyms for naked as a jaybird", "clues": ["in the altogether", "in the buff", "peeled", "stark naked", "raw", "in the raw", "bare-assed", "naked as a jaybird"]}, {"answer": "naked_as_the_day_one_was_born", "hint": "synonyms for naked as the day one was born", "clues": ["in your birthday suit", "mother-naked", "in one's birthday suit", "naked as the day you were born", "naked as the day one was born"]}, {"answer": "naked_as_the_day_you_were_born", "hint": "synonyms for naked as the day you were born", "clues": ["in your birthday suit", "naked as the day one was born", "mother-naked", "in one's birthday suit", "naked as the day you were born"]}, {"answer": "napping", "hint": "synonyms for napping", "clues": ["off one's guard", "off-guard", "off her guard", "off your guard", "off his guard", "napping"]}, {"answer": "nappy", "hint": "synonyms for nappy", "clues": ["kinky", "frizzy", "crisp", "nappy"]}, {"answer": "narcotic", "hint": "synonyms for narcotic", "clues": ["soporific", "soporiferous", "narcotising", "narcotic"]}, {"answer": "narrowing", "hint": "synonyms for narrowing", "clues": ["tapered", "constricting", "constrictive", "tapering", "narrowing"]}, {"answer": "nasty", "hint": "synonyms for nasty", "clues": ["tight", "filthy", "cruddy", "smutty", "foul", "awful", "nasty"]}, {"answer": "nationalistic", "hint": "synonyms for nationalistic", "clues": ["chauvinistic", "nationalist", "superpatriotic", "jingoistic", "ultranationalistic", "flag-waving"]}, {"answer": "natty", "hint": "synonyms for natty", "clues": ["raffish", "jaunty", "spruce", "spiffy", "dapper", "snappy", "rakish", "dashing", "natty"]}, {"answer": "natural", "hint": "synonyms for natural", "clues": ["born", "instinctive", "innate", "raw", "rude", "lifelike", "natural"]}, {"answer": "naughty", "hint": "synonyms for naughty", "clues": ["blue", "juicy", "gamey", "spicy", "racy", "risque", "naughty"]}, {"answer": "nauseated", "hint": "synonyms for nauseated", "clues": ["queasy", "sickish", "nauseous", "sick", "nauseated"]}, {"answer": "nauseating", "hint": "synonyms for nauseating", "clues": ["queasy", "sickening", "nauseous", "offensive", "vile", "loathsome", "noisome", "nauseating"]}, {"answer": "nauseous", "hint": "synonyms for nauseous", "clues": ["queasy", "nauseating", "offensive", "sick", "sickening", "loathsome", "nauseated", "sickish", "vile", "noisome", "nauseous"]}, {"answer": "neandertal", "hint": "synonyms for neandertal", "clues": ["boorish", "oafish", "swinish", "loutish", "neanderthal"]}, {"answer": "neanderthal", "hint": "synonyms for neanderthal", "clues": ["boorish", "oafish", "neandertal", "swinish", "loutish"]}, {"answer": "near", "hint": "synonyms for near", "clues": ["penny-pinching", "good", "nigh", "approximate", "dear", "cheeseparing", "close", "skinny", "near"]}, {"answer": "near-blind", "hint": "synonyms for near-blind", "clues": ["visually impaired", "visually challenged", "sand-blind", "purblind", "dim-sighted", "near-blind"]}, {"answer": "neat", "hint": "synonyms for neat", "clues": ["smashing", "dandy", "bully", "orderly", "not bad", "full-strength", "bang-up", "straight", "refined", "slap-up", "cracking", "keen", "corking", "great", "tasteful", "clean", "swell", "peachy", "groovy", "nifty", "neat"]}, {"answer": "nebulous", "hint": "synonyms for nebulous", "clues": ["nebulose", "unfixed", "cloudy", "nebular"]}, {"answer": "necessitous", "hint": "synonyms for necessitous", "clues": ["indigent", "destitute", "impoverished", "needy", "poverty-stricken", "necessitous"]}, {"answer": "neck-deep", "hint": "synonyms for neck-deep", "clues": ["up to my neck", "up to her neck", "up to our necks", "neck-deep"]}, {"answer": "needy", "hint": "synonyms for needy", "clues": ["destitute", "impoverished", "necessitous", "indigent", "poverty-stricken", "needy"]}, {"answer": "negative", "hint": "synonyms for negative", "clues": ["negatively charged", "minus", "disconfirming", "damaging", "electronegative", "negative"]}, {"answer": "neglectful", "hint": "synonyms for neglectful", "clues": ["delinquent", "inattentive", "derelict", "remiss", "neglectful"]}, {"answer": "negotiable", "hint": "synonyms for negotiable", "clues": ["conveyable", "transferrable", "assignable", "on the table", "negotiable"]}, {"answer": "nervous", "hint": "synonyms for nervous", "clues": ["queasy", "uneasy", "unquiet", "neural", "anxious", "spooky", "skittish", "flighty", "aflutter", "nervous"]}, {"answer": "nervy", "hint": "synonyms for nervy", "clues": ["brash", "high-strung", "highly strung", "cheeky", "restive", "uptight", "overstrung", "edgy", "jittery", "jumpy", "nervy"]}, {"answer": "nescient", "hint": "synonyms for nescient", "clues": ["unlearned", "unlettered", "ignorant", "unbelieving", "nescient"]}, {"answer": "netlike", "hint": "synonyms for netlike", "clues": ["webby", "netted", "weblike", "lacy", "webbed", "netlike"]}, {"answer": "netted", "hint": "synonyms for netted", "clues": ["webby", "weblike", "lacy", "webbed", "netlike", "netted"]}, {"answer": "nettled", "hint": "synonyms for nettled", "clues": ["riled", "pissed off", "miffed", "steamed", "peeved", "stung", "pissed", "annoyed", "irritated", "nettled"]}, {"answer": "nettlesome", "hint": "synonyms for nettlesome", "clues": ["galling", "teasing", "irritable", "testy", "plaguey", "pestering", "scratchy", "peevish", "cranky", "pettish", "techy", "petulant", "annoying", "vexing", "fractious", "pesky", "pestiferous", "irritating", "bothersome", "peckish", "vexatious", "nettlesome"]}, {"answer": "neutral", "hint": "synonyms for neutral", "clues": ["inert", "electroneutral", "achromatic", "indifferent", "impersonal", "neutral"]}, {"answer": "never-ending", "hint": "synonyms for never-ending", "clues": ["constant", "unceasing", "ceaseless", "unremitting", "perpetual", "incessant", "never-ending"]}, {"answer": "new", "hint": "synonyms for new", "clues": ["young", "novel", "unexampled", "fresh", "raw", "newfangled", "new"]}, {"answer": "next", "hint": "synonyms for next", "clues": ["future", "side by side", "following", "succeeding", "adjacent", "next"]}, {"answer": "nice", "hint": "synonyms for nice", "clues": ["decent", "skillful", "squeamish", "prissy", "courteous", "gracious", "dainty", "overnice", "nice"]}, {"answer": "nifty", "hint": "synonyms for nifty", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "groovy", "nifty"]}, {"answer": "niggling", "hint": "synonyms for niggling", "clues": ["lilliputian", "piddling", "petty", "picayune", "little", "trivial", "footling", "piffling", "niggling"]}, {"answer": "niminy-piminy", "hint": "synonyms for niminy-piminy", "clues": ["twee", "prim", "mincing", "dainty", "niminy-piminy"]}, {"answer": "nipping", "hint": "synonyms for nipping", "clues": ["barbed", "frosty", "biting", "mordacious", "nippy", "snappy", "crisp", "pungent", "nipping"]}, {"answer": "nippy", "hint": "synonyms for nippy", "clues": ["frosty", "nipping", "snappy", "crisp", "nippy"]}, {"answer": "no-account", "hint": "synonyms for no-account", "clues": ["good-for-nothing", "sorry", "good-for-naught", "meritless", "no-good", "no-count"]}, {"answer": "no-count", "hint": "synonyms for no-count", "clues": ["good-for-nothing", "sorry", "good-for-naught", "meritless", "no-good", "no-account"]}, {"answer": "no-good", "hint": "synonyms for no-good", "clues": ["good-for-nothing", "sorry", "good-for-naught", "rubber", "meritless", "no-count", "no-good"]}, {"answer": "noble-minded", "hint": "synonyms for noble-minded", "clues": ["rarified", "idealistic", "grand", "elevated", "high-flown", "high-minded", "sublime", "lofty", "exalted", "noble-minded"]}, {"answer": "nodding", "hint": "synonyms for nodding", "clues": ["weeping", "drooping", "pendulous", "cernuous", "nodding"]}, {"answer": "noisome", "hint": "synonyms for noisome", "clues": ["funky", "queasy", "nauseating", "smelly", "foul", "foetid", "sickening", "loathsome", "stinking", "foul-smelling", "nauseous", "vile", "offensive", "ill-scented", "noisome"]}, {"answer": "nomadic", "hint": "synonyms for nomadic", "clues": ["roving", "peregrine", "wandering", "mobile", "nomadic"]}, {"answer": "nominal", "hint": "synonyms for nominal", "clues": ["tokenish", "titular", "token", "nominative", "nominal"]}, {"answer": "non-white", "hint": "synonyms for non-white", "clues": ["coloured", "dark", "dark-skinned", "non-white"]}, {"answer": "nonionic", "hint": "synonyms for nonionic", "clues": ["unionised", "nonionised", "nonpolar", "nonionic"]}, {"answer": "nonpareil", "hint": "synonyms for nonpareil", "clues": ["one", "matchless", "unmatched", "unrivalled", "unmatchable", "one and only", "peerless", "nonpareil"]}, {"answer": "nonsensical", "hint": "synonyms for nonsensical", "clues": ["idiotic", "ridiculous", "cockeyed", "absurd", "ludicrous", "derisory", "preposterous", "nonsense", "laughable", "nonsensical"]}, {"answer": "not_bad", "hint": "synonyms for not bad", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "peachy", "groovy", "nifty", "not bad"]}, {"answer": "notable", "hint": "synonyms for notable", "clues": ["famed", "noteworthy", "celebrated", "illustrious", "far-famed", "famous", "noted", "renowned", "notable"]}, {"answer": "notched", "hint": "synonyms for notched", "clues": ["serrated", "jagged", "saw-toothed", "jaggy", "erose", "toothed", "notched"]}, {"answer": "noted", "hint": "synonyms for noted", "clues": ["famed", "renowned", "famous", "celebrated", "illustrious", "far-famed", "notable", "noted"]}, {"answer": "notional", "hint": "synonyms for notional", "clues": ["ideational", "imaginary", "conceptional", "fanciful", "speculative", "notional"]}, {"answer": "nourishing", "hint": "synonyms for nourishing", "clues": ["alimental", "nutritive", "alimentary", "nutritious", "nutrient", "nourishing"]}, {"answer": "nubbly", "hint": "synonyms for nubbly", "clues": ["homespun", "slubbed", "tweedy", "nubby"]}, {"answer": "nubby", "hint": "synonyms for nubby", "clues": ["homespun", "tweedy", "nubbly", "slubbed"]}, {"answer": "numberless", "hint": "synonyms for numberless", "clues": ["unnumbered", "innumerable", "infinite", "uncounted", "myriad", "multitudinous", "innumerous", "countless", "numberless"]}, {"answer": "nutrient", "hint": "synonyms for nutrient", "clues": ["alimental", "nutritive", "alimentary", "nutritious", "nourishing", "nutrient"]}, {"answer": "nutritious", "hint": "synonyms for nutritious", "clues": ["alimental", "nutritive", "alimentary", "nourishing", "nutrient", "nutritious"]}, {"answer": "nutritive", "hint": "synonyms for nutritive", "clues": ["alimental", "alimentary", "nutritious", "nourishing", "nutrient", "nutritive"]}, {"answer": "nuts", "hint": "synonyms for nuts", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "batty", "bats", "cracked", "nuts"]}, {"answer": "nutty", "hint": "synonyms for nutty", "clues": ["balmy", "loco", "loony", "haywire", "round the bend", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nuts", "batty", "nutlike", "bats", "cracked", "nutty"]}, {"answer": "o.k.", "hint": "synonyms for o.k.", "clues": ["hunky-dory", "okay", "ok", "all right", "fine", "o.k."]}, {"answer": "oafish", "hint": "synonyms for oafish", "clues": ["boorish", "neandertal", "swinish", "loutish", "oafish"]}, {"answer": "obdurate", "hint": "synonyms for obdurate", "clues": ["granitic", "stony", "cussed", "flinty", "obstinate", "unrepentant", "obdurate"]}, {"answer": "obscene", "hint": "synonyms for obscene", "clues": ["salacious", "raunchy", "repugnant", "abhorrent", "lewd", "repulsive", "detestable", "obscene"]}, {"answer": "obscure", "hint": "synonyms for obscure", "clues": ["dark", "hidden", "unknown", "unnoticeable", "vague", "isolated", "unsung", "apart", "obscure"]}, {"answer": "obsequious", "hint": "synonyms for obsequious", "clues": ["fawning", "bootlicking", "sycophantic", "toadyish", "obsequious"]}, {"answer": "obsessed", "hint": "synonyms for obsessed", "clues": ["taken up", "possessed", "haunted", "preoccupied", "obsessed"]}, {"answer": "obstinate", "hint": "synonyms for obstinate", "clues": ["contrary", "cussed", "stubborn", "wayward", "obdurate", "unregenerate", "perverse", "unrepentant", "obstinate"]}, {"answer": "obtuse", "hint": "synonyms for obtuse", "clues": ["dumb", "dim", "purblind", "slow", "dull", "dense", "obtuse"]}, {"answer": "occult", "hint": "synonyms for occult", "clues": ["orphic", "mysterious", "mystical", "secret", "occult"]}, {"answer": "ocular", "hint": "synonyms for ocular", "clues": ["optical", "optic", "visual", "opthalmic", "ocular"]}, {"answer": "odd", "hint": "synonyms for odd", "clues": ["leftover", "queer", "unmatched", "singular", "peculiar", "unexpended", "uneven", "funny", "curious", "unpaired", "left", "remaining", "rum", "rummy", "odd"]}, {"answer": "odoriferous", "hint": "synonyms for odoriferous", "clues": ["sweet", "sweet-smelling", "sweet-scented", "perfumed", "odorous", "scented", "odoriferous"]}, {"answer": "odorous", "hint": "synonyms for odorous", "clues": ["sweet", "sweet-smelling", "sweet-scented", "perfumed", "odoriferous", "scented", "odorous"]}, {"answer": "oecumenical", "hint": "synonyms for oecumenical", "clues": ["cosmopolitan", "worldwide", "ecumenical", "general", "oecumenic", "universal"]}, {"answer": "of_the_essence", "hint": "synonyms for of the essence", "clues": ["all important", "essential", "crucial", "of the essence"]}, {"answer": "off-color", "hint": "synonyms for off-color", "clues": ["off-colour", "bawdy", "ribald", "indelicate"]}, {"answer": "off-guard", "hint": "synonyms for off-guard", "clues": ["off one's guard", "off her guard", "off your guard", "off his guard", "off guard", "napping"]}, {"answer": "off-the-cuff", "hint": "synonyms for off-the-cuff", "clues": ["extemporaneous", "extempore", "offhand", "unrehearsed", "impromptu", "ad-lib", "extemporary", "off-the-cuff"]}, {"answer": "off-the-wall", "hint": "synonyms for off-the-wall", "clues": ["flaky", "freakish", "gonzo", "outlandish", "bizarre", "freaky", "outre", "eccentric", "off-the-wall"]}, {"answer": "off_guard", "hint": "synonyms for off guard", "clues": ["off one's guard", "off-guard", "off her guard", "off your guard", "off his guard", "napping"]}, {"answer": "off_her_guard", "hint": "synonyms for off her guard", "clues": ["off one's guard", "off-guard", "off your guard", "off his guard", "napping", "off her guard"]}, {"answer": "off_his_guard", "hint": "synonyms for off his guard", "clues": ["off one's guard", "off-guard", "off her guard", "off your guard", "napping", "off his guard"]}, {"answer": "off_one's_guard", "hint": "synonyms for off one's guard", "clues": ["off-guard", "off her guard", "off your guard", "off his guard", "napping", "off one's guard"]}, {"answer": "off_your_guard", "hint": "synonyms for off your guard", "clues": ["off one's guard", "off-guard", "off her guard", "off his guard", "napping", "off your guard"]}, {"answer": "offbeat", "hint": "synonyms for offbeat", "clues": ["quirky", "kinky", "way-out", "far-out", "offbeat"]}, {"answer": "offensive", "hint": "synonyms for offensive", "clues": ["unsavoury", "queasy", "dysphemistic", "violative", "nauseating", "loathsome", "sickening", "nauseous", "vile", "noisome", "offensive"]}, {"answer": "offhand", "hint": "synonyms for offhand", "clues": ["off-the-cuff", "extemporaneous", "extempore", "offhanded", "unrehearsed", "impromptu", "ad-lib", "extemporary"]}, {"answer": "offhanded", "hint": "synonyms for offhanded", "clues": ["off-the-cuff", "extemporaneous", "extempore", "offhand", "unrehearsed", "impromptu", "ad-lib", "extemporary"]}, {"answer": "officious", "hint": "synonyms for officious", "clues": ["busybodied", "interfering", "meddling", "meddlesome", "busy", "officious"]}, {"answer": "oily", "hint": "synonyms for oily", "clues": ["buttery", "oleaginous", "greasy", "fulsome", "soapy", "smarmy", "sebaceous", "unctuous", "oily"]}, {"answer": "ok", "hint": "synonyms for ok", "clues": ["hunky-dory", "o.k.", "okay", "all right", "fine", "ok"]}, {"answer": "okay", "hint": "synonyms for okay", "clues": ["hunky-dory", "o.k.", "ok", "all right", "fine", "okay"]}, {"answer": "old", "hint": "synonyms for old", "clues": ["sometime", "previous", "older", "sure-enough", "former", "honest-to-god", "erstwhile", "one-time", "honest-to-goodness", "quondam", "old"]}, {"answer": "old-fashioned", "hint": "synonyms for old-fashioned", "clues": ["outmoded", "old-hat", "demode", "antique", "passe", "ex", "old-fashioned"]}, {"answer": "old-hat", "hint": "synonyms for old-hat", "clues": ["outmoded", "timeworn", "trite", "shopworn", "commonplace", "well-worn", "passe", "hackneyed", "ex", "old-fashioned", "demode", "antique", "banal", "threadbare", "stock", "tired", "old-hat"]}, {"answer": "older", "hint": "synonyms for older", "clues": ["old", "elderly", "aged", "sometime", "previous", "sure-enough", "former", "honest-to-god", "erstwhile", "one-time", "senior", "honest-to-goodness", "sr.", "quondam", "older"]}, {"answer": "oleaginous", "hint": "synonyms for oleaginous", "clues": ["buttery", "greasy", "oily", "fulsome", "unctuous", "smarmy", "sebaceous", "soapy", "oleaginous"]}, {"answer": "olympian", "hint": "synonyms for olympian", "clues": ["majestic", "exceeding", "surpassing", "exceptional", "prodigious", "olympian"]}, {"answer": "ominous", "hint": "synonyms for ominous", "clues": ["ill", "sinister", "forbidding", "minacious", "threatening", "inauspicious", "baleful", "minatory", "menacing", "ominous"]}, {"answer": "on_fire", "hint": "synonyms for on fire", "clues": ["alight", "afire", "aflame", "ablaze", "aflare", "on fire"]}, {"answer": "one", "hint": "synonyms for one", "clues": ["peerless", "matchless", "unmatched", "unrivalled", "i", "unitary", "1", "unmatchable", "one and only", "ane", "nonpareil", "one"]}, {"answer": "one-sided", "hint": "synonyms for one-sided", "clues": ["coloured", "nonreversible", "biased", "unilateral", "slanted", "one-sided"]}, {"answer": "one-time", "hint": "synonyms for one-time", "clues": ["old", "onetime", "sometime", "quondam", "former", "erstwhile"]}, {"answer": "one_and_only", "hint": "synonyms for one and only", "clues": ["one", "nonpareil", "matchless", "unmatched", "unrivalled", "unmatchable", "peerless", "one and only"]}, {"answer": "one_thousand", "hint": "synonyms for one thousand", "clues": ["1000", "k", "m", "thousand", "one thousand"]}, {"answer": "onetime", "hint": "synonyms for onetime", "clues": ["old", "one-time", "sometime", "quondam", "former", "erstwhile"]}, {"answer": "only", "hint": "synonyms for only", "clues": ["lone", "solitary", "lonesome", "sole", "only"]}, {"answer": "opalescent", "hint": "synonyms for opalescent", "clues": ["nacreous", "pearlescent", "opaline", "iridescent"]}, {"answer": "opaline", "hint": "synonyms for opaline", "clues": ["nacreous", "opalescent", "iridescent", "opaline"]}, {"answer": "open", "hint": "synonyms for open", "clues": ["undefended", "overt", "subject", "undetermined", "candid", "loose", "heart-to-heart", "unfastened", "clear", "undecided", "unresolved", "receptive", "undefendable", "assailable", "capable", "exposed", "opened", "open"]}, {"answer": "openhanded", "hint": "synonyms for openhanded", "clues": ["bounteous", "liberal", "freehanded", "handsome", "bighearted", "big", "bountiful", "giving", "openhanded"]}, {"answer": "openhearted", "hint": "synonyms for openhearted", "clues": ["benevolent", "good-hearted", "large-hearted", "sympathetic", "charitable", "kindly", "openhearted"]}, {"answer": "operable", "hint": "synonyms for operable", "clues": ["practicable", "operational", "functional", "useable", "operable"]}, {"answer": "operational", "hint": "synonyms for operational", "clues": ["operating", "in operation", "functional", "useable", "operable", "operational"]}, {"answer": "operative", "hint": "synonyms for operative", "clues": ["surgical", "functional", "running", "working", "operative"]}, {"answer": "operose", "hint": "synonyms for operose", "clues": ["laborious", "toilsome", "backbreaking", "grueling", "arduous", "punishing", "hard", "heavy", "operose"]}, {"answer": "opposite", "hint": "synonyms for opposite", "clues": ["polar", "diametrical", "paired", "opposite"]}, {"answer": "opprobrious", "hint": "synonyms for opprobrious", "clues": ["ignominious", "shameful", "abusive", "black", "inglorious", "disgraceful", "scurrilous", "opprobrious"]}, {"answer": "optic", "hint": "synonyms for optic", "clues": ["optical", "ocular", "visual", "opthalmic", "optic"]}, {"answer": "optical", "hint": "synonyms for optical", "clues": ["optic", "ocular", "visual", "opthalmic", "optical"]}, {"answer": "opulent", "hint": "synonyms for opulent", "clues": ["deluxe", "sumptuous", "princely", "luxurious", "grand", "gilded", "opulent"]}, {"answer": "orbicular", "hint": "synonyms for orbicular", "clues": ["orbiculate", "globose", "ball-shaped", "global", "spherical", "globular", "orbicular"]}, {"answer": "ordered", "hint": "synonyms for ordered", "clues": ["logical", "arranged", "coherent", "consistent", "ordered"]}, {"answer": "orgiastic", "hint": "synonyms for orgiastic", "clues": ["carousing", "bacchanalian", "bacchic", "orgiastic"]}, {"answer": "orotund", "hint": "synonyms for orotund", "clues": ["bombastic", "large", "declamatory", "pear-shaped", "round", "tumid", "turgid", "orotund"]}, {"answer": "orphic", "hint": "synonyms for orphic", "clues": ["occult", "mysterious", "mystical", "secret", "orphic"]}, {"answer": "orthogonal", "hint": "synonyms for orthogonal", "clues": ["impertinent", "extraneous", "immaterial", "rectangular", "orthogonal"]}, {"answer": "otiose", "hint": "synonyms for otiose", "clues": ["purposeless", "ineffectual", "unavailing", "pointless", "work-shy", "senseless", "faineant", "wasted", "futile", "lazy", "indolent", "superfluous", "slothful", "otiose"]}, {"answer": "out", "hint": "synonyms for out", "clues": ["stunned", "forbidden", "knocked out", "prohibited", "tabu", "verboten", "proscribed", "extinct", "kayoed", "taboo", "out"]}, {"answer": "out-and-out", "hint": "synonyms for out-and-out", "clues": ["absolute", "rank", "sheer", "downright", "right-down", "out-and-out"]}, {"answer": "outer", "hint": "synonyms for outer", "clues": ["stunned", "forbidden", "knocked out", "out", "prohibited", "tabu", "verboten", "proscribed", "extinct", "kayoed", "taboo", "outer"]}, {"answer": "outlandish", "hint": "synonyms for outlandish", "clues": ["flaky", "freakish", "gonzo", "bizarre", "freaky", "outre", "off-the-wall", "eccentric", "outlandish"]}, {"answer": "outlaw", "hint": "synonyms for outlaw", "clues": ["illicit", "outlawed", "lawless", "illegitimate", "unlawful"]}, {"answer": "outlawed", "hint": "synonyms for outlawed", "clues": ["outlaw", "illicit", "illegitimate", "unlawful"]}, {"answer": "outmoded", "hint": "synonyms for outmoded", "clues": ["old-fashioned", "old-hat", "demode", "antique", "passe", "ex", "outmoded"]}, {"answer": "outrageous", "hint": "synonyms for outrageous", "clues": ["horrid", "steep", "unconscionable", "hideous", "exorbitant", "extortionate", "usurious", "horrific", "outrageous"]}, {"answer": "outre", "hint": "synonyms for outre", "clues": ["flaky", "freakish", "gonzo", "outlandish", "bizarre", "freaky", "off-the-wall", "eccentric", "outre"]}, {"answer": "outside", "hint": "synonyms for outside", "clues": ["external", "extraneous", "remote", "away", "outdoor", "out-of-door", "international", "outside"]}, {"answer": "outspoken", "hint": "synonyms for outspoken", "clues": ["frank", "candid", "plainspoken", "free-spoken", "vocal", "straight-from-the-shoulder", "blunt", "forthright", "point-blank", "outspoken"]}, {"answer": "outstanding", "hint": "synonyms for outstanding", "clues": ["striking", "owing", "spectacular", "great", "salient", "prominent", "undischarged", "outstanding"]}, {"answer": "oval", "hint": "synonyms for oval", "clues": ["elliptic", "ovoid", "prolate", "egg-shaped", "oviform", "oval-shaped", "ovate", "oval"]}, {"answer": "oval-shaped", "hint": "synonyms for oval-shaped", "clues": ["oval", "elliptic", "ovoid", "prolate", "egg-shaped", "oviform", "ovate", "oval-shaped"]}, {"answer": "ovate", "hint": "synonyms for ovate", "clues": ["oval", "elliptic", "prolate", "egg-shaped", "oviform", "oval-shaped", "ovoid", "ovate"]}, {"answer": "over", "hint": "synonyms for over", "clues": ["all over", "terminated", "concluded", "ended", "complete", "over"]}, {"answer": "overbearing", "hint": "synonyms for overbearing", "clues": ["swaggering", "authoritarian", "imperious", "sniffy", "dictatorial", "lordly", "supercilious", "haughty", "prideful", "disdainful", "overbearing"]}, {"answer": "overblown", "hint": "synonyms for overblown", "clues": ["pompous", "grandiloquent", "portentous", "pontifical", "overblown"]}, {"answer": "overbold", "hint": "synonyms for overbold", "clues": ["impudent", "sassy", "wise", "fresh", "impertinent", "saucy", "smart", "overbold"]}, {"answer": "overflowing", "hint": "synonyms for overflowing", "clues": ["awash", "afloat", "inundated", "flooded", "overflowing"]}, {"answer": "overgenerous", "hint": "synonyms for overgenerous", "clues": ["unsparing", "lavish", "too-generous", "unstinting", "munificent", "unstinted", "overgenerous"]}, {"answer": "overhasty", "hint": "synonyms for overhasty", "clues": ["precipitate", "precipitous", "hasty", "overhasty"]}, {"answer": "overnice", "hint": "synonyms for overnice", "clues": ["nice", "squeamish", "prissy", "dainty", "overnice"]}, {"answer": "overriding", "hint": "synonyms for overriding", "clues": ["preponderating", "predominant", "preponderant", "paramount", "overriding"]}, {"answer": "overstrung", "hint": "synonyms for overstrung", "clues": ["high-strung", "highly strung", "restive", "nervy", "uptight", "edgy", "jittery", "jumpy", "overstrung"]}, {"answer": "overweening", "hint": "synonyms for overweening", "clues": ["excessive", "extravagant", "uppity", "exuberant", "overweening"]}, {"answer": "oviform", "hint": "synonyms for oviform", "clues": ["oval", "elliptic", "ovoid", "prolate", "egg-shaped", "oval-shaped", "ovate", "oviform"]}, {"answer": "ovoid", "hint": "synonyms for ovoid", "clues": ["oval", "elliptic", "prolate", "egg-shaped", "oviform", "oval-shaped", "ovate", "ovoid"]}, {"answer": "pachydermatous", "hint": "synonyms for pachydermatous", "clues": ["pachydermic", "pachydermous", "callous", "indurate", "pachydermal"]}, {"answer": "painful", "hint": "synonyms for painful", "clues": ["afflictive", "abominable", "sore", "atrocious", "unspeakable", "irritating", "terrible", "dreadful", "awful", "painful"]}, {"answer": "painted", "hint": "synonyms for painted", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "calico", "piebald", "motley", "painted"]}, {"answer": "palliative", "hint": "synonyms for palliative", "clues": ["mitigative", "mitigatory", "alleviative", "lenitive", "alleviatory"]}, {"answer": "palmy", "hint": "synonyms for palmy", "clues": ["thriving", "prospering", "flourishing", "prosperous", "booming", "roaring", "palmy"]}, {"answer": "paltry", "hint": "synonyms for paltry", "clues": ["measly", "negligible", "miserable", "trifling", "paltry"]}, {"answer": "panic-stricken", "hint": "synonyms for panic-stricken", "clues": ["frightened", "panic-struck", "panicked", "panicky", "terrified", "panic-stricken"]}, {"answer": "panic-struck", "hint": "synonyms for panic-struck", "clues": ["panicky", "frightened", "panicked", "panic-stricken", "terrified", "panic-struck"]}, {"answer": "panicked", "hint": "synonyms for panicked", "clues": ["panicky", "frightened", "panic-struck", "panic-stricken", "terrified", "panicked"]}, {"answer": "panicky", "hint": "synonyms for panicky", "clues": ["frightened", "panic-struck", "panicked", "panic-stricken", "terrified", "panicky"]}, {"answer": "panoptic", "hint": "synonyms for panoptic", "clues": ["all-embracing", "across-the-board", "all-inclusive", "extensive", "wide", "encompassing", "blanket", "panoptical", "broad"]}, {"answer": "papistic", "hint": "synonyms for papistic", "clues": ["popish", "papistical", "papist", "romish"]}, {"answer": "paramount", "hint": "synonyms for paramount", "clues": ["overriding", "preponderating", "predominant", "preponderant", "paramount"]}, {"answer": "parasitic", "hint": "synonyms for parasitic", "clues": ["epenthetic", "bloodsucking", "leechlike", "parasitical"]}, {"answer": "parceled_out", "hint": "synonyms for parceled out", "clues": ["meted out", "doled out", "apportioned", "dealt out", "parceled out"]}, {"answer": "parched", "hint": "synonyms for parched", "clues": ["baked", "sunbaked", "scorched", "adust", "parched"]}, {"answer": "parthenogenetic", "hint": "synonyms for parthenogenetic", "clues": ["apomictic", "agamogenetic", "agamic", "agamous", "parthenogenetic"]}, {"answer": "particolored", "hint": "synonyms for particolored", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "particoloured", "hint": "synonyms for particoloured", "clues": ["multicolor", "pied", "varicolored", "multi-coloured", "painted", "calico", "piebald", "motley", "particoloured"]}, {"answer": "particular", "hint": "synonyms for particular", "clues": ["finical", "special", "picky", "fussy", "finicky", "exceptional", "peculiar", "particular"]}, {"answer": "passe", "hint": "synonyms for passe", "clues": ["outmoded", "old-hat", "demode", "antique", "old-fashioned", "ex", "passee"]}, {"answer": "passee", "hint": "synonyms for passee", "clues": ["outmoded", "old-hat", "demode", "antique", "old-fashioned", "passe", "ex"]}, {"answer": "passing", "hint": "synonyms for passing", "clues": ["short-lived", "cursory", "transitory", "transient", "fugacious", "ephemeral", "perfunctory", "casual", "pass"]}, {"answer": "pasty", "hint": "synonyms for pasty", "clues": ["glutinous", "sticky", "viscous", "gluey", "viscid", "gummy", "mucilaginous", "pastelike", "pasty"]}, {"answer": "patent", "hint": "synonyms for patent", "clues": ["apparent", "unmistakable", "manifest", "evident", "plain", "patent"]}, {"answer": "paternal", "hint": "synonyms for paternal", "clues": ["parental", "agnatic", "maternal", "agnate"]}, {"answer": "pathetic", "hint": "synonyms for pathetic", "clues": ["poor", "wretched", "silly", "misfortunate", "ridiculous", "pitiable", "piteous", "miserable", "pitiful", "hapless", "pathetic"]}, {"answer": "pathless", "hint": "synonyms for pathless", "clues": ["untrod", "untracked", "trackless", "roadless", "untrodden", "pathless"]}, {"answer": "patrician", "hint": "synonyms for patrician", "clues": ["blue", "gentle", "blue-blooded", "aristocratical", "patrician"]}, {"answer": "paying", "hint": "synonyms for paying", "clues": ["paid", "compensable", "gainful", "salaried", "stipendiary", "remunerative", "paying"]}, {"answer": "peachy", "hint": "synonyms for peachy", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "peachy-coloured", "not bad", "groovy", "nifty", "peachy"]}, {"answer": "peaked", "hint": "synonyms for peaked", "clues": ["indisposed", "under the weather", "unwell", "sickly", "poorly", "seedy", "ailing", "peaked"]}, {"answer": "pearlescent", "hint": "synonyms for pearlescent", "clues": ["nacreous", "opalescent", "opaline", "iridescent"]}, {"answer": "peckish", "hint": "synonyms for peckish", "clues": ["cranky", "pettish", "techy", "nettlesome", "petulant", "fractious", "irritable", "testy", "scratchy", "peevish", "peckish"]}, {"answer": "peculiar", "hint": "synonyms for peculiar", "clues": ["special", "odd", "queer", "singular", "funny", "curious", "particular", "rum", "rummy", "peculiar"]}, {"answer": "peeled", "hint": "synonyms for peeled", "clues": ["in the altogether", "in the buff", "stark naked", "naked as a jaybird", "raw", "in the raw", "bare-assed", "peeled"]}, {"answer": "peerless", "hint": "synonyms for peerless", "clues": ["one", "matchless", "unmatched", "unrivalled", "unmatchable", "one and only", "nonpareil", "peerless"]}, {"answer": "peeved", "hint": "synonyms for peeved", "clues": ["riled", "pissed off", "miffed", "nettled", "steamed", "stung", "pissed", "annoyed", "irritated", "peeved"]}, {"answer": "peevish", "hint": "synonyms for peevish", "clues": ["cranky", "pettish", "techy", "nettlesome", "petulant", "fractious", "irritable", "testy", "scratchy", "peckish", "peevish"]}, {"answer": "pellucid", "hint": "synonyms for pellucid", "clues": ["crystal clear", "lucid", "perspicuous", "crystalline", "luculent", "transparent", "limpid", "pellucid"]}, {"answer": "pendulous", "hint": "synonyms for pendulous", "clues": ["weeping", "drooping", "cernuous", "nodding", "pendulous"]}, {"answer": "penetrating", "hint": "synonyms for penetrating", "clues": ["discriminating", "keen", "knifelike", "sharp", "incisive", "penetrative", "acute", "piercing", "penetrating"]}, {"answer": "penetrative", "hint": "synonyms for penetrative", "clues": ["discriminating", "penetrating", "keen", "knifelike", "sharp", "incisive", "acute", "piercing", "penetrative"]}, {"answer": "penniless", "hint": "synonyms for penniless", "clues": ["in straitened circumstances", "penurious", "hard up", "impecunious", "pinched", "penniless"]}, {"answer": "penny-pinching", "hint": "synonyms for penny-pinching", "clues": ["near", "cheeseparing", "close", "skinny", "penny-pinching"]}, {"answer": "pensive", "hint": "synonyms for pensive", "clues": ["wistful", "pondering", "musing", "broody", "contemplative", "reflective", "meditative", "ruminative", "brooding", "pensive"]}, {"answer": "penurious", "hint": "synonyms for penurious", "clues": ["in straitened circumstances", "penniless", "hard up", "parsimonious", "impecunious", "pinched", "penurious"]}, {"answer": "peppy", "hint": "synonyms for peppy", "clues": ["zippy", "spirited", "bouncing", "bouncy", "peppy"]}, {"answer": "perceivable", "hint": "synonyms for perceivable", "clues": ["graspable", "intelligible", "apprehensible", "understandable", "perceivable"]}, {"answer": "peregrine", "hint": "synonyms for peregrine", "clues": ["wandering", "roving", "nomadic", "mobile", "peregrine"]}, {"answer": "peremptory", "hint": "synonyms for peremptory", "clues": ["dominating", "magisterial", "high-and-mighty", "bossy", "autocratic", "peremptory"]}, {"answer": "perfect", "hint": "synonyms for perfect", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "pure", "everlasting", "arrant", "unadulterated", "complete", "perfect"]}, {"answer": "perfervid", "hint": "synonyms for perfervid", "clues": ["ardent", "fiery", "torrid", "impassioned", "fervid", "fervent", "perfervid"]}, {"answer": "perfumed", "hint": "synonyms for perfumed", "clues": ["sweet", "sweet-smelling", "sweet-scented", "odorous", "odoriferous", "scented", "perfumed"]}, {"answer": "perfunctory", "hint": "synonyms for perfunctory", "clues": ["casual", "passing", "cursory", "pro forma", "perfunctory"]}, {"answer": "pernicious", "hint": "synonyms for pernicious", "clues": ["deadly", "insidious", "pestilent", "subtle", "baneful", "pernicious"]}, {"answer": "perpetual", "hint": "synonyms for perpetual", "clues": ["ageless", "eternal", "unending", "eonian", "constant", "unremitting", "incessant", "never-ending", "everlasting", "ceaseless", "unceasing", "perpetual"]}, {"answer": "persistent", "hint": "synonyms for persistent", "clues": ["lasting", "relentless", "haunting", "unrelenting", "dogged", "dour", "tenacious", "pertinacious", "unyielding", "persistent"]}, {"answer": "persnickety", "hint": "synonyms for persnickety", "clues": ["snooty", "snotty", "uppish", "too big for one's breeches", "bigheaded", "snot-nosed", "pernickety", "stuck-up"]}, {"answer": "perspicacious", "hint": "synonyms for perspicacious", "clues": ["clear-eyed", "clear-sighted", "sagacious", "sapient", "perspicacious"]}, {"answer": "perspicuous", "hint": "synonyms for perspicuous", "clues": ["luculent", "pellucid", "crystal clear", "lucid", "limpid", "perspicuous"]}, {"answer": "pertinacious", "hint": "synonyms for pertinacious", "clues": ["unyielding", "dour", "tenacious", "persistent", "dogged", "pertinacious"]}, {"answer": "perturbing", "hint": "synonyms for perturbing", "clues": ["distressing", "disturbing", "worrisome", "troubling", "distressful", "worrying", "perturbing"]}, {"answer": "perverse", "hint": "synonyms for perverse", "clues": ["contrary", "depraved", "wayward", "obstinate", "reprobate", "perverted", "perverse"]}, {"answer": "perverted", "hint": "synonyms for perverted", "clues": ["kinky", "twisted", "depraved", "distorted", "misrepresented", "perverse", "reprobate", "perverted"]}, {"answer": "pesky", "hint": "synonyms for pesky", "clues": ["nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "irritating", "bothersome", "vexatious", "pestering", "pestiferous", "pesky"]}, {"answer": "pestered", "hint": "synonyms for pestered", "clues": ["harassed", "annoyed", "harried", "vexed", "pestered"]}, {"answer": "pestering", "hint": "synonyms for pestering", "clues": ["nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "pesky", "irritating", "bothersome", "vexatious", "pestiferous", "pestering"]}, {"answer": "pestiferous", "hint": "synonyms for pestiferous", "clues": ["nettlesome", "galling", "teasing", "plaguey", "pestering", "perversive", "pestilential", "annoying", "corruptive", "vexing", "dirty", "pesky", "irritating", "bothersome", "vexatious", "pestiferous"]}, {"answer": "pestilent", "hint": "synonyms for pestilent", "clues": ["deadly", "plaguey", "baneful", "pernicious", "pestiferous", "pestilential"]}, {"answer": "pet", "hint": "synonyms for pet", "clues": ["preferent", "favourite", "favored", "preferred", "best-loved", "pet"]}, {"answer": "petite", "hint": "synonyms for petite", "clues": ["lilliputian", "flyspeck", "diminutive", "midget", "bantam", "tiny", "petite"]}, {"answer": "pettish", "hint": "synonyms for pettish", "clues": ["cranky", "techy", "nettlesome", "petulant", "fractious", "irritable", "testy", "scratchy", "peckish", "peevish", "pettish"]}, {"answer": "petty", "hint": "synonyms for petty", "clues": ["lilliputian", "secondary", "piddling", "small-minded", "picayune", "niggling", "little", "lower-ranking", "junior-grade", "trivial", "subaltern", "footling", "lowly", "piffling", "petty"]}, {"answer": "petulant", "hint": "synonyms for petulant", "clues": ["cranky", "pettish", "techy", "nettlesome", "fractious", "irritable", "testy", "scratchy", "peckish", "peevish", "petulant"]}, {"answer": "phantasmal", "hint": "synonyms for phantasmal", "clues": ["spiritual", "ghostly", "apparitional", "ghostlike", "spectral", "phantasmal"]}, {"answer": "pharisaic", "hint": "synonyms for pharisaic", "clues": ["self-righteous", "pietistic", "holier-than-thou", "sanctimonious", "pharisaical"]}, {"answer": "pharisaical", "hint": "synonyms for pharisaical", "clues": ["pietistic", "holier-than-thou", "sanctimonious", "pharisaic", "self-righteous"]}, {"answer": "phoney", "hint": "synonyms for phoney", "clues": ["bastard", "phony", "fake", "bogus"]}, {"answer": "phony", "hint": "synonyms for phony", "clues": ["bastard", "fake", "phoney", "bogus"]}, {"answer": "picayune", "hint": "synonyms for picayune", "clues": ["lilliputian", "piddling", "petty", "niggling", "little", "trivial", "footling", "piffling", "picayune"]}, {"answer": "picky", "hint": "synonyms for picky", "clues": ["finical", "fussy", "particular", "finicky", "picky"]}, {"answer": "pictorial", "hint": "synonyms for pictorial", "clues": ["graphic", "pictural", "vivid", "lifelike", "pictorial"]}, {"answer": "pictured", "hint": "synonyms for pictured", "clues": ["visualized", "depicted", "envisioned", "portrayed", "pictured"]}, {"answer": "piddling", "hint": "synonyms for piddling", "clues": ["lilliputian", "fiddling", "petty", "picayune", "niggling", "little", "trivial", "footling", "piffling"]}, {"answer": "pie-eyed", "hint": "synonyms for pie-eyed", "clues": ["tight", "besotted", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "pie-eyed"]}, {"answer": "piebald", "hint": "synonyms for piebald", "clues": ["multicolor", "pied", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "motley", "piebald"]}, {"answer": "piecemeal", "hint": "synonyms for piecemeal", "clues": ["step-by-step", "in small stages", "stepwise", "bit-by-bit", "piecemeal"]}, {"answer": "pied", "hint": "synonyms for pied", "clues": ["multicolor", "varicolored", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley", "pied"]}, {"answer": "piercing", "hint": "synonyms for piercing", "clues": ["discriminating", "penetrating", "keen", "knifelike", "lancinating", "sharp", "lancinate", "incisive", "penetrative", "acute", "stabbing", "cutting", "piercing"]}, {"answer": "pietistic", "hint": "synonyms for pietistic", "clues": ["self-righteous", "pharisaical", "holier-than-thou", "sanctimonious", "pietistical"]}, {"answer": "pietistical", "hint": "synonyms for pietistical", "clues": ["pietistic", "pharisaical", "holier-than-thou", "sanctimonious", "self-righteous"]}, {"answer": "piffling", "hint": "synonyms for piffling", "clues": ["lilliputian", "piddling", "petty", "picayune", "niggling", "little", "trivial", "footling", "piffling"]}, {"answer": "piggish", "hint": "synonyms for piggish", "clues": ["piggy", "hoggish", "swinish", "porcine", "piggish"]}, {"answer": "piggy", "hint": "synonyms for piggy", "clues": ["piggish", "hoggish", "swinish", "porcine", "piggy"]}, {"answer": "pillaged", "hint": "synonyms for pillaged", "clues": ["despoiled", "raped", "plundered", "ransacked", "ravaged", "looted", "sacked", "pillaged"]}, {"answer": "pinched", "hint": "synonyms for pinched", "clues": ["skeletal", "adenoidal", "bony", "gaunt", "emaciated", "impecunious", "wasted", "in straitened circumstances", "penniless", "haggard", "penurious", "nasal", "hard up", "cadaverous", "pinched"]}, {"answer": "pink-slipped", "hint": "synonyms for pink-slipped", "clues": ["discharged", "fired", "dismissed", "laid-off", "pink-slipped"]}, {"answer": "pint-size", "hint": "synonyms for pint-size", "clues": ["pint-sized", "sawed-off", "runty", "sawn-off"]}, {"answer": "pint-sized", "hint": "synonyms for pint-sized", "clues": ["sawed-off", "runty", "sawn-off", "pint-size"]}, {"answer": "piquant", "hint": "synonyms for piquant", "clues": ["spicy", "savory", "salty", "zesty", "engaging", "piquant"]}, {"answer": "pissed", "hint": "synonyms for pissed", "clues": ["tight", "besotted", "pissed off", "miffed", "roiled", "pie-eyed", "fuddled", "crocked", "nettled", "soaked", "soused", "wet", "sloshed", "slopped", "irritated", "sozzled", "blotto", "squiffy", "smashed", "plastered", "stiff", "cockeyed", "blind drunk", "loaded", "steamed", "peeved", "stung", "pixilated", "annoyed", "pissed"]}, {"answer": "pissed_off", "hint": "synonyms for pissed off", "clues": ["riled", "miffed", "nettled", "steamed", "peeved", "stung", "pissed", "annoyed", "irritated", "pissed off"]}, {"answer": "pitchy", "hint": "synonyms for pitchy", "clues": ["resiny", "tarry", "resinous", "sooty", "coal-black", "jet-black", "jet", "pitchy"]}, {"answer": "piteous", "hint": "synonyms for piteous", "clues": ["poor", "wretched", "misfortunate", "pathetic", "pitiable", "miserable", "pitiful", "hapless", "piteous"]}, {"answer": "pitiable", "hint": "synonyms for pitiable", "clues": ["poor", "wretched", "misfortunate", "pathetic", "hapless", "piteous", "miserable", "pitiful", "pitiable"]}, {"answer": "pitiful", "hint": "synonyms for pitiful", "clues": ["deplorable", "distressing", "poor", "wretched", "sorry", "misfortunate", "pathetic", "pitiable", "sad", "lamentable", "piteous", "miserable", "hapless", "pitiful"]}, {"answer": "pitiless", "hint": "synonyms for pitiless", "clues": ["unkind", "remorseless", "ruthless", "unpitying", "pitiless"]}, {"answer": "pitted", "hint": "synonyms for pitted", "clues": ["cavitied", "alveolate", "honeycombed", "pitted"]}, {"answer": "pixilated", "hint": "synonyms for pixilated", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "impish", "crocked", "soaked", "wicked", "pissed", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "mischievous", "puckish", "plastered", "smashed", "implike", "blind drunk", "loaded", "cockeyed", "prankish", "arch", "stiff", "pixilated"]}, {"answer": "placid", "hint": "synonyms for placid", "clues": ["smooth", "even-tempered", "quiet", "equable", "unruffled", "still", "tranquil", "good-tempered", "placid"]}, {"answer": "plaguey", "hint": "synonyms for plaguey", "clues": ["pestilent", "nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "pesky", "irritating", "bothersome", "vexatious", "pestering", "pestiferous"]}, {"answer": "plaguy", "hint": "synonyms for plaguy", "clues": ["nettlesome", "galling", "annoying", "teasing", "vexing", "pesky", "irritating", "bothersome", "plaguey", "vexatious", "pestering", "pestiferous"]}, {"answer": "plain", "hint": "synonyms for plain", "clues": ["homely", "apparent", "unpatterned", "manifest", "evident", "unmixed", "unornamented", "bare", "spare", "unmistakable", "unembellished", "unvarnished", "sheer", "unmingled", "patent", "plain"]}, {"answer": "plainspoken", "hint": "synonyms for plainspoken", "clues": ["outspoken", "frank", "candid", "free-spoken", "straight-from-the-shoulder", "blunt", "forthright", "point-blank", "plainspoken"]}, {"answer": "planetary", "hint": "synonyms for planetary", "clues": ["worldwide", "wandering", "global", "planetal", "erratic", "world", "terrestrial", "planetary"]}, {"answer": "planless", "hint": "synonyms for planless", "clues": ["directionless", "aimless", "rudderless", "adrift", "afloat", "undirected", "planless"]}, {"answer": "planted", "hint": "synonyms for planted", "clues": ["deep-rooted", "implanted", "ingrained", "deep-seated"]}, {"answer": "plastered", "hint": "synonyms for plastered", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "sealed", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "cockeyed", "blind drunk", "loaded", "pixilated", "slicked", "pissed", "stiff", "plastered"]}, {"answer": "plastic", "hint": "synonyms for plastic", "clues": ["moldable", "fictile", "formative", "pliant", "shaping", "plastic"]}, {"answer": "platyrrhinian", "hint": "synonyms for platyrrhinian", "clues": ["platyrhine", "platyrhinian", "broadnosed", "platyrrhinic"]}, {"answer": "plausive", "hint": "synonyms for plausive", "clues": ["approbative", "approbatory", "approving", "affirmative", "plausive"]}, {"answer": "played_out", "hint": "synonyms for played out", "clues": ["dog-tired", "worn out", "fatigued", "fagged", "exhausted", "washed-out", "spent", "played out"]}, {"answer": "pleasant-tasting", "hint": "synonyms for pleasant-tasting", "clues": ["delicious", "delectable", "scrumptious", "luscious", "toothsome", "yummy", "pleasant-tasting"]}, {"answer": "plenteous", "hint": "synonyms for plenteous", "clues": ["plentiful", "rich", "ample", "copious", "plenteous"]}, {"answer": "plentiful", "hint": "synonyms for plentiful", "clues": ["plenteous", "rich", "bountiful", "ample", "copious", "plentiful"]}, {"answer": "pliable", "hint": "synonyms for pliable", "clues": ["tractile", "ductile", "flexible", "bendable", "pliant", "waxy", "tensile", "fictile", "malleable", "elastic", "pliable"]}, {"answer": "pliant", "hint": "synonyms for pliant", "clues": ["tractile", "plastic", "ductile", "flexible", "bendable", "waxy", "tensile", "pliable", "malleable", "pliant"]}, {"answer": "plumed", "hint": "synonyms for plumed", "clues": ["plumose", "crested", "plumy", "plumate", "plumed"]}, {"answer": "plumy", "hint": "synonyms for plumy", "clues": ["feathery", "plumed", "feathered", "plumelike", "plumy"]}, {"answer": "plush", "hint": "synonyms for plush", "clues": ["plushy", "lucullan", "lush", "lavish"]}, {"answer": "plushy", "hint": "synonyms for plushy", "clues": ["lucullan", "plush-like", "lavish", "plush"]}, {"answer": "pocket-size", "hint": "synonyms for pocket-size", "clues": ["pocket-sized", "small-scale", "small", "modest", "pocketable", "minor"]}, {"answer": "pocket-sized", "hint": "synonyms for pocket-sized", "clues": ["pocket-size", "small-scale", "small", "modest", "pocketable", "minor"]}, {"answer": "podgy", "hint": "synonyms for podgy", "clues": ["pudgy", "tubby", "roly-poly", "dumpy", "podgy"]}, {"answer": "point-blank", "hint": "synonyms for point-blank", "clues": ["outspoken", "frank", "candid", "plainspoken", "free-spoken", "straight-from-the-shoulder", "blunt", "forthright", "point-blank"]}, {"answer": "pointless", "hint": "synonyms for pointless", "clues": ["wasted", "purposeless", "unpointed", "superfluous", "otiose", "senseless", "pointless"]}, {"answer": "poised", "hint": "synonyms for poised", "clues": ["collected", "self-collected", "equanimous", "self-contained", "self-possessed", "poised"]}, {"answer": "poker-faced", "hint": "synonyms for poker-faced", "clues": ["deadpan", "expressionless", "unexpressive", "impassive", "poker-faced"]}, {"answer": "pokey", "hint": "synonyms for pokey", "clues": ["laggard", "one-horse", "dilatory", "poky", "jerkwater"]}, {"answer": "poky", "hint": "synonyms for poky", "clues": ["laggard", "pokey", "one-horse", "dilatory", "jerkwater"]}, {"answer": "polar", "hint": "synonyms for polar", "clues": ["arctic", "opposite", "glacial", "icy", "frigid", "pivotal", "gelid", "diametrical", "polar"]}, {"answer": "polished", "hint": "synonyms for polished", "clues": ["refined", "milled", "urbane", "dressed", "svelte", "polished"]}, {"answer": "polite", "hint": "synonyms for polite", "clues": ["civilised", "civil", "cultivated", "cultured", "genteel", "polite"]}, {"answer": "pompous", "hint": "synonyms for pompous", "clues": ["ceremonious", "overblown", "portentous", "grandiloquent", "pontifical", "pompous"]}, {"answer": "pondering", "hint": "synonyms for pondering", "clues": ["musing", "broody", "contemplative", "reflective", "meditative", "pensive", "ruminative", "brooding", "pondering"]}, {"answer": "pontifical", "hint": "synonyms for pontifical", "clues": ["apostolical", "papal", "grandiloquent", "overblown", "portentous", "pompous", "episcopal", "pontifical"]}, {"answer": "poor", "hint": "synonyms for poor", "clues": ["wretched", "misfortunate", "pathetic", "pitiable", "piteous", "miserable", "pitiful", "inadequate", "short", "hapless", "poor"]}, {"answer": "poorly", "hint": "synonyms for poorly", "clues": ["peaked", "indisposed", "under the weather", "unwell", "sickly", "seedy", "ailing", "poorly"]}, {"answer": "porcine", "hint": "synonyms for porcine", "clues": ["piggy", "hoggish", "piggish", "gross", "swinish", "porcine"]}, {"answer": "portentous", "hint": "synonyms for portentous", "clues": ["pompous", "pontifical", "overblown", "foreboding", "fateful", "grandiloquent", "prodigious", "portentous"]}, {"answer": "positive", "hint": "synonyms for positive", "clues": ["positively charged", "incontrovertible", "electropositive", "overconfident", "positivist", "prescribed", "cocksure", "confident", "confirming", "irrefutable", "plus", "convinced", "positive"]}, {"answer": "possessed", "hint": "synonyms for possessed", "clues": ["obsessed", "amuck", "amok", "demoniac", "berserk", "possessed"]}, {"answer": "potent", "hint": "synonyms for potent", "clues": ["strong", "stiff", "virile", "powerful", "potent"]}, {"answer": "potty", "hint": "synonyms for potty", "clues": ["taken with", "soft on", "tiddly", "tipsy", "in love", "enamored", "smitten", "infatuated", "potty"]}, {"answer": "poverty-stricken", "hint": "synonyms for poverty-stricken", "clues": ["indigent", "destitute", "impoverished", "necessitous", "needy", "poverty-stricken"]}, {"answer": "powdered", "hint": "synonyms for powdered", "clues": ["fine-grained", "powdery", "pulverized", "small-grained", "powdered"]}, {"answer": "powdery", "hint": "synonyms for powdery", "clues": ["fine-grained", "pulverized", "powdered", "small-grained", "powdery"]}, {"answer": "powerful", "hint": "synonyms for powerful", "clues": ["potent", "brawny", "herculean", "sinewy", "muscular", "hefty", "knock-down", "powerful"]}, {"answer": "practicable", "hint": "synonyms for practicable", "clues": ["workable", "viable", "feasible", "executable", "operable", "practicable"]}, {"answer": "practical", "hint": "synonyms for practical", "clues": ["hardheaded", "hard-nosed", "pragmatic", "virtual", "practical"]}, {"answer": "practiced", "hint": "synonyms for practiced", "clues": ["good", "skillful", "proficient", "expert", "adept", "practised"]}, {"answer": "pragmatic", "hint": "synonyms for pragmatic", "clues": ["practical", "hardheaded", "hard-nosed", "pragmatical", "matter-of-fact"]}, {"answer": "prankish", "hint": "synonyms for prankish", "clues": ["mischievous", "puckish", "impish", "pixilated", "arch", "implike", "wicked", "prankish"]}, {"answer": "precarious", "hint": "synonyms for precarious", "clues": ["perilous", "parlous", "touch-and-go", "unstable", "shaky", "precarious"]}, {"answer": "precious", "hint": "synonyms for precious", "clues": ["cherished", "valued", "treasured", "wanted", "cute", "precious"]}, {"answer": "precipitant", "hint": "synonyms for precipitant", "clues": ["overhasty", "precipitate", "precipitous", "hasty"]}, {"answer": "precipitate", "hint": "synonyms for precipitate", "clues": ["overhasty", "precipitant", "precipitous", "hasty"]}, {"answer": "precipitous", "hint": "synonyms for precipitous", "clues": ["overhasty", "sharp", "precipitant", "hasty", "abrupt", "precipitous"]}, {"answer": "predatory", "hint": "synonyms for predatory", "clues": ["vulturine", "vulturous", "raptorial", "predaceous", "marauding", "raiding", "ravening", "rapacious", "predatory"]}, {"answer": "predominant", "hint": "synonyms for predominant", "clues": ["overriding", "prevalent", "dominant", "paramount", "prevailing", "predominate", "preponderating", "preponderant", "rife"]}, {"answer": "predominate", "hint": "synonyms for predominate", "clues": ["overriding", "preponderating", "predominant", "preponderant", "paramount"]}, {"answer": "preferent", "hint": "synonyms for preferent", "clues": ["favourite", "favored", "preferred", "pet", "best-loved", "preferent"]}, {"answer": "preferred", "hint": "synonyms for preferred", "clues": ["preferent", "favourite", "preferable", "favored", "pet", "best-loved", "preferred"]}, {"answer": "prehensile", "hint": "synonyms for prehensile", "clues": ["avaricious", "greedy", "grabby", "covetous", "grasping", "prehensile"]}, {"answer": "preoccupied", "hint": "synonyms for preoccupied", "clues": ["obsessed", "bemused", "haunted", "taken up", "lost", "deep in thought", "preoccupied"]}, {"answer": "preponderant", "hint": "synonyms for preponderant", "clues": ["overriding", "preponderating", "predominant", "paramount", "preponderant"]}, {"answer": "preponderating", "hint": "synonyms for preponderating", "clues": ["overriding", "predominant", "preponderant", "paramount", "preponderating"]}, {"answer": "preposterous", "hint": "synonyms for preposterous", "clues": ["idiotic", "ridiculous", "cockeyed", "absurd", "nonsensical", "ludicrous", "derisory", "laughable", "preposterous"]}, {"answer": "prescribed", "hint": "synonyms for prescribed", "clues": ["positive", "decreed", "official", "ordained", "appointed", "prescribed"]}, {"answer": "pretended", "hint": "synonyms for pretended", "clues": ["fictive", "false", "put on", "sham", "fictitious", "assumed", "pretended"]}, {"answer": "preternatural", "hint": "synonyms for preternatural", "clues": ["nonnatural", "otherworldly", "uncanny", "transcendental", "preternatural"]}, {"answer": "prevailing", "hint": "synonyms for prevailing", "clues": ["dominant", "rife", "predominant", "prevalent", "prevailing"]}, {"answer": "prevalent", "hint": "synonyms for prevalent", "clues": ["dominant", "prevailing", "predominant", "rife", "prevalent"]}, {"answer": "previous", "hint": "synonyms for previous", "clues": ["old", "premature", "former", "late", "previous"]}, {"answer": "pricey", "hint": "synonyms for pricey", "clues": ["pricy", "dear", "high-priced", "costly"]}, {"answer": "prickly", "hint": "synonyms for prickly", "clues": ["bristly", "barbed", "bristled", "burred", "setose", "briery", "splenetic", "briary", "barbellate", "setaceous", "burry", "spiny", "thorny", "waspish", "prickly"]}, {"answer": "pricy", "hint": "synonyms for pricy", "clues": ["pricey", "dear", "high-priced", "costly"]}, {"answer": "prideful", "hint": "synonyms for prideful", "clues": ["swaggering", "rejoicing", "triumphant", "triumphal", "exulting", "imperious", "sniffy", "jubilant", "lordly", "overbearing", "haughty", "supercilious", "disdainful", "exultant", "prideful"]}, {"answer": "priestly", "hint": "synonyms for priestly", "clues": ["hieratic", "sacerdotal", "priestlike", "priestly"]}, {"answer": "priggish", "hint": "synonyms for priggish", "clues": ["victorian", "prissy", "straight-laced", "prudish", "puritanical", "square-toed", "prim", "priggish"]}, {"answer": "prim", "hint": "synonyms for prim", "clues": ["victorian", "prissy", "straight-laced", "prudish", "twee", "dainty", "puritanical", "mincing", "square-toed", "priggish", "niminy-piminy", "prim"]}, {"answer": "prima", "hint": "synonyms for prima", "clues": ["leading", "stellar", "starring", "star", "prima"]}, {"answer": "primaeval", "hint": "synonyms for primaeval", "clues": ["aboriginal", "primal", "primordial", "primaeval"]}, {"answer": "primal", "hint": "synonyms for primal", "clues": ["fundamental", "aboriginal", "primeval", "key", "central", "primordial", "cardinal"]}, {"answer": "primary", "hint": "synonyms for primary", "clues": ["chief", "principal", "elementary", "basal", "master", "main", "elemental", "primary"]}, {"answer": "prime", "hint": "synonyms for prime", "clues": ["premier", "select", "choice", "quality", "prize", "meridian", "prime"]}, {"answer": "primeval", "hint": "synonyms for primeval", "clues": ["aboriginal", "primal", "primaeval", "primordial"]}, {"answer": "primitive", "hint": "synonyms for primitive", "clues": ["crude", "naive", "archaic", "primitive"]}, {"answer": "primordial", "hint": "synonyms for primordial", "clues": ["aboriginal", "primal", "primaeval", "primordial"]}, {"answer": "princely", "hint": "synonyms for princely", "clues": ["deluxe", "sumptuous", "luxurious", "grand", "opulent", "gilded", "princely"]}, {"answer": "principal", "hint": "synonyms for principal", "clues": ["chief", "primary", "main", "master", "principal"]}, {"answer": "prissy", "hint": "synonyms for prissy", "clues": ["victorian", "straight-laced", "prudish", "dainty", "nice", "puritanical", "squeamish", "square-toed", "priggish", "prim", "overnice", "prissy"]}, {"answer": "prize", "hint": "synonyms for prize", "clues": ["quality", "prime", "choice", "select", "prize"]}, {"answer": "problematic", "hint": "synonyms for problematic", "clues": ["problematical", "tough", "knotty", "elusive", "debatable", "baffling"]}, {"answer": "problematical", "hint": "synonyms for problematical", "clues": ["problematic", "tough", "knotty", "elusive", "debatable", "baffling"]}, {"answer": "prodigious", "hint": "synonyms for prodigious", "clues": ["colossal", "portentous", "stupendous", "olympian", "exceeding", "surpassing", "exceptional", "prodigious"]}, {"answer": "productive", "hint": "synonyms for productive", "clues": ["fertile", "rich", "fat", "generative", "productive"]}, {"answer": "profane", "hint": "synonyms for profane", "clues": ["blue", "blasphemous", "secular", "unsanctified", "unconsecrated", "sacrilegious", "profane"]}, {"answer": "proficient", "hint": "synonyms for proficient", "clues": ["good", "skillful", "expert", "adept", "practiced", "technical", "proficient"]}, {"answer": "profligate", "hint": "synonyms for profligate", "clues": ["libertine", "spendthrift", "degenerate", "dissipated", "fast", "dissolute", "degraded", "prodigal", "riotous", "extravagant", "debauched", "profligate"]}, {"answer": "profound", "hint": "synonyms for profound", "clues": ["fundamental", "wakeless", "unfathomed", "unsounded", "unplumbed", "sound", "heavy", "profound"]}, {"answer": "profuse", "hint": "synonyms for profuse", "clues": ["exuberant", "lush", "luxuriant", "riotous", "profuse"]}, {"answer": "prohibited", "hint": "synonyms for prohibited", "clues": ["tabu", "verboten", "banned", "proscribed", "forbidden", "out", "taboo", "prohibited"]}, {"answer": "projected", "hint": "synonyms for projected", "clues": ["relieved", "projecting", "sticking out", "sticking", "jutting", "protruding", "projected"]}, {"answer": "projecting", "hint": "synonyms for projecting", "clues": ["relieved", "sticking out", "sticking", "projected", "jutting", "protruding", "projecting"]}, {"answer": "prolate", "hint": "synonyms for prolate", "clues": ["oval", "elliptic", "egg-shaped", "oviform", "watermelon-shaped", "oval-shaped", "ovoid", "ovate", "prolate"]}, {"answer": "prolonged", "hint": "synonyms for prolonged", "clues": ["elongated", "protracted", "drawn-out", "lengthened", "extended", "lengthy", "prolonged"]}, {"answer": "prominent", "hint": "synonyms for prominent", "clues": ["striking", "outstanding", "big", "spectacular", "salient", "large", "prominent"]}, {"answer": "promiscuous", "hint": "synonyms for promiscuous", "clues": ["wanton", "light", "sluttish", "loose", "easy", "promiscuous"]}, {"answer": "pronged", "hint": "synonyms for pronged", "clues": ["biramous", "fork-like", "bifurcate", "forficate", "tined", "branched", "forked", "prongy", "pronged"]}, {"answer": "prongy", "hint": "synonyms for prongy", "clues": ["branched", "biramous", "fork-like", "forked", "bifurcate", "forficate", "pronged", "prongy"]}, {"answer": "prophylactic", "hint": "synonyms for prophylactic", "clues": ["preventive", "cautionary", "contraceptive", "antifertility", "prophylactic"]}, {"answer": "prosaic", "hint": "synonyms for prosaic", "clues": ["prosy", "commonplace", "earthbound", "humdrum", "matter-of-fact", "unglamorous", "pedestrian", "prosaic"]}, {"answer": "proscribed", "hint": "synonyms for proscribed", "clues": ["tabu", "verboten", "forbidden", "out", "taboo", "prohibited", "proscribed"]}, {"answer": "prospering", "hint": "synonyms for prospering", "clues": ["thriving", "flourishing", "prosperous", "booming", "roaring", "palmy", "prospering"]}, {"answer": "prosperous", "hint": "synonyms for prosperous", "clues": ["thriving", "halcyon", "prospering", "comfortable", "booming", "favourable", "flourishing", "well-fixed", "golden", "well-to-do", "well-situated", "roaring", "lucky", "well-heeled", "well-off", "easy", "palmy", "prosperous"]}, {"answer": "prospicient", "hint": "synonyms for prospicient", "clues": ["farsighted", "foresightful", "long", "longsighted", "farseeing", "prospicient"]}, {"answer": "protracted", "hint": "synonyms for protracted", "clues": ["extended", "prolonged", "drawn-out", "lengthy", "protracted"]}, {"answer": "protruding", "hint": "synonyms for protruding", "clues": ["relieved", "projecting", "sticking out", "sticking", "projected", "jutting", "protruding"]}, {"answer": "protuberant", "hint": "synonyms for protuberant", "clues": ["bulging", "bellied", "bulbous", "bulgy", "bellying", "protuberant"]}, {"answer": "prudish", "hint": "synonyms for prudish", "clues": ["victorian", "prissy", "straight-laced", "puritanical", "square-toed", "priggish", "prim", "prudish"]}, {"answer": "puckish", "hint": "synonyms for puckish", "clues": ["prankish", "mischievous", "impish", "pixilated", "arch", "implike", "wicked", "puckish"]}, {"answer": "pudgy", "hint": "synonyms for pudgy", "clues": ["podgy", "tubby", "roly-poly", "dumpy", "pudgy"]}, {"answer": "puffy", "hint": "synonyms for puffy", "clues": ["bouffant", "gusty", "intumescent", "tumid", "turgid", "puffy"]}, {"answer": "pulverised", "hint": "synonyms for pulverised", "clues": ["fine-grained", "pulverized", "powdery", "powdered", "small-grained"]}, {"answer": "pulverized", "hint": "synonyms for pulverized", "clues": ["fine-grained", "powdery", "powdered", "pulverised", "small-grained"]}, {"answer": "pungent", "hint": "synonyms for pungent", "clues": ["acrid", "barbed", "nipping", "mordacious", "biting", "pungent"]}, {"answer": "punishing", "hint": "synonyms for punishing", "clues": ["laborious", "toilsome", "operose", "backbreaking", "grueling", "arduous", "hard", "heavy", "punishing"]}, {"answer": "punk", "hint": "synonyms for punk", "clues": ["crummy", "cheesy", "bum", "sleazy", "tinny", "cheap", "chintzy", "punk"]}, {"answer": "purblind", "hint": "synonyms for purblind", "clues": ["visually impaired", "near-blind", "visually challenged", "sand-blind", "obtuse", "dim-sighted", "purblind"]}, {"answer": "purchasable", "hint": "synonyms for purchasable", "clues": ["bribable", "corruptible", "venal", "dishonest", "for sale", "purchasable"]}, {"answer": "pure", "hint": "synonyms for pure", "clues": ["sodding", "staring", "thoroughgoing", "virtuous", "virgin", "saturated", "consummate", "gross", "vestal", "stark", "double-dyed", "utter", "perfect", "everlasting", "arrant", "unadulterated", "complete", "pure"]}, {"answer": "puritanical", "hint": "synonyms for puritanical", "clues": ["victorian", "prissy", "puritanic", "straight-laced", "prudish", "blue", "square-toed", "priggish", "prim"]}, {"answer": "purple", "hint": "synonyms for purple", "clues": ["majestic", "regal", "royal", "empurpled", "over-embellished", "violet", "imperial", "purplish", "purple"]}, {"answer": "purposeless", "hint": "synonyms for purposeless", "clues": ["wasted", "superfluous", "pointless", "otiose", "senseless", "purposeless"]}, {"answer": "put-upon", "hint": "synonyms for put-upon", "clues": ["exploited", "used", "victimised", "ill-used", "put-upon"]}, {"answer": "put_on", "hint": "synonyms for put on", "clues": ["pretended", "fictive", "false", "sham", "fictitious", "assumed", "put on"]}, {"answer": "puzzling", "hint": "synonyms for puzzling", "clues": ["enigmatical", "confusing", "perplexing", "puzzling"]}, {"answer": "quaggy", "hint": "synonyms for quaggy", "clues": ["swampy", "miry", "sloppy", "marshy", "squashy", "muddy", "soggy", "sloughy", "waterlogged", "mucky", "boggy", "quaggy"]}, {"answer": "qualified", "hint": "synonyms for qualified", "clues": ["dependant", "certified", "restricted", "qualified"]}, {"answer": "quality", "hint": "synonyms for quality", "clues": ["prize", "prime", "choice", "select", "quality"]}, {"answer": "queasy", "hint": "synonyms for queasy", "clues": ["nauseating", "uneasy", "offensive", "sick", "nervous", "unquiet", "sickening", "loathsome", "nauseated", "anxious", "sickish", "nauseous", "vile", "noisome", "queasy"]}, {"answer": "queer", "hint": "synonyms for queer", "clues": ["odd", "homophile", "singular", "peculiar", "funny", "curious", "gay", "rum", "rummy", "queer"]}, {"answer": "quenched", "hint": "synonyms for quenched", "clues": ["squelched", "slaked", "satisfied", "quelled", "quenched"]}, {"answer": "questioning", "hint": "synonyms for questioning", "clues": ["wondering", "skeptical", "quizzical", "doubting", "inquisitive", "speculative", "questioning"]}, {"answer": "quick", "hint": "synonyms for quick", "clues": ["flying", "prompt", "immediate", "fast", "speedy", "spry", "warm", "ready", "nimble", "agile", "straightaway", "quick"]}, {"answer": "quick-sighted", "hint": "synonyms for quick-sighted", "clues": ["keen-sighted", "lynx-eyed", "sharp-sighted", "argus-eyed", "sharp-eyed", "hawk-eyed", "quick-sighted"]}, {"answer": "quick-tempered", "hint": "synonyms for quick-tempered", "clues": ["irascible", "hot-tempered", "hotheaded", "choleric", "quick-tempered"]}, {"answer": "quiet", "hint": "synonyms for quiet", "clues": ["subdued", "placid", "unruffled", "still", "tranquil", "muted", "smooth", "hushed", "restrained", "quiet"]}, {"answer": "quirky", "hint": "synonyms for quirky", "clues": ["kinky", "way-out", "far-out", "offbeat", "quirky"]}, {"answer": "quondam", "hint": "synonyms for quondam", "clues": ["old", "one-time", "sometime", "former", "erstwhile", "quondam"]}, {"answer": "quotidian", "hint": "synonyms for quotidian", "clues": ["workaday", "routine", "mundane", "everyday", "unremarkable", "quotidian"]}, {"answer": "r.c.", "hint": "synonyms for r.c.", "clues": ["popish", "papistic", "romish", "r.c."]}, {"answer": "rabble-rousing", "hint": "synonyms for rabble-rousing", "clues": ["incendiary", "instigative", "inflammatory", "seditious", "incitive", "rabble-rousing"]}, {"answer": "racy", "hint": "synonyms for racy", "clues": ["rich", "gamy", "full-bodied", "robust", "risque", "blue", "lively", "juicy", "spicy", "naughty", "racy"]}, {"answer": "raddled", "hint": "synonyms for raddled", "clues": ["worn", "worn-out", "haggard", "careworn", "drawn", "raddled"]}, {"answer": "radiant", "hint": "synonyms for radiant", "clues": ["refulgent", "beaming", "beamy", "radiant"]}, {"answer": "radical", "hint": "synonyms for radical", "clues": ["basal", "extremist", "ultra", "revolutionary", "radical"]}, {"answer": "raffish", "hint": "synonyms for raffish", "clues": ["natty", "jaunty", "spruce", "spiffy", "dapper", "snappy", "devil-may-care", "rakish", "dashing", "raffish"]}, {"answer": "raging", "hint": "synonyms for raging", "clues": ["wild", "furious", "tempestuous", "hot", "angry", "raging"]}, {"answer": "rakish", "hint": "synonyms for rakish", "clues": ["raffish", "natty", "jaunty", "spruce", "spiffy", "dapper", "snappy", "devil-may-care", "dashing", "rakish"]}, {"answer": "ramate", "hint": "synonyms for ramate", "clues": ["branched", "branching", "ramous", "ramose", "ramate"]}, {"answer": "rambling", "hint": "synonyms for rambling", "clues": ["digressive", "wandering", "excursive", "straggling", "discursive", "winding", "meandering", "straggly", "sprawling", "rambling"]}, {"answer": "rambunctious", "hint": "synonyms for rambunctious", "clues": ["unruly", "robustious", "boisterous", "rambunctious"]}, {"answer": "ramose", "hint": "synonyms for ramose", "clues": ["branched", "branching", "ramous", "ramate", "ramose"]}, {"answer": "ramous", "hint": "synonyms for ramous", "clues": ["branched", "branching", "ramose", "ramate", "ramous"]}, {"answer": "ramshackle", "hint": "synonyms for ramshackle", "clues": ["dilapidated", "tatterdemalion", "derelict", "tumble-down", "broken-down", "bedraggled", "ramshackle"]}, {"answer": "randy", "hint": "synonyms for randy", "clues": ["ruttish", "turned on", "aroused", "horny", "steamy", "randy"]}, {"answer": "rank", "hint": "synonyms for rank", "clues": ["out-and-out", "gross", "downright", "crying", "right-down", "glaring", "egregious", "flagrant", "absolute", "sheer", "rank"]}, {"answer": "rapacious", "hint": "synonyms for rapacious", "clues": ["vulturine", "vulturous", "raptorial", "edacious", "ravenous", "wolfish", "ravening", "esurient", "predatory", "voracious", "rapacious"]}, {"answer": "raped", "hint": "synonyms for raped", "clues": ["ravaged", "pillaged", "despoiled", "sacked", "raped"]}, {"answer": "rapt", "hint": "synonyms for rapt", "clues": ["rhapsodic", "rapturous", "enraptured", "ecstatic", "rapt"]}, {"answer": "raptorial", "hint": "synonyms for raptorial", "clues": ["predatory", "vulturine", "vulturous", "ravening", "rapacious", "raptorial"]}, {"answer": "rapturous", "hint": "synonyms for rapturous", "clues": ["rhapsodic", "rapt", "enraptured", "ecstatic", "rapturous"]}, {"answer": "rarefied", "hint": "synonyms for rarefied", "clues": ["rarified", "idealistic", "noble-minded", "grand", "elevated", "high-flown", "exalted", "sublime", "lofty", "high-minded", "rare"]}, {"answer": "rarified", "hint": "synonyms for rarified", "clues": ["rarefied", "idealistic", "noble-minded", "grand", "elevated", "high-flown", "exalted", "sublime", "lofty", "high-minded", "rare"]}, {"answer": "rascally", "hint": "synonyms for rascally", "clues": ["roguish", "scoundrelly", "devilish", "blackguardly", "rascally"]}, {"answer": "rasping", "hint": "synonyms for rasping", "clues": ["rough", "gravelly", "grating", "scratchy", "raspy", "rasping"]}, {"answer": "raspy", "hint": "synonyms for raspy", "clues": ["rough", "rasping", "gravelly", "grating", "scratchy", "raspy"]}, {"answer": "rattling", "hint": "synonyms for rattling", "clues": ["marvellous", "howling", "wondrous", "grand", "zippy", "fantastic", "snappy", "brisk", "lively", "merry", "tremendous", "terrific", "spanking", "alert", "wonderful", "rattling"]}, {"answer": "raunchy", "hint": "synonyms for raunchy", "clues": ["grubby", "grimy", "dingy", "salacious", "grungy", "lewd", "obscene", "begrimed", "raunchy"]}, {"answer": "ravaged", "hint": "synonyms for ravaged", "clues": ["pillaged", "despoiled", "sacked", "raped", "ravaged"]}, {"answer": "ravening", "hint": "synonyms for ravening", "clues": ["vulturine", "vulturous", "raptorial", "edacious", "ravenous", "wolfish", "rapacious", "esurient", "predatory", "voracious", "ravening"]}, {"answer": "ravenous", "hint": "synonyms for ravenous", "clues": ["sharp-set", "edacious", "rapacious", "starved", "wolfish", "ravening", "esurient", "famished", "voracious", "ravenous"]}, {"answer": "raw", "hint": "synonyms for raw", "clues": ["new", "sore", "rude", "stark naked", "in the raw", "cutting", "tender", "bare-ass", "in the altogether", "unsanded", "naked", "sensitive", "in the buff", "peeled", "naked as a jaybird", "bleak", "natural", "raw"]}, {"answer": "real", "hint": "synonyms for real", "clues": ["substantial", "existent", "material", "tangible", "genuine", "actual", "veridical", "literal", "real"]}, {"answer": "realizable", "hint": "synonyms for realizable", "clues": ["manageable", "achievable", "accomplishable", "doable", "realizable"]}, {"answer": "reasonable", "hint": "synonyms for reasonable", "clues": ["fair", "sensible", "fairish", "sane", "reasonable"]}, {"answer": "reckless", "hint": "synonyms for reckless", "clues": ["heedless", "heady", "rash", "foolhardy", "reckless"]}, {"answer": "reclusive", "hint": "synonyms for reclusive", "clues": ["secluded", "cloistered", "withdrawn", "sequestered", "recluse"]}, {"answer": "red", "hint": "synonyms for red", "clues": ["cherry", "blood-red", "crimson", "violent", "red-faced", "ruby", "reddish", "cerise", "flushed", "ruby-red", "cherry-red", "scarlet", "reddened", "carmine", "ruddy", "red"]}, {"answer": "red-faced", "hint": "synonyms for red-faced", "clues": ["blushful", "red", "crimson", "reddened", "blushing", "flushed", "red-faced"]}, {"answer": "red-hot", "hint": "synonyms for red-hot", "clues": ["juicy", "voluptuous", "hot", "luscious", "sizzling", "blistering", "toothsome", "red-hot"]}, {"answer": "reddened", "hint": "synonyms for reddened", "clues": ["red", "crimson", "red-faced", "ablaze", "inflamed", "flushed", "reddened"]}, {"answer": "reddish", "hint": "synonyms for reddish", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "cerise", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy", "reddish"]}, {"answer": "redemptive", "hint": "synonyms for redemptive", "clues": ["redemptory", "saving", "redemptional", "redeeming", "redemptive"]}, {"answer": "redolent", "hint": "synonyms for redolent", "clues": ["evocative", "remindful", "resonant", "smelling", "reminiscent", "aromatic", "redolent"]}, {"answer": "redundant", "hint": "synonyms for redundant", "clues": ["supernumerary", "pleonastic", "excess", "supererogatory", "extra", "tautologic", "surplus", "superfluous", "spare", "redundant"]}, {"answer": "refined", "hint": "synonyms for refined", "clues": ["elegant", "processed", "urbane", "neat", "graceful", "svelte", "tasteful", "polished", "refined"]}, {"answer": "reflective", "hint": "synonyms for reflective", "clues": ["pondering", "musing", "broody", "contemplative", "meditative", "pensive", "ruminative", "brooding", "reflective"]}, {"answer": "refreshful", "hint": "synonyms for refreshful", "clues": ["brisk", "tonic", "fresh", "refreshing", "bracing", "refreshful"]}, {"answer": "refreshing", "hint": "synonyms for refreshing", "clues": ["brisk", "novel", "tonic", "fresh", "refreshful", "bracing", "refreshing"]}, {"answer": "refulgent", "hint": "synonyms for refulgent", "clues": ["effulgent", "radiant", "beaming", "beamy"]}, {"answer": "regal", "hint": "synonyms for regal", "clues": ["royal", "majestic", "purple", "imperial", "regal"]}, {"answer": "regular", "hint": "synonyms for regular", "clues": ["unconstipated", "veritable", "steady", "even", "regular"]}, {"answer": "rejoicing", "hint": "synonyms for rejoicing", "clues": ["jubilant", "triumphant", "prideful", "triumphal", "exulting", "exultant", "rejoicing"]}, {"answer": "relatiative", "hint": "synonyms for relatiative", "clues": ["vindicatory", "retributive", "retaliatory", "retributory", "relatiative"]}, {"answer": "relentless", "hint": "synonyms for relentless", "clues": ["unforgiving", "grim", "unappeasable", "inexorable", "unrelenting", "stern", "persistent", "relentless"]}, {"answer": "reliable", "hint": "synonyms for reliable", "clues": ["dependable", "authentic", "honest", "true", "reliable"]}, {"answer": "relieved", "hint": "synonyms for relieved", "clues": ["sticking", "protruding", "eased", "alleviated", "projecting", "sticking out", "projected", "jutting", "relieved"]}, {"answer": "remaining", "hint": "synonyms for remaining", "clues": ["left", "odd", "left over", "unexpended", "remaining"]}, {"answer": "remedial", "hint": "synonyms for remedial", "clues": ["curative", "therapeutic", "sanative", "alterative", "healing", "remedial"]}, {"answer": "remindful", "hint": "synonyms for remindful", "clues": ["resonant", "evocative", "redolent", "reminiscent", "remindful"]}, {"answer": "reminiscent", "hint": "synonyms for reminiscent", "clues": ["resonant", "evocative", "remindful", "redolent", "reminiscent"]}, {"answer": "remote", "hint": "synonyms for remote", "clues": ["outside", "distant", "outback", "removed", "remote"]}, {"answer": "remunerative", "hint": "synonyms for remunerative", "clues": ["compensable", "salaried", "stipendiary", "lucrative", "moneymaking", "paying", "remunerative"]}, {"answer": "renewing", "hint": "synonyms for renewing", "clues": ["revitalising", "restorative", "reviving", "renewing"]}, {"answer": "renowned", "hint": "synonyms for renowned", "clues": ["famed", "famous", "celebrated", "illustrious", "noted", "far-famed", "notable", "renowned"]}, {"answer": "repellant", "hint": "synonyms for repellant", "clues": ["repellent", "rebarbative", "yucky", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "disgusting", "skanky", "distasteful", "disgustful"]}, {"answer": "repellent", "hint": "synonyms for repellent", "clues": ["yucky", "rebarbative", "foul", "loathsome", "repelling", "revolting", "wicked", "repellant", "loathly", "disgusting", "resistant", "skanky", "distasteful", "disgustful"]}, {"answer": "repelling", "hint": "synonyms for repelling", "clues": ["repellent", "yucky", "foul", "loathsome", "revolting", "wicked", "loathly", "disgusting", "skanky", "distasteful", "disgustful", "repelling"]}, {"answer": "reprehensible", "hint": "synonyms for reprehensible", "clues": ["deplorable", "vicious", "criminal", "condemnable", "reprehensible"]}, {"answer": "repugnant", "hint": "synonyms for repugnant", "clues": ["abhorrent", "obscene", "repulsive", "detestable", "repugnant"]}, {"answer": "repulsive", "hint": "synonyms for repulsive", "clues": ["repugnant", "abhorrent", "obscene", "hideous", "detestable", "repulsive"]}, {"answer": "required", "hint": "synonyms for required", "clues": ["compulsory", "mandatory", "needful", "needed", "requisite", "required"]}, {"answer": "resilient", "hint": "synonyms for resilient", "clues": ["springy", "lively", "bouncy", "resilient"]}, {"answer": "resistant", "hint": "synonyms for resistant", "clues": ["insubordinate", "repellent", "tolerant", "resistive", "immune", "resistant"]}, {"answer": "resonant", "hint": "synonyms for resonant", "clues": ["reverberative", "resounding", "evocative", "remindful", "redolent", "reverberating", "resonating", "reminiscent", "resonant"]}, {"answer": "resonating", "hint": "synonyms for resonating", "clues": ["resonant", "reverberative", "resounding", "reverberating", "resonating"]}, {"answer": "resounding", "hint": "synonyms for resounding", "clues": ["resonant", "resonating", "reverberative", "reverberating", "resounding"]}, {"answer": "respectable", "hint": "synonyms for respectable", "clues": ["good", "healthy", "goodish", "sizable", "estimable", "hefty", "tidy", "honorable", "respectable"]}, {"answer": "restive", "hint": "synonyms for restive", "clues": ["high-strung", "highly strung", "nervy", "uptight", "overstrung", "edgy", "jittery", "jumpy", "restive"]}, {"answer": "restorative", "hint": "synonyms for restorative", "clues": ["revitalising", "renewing", "recuperative", "reviving", "restorative"]}, {"answer": "restrained", "hint": "synonyms for restrained", "clues": ["quiet", "unemotional", "moderate", "reticent", "guarded", "restrained"]}, {"answer": "restricting", "hint": "synonyms for restricting", "clues": ["confining", "constraining", "constrictive", "limiting", "restricting"]}, {"answer": "resultant", "hint": "synonyms for resultant", "clues": ["accompanying", "ensuant", "consequent", "attendant", "concomitant", "incidental", "sequent", "resultant"]}, {"answer": "retaliatory", "hint": "synonyms for retaliatory", "clues": ["vindicatory", "retributive", "relatiative", "retributory", "retaliatory"]}, {"answer": "reticent", "hint": "synonyms for reticent", "clues": ["unemotional", "retiring", "self-effacing", "untalkative", "restrained", "reticent"]}, {"answer": "retiring", "hint": "synonyms for retiring", "clues": ["unassuming", "self-effacing", "reticent", "past", "preceding", "retiring"]}, {"answer": "retributive", "hint": "synonyms for retributive", "clues": ["vindicatory", "retributory", "relatiative", "retaliatory", "retributive"]}, {"answer": "retributory", "hint": "synonyms for retributory", "clues": ["vindicatory", "retributive", "relatiative", "retaliatory", "retributory"]}, {"answer": "revelatory", "hint": "synonyms for revelatory", "clues": ["indicatory", "apocalyptical", "indicative", "significative", "suggestive", "revelatory"]}, {"answer": "reverberating", "hint": "synonyms for reverberating", "clues": ["resonant", "resonating", "resounding", "reverberative", "reverberating"]}, {"answer": "reverberative", "hint": "synonyms for reverberative", "clues": ["resonant", "resonating", "resounding", "reverberating", "reverberative"]}, {"answer": "revitalising", "hint": "synonyms for revitalising", "clues": ["renewing", "revitalizing", "reviving", "restorative"]}, {"answer": "revitalizing", "hint": "synonyms for revitalizing", "clues": ["renewing", "revitalising", "reviving", "restorative"]}, {"answer": "reviving", "hint": "synonyms for reviving", "clues": ["renewing", "revitalising", "restorative", "reviving"]}, {"answer": "revolting", "hint": "synonyms for revolting", "clues": ["repellent", "yucky", "foul", "loathsome", "repelling", "wicked", "loathly", "disgusting", "skanky", "distasteful", "disgustful", "revolting"]}, {"answer": "rhapsodic", "hint": "synonyms for rhapsodic", "clues": ["rapturous", "rapt", "enraptured", "ecstatic", "rhapsodic"]}, {"answer": "rheumatic", "hint": "synonyms for rheumatic", "clues": ["rheumatoid", "arthritic", "creaky", "rheumy", "rheumatic"]}, {"answer": "rheumatoid", "hint": "synonyms for rheumatoid", "clues": ["arthritic", "creaky", "rheumy", "rheumatic", "rheumatoid"]}, {"answer": "rheumy", "hint": "synonyms for rheumy", "clues": ["rheumatoid", "arthritic", "creaky", "rheumatic", "rheumy"]}, {"answer": "rich", "hint": "synonyms for rich", "clues": ["fertile", "full-bodied", "racy", "robust", "deep", "copious", "plenteous", "fat", "productive", "ample", "plentiful", "rich"]}, {"answer": "rickety", "hint": "synonyms for rickety", "clues": ["infirm", "weakly", "feeble", "wonky", "shaky", "debile", "sapless", "rachitic", "decrepit", "wobbly", "rickety"]}, {"answer": "ridiculous", "hint": "synonyms for ridiculous", "clues": ["silly", "idiotic", "pathetic", "cockeyed", "absurd", "nonsensical", "ludicrous", "derisory", "preposterous", "laughable", "farcical", "ridiculous"]}, {"answer": "rife", "hint": "synonyms for rife", "clues": ["overabundant", "predominant", "prevalent", "dominant", "prevailing", "plethoric", "rife"]}, {"answer": "right", "hint": "synonyms for right", "clues": ["good", "ripe", "veracious", "correct", "proper", "right-hand", "right"]}, {"answer": "right-down", "hint": "synonyms for right-down", "clues": ["absolute", "sheer", "rank", "out-and-out", "downright", "right-down"]}, {"answer": "rigid", "hint": "synonyms for rigid", "clues": ["fixed", "strict", "inflexible", "set", "stiff", "unbending", "rigid"]}, {"answer": "riled", "hint": "synonyms for riled", "clues": ["pissed off", "miffed", "roiled", "nettled", "steamed", "peeved", "stung", "pissed", "annoyed", "irritated"]}, {"answer": "ring-shaped", "hint": "synonyms for ring-shaped", "clues": ["annulated", "ringed", "doughnut-shaped", "annular", "circinate", "ring-shaped"]}, {"answer": "ringed", "hint": "synonyms for ringed", "clues": ["circinate", "annulated", "doughnut-shaped", "annular", "ring-shaped", "ringed"]}, {"answer": "riotous", "hint": "synonyms for riotous", "clues": ["libertine", "troubled", "tumultuous", "luxuriant", "turbulent", "degenerate", "dissipated", "fast", "dissolute", "profligate", "lush", "degraded", "disruptive", "profuse", "exuberant", "debauched", "riotous"]}, {"answer": "ripe", "hint": "synonyms for ripe", "clues": ["good", "right", "advanced", "mature", "ripe"]}, {"answer": "rippled", "hint": "synonyms for rippled", "clues": ["crinkled", "wavy", "wavelike", "ruffled", "crinkly", "rippled"]}, {"answer": "risible", "hint": "synonyms for risible", "clues": ["comical", "funny", "mirthful", "amusing", "comic", "laughable", "risible"]}, {"answer": "risky", "hint": "synonyms for risky", "clues": ["wild", "speculative", "high-risk", "hazardous", "bad", "risky"]}, {"answer": "risque", "hint": "synonyms for risque", "clues": ["blue", "juicy", "gamey", "spicy", "racy", "naughty", "risque"]}, {"answer": "riveting", "hint": "synonyms for riveting", "clues": ["absorbing", "engrossing", "fascinating", "gripping", "riveting"]}, {"answer": "roadless", "hint": "synonyms for roadless", "clues": ["untrod", "untracked", "trackless", "pathless", "untrodden", "roadless"]}, {"answer": "roaring", "hint": "synonyms for roaring", "clues": ["thriving", "prospering", "flourishing", "prosperous", "booming", "palmy", "roaring"]}, {"answer": "robed", "hint": "synonyms for robed", "clues": ["appareled", "habilimented", "garmented", "dressed", "garbed", "attired", "robed"]}, {"answer": "robotic", "hint": "synonyms for robotic", "clues": ["automatic", "robotlike", "automatonlike", "machinelike", "robotic"]}, {"answer": "robotlike", "hint": "synonyms for robotlike", "clues": ["automatic", "robotic", "automatonlike", "machinelike", "robotlike"]}, {"answer": "robustious", "hint": "synonyms for robustious", "clues": ["rambunctious", "unruly", "boisterous", "rumbustious"]}, {"answer": "rocky", "hint": "synonyms for rocky", "clues": ["rough", "jolty", "bouldered", "jolting", "bumpy", "stony", "bouldery", "jumpy", "rocky"]}, {"answer": "rod-shaped", "hint": "synonyms for rod-shaped", "clues": ["baculiform", "rodlike", "bacillary", "rod-shaped"]}, {"answer": "roguish", "hint": "synonyms for roguish", "clues": ["rascally", "scoundrelly", "devilish", "blackguardly", "roguish"]}, {"answer": "roiled", "hint": "synonyms for roiled", "clues": ["riled", "pissed off", "miffed", "turbulent", "churning", "nettled", "roiling", "steamed", "roily", "peeved", "stung", "pissed", "annoyed", "irritated"]}, {"answer": "roiling", "hint": "synonyms for roiling", "clues": ["churning", "roily", "roiled", "turbulent", "roiling"]}, {"answer": "roily", "hint": "synonyms for roily", "clues": ["churning", "roiled", "roiling", "turbulent", "roily"]}, {"answer": "rolled", "hint": "synonyms for rolled", "clues": ["rolling", "involute", "trilled", "furled", "rolled"]}, {"answer": "rollicking", "hint": "synonyms for rollicking", "clues": ["coltish", "sportive", "frolicsome", "frolicky", "rollicking"]}, {"answer": "roly-poly", "hint": "synonyms for roly-poly", "clues": ["pudgy", "podgy", "tubby", "dumpy", "roly-poly"]}, {"answer": "roman", "hint": "synonyms for roman", "clues": ["popish", "papistic", "romish", "roman"]}, {"answer": "roman_catholic", "hint": "synonyms for roman catholic", "clues": ["popish", "papistic", "romish", "roman catholic"]}, {"answer": "romanist", "hint": "synonyms for romanist", "clues": ["popish", "papistic", "romish", "romanist"]}, {"answer": "romantic", "hint": "synonyms for romantic", "clues": ["amatory", "quixotic", "wild-eyed", "romanticist", "amorous", "romantic"]}, {"answer": "rosy", "hint": "synonyms for rosy", "clues": ["blushful", "rosy-cheeked", "rose-colored", "fortunate", "flushed", "rosy"]}, {"answer": "rotten", "hint": "synonyms for rotten", "clues": ["decayed", "rotted", "shitty", "crappy", "stinky", "stinking", "icky", "lousy", "rotten"]}, {"answer": "rotund", "hint": "synonyms for rotund", "clues": ["orotund", "weighty", "round", "corpulent", "obese", "pear-shaped"]}, {"answer": "rough", "hint": "synonyms for rough", "clues": ["uncut", "fierce", "unsmooth", "approximate", "gravelly", "jolting", "harsh", "scratchy", "jumpy", "boisterous", "raspy", "jolty", "rasping", "bumpy", "crude", "pugnacious", "grating", "rocky", "rough"]}, {"answer": "rough-cut", "hint": "synonyms for rough-cut", "clues": ["common", "coarse", "uncouth", "vulgar", "roughhewn", "rough-cut"]}, {"answer": "roughshod", "hint": "synonyms for roughshod", "clues": ["cruel", "barbarous", "heavy-handed", "vicious", "savage", "brutal", "fell", "roughshod"]}, {"answer": "round", "hint": "synonyms for round", "clues": ["orotund", "pear-shaped", "circular", "round"]}, {"answer": "round-backed", "hint": "synonyms for round-backed", "clues": ["stooping", "stooped", "hunched", "crooked", "round-shouldered", "round-backed"]}, {"answer": "round-eyed", "hint": "synonyms for round-eyed", "clues": ["wide-eyed", "simple", "saucer-eyed", "childlike", "dewy-eyed", "round-eyed"]}, {"answer": "round-shouldered", "hint": "synonyms for round-shouldered", "clues": ["stooping", "stooped", "hunched", "crooked", "round-backed", "round-shouldered"]}, {"answer": "round_the_bend", "hint": "synonyms for round the bend", "clues": ["balmy", "loco", "loony", "haywire", "buggy", "barmy", "daft", "loopy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "bats", "cracked", "around the bend"]}, {"answer": "routine", "hint": "synonyms for routine", "clues": ["workaday", "mundane", "everyday", "unremarkable", "quotidian", "routine"]}, {"answer": "roving", "hint": "synonyms for roving", "clues": ["wandering", "peregrine", "nomadic", "mobile", "roving"]}, {"answer": "royal", "hint": "synonyms for royal", "clues": ["majestic", "regal", "purple", "imperial", "royal"]}, {"answer": "ruby", "hint": "synonyms for ruby", "clues": ["cherry", "blood-red", "crimson", "red", "reddish", "cerise", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy", "ruby"]}, {"answer": "ruby-red", "hint": "synonyms for ruby-red", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "reddish", "cerise", "cherry-red", "scarlet", "carmine", "ruddy", "ruby-red"]}, {"answer": "rudderless", "hint": "synonyms for rudderless", "clues": ["directionless", "aimless", "planless", "adrift", "afloat", "undirected", "rudderless"]}, {"answer": "ruddy", "hint": "synonyms for ruddy", "clues": ["cherry", "blood-red", "crimson", "red", "florid", "ruby", "rubicund", "reddish", "cerise", "sanguine", "ruby-red", "cherry-red", "scarlet", "carmine", "ruddy"]}, {"answer": "rude", "hint": "synonyms for rude", "clues": ["ill-bred", "uncivil", "ill-mannered", "crude", "underbred", "lowbred", "unmannered", "yokelish", "bounderish", "unmannerly", "primitive", "raw", "natural", "bad-mannered"]}, {"answer": "ruined", "hint": "synonyms for ruined", "clues": ["sunk", "done for", "finished", "destroyed", "undone", "washed-up", "ruined"]}, {"answer": "rum", "hint": "synonyms for rum", "clues": ["funny", "curious", "rummy", "odd", "queer", "singular", "peculiar", "rum"]}, {"answer": "rumbustious", "hint": "synonyms for rumbustious", "clues": ["rambunctious", "robustious", "boisterous", "unruly"]}, {"answer": "ruminative", "hint": "synonyms for ruminative", "clues": ["pondering", "musing", "broody", "contemplative", "reflective", "meditative", "pensive", "brooding", "ruminative"]}, {"answer": "rummy", "hint": "synonyms for rummy", "clues": ["funny", "curious", "odd", "queer", "singular", "rum", "peculiar", "rummy"]}, {"answer": "rumpled", "hint": "synonyms for rumpled", "clues": ["tousled", "dishevelled", "frowzled", "rumpled"]}, {"answer": "run-down", "hint": "synonyms for run-down", "clues": ["flea-bitten", "woebegone", "derelict", "creaky", "decrepit", "run-down"]}, {"answer": "running", "hint": "synonyms for running", "clues": ["operative", "functional", "linear", "working", "running"]}, {"answer": "runty", "hint": "synonyms for runty", "clues": ["shrimpy", "puny", "pint-size", "sawed-off", "sawn-off", "runty"]}, {"answer": "rustic", "hint": "synonyms for rustic", "clues": ["agrestic", "hick", "countryfied", "bumpkinly", "unsophisticated", "rustic"]}, {"answer": "rusty", "hint": "synonyms for rusty", "clues": ["rust-brown", "hoary", "rust", "out of practice"]}, {"answer": "ruttish", "hint": "synonyms for ruttish", "clues": ["turned on", "aroused", "randy", "horny", "steamy", "ruttish"]}, {"answer": "sacked", "hint": "synonyms for sacked", "clues": ["ravaged", "pillaged", "despoiled", "raped", "sacked"]}, {"answer": "sad", "hint": "synonyms for sad", "clues": ["deplorable", "distressing", "lamentable", "sorry", "pitiful", "sad"]}, {"answer": "sainted", "hint": "synonyms for sainted", "clues": ["saintlike", "beatific", "angelical", "saintly", "sainted"]}, {"answer": "saintlike", "hint": "synonyms for saintlike", "clues": ["beatific", "angelical", "saintly", "sainted", "saintlike"]}, {"answer": "saintly", "hint": "synonyms for saintly", "clues": ["saintlike", "angelical", "beatific", "sainted", "saintly"]}, {"answer": "salacious", "hint": "synonyms for salacious", "clues": ["raunchy", "lubricious", "prurient", "lewd", "obscene", "lustful", "salacious"]}, {"answer": "salaried", "hint": "synonyms for salaried", "clues": ["compensable", "stipendiary", "compensated", "remunerative", "paying", "salaried"]}, {"answer": "salient", "hint": "synonyms for salient", "clues": ["striking", "outstanding", "spectacular", "prominent", "salient"]}, {"answer": "sanative", "hint": "synonyms for sanative", "clues": ["remedial", "curative", "therapeutic", "alterative", "healing", "sanative"]}, {"answer": "sanctimonious", "hint": "synonyms for sanctimonious", "clues": ["self-righteous", "pietistic", "holier-than-thou", "pharisaic", "sanctimonious"]}, {"answer": "sanctioned", "hint": "synonyms for sanctioned", "clues": ["canonic", "approved", "ratified", "sanctioned"]}, {"answer": "sand-blind", "hint": "synonyms for sand-blind", "clues": ["visually impaired", "near-blind", "visually challenged", "purblind", "dim-sighted", "sand-blind"]}, {"answer": "sanguinary", "hint": "synonyms for sanguinary", "clues": ["sanguineous", "bloody-minded", "bloodthirsty", "butcherly", "gory", "slaughterous", "sanguinary"]}, {"answer": "sanguineous", "hint": "synonyms for sanguineous", "clues": ["butcherly", "gory", "sanguinary", "slaughterous", "sanguineous"]}, {"answer": "sapid", "hint": "synonyms for sapid", "clues": ["flavorsome", "flavorful", "saporous", "flavourous", "sapid"]}, {"answer": "sapless", "hint": "synonyms for sapless", "clues": ["rickety", "infirm", "weakly", "feeble", "decrepit", "debile", "sapless"]}, {"answer": "saporous", "hint": "synonyms for saporous", "clues": ["flavorsome", "sapid", "flavorful", "flavourous", "saporous"]}, {"answer": "sappy", "hint": "synonyms for sappy", "clues": ["silly", "goofy", "cockamamie", "zany", "whacky", "cockamamy", "sappy"]}, {"answer": "sassy", "hint": "synonyms for sassy", "clues": ["impudent", "overbold", "wise", "fresh", "impertinent", "saucy", "smart", "sassy"]}, {"answer": "satanic", "hint": "synonyms for satanic", "clues": ["unholy", "diabolical", "infernal", "demonic", "fiendish", "hellish", "satanic"]}, {"answer": "satiny", "hint": "synonyms for satiny", "clues": ["sleek", "slick", "silklike", "silky", "silken", "satiny"]}, {"answer": "satisfying", "hint": "synonyms for satisfying", "clues": ["substantial", "solid", "comforting", "cheering", "square", "hearty", "satisfying"]}, {"answer": "saturnine", "hint": "synonyms for saturnine", "clues": ["sullen", "sour", "morose", "dark", "glowering", "glum", "dour", "moody", "saturnine"]}, {"answer": "saucy", "hint": "synonyms for saucy", "clues": ["impudent", "overbold", "irreverent", "impertinent", "pert", "smart", "wise", "fresh", "sassy", "saucy"]}, {"answer": "savage", "hint": "synonyms for savage", "clues": ["wild", "fierce", "uncivilised", "ferocious", "vicious", "barbaric", "ferine", "furious", "feral", "roughshod", "fell", "cruel", "barbarous", "barbarian", "brutal", "savage"]}, {"answer": "savorless", "hint": "synonyms for savorless", "clues": ["vapid", "flavourless", "flat", "insipid", "bland", "savorless"]}, {"answer": "savory", "hint": "synonyms for savory", "clues": ["spicy", "piquant", "zesty", "savoury", "mouth-watering"]}, {"answer": "savourless", "hint": "synonyms for savourless", "clues": ["vapid", "flavourless", "flat", "insipid", "savorless", "bland"]}, {"answer": "savoury", "hint": "synonyms for savoury", "clues": ["spicy", "piquant", "savory", "zesty", "mouth-watering"]}, {"answer": "saw-toothed", "hint": "synonyms for saw-toothed", "clues": ["serrated", "toothed", "notched", "saw-toothed"]}, {"answer": "sawed-off", "hint": "synonyms for sawed-off", "clues": ["runty", "pint-size", "sawn-off", "shortened", "sawed-off"]}, {"answer": "sawn-off", "hint": "synonyms for sawn-off", "clues": ["runty", "pint-size", "sawed-off", "shortened", "sawn-off"]}, {"answer": "scabrous", "hint": "synonyms for scabrous", "clues": ["scurfy", "lepidote", "scaly", "leprose", "scabrous"]}, {"answer": "scaly", "hint": "synonyms for scaly", "clues": ["scaley", "scabrous", "scaled", "scurfy", "lepidote", "leprose"]}, {"answer": "scarey", "hint": "synonyms for scarey", "clues": ["shuddery", "scary", "chilling", "shivery"]}, {"answer": "scarlet", "hint": "synonyms for scarlet", "clues": ["cherry", "blood-red", "crimson", "red", "ruby", "reddish", "cerise", "ruby-red", "cherry-red", "carmine", "ruddy", "scarlet"]}, {"answer": "scary", "hint": "synonyms for scary", "clues": ["shuddery", "scarey", "chilling", "shivery"]}, {"answer": "scatterbrained", "hint": "synonyms for scatterbrained", "clues": ["head-in-the-clouds", "flighty", "flyaway", "rattlepated", "scatty", "rattlebrained", "scatterbrained"]}, {"answer": "scattered", "hint": "synonyms for scattered", "clues": ["disordered", "illogical", "garbled", "unconnected", "confused", "disconnected", "disjointed", "scattered"]}, {"answer": "scatty", "hint": "synonyms for scatty", "clues": ["absentminded", "abstracted", "absent", "scatterbrained", "rattlepated", "rattlebrained", "scatty"]}, {"answer": "scented", "hint": "synonyms for scented", "clues": ["sweet", "sweet-smelling", "sweet-scented", "odorous", "perfumed", "odoriferous", "scented"]}, {"answer": "sceptical", "hint": "synonyms for sceptical", "clues": ["skeptical", "questioning", "disbelieving", "unbelieving", "doubting"]}, {"answer": "scheming", "hint": "synonyms for scheming", "clues": ["designing", "shrewd", "conniving", "calculative", "calculating", "scheming"]}, {"answer": "schmaltzy", "hint": "synonyms for schmaltzy", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "schmalzy"]}, {"answer": "schmalzy", "hint": "synonyms for schmalzy", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin"]}, {"answer": "scintillant", "hint": "synonyms for scintillant", "clues": ["glittering", "glittery", "sparkly", "fulgid", "glinting", "coruscant", "scintillating", "scintillant"]}, {"answer": "scintillating", "hint": "synonyms for scintillating", "clues": ["glittering", "glittery", "bubbling", "fulgid", "frothy", "glinting", "effervescent", "sparkly", "coruscant", "scintillant", "scintillating"]}, {"answer": "scorched", "hint": "synonyms for scorched", "clues": ["baked", "parched", "sunbaked", "adust", "scorched"]}, {"answer": "scotch", "hint": "synonyms for scotch", "clues": ["frugal", "economical", "sparing", "stinting", "scotch"]}, {"answer": "scraggy", "hint": "synonyms for scraggy", "clues": ["weedy", "jagged", "jaggy", "boney", "scrawny", "underweight", "skinny", "scraggy"]}, {"answer": "scratchy", "hint": "synonyms for scratchy", "clues": ["rough", "gravelly", "nettlesome", "uneven", "irritable", "testy", "peevish", "raspy", "cranky", "pettish", "rasping", "techy", "petulant", "fractious", "peckish", "grating", "spotty", "abrasive", "scratchy"]}, {"answer": "scrawny", "hint": "synonyms for scrawny", "clues": ["scrubby", "weedy", "stunted", "scraggy", "boney", "underweight", "skinny", "scrawny"]}, {"answer": "screaky", "hint": "synonyms for screaky", "clues": ["screechy", "squeaking", "creaky", "squeaky"]}, {"answer": "screechy", "hint": "synonyms for screechy", "clues": ["screaky", "squeaking", "squeaky", "screechy"]}, {"answer": "scrimpy", "hint": "synonyms for scrimpy", "clues": ["meagre", "meager", "stingy", "scrimpy"]}, {"answer": "scrumptious", "hint": "synonyms for scrumptious", "clues": ["delicious", "delectable", "luscious", "pleasant-tasting", "toothsome", "yummy", "scrumptious"]}, {"answer": "sculptured", "hint": "synonyms for sculptured", "clues": ["modeled", "sculpted", "sculpturesque", "sculptural", "graven"]}, {"answer": "scummy", "hint": "synonyms for scummy", "clues": ["miserable", "scurvy", "abject", "low", "low-down", "scummy"]}, {"answer": "scurfy", "hint": "synonyms for scurfy", "clues": ["scabrous", "lepidote", "scaly", "leprose", "scurfy"]}, {"answer": "scurvy", "hint": "synonyms for scurvy", "clues": ["scummy", "miserable", "abject", "low", "low-down", "scurvy"]}, {"answer": "seamy", "hint": "synonyms for seamy", "clues": ["sordid", "squalid", "seedy", "sleazy", "seamy"]}, {"answer": "sear", "hint": "synonyms for sear", "clues": ["shriveled", "dried-up", "withered", "sere", "sear"]}, {"answer": "seaward", "hint": "synonyms for seaward", "clues": ["inshore", "shoreward", "offshore", "seaward"]}, {"answer": "secluded", "hint": "synonyms for secluded", "clues": ["privy", "sequestered", "reclusive", "cloistered", "secret", "secluded"]}, {"answer": "secondary", "hint": "synonyms for secondary", "clues": ["lower-ranking", "junior-grade", "subaltern", "lowly", "petty", "secondary"]}, {"answer": "secret", "hint": "synonyms for secret", "clues": ["unavowed", "hidden", "private", "occult", "hole-and-corner", "privy", "surreptitious", "mystical", "clandestine", "hush-hush", "mysterious", "hugger-mugger", "undercover", "secluded", "underground", "confidential", "orphic", "cloak-and-dagger", "secret"]}, {"answer": "secretive", "hint": "synonyms for secretive", "clues": ["closelipped", "closemouthed", "close", "tightlipped", "secretive"]}, {"answer": "secular", "hint": "synonyms for secular", "clues": ["profane", "temporal", "lay", "worldly", "laic", "secular"]}, {"answer": "secure", "hint": "synonyms for secure", "clues": ["good", "unattackable", "inviolable", "untroubled", "strong", "dependable", "unafraid", "impregnable", "unassailable", "safe", "secure"]}, {"answer": "sedate", "hint": "synonyms for sedate", "clues": ["staid", "solemn", "grave", "sober", "sedate"]}, {"answer": "sedative", "hint": "synonyms for sedative", "clues": ["tranquillizing", "ataractic", "ataraxic", "sedative"]}, {"answer": "seditious", "hint": "synonyms for seditious", "clues": ["rabble-rousing", "incendiary", "insurgent", "instigative", "inflammatory", "subversive", "incitive", "seditious"]}, {"answer": "see-through", "hint": "synonyms for see-through", "clues": ["filmy", "diaphanous", "gauze-like", "gossamer", "vaporous", "transparent", "gauzy", "sheer", "cobwebby", "see-through"]}, {"answer": "seedy", "hint": "synonyms for seedy", "clues": ["peaked", "sleazy", "scruffy", "sickly", "seamy", "squalid", "indisposed", "under the weather", "unwell", "sordid", "poorly", "ailing", "seedy"]}, {"answer": "seemly", "hint": "synonyms for seemly", "clues": ["decent", "becoming", "comely", "decorous", "comme il faut", "seemly"]}, {"answer": "select", "hint": "synonyms for select", "clues": ["prime", "choice", "quality", "prize", "blue-ribbon", "select"]}, {"answer": "self-aggrandising", "hint": "synonyms for self-aggrandising", "clues": ["cock-a-hoop", "braggart", "crowing", "big", "self-aggrandizing", "braggy", "bragging", "boastful"]}, {"answer": "self-aggrandizing", "hint": "synonyms for self-aggrandizing", "clues": ["cock-a-hoop", "braggart", "crowing", "big", "self-aggrandising", "braggy", "bragging", "boastful"]}, {"answer": "self-collected", "hint": "synonyms for self-collected", "clues": ["poised", "collected", "equanimous", "self-contained", "self-possessed", "self-collected"]}, {"answer": "self-conceited", "hint": "synonyms for self-conceited", "clues": ["vain", "conceited", "egotistic", "swollen", "swollen-headed", "self-conceited"]}, {"answer": "self-contained", "hint": "synonyms for self-contained", "clues": ["poised", "self-collected", "equanimous", "collected", "self-possessed", "self-contained"]}, {"answer": "self-contradictory", "hint": "synonyms for self-contradictory", "clues": ["contradictory", "conflicting", "at odds", "paradoxical", "self-contradictory"]}, {"answer": "self-denying", "hint": "synonyms for self-denying", "clues": ["self-abnegating", "self-sacrificing", "self-giving", "renunciant", "renunciative", "self-denying"]}, {"answer": "self-possessed", "hint": "synonyms for self-possessed", "clues": ["poised", "collected", "self-collected", "equanimous", "self-contained", "self-possessed"]}, {"answer": "self-righteous", "hint": "synonyms for self-righteous", "clues": ["pietistic", "holier-than-thou", "sanctimonious", "pharisaic", "self-righteous"]}, {"answer": "self-willed", "hint": "synonyms for self-willed", "clues": ["froward", "willful", "headstrong", "self-willed"]}, {"answer": "sellable", "hint": "synonyms for sellable", "clues": ["merchantable", "marketable", "vendible", "sellable"]}, {"answer": "senior", "hint": "synonyms for senior", "clues": ["older", "elderly", "aged", "fourth-year", "senior"]}, {"answer": "senseless", "hint": "synonyms for senseless", "clues": ["purposeless", "mindless", "soft-witted", "pointless", "otiose", "nitwitted", "wasted", "witless", "insensible", "superfluous", "reasonless", "senseless"]}, {"answer": "sensitised", "hint": "synonyms for sensitised", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "sensitive", "hint": "synonyms for sensitive", "clues": ["raw", "sensible", "tender", "sore", "sensitive"]}, {"answer": "sensitized", "hint": "synonyms for sensitized", "clues": ["hypersensitised", "supersensitive", "sensitised", "allergic"]}, {"answer": "sensory", "hint": "synonyms for sensory", "clues": ["centripetal", "sensorial", "receptive", "sensational", "sensory"]}, {"answer": "sensual", "hint": "synonyms for sensual", "clues": ["fleshly", "sultry", "animal", "carnal", "sensual"]}, {"answer": "sentimental", "hint": "synonyms for sentimental", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "slushy", "kitschy", "mawkish", "maudlin", "sentimental"]}, {"answer": "separated", "hint": "synonyms for separated", "clues": ["isolated", "detached", "spaced", "dislocated", "set-apart", "disjointed", "separated"]}, {"answer": "sequent", "hint": "synonyms for sequent", "clues": ["consecutive", "concomitant", "resultant", "serial", "incidental", "accompanying", "ensuant", "consequent", "successive", "attendant", "sequential", "sequent"]}, {"answer": "sequential", "hint": "synonyms for sequential", "clues": ["consecutive", "serial", "successive", "sequent", "sequential"]}, {"answer": "sequined", "hint": "synonyms for sequined", "clues": ["gemmed", "spangled", "jewelled", "beady", "spangly", "sequined"]}, {"answer": "seraphic", "hint": "synonyms for seraphic", "clues": ["cherubic", "sweet", "angelical", "seraphical"]}, {"answer": "sere", "hint": "synonyms for sere", "clues": ["shriveled", "sear", "withered", "dried-up", "sere"]}, {"answer": "serial", "hint": "synonyms for serial", "clues": ["nonparallel", "in series", "consecutive", "successive", "sequential", "sequent", "serial"]}, {"answer": "serious", "hint": "synonyms for serious", "clues": ["good", "grave", "life-threatening", "dangerous", "severe", "unplayful", "grievous", "sober", "serious"]}, {"answer": "serrate", "hint": "synonyms for serrate", "clues": ["serrated", "toothed", "saw-toothed", "notched"]}, {"answer": "serrated", "hint": "synonyms for serrated", "clues": ["toothed", "serrate", "saw-toothed", "notched"]}, {"answer": "set", "hint": "synonyms for set", "clues": ["primed", "rigid", "fit", "located", "placed", "fixed", "determined", "laid", "dictated", "hardened", "situated", "set"]}, {"answer": "setaceous", "hint": "synonyms for setaceous", "clues": ["bristly", "barbed", "bristled", "thorny", "burred", "setose", "briary", "barbellate", "prickly", "burry", "spiny", "briery", "setaceous"]}, {"answer": "setose", "hint": "synonyms for setose", "clues": ["bristly", "barbed", "bristled", "thorny", "burred", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "briery", "setose"]}, {"answer": "severe", "hint": "synonyms for severe", "clues": ["spartan", "grave", "austere", "knockout", "hard", "wicked", "stark", "life-threatening", "terrible", "dangerous", "stern", "grievous", "serious", "severe"]}, {"answer": "shadowy", "hint": "synonyms for shadowy", "clues": ["wraithlike", "wispy", "faint", "vague", "umbrageous", "dim", "shadowed", "shady", "shadowy"]}, {"answer": "shady", "hint": "synonyms for shady", "clues": ["fly-by-night", "suspicious", "umbrageous", "shadowed", "shadowy", "suspect", "funny", "fishy", "louche", "shady"]}, {"answer": "shaggy", "hint": "synonyms for shaggy", "clues": ["bushy", "shaggy-haired", "shagged", "shaggy-coated", "shaggy"]}, {"answer": "shaky", "hint": "synonyms for shaky", "clues": ["precarious", "shivering", "trembling", "wonky", "wobbly", "rickety", "shaky"]}, {"answer": "sham", "hint": "synonyms for sham", "clues": ["pretended", "fictive", "false", "put on", "fictitious", "assumed", "sham"]}, {"answer": "shamed", "hint": "synonyms for shamed", "clues": ["shamefaced", "discredited", "guilty", "hangdog", "dishonored", "disgraced", "shamed"]}, {"answer": "shamefaced", "hint": "synonyms for shamefaced", "clues": ["guilty", "sheepish", "shamed", "hangdog", "shamefaced"]}, {"answer": "shameful", "hint": "synonyms for shameful", "clues": ["ignominious", "opprobrious", "shocking", "black", "scandalous", "inglorious", "disgraceful", "shameful"]}, {"answer": "sharp", "hint": "synonyms for sharp", "clues": ["discriminating", "penetrating", "sharp-worded", "tart", "precipitous", "keen", "shrewd", "needlelike", "shrill", "abrupt", "knifelike", "piercing", "incisive", "crisp", "penetrative", "acute", "astute", "sharp"]}, {"answer": "sharp-eyed", "hint": "synonyms for sharp-eyed", "clues": ["keen-sighted", "lynx-eyed", "sharp-sighted", "keen-eyed", "quick-sighted", "argus-eyed", "hawk-eyed", "sharp-eyed"]}, {"answer": "sharp-set", "hint": "synonyms for sharp-set", "clues": ["starved", "ravenous", "esurient", "famished", "sharp-set"]}, {"answer": "sharp-sighted", "hint": "synonyms for sharp-sighted", "clues": ["keen-sighted", "lynx-eyed", "quick-sighted", "argus-eyed", "sharp-eyed", "hawk-eyed", "sharp-sighted"]}, {"answer": "sheeny", "hint": "synonyms for sheeny", "clues": ["glossy", "glistening", "shiny", "shining", "lustrous", "sheeny"]}, {"answer": "sheer", "hint": "synonyms for sheer", "clues": ["rank", "bold", "diaphanous", "gauze-like", "gossamer", "absolute", "unmingled", "transparent", "cobwebby", "filmy", "bluff", "see-through", "out-and-out", "downright", "unmixed", "right-down", "vapourous", "gauzy", "plain", "sheer"]}, {"answer": "shining", "hint": "synonyms for shining", "clues": ["burnished", "glossy", "glistening", "shiny", "bright", "lustrous", "sheeny", "shining"]}, {"answer": "shiny", "hint": "synonyms for shiny", "clues": ["glossy", "burnished", "glistening", "sheeny", "bright", "shining", "lustrous", "glazed", "shiny"]}, {"answer": "shitty", "hint": "synonyms for shitty", "clues": ["rotten", "crappy", "stinky", "stinking", "icky", "lousy", "shitty"]}, {"answer": "shivery", "hint": "synonyms for shivery", "clues": ["scary", "shuddery", "chilling", "shivery"]}, {"answer": "shocking", "hint": "synonyms for shocking", "clues": ["shameful", "scandalous", "lurid", "disgraceful", "shocking"]}, {"answer": "shoddy", "hint": "synonyms for shoddy", "clues": ["cheapjack", "deceptive", "misleading", "jerry-built", "tawdry", "shoddy"]}, {"answer": "shopworn", "hint": "synonyms for shopworn", "clues": ["old-hat", "trite", "commonplace", "threadbare", "well-worn", "hackneyed", "shopsoiled", "banal", "timeworn", "stock", "tired", "shopworn"]}, {"answer": "short", "hint": "synonyms for short", "clues": ["poor", "scant", "light", "unforesightful", "unretentive", "myopic", "brusk", "little", "inadequate", "forgetful", "shortsighted", "brusque", "curt", "short"]}, {"answer": "short-lived", "hint": "synonyms for short-lived", "clues": ["transient", "fugacious", "ephemeral", "passing", "transitory", "short-lived"]}, {"answer": "short-tempered", "hint": "synonyms for short-tempered", "clues": ["irascible", "hot-tempered", "hotheaded", "choleric", "quick-tempered"]}, {"answer": "shortened", "hint": "synonyms for shortened", "clues": ["cut", "abbreviated", "sawed-off", "truncated", "sawn-off", "telescoped", "shortened"]}, {"answer": "shortsighted", "hint": "synonyms for shortsighted", "clues": ["ill-considered", "ill-judged", "nearsighted", "short", "unforesightful", "improvident", "myopic", "shortsighted"]}, {"answer": "showy", "hint": "synonyms for showy", "clues": ["jazzy", "splashy", "glossy", "flamboyant", "sporty", "flashy", "gaudy", "showy"]}, {"answer": "shrewd", "hint": "synonyms for shrewd", "clues": ["sharp", "scheming", "calculating", "conniving", "calculative", "astute", "shrewd"]}, {"answer": "shriveled", "hint": "synonyms for shriveled", "clues": ["shrunken", "sear", "sere", "shrivelled", "dried-up", "withered", "wizened", "wizen"]}, {"answer": "shrivelled", "hint": "synonyms for shrivelled", "clues": ["shriveled", "shrunken", "sear", "sere", "dried-up", "withered", "wizened", "wizen"]}, {"answer": "shrunken", "hint": "synonyms for shrunken", "clues": ["shriveled", "withered", "wizened", "wizen", "shrunken"]}, {"answer": "shuddery", "hint": "synonyms for shuddery", "clues": ["scary", "chilling", "shivery", "shuddery"]}, {"answer": "sibilant", "hint": "synonyms for sibilant", "clues": ["spirant", "fricative", "continuant", "strident", "sibilant"]}, {"answer": "sibyllic", "hint": "synonyms for sibyllic", "clues": ["vatical", "mantic", "sibylline", "divinatory", "vatic", "sibyllic"]}, {"answer": "sibylline", "hint": "synonyms for sibylline", "clues": ["vatical", "qabalistic", "vatic", "cryptic", "mantic", "divinatory", "sibyllic", "sibylline"]}, {"answer": "sick", "hint": "synonyms for sick", "clues": ["unbalanced", "pale", "gruesome", "macabre", "sick of", "sickish", "tired of", "disgusted", "fed up", "mad", "disturbed", "ill", "queasy", "grim", "ghastly", "wan", "unhinged", "nauseated", "nauseous", "brainsick", "pallid", "demented", "grisly", "crazy", "sick"]}, {"answer": "sick_of", "hint": "synonyms for sick of", "clues": ["fed up", "tired of", "sick", "disgusted", "sick of"]}, {"answer": "sickening", "hint": "synonyms for sickening", "clues": ["nauseating", "queasy", "nauseous", "noisome", "vile", "loathsome", "offensive", "sickening"]}, {"answer": "sickish", "hint": "synonyms for sickish", "clues": ["sick", "queasy", "nauseous", "nauseated", "sickish"]}, {"answer": "sickly", "hint": "synonyms for sickly", "clues": ["peaked", "indisposed", "under the weather", "unwell", "sallow", "poorly", "seedy", "ailing", "sickly"]}, {"answer": "sidelong", "hint": "synonyms for sidelong", "clues": ["lateral", "askance", "squint", "squint-eyed", "askant", "sidelong"]}, {"answer": "sightly", "hint": "synonyms for sightly", "clues": ["bonny", "fair", "bonnie", "comely", "sightly"]}, {"answer": "significant", "hint": "synonyms for significant", "clues": ["substantial", "important", "pregnant", "meaning", "significant"]}, {"answer": "significative", "hint": "synonyms for significative", "clues": ["indicative", "suggestive", "indicatory", "revelatory", "significative"]}, {"answer": "silent", "hint": "synonyms for silent", "clues": ["understood", "soundless", "tacit", "unsounded", "mute", "mum", "dumb", "still", "silent"]}, {"answer": "silken", "hint": "synonyms for silken", "clues": ["sleek", "slick", "silklike", "silky", "satiny", "silken"]}, {"answer": "silklike", "hint": "synonyms for silklike", "clues": ["sleek", "slick", "silky", "satiny", "silken", "silklike"]}, {"answer": "silky", "hint": "synonyms for silky", "clues": ["sleek", "slick", "silklike", "satiny", "silken", "silky"]}, {"answer": "silly", "hint": "synonyms for silly", "clues": ["dizzy", "slaphappy", "empty-headed", "airheaded", "cockamamie", "featherbrained", "ridiculous", "whacky", "lightheaded", "pathetic", "punch-drunk", "goofy", "giddy", "zany", "cockamamy", "sappy", "silly"]}, {"answer": "silver", "hint": "synonyms for silver", "clues": ["smooth-spoken", "fluent", "silvery", "silver-tongued", "silverish", "facile", "eloquent", "argent"]}, {"answer": "silver-tongued", "hint": "synonyms for silver-tongued", "clues": ["smooth-spoken", "fluent", "facile", "eloquent", "silver", "silver-tongued"]}, {"answer": "similar", "hint": "synonyms for similar", "clues": ["like", "exchangeable", "standardized", "interchangeable", "similar"]}, {"answer": "simple", "hint": "synonyms for simple", "clues": ["mere", "wide-eyed", "unsubdivided", "elementary", "childlike", "dim-witted", "dewy-eyed", "uncomplicated", "bare", "round-eyed", "unproblematic", "simple-minded", "simple"]}, {"answer": "simulated", "hint": "synonyms for simulated", "clues": ["imitation", "faux", "fake", "false", "simulated"]}, {"answer": "simultaneous", "hint": "synonyms for simultaneous", "clues": ["cooccurring", "co-occurrent", "coincident", "coinciding", "concurrent", "simultaneous"]}, {"answer": "sinewy", "hint": "synonyms for sinewy", "clues": ["powerful", "fibrous", "muscular", "hefty", "stringy", "brawny", "unchewable", "tendinous", "sinewy"]}, {"answer": "sinful", "hint": "synonyms for sinful", "clues": ["over-the-top", "unholy", "extraordinary", "ungodly", "iniquitous", "wicked", "sinful"]}, {"answer": "single", "hint": "synonyms for single", "clues": ["individual", "exclusive", "unmarried", "undivided", "single"]}, {"answer": "singular", "hint": "synonyms for singular", "clues": ["odd", "queer", "remarkable", "peculiar", "funny", "curious", "unique", "rum", "rummy", "singular"]}, {"answer": "sinister", "hint": "synonyms for sinister", "clues": ["ominous", "forbidding", "black", "minacious", "threatening", "baleful", "dark", "minatory", "menacing", "sinister"]}, {"answer": "sissified", "hint": "synonyms for sissified", "clues": ["cissy", "emasculate", "sissy", "epicene", "sissyish", "effeminate", "sissified"]}, {"answer": "sissy", "hint": "synonyms for sissy", "clues": ["cissy", "emasculate", "epicene", "sissyish", "effeminate", "sissified", "sissy"]}, {"answer": "sissyish", "hint": "synonyms for sissyish", "clues": ["cissy", "emasculate", "sissy", "epicene", "effeminate", "sissified", "sissyish"]}, {"answer": "six", "hint": "synonyms for six", "clues": ["6", "half-dozen", "vi", "six"]}, {"answer": "sixpenny", "hint": "synonyms for sixpenny", "clues": ["two-a-penny", "tuppeny", "twopenny-halfpenny", "threepenny", "twopenny", "sixpenny"]}, {"answer": "sizable", "hint": "synonyms for sizable", "clues": ["respectable", "goodish", "healthy", "sizeable", "hefty", "tidy", "goodly", "ample"]}, {"answer": "sizeable", "hint": "synonyms for sizeable", "clues": ["respectable", "goodish", "healthy", "sizable", "hefty", "tidy", "goodly", "ample"]}, {"answer": "skanky", "hint": "synonyms for skanky", "clues": ["repellent", "yucky", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "disgusting", "distasteful", "disgustful", "skanky"]}, {"answer": "skeletal", "hint": "synonyms for skeletal", "clues": ["wasted", "haggard", "bony", "gaunt", "pinched", "emaciated", "cadaverous", "skeletal"]}, {"answer": "skeptical", "hint": "synonyms for skeptical", "clues": ["disbelieving", "questioning", "unbelieving", "doubting", "sceptical"]}, {"answer": "skew-whiff", "hint": "synonyms for skew-whiff", "clues": ["askew", "lopsided", "wonky", "cockeyed", "awry", "skew-whiff"]}, {"answer": "skilful", "hint": "synonyms for skilful", "clues": ["good", "skillful", "proficient", "expert", "adept", "practiced"]}, {"answer": "skillful", "hint": "synonyms for skillful", "clues": ["nice", "good", "proficient", "expert", "adept", "practiced", "skilful"]}, {"answer": "skinny", "hint": "synonyms for skinny", "clues": ["weedy", "tight fitting", "close", "penny-pinching", "scraggy", "near", "cheeseparing", "boney", "scrawny", "underweight", "skinny"]}, {"answer": "skint", "hint": "synonyms for skint", "clues": ["broke", "stony-broke", "bust", "skint"]}, {"answer": "slanderous", "hint": "synonyms for slanderous", "clues": ["libellous", "denigrative", "calumnious", "denigrating", "calumniatory", "defamatory", "denigratory", "slanderous"]}, {"answer": "slanted", "hint": "synonyms for slanted", "clues": ["sloped", "aslant", "biased", "slanting", "one-sided", "aslope", "coloured", "diagonal", "sloping", "slanted"]}, {"answer": "slanting", "hint": "synonyms for slanting", "clues": ["sloped", "aslope", "aslant", "diagonal", "sloping", "slanted", "slanting"]}, {"answer": "slap-up", "hint": "synonyms for slap-up", "clues": ["bang-up", "smashing", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "groovy", "nifty", "slap-up"]}, {"answer": "slaphappy", "hint": "synonyms for slaphappy", "clues": ["silly", "harum-scarum", "freewheeling", "punch-drunk", "happy-go-lucky", "carefree", "devil-may-care", "slaphappy"]}, {"answer": "slate-gray", "hint": "synonyms for slate-gray", "clues": ["slaty-gray", "slaty", "stone-grey", "slate-grey"]}, {"answer": "slate-grey", "hint": "synonyms for slate-grey", "clues": ["slaty-gray", "slaty", "stone-grey", "slate-grey"]}, {"answer": "slatey", "hint": "synonyms for slatey", "clues": ["slaty-gray", "slaty", "stone-grey", "slate-grey"]}, {"answer": "slaty", "hint": "synonyms for slaty", "clues": ["slaty-gray", "stone-grey", "slatey", "slate-grey"]}, {"answer": "slaty-gray", "hint": "synonyms for slaty-gray", "clues": ["slate-gray", "slaty-grey", "slaty", "stone-grey"]}, {"answer": "slaty-grey", "hint": "synonyms for slaty-grey", "clues": ["slaty-gray", "slaty", "stone-grey", "slate-grey"]}, {"answer": "slaughterous", "hint": "synonyms for slaughterous", "clues": ["butcherly", "gory", "sanguinary", "sanguineous", "slaughterous"]}, {"answer": "sleazy", "hint": "synonyms for sleazy", "clues": ["crummy", "bum", "punk", "seamy", "chintzy", "squalid", "cheesy", "tinny", "sordid", "cheap", "seedy", "sleazy"]}, {"answer": "sleek", "hint": "synonyms for sleek", "clues": ["aerodynamic", "silklike", "silky", "satiny", "silken", "streamlined", "slick", "flowing", "sleek"]}, {"answer": "sleeveless", "hint": "synonyms for sleeveless", "clues": ["fruitless", "futile", "vain", "bootless", "sleeveless"]}, {"answer": "slender", "hint": "synonyms for slender", "clues": ["lithe", "lithesome", "slight", "lissome", "sylphlike", "slim", "thin", "supple", "svelte", "slender"]}, {"answer": "slick", "hint": "synonyms for slick", "clues": ["dodgy", "sleek", "pat", "cunning", "foxy", "glib", "wily", "knavish", "crafty", "silklike", "tricky", "silky", "sly", "satiny", "silken", "guileful", "slick"]}, {"answer": "slight", "hint": "synonyms for slight", "clues": ["thin", "little", "svelte", "slim", "fragile", "tenuous", "flimsy", "slender", "slight"]}, {"answer": "slighting", "hint": "synonyms for slighting", "clues": ["depreciative", "deprecating", "depreciatory", "belittling", "slighting"]}, {"answer": "slimy", "hint": "synonyms for slimy", "clues": ["vile", "slimed", "wretched", "despicable", "unworthy", "ugly", "worthless", "slimy"]}, {"answer": "sloped", "hint": "synonyms for sloped", "clues": ["aslope", "aslant", "diagonal", "sloping", "slanting", "slanted", "sloped"]}, {"answer": "sloping", "hint": "synonyms for sloping", "clues": ["sloped", "aslope", "aslant", "diagonal", "slanting", "slanted", "sloping"]}, {"answer": "slopped", "hint": "synonyms for slopped", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "slopped"]}, {"answer": "sloppy", "hint": "synonyms for sloppy", "clues": ["swampy", "baggy", "miry", "haphazard", "marshy", "overemotional", "slapdash", "squashy", "slipshod", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "mucky", "loose-fitting", "boggy", "sloppy"]}, {"answer": "sloshed", "hint": "synonyms for sloshed", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "sloshed"]}, {"answer": "slothful", "hint": "synonyms for slothful", "clues": ["faineant", "lazy", "indolent", "otiose", "work-shy", "slothful"]}, {"answer": "sloughy", "hint": "synonyms for sloughy", "clues": ["swampy", "miry", "sloppy", "marshy", "squashy", "muddy", "quaggy", "soggy", "waterlogged", "mucky", "boggy", "sloughy"]}, {"answer": "slow", "hint": "synonyms for slow", "clues": ["dim", "irksome", "tedious", "tiresome", "dull", "dense", "wearisome", "ho-hum", "sluggish", "boring", "deadening", "dumb", "obtuse", "slow"]}, {"answer": "slubbed", "hint": "synonyms for slubbed", "clues": ["homespun", "tweedy", "nubbly", "slubbed"]}, {"answer": "sluggish", "hint": "synonyms for sluggish", "clues": ["inert", "soggy", "sulky", "torpid", "slow", "dull", "sluggish"]}, {"answer": "slushy", "hint": "synonyms for slushy", "clues": ["mushy", "soppy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "kitschy", "mawkish", "maudlin", "slushy"]}, {"answer": "sluttish", "hint": "synonyms for sluttish", "clues": ["light", "slatternly", "loose", "promiscuous", "blowzy", "wanton", "blowsy", "easy", "sluttish"]}, {"answer": "sly", "hint": "synonyms for sly", "clues": ["knavish", "dodgy", "crafty", "tricky", "cunning", "slick", "foxy", "wily", "guileful", "sly"]}, {"answer": "small", "hint": "synonyms for small", "clues": ["minuscule", "pocket-size", "low", "belittled", "modest", "minor", "little", "small-scale", "humble", "diminished", "small"]}, {"answer": "small-grained", "hint": "synonyms for small-grained", "clues": ["fine-grained", "powdery", "pulverized", "powdered", "small-grained"]}, {"answer": "small-scale", "hint": "synonyms for small-scale", "clues": ["pocket-sized", "small", "modest", "minor", "small-scale"]}, {"answer": "smaller", "hint": "synonyms for smaller", "clues": ["minuscule", "pocket-size", "littler", "low", "belittled", "modest", "minor", "small-scale", "humble", "small", "diminished", "smaller"]}, {"answer": "smarmy", "hint": "synonyms for smarmy", "clues": ["buttery", "oleaginous", "oily", "fulsome", "soapy", "unctuous", "smarmy"]}, {"answer": "smart", "hint": "synonyms for smart", "clues": ["impudent", "overbold", "saucy", "voguish", "impertinent", "bright", "wise", "fresh", "chic", "sassy", "smart"]}, {"answer": "smashed", "hint": "synonyms for smashed", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "smashed"]}, {"answer": "smashing", "hint": "synonyms for smashing", "clues": ["bang-up", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "swell", "not bad", "peachy", "groovy", "nifty", "smashing"]}, {"answer": "smelly", "hint": "synonyms for smelly", "clues": ["funky", "foul", "foetid", "stinking", "foul-smelling", "noisome", "ill-scented", "smelly"]}, {"answer": "smitten", "hint": "synonyms for smitten", "clues": ["taken with", "stricken", "struck", "potty", "in love", "infatuated", "soft on", "enamored", "smitten"]}, {"answer": "smooth", "hint": "synonyms for smooth", "clues": ["liquid", "politic", "legato", "fluent", "quiet", "placid", "suave", "unruffled", "bland", "still", "tranquil", "fluid", "smooth"]}, {"answer": "smooth-spoken", "hint": "synonyms for smooth-spoken", "clues": ["silver-tongued", "fluent", "facile", "eloquent", "silver", "smooth-spoken"]}, {"answer": "smuggled", "hint": "synonyms for smuggled", "clues": ["bootleg", "black-market", "black", "contraband", "smuggled"]}, {"answer": "smutty", "hint": "synonyms for smutty", "clues": ["nasty", "filthy", "cruddy", "foul", "black", "smutty"]}, {"answer": "snappy", "hint": "synonyms for snappy", "clues": ["raffish", "natty", "spruce", "snappish", "whipping", "rakish", "brisk", "rattling", "merry", "spanking", "frosty", "jaunty", "spiffy", "nippy", "dapper", "zippy", "lively", "nipping", "crisp", "alert", "dashing", "snappy"]}, {"answer": "sneak", "hint": "synonyms for sneak", "clues": ["stealthy", "sneaky", "furtive", "surreptitious"]}, {"answer": "sneaky", "hint": "synonyms for sneaky", "clues": ["underhand", "stealthy", "surreptitious", "sneak", "furtive"]}, {"answer": "sniffy", "hint": "synonyms for sniffy", "clues": ["swaggering", "imperious", "lordly", "overbearing", "haughty", "prideful", "supercilious", "disdainful", "sniffy"]}, {"answer": "snobbish", "hint": "synonyms for snobbish", "clues": ["clubby", "cliquish", "clannish", "snobby", "snobbish"]}, {"answer": "snobby", "hint": "synonyms for snobby", "clues": ["clubby", "cliquish", "clannish", "snobbish", "snobby"]}, {"answer": "snooty", "hint": "synonyms for snooty", "clues": ["snotty", "uppish", "persnickety", "too big for one's breeches", "bigheaded", "snot-nosed", "stuck-up", "snooty"]}, {"answer": "snot-nosed", "hint": "synonyms for snot-nosed", "clues": ["snooty", "snotty", "uppish", "persnickety", "too big for one's breeches", "bigheaded", "stuck-up", "snot-nosed"]}, {"answer": "snotty", "hint": "synonyms for snotty", "clues": ["snooty", "uppish", "persnickety", "too big for one's breeches", "bigheaded", "snot-nosed", "stuck-up", "snotty"]}, {"answer": "snowy", "hint": "synonyms for snowy", "clues": ["snow-covered", "snow-white", "white", "snow-clad", "snowy"]}, {"answer": "snug", "hint": "synonyms for snug", "clues": ["cosy", "close-fitting", "close", "cozy", "snug"]}, {"answer": "soaked", "hint": "synonyms for soaked", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "soaked"]}, {"answer": "soapy", "hint": "synonyms for soapy", "clues": ["buttery", "oleaginous", "oily", "fulsome", "smarmy", "unctuous", "saponaceous", "soapy"]}, {"answer": "sober", "hint": "synonyms for sober", "clues": ["grave", "drab", "solemn", "somber", "unplayful", "sombre", "serious", "sedate"]}, {"answer": "sodding", "hint": "synonyms for sodding", "clues": ["thoroughgoing", "staring", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "arrant", "unadulterated", "complete", "sodding"]}, {"answer": "soft", "hint": "synonyms for soft", "clues": ["voiced", "flaccid", "gentle", "lenient", "sonant", "delicate", "diffuse", "balmy", "subdued", "flabby", "easygoing", "cushy", "mild", "piano", "indulgent", "easy", "soft"]}, {"answer": "soft_on", "hint": "synonyms for soft on", "clues": ["taken with", "potty", "in love", "enamored", "smitten", "infatuated", "soft on"]}, {"answer": "soggy", "hint": "synonyms for soggy", "clues": ["swampy", "miry", "sloppy", "torpid", "doughy", "marshy", "inert", "squashy", "sluggish", "muddy", "quaggy", "sloughy", "waterlogged", "mucky", "boggy", "soggy"]}, {"answer": "sole", "hint": "synonyms for sole", "clues": ["lone", "only", "solitary", "lonesome", "exclusive", "sole"]}, {"answer": "solemn", "hint": "synonyms for solemn", "clues": ["sedate", "grave", "sincere", "earnest", "sober", "solemn"]}, {"answer": "solid", "hint": "synonyms for solid", "clues": ["satisfying", "self-coloured", "hearty", "strong", "substantial", "whole", "unanimous", "square", "firm", "upstanding", "solid"]}, {"answer": "solitary", "hint": "synonyms for solitary", "clues": ["alone", "lonely", "nongregarious", "unfrequented", "nonsocial", "only", "lonesome", "sole", "solitary"]}, {"answer": "somber", "hint": "synonyms for somber", "clues": ["melancholy", "drab", "sombre", "sober"]}, {"answer": "sombre", "hint": "synonyms for sombre", "clues": ["melancholy", "drab", "somber", "sombre"]}, {"answer": "sometime", "hint": "synonyms for sometime", "clues": ["old", "one-time", "former", "quondam", "erstwhile", "sometime"]}, {"answer": "somniferous", "hint": "synonyms for somniferous", "clues": ["soporific", "hypnogogic", "somnific", "soporiferous", "somniferous"]}, {"answer": "somnific", "hint": "synonyms for somnific", "clues": ["soporific", "hypnogogic", "somniferous", "soporiferous", "somnific"]}, {"answer": "sonsie", "hint": "synonyms for sonsie", "clues": ["stacked", "bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "full-bosomed", "sonsie"]}, {"answer": "sonsy", "hint": "synonyms for sonsy", "clues": ["stacked", "bosomy", "busty", "well-endowed", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "sonsy"]}, {"answer": "sooty", "hint": "synonyms for sooty", "clues": ["coal-black", "jet-black", "pitchy", "jet", "sooty"]}, {"answer": "soporiferous", "hint": "synonyms for soporiferous", "clues": ["narcotic", "soporific", "hypnogogic", "somnific", "somniferous", "soporiferous"]}, {"answer": "soporific", "hint": "synonyms for soporific", "clues": ["narcotic", "hypnogogic", "somnific", "somniferous", "soporiferous", "soporific"]}, {"answer": "soppy", "hint": "synonyms for soppy", "clues": ["mushy", "bathetic", "hokey", "soupy", "drippy", "schmaltzy", "sentimental", "slushy", "mawkish", "kitschy", "sodden", "maudlin", "soppy"]}, {"answer": "sorcerous", "hint": "synonyms for sorcerous", "clues": ["charming", "witching", "wizardly", "magic", "magical", "sorcerous"]}, {"answer": "sordid", "hint": "synonyms for sordid", "clues": ["dirty", "squalid", "sleazy", "flyblown", "seamy", "seedy", "sordid"]}, {"answer": "sore", "hint": "synonyms for sore", "clues": ["mad", "painful", "afflictive", "sensitive", "raw", "tender", "huffy", "sore"]}, {"answer": "sorrowing", "hint": "synonyms for sorrowing", "clues": ["grieving", "bereft", "mourning", "bereaved", "grief-stricken", "sorrowing"]}, {"answer": "sorry", "hint": "synonyms for sorry", "clues": ["good-for-nothing", "drab", "sad", "lamentable", "dark", "good-for-naught", "dingy", "dismal", "pitiful", "regretful", "deplorable", "distressing", "grim", "disconsolate", "meritless", "no-good", "dreary", "bad", "no-account", "blue", "gloomy", "sorry"]}, {"answer": "sound", "hint": "synonyms for sound", "clues": ["wakeless", "good", "effectual", "levelheaded", "healthy", "reasoned", "legal", "intelligent", "well-grounded", "profound", "heavy", "sound"]}, {"answer": "soupy", "hint": "synonyms for soupy", "clues": ["mushy", "soppy", "bathetic", "hokey", "drippy", "schmaltzy", "sentimental", "slushy", "kitschy", "mawkish", "maudlin", "soupy"]}, {"answer": "sour", "hint": "synonyms for sour", "clues": ["sullen", "rancid", "off", "saturnine", "morose", "dark", "glowering", "false", "turned", "off-key", "glum", "dour", "moody", "sour"]}, {"answer": "sourish", "hint": "synonyms for sourish", "clues": ["lemony", "lemonlike", "tangy", "tart", "sourish"]}, {"answer": "soused", "hint": "synonyms for soused", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "soused"]}, {"answer": "sovereign", "hint": "synonyms for sovereign", "clues": ["supreme", "self-governing", "independent", "autonomous", "sovereign"]}, {"answer": "sozzled", "hint": "synonyms for sozzled", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "blotto", "squiffy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "sozzled"]}, {"answer": "spangled", "hint": "synonyms for spangled", "clues": ["gemmed", "jewelled", "beady", "spangly", "sequined", "spangled"]}, {"answer": "spangly", "hint": "synonyms for spangly", "clues": ["gemmed", "spangled", "jewelled", "beady", "sequined", "spangly"]}, {"answer": "spanking", "hint": "synonyms for spanking", "clues": ["brisk", "lively", "rattling", "zippy", "snappy", "alert", "merry", "spanking"]}, {"answer": "spare", "hint": "synonyms for spare", "clues": ["redundant", "trim", "supernumerary", "free", "scanty", "unornamented", "excess", "supererogatory", "extra", "bare", "surplus", "unembellished", "superfluous", "plain", "spare"]}, {"answer": "sparing", "hint": "synonyms for sparing", "clues": ["frugal", "scotch", "economical", "stinting", "sparing"]}, {"answer": "sparkly", "hint": "synonyms for sparkly", "clues": ["glittering", "glittery", "bubbling", "fulgid", "frothy", "glinting", "effervescent", "scintillating", "coruscant", "scintillant", "sparkly"]}, {"answer": "spartan", "hint": "synonyms for spartan", "clues": ["severe", "ascetical", "austere", "spartan"]}, {"answer": "special", "hint": "synonyms for special", "clues": ["extra", "especial", "particular", "exceptional", "peculiar", "limited"]}, {"answer": "specked", "hint": "synonyms for specked", "clues": ["flecked", "speckled", "stippled", "dotted"]}, {"answer": "speckled", "hint": "synonyms for speckled", "clues": ["flecked", "stippled", "specked", "dotted"]}, {"answer": "speckless", "hint": "synonyms for speckless", "clues": ["immaculate", "spic-and-span", "spick", "spotless", "speckless"]}, {"answer": "spectacular", "hint": "synonyms for spectacular", "clues": ["striking", "outstanding", "salient", "prominent", "dramatic", "spectacular"]}, {"answer": "spectral", "hint": "synonyms for spectral", "clues": ["spiritual", "ghostly", "apparitional", "ghostlike", "phantasmal", "spectral"]}, {"answer": "speculative", "hint": "synonyms for speculative", "clues": ["wondering", "questioning", "high-risk", "bad", "inquisitive", "risky", "notional", "speculative"]}, {"answer": "spell-bound", "hint": "synonyms for spell-bound", "clues": ["fascinated", "mesmerized", "transfixed", "hypnotized", "spellbound"]}, {"answer": "spellbound", "hint": "synonyms for spellbound", "clues": ["fascinated", "mesmerized", "spell-bound", "transfixed", "hypnotized"]}, {"answer": "spent", "hint": "synonyms for spent", "clues": ["dog-tired", "fatigued", "fagged", "exhausted", "played out", "washed-out", "worn-out", "spent"]}, {"answer": "spheric", "hint": "synonyms for spheric", "clues": ["globose", "ball-shaped", "global", "spherical", "globular", "orbicular"]}, {"answer": "spherical", "hint": "synonyms for spherical", "clues": ["globose", "ball-shaped", "global", "spheric", "globular", "orbicular"]}, {"answer": "spic", "hint": "synonyms for spic", "clues": ["immaculate", "spic-and-span", "spick", "speckless", "spotless"]}, {"answer": "spic-and-span", "hint": "synonyms for spic-and-span", "clues": ["immaculate", "spick", "speckless", "brand-new", "spick-and-span", "spotless"]}, {"answer": "spick", "hint": "synonyms for spick", "clues": ["immaculate", "spic-and-span", "speckless", "spic", "spotless"]}, {"answer": "spick-and-span", "hint": "synonyms for spick-and-span", "clues": ["immaculate", "spic-and-span", "spick", "speckless", "brand-new", "spotless"]}, {"answer": "spicy", "hint": "synonyms for spicy", "clues": ["savoury", "zesty", "gamy", "racy", "risque", "blue", "juicy", "piquant", "hot", "naughty", "spicy"]}, {"answer": "spiderlike", "hint": "synonyms for spiderlike", "clues": ["spiderly", "arachnoid", "arachnidian", "spiderlike"]}, {"answer": "spiderly", "hint": "synonyms for spiderly", "clues": ["arachnoid", "spidery", "spiderlike", "arachnidian"]}, {"answer": "spidery", "hint": "synonyms for spidery", "clues": ["spiderly", "arachnoid", "spiderlike", "arachnidian"]}, {"answer": "spiffed_up", "hint": "synonyms for spiffed up", "clues": ["togged up", "spruced up", "dressed to the nines", "dressed", "dressed to kill", "dolled up", "dressed-up", "spiffed up"]}, {"answer": "spiffy", "hint": "synonyms for spiffy", "clues": ["raffish", "natty", "jaunty", "spruce", "dapper", "snappy", "rakish", "dashing", "spiffy"]}, {"answer": "spineless", "hint": "synonyms for spineless", "clues": ["gutless", "thornless", "namby-pamby", "invertebrate", "wishy-washy", "spineless"]}, {"answer": "spiny", "hint": "synonyms for spiny", "clues": ["bristly", "barbed", "bristled", "burred", "setose", "briery", "spinous", "briary", "barbellate", "setaceous", "prickly", "burry", "thorny", "spiny"]}, {"answer": "spiral", "hint": "synonyms for spiral", "clues": ["volute", "turbinate", "helical", "whorled", "coiling", "spiraling"]}, {"answer": "spiraling", "hint": "synonyms for spiraling", "clues": ["volute", "turbinate", "spiral", "helical", "whorled", "coiling"]}, {"answer": "spirant", "hint": "synonyms for spirant", "clues": ["fricative", "continuant", "sibilant", "strident", "spirant"]}, {"answer": "spirited", "hint": "synonyms for spirited", "clues": ["gamy", "zippy", "game", "spunky", "enlivened", "peppy", "gritty", "bouncing", "mettlesome", "bouncy", "spirited"]}, {"answer": "spiritual", "hint": "synonyms for spiritual", "clues": ["religious", "unearthly", "ghostly", "ghostlike", "apparitional", "phantasmal", "spectral", "spiritual"]}, {"answer": "splendid", "hint": "synonyms for splendid", "clues": ["magnificent", "resplendent", "excellent", "brilliant", "first-class", "fantabulous", "splendiferous", "glorious", "splendid"]}, {"answer": "splenetic", "hint": "synonyms for splenetic", "clues": ["bristly", "prickly", "splenic", "lienal", "waspish"]}, {"answer": "sporting", "hint": "synonyms for sporting", "clues": ["sporty", "card-playing", "dissipated", "betting", "sportsmanlike", "clean", "sporting"]}, {"answer": "sportive", "hint": "synonyms for sportive", "clues": ["coltish", "rollicking", "frolicsome", "frolicky", "sportive"]}, {"answer": "sporty", "hint": "synonyms for sporty", "clues": ["jazzy", "sporting", "showy", "flashy", "sportsmanlike", "clean", "gaudy", "sporty"]}, {"answer": "spotless", "hint": "synonyms for spotless", "clues": ["immaculate", "spic-and-span", "spick", "speckless", "spotless"]}, {"answer": "spotty", "hint": "synonyms for spotty", "clues": ["patched", "scratchy", "uneven", "spotted", "spotty"]}, {"answer": "spring-blooming", "hint": "synonyms for spring-blooming", "clues": ["early-blooming", "spring-flowering", "late-spring-blooming", "early-flowering"]}, {"answer": "spring-flowering", "hint": "synonyms for spring-flowering", "clues": ["early-blooming", "late-spring-blooming", "early-flowering", "spring-flowering"]}, {"answer": "springy", "hint": "synonyms for springy", "clues": ["lively", "resilient", "bouncy", "springy"]}, {"answer": "spruce", "hint": "synonyms for spruce", "clues": ["raffish", "natty", "jaunty", "spiffy", "dapper", "snappy", "rakish", "dashing", "spruce"]}, {"answer": "spruced_up", "hint": "synonyms for spruced up", "clues": ["togged up", "spiffed up", "dressed to the nines", "dressed", "dressed to kill", "dolled up", "dressed-up", "spruced up"]}, {"answer": "spumy", "hint": "synonyms for spumy", "clues": ["frothy", "effervescing", "bubbling", "bubbly", "foamy", "foaming", "spumy"]}, {"answer": "spunky", "hint": "synonyms for spunky", "clues": ["plucky", "gamy", "game", "gritty", "mettlesome", "spirited", "feisty", "spunky"]}, {"answer": "spurious", "hint": "synonyms for spurious", "clues": ["specious", "misbegotten", "inauthentic", "bastardly", "misbegot", "spurious"]}, {"answer": "squalid", "hint": "synonyms for squalid", "clues": ["sleazy", "sordid", "flyblown", "seamy", "seedy", "squalid"]}, {"answer": "square", "hint": "synonyms for square", "clues": ["straight", "substantial", "satisfying", "solid", "straightforward", "hearty", "square"]}, {"answer": "square-toed", "hint": "synonyms for square-toed", "clues": ["victorian", "prissy", "straight-laced", "prudish", "squared-toe", "puritanical", "priggish", "prim"]}, {"answer": "squashy", "hint": "synonyms for squashy", "clues": ["swampy", "squishy", "miry", "sloppy", "spongy", "marshy", "waterlogged", "muddy", "quaggy", "pulpy", "sloughy", "soggy", "mucky", "spongelike", "boggy"]}, {"answer": "squat", "hint": "synonyms for squat", "clues": ["squatty", "low-set", "chunky", "dumpy", "stumpy", "underslung", "squat"]}, {"answer": "squatty", "hint": "synonyms for squatty", "clues": ["low-set", "squat", "chunky", "dumpy", "stumpy", "squatty"]}, {"answer": "squeaking", "hint": "synonyms for squeaking", "clues": ["screaky", "squealing", "squeaky", "screechy"]}, {"answer": "squeaky", "hint": "synonyms for squeaky", "clues": ["screaky", "squeaking", "screechy", "squeaky"]}, {"answer": "squealing", "hint": "synonyms for squealing", "clues": ["screaky", "squeaking", "squeaky", "screechy"]}, {"answer": "squeamish", "hint": "synonyms for squeamish", "clues": ["nice", "overnice", "prissy", "dainty", "squeamish"]}, {"answer": "squiffy", "hint": "synonyms for squiffy", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "squiffy"]}, {"answer": "squint", "hint": "synonyms for squint", "clues": ["askance", "sidelong", "squint-eyed", "askant", "asquint"]}, {"answer": "squint-eyed", "hint": "synonyms for squint-eyed", "clues": ["askance", "sidelong", "squint", "askant", "squint-eyed"]}, {"answer": "squinty", "hint": "synonyms for squinty", "clues": ["askance", "sidelong", "squint", "squint-eyed", "askant"]}, {"answer": "stabbing", "hint": "synonyms for stabbing", "clues": ["lancinate", "cutting", "lancinating", "keen", "knifelike", "wounding", "piercing", "stabbing"]}, {"answer": "stacked", "hint": "synonyms for stacked", "clues": ["bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "stacked"]}, {"answer": "stainless", "hint": "synonyms for stainless", "clues": ["unsullied", "unstained", "untarnished", "stainless"]}, {"answer": "stalwart", "hint": "synonyms for stalwart", "clues": ["hardy", "sturdy", "stout", "stouthearted", "stalwart"]}, {"answer": "standardised", "hint": "synonyms for standardised", "clues": ["similar", "standardized", "interchangeable", "exchangeable"]}, {"answer": "standardized", "hint": "synonyms for standardized", "clues": ["similar", "standardised", "interchangeable", "exchangeable"]}, {"answer": "star", "hint": "synonyms for star", "clues": ["leading", "stellar", "starring", "prima", "star"]}, {"answer": "starchlike", "hint": "synonyms for starchlike", "clues": ["amylaceous", "amyloidal", "farinaceous", "starchlike"]}, {"answer": "staring", "hint": "synonyms for staring", "clues": ["agaze", "sodding", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "arrant", "unadulterated", "complete", "staring"]}, {"answer": "stark", "hint": "synonyms for stark", "clues": ["barren", "sodding", "staring", "thoroughgoing", "severe", "desolate", "double-dyed", "blunt", "arrant", "stern", "unadulterated", "complete", "austere", "crude", "consummate", "gross", "bare", "utter", "perfect", "bleak", "pure", "everlasting", "stark"]}, {"answer": "stark_naked", "hint": "synonyms for stark naked", "clues": ["in the altogether", "in the buff", "peeled", "naked as a jaybird", "raw", "in the raw", "bare-assed", "stark naked"]}, {"answer": "starring", "hint": "synonyms for starring", "clues": ["leading", "stellar", "prima", "star", "starring"]}, {"answer": "starved", "hint": "synonyms for starved", "clues": ["famished", "sharp-set", "ravenous", "esurient", "starving", "starved"]}, {"answer": "stately", "hint": "synonyms for stately", "clues": ["formal", "imposing", "courtly", "baronial", "noble", "statuesque", "stately"]}, {"answer": "static", "hint": "synonyms for static", "clues": ["unchanging", "electrostatic", "stable", "motionless", "inactive", "still", "static"]}, {"answer": "steadfast", "hint": "synonyms for steadfast", "clues": ["staunch", "unwavering", "unfaltering", "unshakable", "unbendable", "steady", "unswerving", "stiff", "firm", "steadfast"]}, {"answer": "steady", "hint": "synonyms for steady", "clues": ["steadfast", "regular", "unwavering", "unfaltering", "unshakable", "unbendable", "stiff", "firm", "unfluctuating", "steady"]}, {"answer": "stealthy", "hint": "synonyms for stealthy", "clues": ["sneaky", "furtive", "surreptitious", "stealthy"]}, {"answer": "steamed", "hint": "synonyms for steamed", "clues": ["riled", "pissed off", "miffed", "nettled", "peeved", "stung", "pissed", "annoyed", "irritated", "steamed"]}, {"answer": "steamy", "hint": "synonyms for steamy", "clues": ["sticky", "steaming", "horny", "ruttish", "turned on", "muggy", "randy", "aroused", "steamy"]}, {"answer": "steep", "hint": "synonyms for steep", "clues": ["outrageous", "extortionate", "unconscionable", "usurious", "exorbitant", "steep"]}, {"answer": "stellar", "hint": "synonyms for stellar", "clues": ["astral", "starring", "prima", "star", "leading", "stellar"]}, {"answer": "step-by-step", "hint": "synonyms for step-by-step", "clues": ["in small stages", "stepwise", "bit-by-bit", "piecemeal", "step-by-step"]}, {"answer": "stepwise", "hint": "synonyms for stepwise", "clues": ["step-by-step", "in small stages", "bit-by-bit", "piecemeal", "stepwise"]}, {"answer": "sterile", "hint": "synonyms for sterile", "clues": ["aseptic", "unfertile", "uninspired", "uninventive", "unimaginative", "sterile"]}, {"answer": "stern", "hint": "synonyms for stern", "clues": ["unforgiving", "grim", "unappeasable", "austere", "relentless", "unrelenting", "severe", "stark", "strict", "exacting", "inexorable", "stern"]}, {"answer": "stick-in-the-mud", "hint": "synonyms for stick-in-the-mud", "clues": ["mossy", "stodgy", "fogyish", "moss-grown", "stick-in-the-mud"]}, {"answer": "sticking", "hint": "synonyms for sticking", "clues": ["relieved", "projecting", "sticking out", "projected", "jutting", "protruding", "sticking"]}, {"answer": "sticking_out", "hint": "synonyms for sticking out", "clues": ["relieved", "projecting", "sticking", "projected", "jutting", "protruding", "sticking out"]}, {"answer": "sticky", "hint": "synonyms for sticky", "clues": ["awkward", "glutinous", "unenviable", "viscous", "steamy", "pasty", "gluey", "viscid", "embarrassing", "mucilaginous", "gummy", "muggy", "sticky"]}, {"answer": "stiff", "hint": "synonyms for stiff", "clues": ["pie-eyed", "fuddled", "crocked", "unshakable", "unbendable", "soused", "sloshed", "sozzled", "blotto", "squiffy", "plastered", "starchy", "blind drunk", "loaded", "potent", "strong", "unfaltering", "steady", "firm", "unwavering", "tight", "rigid", "besotted", "buckram", "soaked", "wet", "slopped", "steadfast", "smashed", "cockeyed", "pixilated", "pissed", "stiff"]}, {"answer": "still", "hint": "synonyms for still", "clues": ["quiet", "soundless", "silent", "placid", "motionless", "noneffervescent", "static", "inactive", "unruffled", "tranquil", "smooth", "still"]}, {"answer": "stingy", "hint": "synonyms for stingy", "clues": ["meagre", "meagerly", "ungenerous", "scrimpy", "stingy"]}, {"answer": "stinking", "hint": "synonyms for stinking", "clues": ["funky", "rotten", "smelly", "foul", "shitty", "foetid", "stinky", "icky", "lousy", "foul-smelling", "noisome", "crappy", "ill-scented", "stinking"]}, {"answer": "stinky", "hint": "synonyms for stinky", "clues": ["malodourous", "rotten", "unpleasant-smelling", "shitty", "stinking", "icky", "lousy", "ill-smelling", "crappy", "stinky"]}, {"answer": "stinting", "hint": "synonyms for stinting", "clues": ["frugal", "scotch", "economical", "sparing", "stinting"]}, {"answer": "stipendiary", "hint": "synonyms for stipendiary", "clues": ["compensable", "salaried", "compensated", "remunerative", "paying", "stipendiary"]}, {"answer": "stippled", "hint": "synonyms for stippled", "clues": ["flecked", "speckled", "dotted", "stippled"]}, {"answer": "stirred", "hint": "synonyms for stirred", "clues": ["stimulated", "moved", "stirred up", "touched", "affected", "aroused", "stirred"]}, {"answer": "stock", "hint": "synonyms for stock", "clues": ["old-hat", "timeworn", "trite", "shopworn", "commonplace", "standard", "well-worn", "hackneyed", "banal", "threadbare", "tired", "stock"]}, {"answer": "stocky", "hint": "synonyms for stocky", "clues": ["thickset", "thick", "heavyset", "compact", "stocky"]}, {"answer": "stodgy", "hint": "synonyms for stodgy", "clues": ["mossy", "fogyish", "moss-grown", "stick-in-the-mud", "stuffy", "stodgy"]}, {"answer": "stone-broke", "hint": "synonyms for stone-broke", "clues": ["broke", "stony-broke", "bust", "skint"]}, {"answer": "stone-gray", "hint": "synonyms for stone-gray", "clues": ["slaty-gray", "slaty", "stone-grey", "slate-grey"]}, {"answer": "stone-grey", "hint": "synonyms for stone-grey", "clues": ["slaty-gray", "slaty", "stone-gray", "slate-grey"]}, {"answer": "stony", "hint": "synonyms for stony", "clues": ["rocklike", "bouldered", "flint", "obdurate", "granitelike", "granitic", "bouldery", "rocky", "stony"]}, {"answer": "stony-broke", "hint": "synonyms for stony-broke", "clues": ["broke", "bust", "skint", "stone-broke"]}, {"answer": "stooped", "hint": "synonyms for stooped", "clues": ["stooping", "hunched", "crooked", "round-backed", "round-shouldered", "stooped"]}, {"answer": "stooping", "hint": "synonyms for stooping", "clues": ["stooped", "hunched", "crooked", "round-backed", "round-shouldered", "stooping"]}, {"answer": "storm-tossed", "hint": "synonyms for storm-tossed", "clues": ["tempest-tost", "tempest-swept", "buffeted", "tempest-tossed", "storm-tossed"]}, {"answer": "stout", "hint": "synonyms for stout", "clues": ["portly", "hardy", "stalwart", "sturdy", "stout"]}, {"answer": "straight", "hint": "synonyms for straight", "clues": ["consecutive", "straightforward", "neat", "unbent", "uncoiled", "true", "square", "unbowed", "full-strength", "straight"]}, {"answer": "straight-from-the-shoulder", "hint": "synonyms for straight-from-the-shoulder", "clues": ["outspoken", "frank", "candid", "plainspoken", "free-spoken", "blunt", "forthright", "point-blank", "straight-from-the-shoulder"]}, {"answer": "straight-laced", "hint": "synonyms for straight-laced", "clues": ["victorian", "prissy", "straightlaced", "prudish", "tight-laced", "puritanical", "square-toed", "priggish", "prim"]}, {"answer": "straightlaced", "hint": "synonyms for straightlaced", "clues": ["victorian", "prissy", "straight-laced", "prudish", "puritanical", "square-toed", "priggish", "prim"]}, {"answer": "strained", "hint": "synonyms for strained", "clues": ["laboured", "agonistic", "constrained", "forced", "strained"]}, {"answer": "strait-laced", "hint": "synonyms for strait-laced", "clues": ["victorian", "prissy", "straight-laced", "prudish", "puritanical", "square-toed", "priggish", "prim"]}, {"answer": "straitlaced", "hint": "synonyms for straitlaced", "clues": ["victorian", "prissy", "straight-laced", "prudish", "puritanical", "square-toed", "priggish", "prim"]}, {"answer": "strapping", "hint": "synonyms for strapping", "clues": ["husky", "burly", "buirdly", "beefy", "strapping"]}, {"answer": "stratified", "hint": "synonyms for stratified", "clues": ["bedded", "ranked", "class-conscious", "graded", "stratified"]}, {"answer": "stricken", "hint": "synonyms for stricken", "clues": ["struck", "smitten", "afflicted", "laid low", "stricken"]}, {"answer": "strict", "hint": "synonyms for strict", "clues": ["rigid", "nonindulgent", "hard-and-fast", "rigorous", "stern", "exacting", "strict"]}, {"answer": "strident", "hint": "synonyms for strident", "clues": ["continuant", "clamant", "shrill", "spirant", "raucous", "clamorous", "vociferous", "fricative", "sibilant", "blatant", "strident"]}, {"answer": "striking", "hint": "synonyms for striking", "clues": ["outstanding", "spectacular", "salient", "prominent", "dramatic", "striking"]}, {"answer": "stringy", "hint": "synonyms for stringy", "clues": ["wiry", "thready", "unchewable", "ropy", "fibrous", "sinewy", "stringy"]}, {"answer": "strong", "hint": "synonyms for strong", "clues": ["unattackable", "inviolable", "hard", "potent", "substantial", "solid", "warm", "impregnable", "unassailable", "stiff", "firm", "secure", "strong"]}, {"answer": "strung-out", "hint": "synonyms for strung-out", "clues": ["dependant", "drug-addicted", "hooked", "strung-out"]}, {"answer": "stuck-up", "hint": "synonyms for stuck-up", "clues": ["snooty", "snotty", "uppish", "persnickety", "too big for one's breeches", "bigheaded", "snot-nosed", "stuck-up"]}, {"answer": "stuffy", "hint": "synonyms for stuffy", "clues": ["stodgy", "airless", "close", "unaired", "stuffy"]}, {"answer": "stumpy", "hint": "synonyms for stumpy", "clues": ["squatty", "low-set", "squat", "chunky", "dumpy", "stumpy"]}, {"answer": "stung", "hint": "synonyms for stung", "clues": ["riled", "pissed off", "miffed", "nettled", "steamed", "peeved", "pissed", "annoyed", "irritated", "stung"]}, {"answer": "stunned", "hint": "synonyms for stunned", "clues": ["stupefied", "knocked out", "astonied", "astounded", "amazed", "out", "dazed", "stupid", "kayoed", "stunned"]}, {"answer": "stupefied", "hint": "synonyms for stupefied", "clues": ["flabbergasted", "stunned", "dumbstruck", "dumbfounded", "dazed", "stupid", "thunderstruck", "dumbstricken", "stupefied"]}, {"answer": "stupid", "hint": "synonyms for stupid", "clues": ["stunned", "unintelligent", "dazed", "stupefied", "stupid"]}, {"answer": "stuporous", "hint": "synonyms for stuporous", "clues": ["groggy", "logy", "dazed", "foggy", "stuporous"]}, {"answer": "sturdy", "hint": "synonyms for sturdy", "clues": ["hardy", "stout", "inflexible", "tough", "stalwart", "uncompromising", "sturdy"]}, {"answer": "suave", "hint": "synonyms for suave", "clues": ["smooth", "debonnaire", "politic", "bland", "suave"]}, {"answer": "subaltern", "hint": "synonyms for subaltern", "clues": ["lower-ranking", "secondary", "junior-grade", "lowly", "petty", "subaltern"]}, {"answer": "subaquatic", "hint": "synonyms for subaquatic", "clues": ["submersed", "underwater", "semiaquatic", "subaqueous", "subaquatic"]}, {"answer": "subaqueous", "hint": "synonyms for subaqueous", "clues": ["subaquatic", "submerged", "underwater", "subaqueous"]}, {"answer": "subdued", "hint": "synonyms for subdued", "clues": ["muted", "quiet", "dim", "low-keyed", "hushed", "soft", "subdued"]}, {"answer": "sublime", "hint": "synonyms for sublime", "clues": ["rarified", "empyreal", "idealistic", "noble-minded", "grand", "reverend", "elevated", "high-flown", "exalted", "lofty", "high-minded", "sublime"]}, {"answer": "submerged", "hint": "synonyms for submerged", "clues": ["subaquatic", "submersed", "underwater", "subaqueous"]}, {"answer": "submersed", "hint": "synonyms for submersed", "clues": ["subaquatic", "underwater", "submerged", "subaqueous"]}, {"answer": "subservient", "hint": "synonyms for subservient", "clues": ["submissive", "implemental", "slavish", "instrumental", "subservient"]}, {"answer": "substantial", "hint": "synonyms for substantial", "clues": ["satisfying", "real", "hearty", "significant", "substantive", "strong", "solid", "material", "square", "substantial"]}, {"answer": "substantiating", "hint": "synonyms for substantiating", "clues": ["verificatory", "verifying", "validating", "corroboratory", "confirming", "substantiative", "collateral", "validatory", "confirmative", "corroborative", "confirmatory"]}, {"answer": "substantiative", "hint": "synonyms for substantiative", "clues": ["verificatory", "verifying", "substantiating", "validating", "corroboratory", "confirming", "collateral", "validatory", "confirmative", "corroborative", "confirmatory"]}, {"answer": "substitute", "hint": "synonyms for substitute", "clues": ["ersatz", "alternative", "utility", "substitute"]}, {"answer": "successive", "hint": "synonyms for successive", "clues": ["sequential", "consecutive", "serial", "sequent", "successive"]}, {"answer": "suggestive", "hint": "synonyms for suggestive", "clues": ["indicatory", "revelatory", "indicative", "significative", "implicative", "suggestive"]}, {"answer": "sulfurous", "hint": "synonyms for sulfurous", "clues": ["sulphurous", "acrid", "acerbic", "blistering", "virulent", "sultry", "caustic", "bitter", "stifling", "vitriolic", "acerb", "sulfurous"]}, {"answer": "sulky", "hint": "synonyms for sulky", "clues": ["huffish", "sluggish", "gloomy", "glooming", "gloomful", "sulky"]}, {"answer": "sullen", "hint": "synonyms for sullen", "clues": ["sour", "lowering", "saturnine", "morose", "threatening", "dark", "glum", "dour", "moody", "heavy", "sullen"]}, {"answer": "sulphurous", "hint": "synonyms for sulphurous", "clues": ["acrid", "acerbic", "blistering", "virulent", "sultry", "caustic", "bitter", "stifling", "sulfurous", "vitriolic", "acerb", "sulphurous"]}, {"answer": "sultry", "hint": "synonyms for sultry", "clues": ["stifling", "sulphurous", "sensual", "sulfurous", "sultry"]}, {"answer": "summary", "hint": "synonyms for summary", "clues": ["compendious", "drumhead", "succinct", "compact", "summary"]}, {"answer": "sumptuous", "hint": "synonyms for sumptuous", "clues": ["deluxe", "princely", "luxurious", "grand", "opulent", "gilded", "sumptuous"]}, {"answer": "sunbaked", "hint": "synonyms for sunbaked", "clues": ["baked", "parched", "scorched", "adust", "sunbaked"]}, {"answer": "sundry", "hint": "synonyms for sundry", "clues": ["assorted", "miscellaneous", "motley", "mixed", "sundry"]}, {"answer": "sunk", "hint": "synonyms for sunk", "clues": ["washed-up", "done for", "undone", "ruined", "sunk"]}, {"answer": "super", "hint": "synonyms for super", "clues": ["first-rate", "tops", "crack", "topnotch", "ace", "tiptop", "super"]}, {"answer": "superannuated", "hint": "synonyms for superannuated", "clues": ["over-the-hill", "out-of-date", "overaged", "outdated", "superannuated"]}, {"answer": "supercilious", "hint": "synonyms for supercilious", "clues": ["swaggering", "sneering", "imperious", "sniffy", "lordly", "overbearing", "haughty", "prideful", "snide", "disdainful", "supercilious"]}, {"answer": "supererogatory", "hint": "synonyms for supererogatory", "clues": ["extra", "redundant", "surplus", "supernumerary", "superfluous", "spare", "excess", "supererogatory"]}, {"answer": "superfluous", "hint": "synonyms for superfluous", "clues": ["purposeless", "redundant", "supernumerary", "pointless", "otiose", "senseless", "excess", "supererogatory", "wasted", "extra", "surplus", "spare", "superfluous"]}, {"answer": "supernumerary", "hint": "synonyms for supernumerary", "clues": ["supererogatory", "extra", "redundant", "surplus", "superfluous", "spare", "excess", "supernumerary"]}, {"answer": "superpatriotic", "hint": "synonyms for superpatriotic", "clues": ["chauvinistic", "jingoistic", "nationalistic", "ultranationalistic", "flag-waving", "superpatriotic"]}, {"answer": "supersensitised", "hint": "synonyms for supersensitised", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "supersensitive", "hint": "synonyms for supersensitive", "clues": ["hypersensitised", "sensitized", "supersensitized", "allergic"]}, {"answer": "supersensitized", "hint": "synonyms for supersensitized", "clues": ["hypersensitised", "supersensitive", "sensitized", "allergic"]}, {"answer": "supple", "hint": "synonyms for supple", "clues": ["lithe", "lithesome", "limber", "lissome", "sylphlike", "slender", "svelte", "supple"]}, {"answer": "supposed", "hint": "synonyms for supposed", "clues": ["suppositional", "alleged", "so-called", "hypothetical", "conjectural", "divinatory", "suppositious", "supposed"]}, {"answer": "suppositional", "hint": "synonyms for suppositional", "clues": ["supposed", "supposititious", "divinatory", "hypothetical", "conjectural", "suppositional"]}, {"answer": "suppositious", "hint": "synonyms for suppositious", "clues": ["suppositional", "supposed", "divinatory", "conjectural", "hypothetical", "supposititious"]}, {"answer": "supposititious", "hint": "synonyms for supposititious", "clues": ["suppositional", "supposed", "divinatory", "suppositious", "hypothetical", "conjectural"]}, {"answer": "surpassing", "hint": "synonyms for surpassing", "clues": ["exceeding", "transcendent", "olympian", "exceptional", "prodigious", "surpassing"]}, {"answer": "surplus", "hint": "synonyms for surplus", "clues": ["supererogatory", "extra", "redundant", "supernumerary", "superfluous", "spare", "excess", "surplus"]}, {"answer": "surreal", "hint": "synonyms for surreal", "clues": ["phantasmagorical", "dreamlike", "surrealistic", "surreal"]}, {"answer": "surreptitious", "hint": "synonyms for surreptitious", "clues": ["stealthy", "clandestine", "hush-hush", "hugger-mugger", "undercover", "secret", "underground", "hole-and-corner", "cloak-and-dagger", "sneaky", "furtive", "surreptitious"]}, {"answer": "suspect", "hint": "synonyms for suspect", "clues": ["fishy", "funny", "shady", "suspicious", "suspect"]}, {"answer": "suspicious", "hint": "synonyms for suspicious", "clues": ["untrusting", "mistrustful", "suspect", "shady", "funny", "fishy", "leery", "wary", "suspicious"]}, {"answer": "svelte", "hint": "synonyms for svelte", "clues": ["lithe", "refined", "lissom", "urbane", "lithesome", "slight", "sylphlike", "slim", "slender", "supple", "polished", "svelte"]}, {"answer": "swaggering", "hint": "synonyms for swaggering", "clues": ["swashbuckling", "imperious", "sniffy", "lordly", "overbearing", "haughty", "prideful", "supercilious", "disdainful", "swaggering"]}, {"answer": "swampy", "hint": "synonyms for swampy", "clues": ["miry", "sloppy", "marshy", "squashy", "muddy", "quaggy", "sloughy", "soggy", "waterlogged", "mucky", "boggy", "swampy"]}, {"answer": "sweet", "hint": "synonyms for sweet", "clues": ["gratifying", "sweet-smelling", "unfermented", "honeyed", "sweetened", "dulcet", "angelic", "mellifluous", "sweet-scented", "odorous", "seraphic", "sugared", "cherubic", "mellisonant", "scented", "sweet-flavored", "fresh", "perfumed", "odoriferous", "sweet"]}, {"answer": "sweet-scented", "hint": "synonyms for sweet-scented", "clues": ["sweet", "sweet-smelling", "perfumed", "odorous", "odoriferous", "scented", "sweet-scented"]}, {"answer": "sweet-smelling", "hint": "synonyms for sweet-smelling", "clues": ["sweet", "sweet-scented", "perfumed", "odorous", "odoriferous", "scented", "sweet-smelling"]}, {"answer": "swell", "hint": "synonyms for swell", "clues": ["bang-up", "smashing", "slap-up", "cracking", "keen", "corking", "dandy", "great", "neat", "bully", "not bad", "peachy", "groovy", "nifty", "swell"]}, {"answer": "swinish", "hint": "synonyms for swinish", "clues": ["oafish", "hoggish", "loutish", "neanderthal", "boorish", "piggy", "piggish", "porcine", "swinish"]}, {"answer": "swollen", "hint": "synonyms for swollen", "clues": ["vain", "conceited", "egotistic", "self-conceited", "swollen-headed", "swollen"]}, {"answer": "swollen-headed", "hint": "synonyms for swollen-headed", "clues": ["vain", "egotistic", "conceited", "self-conceited", "swollen", "swollen-headed"]}, {"answer": "swooning", "hint": "synonyms for swooning", "clues": ["light", "lightheaded", "faint", "swooning"]}, {"answer": "sybaritic", "hint": "synonyms for sybaritic", "clues": ["epicurean", "voluptuous", "luxuriant", "luxurious", "voluptuary", "sybaritic"]}, {"answer": "sycophantic", "hint": "synonyms for sycophantic", "clues": ["toadyish", "fawning", "bootlicking", "obsequious", "sycophantic"]}, {"answer": "sylphlike", "hint": "synonyms for sylphlike", "clues": ["lithe", "lissome", "lithesome", "slender", "supple", "svelte", "sylphlike"]}, {"answer": "sympathetic", "hint": "synonyms for sympathetic", "clues": ["benevolent", "likable", "openhearted", "charitable", "kindly", "good-hearted", "large-hearted", "appealing", "harmonic", "sympathetic"]}, {"answer": "synthetic", "hint": "synonyms for synthetic", "clues": ["synthetical", "man-made", "semisynthetic", "celluloid"]}, {"answer": "syrupy", "hint": "synonyms for syrupy", "clues": ["treacly", "honied", "viscous", "honeyed", "cloying", "saccharine", "syrupy"]}, {"answer": "taboo", "hint": "synonyms for taboo", "clues": ["tabu", "verboten", "proscribed", "forbidden", "out", "prohibited", "taboo"]}, {"answer": "tabu", "hint": "synonyms for tabu", "clues": ["verboten", "proscribed", "forbidden", "out", "taboo", "prohibited", "tabu"]}, {"answer": "tacky", "hint": "synonyms for tacky", "clues": ["flash", "loud", "gimcrack", "tatty", "tawdry", "brassy", "trashy", "meretricious", "cheap", "garish", "gaudy", "tacky"]}, {"answer": "tailor-made", "hint": "synonyms for tailor-made", "clues": ["bespoke", "made-to-order", "tailored", "tailor-made"]}, {"answer": "tailored", "hint": "synonyms for tailored", "clues": ["bespoke", "tailor-made", "trim", "made-to-order", "tailored"]}, {"answer": "taken_with", "hint": "synonyms for taken with", "clues": ["soft on", "potty", "in love", "enamored", "smitten", "infatuated", "taken with"]}, {"answer": "talkative", "hint": "synonyms for talkative", "clues": ["blabbermouthed", "gabby", "blabby", "expansive", "bigmouthed", "loquacious", "talky", "chatty", "garrulous", "talkative"]}, {"answer": "talky", "hint": "synonyms for talky", "clues": ["loquacious", "gabby", "chatty", "talkative", "garrulous", "talky"]}, {"answer": "tall", "hint": "synonyms for tall", "clues": ["marvellous", "improbable", "magniloquent", "grandiloquent", "tall"]}, {"answer": "tangled", "hint": "synonyms for tangled", "clues": ["involved", "convoluted", "knotty", "tortuous", "tangled"]}, {"answer": "tangy", "hint": "synonyms for tangy", "clues": ["lemony", "lemonlike", "sourish", "tart", "tangy"]}, {"answer": "tapering", "hint": "synonyms for tapering", "clues": ["narrowing", "tapered", "dwindling", "tapering off", "tapering"]}, {"answer": "tart", "hint": "synonyms for tart", "clues": ["sharp", "lemony", "tangy", "sharp-worded", "sourish", "lemonlike", "tart"]}, {"answer": "tatterdemalion", "hint": "synonyms for tatterdemalion", "clues": ["dilapidated", "tattered", "derelict", "tumble-down", "ramshackle", "broken-down", "bedraggled", "tatterdemalion"]}, {"answer": "tatty", "hint": "synonyms for tatty", "clues": ["flash", "loud", "gimcrack", "garish", "tawdry", "tacky", "gaudy", "brassy", "moth-eaten", "trashy", "cheap", "shabby", "meretricious", "ratty", "tatty"]}, {"answer": "taunting", "hint": "synonyms for taunting", "clues": ["mocking", "derisive", "gibelike", "jeering", "taunting"]}, {"answer": "tawdry", "hint": "synonyms for tawdry", "clues": ["cheapjack", "flash", "loud", "gimcrack", "shoddy", "tatty", "brassy", "trashy", "tacky", "meretricious", "cheap", "garish", "gaudy", "tawdry"]}, {"answer": "tearaway", "hint": "synonyms for tearaway", "clues": ["impetuous", "impulsive", "hotheaded", "madcap", "brainish", "tearaway"]}, {"answer": "tearful", "hint": "synonyms for tearful", "clues": ["weeping", "dolourous", "lachrymose", "tearful"]}, {"answer": "tearing", "hint": "synonyms for tearing", "clues": ["violent", "fierce", "trigger-happy", "vehement", "tearing"]}, {"answer": "teasing", "hint": "synonyms for teasing", "clues": ["quizzical", "nettlesome", "galling", "annoying", "plaguy", "vexing", "pesky", "pestiferous", "irritating", "bothersome", "vexatious", "pestering", "mocking", "teasing"]}, {"answer": "techy", "hint": "synonyms for techy", "clues": ["cranky", "pettish", "nettlesome", "petulant", "fractious", "irritable", "tetchy", "testy", "scratchy", "peckish", "peevish"]}, {"answer": "tedious", "hint": "synonyms for tedious", "clues": ["verbose", "irksome", "tiresome", "dull", "wearisome", "ho-hum", "long-winded", "wordy", "boring", "deadening", "windy", "slow", "tedious"]}, {"answer": "teensy", "hint": "synonyms for teensy", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee"]}, {"answer": "teensy-weensy", "hint": "synonyms for teensy-weensy", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee"]}, {"answer": "teentsy", "hint": "synonyms for teentsy", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "bittie", "teeny", "itty-bitty", "wee", "teentsy"]}, {"answer": "teeny", "hint": "synonyms for teeny", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "itty-bitty", "wee", "teeny"]}, {"answer": "teeny-weeny", "hint": "synonyms for teeny-weeny", "clues": ["bitty", "itsy-bitsy", "weeny", "teentsy", "bittie", "teensy-weensy", "teeny", "itty-bitty", "wee"]}, {"answer": "telling", "hint": "synonyms for telling", "clues": ["impressive", "weighty", "cogent", "revealing", "telltale", "telling"]}, {"answer": "tempest-swept", "hint": "synonyms for tempest-swept", "clues": ["storm-tossed", "tempest-tost", "buffeted", "tempest-tossed", "tempest-swept"]}, {"answer": "tempest-tossed", "hint": "synonyms for tempest-tossed", "clues": ["storm-tossed", "tempest-tost", "tempest-swept", "buffeted", "tempest-tossed"]}, {"answer": "tempest-tost", "hint": "synonyms for tempest-tost", "clues": ["storm-tossed", "tempest-swept", "buffeted", "tempest-tossed", "tempest-tost"]}, {"answer": "tempestuous", "hint": "synonyms for tempestuous", "clues": ["wild", "stormy", "furious", "raging", "angry", "tempestuous"]}, {"answer": "tempting", "hint": "synonyms for tempting", "clues": ["enticing", "beguiling", "tantalizing", "alluring", "tempting"]}, {"answer": "tenacious", "hint": "synonyms for tenacious", "clues": ["retentive", "long", "coherent", "dogged", "recollective", "dour", "pertinacious", "persistent", "unyielding", "tenacious"]}, {"answer": "tender", "hint": "synonyms for tender", "clues": ["cranky", "tippy", "sore", "sensitive", "warm", "lovesome", "untoughened", "raw", "fond", "affectionate", "tender"]}, {"answer": "tending", "hint": "synonyms for tending", "clues": ["apt", "given", "minded", "disposed", "tending"]}, {"answer": "tensile", "hint": "synonyms for tensile", "clues": ["tractile", "ductile", "pliable", "malleable", "pliant", "tensile"]}, {"answer": "tentative", "hint": "synonyms for tentative", "clues": ["probationary", "provisionary", "doubtful", "tentative"]}, {"answer": "tenuous", "hint": "synonyms for tenuous", "clues": ["slight", "fragile", "thin", "flimsy", "tenuous"]}, {"answer": "terminated", "hint": "synonyms for terminated", "clues": ["all over", "concluded", "over", "ended", "complete", "terminated"]}, {"answer": "terrene", "hint": "synonyms for terrene", "clues": ["terrestrial", "mundane", "telluric", "tellurian", "terrene"]}, {"answer": "terrestrial", "hint": "synonyms for terrestrial", "clues": ["sublunary", "planetary", "tellurian", "mundane", "terrene", "telluric", "terrestrial"]}, {"answer": "terrible", "hint": "synonyms for terrible", "clues": ["abominable", "dreaded", "fearful", "severe", "wicked", "tremendous", "frightening", "horrific", "dire", "horrendous", "fearsome", "atrocious", "dread", "unspeakable", "painful", "direful", "dreadful", "frightful", "awful", "terrible"]}, {"answer": "terrific", "hint": "synonyms for terrific", "clues": ["marvellous", "howling", "wondrous", "grand", "fantastic", "rattling", "terrifying", "tremendous", "wonderful", "terrific"]}, {"answer": "terrified", "hint": "synonyms for terrified", "clues": ["frightened", "panic-struck", "panicked", "panic-stricken", "panicky", "terrified"]}, {"answer": "tested", "hint": "synonyms for tested", "clues": ["tried and true", "time-tested", "tried", "well-tried", "tested"]}, {"answer": "testy", "hint": "synonyms for testy", "clues": ["cranky", "pettish", "techy", "nettlesome", "petulant", "fractious", "irritable", "scratchy", "peckish", "peevish", "testy"]}, {"answer": "tetchy", "hint": "synonyms for tetchy", "clues": ["cranky", "pettish", "techy", "nettlesome", "petulant", "fractious", "irritable", "testy", "scratchy", "peckish", "peevish"]}, {"answer": "thankless", "hint": "synonyms for thankless", "clues": ["ungrateful", "ungratifying", "unthankful", "unappreciated", "thankless"]}, {"answer": "therapeutic", "hint": "synonyms for therapeutic", "clues": ["remedial", "curative", "sanative", "therapeutical", "alterative", "healing"]}, {"answer": "thick", "hint": "synonyms for thick", "clues": ["boneheaded", "loggerheaded", "duncish", "compact", "chummy", "wooden-headed", "deep", "dense", "buddy-buddy", "thickset", "thick-skulled", "stocky", "slurred", "fatheaded", "thickheaded", "duncical", "heavyset", "blockheaded", "thick"]}, {"answer": "thick-skulled", "hint": "synonyms for thick-skulled", "clues": ["boneheaded", "duncish", "wooden-headed", "thick", "fatheaded", "thickheaded", "duncical", "loggerheaded", "blockheaded", "thick-skulled"]}, {"answer": "thickheaded", "hint": "synonyms for thickheaded", "clues": ["boneheaded", "duncish", "wooden-headed", "thick-skulled", "thick", "fatheaded", "duncical", "loggerheaded", "blockheaded", "thickheaded"]}, {"answer": "thickset", "hint": "synonyms for thickset", "clues": ["stocky", "thick", "heavyset", "compact", "thickset"]}, {"answer": "thin", "hint": "synonyms for thin", "clues": ["slight", "tenuous", "lean", "sparse", "fragile", "slender", "flimsy", "thin"]}, {"answer": "thorny", "hint": "synonyms for thorny", "clues": ["bristly", "barbed", "bristled", "burred", "setose", "briary", "barbellate", "setaceous", "prickly", "burry", "spiny", "briery", "thorny"]}, {"answer": "thoroughgoing", "hint": "synonyms for thoroughgoing", "clues": ["sodding", "exhaustive", "staring", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "arrant", "thorough", "unadulterated", "complete", "thoroughgoing"]}, {"answer": "thoughtful", "hint": "synonyms for thoughtful", "clues": ["attentive", "heedful", "serious-minded", "paying attention", "thoughtful"]}, {"answer": "thousand", "hint": "synonyms for thousand", "clues": ["1000", "one thousand", "k", "m", "thousand"]}, {"answer": "threadbare", "hint": "synonyms for threadbare", "clues": ["old-hat", "trite", "shopworn", "commonplace", "well-worn", "hackneyed", "banal", "timeworn", "stock", "tired", "threadbare"]}, {"answer": "threadlike", "hint": "synonyms for threadlike", "clues": ["filamentous", "thready", "filiform", "filamentlike", "threadlike"]}, {"answer": "thready", "hint": "synonyms for thready", "clues": ["threadlike", "ropy", "filiform", "filamentous", "filamentlike", "stringy", "thready"]}, {"answer": "threatening", "hint": "synonyms for threatening", "clues": ["sullen", "ominous", "sinister", "forbidding", "lowering", "minacious", "baleful", "minatory", "menacing", "heavy", "threatening"]}, {"answer": "three-dimensional", "hint": "synonyms for three-dimensional", "clues": ["3-dimensional", "three-d", "third-dimensional", "cubic"]}, {"answer": "three-fold", "hint": "synonyms for three-fold", "clues": ["treble", "dual", "double", "twofold", "triple", "threefold"]}, {"answer": "threefold", "hint": "synonyms for threefold", "clues": ["treble", "three-fold", "dual", "double", "twofold", "triple"]}, {"answer": "threepenny", "hint": "synonyms for threepenny", "clues": ["two-a-penny", "sixpenny", "tuppeny", "twopenny-halfpenny", "twopenny", "threepenny"]}, {"answer": "thriving", "hint": "synonyms for thriving", "clues": ["prospering", "flourishing", "prosperous", "booming", "roaring", "palmy", "thriving"]}, {"answer": "thumping", "hint": "synonyms for thumping", "clues": ["humongous", "whopping", "walloping", "banging", "thumping"]}, {"answer": "thunderstruck", "hint": "synonyms for thunderstruck", "clues": ["dumbfounded", "flabbergasted", "stupefied", "dumbstricken", "dumbstruck", "thunderstruck"]}, {"answer": "thwarted", "hint": "synonyms for thwarted", "clues": ["defeated", "disappointed", "discomfited", "foiled", "frustrated", "thwarted"]}, {"answer": "tidy", "hint": "synonyms for tidy", "clues": ["kempt", "respectable", "goodish", "healthy", "sizable", "hefty", "goodly", "tidy"]}, {"answer": "tied", "hint": "synonyms for tied", "clues": ["trussed", "fastened", "even", "level", "laced", "tied"]}, {"answer": "tight", "hint": "synonyms for tight", "clues": ["besotted", "mean", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "miserly", "rigorous", "taut", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "mingy", "smashed", "plastered", "cockeyed", "blind drunk", "loaded", "stringent", "nasty", "pixilated", "compressed", "pissed", "stiff", "close", "tight"]}, {"answer": "tight-laced", "hint": "synonyms for tight-laced", "clues": ["victorian", "prissy", "straight-laced", "prudish", "puritanical", "square-toed", "priggish", "prim"]}, {"answer": "tightlipped", "hint": "synonyms for tightlipped", "clues": ["secretive", "closelipped", "closemouthed", "close", "tightlipped"]}, {"answer": "tilted", "hint": "synonyms for tilted", "clues": ["canted", "atilt", "leaning", "tipped", "tilted"]}, {"answer": "timeworn", "hint": "synonyms for timeworn", "clues": ["old-hat", "trite", "shopworn", "commonplace", "well-worn", "hackneyed", "banal", "threadbare", "stock", "tired", "timeworn"]}, {"answer": "timid", "hint": "synonyms for timid", "clues": ["fainthearted", "diffident", "faint", "unsure", "shy", "timid"]}, {"answer": "tinny", "hint": "synonyms for tinny", "clues": ["crummy", "cheesy", "bum", "sleazy", "punk", "cheap", "chintzy", "tinny"]}, {"answer": "tiny", "hint": "synonyms for tiny", "clues": ["lilliputian", "petite", "flyspeck", "diminutive", "bantam", "midget", "tiny"]}, {"answer": "tipped", "hint": "synonyms for tipped", "clues": ["canted", "atilt", "leaning", "tilted", "tipped"]}, {"answer": "tiptop", "hint": "synonyms for tiptop", "clues": ["first-rate", "tops", "top-notch", "crack", "ace", "super", "tiptop"]}, {"answer": "tired", "hint": "synonyms for tired", "clues": ["old-hat", "timeworn", "trite", "shopworn", "commonplace", "well-worn", "hackneyed", "banal", "threadbare", "stock", "tired"]}, {"answer": "tired_of", "hint": "synonyms for tired of", "clues": ["sick of", "fed up", "sick", "disgusted", "tired of"]}, {"answer": "tireless", "hint": "synonyms for tireless", "clues": ["hardworking", "unflagging", "industrious", "unwearying", "untiring", "indefatigable", "tireless"]}, {"answer": "tiresome", "hint": "synonyms for tiresome", "clues": ["irksome", "tedious", "dull", "wearisome", "ho-hum", "boring", "deadening", "slow", "tiresome"]}, {"answer": "toadyish", "hint": "synonyms for toadyish", "clues": ["fawning", "bootlicking", "sycophantic", "obsequious", "toadyish"]}, {"answer": "togged_up", "hint": "synonyms for togged up", "clues": ["spruced up", "spiffed up", "dressed to the nines", "dressed", "dressed to kill", "dolled up", "dressed-up", "togged up"]}, {"answer": "toilsome", "hint": "synonyms for toilsome", "clues": ["laborious", "operose", "backbreaking", "grueling", "arduous", "punishing", "hard", "heavy", "toilsome"]}, {"answer": "tolerant", "hint": "synonyms for tolerant", "clues": ["liberal", "patient of", "resistant", "large-minded", "kind", "broad", "tolerant"]}, {"answer": "tonic", "hint": "synonyms for tonic", "clues": ["brisk", "accented", "fresh", "refreshing", "refreshful", "bracing", "tonal", "tonic"]}, {"answer": "too-generous", "hint": "synonyms for too-generous", "clues": ["unsparing", "lavish", "overgenerous", "unstinting", "munificent", "unstinted", "too-generous"]}, {"answer": "too_big_for_one's_breeches", "hint": "synonyms for too big for one's breeches", "clues": ["snooty", "snotty", "stuck-up", "persnickety", "uppish", "bigheaded", "snot-nosed", "too big for one's breeches"]}, {"answer": "toothed", "hint": "synonyms for toothed", "clues": ["serrated", "jagged", "saw-toothed", "notched", "jaggy", "erose", "toothed"]}, {"answer": "toothsome", "hint": "synonyms for toothsome", "clues": ["pleasant-tasting", "yummy", "delicious", "juicy", "red-hot", "voluptuous", "delectable", "scrumptious", "luscious", "palatable", "toothsome"]}, {"answer": "top-notch", "hint": "synonyms for top-notch", "clues": ["first-rate", "tops", "crack", "topnotch", "ace", "tiptop", "super"]}, {"answer": "topnotch", "hint": "synonyms for topnotch", "clues": ["first-rate", "tops", "crack", "top-notch", "ace", "tiptop", "super"]}, {"answer": "tops", "hint": "synonyms for tops", "clues": ["first-rate", "crack", "topnotch", "ace", "tiptop", "super", "tops"]}, {"answer": "topsy-turvy", "hint": "synonyms for topsy-turvy", "clues": ["jumbled", "disorderly", "hugger-mugger", "higgledy-piggledy", "topsy-turvy"]}, {"answer": "tormented", "hint": "synonyms for tormented", "clues": ["anguished", "tortured", "hagridden", "tormented"]}, {"answer": "torpid", "hint": "synonyms for torpid", "clues": ["inert", "sluggish", "soggy", "dormant", "hibernating", "torpid"]}, {"answer": "torrid", "hint": "synonyms for torrid", "clues": ["ardent", "fiery", "perfervid", "impassioned", "fervid", "fervent", "torrid"]}, {"answer": "tortuous", "hint": "synonyms for tortuous", "clues": ["voluminous", "tangled", "involved", "convoluted", "winding", "twisty", "knotty", "twisting", "tortuous"]}, {"answer": "torturesome", "hint": "synonyms for torturesome", "clues": ["torturous", "agonizing", "excruciating", "harrowing", "torturing", "torturesome"]}, {"answer": "torturing", "hint": "synonyms for torturing", "clues": ["torturous", "agonizing", "torturesome", "excruciating", "harrowing", "torturing"]}, {"answer": "torturous", "hint": "synonyms for torturous", "clues": ["agonizing", "torturesome", "excruciating", "harrowing", "torturing", "torturous"]}, {"answer": "touched", "hint": "synonyms for touched", "clues": ["moved", "stirred", "affected", "fey", "touched"]}, {"answer": "touchy", "hint": "synonyms for touchy", "clues": ["thin-skinned", "ticklish", "delicate", "feisty", "huffy", "touchy"]}, {"answer": "tough", "hint": "synonyms for tough", "clues": ["problematic", "toughened", "rugged", "elusive", "hard", "bad", "baffling", "knotty", "ruffianly", "sturdy", "tough"]}, {"answer": "toughened", "hint": "synonyms for toughened", "clues": ["treated", "hardened", "tempered", "tough", "toughened"]}, {"answer": "tousled", "hint": "synonyms for tousled", "clues": ["dishevelled", "rumpled", "frowzled", "tousled"]}, {"answer": "trackless", "hint": "synonyms for trackless", "clues": ["untrod", "untracked", "roadless", "pathless", "untrodden", "trackless"]}, {"answer": "tractile", "hint": "synonyms for tractile", "clues": ["ductile", "tensile", "pliable", "malleable", "pliant", "tractile"]}, {"answer": "traitorous", "hint": "synonyms for traitorous", "clues": ["treasonous", "unfaithful", "faithless", "treasonable", "traitorous"]}, {"answer": "tranquil", "hint": "synonyms for tranquil", "clues": ["smooth", "unagitated", "quiet", "placid", "serene", "calm", "unruffled", "still", "tranquil"]}, {"answer": "tranquilising", "hint": "synonyms for tranquilising", "clues": ["tranquillizing", "sedative", "ataractic", "ataraxic"]}, {"answer": "tranquilizing", "hint": "synonyms for tranquilizing", "clues": ["tranquillizing", "sedative", "ataractic", "ataraxic"]}, {"answer": "tranquillising", "hint": "synonyms for tranquillising", "clues": ["tranquillizing", "sedative", "ataractic", "ataraxic"]}, {"answer": "tranquillizing", "hint": "synonyms for tranquillizing", "clues": ["tranquillising", "sedative", "ataractic", "ataraxic"]}, {"answer": "transferable", "hint": "synonyms for transferable", "clues": ["conveyable", "moveable", "negotiable", "assignable", "transferrable", "transportable"]}, {"answer": "transferrable", "hint": "synonyms for transferrable", "clues": ["conveyable", "moveable", "negotiable", "assignable", "transferable", "transportable"]}, {"answer": "transfixed", "hint": "synonyms for transfixed", "clues": ["fascinated", "mesmerized", "spell-bound", "hypnotized", "transfixed"]}, {"answer": "transient", "hint": "synonyms for transient", "clues": ["transeunt", "short-lived", "fugacious", "ephemeral", "passing", "transitory"]}, {"answer": "transitory", "hint": "synonyms for transitory", "clues": ["transient", "short-lived", "fugacious", "ephemeral", "passing", "transitory"]}, {"answer": "transmissible", "hint": "synonyms for transmissible", "clues": ["familial", "catching", "transmitted", "ancestral", "transmittable", "contractable", "communicable", "contagious", "genetic", "patrimonial", "inherited", "hereditary", "transmissible"]}, {"answer": "transmittable", "hint": "synonyms for transmittable", "clues": ["catching", "contractable", "communicable", "contagious", "transmissible", "transmittable"]}, {"answer": "transmitted", "hint": "synonyms for transmitted", "clues": ["familial", "inherited", "genetic", "transmissible", "hereditary", "transmitted"]}, {"answer": "transparent", "hint": "synonyms for transparent", "clues": ["filmy", "see-through", "pellucid", "guileless", "crystal clear", "lucid", "diaphanous", "crystalline", "gauze-like", "gossamer", "vapourous", "cobwebby", "gauzy", "sheer", "limpid", "transparent"]}, {"answer": "trashy", "hint": "synonyms for trashy", "clues": ["flash", "loud", "gimcrack", "tatty", "garish", "tawdry", "tacky", "brassy", "rubbishy", "meretricious", "cheap", "gaudy", "trashy"]}, {"answer": "treasonable", "hint": "synonyms for treasonable", "clues": ["treasonous", "traitorous", "unfaithful", "faithless", "treasonable"]}, {"answer": "treasonous", "hint": "synonyms for treasonous", "clues": ["traitorous", "unfaithful", "faithless", "treasonable", "treasonous"]}, {"answer": "treble", "hint": "synonyms for treble", "clues": ["triplex", "three-fold", "dual", "soprano", "double", "twofold", "ternary", "treble"]}, {"answer": "tree-shaped", "hint": "synonyms for tree-shaped", "clues": ["dendriform", "dendroid", "treelike", "arborescent", "arboreal", "arboreous", "arboriform", "arboresque", "tree-shaped"]}, {"answer": "treelike", "hint": "synonyms for treelike", "clues": ["dendriform", "tree-shaped", "dendroid", "arborescent", "arboreal", "arboreous", "arboriform", "arboresque", "treelike"]}, {"answer": "tremendous", "hint": "synonyms for tremendous", "clues": ["marvellous", "enormous", "howling", "wondrous", "grand", "fantastic", "rattling", "terrific", "awful", "terrible", "frightful", "wonderful", "tremendous"]}, {"answer": "trenchant", "hint": "synonyms for trenchant", "clues": ["hard-hitting", "distinct", "clear-cut", "searching", "trenchant"]}, {"answer": "tributary", "hint": "synonyms for tributary", "clues": ["contributing", "conducive", "contributive", "contributory", "tributary"]}, {"answer": "tricksy", "hint": "synonyms for tricksy", "clues": ["knavish", "dodgy", "crafty", "tricky", "sly", "cunning", "slick", "foxy", "wily", "guileful"]}, {"answer": "tricky", "hint": "synonyms for tricky", "clues": ["dodgy", "crafty", "guileful", "sly", "slippery", "cunning", "slick", "tricksy", "foxy", "catchy", "wily", "knavish"]}, {"answer": "tried", "hint": "synonyms for tried", "clues": ["tested", "tried and true", "time-tested", "well-tried", "tried"]}, {"answer": "trigger-happy", "hint": "synonyms for trigger-happy", "clues": ["violent", "tearing", "fierce", "vehement", "trigger-happy"]}, {"answer": "trim", "hint": "synonyms for trim", "clues": ["clean-cut", "trig", "well-kept", "tailored", "shipshape", "spare", "trim"]}, {"answer": "triple", "hint": "synonyms for triple", "clues": ["triplex", "treble", "three-fold", "ternary"]}, {"answer": "tripping", "hint": "synonyms for tripping", "clues": ["light", "swinging", "swingy", "lilting", "lightsome", "tripping"]}, {"answer": "trite", "hint": "synonyms for trite", "clues": ["old-hat", "timeworn", "shopworn", "commonplace", "well-worn", "hackneyed", "banal", "threadbare", "stock", "tired", "trite"]}, {"answer": "triumphal", "hint": "synonyms for triumphal", "clues": ["jubilant", "rejoicing", "triumphant", "prideful", "exulting", "exultant", "triumphal"]}, {"answer": "triumphant", "hint": "synonyms for triumphant", "clues": ["jubilant", "rejoicing", "prideful", "victorious", "triumphal", "exulting", "exultant", "triumphant"]}, {"answer": "trivial", "hint": "synonyms for trivial", "clues": ["lilliputian", "piddling", "petty", "picayune", "niggling", "little", "superficial", "footling", "piffling", "trivial"]}, {"answer": "troubled", "hint": "synonyms for troubled", "clues": ["disruptive", "tumultuous", "turbulent", "riotous", "troubled"]}, {"answer": "troubling", "hint": "synonyms for troubling", "clues": ["distressing", "disturbing", "worrisome", "perturbing", "distressful", "worrying", "troubling"]}, {"answer": "true", "hint": "synonyms for true", "clues": ["straight", "rightful", "unfeigned", "reliable", "honest", "on-key", "dependable", "genuine", "dead on target", "truthful", "lawful", "true"]}, {"answer": "tubby", "hint": "synonyms for tubby", "clues": ["pudgy", "podgy", "roly-poly", "dumpy", "tubby"]}, {"answer": "tube-shaped", "hint": "synonyms for tube-shaped", "clues": ["cannular", "tubelike", "tubular", "vasiform", "tube-shaped"]}, {"answer": "tubelike", "hint": "synonyms for tubelike", "clues": ["cannular", "tube-shaped", "tubular", "vasiform", "tubelike"]}, {"answer": "tubular", "hint": "synonyms for tubular", "clues": ["cannular", "tube-shaped", "tubelike", "vasiform", "tubular"]}, {"answer": "tufted", "hint": "synonyms for tufted", "clues": ["crested", "cespitose", "topknotted", "tufted"]}, {"answer": "tumble-down", "hint": "synonyms for tumble-down", "clues": ["dilapidated", "tatterdemalion", "derelict", "ramshackle", "broken-down", "bedraggled", "tumble-down"]}, {"answer": "tumescent", "hint": "synonyms for tumescent", "clues": ["intumescent", "puffy", "tumid", "turgid"]}, {"answer": "tumid", "hint": "synonyms for tumid", "clues": ["declamatory", "intumescent", "puffy", "turgid", "bombastic", "orotund", "erect", "large", "tumid"]}, {"answer": "tumultuous", "hint": "synonyms for tumultuous", "clues": ["disruptive", "troubled", "turbulent", "riotous", "tumultuous"]}, {"answer": "tuppeny", "hint": "synonyms for tuppeny", "clues": ["two-a-penny", "sixpenny", "twopenny-halfpenny", "threepenny", "twopenny", "tuppeny"]}, {"answer": "turbid", "hint": "synonyms for turbid", "clues": ["mirky", "muddy", "cloudy", "murky", "turbid"]}, {"answer": "turbinate", "hint": "synonyms for turbinate", "clues": ["volute", "spiral", "helical", "whorled", "coiling", "turbinate"]}, {"answer": "turbulent", "hint": "synonyms for turbulent", "clues": ["troubled", "tumultuous", "roiled", "churning", "roiling", "riotous", "disruptive", "roily", "turbulent"]}, {"answer": "turgid", "hint": "synonyms for turgid", "clues": ["declamatory", "intumescent", "puffy", "tumid", "bombastic", "orotund", "large", "turgid"]}, {"answer": "turned_on", "hint": "synonyms for turned on", "clues": ["ruttish", "aroused", "randy", "horny", "steamy", "turned on"]}, {"answer": "twee", "hint": "synonyms for twee", "clues": ["prim", "mincing", "niminy-piminy", "dainty", "twee"]}, {"answer": "tweedy", "hint": "synonyms for tweedy", "clues": ["homespun", "slubbed", "nubbly", "tweedy"]}, {"answer": "twisting", "hint": "synonyms for twisting", "clues": ["tortuous", "voluminous", "winding", "twisty", "twisting"]}, {"answer": "twisty", "hint": "synonyms for twisty", "clues": ["tortuous", "winding", "voluminous", "twisting", "twisty"]}, {"answer": "two-a-penny", "hint": "synonyms for two-a-penny", "clues": ["sixpenny", "tuppeny", "twopenny-halfpenny", "threepenny", "twopenny", "two-a-penny"]}, {"answer": "two-faced", "hint": "synonyms for two-faced", "clues": ["double-tongued", "double-dealing", "duplicitous", "ambidextrous", "deceitful", "double-faced", "two-faced"]}, {"answer": "two-fold", "hint": "synonyms for two-fold", "clues": ["treble", "three-fold", "dual", "twofold", "doubled"]}, {"answer": "two-way", "hint": "synonyms for two-way", "clues": ["bipartizan", "bipartite", "two-part", "two-way"]}, {"answer": "twofold", "hint": "synonyms for twofold", "clues": ["treble", "three-fold", "dual", "doubled", "two-fold"]}, {"answer": "twopenny", "hint": "synonyms for twopenny", "clues": ["two-a-penny", "sixpenny", "tuppeny", "twopenny-halfpenny", "threepenny", "twopenny"]}, {"answer": "twopenny-halfpenny", "hint": "synonyms for twopenny-halfpenny", "clues": ["two-a-penny", "sixpenny", "tuppeny", "threepenny", "twopenny", "twopenny-halfpenny"]}, {"answer": "tyrannic", "hint": "synonyms for tyrannic", "clues": ["authoritarian", "dictatorial", "despotic", "tyrannical", "autocratic"]}, {"answer": "tyrannical", "hint": "synonyms for tyrannical", "clues": ["authoritarian", "dictatorial", "despotic", "tyrannous", "oppressive", "tyrannic", "autocratic"]}, {"answer": "ugly", "hint": "synonyms for ugly", "clues": ["wretched", "despicable", "unworthy", "atrocious", "worthless", "horrible", "slimy", "horrifying", "vile", "frightful", "surly", "ugly"]}, {"answer": "ulterior", "hint": "synonyms for ulterior", "clues": ["later", "posterior", "subterraneous", "subterranean", "ulterior"]}, {"answer": "ultranationalistic", "hint": "synonyms for ultranationalistic", "clues": ["chauvinistic", "superpatriotic", "jingoistic", "nationalistic", "flag-waving", "ultranationalistic"]}, {"answer": "umbrageous", "hint": "synonyms for umbrageous", "clues": ["incensed", "outraged", "indignant", "shadowed", "shadowy", "shady", "umbrageous"]}, {"answer": "unacceptable", "hint": "synonyms for unacceptable", "clues": ["unaccepted", "unsufferable", "impossible", "unacceptable"]}, {"answer": "unadulterated", "hint": "synonyms for unadulterated", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "arrant", "complete", "unadulterated"]}, {"answer": "unanimous", "hint": "synonyms for unanimous", "clues": ["consentient", "solid", "whole", "consentaneous", "unanimous"]}, {"answer": "unappareled", "hint": "synonyms for unappareled", "clues": ["ungarmented", "unclad", "unattired", "undressed", "ungarbed", "unappareled"]}, {"answer": "unappeasable", "hint": "synonyms for unappeasable", "clues": ["unforgiving", "grim", "inexorable", "relentless", "unrelenting", "stern", "unappeasable"]}, {"answer": "unappreciated", "hint": "synonyms for unappreciated", "clues": ["ungratifying", "thankless", "unvalued", "unsung", "unappreciated"]}, {"answer": "unassailable", "hint": "synonyms for unassailable", "clues": ["unattackable", "inviolable", "strong", "unshakable", "watertight", "bulletproof", "impregnable", "untouchable", "secure", "unassailable"]}, {"answer": "unattackable", "hint": "synonyms for unattackable", "clues": ["strong", "inviolable", "impregnable", "unassailable", "secure", "unattackable"]}, {"answer": "unattired", "hint": "synonyms for unattired", "clues": ["ungarmented", "unappareled", "unclad", "undressed", "ungarbed", "unattired"]}, {"answer": "unbalanced", "hint": "synonyms for unbalanced", "clues": ["disturbed", "sick", "unhinged", "imbalanced", "brainsick", "demented", "mad", "crazy", "unbalanced"]}, {"answer": "unbarred", "hint": "synonyms for unbarred", "clues": ["unlocked", "unbolted", "unsecured", "unlatched", "unbarred"]}, {"answer": "unbecoming", "hint": "synonyms for unbecoming", "clues": ["uncomely", "indecorous", "unseemly", "indecent", "untoward", "unbecoming"]}, {"answer": "unbelievable", "hint": "synonyms for unbelievable", "clues": ["unconvincing", "improbable", "unlikely", "incredible", "unbelievable"]}, {"answer": "unbelieving", "hint": "synonyms for unbelieving", "clues": ["skeptical", "nescient", "atheistical", "disbelieving", "unbelieving"]}, {"answer": "unbendable", "hint": "synonyms for unbendable", "clues": ["unfaltering", "unshakable", "steadfast", "steady", "firm", "stiff", "unwavering", "unbendable"]}, {"answer": "unbodied", "hint": "synonyms for unbodied", "clues": ["bodiless", "disembodied", "discorporate", "unembodied"]}, {"answer": "unbolted", "hint": "synonyms for unbolted", "clues": ["unlocked", "unsecured", "unbarred", "unlatched", "unbolted"]}, {"answer": "uncanny", "hint": "synonyms for uncanny", "clues": ["unearthly", "eldritch", "weird", "preternatural", "uncanny"]}, {"answer": "uncaring", "hint": "synonyms for uncaring", "clues": ["detached", "unthinking", "unaffectionate", "thoughtless", "uncaring"]}, {"answer": "unceasing", "hint": "synonyms for unceasing", "clues": ["ageless", "eternal", "unending", "eonian", "constant", "unremitting", "incessant", "never-ending", "everlasting", "ceaseless", "perpetual", "unceasing"]}, {"answer": "uncertain", "hint": "synonyms for uncertain", "clues": ["unsettled", "incertain", "unsure", "unsealed", "changeable"]}, {"answer": "uncivilised", "hint": "synonyms for uncivilised", "clues": ["wild", "barbarian", "uncivilized", "barbaric", "savage"]}, {"answer": "uncivilized", "hint": "synonyms for uncivilized", "clues": ["wild", "barbarian", "uncivilised", "barbaric", "savage"]}, {"answer": "unclad", "hint": "synonyms for unclad", "clues": ["ungarmented", "unappareled", "unattired", "undressed", "ungarbed", "unclad"]}, {"answer": "unclear", "hint": "synonyms for unclear", "clues": ["indecipherable", "unreadable", "ill-defined", "unclear"]}, {"answer": "unclouded", "hint": "synonyms for unclouded", "clues": ["light", "clean", "clear", "cloudless", "unclouded"]}, {"answer": "uncomely", "hint": "synonyms for uncomely", "clues": ["indecorous", "unseemly", "indecent", "untoward", "unbecoming", "uncomely"]}, {"answer": "uncomplicated", "hint": "synonyms for uncomplicated", "clues": ["unproblematic", "simple", "elementary", "unsophisticated", "uncomplicated"]}, {"answer": "unconditional", "hint": "synonyms for unconditional", "clues": ["flat", "categorical", "unconditioned", "unconditional"]}, {"answer": "unconnected", "hint": "synonyms for unconnected", "clues": ["scattered", "disordered", "illogical", "disjointed", "confused", "disconnected", "garbled", "unconnected"]}, {"answer": "unconscionable", "hint": "synonyms for unconscionable", "clues": ["usurious", "outrageous", "extortionate", "steep", "conscienceless", "exorbitant", "unconscionable"]}, {"answer": "uncontrollable", "hint": "synonyms for uncontrollable", "clues": ["indocile", "irrepressible", "ungovernable", "unmanageable", "uncorrectable", "unruly", "uncontrollable"]}, {"answer": "unconvincing", "hint": "synonyms for unconvincing", "clues": ["unbelievable", "improbable", "unlikely", "flimsy", "unconvincing"]}, {"answer": "uncounted", "hint": "synonyms for uncounted", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "myriad", "multitudinous", "innumerous", "countless", "uncounted"]}, {"answer": "uncouth", "hint": "synonyms for uncouth", "clues": ["rough-cut", "common", "vulgar", "coarse", "uncouth"]}, {"answer": "unctuous", "hint": "synonyms for unctuous", "clues": ["buttery", "oleaginous", "oily", "fulsome", "soapy", "smarmy", "unctuous"]}, {"answer": "uncultivated", "hint": "synonyms for uncultivated", "clues": ["lowbrow", "artless", "uncultured", "uncultivated"]}, {"answer": "uncut", "hint": "synonyms for uncut", "clues": ["rough", "full-length", "unmown", "untrimmed", "uncut"]}, {"answer": "undecided", "hint": "synonyms for undecided", "clues": ["on the fence", "open", "unresolved", "undetermined", "undecided"]}, {"answer": "under_the_weather", "hint": "synonyms for under the weather", "clues": ["peaked", "indisposed", "unwell", "sickly", "poorly", "seedy", "ailing", "under the weather"]}, {"answer": "underbred", "hint": "synonyms for underbred", "clues": ["yokelish", "bounderish", "ill-bred", "rude", "lowbred", "underbred"]}, {"answer": "undercover", "hint": "synonyms for undercover", "clues": ["clandestine", "hush-hush", "hugger-mugger", "secret", "underground", "hole-and-corner", "surreptitious", "cloak-and-dagger", "undercover"]}, {"answer": "underground", "hint": "synonyms for underground", "clues": ["clandestine", "hush-hush", "hugger-mugger", "undercover", "secret", "hole-and-corner", "surreptitious", "cloak-and-dagger", "belowground", "underground"]}, {"answer": "underlying", "hint": "synonyms for underlying", "clues": ["inherent", "fundamental", "rudimentary", "implicit in", "underlying"]}, {"answer": "understandable", "hint": "synonyms for understandable", "clues": ["graspable", "perceivable", "intelligible", "apprehensible", "understandable"]}, {"answer": "underwater", "hint": "synonyms for underwater", "clues": ["subaquatic", "submersed", "subaqueous", "underwater"]}, {"answer": "underweight", "hint": "synonyms for underweight", "clues": ["weedy", "scraggy", "boney", "scrawny", "skinny", "underweight"]}, {"answer": "undetermined", "hint": "synonyms for undetermined", "clues": ["indeterminate", "open", "undecided", "unresolved", "undetermined"]}, {"answer": "undirected", "hint": "synonyms for undirected", "clues": ["planless", "directionless", "aimless", "rudderless", "adrift", "afloat", "undirected"]}, {"answer": "undone", "hint": "synonyms for undone", "clues": ["sunk", "done for", "washed-up", "unstuck", "ruined", "undone"]}, {"answer": "undreamed", "hint": "synonyms for undreamed", "clues": ["unimagined", "undreamt of", "undreamt", "undreamed"]}, {"answer": "undreamed_of", "hint": "synonyms for undreamed of", "clues": ["unimagined", "undreamed", "undreamt of", "undreamt"]}, {"answer": "undreamt", "hint": "synonyms for undreamt", "clues": ["unimagined", "undreamt of", "undreamed", "undreamt"]}, {"answer": "undreamt_of", "hint": "synonyms for undreamt of", "clues": ["unimagined", "undreamed", "undreamt", "undreamt of"]}, {"answer": "undressed", "hint": "synonyms for undressed", "clues": ["ungarmented", "unappareled", "unclad", "unattired", "ungarbed", "undressed"]}, {"answer": "undue", "hint": "synonyms for undue", "clues": ["inordinate", "excessive", "unjustified", "unreasonable", "unwarranted", "undue"]}, {"answer": "unearthly", "hint": "synonyms for unearthly", "clues": ["spiritual", "eldritch", "weird", "uncanny", "unearthly"]}, {"answer": "uneasy", "hint": "synonyms for uneasy", "clues": ["awkward", "queasy", "ill at ease", "restless", "nervous", "unquiet", "anxious", "uneasy"]}, {"answer": "unembellished", "hint": "synonyms for unembellished", "clues": ["bare", "spare", "unornamented", "plain", "unembellished"]}, {"answer": "unembodied", "hint": "synonyms for unembodied", "clues": ["bodiless", "disembodied", "discorporate", "unbodied"]}, {"answer": "unending", "hint": "synonyms for unending", "clues": ["aeonian", "ageless", "eternal", "everlasting", "unceasing", "perpetual", "unending"]}, {"answer": "unequaled", "hint": "synonyms for unequaled", "clues": ["unequalled", "alone", "unique", "unparalleled"]}, {"answer": "unequalled", "hint": "synonyms for unequalled", "clues": ["alone", "unique", "unequaled", "unparalleled"]}, {"answer": "uneven", "hint": "synonyms for uneven", "clues": ["spotty", "scratchy", "odd", "mismatched", "uneven"]}, {"answer": "unexpended", "hint": "synonyms for unexpended", "clues": ["left", "odd", "remaining", "left over", "unspent", "unexpended"]}, {"answer": "unexpressed", "hint": "synonyms for unexpressed", "clues": ["unverbalised", "unuttered", "unsaid", "unvoiced", "unspoken", "unstated", "unexpressed"]}, {"answer": "unexpressive", "hint": "synonyms for unexpressive", "clues": ["poker-faced", "deadpan", "expressionless", "impassive", "unexpressive"]}, {"answer": "unfaithful", "hint": "synonyms for unfaithful", "clues": ["treasonous", "traitorous", "faithless", "treasonable", "unfaithful"]}, {"answer": "unfaltering", "hint": "synonyms for unfaltering", "clues": ["unshakable", "steadfast", "unbendable", "steady", "firm", "stiff", "unwavering", "unfaltering"]}, {"answer": "unfearing", "hint": "synonyms for unfearing", "clues": ["dauntless", "fearless", "hardy", "brave", "audacious", "intrepid", "unfearing"]}, {"answer": "unflagging", "hint": "synonyms for unflagging", "clues": ["unwearying", "unfailing", "tireless", "indefatigable", "unflagging"]}, {"answer": "unfledged", "hint": "synonyms for unfledged", "clues": ["callow", "fledgeless", "unvaned", "immature", "fledgling", "unfledged"]}, {"answer": "unforgiving", "hint": "synonyms for unforgiving", "clues": ["grim", "unappeasable", "inexorable", "relentless", "unrelenting", "stern", "unforgiving"]}, {"answer": "unfounded", "hint": "synonyms for unfounded", "clues": ["wild", "groundless", "idle", "unwarranted", "baseless", "unfounded"]}, {"answer": "ungainly", "hint": "synonyms for ungainly", "clues": ["clumsy", "clunky", "awkward", "unwieldy", "bunglesome", "gawky", "ungainly"]}, {"answer": "ungarbed", "hint": "synonyms for ungarbed", "clues": ["ungarmented", "unappareled", "unclad", "unattired", "undressed", "ungarbed"]}, {"answer": "ungarmented", "hint": "synonyms for ungarmented", "clues": ["unappareled", "unclad", "unattired", "undressed", "ungarbed", "ungarmented"]}, {"answer": "unglamorous", "hint": "synonyms for unglamorous", "clues": ["unglamourous", "prosaic", "humdrum", "commonplace"]}, {"answer": "unglamourous", "hint": "synonyms for unglamourous", "clues": ["prosaic", "humdrum", "unglamorous", "commonplace"]}, {"answer": "ungoverned", "hint": "synonyms for ungoverned", "clues": ["uncurbed", "unbridled", "undisciplined", "unchecked", "ungoverned"]}, {"answer": "unhealthful", "hint": "synonyms for unhealthful", "clues": ["insanitary", "insalubrious", "unhealthy", "unhealthful"]}, {"answer": "unhinged", "hint": "synonyms for unhinged", "clues": ["disturbed", "unbalanced", "sick", "brainsick", "demented", "mad", "crazy", "unhinged"]}, {"answer": "unholy", "hint": "synonyms for unholy", "clues": ["diabolical", "infernal", "demonic", "wicked", "satanic", "fiendish", "unhallowed", "sinful", "hellish", "unholy"]}, {"answer": "unhurt", "hint": "synonyms for unhurt", "clues": ["safe and sound", "whole", "unharmed", "unscathed", "unhurt"]}, {"answer": "unified", "hint": "synonyms for unified", "clues": ["incorporate", "merged", "interconnected", "coordinated", "integrated", "unified"]}, {"answer": "unimaginative", "hint": "synonyms for unimaginative", "clues": ["stereotyped", "stereotypic", "uninspired", "sterile", "uninventive", "unimaginative"]}, {"answer": "unimagined", "hint": "synonyms for unimagined", "clues": ["undreamt of", "undreamed", "undreamt", "unimagined"]}, {"answer": "unimpeachable", "hint": "synonyms for unimpeachable", "clues": ["unexceptionable", "blameless", "irreproachable", "inculpable", "unimpeachable"]}, {"answer": "unionised", "hint": "synonyms for unionised", "clues": ["organized", "unionized", "nonionised", "nonionic"]}, {"answer": "unionized", "hint": "synonyms for unionized", "clues": ["unionised", "organized", "nonionised", "nonionic"]}, {"answer": "unique", "hint": "synonyms for unique", "clues": ["alone", "unequaled", "unparalleled", "singular", "unique"]}, {"answer": "universal", "hint": "synonyms for universal", "clues": ["cosmopolitan", "worldwide", "general", "ecumenical", "universal"]}, {"answer": "unjustifiable", "hint": "synonyms for unjustifiable", "clues": ["insupportable", "unwarrantable", "indefensible", "unwarranted", "unjustifiable"]}, {"answer": "unknown", "hint": "synonyms for unknown", "clues": ["strange", "unsung", "unidentified", "nameless", "obscure", "unnamed", "unknown"]}, {"answer": "unlatched", "hint": "synonyms for unlatched", "clues": ["unbolted", "unsecured", "unbarred", "unlocked", "unlatched"]}, {"answer": "unlawful", "hint": "synonyms for unlawful", "clues": ["unconventional", "wrongful", "illicit", "outlawed", "improper", "illegitimate", "unlawful"]}, {"answer": "unlearned", "hint": "synonyms for unlearned", "clues": ["unlettered", "nescient", "unconditioned", "innate", "ignorant", "unlearned"]}, {"answer": "unlettered", "hint": "synonyms for unlettered", "clues": ["nescient", "ignorant", "unlearned", "analphabetic", "unlettered"]}, {"answer": "unlimited", "hint": "synonyms for unlimited", "clues": ["inexhaustible", "limitless", "outright", "straight-out", "unlimited"]}, {"answer": "unlocked", "hint": "synonyms for unlocked", "clues": ["unbolted", "unsecured", "unbarred", "unlatched", "unlocked"]}, {"answer": "unlucky", "hint": "synonyms for unlucky", "clues": ["luckless", "ill-fated", "ill-starred", "ill-omened", "doomed", "unlucky"]}, {"answer": "unmanageable", "hint": "synonyms for unmanageable", "clues": ["difficult", "unwieldy", "uncorrectable", "uncontrollable", "unmanageable"]}, {"answer": "unmanly", "hint": "synonyms for unmanly", "clues": ["poor-spirited", "unmanlike", "unmanful", "pusillanimous", "unmanly"]}, {"answer": "unmannered", "hint": "synonyms for unmannered", "clues": ["ill-mannered", "rude", "bad-mannered", "unmannerly", "unmannered"]}, {"answer": "unmannerly", "hint": "synonyms for unmannerly", "clues": ["ill-mannered", "unmannered", "rude", "bad-mannered", "unmannerly"]}, {"answer": "unmatchable", "hint": "synonyms for unmatchable", "clues": ["one", "nonpareil", "matchless", "unmatched", "unrivalled", "one and only", "peerless", "unmatchable"]}, {"answer": "unmatched", "hint": "synonyms for unmatched", "clues": ["peerless", "one", "odd", "matchless", "unrivalled", "unpaired", "unmatchable", "one and only", "unmated", "nonpareil"]}, {"answer": "unmelodious", "hint": "synonyms for unmelodious", "clues": ["unmelodic", "tuneless", "untuneful", "unmusical", "unmelodious"]}, {"answer": "unmistakable", "hint": "synonyms for unmistakable", "clues": ["apparent", "manifest", "evident", "patent", "plain", "unmistakable"]}, {"answer": "unmixed", "hint": "synonyms for unmixed", "clues": ["uncompounded", "sheer", "unmingled", "plain", "unmixed"]}, {"answer": "unnumberable", "hint": "synonyms for unnumberable", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "myriad", "multitudinous", "innumerous", "countless"]}, {"answer": "unnumbered", "hint": "synonyms for unnumbered", "clues": ["innumerable", "numberless", "infinite", "uncounted", "myriad", "multitudinous", "innumerous", "countless", "unnumbered"]}, {"answer": "unnumerable", "hint": "synonyms for unnumerable", "clues": ["unnumbered", "innumerable", "numberless", "infinite", "uncounted", "myriad", "multitudinous", "innumerous", "countless"]}, {"answer": "unornamented", "hint": "synonyms for unornamented", "clues": ["bare", "spare", "unembellished", "plain", "unornamented"]}, {"answer": "unparalleled", "hint": "synonyms for unparalleled", "clues": ["unequalled", "alone", "unique", "unparalleled"]}, {"answer": "unpleasant-smelling", "hint": "synonyms for unpleasant-smelling", "clues": ["ill-smelling", "malodourous", "stinky", "unpleasant-smelling"]}, {"answer": "unquiet", "hint": "synonyms for unquiet", "clues": ["uneasy", "queasy", "nervous", "anxious", "unquiet"]}, {"answer": "unredeemed", "hint": "synonyms for unredeemed", "clues": ["damned", "cursed", "doomed", "unsaved", "unredeemed"]}, {"answer": "unreformable", "hint": "synonyms for unreformable", "clues": ["unredeemable", "irredeemable", "unregenerate", "irreclaimable", "unreformable"]}, {"answer": "unregenerate", "hint": "synonyms for unregenerate", "clues": ["obstinate", "unreformable", "unregenerated", "stubborn"]}, {"answer": "unrehearsed", "hint": "synonyms for unrehearsed", "clues": ["off-the-cuff", "extemporaneous", "extempore", "offhand", "impromptu", "ad-lib", "extemporary", "unrehearsed"]}, {"answer": "unrelenting", "hint": "synonyms for unrelenting", "clues": ["stern", "unforgiving", "grim", "unappeasable", "relentless", "inexorable", "brutal", "persistent", "unrelenting"]}, {"answer": "unremarkable", "hint": "synonyms for unremarkable", "clues": ["workaday", "routine", "mundane", "everyday", "quotidian", "unremarkable"]}, {"answer": "unremitting", "hint": "synonyms for unremitting", "clues": ["constant", "ceaseless", "unceasing", "perpetual", "incessant", "never-ending", "unremitting"]}, {"answer": "unrepentant", "hint": "synonyms for unrepentant", "clues": ["impenitent", "cussed", "obdurate", "obstinate", "unremorseful", "unrepentant"]}, {"answer": "unresolved", "hint": "synonyms for unresolved", "clues": ["undecided", "unsolved", "undetermined", "dissonant", "open"]}, {"answer": "unrestrained", "hint": "synonyms for unrestrained", "clues": ["mad", "excited", "frantic", "delirious", "unrestrained"]}, {"answer": "unrivaled", "hint": "synonyms for unrivaled", "clues": ["one", "nonpareil", "matchless", "unmatched", "unrivalled", "unmatchable", "one and only", "peerless"]}, {"answer": "unrivalled", "hint": "synonyms for unrivalled", "clues": ["one", "nonpareil", "matchless", "unmatched", "unmatchable", "one and only", "unrivaled", "peerless"]}, {"answer": "unruffled", "hint": "synonyms for unruffled", "clues": ["unperturbed", "quiet", "placid", "still", "tranquil", "smooth", "unflurried", "unflustered", "unruffled"]}, {"answer": "unruly", "hint": "synonyms for unruly", "clues": ["rambunctious", "robustious", "indocile", "uncontrollable", "ungovernable", "disobedient", "boisterous", "unruly"]}, {"answer": "unsaid", "hint": "synonyms for unsaid", "clues": ["unexpressed", "unuttered", "unverbalised", "unvoiced", "unspoken", "unstated", "unsaid"]}, {"answer": "unsatisfied", "hint": "synonyms for unsatisfied", "clues": ["restless", "ungratified", "unsatiated", "unsated", "unsatisfied"]}, {"answer": "unsaved", "hint": "synonyms for unsaved", "clues": ["unredeemed", "damned", "cursed", "doomed", "unsaved"]}, {"answer": "unseasoned", "hint": "synonyms for unseasoned", "clues": ["unsalted", "young", "untested", "untried", "unseasoned"]}, {"answer": "unsecured", "hint": "synonyms for unsecured", "clues": ["unlocked", "unlatched", "unbolted", "unguaranteed", "unbarred", "unsecured"]}, {"answer": "unseemly", "hint": "synonyms for unseemly", "clues": ["uncomely", "indecorous", "indecent", "untoward", "unbecoming", "unseemly"]}, {"answer": "unshakable", "hint": "synonyms for unshakable", "clues": ["steadfast", "unwavering", "unfaltering", "watertight", "unbendable", "steady", "bulletproof", "unassailable", "stiff", "firm", "unshakable"]}, {"answer": "unskilled", "hint": "synonyms for unskilled", "clues": ["inexpert", "incompetent", "amateur", "amateurish", "unskilled"]}, {"answer": "unsophisticated", "hint": "synonyms for unsophisticated", "clues": ["hick", "unworldly", "bumpkinly", "uncomplicated", "rustic", "unsophisticated"]}, {"answer": "unsound", "hint": "synonyms for unsound", "clues": ["bad", "fallacious", "unfit", "unstable", "mentally ill", "unsound"]}, {"answer": "unsounded", "hint": "synonyms for unsounded", "clues": ["unplumbed", "profound", "silent", "unfathomed", "unsounded"]}, {"answer": "unsparing", "hint": "synonyms for unsparing", "clues": ["lavish", "too-generous", "unstinting", "munificent", "overgenerous", "unstinted", "unsparing"]}, {"answer": "unspeakable", "hint": "synonyms for unspeakable", "clues": ["indefinable", "abominable", "untellable", "ineffable", "atrocious", "indescribable", "painful", "unnameable", "terrible", "unutterable", "dreadful", "awful", "unspeakable"]}, {"answer": "unspoiled", "hint": "synonyms for unspoiled", "clues": ["undecomposed", "good", "unspoilt", "uncorrupted", "unspoiled"]}, {"answer": "unspoken", "hint": "synonyms for unspoken", "clues": ["unexpressed", "unverbalised", "unuttered", "unvoiced", "unstated", "wordless", "unsaid", "mute", "tongueless", "unspoken"]}, {"answer": "unsporting", "hint": "synonyms for unsporting", "clues": ["dirty", "cheating", "foul", "unsportsmanlike", "unsporting"]}, {"answer": "unsportsmanlike", "hint": "synonyms for unsportsmanlike", "clues": ["dirty", "cheating", "foul", "unsporting", "unsportsmanlike"]}, {"answer": "unstable", "hint": "synonyms for unstable", "clues": ["fluid", "unsound", "mentally ill", "precarious", "unstable"]}, {"answer": "unstained", "hint": "synonyms for unstained", "clues": ["unspotted", "stainless", "untainted", "unsullied", "unvarnished", "unsoiled"]}, {"answer": "unstated", "hint": "synonyms for unstated", "clues": ["unexpressed", "unverbalised", "unuttered", "unsaid", "unvoiced", "unspoken", "unstated"]}, {"answer": "unstinted", "hint": "synonyms for unstinted", "clues": ["unsparing", "lavish", "too-generous", "unstinting", "munificent", "overgenerous", "unstinted"]}, {"answer": "unstinting", "hint": "synonyms for unstinting", "clues": ["unsparing", "lavish", "too-generous", "munificent", "overgenerous", "unstinted", "unstinting"]}, {"answer": "unsullied", "hint": "synonyms for unsullied", "clues": ["untarnished", "unstained", "stainless", "unsullied"]}, {"answer": "unsung", "hint": "synonyms for unsung", "clues": ["unknown", "obscure", "unappreciated", "unvalued", "unsung"]}, {"answer": "unsure", "hint": "synonyms for unsure", "clues": ["diffident", "uncertain", "timid", "shy", "unsure"]}, {"answer": "unsympathetic", "hint": "synonyms for unsympathetic", "clues": ["unlikable", "disagreeable", "unappealing", "unkindly", "closed", "unsympathetic"]}, {"answer": "untainted", "hint": "synonyms for untainted", "clues": ["unsullied", "untarnished", "unstained", "stainless"]}, {"answer": "untarnished", "hint": "synonyms for untarnished", "clues": ["unsullied", "unstained", "stainless", "untarnished"]}, {"answer": "untellable", "hint": "synonyms for untellable", "clues": ["indescribable", "indefinable", "unspeakable", "unutterable", "ineffable", "untellable"]}, {"answer": "unthinking", "hint": "synonyms for unthinking", "clues": ["unthoughtful", "lumpish", "unreflective", "lumpen", "uncaring", "thoughtless", "unthinking"]}, {"answer": "untied", "hint": "synonyms for untied", "clues": ["unshackled", "unfettered", "unchained", "unfastened", "unlaced", "untied"]}, {"answer": "untimely", "hint": "synonyms for untimely", "clues": ["ill-timed", "wrong", "premature", "unseasonable", "untimely"]}, {"answer": "untouchable", "hint": "synonyms for untouchable", "clues": ["unobtainable", "unassailable", "unprocurable", "inaccessible", "untouchable"]}, {"answer": "untouched", "hint": "synonyms for untouched", "clues": ["unmoved", "unswayed", "untasted", "unaffected", "uninfluenced", "untouched"]}, {"answer": "untoward", "hint": "synonyms for untoward", "clues": ["uncomely", "indecorous", "unseemly", "indecent", "adverse", "unbecoming", "inauspicious", "untoward"]}, {"answer": "untracked", "hint": "synonyms for untracked", "clues": ["untrod", "trackless", "roadless", "pathless", "untrodden", "untracked"]}, {"answer": "untrod", "hint": "synonyms for untrod", "clues": ["untracked", "trackless", "roadless", "pathless", "untrodden", "untrod"]}, {"answer": "untrodden", "hint": "synonyms for untrodden", "clues": ["untrod", "untracked", "trackless", "pathless", "roadless", "untrodden"]}, {"answer": "untrusting", "hint": "synonyms for untrusting", "clues": ["mistrustful", "leery", "suspicious", "wary", "untrusting"]}, {"answer": "unutterable", "hint": "synonyms for unutterable", "clues": ["unpronounceable", "indefinable", "untellable", "ineffable", "unspeakable", "indescribable", "unnameable", "unutterable"]}, {"answer": "unuttered", "hint": "synonyms for unuttered", "clues": ["unexpressed", "unverbalised", "unsaid", "unvoiced", "unspoken", "unstated", "unuttered"]}, {"answer": "unvarying", "hint": "synonyms for unvarying", "clues": ["uniform", "constant", "invariant", "changeless", "unvaried", "unvarying"]}, {"answer": "unverbalised", "hint": "synonyms for unverbalised", "clues": ["unexpressed", "unuttered", "unsaid", "unvoiced", "unspoken", "unstated", "unverbalized"]}, {"answer": "unverbalized", "hint": "synonyms for unverbalized", "clues": ["unexpressed", "unuttered", "unverbalised", "unsaid", "unvoiced", "unspoken", "unstated"]}, {"answer": "unvoiced", "hint": "synonyms for unvoiced", "clues": ["unexpressed", "unuttered", "unverbalised", "unstated", "hard", "voiceless", "unsaid", "unspoken", "surd", "unvoiced"]}, {"answer": "unwarrantable", "hint": "synonyms for unwarrantable", "clues": ["insupportable", "indefensible", "unjustifiable", "unwarranted", "unwarrantable"]}, {"answer": "unwarranted", "hint": "synonyms for unwarranted", "clues": ["insupportable", "unwarrantable", "wild", "unjustifiable", "idle", "baseless", "undue", "groundless", "indefensible", "unfounded", "unjustified", "unwarranted"]}, {"answer": "unwavering", "hint": "synonyms for unwavering", "clues": ["unfaltering", "unshakable", "steadfast", "unbendable", "steady", "level", "stiff", "firm", "unwavering"]}, {"answer": "unwell", "hint": "synonyms for unwell", "clues": ["peaked", "indisposed", "under the weather", "sickly", "poorly", "seedy", "ailing", "unwell"]}, {"answer": "unwieldy", "hint": "synonyms for unwieldy", "clues": ["clumsy", "clunky", "unmanageable", "ungainly", "gawky", "unwieldy"]}, {"answer": "unwitting", "hint": "synonyms for unwitting", "clues": ["unknowledgeable", "unintentional", "unplanned", "ignorant", "unknowing", "unwitting"]}, {"answer": "unworthy", "hint": "synonyms for unworthy", "clues": ["wretched", "slimy", "despicable", "vile", "ugly", "undeserving", "worthless", "unworthy"]}, {"answer": "unyielding", "hint": "synonyms for unyielding", "clues": ["dour", "tenacious", "pertinacious", "persistent", "dogged", "unyielding"]}, {"answer": "up_to_her_neck", "hint": "synonyms for up to her neck", "clues": ["up to my neck", "up to our necks", "neck-deep", "up to their necks", "up to his neck"]}, {"answer": "up_to_his_neck", "hint": "synonyms for up to his neck", "clues": ["up to my neck", "up to her neck", "up to our necks", "neck-deep"]}, {"answer": "up_to_my_neck", "hint": "synonyms for up to my neck", "clues": ["up to her neck", "up to our necks", "neck-deep", "up to my neck"]}, {"answer": "up_to_our_necks", "hint": "synonyms for up to our necks", "clues": ["up to my neck", "up to her neck", "neck-deep", "up to our necks"]}, {"answer": "up_to_their_necks", "hint": "synonyms for up to their necks", "clues": ["up to my neck", "up to her neck", "up to our necks", "neck-deep"]}, {"answer": "up_to_your_neck", "hint": "synonyms for up to your neck", "clues": ["up to my neck", "up to her neck", "up to our necks", "neck-deep"]}, {"answer": "uppish", "hint": "synonyms for uppish", "clues": ["snooty", "snotty", "stuck-up", "persnickety", "too big for one's breeches", "bigheaded", "snot-nosed", "uppish"]}, {"answer": "upright", "hint": "synonyms for upright", "clues": ["good", "vertical", "erect", "just", "unsloped", "upright"]}, {"answer": "uproarious", "hint": "synonyms for uproarious", "clues": ["rip-roaring", "screaming", "hilarious", "rackety", "uproarious"]}, {"answer": "upset", "hint": "synonyms for upset", "clues": ["overturned", "upturned", "confused", "broken", "disquieted", "disordered", "distressed", "worried", "disturbed", "upset"]}, {"answer": "uptight", "hint": "synonyms for uptight", "clues": ["high-strung", "highly strung", "restive", "nervy", "overstrung", "edgy", "jittery", "jumpy", "uptight"]}, {"answer": "upturned", "hint": "synonyms for upturned", "clues": ["retrousse", "overturned", "upset", "tip-tilted", "upturned"]}, {"answer": "usable", "hint": "synonyms for usable", "clues": ["operational", "available", "functional", "useable", "operable"]}, {"answer": "useable", "hint": "synonyms for useable", "clues": ["available", "functional", "operational", "operable", "usable"]}, {"answer": "used", "hint": "synonyms for used", "clues": ["exploited", "victimised", "secondhand", "ill-used", "put-upon", "used"]}, {"answer": "usurious", "hint": "synonyms for usurious", "clues": ["outrageous", "extortionate", "steep", "unconscionable", "exorbitant", "usurious"]}, {"answer": "utmost", "hint": "synonyms for utmost", "clues": ["uttermost", "farthest", "extreme", "last", "farthermost", "utmost"]}, {"answer": "utter", "hint": "synonyms for utter", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "perfect", "dead", "pure", "everlasting", "arrant", "unadulterated", "complete", "utter"]}, {"answer": "uttermost", "hint": "synonyms for uttermost", "clues": ["furthest", "farthermost", "utmost", "extreme", "uttermost"]}, {"answer": "vacuous", "hint": "synonyms for vacuous", "clues": ["mindless", "hollow", "blank", "inane", "fatuous", "asinine", "empty", "vacuous"]}, {"answer": "vagabond", "hint": "synonyms for vagabond", "clues": ["aimless", "floating", "drifting", "vagrant", "rootless", "vagabond"]}, {"answer": "vagrant", "hint": "synonyms for vagrant", "clues": ["floating", "aimless", "drifting", "vagabond", "vagrant"]}, {"answer": "vague", "hint": "synonyms for vague", "clues": ["faint", "dim", "undefined", "wispy", "shadowy", "obscure", "vague"]}, {"answer": "vain", "hint": "synonyms for vain", "clues": ["conceited", "self-conceited", "swollen", "egotistical", "futile", "sleeveless", "fruitless", "bootless", "swollen-headed", "vain"]}, {"answer": "validating", "hint": "synonyms for validating", "clues": ["verificatory", "verifying", "substantiating", "corroboratory", "confirming", "collateral", "validatory", "confirmative", "corroborative", "confirmatory", "validating"]}, {"answer": "validatory", "hint": "synonyms for validatory", "clues": ["verificatory", "verifying", "substantiating", "validating", "corroboratory", "confirming", "collateral", "confirmative", "corroborative", "confirmatory", "validatory"]}, {"answer": "vapid", "hint": "synonyms for vapid", "clues": ["flavourless", "flat", "insipid", "savorless", "bland", "vapid"]}, {"answer": "vaporific", "hint": "synonyms for vaporific", "clues": ["evaporable", "vapourish", "volatilisable", "vapourisable", "vapourous", "vapourific"]}, {"answer": "vaporizable", "hint": "synonyms for vaporizable", "clues": ["evaporable", "volatilizable", "vaporific", "vapourisable"]}, {"answer": "vaporized", "hint": "synonyms for vaporized", "clues": ["gasified", "vapourised", "volatilised", "vaporized"]}, {"answer": "vaporous", "hint": "synonyms for vaporous", "clues": ["vapourish", "filmy", "miasmal", "vaporific", "diaphanous", "gauze-like", "gossamer", "transparent", "vapourous", "see-through", "gauzy", "sheer", "cobwebby", "miasmic"]}, {"answer": "vapourific", "hint": "synonyms for vapourific", "clues": ["evaporable", "vapourish", "vaporific", "volatilisable", "vapourisable", "vapourous"]}, {"answer": "vapourisable", "hint": "synonyms for vapourisable", "clues": ["evaporable", "volatilizable", "vaporific", "vapourisable"]}, {"answer": "vapourised", "hint": "synonyms for vapourised", "clues": ["gasified", "volatilised", "vaporized", "vapourised"]}, {"answer": "vapourous", "hint": "synonyms for vapourous", "clues": ["vapourish", "filmy", "miasmal", "vaporific", "diaphanous", "gauze-like", "gossamer", "vaporous", "transparent", "see-through", "gauzy", "sheer", "cobwebby", "miasmic"]}, {"answer": "varicolored", "hint": "synonyms for varicolored", "clues": ["multicolor", "pied", "particolored", "variegated", "multi-coloured", "varicoloured", "painted", "calico", "piebald", "motley"]}, {"answer": "varicoloured", "hint": "synonyms for varicoloured", "clues": ["multicolor", "varicolored", "pied", "variegated", "particoloured", "multi-coloured", "painted", "calico", "piebald", "motley"]}, {"answer": "various", "hint": "synonyms for various", "clues": ["diverse", "versatile", "respective", "assorted", "several", "various"]}, {"answer": "vasiform", "hint": "synonyms for vasiform", "clues": ["cannular", "tube-shaped", "tubular", "tubelike", "vasiform"]}, {"answer": "vatic", "hint": "synonyms for vatic", "clues": ["vatical", "mantic", "sibylline", "divinatory", "sibyllic", "vatic"]}, {"answer": "vatical", "hint": "synonyms for vatical", "clues": ["mantic", "sibylline", "divinatory", "vatic", "sibyllic", "vatical"]}, {"answer": "vehement", "hint": "synonyms for vehement", "clues": ["violent", "tearing", "fierce", "trigger-happy", "vehement"]}, {"answer": "venal", "hint": "synonyms for venal", "clues": ["bribable", "purchasable", "dishonest", "corruptible", "venal"]}, {"answer": "vendable", "hint": "synonyms for vendable", "clues": ["merchantable", "marketable", "vendible", "sellable"]}, {"answer": "vendible", "hint": "synonyms for vendible", "clues": ["merchantable", "marketable", "sellable", "vendable"]}, {"answer": "venomous", "hint": "synonyms for venomous", "clues": ["virulent", "deadly", "vicious", "poisonous", "venomous"]}, {"answer": "verbose", "hint": "synonyms for verbose", "clues": ["tedious", "long-winded", "wordy", "windy", "verbose"]}, {"answer": "verboten", "hint": "synonyms for verboten", "clues": ["tabu", "proscribed", "forbidden", "out", "taboo", "prohibited", "verboten"]}, {"answer": "verificatory", "hint": "synonyms for verificatory", "clues": ["verifying", "substantiating", "validating", "corroboratory", "confirming", "collateral", "validatory", "confirmative", "corroborative", "confirmatory", "verificatory"]}, {"answer": "verifying", "hint": "synonyms for verifying", "clues": ["verificatory", "substantiating", "validating", "corroboratory", "confirming", "collateral", "validatory", "confirmative", "corroborative", "confirmatory", "verifying"]}, {"answer": "veritable", "hint": "synonyms for veritable", "clues": ["bona fide", "authentic", "regular", "unquestionable", "veritable"]}, {"answer": "vermiculate", "hint": "synonyms for vermiculate", "clues": ["wormy", "vermicular", "worm-eaten", "vermiculated"]}, {"answer": "vestal", "hint": "synonyms for vestal", "clues": ["virgin", "virtuous", "pure", "vestal"]}, {"answer": "vexatious", "hint": "synonyms for vexatious", "clues": ["nettlesome", "galling", "annoying", "plaguy", "teasing", "vexing", "pesky", "irritating", "bothersome", "pestering", "pestiferous", "vexatious"]}, {"answer": "vexed", "hint": "synonyms for vexed", "clues": ["harassed", "annoyed", "harried", "pestered", "vexed"]}, {"answer": "vexing", "hint": "synonyms for vexing", "clues": ["exasperating", "nettlesome", "maddening", "galling", "annoying", "infuriating", "plaguy", "teasing", "pesky", "pestiferous", "irritating", "bothersome", "pestering", "vexatious", "vexing"]}, {"answer": "vi", "hint": "synonyms for vi", "clues": ["6", "half-dozen", "six", "vi"]}, {"answer": "viable", "hint": "synonyms for viable", "clues": ["practicable", "workable", "executable", "feasible", "viable"]}, {"answer": "vicious", "hint": "synonyms for vicious", "clues": ["deplorable", "condemnable", "reprehensible", "savage", "venomous", "roughshod", "fell", "cruel", "barbarous", "evil", "poisonous", "brutal", "criminal", "vicious"]}, {"answer": "victimised", "hint": "synonyms for victimised", "clues": ["exploited", "used", "ill-used", "put-upon", "victimized"]}, {"answer": "victimized", "hint": "synonyms for victimized", "clues": ["exploited", "used", "victimised", "ill-used", "put-upon"]}, {"answer": "victorian", "hint": "synonyms for victorian", "clues": ["prissy", "straight-laced", "prudish", "puritanical", "square-toed", "priggish", "prim", "victorian"]}, {"answer": "vile", "hint": "synonyms for vile", "clues": ["wretched", "despicable", "nauseating", "queasy", "unworthy", "ugly", "loathsome", "worthless", "sickening", "slimy", "nauseous", "noisome", "offensive", "vile"]}, {"answer": "vindicated", "hint": "synonyms for vindicated", "clues": ["exonerated", "cleared", "exculpated", "absolved", "clear", "vindicated"]}, {"answer": "vindicatory", "hint": "synonyms for vindicatory", "clues": ["justificatory", "justificative", "retributory", "retributive", "relatiative", "retaliatory", "vindicatory"]}, {"answer": "violent", "hint": "synonyms for violent", "clues": ["wild", "red", "crimson", "fierce", "trigger-happy", "tearing", "vehement", "violent"]}, {"answer": "virgin", "hint": "synonyms for virgin", "clues": ["virginal", "vestal", "virtuous", "pure"]}, {"answer": "virginal", "hint": "synonyms for virginal", "clues": ["virgin", "vestal", "virtuous", "pure"]}, {"answer": "virile", "hint": "synonyms for virile", "clues": ["manly", "potent", "manful", "male", "manlike", "virile"]}, {"answer": "virtuous", "hint": "synonyms for virtuous", "clues": ["virginal", "vestal", "pure", "virtuous"]}, {"answer": "virulent", "hint": "synonyms for virulent", "clues": ["deadly", "acrid", "sulphurous", "acerbic", "venomous", "blistering", "caustic", "bitter", "sulfurous", "vitriolic", "acerb", "virulent"]}, {"answer": "viscid", "hint": "synonyms for viscid", "clues": ["pasty", "glutinous", "gluey", "gummy", "sticky", "mucilaginous", "viscous", "viscid"]}, {"answer": "viscous", "hint": "synonyms for viscous", "clues": ["glutinous", "sticky", "pasty", "gluey", "viscid", "gummy", "mucilaginous", "syrupy", "viscous"]}, {"answer": "visually_challenged", "hint": "synonyms for visually challenged", "clues": ["visually impaired", "near-blind", "sand-blind", "purblind", "dim-sighted", "visually challenged"]}, {"answer": "visually_impaired", "hint": "synonyms for visually impaired", "clues": ["near-blind", "visually challenged", "sand-blind", "purblind", "dim-sighted", "visually impaired"]}, {"answer": "vital", "hint": "synonyms for vital", "clues": ["life-sustaining", "lively", "critical", "full of life", "vital"]}, {"answer": "vitiated", "hint": "synonyms for vitiated", "clues": ["corrupted", "lessened", "debased", "weakened", "diminished", "vitiated"]}, {"answer": "vitriolic", "hint": "synonyms for vitriolic", "clues": ["acrid", "sulphurous", "acerb", "erosive", "blistering", "virulent", "mordant", "caustic", "bitter", "sulfurous", "acerbic", "corrosive", "vitriolic"]}, {"answer": "vivid", "hint": "synonyms for vivid", "clues": ["pictorial", "intense", "graphic", "brilliant", "bright", "lifelike", "vivid"]}, {"answer": "vociferous", "hint": "synonyms for vociferous", "clues": ["blatant", "clamorous", "clamant", "strident", "vociferous"]}, {"answer": "voiceless", "hint": "synonyms for voiceless", "clues": ["disenfranchised", "unvoiced", "voteless", "aphonic", "breathed", "hard", "surd", "voiceless"]}, {"answer": "volatilisable", "hint": "synonyms for volatilisable", "clues": ["evaporable", "volatilizable", "vaporific", "vapourisable"]}, {"answer": "volatilised", "hint": "synonyms for volatilised", "clues": ["gasified", "vapourised", "vaporized", "volatilized"]}, {"answer": "volatilizable", "hint": "synonyms for volatilizable", "clues": ["evaporable", "vaporific", "volatilisable", "vapourisable"]}, {"answer": "volatilized", "hint": "synonyms for volatilized", "clues": ["gasified", "vapourised", "volatilised", "vaporized"]}, {"answer": "voluminous", "hint": "synonyms for voluminous", "clues": ["tortuous", "winding", "twisty", "twisting", "copious", "voluminous"]}, {"answer": "voluptuary", "hint": "synonyms for voluptuary", "clues": ["epicurean", "voluptuous", "luxuriant", "luxurious", "sybaritic", "voluptuary"]}, {"answer": "voluptuous", "hint": "synonyms for voluptuous", "clues": ["stacked", "bosomy", "luxurious", "toothsome", "red-hot", "buxom", "luscious", "curvaceous", "sonsie", "luxuriant", "well-endowed", "busty", "sonsy", "voluptuary", "sybaritic", "juicy", "epicurean", "curvy", "full-bosomed", "voluptuous"]}, {"answer": "volute", "hint": "synonyms for volute", "clues": ["turbinate", "voluted", "spiral", "helical", "whorled", "coiling"]}, {"answer": "voluted", "hint": "synonyms for voluted", "clues": ["turbinate", "volute", "spiral", "helical", "whorled", "coiling"]}, {"answer": "voracious", "hint": "synonyms for voracious", "clues": ["ravening", "edacious", "ravenous", "wolfish", "rapacious", "esurient", "voracious"]}, {"answer": "vulgar", "hint": "synonyms for vulgar", "clues": ["coarse", "crude", "gross", "common", "rough-cut", "unwashed", "uncouth", "earthy", "plebeian", "vernacular", "vulgar"]}, {"answer": "vulturine", "hint": "synonyms for vulturine", "clues": ["predatory", "vulturous", "raptorial", "ravening", "rapacious", "vulturine"]}, {"answer": "vulturous", "hint": "synonyms for vulturous", "clues": ["predatory", "vulturine", "raptorial", "ravening", "rapacious", "vulturous"]}, {"answer": "wacky", "hint": "synonyms for wacky", "clues": ["silly", "balmy", "loco", "cockamamie", "loony", "haywire", "round the bend", "goofy", "buggy", "barmy", "daft", "loopy", "cockamamy", "dotty", "crackers", "fruity", "kooky", "bonkers", "whacky", "kookie", "nutty", "nuts", "batty", "zany", "bats", "cracked", "sappy"]}, {"answer": "wakeful", "hint": "synonyms for wakeful", "clues": ["vigilant", "light", "open-eyed", "argus-eyed", "waking", "wakeful"]}, {"answer": "walloping", "hint": "synonyms for walloping", "clues": ["humongous", "thumping", "whopping", "banging", "walloping"]}, {"answer": "wandering", "hint": "synonyms for wandering", "clues": ["roving", "rambling", "mobile", "erratic", "nomadic", "peregrine", "planetary", "winding", "meandering", "wandering"]}, {"answer": "wanting", "hint": "synonyms for wanting", "clues": ["deficient", "absent", "lacking", "missing", "wanting"]}, {"answer": "wanton", "hint": "synonyms for wanton", "clues": ["light", "motiveless", "sluttish", "easy", "loose", "promiscuous", "unprovoked", "wanton"]}, {"answer": "warm", "hint": "synonyms for warm", "clues": ["strong", "ardent", "lovesome", "fond", "affectionate", "tender", "quick", "warm"]}, {"answer": "warning", "hint": "synonyms for warning", "clues": ["exemplary", "cautionary", "monitory", "warning"]}, {"answer": "wary", "hint": "synonyms for wary", "clues": ["mistrustful", "leery", "suspicious", "untrusting", "wary"]}, {"answer": "washed-out", "hint": "synonyms for washed-out", "clues": ["dog-tired", "faded", "bleached", "worn out", "fatigued", "fagged", "exhausted", "played out", "spent", "washy", "washed-out"]}, {"answer": "washed-up", "hint": "synonyms for washed-up", "clues": ["sunk", "done for", "undone", "ruined", "washed-up"]}, {"answer": "washy", "hint": "synonyms for washy", "clues": ["washed-out", "faded", "bleached", "watery", "weak", "washy"]}, {"answer": "wasted", "hint": "synonyms for wasted", "clues": ["purposeless", "skeletal", "pointless", "otiose", "bony", "atrophied", "senseless", "gaunt", "pinched", "emaciated", "squandered", "haggard", "superfluous", "diminished", "cadaverous", "wasted"]}, {"answer": "waterlogged", "hint": "synonyms for waterlogged", "clues": ["swampy", "miry", "sloppy", "marshy", "squashy", "muddy", "quaggy", "sloughy", "soggy", "mucky", "boggy", "waterlogged"]}, {"answer": "wavelike", "hint": "synonyms for wavelike", "clues": ["crinkled", "wavy", "rippled", "crinkly", "wavelike"]}, {"answer": "wavy", "hint": "synonyms for wavy", "clues": ["crinkled", "wavelike", "rippled", "crinkly", "wavy"]}, {"answer": "waxy", "hint": "synonyms for waxy", "clues": ["bendable", "pliable", "pliant", "waxlike", "impressible", "waxen", "waxy"]}, {"answer": "way-out", "hint": "synonyms for way-out", "clues": ["quirky", "kinky", "far-out", "offbeat", "way-out"]}, {"answer": "weak", "hint": "synonyms for weak", "clues": ["light", "unaccented", "frail", "infirm", "weakly", "feeble", "watery", "fallible", "imperfect", "debile", "faint", "decrepit", "sapless", "washy", "rickety"]}, {"answer": "weakened", "hint": "synonyms for weakened", "clues": ["thinned", "faded", "attenuate", "vitiated", "cut", "lessened", "hurt", "diminished", "weakened"]}, {"answer": "weakly", "hint": "synonyms for weakly", "clues": ["rickety", "infirm", "decrepit", "feeble", "sapless", "weak", "debile"]}, {"answer": "wealthy", "hint": "synonyms for wealthy", "clues": ["affluent", "flush", "moneyed", "loaded", "wealthy"]}, {"answer": "wearisome", "hint": "synonyms for wearisome", "clues": ["irksome", "tedious", "tiresome", "dull", "ho-hum", "boring", "deadening", "slow", "wearisome"]}, {"answer": "webbed", "hint": "synonyms for webbed", "clues": ["webby", "netted", "weblike", "lacy", "netlike", "webbed"]}, {"answer": "webby", "hint": "synonyms for webby", "clues": ["netted", "weblike", "lacy", "webbed", "netlike", "webby"]}, {"answer": "weblike", "hint": "synonyms for weblike", "clues": ["webby", "netted", "lacy", "webbed", "netlike", "weblike"]}, {"answer": "wee", "hint": "synonyms for wee", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee"]}, {"answer": "weedy", "hint": "synonyms for weedy", "clues": ["scraggy", "boney", "scrawny", "underweight", "skinny", "weedy"]}, {"answer": "weensy", "hint": "synonyms for weensy", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "weeny", "teentsy", "bittie", "teeny", "itty-bitty", "wee"]}, {"answer": "weeny", "hint": "synonyms for weeny", "clues": ["bitty", "teeny-weeny", "itsy-bitsy", "teentsy", "bittie", "teeny", "weensy", "itty-bitty", "wee"]}, {"answer": "weeping", "hint": "synonyms for weeping", "clues": ["lachrymose", "cernuous", "drooping", "tearful", "dolorous", "pendulous", "nodding", "weeping"]}, {"answer": "weighed_down", "hint": "synonyms for weighed down", "clues": ["loaded down", "overburdened", "heavy", "bowed down", "weighed down"]}, {"answer": "weighty", "hint": "synonyms for weighty", "clues": ["grave", "cogent", "telling", "corpulent", "obese", "rotund", "grievous", "heavy", "weighty"]}, {"answer": "well-educated", "hint": "synonyms for well-educated", "clues": ["knowledgeable", "knowing", "well-read", "lettered", "learned", "well-educated"]}, {"answer": "well-endowed", "hint": "synonyms for well-endowed", "clues": ["stacked", "bosomy", "busty", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "well-endowed"]}, {"answer": "well-favored", "hint": "synonyms for well-favored", "clues": ["better-looking", "good-looking", "fine-looking", "well-favoured", "handsome"]}, {"answer": "well-favoured", "hint": "synonyms for well-favoured", "clues": ["better-looking", "good-looking", "fine-looking", "handsome", "well-favored"]}, {"answer": "well-fixed", "hint": "synonyms for well-fixed", "clues": ["comfortable", "well-heeled", "well-off", "prosperous", "easy", "well-to-do", "well-situated", "well-fixed"]}, {"answer": "well-heeled", "hint": "synonyms for well-heeled", "clues": ["comfortable", "well-off", "prosperous", "easy", "well-to-do", "well-situated", "well-fixed", "well-heeled"]}, {"answer": "well-kept", "hint": "synonyms for well-kept", "clues": ["kept up", "maintained", "trim", "shipshape", "well-kept"]}, {"answer": "well-off", "hint": "synonyms for well-off", "clues": ["comfortable", "well-heeled", "prosperous", "easy", "well-to-do", "well-situated", "well-fixed", "well-off"]}, {"answer": "well-read", "hint": "synonyms for well-read", "clues": ["knowledgeable", "well-educated", "knowing", "lettered", "learned", "well-read"]}, {"answer": "well-situated", "hint": "synonyms for well-situated", "clues": ["comfortable", "well-heeled", "well-off", "prosperous", "easy", "well-to-do", "well-fixed", "well-situated"]}, {"answer": "well-to-do", "hint": "synonyms for well-to-do", "clues": ["comfortable", "well-heeled", "well-off", "prosperous", "easy", "well-situated", "well-fixed", "well-to-do"]}, {"answer": "well-worn", "hint": "synonyms for well-worn", "clues": ["old-hat", "timeworn", "trite", "shopworn", "commonplace", "hackneyed", "banal", "threadbare", "stock", "tired", "well-worn"]}, {"answer": "wet", "hint": "synonyms for wet", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "lactating", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "wet"]}, {"answer": "whacky", "hint": "synonyms for whacky", "clues": ["silly", "balmy", "loco", "cockamamie", "loony", "haywire", "round the bend", "goofy", "buggy", "barmy", "daft", "loopy", "cockamamy", "dotty", "crackers", "fruity", "kooky", "bonkers", "kookie", "wacky", "nutty", "nuts", "batty", "zany", "bats", "cracked", "sappy"]}, {"answer": "whiskered", "hint": "synonyms for whiskered", "clues": ["bearded", "barbate", "bewhiskered", "whiskery"]}, {"answer": "whiskery", "hint": "synonyms for whiskery", "clues": ["whiskered", "bearded", "barbate", "whiskery"]}, {"answer": "white", "hint": "synonyms for white", "clues": ["white-hot", "livid", "blanched", "clean", "whitened", "snowy", "blank", "ashen", "bloodless", "lily-white", "white"]}, {"answer": "white-haired", "hint": "synonyms for white-haired", "clues": ["grey", "grey-haired", "gray-headed", "grizzly", "fair-haired", "gray", "hoary", "blue-eyed", "white-haired"]}, {"answer": "white-livered", "hint": "synonyms for white-livered", "clues": ["yellow-bellied", "chickenhearted", "yellow", "chicken", "lily-livered", "white-livered"]}, {"answer": "whole", "hint": "synonyms for whole", "clues": ["hale", "solid", "unanimous", "unhurt", "unharmed", "unscathed", "whole"]}, {"answer": "whopping", "hint": "synonyms for whopping", "clues": ["humongous", "thumping", "walloping", "banging", "whopping"]}, {"answer": "whorled", "hint": "synonyms for whorled", "clues": ["turbinate", "volute", "spiral", "helical", "verticillate", "coiling", "whorled"]}, {"answer": "wicked", "hint": "synonyms for wicked", "clues": ["impish", "foul", "loathsome", "severe", "repelling", "revolting", "disgusting", "terrible", "skanky", "disgustful", "repellent", "yucky", "unholy", "mischievous", "puckish", "implike", "prankish", "loathly", "pixilated", "arch", "sinful", "distasteful", "wicked"]}, {"answer": "wide", "hint": "synonyms for wide", "clues": ["all-embracing", "wide-eyed", "across-the-board", "full", "all-inclusive", "extensive", "panoptic", "spacious", "wide of the mark", "encompassing", "blanket", "wide-cut", "broad", "wide"]}, {"answer": "wide-eyed", "hint": "synonyms for wide-eyed", "clues": ["simple", "round-eyed", "childlike", "wide", "dewy-eyed", "wide-eyed"]}, {"answer": "wiggly", "hint": "synonyms for wiggly", "clues": ["wriggling", "sinuous", "sinuate", "wriggly", "writhing"]}, {"answer": "wild", "hint": "synonyms for wild", "clues": ["untamed", "gaga", "uncivilised", "tempestuous", "unwarranted", "baseless", "angry", "unfounded", "raving mad", "waste", "raging", "dotty", "violent", "barbaric", "furious", "savage", "fantastic", "idle", "hazardous", "groundless", "barbarian", "godforsaken", "risky", "crazy", "wild"]}, {"answer": "wilful", "hint": "synonyms for wilful", "clues": ["self-willed", "willful", "froward", "headstrong"]}, {"answer": "willful", "hint": "synonyms for willful", "clues": ["self-willed", "wilful", "froward", "headstrong"]}, {"answer": "wily", "hint": "synonyms for wily", "clues": ["knavish", "dodgy", "crafty", "tricky", "sly", "cunning", "slick", "foxy", "guileful", "wily"]}, {"answer": "winding", "hint": "synonyms for winding", "clues": ["tortuous", "voluminous", "wandering", "rambling", "twisty", "meandering", "twisting", "winding"]}, {"answer": "windy", "hint": "synonyms for windy", "clues": ["verbose", "breezy", "tedious", "impractical", "visionary", "long-winded", "airy", "wordy", "blowy", "windy"]}, {"answer": "wintry", "hint": "synonyms for wintry", "clues": ["wintery", "frosty", "glacial", "icy", "frigid", "frozen"]}, {"answer": "wiped_out", "hint": "synonyms for wiped out", "clues": ["impoverished", "annihilated", "broken", "exterminated", "wiped out"]}, {"answer": "wise", "hint": "synonyms for wise", "clues": ["impudent", "overbold", "knowing", "saucy", "wise to", "heady", "impertinent", "smart", "judicious", "fresh", "sassy", "wise"]}, {"answer": "wispy", "hint": "synonyms for wispy", "clues": ["faint", "wisplike", "dim", "vague", "shadowy", "wispy"]}, {"answer": "witching", "hint": "synonyms for witching", "clues": ["sorcerous", "charming", "wizardly", "magic", "magical", "witching"]}, {"answer": "with-it", "hint": "synonyms for with-it", "clues": ["streetwise", "up-to-date", "street smart", "cutting-edge", "with-it"]}, {"answer": "with_child", "hint": "synonyms for with child", "clues": ["big", "heavy", "expectant", "gravid", "great", "enceinte", "large", "with child"]}, {"answer": "withered", "hint": "synonyms for withered", "clues": ["shriveled", "shrunken", "sear", "sere", "dried-up", "wizened", "wizen", "withered"]}, {"answer": "wizard", "hint": "synonyms for wizard", "clues": ["sorcerous", "charming", "witching", "wizardly", "magic", "magical"]}, {"answer": "wizardly", "hint": "synonyms for wizardly", "clues": ["sorcerous", "charming", "witching", "magic", "wizard", "magical"]}, {"answer": "wizen", "hint": "synonyms for wizen", "clues": ["shriveled", "shrunken", "withered", "wizened", "wizen"]}, {"answer": "wizened", "hint": "synonyms for wizened", "clues": ["shriveled", "shrunken", "withered", "wizen", "wizened"]}, {"answer": "woebegone", "hint": "synonyms for woebegone", "clues": ["flea-bitten", "derelict", "run-down", "woeful", "creaky", "decrepit", "woebegone"]}, {"answer": "woeful", "hint": "synonyms for woeful", "clues": ["deplorable", "wretched", "miserable", "woebegone", "execrable", "woeful"]}, {"answer": "wolfish", "hint": "synonyms for wolfish", "clues": ["ravening", "edacious", "wolflike", "ravenous", "esurient", "rapacious", "voracious", "wolfish"]}, {"answer": "wonderful", "hint": "synonyms for wonderful", "clues": ["marvellous", "howling", "wondrous", "grand", "fantastic", "rattling", "tremendous", "terrific", "wonderful"]}, {"answer": "wondrous", "hint": "synonyms for wondrous", "clues": ["marvellous", "howling", "grand", "fantastic", "rattling", "tremendous", "terrific", "wonderful", "wondrous"]}, {"answer": "wonky", "hint": "synonyms for wonky", "clues": ["askew", "rickety", "skew-whiff", "shaky", "lopsided", "cockeyed", "wobbly", "awry", "wonky"]}, {"answer": "wooden-headed", "hint": "synonyms for wooden-headed", "clues": ["boneheaded", "duncish", "thick-skulled", "thick", "fatheaded", "thickheaded", "duncical", "loggerheaded", "blockheaded", "wooden-headed"]}, {"answer": "woolly", "hint": "synonyms for woolly", "clues": ["wooly-haired", "befuddled", "addled", "woolly-headed", "lanate", "wooly", "muzzy", "muddled", "flocculent", "wooly-minded"]}, {"answer": "woolly-headed", "hint": "synonyms for woolly-headed", "clues": ["wooly", "muzzy", "befuddled", "muddled", "wooly-minded", "addled", "woolly-headed"]}, {"answer": "wooly", "hint": "synonyms for wooly", "clues": ["wooly-haired", "woolly", "befuddled", "muzzy", "addled", "woolly-headed", "muddled", "flocculent", "wooly-minded"]}, {"answer": "wooly-minded", "hint": "synonyms for wooly-minded", "clues": ["muzzy", "wooly", "woolly-headed", "befuddled", "muddled", "addled", "wooly-minded"]}, {"answer": "wordy", "hint": "synonyms for wordy", "clues": ["tedious", "long-winded", "verbose", "windy", "wordy"]}, {"answer": "work-shy", "hint": "synonyms for work-shy", "clues": ["faineant", "lazy", "indolent", "otiose", "slothful", "work-shy"]}, {"answer": "workable", "hint": "synonyms for workable", "clues": ["practicable", "viable", "executable", "feasible", "workable"]}, {"answer": "workaday", "hint": "synonyms for workaday", "clues": ["routine", "mundane", "everyday", "unremarkable", "quotidian", "workaday"]}, {"answer": "working", "hint": "synonyms for working", "clues": ["operative", "on the job", "functional", "running", "working"]}, {"answer": "world", "hint": "synonyms for world", "clues": ["worldwide", "planetary", "global", "world"]}, {"answer": "world-wide", "hint": "synonyms for world-wide", "clues": ["worldwide", "cosmopolitan", "global", "ecumenical", "world", "general", "planetary", "universal"]}, {"answer": "worldwide", "hint": "synonyms for worldwide", "clues": ["cosmopolitan", "global", "ecumenical", "world", "world-wide", "general", "planetary", "universal"]}, {"answer": "wormlike", "hint": "synonyms for wormlike", "clues": ["wormy", "groveling", "cringing", "wormlike"]}, {"answer": "wormy", "hint": "synonyms for wormy", "clues": ["groveling", "cringing", "wormlike", "vermiculate", "worm-eaten", "wormy"]}, {"answer": "worn", "hint": "synonyms for worn", "clues": ["careworn", "drawn", "raddled", "haggard", "worn"]}, {"answer": "worn-out", "hint": "synonyms for worn-out", "clues": ["dog-tired", "fatigued", "fagged", "spent", "exhausted", "raddled", "played out", "washed-out", "worn out"]}, {"answer": "worn_out", "hint": "synonyms for worn out", "clues": ["dog-tired", "fatigued", "fagged", "exhausted", "played out", "washed-out", "worn-out", "spent"]}, {"answer": "worried", "hint": "synonyms for worried", "clues": ["apprehensive", "distressed", "upset", "disquieted", "disturbed", "worried"]}, {"answer": "worrisome", "hint": "synonyms for worrisome", "clues": ["distressing", "unreassuring", "disturbing", "troubling", "perturbing", "distressful", "worrying", "worrisome"]}, {"answer": "worrying", "hint": "synonyms for worrying", "clues": ["distressing", "disturbing", "worrisome", "troubling", "perturbing", "distressful", "worrying"]}, {"answer": "worse", "hint": "synonyms for worse", "clues": ["spoilt", "sorry", "high-risk", "spoiled", "bad", "big", "uncollectible", "worsened", "risky", "defective", "unsound", "tough", "unfit", "forged", "speculative", "regretful", "worse"]}, {"answer": "worst", "hint": "synonyms for worst", "clues": ["spoilt", "sorry", "high-risk", "spoiled", "bad", "big", "uncollectible", "defective", "risky", "unsound", "tough", "unfit", "forged", "speculative", "regretful", "worst"]}, {"answer": "worthless", "hint": "synonyms for worthless", "clues": ["vile", "wretched", "slimy", "despicable", "unworthy", "ugly", "worthless"]}, {"answer": "wrapped", "hint": "synonyms for wrapped", "clues": ["mantled", "absorbed", "engrossed", "intent", "captive", "cloaked", "enwrapped", "clothed", "draped"]}, {"answer": "wretched", "hint": "synonyms for wretched", "clues": ["misfortunate", "unworthy", "ugly", "worthless", "execrable", "pitiable", "miserable", "vile", "woeful", "pitiful", "hapless", "suffering", "deplorable", "poor", "despicable", "pathetic", "slimy", "piteous", "wretched"]}, {"answer": "wrong", "hint": "synonyms for wrong", "clues": ["faulty", "haywire", "untimely", "awry", "amiss", "ill-timed", "incorrect", "improper", "unseasonable", "wrong"]}, {"answer": "yeasty", "hint": "synonyms for yeasty", "clues": ["zestful", "yeastlike", "barmy", "zesty", "yeasty"]}, {"answer": "yellow", "hint": "synonyms for yellow", "clues": ["yellow-bellied", "yellowed", "sensationalistic", "chickenhearted", "yellowish", "chicken", "xanthous", "lily-livered", "scandalmongering", "jaundiced", "white-livered", "icteric"]}, {"answer": "yellow-bellied", "hint": "synonyms for yellow-bellied", "clues": ["white-livered", "chickenhearted", "yellow", "chicken", "lily-livered", "yellow-bellied"]}, {"answer": "yokelish", "hint": "synonyms for yokelish", "clues": ["bounderish", "ill-bred", "rude", "underbred", "lowbred", "yokelish"]}, {"answer": "young", "hint": "synonyms for young", "clues": ["youthful", "new", "immature", "untested", "unseasoned", "vernal", "untried", "young"]}, {"answer": "younger", "hint": "synonyms for younger", "clues": ["new", "immature", "youthful", "vernal", "untried", "young", "untested", "unseasoned", "jr.", "younger"]}, {"answer": "yucky", "hint": "synonyms for yucky", "clues": ["repellent", "foul", "loathsome", "repelling", "revolting", "wicked", "loathly", "disgusting", "skanky", "distasteful", "disgustful", "yucky"]}, {"answer": "yummy", "hint": "synonyms for yummy", "clues": ["delicious", "delectable", "scrumptious", "luscious", "pleasant-tasting", "toothsome", "yummy"]}, {"answer": "zany", "hint": "synonyms for zany", "clues": ["silly", "cockamamie", "buffoonish", "whacky", "clownish", "goofy", "clownlike", "cockamamy", "sappy", "zany"]}, {"answer": "zesty", "hint": "synonyms for zesty", "clues": ["spicy", "piquant", "barmy", "savory", "zestful", "yeasty", "zesty"]}, {"answer": "zippy", "hint": "synonyms for zippy", "clues": ["snappy", "brisk", "lively", "rattling", "peppy", "bouncing", "spanking", "alert", "spirited", "merry", "bouncy", "zippy"]}, {"answer": "closer", "hint": "synonyms for closer", "clues": ["tight", "faithful", "closelipped", "airless", "tightlipped", "penny-pinching", "close-fitting", "close", "cheeseparing", "confining", "secretive", "snug", "unaired", "stuffy", "skinny", "nigh", "closemouthed", "near"]}, {"answer": "closest", "hint": "synonyms for closest", "clues": ["tight", "faithful", "closelipped", "airless", "tightlipped", "penny-pinching", "close-fitting", "close", "cheeseparing", "confining", "secretive", "snug", "unaired", "stuffy", "skinny", "nigh", "closemouthed", "near", "closest"]}, {"answer": "faster", "hint": "synonyms for faster", "clues": ["libertine", "flying", "degenerate", "dissipated", "fast", "dissolute", "degraded", "riotous", "quick", "immobile", "loyal", "truehearted", "firm", "profligate", "debauched", "faster"]}, {"answer": "fastest", "hint": "synonyms for fastest", "clues": ["libertine", "flying", "degenerate", "dissipated", "fast", "dissolute", "degraded", "riotous", "quick", "immobile", "loyal", "truehearted", "firm", "profligate", "debauched", "fastest"]}, {"answer": "longer", "hint": "synonyms for longer", "clues": ["retentive", "foresightful", "long", "foresighted", "recollective", "prospicient", "tenacious", "longsighted", "farseeing", "longer"]}, {"answer": "longest", "hint": "synonyms for longest", "clues": ["retentive", "foresightful", "long", "foresighted", "recollective", "prospicient", "tenacious", "longsighted", "farseeing", "longest"]}, {"answer": "nearer", "hint": "synonyms for nearer", "clues": ["good", "approximate", "dear", "skinny", "penny-pinching", "nigh", "near", "cheeseparing", "close", "nearer"]}, {"answer": "nearest", "hint": "synonyms for nearest", "clues": ["good", "approximate", "dear", "skinny", "penny-pinching", "nigh", "near", "cheeseparing", "close", "nearest"]}, {"answer": "quicker", "hint": "synonyms for quicker", "clues": ["flying", "prompt", "immediate", "fast", "speedy", "spry", "quick", "warm", "ready", "nimble", "agile", "straightaway", "quicker"]}, {"answer": "quickest", "hint": "synonyms for quickest", "clues": ["flying", "prompt", "immediate", "fast", "speedy", "spry", "quick", "warm", "ready", "nimble", "agile", "straightaway", "quickest"]}, {"answer": "slower", "hint": "synonyms for slower", "clues": ["dim", "irksome", "tedious", "tiresome", "dull", "dense", "wearisome", "ho-hum", "sluggish", "boring", "deadening", "obtuse", "slow", "dumb", "slower"]}, {"answer": "slowest", "hint": "synonyms for slowest", "clues": ["dim", "irksome", "tedious", "tiresome", "dull", "dense", "wearisome", "ho-hum", "sluggish", "boring", "deadening", "obtuse", "slow", "dumb", "slowest"]}, {"answer": "abstracter", "hint": "synonyms for abstracter", "clues": ["nonfigurative", "nonobjective", "abstractionist", "abstract"]}, {"answer": "adulterer", "hint": "synonyms for adulterer", "clues": ["pornographic", "grown", "adult", "grownup", "fully grown", "big", "adulterer"]}, {"answer": "balder", "hint": "synonyms for balder", "clues": ["bald", "barefaced", "denudate", "bald-pated", "denuded", "bald-headed", "balder"]}, {"answer": "berserker", "hint": "synonyms for berserker", "clues": ["amuck", "amok", "demoniac", "possessed", "berserk"]}, {"answer": "broker", "hint": "synonyms for broker", "clues": ["broke", "stone-broke", "bust", "skint"]}, {"answer": "bustier", "hint": "synonyms for bustier", "clues": ["stacked", "bosomy", "busty", "well-endowed", "sonsy", "buxom", "voluptuous", "curvy", "curvaceous", "sonsie", "full-bosomed", "bustier"]}, {"answer": "cleaner", "hint": "synonyms for cleaner", "clues": ["sporting", "unobjectionable", "white", "light", "sporty", "uncontaminating", "sportsmanlike", "neat", "clean", "clear", "uninfected", "clean-living", "fair", "unclouded", "fresh", "blank", "cleaner"]}, {"answer": "commoner", "hint": "synonyms for commoner", "clues": ["coarse", "mutual", "common", "unwashed", "plebeian", "rough-cut", "uncouth", "usual", "vulgar", "vernacular"]}, {"answer": "dearest", "hint": "synonyms for dearest", "clues": ["good", "pricey", "dear", "beloved", "earnest", "devout", "heartfelt", "costly", "darling", "near", "high-priced"]}, {"answer": "dimmer", "hint": "synonyms for dimmer", "clues": ["subdued", "dim", "vague", "black", "wispy", "shadowy", "dull", "dimmed", "dense", "faint", "bleak", "obtuse", "slow", "dumb", "dimmer"]}, {"answer": "diviner", "hint": "synonyms for diviner", "clues": ["godly", "inspired", "godlike", "providential", "divine", "elysian"]}, {"answer": "doubler", "hint": "synonyms for doubler", "clues": ["duple", "treble", "three-fold", "dual", "bivalent", "forked", "twofold", "doubled"]}, {"answer": "drier", "hint": "synonyms for drier", "clues": ["dry", "wry", "teetotal", "ironical", "juiceless", "drier"]}, {"answer": "dryer", "hint": "synonyms for dryer", "clues": ["dry", "wry", "teetotal", "ironical", "juiceless", "dryer"]}, {"answer": "fakeer", "hint": "synonyms for fakeer", "clues": ["bastard", "simulated", "phoney", "faux", "false", "imitation", "fake", "bogus", "fakeer"]}, {"answer": "fresher", "hint": "synonyms for fresher", "clues": ["sweet", "unfermented", "new", "sassy", "saucy", "overbold", "bracing", "brisk", "refreshing", "reinvigorated", "impudent", "refreshful", "impertinent", "clean", "unused", "smart", "wise", "novel", "tonic", "fresh", "refreshed", "fresher"]}, {"answer": "fuller", "hint": "synonyms for fuller", "clues": ["total", "good", "full", "wide", "replete", "entire", "wide-cut", "broad", "fuller"]}, {"answer": "graver", "hint": "synonyms for graver", "clues": ["grave", "weighty", "severe", "sedate", "heavy", "solemn", "dangerous", "life-threatening", "grievous", "serious", "sober"]}, {"answer": "idler", "hint": "synonyms for idler", "clues": ["wild", "out of work", "light", "loose", "idle", "unwarranted", "unused", "baseless", "groundless", "jobless", "dead", "unfounded"]}, {"answer": "lighter", "hint": "synonyms for lighter", "clues": ["scant", "light", "unaccented", "low-cal", "loose", "lightsome", "swooning", "promiscuous", "clear", "wakeful", "tripping", "lite", "wanton", "unclouded", "light-headed", "sluttish", "calorie-free", "light-colored", "clean", "idle", "faint", "abstemious", "short", "easy", "weak", "lighter"]}, {"answer": "lower", "hint": "synonyms for lower", "clues": ["scummy", "gloomy", "humbled", "dispirited", "depressed", "broken", "down", "low-spirited", "downcast", "miserable", "humiliated", "abject", "downhearted", "lowly", "low-pitched", "grim", "down in the mouth", "modest", "blue", "depleted", "low-toned", "scurvy", "crushed", "small", "low-down", "lower"]}, {"answer": "madder", "hint": "synonyms for madder", "clues": ["disturbed", "excited", "unbalanced", "sore", "sick", "frantic", "crazy", "delirious", "insane", "harebrained", "unhinged", "unrestrained", "brainsick", "demented", "mad", "huffy", "madder"]}, {"answer": "mater", "hint": "synonyms for mater", "clues": ["flat", "matt", "matted", "mater"]}, {"answer": "offerer", "hint": "synonyms for offerer", "clues": ["sour", "turned", "off", "cancelled", "offerer"]}, {"answer": "out-and-outer", "hint": "synonyms for out-and-outer", "clues": ["absolute", "sheer", "rank", "out-and-out", "downright", "right-down"]}, {"answer": "perfecter", "hint": "synonyms for perfecter", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "pure", "everlasting", "arrant", "unadulterated", "complete"]}, {"answer": "rasher", "hint": "synonyms for rasher", "clues": ["foolhardy", "heady", "reckless", "rash", "rasher"]}, {"answer": "rounder", "hint": "synonyms for rounder", "clues": ["orotund", "pear-shaped", "round", "circular", "rounder"]}, {"answer": "screwballer", "hint": "synonyms for screwballer", "clues": ["softheaded", "half-baked", "screwball", "crazy"]}, {"answer": "secreter", "hint": "synonyms for secreter", "clues": ["unavowed", "hidden", "private", "occult", "secret", "hole-and-corner", "privy", "surreptitious", "mystical", "clandestine", "hush-hush", "mysterious", "hugger-mugger", "undercover", "secluded", "underground", "confidential", "orphic", "cloak-and-dagger"]}, {"answer": "securer", "hint": "synonyms for securer", "clues": ["good", "unattackable", "inviolable", "untroubled", "strong", "dependable", "unafraid", "impregnable", "unassailable", "safe", "secure"]}, {"answer": "sharper", "hint": "synonyms for sharper", "clues": ["discriminating", "sharp-worded", "shrewd", "needlelike", "abrupt", "knifelike", "sharp", "incisive", "penetrative", "acute", "piercing", "penetrating", "tart", "precipitous", "keen", "shrill", "crisp", "astute", "sharper"]}, {"answer": "sixer", "hint": "synonyms for sixer", "clues": ["six", "6", "half-dozen", "vi", "sixer"]}, {"answer": "slicker", "hint": "synonyms for slicker", "clues": ["dodgy", "sleek", "pat", "cunning", "foxy", "glib", "wily", "knavish", "crafty", "silklike", "tricky", "silky", "sly", "satiny", "silken", "slick", "guileful", "slicker"]}, {"answer": "smoother", "hint": "synonyms for smoother", "clues": ["liquid", "politic", "legato", "fluent", "quiet", "placid", "suave", "unruffled", "bland", "still", "tranquil", "smooth", "fluid"]}, {"answer": "sounder", "hint": "synonyms for sounder", "clues": ["wakeless", "good", "effectual", "levelheaded", "healthy", "reasoned", "legal", "intelligent", "heavy", "well-grounded", "profound", "sound", "sounder"]}, {"answer": "sparer", "hint": "synonyms for sparer", "clues": ["redundant", "trim", "supernumerary", "free", "scanty", "unornamented", "excess", "supererogatory", "extra", "bare", "surplus", "unembellished", "superfluous", "spare", "plain"]}, {"answer": "squatter", "hint": "synonyms for squatter", "clues": ["squatty", "low-set", "squat", "chunky", "dumpy", "stumpy", "underslung", "squatter"]}, {"answer": "squinter", "hint": "synonyms for squinter", "clues": ["askance", "sidelong", "squint", "squint-eyed", "askant"]}, {"answer": "steeper", "hint": "synonyms for steeper", "clues": ["outrageous", "extortionate", "steep", "unconscionable", "usurious", "exorbitant", "steeper"]}, {"answer": "stranger", "hint": "synonyms for stranger", "clues": ["unknown", "strange", "foreign", "unusual"]}, {"answer": "tangier", "hint": "synonyms for tangier", "clues": ["tangy", "lemony", "tart", "sourish", "lemonlike", "tangier"]}, {"answer": "thinner", "hint": "synonyms for thinner", "clues": ["lean", "tenuous", "slight", "thin", "fragile", "sparse", "flimsy", "slender", "thinner"]}, {"answer": "trimester", "hint": "synonyms for trimester", "clues": ["clean-cut", "trig", "well-kept", "trim", "tailored", "shipshape", "spare", "trimester"]}, {"answer": "trimmer", "hint": "synonyms for trimmer", "clues": ["clean-cut", "trig", "well-kept", "trim", "tailored", "shipshape", "spare", "trimmer"]}, {"answer": "twiner", "hint": "synonyms for twiner", "clues": ["matching", "twinned", "twin", "duplicate", "twiner"]}, {"answer": "utterer", "hint": "synonyms for utterer", "clues": ["sodding", "staring", "thoroughgoing", "consummate", "gross", "stark", "double-dyed", "utter", "perfect", "dead", "pure", "everlasting", "arrant", "unadulterated", "complete", "utterer"]}, {"answer": "warmer", "hint": "synonyms for warmer", "clues": ["quick", "strong", "ardent", "warm", "lovesome", "fond", "affectionate", "tender", "warmer"]}, {"answer": "wetter", "hint": "synonyms for wetter", "clues": ["tight", "besotted", "pie-eyed", "fuddled", "crocked", "soaked", "soused", "wet", "sloshed", "slopped", "sozzled", "blotto", "squiffy", "smashed", "plastered", "lactating", "cockeyed", "blind drunk", "loaded", "pixilated", "pissed", "stiff", "wetter"]}, {"answer": "wilder", "hint": "synonyms for wilder", "clues": ["untamed", "gaga", "uncivilised", "tempestuous", "unwarranted", "baseless", "angry", "unfounded", "raving mad", "waste", "raging", "dotty", "wild", "violent", "barbaric", "furious", "savage", "fantastic", "idle", "hazardous", "groundless", "barbarian", "godforsaken", "risky", "crazy", "wilder"]}, {"answer": "blither", "hint": "synonyms for blither", "clues": ["light-hearted", "blithesome", "lightsome", "blithe"]}, {"answer": "flatter", "hint": "synonyms for flatter", "clues": ["flavourless", "flat", "insipid", "savorless", "mat", "monotonous", "matted", "2-dimensional", "vapid", "unconditional", "level", "bland", "categoric", "monotonic", "compressed", "prostrate", "plane", "monotone", "flatter"]}], "portion": 0}] \ No newline at end of file